-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
36 lines (36 loc) · 1.07 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": "d3-bboxCollide",
"version": "1.0.4",
"description": "A bounding box collision detection constraint for d3 forceSimulation.",
"keywords": [
"d3",
"d3-module",
"network",
"forceSimulation",
"constraint",
"collide"
],
"license": "Unlicense",
"main": "build/d3-bboxCollide.js",
"author": "Elijah Meeks",
"jsnext:main": "index",
"homepage": "https://github.com/emeeks/d3-bboxCollide",
"repository": {
"type": "git",
"url": "https://github.com/emeeks/d3-bboxCollide.git"
},
"scripts": {
"pretest": "rm -rf build && mkdir build && rollup -f umd -n d3 -g d3-quadtree:d3 -o build/d3-bboxCollide.js -- index.js",
"test": "tape 'test/**/*-test.js'",
"prepublish": "npm run test && uglifyjs build/d3-bboxCollide.js -c -m -o build/d3-bboxCollide.min.js",
"postpublish": "zip -j build/d3-bboxCollide.zip -- LICENSE README.md build/d3-bboxCollide.js build/d3-bboxCollide.min.js"
},
"devDependencies": {
"rollup": "0.27",
"tape": "4",
"uglify-js": "2.6.0"
},
"dependencies": {
"d3-quadtree": "1.0.1"
}
}