forked from rolyatmax/audiofabric
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.07 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": "audiofabric",
"version": "0.0.1",
"scripts": {
"start": "budo src/index.js:bundle.js --live --open",
"build": "browserify src/index.js > bundle.js",
"serve": "open http://localhost:8080 && python -m SimpleHTTPServer 8080",
"lint": "standard"
},
"dependencies": {
"3d-view-controls": "^2.2.0",
"alea": "^0.0.9",
"browserify": "^15.2.0",
"budo": "^10.0.4",
"canvas-fit": "^1.5.0",
"dat-gui": "^0.5.0",
"delaunator": "^1.0.4",
"dom-css": "^2.1.0",
"get-plane-normal": "^1.0.0",
"gl-mat4": "^1.1.4",
"gl-vec2": "^1.0.0",
"gl-vec3": "^1.0.3",
"glsl-fast-gaussian-blur": "^1.0.2",
"glsl-hash-blur": "^1.0.3",
"glslify": "^6.1.0",
"new-array": "^1.0.0",
"regl": "^1.3.0",
"shuffle-array": "^1.0.1",
"simplex-noise": "^2.3.0",
"spring-animator": "^1.0.3",
"standard": "^10.0.3",
"web-audio-analyser": "^2.0.1",
"web-audio-player": "^1.3.2"
},
"browserify": {
"transform": [
"glslify"
]
},
"eslintConfig": {
"extends": [
"standard"
]
}
}