Spaces:
Sleeping
Sleeping
File size: 1,650 Bytes
9a14526 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | {
"name": "@plotly/d3-sankey-circular",
"version": "0.33.1",
"description": "D3 sankey with circular links",
"author": "Tom Shanley",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/plotly/d3-sankey-circular.git"
},
"main": "dist/d3-sankey-circular.js",
"module": "dist/d3-sankey-circular.es.js",
"dependencies": {
"d3-array": "^1.2.1",
"d3-collection": "^1.0.4",
"d3-shape": "^1.2.0",
"elementary-circuits-directed-graph": "^1.0.4"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"babelrc-rollup": "^3.0.0",
"derequire": "^2.0.6",
"eslint": "^4.19.1",
"mkdirp": "^0.5.1",
"rimraf": "^2.6.2",
"rollup": "^0.59.4",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"uglify-js": "^3.1.3"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "current"
}
}
]
]
},
"scripts": {
"clean": "rimraf dist && mkdirp dist",
"build": "rollup -c",
"build:watch": "rollup -c -w",
"build:clean": "npm run clean && npm run build",
"prepare": "npm run build:clean",
"lint": "./node_modules/.bin/eslint src/",
"lint:fix": "./node_modules/.bin/eslint src/ --fix"
},
"files": [
"dist"
],
"keywords": [
"d3"
],
"bugs": {
"url": "https://github.com/tomshanley/d3-sankey-circular/issues"
},
"homepage": "https://github.com/tomshanley/d3-sankey-circular#readme"
}
|