-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
47 lines (47 loc) · 1.09 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
{
"name": "audio-buffer-utils",
"version": "5.1.2",
"description": "Utility functions for AudioBuffers",
"main": "index.js",
"scripts": {
"test": "node test.js",
"test:browser": "budo test.js"
},
"repository": {
"type": "git",
"url": "git://github.com/audiojs/audio-buffer-utils.git"
},
"keywords": [
"web",
"audio",
"audiojs",
"api",
"buffer",
"web audio",
"audio-buffer"
],
"author": "Jason Frame <[email protected]> (http://jasonframe.co.uk)",
"contributors": [
"Dmitry Yv <[email protected]>"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/audiojs/audio-buffer-utils/issues"
},
"homepage": "https://github.com/audiojs/audio-buffer-utils",
"devDependencies": {
"almost-equal": "^1.1.0",
"is-browser": "^2.0.1",
"ndarray": "^1.0.18",
"tape": "^4.6.3"
},
"dependencies": {
"audio-buffer": "^4.0.0",
"audio-buffer-from": "^1.0.0",
"audio-context": "^1.0.0",
"clamp": "^1.0.1",
"is-audio-buffer": "^1.0.8",
"is-browser": "^2.0.1",
"is-buffer": "^2.0.0"
}
}