-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.23 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
{
"name": "disnod",
"version": "1.0.0",
"description": "Discord.js CLI tool",
"main": "./bin/index.js",
"files": [
"bin",
"src"
],
"bin": {
"disnod": "./bin/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --fix ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bot-Academia/disnod.git"
},
"keywords": [
"node.js",
"commander.js",
"inquirer.js",
"shell.js",
"cli",
"discord.js",
"discord",
"discord bot"
],
"author": "Bot-Academia",
"license": "MIT",
"bugs": {
"url": "https://github.com/Bot-Academia/disnod/issues"
},
"homepage": "https://github.com/Bot-Academia/disnod/blob/master/README.md",
"dependencies": {
"axios": "^0.21.1",
"chalk": "^4.1.0",
"commander": "^5.0.0",
"execa": "^4.0.3",
"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"
}
}
}