forked from jonschlinkert/markdown-toc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
127 lines (127 loc) · 2.99 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
{
"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": "^0.1.11",
"mocha": "^3.2.0"
},
"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": [
"gfm-code-blocks",
"markdown-link",
"markdown-utils",
"pretty-remarkable",
"remarkable",
"verb",
"verb-readme-generator"
],
"lint": {
"reflinks": true
}
},
"directories": {
"test": "test"
}
}