41 lines
1.0 KiB
JSON
41 lines
1.0 KiB
JSON
{
|
|
"name": "d3-sankey",
|
|
"version": "0.9.1",
|
|
"description": "Visualize flow between nodes in a directed acyclic network.",
|
|
"keywords": [
|
|
"d3",
|
|
"d3-module",
|
|
"sankey"
|
|
],
|
|
"author": {
|
|
"name": "Mike Bostock",
|
|
"url": "https://bost.ocks.org/mike/"
|
|
},
|
|
"license": "BSD-3-Clause",
|
|
"main": "dist/d3-sankey.js",
|
|
"unpkg": "dist/d3-sankey.min.js",
|
|
"module": "src/index.js",
|
|
"homepage": "https://github.com/d3/d3-sankey",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/d3/d3-sankey.git"
|
|
},
|
|
"scripts": {
|
|
"pretest": "rollup -c",
|
|
"test": "tape 'test/**/*-test.js' && eslint src",
|
|
"prepublishOnly": "rm -rf dist && yarn test",
|
|
"postpublish": "git push && git push --tags && zip -j dist/d3-sankey.zip -- LICENSE README.md dist/d3-sankey.js dist/d3-sankey.min.js"
|
|
},
|
|
"dependencies": {
|
|
"d3-array": "1",
|
|
"d3-collection": "1",
|
|
"d3-shape": "^1.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "5",
|
|
"rollup": "1",
|
|
"rollup-plugin-terser": "4",
|
|
"tape": "4"
|
|
}
|
|
}
|