forked from twilio/twilio-webrtc.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.91 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
{
"name": "@twilio/webrtc",
"version": "4.5.3-dev",
"description": "WebRTC-related APIs and shims used by twilio-video.js",
"scripts": {
"build": "npm-run-all clean lint test",
"clean": "rimraf coverage",
"lint": "eslint ./lib",
"test:unit": "istanbul cover node_modules/mocha/bin/_mocha -- ./test/unit/index.js",
"test:integration:native": "karma start karma/integration.conf.js",
"test:integration:adapter": "karma start karma/integration.adapter.conf.js",
"test:integration": "npm-run-all test:integration:*",
"test": "npm-run-all test:*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/twilio/twilio-webrtc.js.git"
},
"keywords": [
"shim",
"twilio",
"video",
"webrtc"
],
"author": "Manjesh Malavalli <[email protected]>",
"contributors": [
"Mark Roberts <[email protected]>",
"Ryan Rowland <[email protected]>",
"Makarand Patwardhan <[email protected]>"
],
"license": "BSD-3-Clause",
"main": "./lib/index.js",
"bugs": {
"url": "https://github.com/twilio/twilio-webrtc.js/issues"
},
"homepage": "https://github.com/twilio/twilio-webrtc.js#readme",
"devDependencies": {
"browserify": "^14.4.0",
"electron": "9.4.0",
"envify": "^4.1.0",
"eslint": "^4.4.1",
"is-docker": "^2.0.0",
"istanbul": "^0.4.5",
"karma": "^6.3.4",
"karma-browserify": "^8.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-edgium-launcher": "^4.0.0-0",
"karma-electron": "^6.1.0",
"karma-firefox-launcher": "^1.0.1",
"karma-htmlfile-reporter": "^0.3.8",
"karma-junit-reporter": "^1.2.0",
"karma-mocha": "^2.0.1",
"karma-safari-launcher": "~0.1",
"karma-spec-reporter": "0.0.31",
"mocha": "^9.1.1",
"npm-run-all": "^4.0.2",
"rimraf": "^2.6.1",
"simple-git": "^2.4.0",
"twilio-release-tool": "^1.0.0",
"watchify": "^4.0.0",
"webrtc-adapter": "^6.4.8"
}
}