-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 738 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 738 Bytes
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
{
"name": "sdp-transform",
"description": "A simple parser/writer for the Session Description Protocol",
"author": "Eirik Albrigtsen <sszynrae@gmail.com>",
"version": "3.0.0",
"repository": {
"type": "git",
"url": "clux/sdp-transform"
},
"keywords": [
"sdp",
"webrtc",
"serializer"
],
"main": "./lib/",
"bin": {
"sdp-verify": "./checker.js"
},
"scripts": {
"lint": "eslint .",
"test": "bndg test/*.test.js",
"coverage": "nyc --reporter=lcov npm run test"
},
"devDependencies": {
"bandage": "^0.5.0",
"co-fs": "^1.2.0",
"eslint": "^5.10.0",
"nyc": "^15.1.0"
},
"bugs": {
"url": "https://github.com/clux/sdp-transform/issues"
},
"license": "MIT"
}