-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
48 lines (48 loc) · 1.11 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
{
"name": "aframe-depthkit",
"version": "0.0.2",
"description": "An A-Frame component for rendering DepthKit volumetric videos in WebVR",
"main": "src/index.js",
"scripts": {
"start": "concurrently \"http-server -s --cors\" \"watchify src/index.js -o dist/aframe.depthkit.js -v\"",
"build": "browserify src/index.js | uglifyjs -mc warnings=false > dist/aframe.depthkit.min.js",
"test": "npm run build"
},
"keywords": [
"aframe",
"three.js",
"volumetric",
"3D",
"depthkit"
],
"repository": {
"type": "git",
"url": "https://github.com/juniorxsound/DepthKit-A-Frame"
},
"author": "Or Fleisher <[email protected]>",
"license": "MIT",
"dependencies": {
"aframe": "^0.7.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babelify": "^8.0.0",
"browserify": "^15.1.0",
"concurrently": "^3.5.1",
"uglify-js": "^3.3.5",
"watchify": "^3.9.0"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"env"
]
}
]
]
}
}