source: node_modules/d3-sankey/package.json@ e4c61dd

Last change on this file since e4c61dd was e4c61dd, checked in by istevanoska <ilinastevanoska@…>, 6 months ago

Prototype 1.1

  • Property mode set to 100644
File size: 1.1 KB
Line 
1{
2 "name": "d3-sankey",
3 "version": "0.12.3",
4 "description": "Visualize flow between nodes in a directed acyclic network.",
5 "keywords": [
6 "d3",
7 "d3-module",
8 "sankey"
9 ],
10 "author": {
11 "name": "Mike Bostock",
12 "url": "https://bost.ocks.org/mike/"
13 },
14 "license": "BSD-3-Clause",
15 "main": "dist/d3-sankey.js",
16 "unpkg": "dist/d3-sankey.min.js",
17 "module": "src/index.js",
18 "homepage": "https://github.com/d3/d3-sankey",
19 "repository": {
20 "type": "git",
21 "url": "https://github.com/d3/d3-sankey.git"
22 },
23 "files": [
24 "dist/**/*.js",
25 "src/**/*.js"
26 ],
27 "scripts": {
28 "pretest": "rollup -c",
29 "test": "tape 'test/**/*-test.js' && eslint src",
30 "prepublishOnly": "rm -rf dist && yarn test",
31 "postpublish": "git push && git push --tags && zip -j dist/${npm_package_name}.zip -- LICENSE README.md dist/${npm_package_name}.js dist/${npm_package_name}.min.js"
32 },
33 "dependencies": {
34 "d3-array": "1 - 2",
35 "d3-shape": "^1.2.0"
36 },
37 "devDependencies": {
38 "eslint": "6",
39 "rollup": "1",
40 "rollup-plugin-terser": "5",
41 "tape": "4"
42 }
43}
Note: See TracBrowser for help on using the repository browser.