forked from ricklupton/d3-sankey-diagram
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.94 KB
/
package.json
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
{
"name": "d3-sankey-diagram",
"version": "0.8.0",
"description": "Sankey diagram d3 plugin",
"author": "Rick Lupton",
"keywords": [
"d3",
"d3-module",
"sankey",
"diagram"
],
"license": "MIT",
"main": "build/d3-sankey-diagram.cjs.js",
"module": "build/d3-sankey-diagram.esm.js",
"browser": "build/d3-sankey-diagram.umd.js",
"homepage": "https://github.com/ricklupton/d3-sankey-diagram",
"repository": {
"type": "git",
"url": "https://github.com/ricklupton/d3-sankey-diagram.git"
},
"scripts": {
"build": "rm -rf build && mkdir build && rollup -c",
"pretest": "npm run build",
"test": "tape -r ./test/buble-register -r reify 'test/**/*-test.js' && standard index.js src test",
"test:watch": "tape-watch -r ../test/buble-register -r reify 'test/**/*-test.js'",
"prepublishOnly": "npm run test && uglifyjs build/d3-sankey-diagram.umd.js -c -m -o build/d3-sankey-diagram.min.js",
"postpublish": "zip -j build/d3-sankey-diagram.zip -- LICENSE README.md build/d3-sankey-diagram.cjs.js build/d3-sankey-diagram.esm.js build/d3-sankey-diagram.umd.js build/d3-sankey-diagram.min.js"
},
"dependencies": {
"d3-array": "^1.0.2",
"d3-collection": "^1.0.2",
"d3-dispatch": "^1.0.3",
"d3-format": "^1.1.1",
"d3-interpolate": "^1.1.3",
"d3-selection": "^1.0.3",
"d3-transition": "^1.0.4",
"fsevents": "^2.0.7",
"graphlib": "~2.1.0"
},
"devDependencies": {
"almost-equal": "^1.1.0",
"babel-eslint": "^7.1.1",
"buble": "^0.15.2",
"d3-scale": "^1.0.6",
"d3-timer": "^1.0.7",
"defined": "^1.0.0",
"faucet": "0.0.1",
"jsdom": "^11.1.0",
"os-homedir": "^1.0.2",
"prettier": "2.1.2",
"reify": "^0.4.4",
"rollup": "0.46",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"standard": "^8.6.0",
"tape": "4",
"tape-watch": "^2.2.4",
"uglify-js": "2"
}
}