forked from juniorxsound/Depthkit.js
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
51 lines (51 loc) · 1.17 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
{
"name": "depthkit",
"version": "1.0.0",
"description": "A plugin for rendering DepthKit volumetric videos using Three.js",
"main": "build/depthkit.js",
"scripts": {
"start": "concurrently \"http-server -s --cors\" \"watchify src/index.js -o build/depthkit.js -v\"",
"build": "browserify src/index.js | uglifyjs -mc warnings=false > build/depthkit.min.js",
"test": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/juniorxsound/DepthKit.js.git"
},
"keywords": [
"WebGL",
"three.js",
"volumetric",
"3D",
"depthkit"
],
"author": "Or Fleisher <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"babelify": "^7.3.0",
"browserify": "^14.4.0",
"concurrently": "^3.5.1",
"glslify": "^6.1.1",
"http-server": "^0.10.0",
"uglify-js": "^3.3.23",
"watchify": "^3.11.0"
},
"dependencies": {
"three": "^0.87.1",
"webvr-polyfill": "^0.9.36"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015"
]
}
],
"glslify"
]
}
}