Checkpoint 4.0 branch.
parents
Showing
.gitignore
0 → 100644
.npmignore
0 → 100644
LICENSE
0 → 100644
README.md
0 → 100644
d3.sublime-project
0 → 100644
index.js
0 → 100644
package.json
0 → 100644
{ | |||
"name": "d3", | |||
"version": "4.0.0pre", | |||
"description": "Data-Driven Documents", | |||
"keywords": [ | |||
"dom", | |||
"visualization", | |||
"svg", | |||
"animation", | |||
"canvas" | |||
], | |||
"homepage": "https://github.com/mbostock/d3", | |||
"license": "BSD-3-Clause", | |||
"author": { | |||
"name": "Mike Bostock", | |||
"url": "http://bost.ocks.org/mike" | |||
}, | |||
"main": "build/d3.js", | |||
"jsnext:main": "index", | |||
"repository": { | |||
"type": "git", | |||
"url": "https://github.com/mbostock/d3.git" | |||
}, | |||
"scripts": { | |||
"pretest": "mkdir -p build && rollup -c -o build/d3.js -- index.js", | |||
"test": "faucet `find test -name '*-test.js'`", | |||
"prepublish": "npm run test && uglifyjs build/d3.js -c -m -o build/d3.min.js && rm -f build/d3.zip && zip -j build/d3.zip -- LICENSE README.md build/d3.js build/d3.min.js" | |||
}, | |||
"devDependencies": { | |||
"faucet": "0.0", | |||
"rollup": "0.23", | |||
"rollup-plugin-json": "2", | |||
"rollup-plugin-npm": "1", | |||
"tape": "4", | |||
"uglify-js": "2" | |||
}, | |||
"dependencies": { | |||
"d3-array": "0.6.2", | |||
"d3-ease": "0.3.1", | |||
"d3-path": "0.1.3", | |||
"d3-random": "0.1.1", | |||
"d3-shape": "0.3.0" | |||
} | |||
} |
rollup.config.js
0 → 100644
Please register or sign in to comment