-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.2 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
{
"name": "jelement-cli",
"version": "1.0.7",
"description": "",
"preferGlobal": true,
"bin": {
"jelement": "./bin/jelement"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --fix bin lib/**/*.js utils/**/*.js",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"license": "ISC",
"dependencies": {
"chalk": "^2.3.0",
"commander": "^2.12.2",
"download-git-repo": "^1.0.2",
"fs-extra": "^5.0.0",
"inquirer": "^4.0.2",
"ora": "^1.4.0",
"prettier-eslint": "^8.8.1",
"shelljs": "^0.8.1",
"uppercamelcase": "^3.0.0",
"which": "^1.3.0",
"write": "^1.0.3"
},
"engines": {
"node": ">=8.0.0"
},
"devDependencies": {
"cz-conventional-changelog": "^2.1.0",
"eslint": "^4.17.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.3",
"lint-staged": "^6.1.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}