-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.21 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.21 KB
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": "Java-JavaScript-Learn-Note",
"version": "1.0.0",
"description": "Daily learning summary",
"author": {
"name": "K-D-Union",
"url": "https://github.com/K-D-Union",
"email": "501266432@qq.com"
},
"repository": {
"type": "git",
"url": "git@github.com:K-D-Union/Java-JavaScript-Learn-Note.git"
},
"license": "MIT",
"scripts": {
"dev": "vuepress dev docs",
"build": "vuepress build docs",
"deploy": "bash deploy.sh",
"test": "echo 'skip test...'",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"devDependencies": {
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@vuepress/plugin-active-header-links": "^1.3.1",
"@vuepress/plugin-back-to-top": "^1.3.1",
"@vuepress/plugin-nprogress": "^1.4.0",
"conventional-changelog-cli": "^2.0.34",
"cz-conventional-changelog": "^3.2.0",
"prettier": "^2.0.5",
"vuepress": "^1.0.0-rc.1",
"vuepress-plugin-nprogress": "^1.1.6"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -c .commitlintrc.js -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}