-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.02 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
{
"name": "ZogsRTC",
"version": "1.0.0",
"description": "Zogs' WebRTC app",
"main": "app.js",
"bin": {
"zogs-signal": "./bin/zogs-signal"
},
"directories": {
"bin": "bin",
"test": "test"
},
"scripts": {
"test": "grunt nodeunit",
"start": "./bin/zogs-signal"
},
"repository": {
"type": "git",
"url": "https://github.com/rokkie/ZogsRTC.git"
},
"keywords": [
"WebRTC"
],
"author": "Rocco Bruyn",
"license": "GNU GPL v3.0",
"bugs": {
"url": "https://github.com/rokkie/ZogsRTC/issues"
},
"homepage": "https://github.com/rokkie/ZogsRTC",
"devDependencies": {
"grunt": "^0.4.5",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-nodeunit": "^0.4.1",
"grunt-contrib-watch": "^0.6.1",
"grunt-develop": "^0.4.0",
"grunt-env": "^0.4.1",
"grunt-istanbul": "^0.3.0",
"grunt-jsduck": "^1.0.1",
"grunt-node-inspector": "^0.1.5"
},
"dependencies": {
"express": "^4.10.2",
"socket.io": "^1.2.0"
}
}