-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
37 lines (37 loc) · 932 Bytes
/
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
{
"name": "vue-cli-plugin-commitlint",
"version": "1.0.12",
"description": "基于vue-cli3的代码提交检查规范",
"main": "index.js",
"scripts": {
"log": "conventional-changelog --config ./lib/log -i CHANGELOG.md -s -r 0",
"cz": "npm run log && git add . && git cz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/luoxue-victor/commitlint.git"
},
"author": "luoxue",
"license": "ISC",
"bugs": {
"url": "https://github.com/luoxue-victor/commitlint/issues"
},
"homepage": "https://github.com/luoxue-victor/commitlint#readme",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"commitizen": "^4.0.3",
"commitlint": "^8.2.0",
"conventional-changelog-cli": "^2.0.28",
"husky": "^3.0.9",
"right-pad": "^1.0.1"
},
"config": {
"commitizen": {
"path": "lib/cz"
}
}
}