-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
65 lines (65 loc) · 1.9 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
{
"name": "rtc-lib",
"description": "An experimental promise based WebRTC library",
"author": "Stephan Thamm <[email protected]>",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/innovailable/rtc-lib.git"
},
"scripts": {
"test": "mocha"
},
"version": "0.5.7",
"dependencies": {
"@types/browserify": "^12.0.36",
"core-js": "^3.6.4",
"strict-event-emitter-types": "^2.0.0",
"webrtc-adapter": "^7.5.1"
},
"keywords": [
"webrtc"
],
"main": "dist/cjs/index.js",
"module": "dist/ejs/index.js",
"types": "dist/js/index.d.ts",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-export-default-from": "^7.8.3",
"@babel/plugin-proposal-export-namespace-from": "^7.8.3",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@babel/plugin-transform-modules-commonjs": "^7.9.0",
"@babel/preset-env": "^7.8.7",
"@babel/register": "^7.9.0",
"babel-minify": "^0.5.1",
"babel-preset-minify": "^0.5.1",
"babelify": "^10.0.0",
"browserify": "^16.5.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"easy-signaling": "^1.0.0",
"envify": "^4.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"express": "^4.17.1",
"express-ws": "^4.0.0",
"js-combinatorics": "^0.5.5",
"karma": "^4.4.1",
"karma-chrome-launcher": "^3.1.0",
"karma-cli": "^2.0.0",
"karma-firefox-launcher": "^1.3.0",
"karma-mocha": "^1.3.0",
"karma-sourcemap-loader": "^0.3.7",
"mocha": "^7.1.1",
"object-keys": "^1.1.1",
"terser": "^4.7.0",
"ts-node": "^8.7.0",
"tsify": "^4.0.1",
"typescript": "^3.8.3",
"yuidocjs": "^0.10.2"
}
}