forked from peers/peerjs-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 725 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 725 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
35
{
"name": "peer",
"version": "0.2.9",
"description": "PeerJS server component",
"main": "src/index.js",
"bin": {
"peerjs": "./bin/peerjs"
},
"repository": {
"type": "git",
"url": "git://github.com/peers/peerjs-server.git"
},
"author": "Michelle Bu, Eric Zhang",
"license": "MIT",
"scripts": {
"test": "mocha test/**/*.js",
"start": "bin/peerjs --port ${PORT:=9000}"
},
"dependencies": {
"body-parser": "^1.18.3",
"cors": "~2.8.4",
"express": "^4.16.3",
"ws": "6.0.0",
"optimist": "~0.6.1"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^6.1.2",
"semistandard": "^13.0.1",
"sinon": "^7.3.1"
},
"engines": {
"node": "^10"
}
}