forked from leopardslab/nodecloud-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 973 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
42
43
44
45
46
{
"name": "nodecloud-cli",
"version": "0.0.1",
"description": "NodeCloud CLI",
"main": "bin/nc.js",
"scripts": {
"prettier": "pretty-quick --staged",
"prepare": "npm run test",
"test": "jest"
},
"repository": "https://github.com/cloudlibz/nodecloud-cli",
"keywords": [
"cli",
"nodecloud"
],
"author": "CloudLibz",
"license": "MIT",
"bugs": {
"url": "https://github.com/cloudlibz/nodecloud-cli/issues"
},
"bin": {
"nc": "./bin/nc.js"
},
"private": false,
"dependencies": {
"chalk": "^2.4.2",
"commander": "^2.20.0",
"detect-installed": "^2.0.4",
"figlet": "^1.2.3",
"inquirer": "^6.4.1",
"nodecloud": "^1.0.0-beta.1",
"npm-programmatic": "^0.0.12",
"ora": "^3.4.0",
"prettier": "^1.17.1"
},
"devDependencies": {
"husky": "^2.3.0",
"jest": "^24.8.0",
"pretty-quick": "^1.11.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier"
}
}
}