forked from aslushnikov/table-of-contents-preprocessor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 948 Bytes
/
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
{
"name": "md-toc-filter"
, "version": "0.9.0"
, "description": "This is a small node script to preprocess and create table of contents for markdown documents. It examines the document you pass to it, creates a table of contents based on your titles, and inserts it instead of every line that contains '@@TOC@@'"
, "keywords" : [
"table of contents",
"toc",
"contents"
]
, "homepage": "https://github.com/aslushnikov/table-of-contents-preprocessor"
, "bugs": "https://github.com/aslushnikov/table-of-contents-preprocessor/issues"
, "author": {
"name": "Andrey Lushnikov",
"email": "[email protected]",
"url": "http://aslushnikov.com"
}
, "files": [
"toc.js",
"README.md"
]
, "bin": "./toc.js"
, "repository" : {
"type" : "git"
, "url" : "https://github.com/aslushnikov/table-of-contents-preprocessor"
}
, "engines" : { "node" : ">=0.6.14" }
, "private": false
}