forked from aslushnikov/table-of-contents-preprocessor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1 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
{
"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"
},
"dependencies": {
"commander": "2.3.0"
},
"engines": {
"node": ">=0.6.14"
},
"private": false,
"devDependencies": {
"mocha": "^2.2.5"
}
}