forked from snorpey/circlepacker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.06 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.06 KB
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
{
"name": "circlepacker",
"version": "1.1.0",
"description": "circle packing in a webworker",
"keywords": [
"circkepacker",
"circle",
"packing",
"webworker",
"browser"
],
"main": "dist/circlepacker.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run build-es6 && npm run build-es5 && npm run build-min && npm run build-min-es5",
"build-es6": "node build.js",
"build-es5": "node build.js -e",
"build-min": "node build.js -m",
"build-min-es5": "node build.js -me"
},
"module": "dist/circlepacker.es6.js",
"repository": {
"type": "git",
"url": "git+https://github.com/snorpey/circlepacker.git"
},
"author": "Georg Fischer <[email protected]>",
"license": "MIT",
"devDependencies": {
"commander": "^2.9.0",
"rollup": "^0.41.4",
"rollup-plugin-buble": "^0.15.0",
"uglify-js": "github:mishoo/UglifyJS2#harmony"
},
"bugs": {
"url": "https://github.com/snorpey/circlepacker/issues"
},
"homepage": "https://github.com/snorpey/circlepacker#readme"
}