-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 838 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 838 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": "socket.io-p2p-server",
"version": "1.2.1",
"description": "Server middleware to power socket.io-p2p. Handles signalling.",
"author": {
"name": "Tom Cartwright",
"email": "tecartwright@gmail.com",
"url": "http://tomcartwright.net"
},
"main": "index.js",
"scripts": {
"test": "mocha test/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/tomcartwrightuk/socket.io-p2p-server"
},
"keywords": [
"webrtc",
"peer-to-peer"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/tomcartwrightuk/socket.io-p2p-server/issues"
},
"homepage": "https://github.com/tomcartwrightuk/socket.io-p2p-server",
"dependencies": {
"chai": "~2.1.2",
"debug": "~2.1.2",
"mocha": "~2.2.1",
"sinon": "~1.14.1",
"sinon-chai": "~2.7.0"
}
}