-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
77 lines (77 loc) · 1.83 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "opus-media-recorder",
"version": "0.8.0",
"author": "Bumsik Kim",
"license": "MIT",
"homepage": "https://github.com/kbumsik/opus-media-recorder",
"description": "MedialRecorer polyfill for Opus recording using WebAssembly",
"main": "OpusMediaRecorder.js",
"files": [
"OpusMediaRecorder.js",
"OpusMediaRecorder.umd.js",
"encoderWorker.js",
"encoderWorker.umd.js",
"OggOpusEncoder.js",
"OggOpusEncoder.wasm",
"OggOpusEncoder.bin",
"WebMOpusEncoder.js",
"WebMOpusEncoder.wasm",
"WebMOpusEncoder.bin",
"WaveEncoder.js",
"commonFunctions.js"
],
"repository": {
"type": "git",
"url": "https+git://github.com/kbumsik/opus-media-recorder"
},
"keywords": [
"MediaRecorder",
"MediaStream",
"Opus",
"Ogg",
"WebM",
"WebAssembly",
"WASM",
"PCM",
"Decoder",
"Stream",
"Audio",
"Microphone",
"Mic",
"Recorder",
"Recording",
"Wav",
"Wave"
],
"scripts": {
"build": "make",
"build:production": "make PRODUCTION=1",
"webpack": "webpack-cli",
"serve": "webpack-dev-server",
"clean": "make clean"
},
"dependencies": {
"detect-browser": "^4.1.0",
"event-target-shim": "^3.0.2"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"babel-loader": "^8.0.5",
"eslint": "^5.12.0",
"eslint-config-standard": "^11.0.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-html": "^4.0.6",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^3.1.0",
"jsdoc": "^3.5.5",
"magic-string": "^0.25.2",
"webpack": "^4.28.4",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14",
"wrapper-webpack-plugin": "^2.1.0"
}
}