-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.16 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
{
"name": "standards-recommendations",
"version": "1.0.0",
"description": "全栈小白开发手册",
"main": "index.js",
"scripts": {
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hilanmiao/standards-recommendations.git"
},
"keywords": [
"standards recommendations",
"style guide",
"javascript",
"css",
"html",
"egg.js"
],
"author": "懒喵 <hilanmiao@126.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hilanmiao/standards-recommendations/issues"
},
"homepage": "https://github.com/hilanmiao/standards-recommendations#readme",
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@vuepress/plugin-active-header-links": "^1.6.0",
"@vuepress/plugin-back-to-top": "^1.6.0",
"@vuepress/plugin-medium-zoom": "^1.6.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^6.0.0",
"vuepress": "^1.6.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}