-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
59 lines (59 loc) · 1.28 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
{
"name": "toc-md",
"version": "0.2.0",
"description": "Generates a markdown TOC (table of contents)",
"keywords": [
"readme",
"markdown",
"toc",
"table of contents"
],
"author": {
"name": "Evgeniy Gavryushin",
"email": "job.egavr@yandex.ru",
"url": "https://github.com/eGavr"
},
"homepage": "https://github.com/eGavr/toc-md",
"repository": {
"type": "git",
"url": "git://github.com/eGavr/toc-md.git"
},
"bugs": "https://github.com/eGavr/toc-md/issues",
"main": "./lib/index.js",
"bin": {
"toc-md": "./bin/toc-md"
},
"dependencies": {
"coa": "0.4.1",
"colors": "1.0.3",
"inherit": "2.2.2",
"lodash": "3.0.1",
"marked": "0.3.3",
"parse5": "2.1.5",
"vow-fs": "0.3.4",
"vow-node": "0.2.1"
},
"devDependencies": {
"mocha": "2.1.0",
"must": "0.12.0",
"istanbul": "0.3.5",
"jshint": "2.6.0",
"jscs": "1.10.0"
},
"scripts": {
"test": "npm run lint && npm run coverage",
"lint": "jshint . && jscs -c .jscs.js .",
"unit-test": "mocha test",
"coverage": "istanbul cover _mocha -- test"
},
"engines": {
"node": ">=0.8.0",
"npm": ">=1.2.10"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/egavr/toc-md/blob/master/LICENSE"
}
]
}