forked from jitsi/sdp-interop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.12 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
{
"name": "@jitsi/sdp-interop",
"description": "A simple SDP interoperability layer for Unified Plan/Plan B",
"author": "",
"version": "0.1.13",
"stability": "unstable",
"repository": {
"type": "git",
"url": "git+https://github.com/jitsi/sdp-interop.git"
},
"keywords": [
"sdp",
"webrtc",
"interoperability",
"polyfill"
],
"main": "./lib/",
"scripts": {
"test": "node $NODE_DEBUG_OPTION test/sdp_interop.js",
"coverage": "jscoverage lib && SDP_TRANSFORM_COV=1 nodeunit --reporter=lcov test",
"coveralls": "npm run coverage | coveralls",
"lint": "./node_modules/.bin/jshint .",
"validate": "npm ls"
},
"dependencies": {
"sdp-transform": "2.3.0"
},
"devDependencies": {
"coveralls": "^2.11.1",
"jscoverage": "^0.5.5",
"jshint": "2.8.0",
"precommit-hook": "^3.0.0",
"qunit-cli": "^0.2.0"
},
"pre-commit": [
"lint"
],
"bugs": {
"url": "http://github.com/jitsi/sdp-interop/issues"
},
"license": "Apache-2.0",
"homepage": "https://github.com/jitsi/sdp-interop#readme",
"directories": {
"lib": "lib",
"test": "test"
}
}