-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
43 lines (43 loc) · 1.01 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
{
"name": "audio-play",
"version": "2.3.0",
"description": "Play audio buffer in node or browser",
"main": "index.js",
"scripts": {
"test": "node test.js",
"test:browser": "budo test.js",
"lint": "eslint *.js --ignore-pattern test*"
},
"browser": "./browser",
"repository": {
"type": "git",
"url": "git+https://github.com/audiojs/audio-play.git"
},
"keywords": [
"player",
"audio",
"audiojs",
"web-audio-api",
"sound"
],
"author": "ΔY <dfcreative@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/audiojs/audio-play/issues"
},
"homepage": "https://github.com/audiojs/audio-play#readme",
"devDependencies": {
"audio-lena": "^1.1.3",
"audio-loader": "^1.0.3",
"tape": "^4.8.0"
},
"dependencies": {
"audio-buffer": "^4.0.1",
"audio-buffer-utils": "^5.1.2",
"audio-context": "^1.0.1",
"audio-source": "^1.0.0",
"audio-speaker": "^1.4.0",
"is-audio-buffer": "^1.0.11",
"negative-index": "^1.0.0"
}
}