forked from jonschlinkert/markdown-toc
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
99 lines (99 loc) · 1.87 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "markdown-toc",
"description": "Generate a markdown TOC (table of contents) with Remarkable.",
"version": "0.12.5",
"homepage": "https://github.com/jonschlinkert/markdown-toc",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"repository": "jonschlinkert/markdown-toc",
"bugs": {
"url": "https://github.com/jonschlinkert/markdown-toc/issues"
},
"license": "MIT",
"files": [
"cli.js",
"index.js",
"lib/"
],
"main": "index.js",
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha"
},
"bin": {
"markdown-toc": "cli.js"
},
"dependencies": {
"concat-stream": "^1.5.1",
"gray-matter": "^2.0.2",
"lazy-cache": "^1.0.3",
"list-item": "^1.1.1",
"markdown-link": "^0.1.1",
"minimist": "^1.2.0",
"mixin-deep": "^1.1.3",
"object.pick": "^1.1.2",
"remarkable": "^1.6.2",
"repeat-string": "^1.5.4"
},
"devDependencies": {
"gulp-format-md": "^0.1.7",
"mocha": "^2.4.5",
"should": "^8.2.2"
},
"keywords": [
"anchor",
"commonmark",
"docs",
"document",
"documentation",
"glossary",
"heading",
"index",
"links",
"markdown",
"md",
"plugin",
"readme",
"reference",
"remarkable",
"remarkableplugin",
"render",
"renderer",
"table",
"table of contents",
"table-of-contents",
"toc",
"write"
],
"verb": {
"run": true,
"toc": true,
"layout": "default",
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"related": {
"list": [
"gfm-code-blocks",
"markdown-link",
"markdown-utils",
"pretty-remarkable",
"remarkable"
]
},
"reflinks": [
"<%= related.list %>",
"verb"
],
"lint": {
"reflinks": true
}
},
"directories": {
"test": "test"
}
}