-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
56 lines (56 loc) · 1.67 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
{
"name": "vuepress-plugin-demo-container",
"version": "0.2.0",
"description": "Vuepress plugin for demo block.",
"main": "src/index.js",
"scripts": {
"release": "standard-version && git push --follow-tags origin master",
"release:minor": "standard-version --release-as minor && git push --follow-tags origin master",
"release:major": "standard-version --release-as major && git push --follow-tags origin master",
"docs:dev": "vuepress dev docs --no-cache --debug",
"docs:build": "vuepress build docs",
"docs:build-preview": "vuepress build docs && anywhere -d docs/.vuepress/dist/"
},
"repository": {
"type": "git",
"url": "https://github.com/calebman/vuepress-plugin-demo-container.git"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"ant-design-vue": "^1.6.1",
"conventional-changelog-cli": "^2.0.34",
"conventional-changelog-lint-config-cz": "^0.3.0",
"core-js": "^2.6.5",
"cz-conventional-changelog": "^3.2.0",
"husky": "^4.2.5",
"less": "^3.8.1",
"less-loader": "^4.1.0",
"markdown-it-container": "^2.0.0",
"vuepress": "1.5.3"
},
"keywords": [
"documentation",
"plugin",
"vue",
"vuepress",
"demo",
"block"
],
"author": "JianhuiChen",
"license": "MIT",
"bugs": {
"url": "https://github.com/calebman/vuepress-plugin-demo-container/issues"
},
"homepage": "https://github.com/calebman/vuepress-plugin-demo-container#readme",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $GIT_PARAMS"
}
}
}