forked from audiojs/web-audio-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.06 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.06 KB
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
{
"name": "web-audio-api",
"version": "0.2.1",
"author": "Sébastien Piquemal <sebpiq@gmail.com>",
"description": "Node.js implementation of Web audio API",
"repository": {
"type": "git",
"url": "https://github.com/sebpiq/node-web-audio-api.git"
},
"keywords": [
"audio",
"sound",
"music",
"web audio",
"web audio api",
"dsp"
],
"dependencies": {
"async": "0.2.x",
"underscore": "1.4.x",
"mathjs": "0.9.x",
"pcm-boilerplate": "0.1.x",
"audiobuffer": "0.2.x",
"av": "0.4.x",
"mp3": "0.1.x",
"flac": "0.3.x",
"alac": "0.1.x",
"aac": "0.1.x",
"ogg.js": "0.1.0",
"vorbis.js": "0.1.1"
},
"optionalDependencies": {
"speaker": "0.0.x"
},
"analyze": false,
"devDependencies": {
"chai": "1.7.x",
"gulp": "3.8.x",
"gulp-util": "3.0.x",
"gulp-es6-transpiler": "1.0.x",
"gulp-contribs": "0.0.x",
"mocha": "*"
},
"license": "MIT",
"engines": {
"node": ">=0.10"
},
"scripts": {
"pretest": "gulp",
"test": "mocha",
"prepublish": "gulp"
}
}