-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.91 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
{
"name": "portable-cli",
"version": "1.0.3",
"description": "一个简易的支持自定义模板的脚手架",
"main": "index.js",
"scripts": {
"commit": "git-cz",
"lint": "eslint --ext .js ./",
"fix": "eslint --fix",
"release": "node scripts/release.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"portable-cli": "bin/index.js"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"**/*.js": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/niexia/portable-cli.git"
},
"keywords": [
"issues",
"blog",
"admin",
"cli"
],
"author": "yangjin",
"license": "MIT",
"bugs": {
"url": "https://github.com/niexia/portable-cli/issues"
},
"homepage": "https://github.com/niexia/portable-cli#readme",
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"chalk": "^4.1.1",
"commander": "^8.0.0",
"didyoumean": "^1.2.2",
"download-git-repo": "^3.0.2",
"execa": "^5.1.1",
"fs-extra": "^10.0.0",
"inquirer": "^8.1.1",
"is-git-url": "^1.0.0",
"ora": "^5.4.1",
"request": "^2.88.2",
"request-promise-native": "^1.0.9",
"semver": "^7.3.5",
"validate-npm-package-name": "^3.0.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.2",
"standard-version": "^9.3.0"
}
}