-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
52 lines (52 loc) · 1.21 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
{
"name": "sdp-jingle-json",
"version": "3.1.0",
"description": "A parser/serializer for SDP to JSON. Useful for converting SDP to other formats like Jingle for WebRTC signalling",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/legastero/sdp-jingle-json.git"
},
"bugs": "https://github.com/legastero/sdp-jingle-json/issues",
"keywords": [
"sdp",
"webrtc",
"xmpp",
"jingle"
],
"contributors": [
"Lance Stout <[email protected]>",
"Philipp Hancke <[email protected]>"
],
"license": "MIT",
"dependencies": {},
"devDependencies": {
"browserify": "2.36.1",
"grunt": "0.4.2",
"grunt-browserify": "1.2.11",
"grunt-contrib-jshint": "0.7.2",
"grunt-contrib-uglify": "0.2.7",
"precommit-hook": "0.3.8",
"tape": "2.3.0"
},
"testling": {
"files": [
"test/test.js"
],
"browsers": [
"ie/10..latest",
"chrome/20..latest",
"chrome/canary",
"firefox/10..latest",
"firefox/nightly",
"opera/next",
"safari/6..latest",
"iphone/6..latest",
"ipad/6..latest",
"android-browser/4.2..latest"
]
},
"scripts": {
"test": "node test/test.js"
}
}