-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 870 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
34
35
36
37
38
{
"name": "augmented-video",
"description": "A simple service for Augmented Videoconferences",
"version": "0.0.1",
"license": "Apache-2.0",
"author": {
"name": "David Lozano",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "[email protected]:dlozlla/augmentedvideo.git"
},
"engines": {
"node": ">= 6.0.0"
},
"scripts": {
"lint": "eslint lib",
"start": "node lib/augmented-video.js",
"prestart": "npm install",
"postinstall": "npm run build"
},
"dependencies": {
"bluebird": "^3.5.0",
"body-parser": "^1.17.1",
"express": "^4.15.2",
"express-domaining": "^2.0.1",
"express-logging": "^1.1.1",
"express-tracking": "^1.0.1",
"logops": "^1.0.7",
"nedb": "^1.8.0"
},
"keywords": [
"express",
"videoconference",
"augmented"
]
}