-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
58 lines (58 loc) · 1.35 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
{
"name": "audio-speaker",
"version": "1.5.1",
"description": "Output audio data to speaker in browser/node",
"main": "stream.js",
"scripts": {
"lint": "eslint *.js --ignore-pattern test*",
"test:browser": "budo test.js",
"test": "node test"
},
"repository": {
"type": "git",
"url": "https://github.com/audiojs/audio-speaker"
},
"keywords": [
"audio",
"audiojs",
"pcm",
"speaker",
"web-audio",
"sound",
"sink"
],
"browser": {
"./direct.js": "./browser-direct.js",
"./stream.js": "./browser-stream.js"
},
"author": "Dima Yv <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/audiojs/audio-speaker/issues"
},
"homepage": "https://github.com/audiojs/audio-speaker",
"devDependencies": {
"audio-buffer-utils": "^4.0.0",
"audio-context": "^1.0.0",
"audio-generator": "^2.0.1",
"eslint": "^3.4.0",
"insert-styles": "^1.2.1",
"pcm-util": "^2.0.2",
"pcm-volume": "^1.0.0",
"tape": "^4.6.3",
"tst": "^1.1.8",
"wavefont": "^1.2.1"
},
"optionalDependencies": {
"audio-sink": "^1.0.2",
"speaker": "^0.5.3"
},
"dependencies": {
"audio-through": "^2.2.3",
"inherits": "^2.0.1",
"is-audio-buffer": "^1.0.1",
"pcm-util": "^2.1.0",
"pull-stream": "^3.4.5",
"web-audio-stream": "^3.0.1"
}
}