-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
72 lines (72 loc) · 2.08 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "audiograph.xyz",
"version": "1.0.0",
"description": "A visual exploration of sound.",
"main": "index.js",
"license": "CC-BY-NC-SA-4.0",
"author": {
"name": "Matt DesLauriers",
"email": "dave.des@gmail.com",
"url": "https://github.com/mattdesl"
},
"dependencies": {
"array-shuffle": "^1.0.0",
"audio-frequency-to-index": "^2.0.0",
"beats": "0.0.0",
"brfs": "^1.4.3",
"clamp": "^1.0.1",
"dom-css": "^2.0.0",
"geo-arc": "^1.1.2",
"geo-piecering": "^1.0.2",
"glsl-aastep": "^1.0.1",
"glsl-blend-soft-light": "^1.0.5",
"glsl-hash-blur": "^1.0.3",
"glsl-inject-defines": "^1.0.3",
"glsl-luma": "^1.0.1",
"glsl-noise": "0.0.0",
"glsl-random": "0.0.5",
"glslify": "^5.0.2",
"index-of-array": "^1.0.0",
"ios-safe-audio-context": "^1.0.1",
"lerp": "^1.0.3",
"new-array": "^1.0.0",
"object-assign": "^4.0.1",
"orbit-controls": "^1.0.4",
"query-string": "^4.1.0",
"raf-loop": "^1.1.3",
"random-float": "^1.0.0",
"right-now": "^1.0.0",
"soundbank-reverb": "^1.1.2",
"three-copyshader": "0.0.1",
"three-effectcomposer": "0.0.1",
"three-simplicial-complex": "^69.0.6",
"tweenr": "^2.1.3",
"unlerp": "^1.0.1",
"web-audio-player": "^1.1.1"
},
"devDependencies": {
"babel-preset-es2015": "^6.6.0",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"budo": "^8.2.1",
"installify": "^1.0.2",
"surge": "^0.17.7",
"uglify-js": "^2.6.2"
},
"scripts": {
"test": "node test.js",
"start": "budo index.js:bundle.js --live -- -t babelify -t glslify -t brfs -t [ installify --save ]",
"build": "browserify index.js -t babelify -t glslify -t brfs | uglifyjs -m -c warnings=false > bundle.js",
"deploy": "npm run build && npm run deploy:upload",
"deploy:upload": "surge -p ."
},
"keywords": [],
"repository": {
"type": "git",
"url": "git://github.com/mattdesl/audiograph.xyz.git"
},
"homepage": "https://github.com/mattdesl/audiograph.xyz",
"bugs": {
"url": "https://github.com/mattdesl/audiograph.xyz/issues"
}
}