-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
82 lines (82 loc) · 1.87 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "easy-tool-cli",
"version": "1.0.27",
"description": "a simple CLI for scaffolding of FE",
"main": "index.js",
"scripts": {
"lint": "eslint --ext .js ./",
"release": "node scripts/release.js",
"test": "jest --color"
},
"bin": {
"easy": "bin/easy.js"
},
"publishConfig": {
"access": "public"
},
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "https://github.com/NuoHui/easy-cli.git"
},
"keywords": [
"cli",
"tool"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"**/*.js": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"author": "xyz <[email protected]>",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^7.6.1",
"@commitlint/config-conventional": "^7.6.0",
"babel-eslint": "^10.0.1",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^2.3.0",
"jest": "^24.8.0",
"lint-staged": "^8.1.7",
"nodemon": "^1.19.0",
"prettier": "^1.17.1",
"standard-version": "^8.0.1"
},
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"chalk": "^2.4.2",
"commander": "^2.20.0",
"didyoumean": "^1.2.1",
"download-git-repo": "^2.0.0",
"execa": "^1.0.0",
"fs-extra": "^8.0.1",
"inquirer": "^6.3.1",
"is-git-url": "^1.0.0",
"lru-cache": "^5.1.1",
"ora": "^3.4.0",
"request": "^2.88.0",
"request-promise-native": "^1.0.7",
"semver": "^6.1.1",
"validate-npm-package-name": "^3.0.0"
}
}