forked from BlackB1RD-Development/tools-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 2.46 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
112
113
{
"name": "tools-kit",
"version": "1.2.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",
"Array",
"Object",
"isObject",
"randomItem",
"randomNumber",
"tools-kit",
"kit-tools",
"tools kit",
"kit tools"
],
"homepage": "https://tools-kit.js.org/",
"bugs": {
"email": "blackbird.d3v@gmail.com",
"url": "https://github.com/BlackB1RD-Development/tools-kit/issues"
},
"license": "MIT",
"author": {
"name": "BlackB1RD",
"email": "blackbird.d3v@gmail.com",
"url": "https://github.com/RealBlackB1RD"
},
"contributors": [
{
"name": "James",
"email": "jamesparkdev@gmail.com",
"url": "https://github.com/JamesParkDev"
}
],
"main": "index.js",
"directories": {
"example": "examples",
"test": "test",
"doc": "docs",
"lib": "lib"
},
"repository": {
"type": "git",
"url": "https://github.com/BlackB1RD-Development/tools-kit.git"
},
"scripts": {
"prebuild": "xo && nyc mocha && docma -c src/docma.json -d docs",
"build": "nyc report --reporter=text-lcov > node_modules/.bin/coveralls && gh-pages -d docs",
"test": "mocha"
},
"dependencies": {
"node-fetch": "^2.3.0",
"figlet": "^1.2.1",
"moment": "^2.24.0"
},
"devDependencies": {
"coveralls": "^3.0.3",
"gh-pages": "^2.0.1",
"docma": "^3.2.2",
"mocha": "^6.1.3",
"nyc": "^13.3.0",
"xo": "^0.24.0"
},
"nyc": {
"exclude": [
"examples",
"docs",
"test"
]
},
"xo": {
"semicolon": true,
"extends": "./.eslintrc.json",
"space": true
},
"engines": {
"node": ">=7.6.0"
},
"readme": "README.md",
"maintainers": [
{
"name": "BlackB1RD | RealBlackB1RD",
"email": "blackbird.d3v@gmail.com",
"url": "https://github.com/RealBlackB1RD"
},
{
"name": "James | JamesParkDev",
"email": "jamesparkdev@gmail.com",
"url": "https://github.com/JamesParkDev"
}
]
}