forked from TwilioDevEd/video-access-token-server-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·37 lines (37 loc) · 742 Bytes
/
package.json
File metadata and controls
executable file
·37 lines (37 loc) · 742 Bytes
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
{
"name": "video-access-token-server-node",
"version": "1.0.0",
"description": "Video Access Token Server for Node.js",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test ./node_modules/.bin/jest"
},
"repository": {
"type": "git",
"url": "github.com/TwilioDevEd/video-access-token-server-node"
},
"keywords": [
"twilio",
"video",
"ip",
"video",
"chat",
"real",
"time",
"diggity"
],
"author": "Twilio Developer Education",
"license": "MIT",
"engines": {
"node": ">=6.10.0 <8.0.0"
},
"dependencies": {
"dotenv": "^4.0.0",
"express": "^4.15.2",
"twilio": "^3.0.0"
},
"devDependencies": {
"jest": "^19.0.2",
"jsonwebtoken": "^7.4.0"
}
}