forked from webex/webex-js-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
302 lines (302 loc) · 11.7 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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
{
"name": "webex-js-sdk",
"version": "0.5.349",
"description": "JavaScript SDK for interacting with the Webex API",
"homepage": "https://github.com/webex/webex-js-sdk",
"bugs": {
"url": "https://github.com/webex/webex-js-sdk/issues"
},
"license": "MIT",
"contributors": [
"Adam Weeks <[email protected]>",
"Aimmee Ma <[email protected]>",
"Alex Archer <[email protected]>",
"Andrew Holsted <[email protected]>",
"Arun Ganeshan <[email protected]>",
"Bernie Zang <[email protected]>",
"Brad Rydzewski <[email protected]>",
"Brian Bender <[email protected]>",
"Carter Foxgrover <[email protected]>",
"Christopher DuBois <[email protected]",
"David Greenstein <[email protected]>",
"Fong Chin <[email protected]>",
"Greg Hewett <[email protected]>",
"Hans Steinbrecher <[email protected]>",
"Ian W. Remmel <[email protected]>",
"Joe Fuhrman <[email protected]>",
"Joe Sankey <[email protected]>",
"Josh Dykstra <[email protected]>",
"Joshua Dykstra <[email protected]>",
"Matt Norris <[email protected]> (http://mattnorris.me)",
"Michael Wegman <[email protected]>",
"Nate Cohen-Smith <[email protected]>",
"Nick Clarke <[email protected]>",
"Patrick Linskey <[email protected]>",
"Riley Marsh <[email protected]>",
"Saurabh Jain <[email protected]>",
"Taymoor Khan <[email protected]>",
"Tim Scheuering <[email protected]>",
"Tor Hagemann <[email protected]>",
"Tran Tu <[email protected]>",
"Vagou Zhou <[email protected]>"
],
"engines": {
"node": "^10.x",
"npm": "^6.x"
},
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/webex/webex-js-sdk"
},
"scripts": {
"clean": "rimraf packages/node_modules/**/.coverage packages/node_modules/**/dist",
"bootstrap": "echo 'npm run bootstrap is no longer required. Hooray!'",
"prebuild": "npm run clean",
"build": "babel-node ./tooling/index.js build",
"build:script": "babel-node ./tooling/index.js build --umd",
"build:dev": "NODE_ENV=development babel-node ./tooling/index.js build",
"prebuild:docs": "rimraf ./docs/api",
"build:docs": "documentation build --config documentation/config.yml --np --project-name webex --project-version 1.x --format html --output ./docs/api --github ./packages/node_modules/webex/src/index.js ./packages/node_modules/{@ciscospark,@webex}/plugin-*/src/index.js",
"check-karma-output": "./scripts/analyze-output.sh",
"build:package": "echo 'deprecated; just use \"npm run --silent build\"'./tooling/build.js",
"circleci:local": "circleci local execute -c .circleci/github.config.yml",
"lint": "npm run --silent lint:js && npm run --silent lint:package-names",
"lint:commitmsg": "commitlint -e $GIT_PARAMS",
"lint:eslint": "eslint --ignore-pattern 'packages/node_modules/generator-ciscospark/generators/*/templates/**' --ignore-pattern 'docs/**' --ignore-pattern 'packages/node_modules/webex/umd/**' --ignore-path .gitignore",
"lint:js": "npm run --silent lint:eslint -- .",
"lint:package-names": "./tooling/lint-package-names.sh",
"lint:staged": "lint-staged",
"test": "babel-node ./tooling/index.js test",
"test:ci:github": "babel-node ./tooling/index.js ci --github",
"test:ci:integration": "babel-node ./tooling/index.js ci --integration",
"distsrc": "sed -ibak 's#\"main\": \"dist/index.js#\"main\": \"src/index.js#' packages/node_modules/{*,@webex/*}/package.json && rimraf packages/node_modules/{*,@webex/*}/*bak",
"srcdist": "sed -ibak 's#\"main\": \"src/index.js#\"main\": \"dist/index.js#' packages/node_modules/{*,@webex/*}/package.json && rimraf packages/node_modules/{*,@webex/*}/*bak",
"get-current-version": "babel-node ./tooling/index.js version current",
"get-next-version": "babel-node ./tooling/index.js version next --alwaysIncrement --includeSamples",
"deps:check": "babel-node ./tooling/index.js exec -- dependency-check ./package.json",
"deps:generate": "babel-node ./deps.js",
"build:samples": "echo 'Deprecated. Please use npm run samples:build'; npm run --silent samples:build",
"serve:samples": "echo 'Deprecated. Please use npm run samples:serve'; npm run --silent samples:serve",
"test:samples": "echo 'Deprecated. Please use npm run samples:test'; npm run --silent samples:test",
"samples:build": "babel-node ./tooling/index.js build --only-samples",
"samples:serve": "NODE_ENV=development webpack-dev-server -d",
"samples:devicemanager": "npm run serve:package -- --env.package @webex/plugin-device-manager --env.entry ./webex.js",
"serve:package": "webpack-dev-server --config webpack/webpack.config.js --hot --inline --history-api-fallback",
"samples:test": "NODE_ENV=test wdio",
"tooling": "babel-node ./tooling/index.js",
"postinstall": "patch-package"
},
"dependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@peculiar/webcrypto": "^1.0.22",
"@webex/eslint-config-base": "^0.8.0",
"ampersand-collection": "^2.0.2",
"ampersand-collection-lodash-mixin": "^4.0.0",
"ampersand-events": "^2.0.2",
"ampersand-state": "^5.0.3",
"asn1js": "^2.0.26",
"babel-cli": "^6.26.0",
"babel-eslint": "8.2.6",
"babel-generator": "^6.26.1",
"babel-loader": "^7.1.5",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"babel-runtime": "^6.26.0",
"babel-template": "^6.26.0",
"babel-traverse": "^6.26.0",
"babel-types": "^6.26.0",
"babelify": "^8.0.0",
"babylon": "^6.18.0",
"backoff": "^2.5.0",
"body-parser": "^1.19.0",
"bowser": "1.9.4",
"browser-saveas": "^1.0.1",
"browserify": "^16.3.0",
"browserify-istanbul": "^3.0.1",
"browserify-middleware": "^8.1.1",
"btoa": "^1.2.1",
"builtins": "^2.0.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chalk": "^2.4.2",
"check-error": "^1.0.2",
"compression": "^1.7.4",
"cookie-parser": "^1.4.4",
"core-decorators": "^0.20.0",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"crypto-js": "^3.1.9-1",
"debug": "^3.2.6",
"dependency-check": "^3.4.1",
"detective": "^5.2.0",
"detectrtc": "^1.3.4",
"doctrine": "^2.1.0",
"documentation": "^8.1.2",
"documentation-theme-utils": "^3.0.0",
"dotenv": "^4.0.0",
"envify": "^4.1.0",
"errorhandler": "^1.5.1",
"es6-promise": "^4.2.8",
"es6-promise-series": "^0.2.2",
"eslint": "^5.16.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-mocha": "^6.0.0",
"exif": "^0.6.0",
"express": "^4.17.1",
"express-session": "^1.16.2",
"express-validator": "^5.3.1",
"file-type": "^3.9.0",
"firefox-profile": "^1.2.0",
"fs-extra": "^8.1.0",
"glob": "^7.1.4",
"global": "^4.4.0",
"gm": "^1.23.1",
"grunt": "~1.0.1",
"grunt-cli": "~1.2.0",
"highlight.js": "^9.15.8",
"html-webpack-plugin": "^3.2.0",
"humanize-string": "^1.0.2",
"husky": "^3.0.3",
"in-publish": "^2.0.0",
"is-function": "^1.0.1",
"isparta": "^4.1.1",
"istanbul": "^0.4.5",
"javascript-state-machine": "^3.1.0",
"jsonwebtoken": "^8.5.1",
"karma": "^4.2.0",
"karma-browserify": "^6.1.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.0.0",
"karma-coverage": "^1.1.2",
"karma-edgium-launcher": "^4.0.0-0",
"karma-firefox-launcher": "^1.2.0",
"karma-ie-launcher": "^1.0.0",
"karma-junit-reporter": "^1.2.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-opera-launcher": "^1.0.0",
"karma-safari-launcher": "^1.0.0",
"karma-sauce-launcher": "1.2.0",
"lint-staged": "^8.2.1",
"load-grunt-tasks": "^3.5.2",
"localforage": "^1.7.3",
"lodash": "^4.17.15",
"lodash-decorators": "^4.5.0",
"lolex": "^2.7.5",
"mime-types": "^2.1.24",
"mkdirp": "^0.5.1",
"mmmagic": "^0.4.6",
"mocha": "^6.2.0",
"mocha-steps": "^1.3.0",
"morgan": "^1.9.1",
"multer": "^1.4.2",
"node-jose": "^0.11.1",
"node-kms": "^0.3.2",
"node-random-name": "^1.0.1",
"node-scr": "^0.2.2",
"on-finished": "^2.3.0",
"parse-headers": "^2.0.2",
"patch-package": "^6.2.2",
"pkg-up": "^2.0.0",
"pkijs": "^2.1.84",
"ps-node": "^0.1.6",
"qs": "^6.7.0",
"read-package-json": "^2.0.13",
"readable-stream": "^3.6.0",
"request": "^2.88.0",
"request-id": "^0.11.1",
"require-dir": "^0.3.2",
"response-time": "^2.3.2",
"rimraf": "^2.6.3",
"rxjs-compat": "^6.5.2",
"safe-buffer": "^5.2.0",
"sdp-transform": "^2.12.0",
"sinon": "^7.4.1",
"supertest": "^3.4.2",
"terser-webpack-plugin": "^2.3.5",
"time-grunt": "^1.4.0",
"url": "^0.11.0",
"urlsafe-base64": "^1.0.0",
"uuid": "^3.3.2",
"valid-url": "^1.0.9",
"wd": "^1.11.3",
"wdio-firefox-profile-service": "^0.1.3",
"wdio-junit-reporter": "^0.4.4",
"wdio-mocha-framework": "^0.6.4",
"wdio-sauce-service": "^0.4.14",
"wdio-selenium-standalone-service": "0.0.12",
"wdio-spec-reporter": "^0.1.5",
"wdio-static-server-service": "^1.0.1",
"wdio-webpack-service": "^1.0.1",
"webdriverio": "^4.14.4",
"webpack": "^4.38.0",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2",
"webpack-merge": "^4.2.1",
"webrtc-adapter": "^6.4.8",
"whatwg-fetch": "^2.0.4",
"ws": "^4.1.0",
"xhr": "^2.5.0",
"xtend": "^4.0.2",
"yakbak": "^3.0.0",
"yargs": "^9.0.1"
},
"optionalDependencies": {
"@ciscospark/test-users-legacy": "^1.2.0"
},
"browser": {
"mmmagic": false,
"crypto": false,
"gm": false,
"underscore": "lodash",
"./src/client/client/client.js": "./src/client/client/client.shim.js",
"./src/client/client/processors/request/request.js": "./src/client/client/processors/request/request.shim.js",
"./src/client/credentials/credentials.js": "./src/client/credentials/credentials.shim.js",
"./src/client/mercury/socket/socket.js": "./src/client/mercury/socket/socket.shim.js",
"./src/client/services/conversation/share-activity/share-activity.js": "./src/client/services/conversation/share-activity/share-activity.shim.js",
"./src/client/services/conversation/file-cache/collection/collection.js": "./src/client/services/conversation/file-cache/collection/collection.shim.js",
"./src/client/services/conversation/file-cache/model/model.js": "./src/client/services/conversation/file-cache/model/model.shim.js",
"./src/client/services/encryption/encryption/encryption.js": "./src/client/services/encryption/encryption/encryption.shim.js",
"./src/util/html/html.js": "./src/util/html/html.shim.js",
"./src/lib/image/image.js": "./src/lib/image/image.shim.js",
"./src/test/test.js": "./src/test/test.shim.js"
},
"browserify": {
"transform": [
"envify"
]
},
"publishConfig": {
"registry": "http://engci-maven-master.cisco.com/artifactory/api/npm/webex-release-npm"
},
"lint-staged": {
"linters": {
"*.js": [
"npm run lint:eslint -- --fix",
"git add"
],
"*package.json": [
"npm run lint:package-names"
],
"ignore": [
"**/umd/**.js"
]
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint --verbose -e $HUSKY_GIT_PARAMS",
"pre-commit": "npm run --silent srcdist && npm run --silent lint:staged"
}
}
}