-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 753 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 753 Bytes
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
{
"name": "itp_test_scene",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "http-server",
"watch": "watchify src/index.js -o dist/bundle.js -v",
"build": "browserify src/index.js | uglifyjs -mc warnings=false > dist/bundle.min.js"
},
"author": "Or Fleisher",
"license": "MIT",
"dependencies": {
"three": "^0.85.2"
},
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"babelify": "^7.3.0",
"browserify": "^14.4.0",
"http-server": "^0.10.0",
"uglify-js": "^3.0.15",
"watchify": "^3.9.0"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015"
]
}
]
]
}
}