-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
51 lines (51 loc) · 1.04 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
{
"name": "deployd-cli",
"version": "2.0.2",
"license": "MIT",
"description": "The deployd command line interface",
"repository": {
"url": "git://github.com/deployd/deployd-cli.git"
},
"scripts": {
"precommit": "lint-staged",
"test": "npm run lint && npm run jest",
"lint": "eslint . --config .eslintrc.js --quiet --fix",
"jest": "jest"
},
"lint-staged": {
"*.js": [
"lint",
"git add"
]
},
"jest": {
"verbose": true
},
"engines": {
"node": ">= 4"
},
"dependencies": {
"commander": "^2.2.0",
"debug": "^2.1.0",
"doh": "^0.0.4",
"opener": "^1.4.0",
"resolve": "^1.1.0",
"semver": "^4.1.0",
"shelljs": "^0.3.0",
"step": "^0.0.5"
},
"preferGlobal": true,
"bin": {
"dpd": "./bin/dpd.js"
},
"devDependencies": {
"del": "^3.0.0",
"eslint": "^4.18.2",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.7.0",
"execa": "^0.7.0",
"husky": "^0.14.3",
"jest": "^20.0.4",
"lint-staged": "^4.0.2"
}
}