forked from vimeo/vimeo-depth-player
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.36 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
{
"name": "vimeo_depth_player",
"version": "0.0.1",
"description": "A WebVR volumetric video player that uses color-depth based videos hosted on Vimeo.",
"main": "server.js",
"engines" : {
"node" : ">=0.12"
},
"scripts": {
"start": "node server.js",
"dev": "concurrently \"nodemon server.js\" \"watchify src/index.js -o dist/vimeo.depth-player.js -v\"",
"build": "browserify src/index.js | uglifyjs --source-map --output dist/vimeo.depth-player.min.js",
"test": "eslint ."
},
"author": "Or Fleisher <[email protected]>",
"license": "MIT",
"dependencies": {
"ejs": "^2.6.1",
"express": "^4.16.2",
"sync-request": "^6.0.0",
"three": "^0.89.0",
"vimeo": "^2.0.2"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babelify": "^8.0.0",
"browserify": "^15.2.0",
"concurrently": "^3.5.1",
"dat.gui": "^0.7.2",
"dotenv": "^6.0.0",
"eslint": "^5.2.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-strongloop": "^2.1.0",
"event-emitter-es6": "^1.1.5",
"glslify": "^6.1.0",
"nodemon": "^1.14.12",
"prettier": "1.13.7",
"uglify-js": "^3.3.9",
"watchify": "^3.10.0"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"env"
]
}
],
"glslify"
]
}
}