forked from vasturiano/force-graph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.91 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
62
63
{
"name": "skyeye-force-graph",
"version": "2.0.3",
"description": "2D force-directed graph rendered on HTML5 canvas",
"unpkg": "dist/skyeye-force-graph.min.js",
"main": "dist/skyeye-force-graph.common.js",
"module": "dist/skyeye-force-graph.module.js",
"repository": {
"type": "git",
"url": "git+https://github.com/vasturiano/force-graph.git"
},
"homepage": "https://github.com/vasturiano/force-graph",
"author": {
"name": "Vasco Asturiano",
"url": "http://bl.ocks.org/vasturiano"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/vasturiano/force-graph/issues"
},
"scripts": {
"build": "rimraf dist && rollup -c",
"dev": "rollup -c -w",
"minify": "terser dist/skyeye-force-graph.js -o dist/skyeye-force-graph.min.js -c -m --comments '/Version/'",
"build-module": "rollup -c rollup.config.module.js",
"prepare": "npm run build && npm run minify && npm run build-module"
},
"files": [
"dist/**/*",
"example/**/*"
],
"dependencies": {
"@tweenjs/tween.js": "^18.4.2",
"accessor-fn": "^1.2.2",
"bezier-js": "^2.4.4",
"canvas-color-tracker": "^1.1.0",
"d3-drag": "^1.2.4",
"d3-force-3d": "^2.0.3",
"d3-scale": "^3.2.0",
"d3-scale-chromatic": "^1.5.0",
"d3-selection": "^1.4.0",
"d3-zoom": "^1.8.3",
"global": "^4.4.0",
"index-array-by": "^1.2.7",
"kapsule": "1.14.1",
"lodash.throttle": "^4.1.1"
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/preset-env": "^7.7.1",
"postcss-nested": "^4.2.1",
"postcss-simple-vars": "^5.0.2",
"rimraf": "^3.0.0",
"rollup": "^1.26.3",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-postcss": "^2.0.3",
"terser": "^4.3.9"
}
}