forked from zeke/markdown-index
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 834 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 834 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
{
"name": "markdown-index",
"version": "2.1.0",
"description": "Build a markdown table of contents for all the markdown files in a given directory tree.",
"main": "index.js",
"scripts": {
"test": "standard --format"
},
"engines": {
"node": ">=4"
},
"repository": {
"type": "git",
"url": "https://github.com/zeke/markdown-index.git"
},
"keywords": [
"markdown",
"table",
"toc",
"documentation",
"README",
"index"
],
"author": "zeke",
"license": "MIT",
"bugs": {
"url": "https://github.com/zeke/markdown-index/issues"
},
"homepage": "https://github.com/zeke/markdown-index",
"dependencies": {
"glob": "~3.2.7",
"inflection": "^1.8.0",
"markdown-toc": "~0.12.12"
},
"bin": "./index.js",
"devDependencies": {
"standard": "^5.4.1"
}
}