forked from opentok/opentok-network-test-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.46 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
{
"name": "opentok-network-test-js",
"version": "3.2.0",
"description": "Precall network test for applications using the OpenTok platform.",
"main": "dist/NetworkTest/index.js",
"types": "dist/NetworkTest/index.d.ts",
"scripts": {
"build": "rm -rf dist && webpack --config webpack.config.js",
"test-setup": "node test/setup/setup.js",
"test-teardown": "rm test/credentials.json",
"karma": "karma start",
"test": "npm run test-setup && npm run karma && npm run test-teardown",
"example": "npm run build && cd sample && npm run build && python -m SimpleHTTPServer",
"lint": "eslint src test/**/*.ts",
"lint-fix": "eslint -- --fix src test/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/opentok/opentok-network-test-js.git"
},
"keywords": [
"tokbox",
"opentok",
"network test",
"connectivity",
"webrtc"
],
"author": {
"name": "TokBox",
"email": "contact@tokbox.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/opentok/network-connectivity-js/issues"
},
"homepage": "https://github.com/opentok/network-connectivity-js#readme",
"dependencies": {
"axios": "^1.6.6",
"opentok-solutions-logging": "^1.1.5",
"promise": "^8.3.0"
},
"devDependencies": {
"@opentok/client": "^2.27.1",
"@types/expect.js": "^0.3.32",
"@types/jasmine": "^5.1.4",
"@types/jasmine-matchers": "^0.2.35",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.6",
"@types/opentok": "^2.14.4",
"@types/webrtc": "^0.0.42",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/eslint-plugin-tslint": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"dotenv": "^16.4.1",
"eslint": "^8.56.0",
"fs-extra": "^11.2.0",
"jasmine": "^5.1.0",
"jasmine-core": "^5.1.1",
"karma": "^6.4.2",
"karma-chrome-launcher": "^3.2.0",
"karma-cli": "^2.0.0",
"karma-firefox-launcher": "^2.1.2",
"karma-jasmine": "^5.1.0",
"karma-mocha-reporter": "^2.2.5",
"karma-safari-launcher": "^1.0.0",
"karma-safaritechpreview-launcher": "2.0.2",
"karma-sauce-launcher": "^4.3.6",
"karma-sourcemap-loader": "^0.4.0",
"karma-webpack": "^5.0.0",
"opentok": "^2.17.0",
"terser-webpack-plugin": "^5.3.10",
"ts-loader": "^9.5.1",
"types-webpack-bundler": "^1.0.2",
"typescript": "5.3.3",
"webpack": "^5.90.0",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0"
}
}