forked from socketio/socket.io-p2p
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.7 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.7 KB
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
55
56
57
{
"name": "socket.io-p2p",
"description": "WebRTC data channel communication with a socket.io-like API",
"version": "2.2.0",
"author": {
"name": "Tom Cartwright",
"email": "tecartwright@gmail.com",
"url": "http://tomcartwright.net"
},
"bugs": {
"url": "https://github.com/socketio/socket.io-p2p/issues"
},
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git@github.com:socketio/socket.io-p2p.git"
},
"keywords": [
"webrtc",
"peer-to-peer"
],
"dependencies": {
"component-bind": "^1.0.0",
"component-emitter": "^1.2.1",
"debug": "^2.6.3",
"extend.js": "0.0.2",
"has-binary": "0.1.7",
"hat": "^0.0.3",
"simple-peer": "^7.0.0",
"socket.io-p2p-parser": "tomcartwrightuk/socket.io-p2p-parser",
"to-array": "^0.1.4",
"webrtcsupport": "^2.2.0"
},
"devDependencies": {
"concat-stream": "^1.6.0",
"ecstatic": "0.8.0",
"envify": "^3.4.0",
"expect": "^1.1.0",
"expect.js": "^0.3.1",
"inherits": "~2.0.1",
"simple-get": "^1.4.3",
"socket.io": "^1.7.3",
"socket.io-client": "^1.7.3",
"socket.io-p2p-server": "^1.2.0",
"standard": "^10.0.0",
"tape": "^4.6.3",
"xhr": "^2.4.0",
"zuul": "^3.11.1"
},
"scripts": {
"test": "./node_modules/standard/bin/cmd.js && node tasks/fetch_ice.js && ./node_modules/zuul/bin/zuul -- test/specs/*.js",
"test-local": "export $(cat .env | xargs) && ./node_modules/zuul/bin/zuul --open --local 8000 -- test/specs/*.js",
"sauce-test": "export $(cat .env | xargs) && node tasks/fetch_ice.js && ./node_modules/zuul/bin/zuul -- test/specs/*.js",
"build": "browserify -s P2P -r ./ | uglifyjs -m > socketiop2p.min.js"
}
}