-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.03 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.03 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
54
{
"name": "audio-buffer",
"version": "7.3.1",
"description": "AudioBuffer ponyfill with operations toolkit",
"type": "module",
"module": "index.js",
"sideEffects": false,
"files": [
"index.js",
"util.js",
"play.js",
"readme.md",
"LICENSE"
],
"exports": {
".": "./index.js",
"./util": "./util.js",
"./play": "./play.js"
},
"repository": {
"type": "git",
"url": "https://github.com/audiojs/audio-buffer"
},
"scripts": {
"test": "node --test test/index.js test/util.js test/play.js"
},
"keywords": [
"audio",
"audiojs",
"pcm",
"dsp",
"sound",
"processing",
"ponyfill",
"audio-buffer",
"web-audio",
"waa",
"audiodata",
"normalize",
"trim",
"reverse",
"mix",
"remix"
],
"author": "Dmitry Iv <df.creative@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/audiojs/audio-buffer/issues"
},
"homepage": "https://github.com/audiojs/audio-buffer",
"devDependencies": {
"tst": "^9.2.2"
}
}