-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.13 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": "Treemap.js",
"version": "0.4.1",
"description": "A javascript library for calculating a treemap.",
"license": "MIT",
"main": "index.js",
"scripts": {
"bundle": "browserify index.js --standalone Treemap -o dist/Treemap.js",
"devbundle": "npm run bundle && copyfiles -u 1 dist/Treemap.js examples/lib/",
"dist": "npm run bundle && browserify index.js --standalone Treemap | uglifyjs > dist/Treemap.min.js && copyfiles -u 1 dist/Treemap.js examples/lib/",
"documentation": "documentation readme index.js --section=Reference",
"onchange": "onchange 'index.js' -- npm run devbundle"
},
"repository": {
"type": "git",
"url": "https://github.com/bohnacker/Treemap.js"
},
"keywords": [
"dataviz",
"graph",
"treemap",
"recursive"
],
"author": "Hartmut Bohnacker <mail@hartmut-bohnacker.de>",
"bugs": {
"url": "https://github.com/bohnacker/Treemap.js/issues"
},
"homepage": "https://github.com/bohnacker/Treemap.js",
"devDependencies": {
"browserify": "^14.4.0",
"documentation": "^5.2.2",
"uglify-js": "^3.0.28",
"watch": "1.0.2",
"onchange": "6.0.0"
}
}