forked from vasturiano/3d-force-graph-vr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.76 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
{
"name": "3d-force-graph-vr",
"version": "1.23.0",
"description": "UI component for a 3D force-directed graph in VR",
"unpkg": "dist/3d-force-graph-vr.min.js",
"main": "dist/3d-force-graph-vr.common.js",
"module": "dist/3d-force-graph-vr.module.js",
"repository": {
"type": "git",
"url": "git+https://github.com/vasturiano/3d-force-graph-vr.git"
},
"homepage": "https://github.com/vasturiano/3d-force-graph-vr",
"keywords": [
"3d",
"force",
"graph",
"vr",
"aframe",
"d3"
],
"author": {
"name": "Vasco Asturiano",
"url": "http://bl.ocks.org/vasturiano"
},
"bugs": {
"url": "https://github.com/vasturiano/3d-force-graph-vr/issues"
},
"scripts": {
"build": "rimraf dist && rollup -c",
"watch": "rollup -c -w",
"minify": "terser dist/3d-force-graph-vr.js -o dist/3d-force-graph-vr.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": [
"src/**/*",
"dist/**/*",
"example/**/*"
],
"dependencies": {
"aframe": "^0.8.2",
"aframe-extras": "^5.0.1",
"aframe-forcegraph-component": "^2.15.1",
"kapsule": "^1.9.2"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-proposal-object-rest-spread": "^7.3.1",
"@babel/preset-env": "^7.3.1",
"postcss-nested": "^4.1.1",
"postcss-simple-vars": "^5.0.1",
"rimraf": "^2.6.3",
"rollup": "^1.1.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-postcss": "^2.0.0",
"rollup-watch": "^4.3.1",
"terser": "^3.14.1"
}
}