-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.82 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
{
"name": "vuepress-docs-template",
"author": "Rain120",
"repository": {
"type": "git",
"url": "git+https://github.com/Rain120/vuepress-docs-template.git"
},
"version": "1.0.0",
"description": "Awesome code implementation for Javascript",
"main": "index.js",
"scripts": {
"lint-staged": "lint-staged",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add .",
"plop": "./node_modules/.bin/plop",
"docs": "npm run plop docs",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"deploy": "bash ./scripts/deploy.sh",
"remote": "bash ./scripts/add-remote.sh"
},
"keywords": [
"docs",
"vuepress",
"template",
"vuepress-docs",
"docs-template",
"vuepress-docs-template"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Rain120/vuepress-docs-template/issues"
},
"homepage": "https://github.com/Rain120/vuepress-docs-template#readme",
"lint-staged": {
"{src}/**/**.ts": [
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run changelog && lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@vuepress/plugin-back-to-top": "^1.5.3",
"@vuepress/plugin-blog": "^1.9.2",
"@vuepress/plugin-google-analytics": "^1.5.3",
"@vuepress/plugin-medium-zoom": "^1.5.3",
"@vuepress/plugin-pwa": "^1.5.3",
"conventional-changelog-cli": "^2.0.35",
"husky": "^3.0.9",
"lint-staged": "^9.4.3",
"markdown-it-imsize": "^2.0.1",
"markdown-it-katex": "^2.0.3",
"markdown-it-task-lists": "^2.1.1",
"moment": "^2.27.0",
"plop": "^2.7.4",
"vuepress": "^1.5.3",
"vuepress-plugin-awesome-gitalk": "^0.0.4",
"vuepress-plugin-container": "^2.1.4",
"vuepress-plugin-mathjax": "^1.2.8"
}
}