-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1002 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
38
39
40
41
42
43
44
{
"name": "blog",
"version": "1.1.0",
"description": "Angus's Blog",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/zhixinpeng/Blog.git"
},
"keywords": [
"blog"
],
"author": "Angus",
"license": "ISC",
"bugs": {
"url": "https://github.com/zhixinpeng/Blog/issues"
},
"homepage": "https://github.com/zhixinpeng/Blog#readme",
"scripts": {
"commit": "git-cz",
"release": "standard-version"
},
"husky": {
"hooks": {
"pre-commit": "echo 开始提交代码",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "echo 开始推送远程"
}
},
"devDependencies": {
"@commitlint/cli": "^8.0.0",
"@commitlint/config-angular": "^8.0.0",
"commitizen": "^3.1.1",
"cz-customizable": "^6.1.0",
"husky": "^2.4.1",
"standard-version": "^6.0.1",
"typescript": "^3.9.7"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
}
}