-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 891 Bytes
/
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
{
"name": "peer-sock",
"version": "1.0.0",
"description": "WebRTC and socket.io framework for easily managing p2p data channel communications.",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Xaxis/peer-sock.git"
},
"author": "Wil Neeley <[email protected]> (https://github.com/Xaxis)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Xaxis/peer-sock/issues"
},
"homepage": "https://github.com/Xaxis/peer-sock#readme",
"dependencies": {
"express": "^4.13.3",
"lodash": "^3.10.1",
"socket.io": "^1.3.6"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-contrib-uglify": "^0.9.1",
"grunt-contrib-watch": "^0.6.1",
"matchdep": "^0.3.0",
"nodemon": "^1.4.1"
}
}