-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.64 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
{
"name": "vuepress-zsh",
"version": "2.0.0",
"private": true,
"description": "",
"main": "index.js",
"scripts": {
"check": "./node_modules/.bin/prettier --check ./**/*.md",
"lint": "./node_modules/.bin/prettier --write ./**/*.md",
"dev": "./node_modules/.bin/vuepress dev .",
"build": "./node_modules/.bin/vuepress build .",
"deploy": "bash deploy.sh",
"cz": "git-cz && git push",
"cg": "conventional-changelog -p custom-config -i CHANGELOG.md -s -r 0",
"r": "release-it",
"v": "npm run release && npm run cg"
},
"keywords": [],
"author": "Zsh",
"license": "MIT",
"dependencies": {
"@vuepress-reco/vuepress-plugin-back-to-top": "^1.0.7",
"@vuepress-reco/vuepress-plugin-kan-ban-niang": "^1.0.5",
"@vuepress-reco/vuepress-plugin-screenfull": "^1.0.1",
"prettier": "^1.18.2",
"vuepress": "^1.0.2",
"vuepress-plugin-cat": "^1.0.3",
"vuepress-plugin-code-copy": "^1.0.4",
"vuepress-plugin-comment": "^0.5.4",
"vuepress-theme-reco": "^1.2.0-alpha.10"
},
"devDependencies": {
"@vuepress/plugin-back-to-top": "^1.0.2",
"@vuepress/plugin-google-analytics": "^1.0.2",
"@vuepress/plugin-medium-zoom": "^1.0.2",
"@vuepress/plugin-pwa": "^1.0.2",
"commitizen": "^4.0.1",
"conventional-changelog-cli": "^2.0.21",
"conventional-changelog-custom-config": "^0.2.0",
"cz-conventional-changelog": "^2.1.0",
"husky": "^3.0.1",
"release-it": "^12.3.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"changelog": {
"emojis": true
}
}