-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.07 KB
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
{
"name": "rapid-prototyping",
"version": "1.0.6",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "budo --dir dist/ src/index.js:js/bundle.js -v --live --open -- -t [ babelify --presets [ es2015 ] ] -t glslify",
"build": "browserify -t [ babelify --presets [ es2015 ] ] -t glslify src/index.js | uglifyjs -cm > dist/js/bundle.js"
},
"repository": {
"type": "git",
"url": "https://github.com/silviopaganini/rapid-prototype"
},
"bugs": {
"url": "https://github.com/silviopaganini/rapid-prototype/issues"
},
"author": "silvio paganini | @silviopaganini",
"license": "ISC",
"dependencies": {
"dat-gui": "^0.5.0",
"stats-js": "^1.0.0-alpha1",
"three-orbit-controls": "^72.0.0",
"three": "^0.74.0",
"babel-preset-es2015": "^6.3.13",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"glslify": "^5.0.2"
},
"devDependencies": {
"budo": "^8.0.3",
"uglifyjs": "^2.4.10"
},
"engines": {
"node": ">= 5.6.0",
"npm": ">=3.6.0"
}
}