-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 1.4 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
{
"name": "branchclear-cli",
"version": "0.0.0-development",
"description": "git分支清理cli工具",
"main": "src/index.js",
"author": "mengshagn918",
"keywords": [
"branch",
"git",
"clearbranch",
"clear",
"branchclear"
],
"license": "MIT",
"bin": {
"branchclear": "bin/index.js"
},
"files": [
"bin",
"src"
],
"scripts": {
"cz": "cz",
"semantic-release": "semantic-release"
},
"dependencies": {
"chalk": "^4.1.0",
"commander": "^6.1.0",
"execa": "^4.0.3",
"husky": "^4.3.0",
"inquirer": "^7.3.3",
"js-yaml": "^3.14.0",
"listr": "^0.14.3",
"minimist": "^1.2.5",
"ora": "^5.1.0"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"commitizen": "^4.2.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "^7.10.0",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"semantic-release": "^17.2.1",
"semantic-release-cli": "^5.4.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --config .prettierrc.yml --write"
],
"*.md": [
"prettier --config .prettierrc.yml --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/mengshang918/branchclear-cli.git"
}
}