forked from ulivz/vuepress-plugin-yuque
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.36 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
65
{
"name": "vuepress-plugin-yuque",
"version": "0.6.1",
"description": "I: Yuque Repo, O: VuePress Site!",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"test": "jest",
"lint": "xo",
"dev": "vuepress dev docs --temp .temp",
"build": "vuepress build docs --temp .temp",
"dev:example": "vuepress dev example --temp .temp2",
"build:example": "vuepress build example --temp .temp2",
"release": "release-it"
},
"repository": {
"url": "ulivz/vuepress-plugin-yuque",
"type": "git"
},
"author": "ulivz<chl814@foxmail.com>",
"license": "MIT",
"dependencies": {
"@vuepress/plugin-medium-zoom": "^1.0.0-alpha.44",
"cheerio": "^1.0.0-rc.2",
"conf": "^2.2.0",
"debug": "^4.1.1",
"node-fetch": "^2.3.0",
"ora": "^3.0.0"
},
"devDependencies": {
"conventional-changelog-cli": "^2.0.1",
"eslint-config-sherry": "0.0.1",
"husky": "1.2.0",
"jest": "23.6.0",
"lint-staged": "8.1.0",
"release-it": "v7.4.8",
"vuepress": "1.0.0-alpha.44",
"xo": "0.23.0",
"escape-html": "^1.0.3"
},
"jest": {
"testEnvironment": "node"
},
"xo": {
"extends": [
"sherry"
],
"envs": [
"jest"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js}": [
"xo --fix",
"git add"
]
}
}