-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 773 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 773 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
{
"name": "auto-toc",
"version": "1.0.0",
"description": "On the fly TOC generator",
"main": "dist.js",
"scripts": {
"build": "browserify -s autoToc index.js -o bundle.js",
"minify": "npm run build && uglifyjs --compress --mangle -o dist.js -- bundle.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/timaschew/auto-toc.js.git"
},
"keywords": [
"toc",
"makrdown",
"html",
"table",
"of",
"contents",
"client",
"browser",
"runtime"
],
"author": "Anton Wilhelm",
"license": "ISC",
"bugs": {
"url": "https://github.com/timaschew/auto-toc.js/issues"
},
"homepage": "https://github.com/timaschew/auto-toc.js#readme",
"devDependencies": {
"browserify": "^13.0.0"
}
}