forked from otalk/rtcpeerconnection-shim
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.17 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
{
"name": "rtcpeerconnection-shim",
"version": "1.1.4",
"description": "An implementation of the RTCPeerConnection API ontop of ORTC",
"license": "BSD-3-Clause",
"main": "./rtcpeerconnection.js",
"repository": {
"type": "git",
"url": "https://github.com/fippo/rtcpeerconnection-shim.git"
},
"authors": [
"Philipp Hancke",
"The WebRTC project authors (https://www.webrtc.org/)"
],
"scripts": {
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"test": "eslint *.js test/*.js && nyc --reporter html mocha test/"
},
"engines": {
"npm": ">=3.10.0",
"node": ">=6.0.0"
},
"dependencies": {
"sdp": "^2.2.0"
},
"devDependencies": {
"brfs": "^1.4.3",
"browserify": "^14.4.0",
"chai": "^3.5.0",
"codecov": "^2.2.0",
"dirty-chai": "^1.2.2",
"eslint": "^1.10.3",
"eslint-config-webrtc": "^1.0.0",
"karma": "^1.7.0",
"karma-browserify": "^5.1.1",
"karma-chai": "^0.1.0",
"karma-edge-launcher": "^0.4.1",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.3",
"mocha": "^3.2.0",
"nyc": "^11.0.2",
"sinon": "^2.2.0",
"sinon-chai": "^2.10.0"
}
}