forked from liuyib/hexo-theme-stun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.11 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
{
"name": "hexo-theme-stun",
"version": "1.0.0",
"description": "A beautiful blog theme - stun",
"homepage": "https://liuyib.github.io",
"scripts": {
"cz": "git cz",
"release": "standard-version",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"repository": {
"type": "git",
"url": "https://github.com/liuyib/hexo-theme-stun"
},
"keywords": [
"stun",
"Hexo"
],
"author": "liuyib",
"license": "MIT",
"bugs": {
"url": "https://github.com/liuyib/hexo-theme-stun/issues"
},
"dependencies": {
"eslint-config-standard": "^12.0.0",
"nib": "^1.1.2"
},
"devDependencies": {
"@commitlint/cli": "^7.6.1",
"commitizen": "^3.1.1",
"commitlint-config-cz": "^0.11.1",
"cz-customizable": "^6.2.0",
"husky": "^2.3.0",
"standard-version": "^6.0.1",
"vuepress": "^0.14.11"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./config.js"
}
}
}