-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.18 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
47
48
49
{
"name": "foglet-signaling-server",
"version": "1.0.3",
"description": "It's a simple singaling server",
"main": "src/signaling-server.js",
"scripts": {
"start": "node bin/express-signaling-server.js",
"cors": "node bin/express-signaling-server-cors.js",
"localstart": "HOST=localhost PORT=3000 npm start",
"localcors": "HOST=localhost PORT=3000 npm run cors",
"wstart": "powershell ./start.ps1",
"lint": "standard"
},
"repository": {
"type": "git",
"url": "git+https://github.com/folkvir/foglet-signaling-server.git"
},
"keywords": [
"foglet",
"signaling server",
"fog computing",
"WebRTC",
"Spray"
],
"author": "Arnaud Grall",
"license": "MIT",
"bugs": {
"url": "https://github.com/folkvir/foglet-signaling-server/issues"
},
"homepage": "https://github.com/folkvir/foglet-signaling-server#README",
"dependencies": {
"cors": "^2.8.4",
"express": "^4.16.3",
"jquery": "^3.3.1",
"lodash": "^4.17.10",
"lru-cache": "^4.1.3",
"socket.io": "^2.1.1",
"twilio": "^3.17.0"
},
"devDependencies": {
"standard": "^11.0.1"
},
"standard": {
"env": [
"node",
"jest"
]
}
}