-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathpackage.json
44 lines (44 loc) · 929 Bytes
/
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
{
"name": "web-audio-api",
"version": "0.2.2",
"author": "Sébastien Piquemal <[email protected]>",
"contributors": [
"Dmitry Iv <[email protected]>"
],
"description": "Node.js implementation of Web audio API",
"repository": "audiojs/web-audio-api",
"type": "module",
"keywords": [
"audio",
"audiojs",
"sound",
"music",
"web audio",
"web audio api",
"waa",
"dsp"
],
"dependencies": {
"aac": "0.1.x",
"alac": "0.1.x",
"automation-events": "^4.0.14",
"av": "0.4.x",
"flac": "0.3.x",
"mp3": "0.1.x"
},
"analyze": false,
"devDependencies": {
"chai": "^4.3.6",
"mocha": "^9.2.0",
"underscore": "^1.13.2"
},
"license": "MIT",
"engines": {
"node": ">=4"
},
"scripts": {
"test": "mocha",
"test-speaker": "node test/manual-testing/AudioContext-sound-output.js",
"pretest-speaker": "npm install speaker"
}
}