-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 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
46
47
48
49
50
51
52
{
"name": "rtc-glue",
"version": "0.10.3",
"description": "A simple library for writing WebRTC applications an in HTML-centric way",
"main": "index.js",
"scripts": {
"test": "node test/all.js",
"gendocs": "gendocs > README.md"
},
"repository": {
"type": "git",
"url": "https://github.com/rtc-io/rtc-glue.git"
},
"keywords": [
"webrtc",
"rtc.io",
"html"
],
"author": "Damon Oehlman <damon.oehlman@nicta.com.au>",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/rtc-io/rtc-glue/issues"
},
"devDependencies": {
"tape": "^2.12.1",
"rtc-switchboard": "~0.10",
"crel": "^1"
},
"dependencies": {
"rtc-tools": "^2",
"cog": "^1",
"rtc-captureconfig": "^1",
"sdp-transform": "~0.6.0",
"eve": "~0.4.1",
"async": "~0.9",
"rtc-core": "^2.0.0",
"fdom": "^0.8.0",
"rtc-signaller": "^2.0.0",
"rtc-media": "^1"
},
"testling": {
"files": "test/all.js",
"server": "test/server.js",
"browsers": [
"firefox/23..latest",
"chrome/30..latest",
"chrome/canary",
"opera/14..latest",
"opera/next"
]
}
}