-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.06 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
73
74
75
76
77
{
"name": "hexo-site",
"version": "0.0.0",
"private": true,
"hexo": {
"version": "5.2.0"
},
"scripts": {
"dev": "hexo serve",
"best": "node generate-overview.js",
"postinstall": "cp .git-pre-commit .git/hooks/pre-commit",
"lint": "./.git-pre-commit",
"lint-all": "remark -f source/ && lint-md source/ && fnlint -c .fnlint.json",
"commit": "git-cz"
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended"
]
},
"main": "index.js",
"repository": "https://e.coding.net/codingcorp/coding-help-generator.git",
"author": "liuyishou <574079881@qq.com>",
"license": "MIT",
"devDependencies": {
"@coding-operation/public-component-web": "^1.3.7",
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^11.0.0",
"@commitlint/prompt": "^9.1.2",
"cheerio": "^1.0.0-rc.3",
"clean-css": "^4.2.3",
"cz-conventional-changelog": "^3.3.0",
"ejs": "^3.1.6",
"fnlint": "^1.5.1",
"hexo": "^5.2.0",
"hexo-algolia": "^1.3.1",
"hexo-autoprefixer": "^2.0.0",
"hexo-deployer-cos": "^1.2.0",
"hexo-generator-alias": "^0.1.3",
"hexo-generator-archive": "^0.1.5",
"hexo-generator-category": "^0.1.3",
"hexo-generator-index": "^0.2.1",
"hexo-generator-sitemap": "^2.1.0",
"hexo-generator-tag": "^0.2.0",
"hexo-renderer-ejs": "^0.3.1",
"hexo-renderer-jade": "^0.4.1",
"hexo-renderer-marked": "^3.3.0",
"hexo-renderer-sass": "^0.4.0",
"hexo-renderer-stylus": "^0.3.3",
"hexo-server": "^0.3.3",
"html-minifier": "^4.0.0",
"husky": "^4.3.0",
"lint-md": "^0.2.0",
"lint-md-cli": "^0.1.2",
"remark-cli": "^8.0.1",
"remark-preset-lint-recommended": "^4.0.1",
"standard-version": "^9.3.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"scirpt": {
"release": "standard-version"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}