-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
55 lines (55 loc) · 1.31 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
{
"name": "gl-spectrogram",
"version": "1.1.8",
"description": "Draw spectrogram with webgl or 2d-canvas",
"main": "index.js",
"scripts": {
"test": "budo test.js",
"test:browser": "budo test.js -- -g bubleify",
"build": "browserify test.js -g bubleify -o demo/index.js"
},
"browserify": {
"transform": [
"bubleify"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/audio-lab/gl-spectrogram.git"
},
"keywords": [
"audio",
"vis",
"canvas2d",
"webgl"
],
"author": "ΔY <dfcreative@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/audio-lab/gl-spectrogram/issues"
},
"homepage": "https://github.com/audio-lab/gl-spectrogram#readme",
"devDependencies": {
"audio-context": "^0.1.0",
"buble": "^0.11.6",
"bubleify": "^0.3.1",
"decibels": "^1.0.1",
"fourier-transform": "^1.0.2",
"is-mobile": "^0.2.2",
"nice-color-palettes": "^1.0.1",
"start-app": "^1.1.13"
},
"dependencies": {
"a-weighting": "^1.0.0",
"color-parse": "^1.1.1",
"color-space": "^1.14.3",
"colormap": "^2.2.0",
"flatten": "^1.0.2",
"gl-component": "^1.4.11",
"inherits": "^2.0.1",
"is-browser": "^2.0.1",
"mumath": "^2.2.1",
"plot-grid": "^1.1.11",
"xtend": "^4.0.1"
}
}