-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.35 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-catalog-graph",
"version": "0.2.8",
"description": "A network graph for your VuePress' documentation",
"keywords": [
"vuepress-plugin",
"catalog",
"network-graph",
"d3-force"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ludanxer/catalog-graph"
},
"license": "MIT",
"author": "ludanxer <[email protected]>",
"main": "lib/index.js",
"files": [
"/lib"
],
"scripts": {
"build:docs": "vuepress build docs",
"dev": "vuepress dev docs",
"lint-md": "remark .",
"release": "standard-version"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"package.json": [
"sort-package-json"
]
},
"dependencies": {
"d3": "^5.15.0",
"lodash": "^4.17.15"
},
"devDependencies": {
"husky": "^4.2.2",
"lint-staged": "^10.0.7",
"remark-cli": "^7.0.1",
"remark-preset-lint-recommended": "^3.0.3",
"remark-validate-links": "^9.2.0",
"sort-package-json": "^1.40.0",
"standard-version": "^9.0.0",
"vuepress": "^1.7.1"
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended",
[
"remark-lint-list-item-indent",
false
],
[
"remark-lint-list-item-bullet-indent",
false
],
"validate-links"
]
}
}