-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
111 lines (111 loc) · 2.36 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "tools-kit",
"version": "1.5.0",
"description": "An easy to use, powerful and multi-functionality tools-kit library for NodeJS written entirely in JavaScript.",
"keywords": [
"console",
"terminal",
"command-line",
"color",
"colour",
"colors",
"style",
"styles",
"console color",
"console style",
"console colors",
"console styles",
"terminal color",
"terminal style",
"terminal colors",
"terminal styles",
"command-line color",
"command-line style",
"command-line colors",
"command-line styles",
"hastebin",
"pastebin",
"logger",
"Array",
"Object",
"isObject",
"randomItem",
"randomNumber",
"tools-kit",
"kit-tools",
"tools kit",
"kit tools"
],
"homepage": "https://tools-kit.js.org/",
"license": "MIT",
"readme": "README.md",
"bugs": {
"email": "[email protected]",
"url": "https://github.com/BlackB1RD-Development/tools-kit/issues"
},
"author": {
"name": "BlackB1RD",
"email": "[email protected]",
"url": "https://github.com/RealBlackB1RD"
},
"contributors": [
{
"name": "BlackB1RD-Development",
"email": "[email protected]",
"url": "https://github.com/BlackB1RD-Development"
}
],
"maintainers": [
{
"name": "BlackB1RD-Development",
"email": "[email protected]",
"url": "https://github.com/BlackB1RD-Development"
}
],
"main": "index.js",
"directories": {
"example": "examples",
"test": "test",
"doc": "docs",
"lib": "lib"
},
"repository": {
"type": "git",
"url": "https://github.com/BlackB1RD-Development/tools-kit.git"
},
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"color-convert": "^2.0.1",
"figlet": "^1.5.2",
"moment": "^2.29.1",
"node-fetch": "<4",
"supports-color": "^8.1.1"
},
"devDependencies": {
"chai": "latest",
"coveralls": "latest",
"docma": "^2.1.0",
"gh-pages": "latest",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"xo": "^0.47.0"
},
"scripts": {
"prebuild": "xo && nyc mocha",
"build": "docma -c src/docma.json -d docs && gh-pages -d docs",
"test": "xo && nyc mocha"
},
"nyc": {
"exclude": [
"examples",
"docs",
"test",
"src"
]
},
"xo": {
"extends": "./.eslintrc.json"
}
}