forked from nicolasartman/generate-table-of-contents
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 929 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
29
30
31
32
33
34
35
{
"name": "generate-table-of-contents",
"version": "1.0.0",
"description": "Generate a table of contents from part of a web page",
"main": "index.js",
"scripts": {
"test": "tape test.js | tap-summary",
"prepublish": "uglifyjs index.js -o index.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nicolasartman/generate-table-of-contents.git"
},
"keywords": [
"table-of-contents",
"toc",
"standalone"
],
"author": "Nicolas Artman",
"license": "MIT",
"bugs": {
"url": "https://github.com/nicolasartman/generate-table-of-contents/issues"
},
"homepage": "https://github.com/nicolasartman/generate-table-of-contents#readme",
"devDependencies": {
"emmet": "^1.3.2",
"jsdom": "^8.3.0",
"pretty": "^1.0.0",
"rewire": "^2.5.1",
"tap-diff": "^0.1.1",
"tap-summary": "^1.2.0",
"tape": "^4.5.1",
"uglify-js": "^2.6.2"
}
}