-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
78 lines (78 loc) · 2.04 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
78
{
"name": "rtc-everywhere",
"description": "Cross-everything WebRTC Adapter/Polyfill",
"version": "0.0.6",
"homepage": "http://github.com/contra/rtc-everywhere",
"repository": "git://github.com/contra/rtc-everywhere.git",
"author": "Contra <[email protected]> (http://contra.io)",
"keywords": [
"webrtc",
"adapter",
"shim",
"polyfill",
"ios",
"android",
"chrome",
"firefox",
"node",
"safari",
"ortc",
"internet explorer",
"edge",
"getusermedia",
"rtcpeerconnection"
],
"dependencies": {
"add-event-listener": "0.0.1",
"async": "^1.5.0",
"browserify-optional": "^1.0.0",
"crel": "^2.1.8",
"detect-browser": "^1.2.0",
"domready": "^1.0.8",
"lodash.merge": "^3.3.2",
"new-operator": "^1.0.3",
"ortc-adapter": "^0.1.6",
"uuid": "^2.0.1",
"volume-meter": "^2.0.1",
"bulkify": "^1.1.1",
"bulk-require": "^0.2.1"
},
"devDependencies": {
"es5-shim-sham": "0.0.1",
"istanbul-coveralls": "^1.0.1",
"jshint": "^2.5.11",
"jshint-stylish": "^2.0.0",
"mocha": "^2.3.4",
"mochify": "dylanfm/mochify.js",
"mochify-istanbul": "^2.1.1",
"should": "^8.0.0",
"simple-peer": "^5.11.6",
"watchify": "^3.6.1"
},
"peerDependencies": {
"wrtc": "^0.0.59",
"react-native-webrtc": "^0.2.7"
},
"main": "./index.js",
"scripts": {
"lint": "jshint index.js lib --exclude node_modules --config .jshintrc --reporter node_modules/jshint-stylish/index.js",
"test-node": "mocha --recursive --reporter spec",
"test-browser-local": "mochify --recursive --reporter spec",
"test": "npm run lint && npm run-script test-browser-local",
"coveralls": "mochify --recursive --plugin [ mochify-istanbul --exclude '**/+(test|node_modules)/**/*' --report lcov --dir ./coverage ] && istanbul-coveralls"
},
"browserify": {
"transform": [
"browserify-optional",
"bulkify"
]
},
"browser": {
"wrtc": false,
"react-native-webrtc": false
},
"engines": {
"node": ">= 0.10"
},
"license": "MIT"
}