forked from vasturiano/three-forcegraph
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.8 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.8 KB
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": "three-forcegraph",
"version": "1.16.2",
"description": "Force-directed graph as a ThreeJS 3d object",
"unpkg": "dist/three-forcegraph.min.js",
"main": "dist/three-forcegraph.common.js",
"module": "dist/three-forcegraph.module.js",
"repository": {
"type": "git",
"url": "git+https://github.com/vasturiano/three-forcegraph.git"
},
"homepage": "https://github.com/vasturiano/three-forcegraph",
"keywords": [
"3d",
"force",
"simulation",
"graph",
"three",
"d3",
"ngraph",
"webgl"
],
"author": {
"name": "Vasco Asturiano",
"url": "http://bl.ocks.org/vasturiano"
},
"bugs": {
"url": "https://github.com/vasturiano/three-forcegraph/issues"
},
"scripts": {
"build": "rimraf dist && rollup -c",
"watch": "rollup -c -w",
"minify": "uglifyjs dist/three-forcegraph.js -o dist/three-forcegraph.min.js -c -m --comments '/Version/'",
"build-module": "rollup -c rollup.config.module.js",
"prepublishOnly": "npm run build && npm run minify && npm run build-module"
},
"dependencies": {
"accessor-fn": "^1.2.2",
"d3-force-3d": "^1.1.2",
"d3-scale-chromatic": "^1.3.3",
"kapsule": "^1.9.2",
"ngraph.forcelayout": "^0.5.0",
"ngraph.forcelayout3d": "^0.0.16",
"ngraph.graph": "^0.0.14",
"tinycolor2": "^1.4.1"
},
"peerDependencies": {
"three": ">= 0.86 <= 1.0"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"rimraf": "^2.6.2",
"rollup": "^0.66.6",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-watch": "^4.3.1",
"uglify-js": "^3.4.9"
}
}