-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 929 Bytes
/
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
{
"name": "libopus.js",
"version": "0.0.1",
"description": "libopus compiled to JavaScript using emscripten",
"homepage": "https://github.com/johni0702/libopus.js",
"author": "Jonas Herzig <me@johni0702.de>",
"contributors": [
"Chris Rudmin"
],
"keywords": [
"libopus",
"Opus",
"PCM",
"Decoder",
"Encoder",
"Audio"
],
"license": "MIT",
"main": "index.js",
"files": [],
"repository": {
"type": "git",
"url": "git://github.com/johni0702/libopus.js.git"
},
"bugs": {
"url": "https://github.com/johni0702/libopus.js/issues",
"email": "me@johni0702.de"
},
"scripts": {
"test": "./node_modules/.bin/mocha"
},
"files": [
"index.js",
"lib/encoder.js",
"lib/decoder.js",
"lib/utils.js",
"build/libopus.js"
],
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^2.5.3"
},
"dependencies": {
"extend": "^3.0.0"
}
}