d3/package.json

75 строки
2.2 KiB
JSON
Исходник Обычный вид История

{
"name": "d3",
2016-06-19 19:52:30 +03:00
"version": "4.0.0-alpha.50",
2016-01-14 04:11:32 +03:00
"publishConfig": {
"tag": "next"
},
2016-01-02 08:41:20 +03:00
"description": "Data-Driven Documents",
"keywords": [
"dom",
"visualization",
"svg",
"animation",
"canvas"
],
2016-06-08 07:43:51 +03:00
"homepage": "https://d3js.org",
2016-01-02 08:41:20 +03:00
"license": "BSD-3-Clause",
"author": {
"name": "Mike Bostock",
2016-05-13 19:16:17 +03:00
"url": "https://bost.ocks.org/mike"
},
"main": "build/d3.node.js",
"browser": "build/d3.js",
2016-01-02 08:41:20 +03:00
"jsnext:main": "index",
"repository": {
"type": "git",
2016-05-13 19:16:17 +03:00
"url": "https://github.com/d3/d3.git"
2012-09-18 01:26:54 +04:00
},
2016-01-02 08:41:20 +03:00
"scripts": {
"pretest": "rm -rf build && mkdir build && json2module package.json > build/package.js && bin/rollup-node",
2016-03-15 20:20:44 +03:00
"test": "tape 'test/**/*-test.js'",
2016-06-08 07:43:51 +03:00
"prepublish": "npm run test && bin/rollup \"$(preamble)\" && uglifyjs --preamble \"$(preamble)\" build/d3.js -c -m -o build/d3.min.js",
2016-06-24 03:00:49 +03:00
"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 API.md CHANGES.md build/d3.js build/d3.min.js"
2014-05-22 14:31:22 +04:00
},
"devDependencies": {
"json2module": "0.0",
2016-06-08 07:43:51 +03:00
"package-preamble": "0.0",
2016-06-19 19:52:30 +03:00
"rollup": "0.31",
2016-06-09 23:07:31 +03:00
"rollup-plugin-ascii": "0.0",
2016-02-08 06:46:19 +03:00
"rollup-plugin-node-resolve": "1",
2016-01-02 08:41:20 +03:00
"tape": "4",
"uglify-js": "2"
},
2016-01-02 08:41:20 +03:00
"dependencies": {
2016-06-19 19:52:30 +03:00
"d3-array": "1.0.0",
2016-06-10 19:11:37 +03:00
"d3-axis": "0.4.1",
2016-06-19 19:52:30 +03:00
"d3-brush": "0.2.3",
"d3-collection": "1.0.0",
"d3-color": "1.0.0",
"d3-dispatch": "1.0.0",
"d3-drag": "0.3.1",
"d3-dsv": "1.0.0",
"d3-ease": "1.0.0",
"d3-force": "0.7.1",
2016-06-08 07:43:51 +03:00
"d3-format": "0.6.0",
2016-06-19 19:52:30 +03:00
"d3-geo": "0.0.3",
2016-06-08 07:43:51 +03:00
"d3-hierarchy": "0.3.0",
2016-06-19 19:52:30 +03:00
"d3-interpolate": "1.0.0",
"d3-path": "1.0.0",
"d3-polygon": "1.0.0",
"d3-quadtree": "1.0.0",
"d3-queue": "3.0.1",
"d3-random": "1.0.0",
"d3-request": "1.0.0",
"d3-scale": "0.9.3",
"d3-selection": "0.9.0",
"d3-shape": "0.7.1",
"d3-time": "1.0.0",
"d3-time-format": "1.0.0",
"d3-timer": "1.0.0",
"d3-transition": "0.3.1",
"d3-voronoi": "1.0.0",
"d3-zoom": "0.3.1"
2016-01-02 08:41:20 +03:00
}
}