-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.54 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
{
"name": "chainpoint-node-cli",
"version": "0.2.6",
"description": "Chainpoint Node CLI",
"bin": {
"chainpoint-node": "./index.js"
},
"scripts": {
"build": "yarn run build:clean && pkg . --targets node8-macos-x64,node8-linux-x64,node8-linux-x86,node8-alpine-x64 --out-path ./build/",
"build:clean": "rimraf ./build/*",
"lint": "eslint **/*.js",
"test": "yarn run lint && yarn run mocha",
"mocha": "mocha tests/ --recursive -R spec"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js}": [
"eslint --fix",
"git add"
],
"*.{json,md}": [
"prettier --write",
"git add"
]
},
"keywords": [
"chainpoint",
"node",
"management",
"configuration"
],
"author": "Philippe Schommers <[email protected]>",
"license": "Apache-2.0",
"repository": "https://github.com/chainpoint/chainpoint-node-cli",
"dependencies": {
"chalk": "^2.4.1",
"dotenv": "^6.0.0",
"inquirer": "^6.2.0",
"ip": "^1.1.5",
"log-symbols": "^2.2.0",
"ora": "^3.0.0",
"request": "^2.88.0",
"request-promise-native": "^1.0.5",
"shelljs": "^0.8.2",
"yargs": "^12.0.2"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"change-case": "^3.0.2",
"eslint": "^5.6.1",
"eslint-config-tierion": "^0.4.0",
"fs-extra": "^7.0.0",
"husky": "^1.0.1",
"lint-staged": "^7.3.0",
"mocha": "^5.2.0",
"pkg": "^4.3.4",
"prettier": "^1.14.3",
"rimraf": "^2.6.2"
}
}