-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
39 lines (39 loc) · 1.05 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
{
"name": "opentok-elearning-tutoring-samples",
"version": "0.0.1-dev",
"description": "OpenTok demo for a tutoring setup",
"private": true,
"scripts": {
"start": "node server",
"test": "eslint .",
"certs": "openssl req -newkey rsa:2048 -nodes -keyout key.pem -x509 -days 365 -out cert.pem"
},
"repository": {
"type": "git",
"url": "git://github.com/opentok/opentok-elearning-samples.git"
},
"keywords": [
"opentok",
"lms",
"demo"
],
"author": "Kaustav Das Modak <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/opentok/opentok-elearning-samples/issues"
},
"homepage": "https://github.com/opentok/opentok-elearning-samples#readme",
"devDependencies": {
"eslint": "^4.6.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1"
},
"dependencies": {
"ejs": "^2.5.7",
"express": "^4.15.4",
"opentok": "^2.6.2"
}
}