-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
54 lines (54 loc) · 1.61 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
53
54
{
"name": "rtc-taskqueue",
"version": "2.10.0",
"description": "An asynchronous task queue that applies actions to an RTCPeerConnection in the most sensible order",
"main": "index.js",
"scripts": {
"test": "npm run queue-test && npm run quickconnect-test",
"queue-test": "browserify -t brfs test/all.js | broth start",
"quickconnect-test": "cd ./node_modules/rtc-quickconnect/node_modules/rtc-tools; npm link ../../../../; cd ../../../../; browserify -t brfs test/quickconnect-test.js | broth start-$BROWSER | tap-spec",
"gendocs": "gendocs > README.md"
},
"repository": {
"type": "git",
"url": "https://github.com/rtc-io/rtc-taskqueue.git"
},
"keywords": [
"webrtc",
"rtc.io",
"RTCPeerConnection"
],
"author": "Damon Oehlman <[email protected]>",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/rtc-io/rtc-taskqueue/issues"
},
"homepage": "https://github.com/rtc-io/rtc-taskqueue",
"dependencies": {
"es6-promise": "^3.0.2",
"mbus": "^2.0.0",
"priorityqueuejs": "^1.0.0",
"rtc-core": "^4.0.0",
"rtc-sdp": "^1.2.0",
"rtc-sdpclean": "^1.0.0",
"rtc-validator": "^1.0.0",
"whisk": "^1.1.0"
},
"devDependencies": {
"brfs": "^1.4.0",
"broth": "^2.1.0",
"browserify": "^9.0.3",
"cog": "^1.1.0",
"rtc-core": "^4.0.0",
"rtc-pluggable-signaller": "^2.0.1",
"rtc-quickconnect": "^4.3.1",
"rtc-quickconnect-test": "^1.2.1",
"rtc-switchboard": "^3.0.0",
"tap-spec": "^3.0.0",
"tape": "^4.0.0",
"travis-multirunner": "^3.0.0"
},
"testling": {
"files": "test/all.js"
}
}