forked from Bot-Academia/Disnod
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 835 Bytes
/
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
{
"name": "disnode",
"version": "1.0.0",
"description": "Discord.js CLI tool",
"main": "./bin/index.js",
"files": [
"bin",
"src"
],
"bin": {
"disnode": "./bin/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --fix ./src"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"axios": "^0.19.2",
"chalk": "^4.1.0",
"commander": "^5.0.0",
"inquirer": "^7.3.1",
"node-banner": "^1.4.0",
"ora": "^4.0.4"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.5",
"prettier": "^2.0.4",
"pretty-quick": "^2.0.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}