-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.1 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
{
"name": "gobelins-webaudio-api",
"version": "1.0.0",
"description": "WebAudio API Workshop",
"main": "index.js",
"scripts": {
"start": "npm run start:server & npm run watch",
"start:server": "node ./bin/start-server.js",
"build": "browserify -t [ babelify ] app/ -o static/js/main.js && uglifyjs --screw-ie8 static/js/main.js -c -o static/js/main.js",
"watch": "watchify -d -t [ babelify ] app/ -o static/js/main.js",
"deploy": "yarn build && gh-pages -d static"
},
"author": "Etienne Dldc",
"license": "MIT",
"dependencies": {
"clone": "^1.0.2",
"color": "0.5",
"dat-gui": "^0.5.0",
"howler": "^1.1.28",
"pixi.js": "^3.0.8",
"webaudio-buffer-loader": "^1.0.1"
},
"devDependencies": {
"babel-preset-es2015": "^6.1.2",
"babelify": "^7.2.0",
"browser-sync": "^2.10.0",
"browserify": "^12.0.1",
"gh-pages": "^1.0.0",
"uglify-js": "^2.5.0",
"watchify": "^3.6.0"
},
"browserify": {
"transform": [
"babelify"
]
},
"babel": {
"ignore": [
"./app/vendor/*.js"
],
"presets": [
"es2015"
]
}
}