forked from chris-rudmin/opus-recorder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.21 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
48
49
50
51
52
53
54
55
{
"name": "opus-recorder",
"version": "6.0.0",
"description": "A library for recording opus encoded audio",
"homepage": "https://github.com/chris-rudmin/opus-recorder",
"author": "Chris Rudmin",
"keywords": [
"Ogg",
"Opus",
"PCM",
"Decoder",
"Resampler",
"Streamer",
"Audio",
"Microphone",
"Recorder",
"Wav",
"Wave",
"WebAssembly"
],
"license": "MIT",
"main": "dist/recorder.min.js",
"files": [
"dist/recorder.min.js",
"dist/encoderWorker.min.js",
"dist/encoderWorker.min.wasm",
"dist/decoderWorker.min.js",
"dist/decoderWorker.min.wasm",
"dist/waveWorker.min.js"
],
"repository": {
"type": "git",
"url": "git://github.com/chris-rudmin/opus-recorder.git"
},
"bugs": {
"url": "https://github.com/chris-rudmin/opus-recorder/issues",
"email": "[email protected]"
},
"scripts": {
"make": "make",
"test": "make test",
"webpack": "webpack"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^5.0.0",
"promise": "^8.0.2",
"require-uncached": "^1.0.3",
"sinon": "^6.3.5",
"sinon-chai": "^3.2.0",
"webpack": "^4.23.1",
"webpack-cli": "^3.1.2"
},
"dependencies": {}
}