svg-sankey
Version:
Create SVG Sankey diagrams from the command line
34 lines (33 loc) • 779 B
JSON
{
"name": "svg-sankey",
"version": "0.2.0",
"description": "Create SVG Sankey diagrams from the command line",
"main": "index.js",
"bin": "./cli.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel index.js -o index.es5.js",
"prepublish": "npm run build"
},
"keywords": [
"Sankey",
"SVG",
"d3-sankey-diagram"
],
"author": "Rick Lupton",
"license": "MIT",
"dependencies": {
"commander": "^2.9.0",
"d3-array": "^1.2.1",
"d3-format": "^1.2.0",
"d3-sankey-diagram": "^0.7.1",
"d3-scale": "^1.0.6",
"d3-selection": "^1.1.0",
"jsdom": "^9.4.1",
"xmlserializer": "^0.4.0"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-preset-es2015": "^6.9.0"
}
}