-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.69 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
37
38
39
40
41
42
43
44
45
{
"name": "d3-vector",
"version": "1.0.0",
"description": "Module for defining connections between nodes in a force graph as directional vectors",
"main": "index.js",
"scripts": {
"pretest": "rm -rf build && mkdir build && rollup --banner \"$(preamble)\" -g d3-collection:d3,d3-interpolate:d3 -f umd -n d3 -o build/d3-vector.js -- index.js",
"prepublish": "npm run test && uglifyjs --preamble \"$(preamble)\" build/d3-vector.js -c -m -o build/d3-vector.min.js",
"postpublish": "VERSION=`node -e 'console.log(require(\"./package.json\").version)'`; git push && git push --tags && cd ../d3.github.com && git pull && cp ../d3-force/build/d3-force.js d3-force.v1.js && cp ../d3-force/build/d3-force.min.js d3-force.v1.min.js && git add d3-force.v1.js d3-force.v1.min.js && git commit -m \"d3-force ${VERSION}\" && git push && cd - && zip -j build/d3-force.zip -- LICENSE README.md build/d3-force.js build/d3-force.min.js",
"test": "echo \"Woo! You're so great at this!\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/thepeoplesbourgeois/d3-vector.git"
},
"keywords": [
"d3",
"d3-module",
"layout",
"network",
"graph",
"force",
"verlet",
"vector"
],
"author": "Joshua Bourgeois",
"license": "MIT",
"bugs": {
"url": "https://github.com/thepeoplesbourgeois/d3-vector/issues"
},
"homepage": "https://github.com/thepeoplesbourgeois/d3-vector#readme",
"dependencies": {
"d3-collection": "1",
"d3-dispatch": "1",
"d3-quadtree": "1",
"d3-interpolate": "1",
"d3-timer": "1"
},
"devDependencies": {
"package-preamble": "0.0",
"rollup": "0.36",
"tape": "4",
"uglify-js": "~> 2.6.0"
}
}