forked from twilio/twilio-video.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
145 lines (145 loc) · 6.63 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"name": "twilio-video",
"title": "Twilio Video",
"description": "Twilio Video JavaScript library",
"version": "2.2.1-dev",
"homepage": "https://twilio.com",
"author": "Mark Andrus Roberts <mroberts@twilio.com>",
"contributors": [
"Ryan Rowland <rrowland@twilio.com>",
"Manjesh Malavalli <mmalavalli@twilio.com>",
"Makarand Patwardhan <mpatwardhan@twilio.com>"
],
"keywords": [
"twilio",
"webrtc",
"library",
"javascript",
"video",
"rooms"
],
"repository": {
"type": "git",
"url": "https://github.com/twilio/twilio-video.js.git"
},
"devDependencies": {
"@types/express": "^4.11.0",
"@types/node": "^8.5.1",
"@types/selenium-webdriver": "^3.0.8",
"@types/ws": "^3.2.1",
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"browserify": "^14.3.0",
"cheerio": "^0.22.0",
"chromedriver": "2.28.0",
"cors": "^2.8.5",
"electron": "^5.0.1",
"envify": "^4.0.0",
"eslint": "^6.2.1",
"eslint-config-standard": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"express": "^4.16.2",
"geckodriver": "1.4.0",
"ink-docstrap": "^1.3.2",
"inquirer": "^7.0.0",
"is-docker": "^2.0.0",
"istanbul": "^0.4.5",
"jsdoc": "^3.5.5",
"json-loader": "^0.5.7",
"karma": "^1.6.0",
"karma-browserify": "^5.1.1",
"karma-chrome-launcher": "^2.0.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": "^1.3.0",
"karma-safari-launcher": "^1.0.0",
"karma-spec-reporter": "0.0.32",
"mocha": "^3.2.0",
"npm-run-all": "^4.0.2",
"puppeteer": "^1.11.0",
"release-tool": "^0.2.2",
"requirejs": "^2.3.3",
"rimraf": "^2.6.1",
"selenium-webdriver": "3.3.0",
"simple-git": "^1.126.0",
"sinon": "^4.0.1",
"travis-multirunner": "^4.0.0",
"ts-node": "4.0.1",
"tslint": "5.8.0",
"twilio": "^2.11.1",
"typescript": "2.6.2",
"uglify-js": "^2.8.22",
"vinyl-fs": "^2.4.4",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.11.1",
"webrtc-adapter": "^4.1.1"
},
"engines": {
"node": ">=0.12"
},
"license": "BSD-3-Clause",
"main": "./es5/index.js",
"scripts": {
"lint": "eslint ./lib ./test/*.js ./docker/**/*.js ./test/framework/*.js ./test/lib/*.js ./test/integration/** ./test/unit/**",
"test:unit": "mocha ./test/unit/index.js",
"test:integration:adapter": "node ./scripts/karma.js karma/integration.adapter.conf.js",
"test:integration:travis": "node ./scripts/integration.js",
"test:integration": "node ./scripts/karma.js karma/integration.conf.js",
"test:umd": "mocha ./test/umd/index.js",
"test:crossbrowser:build:clean": "rimraf ./test/crossbrowser/lib ./test/crossbrowser/src/browser/index.js",
"test:crossbrowser:build:lint": "cd ./test/crossbrowser && tslint --project tsconfig.json",
"test:crossbrowser:build:tsc": "cd ./test/crossbrowser && tsc",
"test:crossbrowser:build:browser": "cd ./test/crossbrowser && browserify lib/crossbrowser/src/browser/index.js > src/browser/index.js",
"test:crossbrowser:build": "npm-run-all test:crossbrowser:build:*",
"test:crossbrowser:test": "cd ./test/crossbrowser && mocha --compilers ts:ts-node/register test/integration/spec/**/*.ts",
"test:crossbrowser": "npm-run-all test:crossbrowser:*",
"test:sdkdriver:build:clean": "rimraf ./test/lib/sdkdriver/lib ./test/lib/sdkdriver/test/integration/browser/index.js",
"test:sdkdriver:build:lint": "cd ./test/lib/sdkdriver && tslint --project tsconfig.json",
"test:sdkdriver:build:tsc": "cd ./test/lib/sdkdriver && tsc --rootDir src",
"test:sdkdriver:build": "npm-run-all test:sdkdriver:build:*",
"test:sdkdriver:test:unit": "cd ./test/lib/sdkdriver && mocha --compilers ts:ts-node/register test/unit/spec/**/*.ts",
"test:sdkdriver:test:integration:browser": "cd ./test/lib/sdkdriver/test/integration && browserify browser/browser.js > browser/index.js",
"test:sdkdriver:test:integration:run": "cd ./test/lib/sdkdriver && mocha --compilers ts:ts-node/register test/integration/spec/**/*.ts",
"test:sdkdriver:test:integration": "npm-run-all test:sdkdriver:test:integration:*",
"test:sdkdriver:test": "npm-run-all test:sdkdriver:test:*",
"test:sdkdriver": "npm-run-all test:sdkdriver:*",
"test:framework:angular:install": "cd ./test/framework/twilio-video-angular && rimraf ./node_modules package-lock.json && npm install",
"test:framework:angular:run": "mocha ./test/framework/twilio-video-angular.js",
"test:framework:angular": "npm-run-all test:framework:angular:*",
"test:framework:no-framework:run": "mocha ./test/framework/twilio-video-no-framework.js",
"test:framework:no-framework": "npm-run-all test:framework:no-framework:*",
"test:framework:react:install": "cd ./test/framework/twilio-video-react && rimraf ./node_modules package-lock.json && npm install",
"test:framework:react:test": "node ./scripts/framework.js twilio-video-react",
"test:framework:react:build": "cd ./test/framework/twilio-video-react && npm run build",
"test:framework:react:run": "mocha ./test/framework/twilio-video-react.js",
"test:framework:react": "npm-run-all test:framework:react:*",
"test:framework": "npm-run-all test:framework:angular test:framework:no-framework test:framework:react",
"test": "npm-run-all test:unit test:integration",
"build:es5": "rimraf ./es5 && babel lib -d es5",
"build:js": "node ./scripts/build.js ./src/twilio-video.js ./LICENSE.md ./dist/twilio-video.js",
"build:min.js": "uglifyjs ./dist/twilio-video.js -o ./dist/twilio-video.min.js --comments \"/^! twilio-video.js/\" -b beautify=false,ascii_only=true",
"build": "npm-run-all clean lint docs cover test:integration build:es5 build:js build:min.js test:umd",
"build:travis": "npm-run-all clean lint docs cover build:es5 build:js build:min.js test:umd test:framework",
"build:docker": "npm-run-all clean lint docs cover test:integration:travis build:es5 build:js build:min.js",
"build:quick": "npm-run-all clean lint docs build:es5 build:js build:min.js",
"docs": "node ./scripts/docs.js ./dist/docs",
"clean": "rimraf ./coverage ./es5 ./dist",
"cover": "istanbul cover node_modules/mocha/bin/_mocha -- ./test/unit/index.js"
},
"dependencies": {
"@twilio/webrtc": "4.2.0",
"backoff": "^2.5.0",
"ws": "^3.3.1",
"xmlhttprequest": "^1.8.0"
},
"browser": {
"ws": "./src/ws.js",
"xmlhttprequest": "./src/xmlhttprequest.js"
}
}