This repository has been archived by the owner on Sep 29, 2021. It is now read-only.
forked from opentok/opentok-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.76 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "opentok",
"description": "OpenTok server-side SDK",
"version": "2.10.0",
"homepage": "https://github.com/opentok/opentok-node",
"repository": {
"type": "git",
"url": "https://github.com/opentok/opentok-node.git"
},
"bugs": {
"url": "https://github.com/opentok/opentok-node/issues",
"email": "[email protected]"
},
"license": "MIT",
"contributors": [
{
"name": "Hashir Baqai",
"email": "[email protected]"
},
{
"name": "Brian Stoner",
"email": "[email protected]",
"url": "http://brianstoner.com"
},
{
"name": "Song Zheng",
"email": "[email protected]",
"url": "http://songz.me"
},
{
"name": "Ankur Oberoi",
"email": "[email protected]",
"url": "http://aoberoi.me"
},
{
"name": "Jeff Swartz",
"email": "[email protected]"
},
{
"name": "Manik Sachdeva",
"url": "http://maniksach.dev"
},
{
"name": "Michael Jolley",
"url": "https://baldbeardedbuilder.com"
},
{
"name": "Alex Lakatos",
"url": "twitter.com/lakatos88"
}
],
"main": "lib/opentok.js",
"scripts": {
"test": "npm run mochaTest; npm run jasmine_node",
"jasmine_node": "jasmine spec/opentok_spec.js",
"mochaTest": "mocha",
"lint": "./node_modules/.bin/eslint ./lib/ ./test/ ./sample/"
},
"engines": {
"node": ">=4"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.9.0",
"jasmine": "^3.5.0",
"mocha": "^5.0.4",
"nock": "^9.2.3"
},
"dependencies": {
"jsonwebtoken": "^8.2.0",
"lodash": "^4.17.11",
"opentok-token": "^1.1.1",
"request": "^2.88.1"
}
}