forked from vasturiano/three-render-objects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.93 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
64
{
"name": "three-render-objects",
"version": "1.2.6",
"description": "Easy way to render ThreeJS objects with built-in interaction defaults",
"unpkg": "dist/three-render-objects.min.js",
"main": "dist/three-render-objects.common.js",
"module": "dist/three-render-objects.module.js",
"repository": {
"type": "git",
"url": "git+https://github.com/vasturiano/three-render-objects.git"
},
"homepage": "https://github.com/vasturiano/three-render-objects",
"keywords": [
"3d",
"three",
"objects",
"scene",
"tick",
"webgl"
],
"author": {
"name": "Vasco Asturiano",
"url": "http://bl.ocks.org/vasturiano"
},
"bugs": {
"url": "https://github.com/vasturiano/three-render-objects/issues"
},
"scripts": {
"build": "rimraf dist && rollup -c",
"watch": "rollup -c -w",
"minify": "uglifyjs dist/three-render-objects.js -o dist/three-render-objects.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": {
"@tweenjs/tween.js": "^17.2.0",
"accessor-fn": "^1.2.2",
"kapsule": "^1.9.2",
"polished": "^2.3.0",
"three": "^0.97.0",
"three-fly-controls": "^1.1.0",
"three-orbit-controls": "^82.1.0",
"three-trackballcontrols": "^0.0.7"
},
"peerDependencies": {
"three": ">= 0.86"
},
"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",
"postcss-nested": "^4.1.0",
"postcss-simple-vars": "^5.0.1",
"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-plugin-postcss": "^1.6.2",
"rollup-watch": "^4.3.1",
"uglify-js": "^3.4.9"
}
}