-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.14 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
{
"name": "dancing-torus",
"version": "0.0.1",
"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": "git://github.com/jiin/dancing-torus.git"
},
"bugs": "",
"author": "Neri Barnini",
"license": "ISC",
"dependencies": {
"babel-preset-es2015": "^6.3.13",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"clubber": "^1.0.0",
"dat-gui": "^0.5.0",
"glslify": "^5.0.2",
"node-soundcloud": "0.0.5",
"postprocessing": "^1.1.5",
"soundcloud-badge": "^1.1.0",
"stats-js": "^1.0.0-alpha1",
"sweetalert": "^1.1.3",
"three": "^0.74.0",
"three-orbit-controls": "^72.0.0",
"web-audio-analyser": "^2.0.1"
},
"devDependencies": {
"budo": "^8.0.3",
"uglifyjs": "^2.4.10"
},
"engines": {
"node": ">= 5.6.0",
"npm": ">=3.6.0"
}
}