forked from liuyib/hexo-theme-stun
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.3 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
{
"name": "hexo-theme-stun",
"version": "2.7.0",
"description": "A beautiful & simple theme for Hexo",
"homepage": "https://liuyib.github.io",
"scripts": {
"commit": "git cz",
"release": "standard-version",
"release:lts": "npm run release -- --release-as",
"release:pre": "npm run release -- --prerelease",
"lint": "standard",
"lint:fix": "standard --fix"
},
"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"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"commitizen": "^4.2.2",
"commitlint-config-cz": "^0.13.2",
"cz-customizable": "^6.3.0",
"eslint": "^7.17.0",
"husky": "^4.3.6",
"standard": "^14.3.4",
"standard-version": "^9.1.0"
},
"standard": {
"globals": [
"$",
"CONFIG",
"hexo",
"Stun",
"instantsearch"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./.cz-config.js"
}
}
}