-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
43 lines (43 loc) · 1.03 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
{
"name": "tokinar",
"version": "0.1.0",
"description": "Simple Webinar system based on OpenTok",
"main": "app.js",
"scripts": {
"start": "node app.js",
"test": "echo \"Error: no test specified\" && exit 1",
"certs": "openssl req -newkey rsa:2048 -nodes -keyout key.pem -x509 -days 365 -out cert.pem"
},
"repository": {
"type": "git",
"url": "git+https://github.com/opentok/opentok-webinar.git"
},
"engines": {
"node": ">=14.0",
"npm": "3.x"
},
"keywords": [
"webinar",
"tokbox",
"opentok",
"webrtc"
],
"author": "Kaustav Das Modak <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/opentok/opentok-webinar/issues"
},
"homepage": "https://github.com/opentok/opentok-webinar#readme",
"dependencies": {
"body-parser": "^1.15.2",
"cookie-parser": "^1.4.3",
"csurf": "^1.9.0",
"ejs": "^3.1.8",
"express": "^4.14.0",
"opentok": "^2.4.0"
},
"cacheDirectories": [
"node_modules",
"storage"
]
}