-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
63 lines (63 loc) · 1.55 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
{
"name": "gitbook-plugin-page-treeview",
"version": "3.0.6",
"description": "a gitbook plugin for generating a treeview of each page",
"engines": {
"gitbook": ">=3.0.0-pre.0"
},
"main": "./lib/index.js",
"scripts": {
"test": "./node_modules/.bin/mocha --reporter spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aleen42/gitbook-treeview.git"
},
"keywords": [
"gitbook-plugin",
"gitbook",
"treeview"
],
"author": "aleen42 <[email protected]> (http://aleen42.github.io/pc.html)",
"contributors": [
"aleen42 <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/aleen42/gitbook-treeview/issues"
},
"homepage": "https://github.com/aleen42/gitbook-treeview#readme",
"dependencies": {
"remarkable": "1.6.2",
"marked": "1.2.7",
"node-html-parser": "1.2.20"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.0.2"
},
"gitbook": {
"properties": {
"copyright": {
"type": "string",
"default": "Copyright © aleen42",
"title": "Description for your Copyright"
},
"minHeaderCount": {
"type": "string",
"default": "1",
"description": "the minimum of headers"
},
"minHeaderDeep": {
"type": "string",
"default": "1",
"description": "the minimum of the depth of headers"
},
"collapsed": {
"type": "boolean",
"default": false,
"description": "whether collapse subheaders by default"
}
}
}
}