-
-
Notifications
You must be signed in to change notification settings - Fork 710
/
package.json
152 lines (152 loc) · 3.49 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
{
"name": "markdown-toc",
"description": "Generate a markdown TOC (table of contents) with Remarkable.",
"version": "1.2.0",
"homepage": "https://github.com/jonschlinkert/markdown-toc",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"contributors": [
"=^._.^= (http://maxogden.com)",
"Andrés (http://angrykoala.github.io)",
"Benjamin Schmitz (https://github.com/Vortex375)",
"Christian Raunitschka (raunitschka.de)",
"Daniel Chen (http://chendaniely.github.io)",
"Daniel Mietchen (http://about.me/daniel.mietchen)",
"David Mohl (https://dvcrn.github.io)",
"Federico Soave (https://github.com/Feder1co5oave)",
"Gary Green (https://github.com/garygreen)",
"Jon Schlinkert (http://twitter.com/jonschlinkert)",
"Josh Duff (https://tehshrike.github.io)",
"Matt Ellis (http://sticklebackplastic.com)",
"Nicolas Morel (https://github.com/Marsup)",
"Rafael Steil (http://rafaelsteil.com)",
"Richard Bradley (https://github.com/RichardBradley)",
"Seth Vincent (https://sethvincent.com)",
"Stefan Walther (http://qliksite.io)",
"Tao Wang (https://github.com/twang2218)",
"(https://github.com/lu22do)",
"Zeke Sikelianos (http://zeke.sikelianos.com)"
],
"repository": "jonschlinkert/markdown-toc",
"bugs": {
"url": "https://github.com/jonschlinkert/markdown-toc/issues"
},
"license": "MIT",
"files": [
"cli.js",
"index.js",
"lib"
],
"main": "index.js",
"bin": {
"markdown-toc": "cli.js"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha"
},
"dependencies": {
"concat-stream": "^1.5.2",
"diacritics-map": "^0.1.0",
"gray-matter": "^3.1.1",
"lazy-cache": "^2.0.2",
"list-item": "^1.1.1",
"markdown-link": "^0.1.1",
"minimist": "^1.2.0",
"mixin-deep": "^1.1.3",
"object.pick": "^1.2.0",
"remarkable": "^1.7.1",
"repeat-string": "^1.6.1",
"strip-color": "^0.1.0"
},
"devDependencies": {
"gulp-format-md": "^2.0.0",
"mocha": "^10.2.0"
},
"keywords": [
"anchor",
"API documentation",
"code documentation",
"commonmark",
"content navigation",
"content organization",
"developer tools",
"docs",
"document structure",
"document",
"documentation tool",
"documentation",
"glossary",
"heading",
"headings",
"index",
"javascript",
"links",
"markdown parser",
"markdown tools",
"Markdown-based",
"markdown-toc",
"markdown",
"markup language",
"md files",
"md parser",
"md-toc",
"md",
"node.js",
"npm",
"open-source",
"outline",
"package.json",
"plugin",
"README tool",
"readme",
"reference",
"remarkable",
"remarkableplugin",
"render",
"renderer",
"structure",
"table of contents",
"table-of-contents",
"table",
"toc-generator",
"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": [
"gfm-code-blocks",
"markdown-link",
"markdown-utils",
"pretty-remarkable",
"remarkable",
"verb",
"verb-readme-generator"
],
"lint": {
"reflinks": true
}
},
"directories": {
"test": "test"
}
}