-
Notifications
You must be signed in to change notification settings - Fork 167
/
package.json
103 lines (103 loc) · 2.68 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"$schema": "https://json.schemastore.org/package.json",
"name": "opentok",
"version": "2.18.0",
"description": "OpenTok server-side SDK",
"homepage": "https://github.com/opentok/opentok-node",
"bugs": {
"url": "https://github.com/opentok/opentok-node/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/opentok/opentok-node.git"
},
"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": "Hamza Nasir",
"email": "[email protected]"
},
{
"name": "Manik Sachdeva",
"url": "http://maniksach.dev"
},
{
"name": "Michael Jolley",
"url": "https://baldbeardedbuilder.com"
},
{
"name": "Alex Lakatos",
"url": "twitter.com/lakatos88"
},
{
"name": "Mofi Rahman",
"url": "https://twitter.com/moficodes"
},
{
"name": "Chuck \"MANCHUCK\" Reeves",
"email": "[email protected]",
"url": "https://github.com/manchuck"
}
],
"main": "lib/opentok.js",
"files": [
"lib/"
],
"scripts": {
"jasmine-coverage": "cross-env NODE_ENV=test nyc --reporter=text-lcov jasmine-node spec > jasmine.lcov",
"jasmine_node": "jasmine spec/opentok_spec.js",
"lint": "./node_modules/.bin/eslint ./lib/ ./test/ ./sample/",
"lint-fix": "eslint --fix lib test",
"mocha-coverage": "cross-env NODE_ENV=test nyc --reporter=text-lcov mocha > mocha.lcov",
"report-coverage": "npm run mocha-coverage && npm run jasmine-coverage",
"test": "npm run test-no-lint && npm run jasmine_node",
"test-coverage": "cross-env NODE_ENV=test nyc mocha",
"test-coverage-html": "cross-env NODE_ENV=test nyc --reporter html mocha",
"test-no-lint": "mocha ./test/*-test.js"
},
"dependencies": {
"jsonwebtoken": "9.0.2",
"lodash": "4.17.21",
"node-fetch": "2.7.0",
"opentok-token": "1.1.1"
},
"devDependencies": {
"chai": "4.3.10",
"cross-env": "7.0.3",
"eslint": "8.51.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.28.1",
"jasmine": "5.1.0",
"jasmine-node": "1.16.0",
"mocha": "10.2.0",
"nock": "13.3.6",
"nyc": "15.1.0"
},
"engines": {
"node": ">=4"
}
}