forked from jitsi/sdp-simulcast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.13 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": "@jitsi/sdp-simulcast",
"description": "A simple npm module that enables Chrome's native simulcast",
"author": "",
"version": "0.4.0",
"stability": "unstable",
"repository": {
"type": "git",
"url": "git+https://github.com/jitsi/sdp-simulcast.git"
},
"keywords": [
"sdp",
"webrtc",
"simulcast"
],
"main": "./lib/",
"scripts": {
"test": "./node_modules/karma/bin/karma start karma.conf.js",
"coverage": "jscoverage lib && SDP_TRANSFORM_COV=1 nodeunit --reporter=lcov test",
"coveralls": "npm run coverage | coveralls"
},
"dependencies": {
"sdp-transform": "2.3.0"
},
"devDependencies": {
"browserify": "*",
"watchify": "*",
"jasmine-core": "^2.2.0",
"karma": "^0.13.2",
"karma-chrome-launcher": "^0.2.0",
"karma-jasmine": "*",
"karma-browserify": "5.1.0",
"coveralls": "^2.11.1",
"jscoverage": "^0.5.5",
"nodeunit": "^0.9.0"
},
"bugs": {
"url": "https://github.com/jitsi/sdp-simulcast/issues"
},
"homepage": "https://github.com/jitsi/sdp-simulcast#readme",
"directories": {
"lib": "lib"
},
"license": "Apache-2.0"
}