-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 787 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 787 Bytes
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
{
"name": "opus.js",
"version": "0.1.1",
"description": "An Opus audio decoder for aurora.js ported using emscripten",
"peerDependencies": {
"av": "~0.4.0",
"ogg.js": "~0.1.0"
},
"devDependencies": {
"browserify": "^4.1.10",
"browserify-shim": "^3.5.0"
},
"browserify-shim": {
"av": "global:AV",
"ogg.js": "global:AV.OggDemuxer"
},
"scripts": {
"prepublish": "make"
},
"repository": {
"type": "git",
"url": "git://github.com/audiocogs/opus.js.git"
},
"keywords": [
"av",
"aurora.js",
"audio",
"codec"
],
"author": "Devon Govett <devongovett@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/audiocogs/opus.js/issues"
},
"homepage": "https://github.com/audiocogs/opus.js"
}