forked from twilio/rtc-diagnostics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.58 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
{
"name": "@twilio/rtc-diagnostics",
"version": "1.0.0-dev",
"description": "Various diagnostics functions to help analyze connections to Twilio",
"main": "./es5/lib/diagnostics.js",
"types": "./es5/lib/diagnostics.d.ts",
"scripts": {
"build": "npm-run-all clean docs build:es5 build:dist build:dist-min",
"build:dist": "rimraf ./dist && node ./scripts/build.js ./LICENSE.md ./dist/rtc-diagnostics.js",
"build:dist-min": "uglifyjs ./dist/rtc-diagnostics.js -o ./dist/rtc-diagnostics.min.js --comments \"/^! rtc-diagnostics.js/\" -b beautify=false,ascii_only=true",
"build:es5": "rimraf ./es5 && tsc",
"build:release": "npm-run-all lint build status",
"clean": "rimraf ./dist ./coverage ./es5 ./docs",
"docs": "rimraf ./docs && typedoc --internal-aliases internal,publicapi --external-aliases external,internalapi --excludePrivate --excludeProtected --theme ./node_modules/typedoc-twilio-theme/bin/default",
"lint": "tslint -c ./tslint.json --project ./tsconfig.json -t stylish",
"release": "release",
"status": "git status",
"test": "npm-run-all lint build test:unit test:integration",
"test:unit": "nyc mocha -r ts-node/register ./tests/unit/index.ts",
"test:integration": "node ./scripts/env.js && karma start"
},
"contributors": [
"Michael Huynh",
"Ryan Rowland",
"Charlie Santos"
],
"license": "Apache-2.0",
"keywords": [
"client",
"diagnostics",
"twilio",
"video",
"voice",
"voip"
],
"dependencies": {
"@types/events": "3.0.0",
"@types/node": "12.12.11",
"events": "3.0.0"
},
"devDependencies": {
"@types/mocha": "5.2.7",
"@types/request": "^2.48.5",
"@types/sinon": "9.0.4",
"browserify": "16.5.0",
"is-docker": "2.0.0",
"karma": "4.4.1",
"karma-chrome-launcher": "3.1.0",
"karma-env-preprocessor": "^0.1.1",
"karma-firefox-launcher": "1.2.0",
"karma-mocha": "1.3.0",
"karma-spec-reporter": "0.0.32",
"karma-typescript": "4.1.1",
"mocha": "6.2.2",
"npm-run-all": "4.1.5",
"nyc": "15.0.0",
"request": "^2.88.2",
"sinon": "9.0.2",
"travis-multirunner": "4.6.0",
"ts-node": "8.5.2",
"tsify": "4.0.1",
"tslint": "5.20.1",
"twilio": "3.39.1",
"twilio-release-tool": "1.0.1",
"typedoc": "0.16.11",
"typedoc-plugin-as-member-of": "1.0.2",
"typedoc-plugin-external-module-name": "3.0.0",
"typedoc-plugin-internal-external": "2.1.1",
"typedoc-twilio-theme": "github:charliesantos/typedoc-twilio-theme#1.0.1",
"typescript": "3.7.2",
"vinyl-fs": "3.0.3",
"vinyl-source-stream": "2.0.0"
}
}