Alpha 45!
Showing
{ | ||
"name": "d3", | ||
"version": "4.0.0-alpha.44", | ||
"version": "4.0.0-alpha.45", | ||
"publishConfig": { | ||
"tag": "next" | ||
}, | ||
... | ... | @@ -12,7 +12,7 @@ |
"animation", | ||
"canvas" | ||
], | ||
"homepage": "https://github.com/d3/d3", | ||
"homepage": "https://d3js.org", | ||
"license": "BSD-3-Clause", | ||
"author": { | ||
"name": "Mike Bostock", | ||
... | ... | @@ -28,43 +28,45 @@ |
"scripts": { | ||
"pretest": "rm -rf build && mkdir build && json2module package.json > build/package.js && bin/rollup-node", | ||
"test": "tape 'test/**/*-test.js'", | ||
"prepublish": "npm run test && bin/rollup && uglifyjs build/d3.js -c -m -o build/d3.min.js", | ||
"prepublish": "npm run test && bin/rollup \"$(preamble)\" && uglifyjs --preamble \"$(preamble)\" build/d3.js -c -m -o build/d3.min.js", | ||
"postpublish": "VERSION=`node -e 'console.log(require(\"./package.json\").version)'`; git push && cp -v build/d3.js ../d3.github.com/d3.v${VERSION}.js && cp -v build/d3.min.js ../d3.github.com/d3.v${VERSION}.min.js && cd ../d3.github.com && git add d3.v${VERSION}.js d3.v${VERSION}.min.js && git commit -m \"d3 ${VERSION}\" && git push && cd - && zip -j build/d3.zip -- LICENSE README.md build/d3.js build/d3.min.js" | ||
}, | ||
"devDependencies": { | ||
"json2module": "0.0", | ||
"rollup": "0.26", | ||
"package-preamble": "0.0", | ||
"rollup": "0.27", | ||
"rollup-plugin-node-resolve": "1", | ||
"tape": "4", | ||
"uglify-js": "2" | ||
}, | ||
"dependencies": { | ||
"d3-array": "0.7.1", | ||
"d3-axis": "0.3.2", | ||
"d3-collection": "0.2.0", | ||
"d3-color": "0.4.2", | ||
"d3-dispatch": "0.4.3", | ||
"d3-drag": "0.2.1", | ||
"d3-dsv": "0.3.2", | ||
"d3-ease": "0.7.0", | ||
"d3-force": "0.6.3", | ||
"d3-format": "0.5.1", | ||
"d3-hierarchy": "0.2.3", | ||
"d3-interpolate": "0.8.0", | ||
"d3-path": "0.1.5", | ||
"d3-polygon": "0.2.1", | ||
"d3-quadtree": "0.7.3", | ||
"d3-queue": "2.0.3", | ||
"d3-random": "0.2.1", | ||
"d3-request": "0.4.7", | ||
"d3-scale": "0.7.2", | ||
"d3-selection": "0.7.3", | ||
"d3-shape": "0.6.1", | ||
"d3-time": "0.2.5", | ||
"d3-time-format": "0.3.2", | ||
"d3-timer": "0.4.4", | ||
"d3-transition": "0.2.10", | ||
"d3-voronoi": "0.3.3", | ||
"d3-zoom": "~0.2.2" | ||
"d3-array": "0.8.0", | ||
"d3-axis": "0.4.0", | ||
"d3-brush": "0.2.0", | ||
"d3-collection": "0.3.1", | ||
"d3-color": "0.5.0", | ||
"d3-dispatch": "0.5.0", | ||
"d3-drag": "0.3.0", | ||
"d3-dsv": "0.4.0", | ||
"d3-ease": "0.8.0", | ||
"d3-force": "0.7.0", | ||
"d3-format": "0.6.0", | ||
"d3-hierarchy": "0.3.0", | ||
"d3-interpolate": "0.9.0", | ||
"d3-path": "0.2.0", | ||
"d3-polygon": "0.3.0", | ||
"d3-quadtree": "0.8.0", | ||
"d3-queue": "3.0.0", | ||
"d3-random": "0.3.0", | ||
"d3-request": "0.5.0", | ||
"d3-scale": "0.9.0", | ||
"d3-selection": "0.8.0", | ||
"d3-shape": "0.7.0", | ||
"d3-time": "0.3.0", | ||
"d3-time-format": "0.4.0", | ||
"d3-timer": "0.5.0", | ||
"d3-transition": "0.3.0", | ||
"d3-voronoi": "0.4.0", | ||
"d3-zoom": "0.3.0" | ||
} | ||
} |
Please register or sign in to comment