-
-
Notifications
You must be signed in to change notification settings - Fork 489
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 853 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 853 Bytes
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
{
"author": "Thorsten Lorenz <thlorenz@gmx.de> (thlorenz.com)",
"name": "doctoc",
"description": "Generates TOC for markdown files of local git repo.",
"version": "0.0.0-development",
"repository": {
"type": "git",
"url": "git://github.com/thlorenz/doctoc.git"
},
"scripts": {
"test": "tap",
"doctoc": "node doctoc.js README.md --update-only"
},
"files": [
"lib"
],
"main": "doctoc.js",
"bin": "doctoc.js",
"dependencies": {
"@textlint/markdown-to-ast": "^15.5.2",
"anchor-markdown-header": "^0.8.4",
"htmlparser2": "^7.2.0",
"loglevel": "^1.9.2",
"minimist": "^1.2.6"
},
"devDependencies": {
"tap": "^21.5.0"
},
"license": "MIT",
"keywords": [
"github",
"markdown",
"documentation",
"readme",
"parser",
"bitbucket",
"gitlab",
"ghost"
]
}