-
Notifications
You must be signed in to change notification settings - Fork 358
/
package.json
33 lines (33 loc) · 894 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
33
{
"name": "livestream-server",
"version": "0.0.1",
"description": "A conference call implementation using WebRTC, Socket.io and Node.js.",
"main": "src/app.js",
"dependencies": {
"express": "^4.21.0",
"serve-favicon": "^2.5.0",
"socket.io": "^4.7.5"
},
"devDependencies": {
"nodemon": "^2.0.20"
},
"scripts": {
"watch": "nodemon --watch \"src/\" --exec \"node src/app.js\"",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node src/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amirsanni/livestream-server.git"
},
"keywords": [
"LiveStream",
"Server"
],
"author": "Amir Sanni <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/amirsanni/livestream-server/issues"
},
"homepage": "https://github.com/amirsanni/livestream-server#readme"
}