forked from chris-rudmin/opus-recorder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 894 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
{
"name": "opus-recorder-mod",
"version": "0.5.0",
"description": "A library for recording opus encoded audio",
"homepage": "https://github.com/chris-rudmin/Recorderjs",
"author": "Chris Rudmin",
"keywords": [
"Ogg",
"Opus",
"PCM",
"Decoder",
"Resampler",
"Streamer",
"Audio",
"Microphone",
"Recorder"
],
"license": "MIT",
"main": "build/recorder.min.js",
"files": [
"build/recorder.min.js",
"build/encoderWorker.min.js",
"build/decoderWorker.min.js",
"build/waveWorker.min.js"
],
"repository": {
"type": "git",
"url": "git://github.com/chris-rudmin/Recorderjs.git"
},
"bugs": {
"url": "https://github.com/chris-rudmin/Recorderjs/issues",
"email": "[email protected]"
},
"scripts": {
"test": "make test"
},
"devDependencies": {
"mocha": "2.4.5",
"uglify-js": "2.6.2"
}
}