{"_id":"d3v4","_rev":"3-29c8c20aa053be62362d0ce09bc1637a","name":"d3v4","description":"Data-Driven Documents","dist-tags":{"latest":"4.2.2"},"versions":{"4.2.2":{"name":"d3v4","version":"4.2.2","description":"Data-Driven Documents","keywords":["dom","visualization","svg","animation","canvas"],"homepage":"https://d3js.org","license":"BSD-3-Clause","author":{"name":"Mike Bostock","url":"https://bost.ocks.org/mike"},"main":"build/d3.node.js","browser":"build/d3.js","module":"index","jsnext:main":"index","repository":{"type":"git","url":"git+https://github.com/d3/d3.git"},"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 && rollup -c --banner \"$(preamble)\" -f umd -n d3 -o build/d3.js -- index.js && 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 && git push --tags && cd ../d3.github.com && git pull && cp ../d3/build/d3.js d3.v4.js && cp ../d3/build/d3.min.js d3.v4.min.js && git add d3.v4.js d3.v4.min.js && git commit -m \"d3 ${VERSION}\" && git push && cd - && cd ../d3-bower && git pull && cp ../d3/LICENSE ../d3/README.md ../d3/build/d3.js ../d3/build/d3.min.js . && git add -- LICENSE README.md d3.js d3.min.js && git commit -m \"${VERSION}\" && git tag -am \"${VERSION}\" v${VERSION} && git push && git push --tags && cd - && zip -j build/d3.zip -- LICENSE README.md API.md CHANGES.md build/d3.js build/d3.min.js"},"devDependencies":{"json2module":"0.0","package-preamble":"0.0","rollup":"0.34","rollup-plugin-ascii":"0.0","rollup-plugin-node-resolve":"2","tape":"4","uglify-js":"2"},"dependencies":{"d3-array":"1.0.1","d3-axis":"1.0.3","d3-brush":"1.0.2","d3-chord":"1.0.2","d3-collection":"1.0.1","d3-color":"1.0.1","d3-dispatch":"1.0.1","d3-drag":"1.0.1","d3-dsv":"1.0.1","d3-ease":"1.0.1","d3-force":"1.0.2","d3-format":"1.0.2","d3-geo":"1.2.3","d3-hierarchy":"1.0.2","d3-interpolate":"1.1.1","d3-path":"1.0.1","d3-polygon":"1.0.1","d3-quadtree":"1.0.1","d3-queue":"3.0.2","d3-random":"1.0.1","d3-request":"1.0.2","d3-scale":"1.0.3","d3-selection":"1.0.2","d3-shape":"1.0.2","d3-time":"1.0.2","d3-time-format":"2.0.2","d3-timer":"1.0.2","d3-transition":"1.0.1","d3-voronoi":"1.0.2","d3-zoom":"1.0.3"},"gitHead":"2a38d0e157df956048c51d8b6c94eced4895b72d","bugs":{"url":"https://github.com/d3/d3/issues"},"_id":"d3v4@4.2.2","_shasum":"758136fd790aaa8fd557dac35bc34c3812281c58","_from":".","_npmVersion":"3.9.5","_nodeVersion":"6.2.2","_npmUser":{"name":"joncursi","email":"joncursi@gmail.com"},"dist":{"shasum":"758136fd790aaa8fd557dac35bc34c3812281c58","tarball":"https://registry.npmjs.org/d3v4/-/d3v4-4.2.2.tgz","integrity":"sha512-C2oyYdy39LhgTOrMW0I5Oi/lDuvTzZqGByc8iVVvleA9+a9uEr1Xn39avwahOtBnoa3KIy9vL8Z1f0vXU0usMw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCEINnXl4A3IU8rJ688r7mC/9THGaU2aP1yzpqhqsS8aQIhAL1oo0qhUvrFz6fe17/gNiU2ftSYIhKJmmc5AiXrVl6x"}]},"maintainers":[{"name":"joncursi","email":"joncursi@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/d3v4-4.2.2.tgz_1472961708504_0.4246935599949211"}}},"readme":"# D3: Data-Driven Documents\n\n<a href=\"https://d3js.org\"><img src=\"https://d3js.org/logo.svg\" align=\"left\" hspace=\"10\" vspace=\"6\"></a>\n\n**D3** (or **D3.js**) is a JavaScript library for visualizing data using web standards. D3 helps you bring data to life using SVG, Canvas and HTML. D3 combines powerful visualization and interaction techniques with a data-driven approach to DOM manipulation, giving you the full capabilities of modern browsers and the freedom to design the right visual interface for your data.\n\n## Resources\n\n* [API Reference](https://github.com/d3/d3/blob/master/API.md)\n* [Release Notes](https://github.com/d3/d3/releases)\n* [Gallery](https://github.com/d3/d3/wiki/Gallery)\n* [Examples](http://bl.ocks.org/mbostock)\n* [Wiki](https://github.com/d3/d3/wiki)\n\n## Installing\n\nIf you use NPM, `npm install d3`. Otherwise, download the [latest release](https://github.com/d3/d3/releases/latest). The released bundle supports anonymous AMD, CommonJS, and vanilla environments. You can load directly from [d3js.org](https://d3js.org), [CDNJS](https://cdnjs.com/libraries/d3), or [npmcdn](https://npmcdn.com/d3/). For example:\n\n```html\n<script src=\"https://d3js.org/d3.v4.js\"></script>\n```\n\nFor the minified version:\n\n```html\n<script src=\"https://d3js.org/d3.v4.min.js\"></script>\n```\n\nYou can also use the standalone D3 microlibraries. For example, [d3-selection](https://github.com/d3/d3-selection):\n\n```html\n<script src=\"https://d3js.org/d3-selection.v1.js\"></script>\n```\n\nD3 is written using [ES2015 modules](http://www.2ality.com/2014/09/es6-modules-final.html). Create a [custom bundle using Rollup](http://bl.ocks.org/mbostock/bb09af4c39c79cffcde4), Webpack, or your preferred bundler. To import D3 into an ES2015 application, either import specific symbols from specific D3 modules:\n\n```js\nimport {scaleLinear} from \"d3-scale\";\n```\n\nOr import everything into a namespace (here, `d3`):\n\n```js\nimport * as d3 from \"d3\";\n```\n","maintainers":[{"name":"joncursi","email":"joncursi@gmail.com"}],"time":{"modified":"2022-06-14T08:04:26.173Z","created":"2016-09-04T04:01:50.812Z","4.2.2":"2016-09-04T04:01:50.812Z"},"homepage":"https://d3js.org","keywords":["dom","visualization","svg","animation","canvas"],"repository":{"type":"git","url":"git+https://github.com/d3/d3.git"},"author":{"name":"Mike Bostock","url":"https://bost.ocks.org/mike"},"bugs":{"url":"https://github.com/d3/d3/issues"},"license":"BSD-3-Clause","readmeFilename":"README.md"}