forked from Armour/vue-typescript-admin-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 900 Bytes
/
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
{
"name": "vue-typescript-admin-docs",
"version": "1.0.0",
"private": true,
"author": "Chong Guo <[email protected]>",
"scripts": {
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"lint": "prettier --write 'docs/**/*.md'"
},
"devDependencies": {
"prettier": "1.18.2",
"vuepress": "1.0.3",
"lint-staged": "9.2.1"
},
"bugs": {
"url": "https://github.com/armour/vue-typescript-admin-docs/issues"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"keywords": [
"vue",
"typescript",
"admin",
"template",
"element-ui"
],
"lint-staged": {
"*.{js,json,css,md,vue}": [
"prettier --write",
"git add"
]
},
"prettier": {
"semi": false,
"singleQuote": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/armour/vue-typescript-admin-docs.git"
}
}