-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 825 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 825 Bytes
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
{
"name": "cli-demo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"bin": {
"kaa": "./bin/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"blessed-contrib": "^4.8.20",
"chalk": "^4.1.0",
"clui": "^0.3.6",
"commander": "^6.2.1",
"figlet": "^1.5.0",
"inquirer": "^7.3.3",
"shelljs": "^0.8.4"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"conventional-changelog": "^3.1.24",
"husky": "^4.3.7"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}