forked from webdriverio/webdriverio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
371 lines (371 loc) · 14 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
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
{
"name": "webdriverio",
"description": "A nodejs bindings implementation for selenium 2.0/webdriver",
"version": "4.6.2",
"homepage": "http://webdriver.io",
"author": "Camilo Tapia <[email protected]>",
"repository": {
"type": "git",
"url": "git://github.com/webdriverio/webdriverio.git"
},
"bugs": {
"url": "https://github.com/webdriverio/webdriverio/issues"
},
"license": "MIT",
"main": "./build/index.js",
"bin": {
"wdio": "bin/wdio"
},
"engines": {
"node": ">= 0.12.0"
},
"scripts": {
"build": "grunt build",
"coverage": "grunt testcover --verbose",
"prepublish": "npm prune && npm run build && npm run test-unit",
"test": "grunt test",
"test-wdio": "grunt test:wdio",
"test-unit": "grunt test:unit",
"test-mobile": "grunt test:mobile",
"test-desktop": "grunt test:desktop",
"test-functional": "grunt test:functional",
"test-multibrowser": "grunt test:multibrowser",
"test-snyk": "snyk auth $SNYK_AUTH_TOKEN && snyk test"
},
"dependencies": {
"archiver": "~1.3.0",
"babel-runtime": "~6.22.0",
"css-parse": "~2.0.0",
"css-value": "~0.0.1",
"deepmerge": "~1.3.2",
"ejs": "~2.5.5",
"gaze": "~1.1.2",
"glob": "~7.1.1",
"inquirer": "~3.0.1",
"json-stringify-safe": "~5.0.1",
"mkdirp": "~0.5.1",
"npm-install-package": "~2.1.0",
"optimist": "~0.6.1",
"q": "~1.4.1",
"request": "~2.79.0",
"rgb2hex": "~0.1.0",
"supports-color": "~3.2.3",
"url": "~0.11.0",
"validator": "~6.2.1",
"wdio-dot-reporter": "~0.0.7",
"wgxpath": "~1.0.0"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-eslint": "^7.1.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-syntax-async-functions": "^6.8.0",
"babel-plugin-transform-regenerator": "^6.9.0",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.9.0",
"chai": "^3.4.1",
"chai-as-promised": "^6.0.0",
"chai-string": "^1.1.4",
"chai-things": "^0.2.0",
"codeclimate-test-reporter": "^0.4.0",
"coveralls": "~2.11.2",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-chai-expect": "^1.1.1",
"eslint-plugin-mocha": "^4.7.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.0",
"grunt": "^1.0.1",
"grunt-babel": "^6.0.0",
"grunt-bump": "^0.8.0",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-connect": "^1.0.2",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-eslint": "^19.0.0",
"grunt-mocha-istanbul": "^5.0.1",
"grunt-mocha-test": "^0.13.2",
"grunt-npm": "0.0.2",
"isparta": "^4.0.0",
"istanbul": "^0.4.5",
"load-grunt-tasks": "^3.2.0",
"mocha": "^3.2.0",
"mock-require": "^2.0.0",
"nock": "9.0.5",
"saucelabs": "^1.0.1",
"sinon": "^1.17.2",
"snyk": "1.25.0",
"wdio-mocha-framework": "^0.5.8"
},
"tags": [
"web",
"test",
"selenium",
"browser",
"javascript"
],
"keywords": [
"webdriverio",
"webdriver",
"selenium",
"appium",
"saucelabs",
"sauce",
"labs",
"mocha",
"nodeUnit",
"buster",
"phantomjs",
"chai",
"vows",
"jasmine",
"assert",
"cucumber",
"testingbot"
],
"contributors": [
"Christian Bromann <[email protected]>",
"vvo <[email protected]>",
"christian-bromann <[email protected]>",
"George Crawford <[email protected]>",
"Camilo Tapia <[email protected]>",
"camilo tapia <[email protected]>",
"Christian Bromann <[email protected]>",
"Vincent Voyer <[email protected]>",
"Dan Dascalescu <[email protected]>",
"W. van Kuipers <[email protected]>",
"Dan Jenkins <[email protected]>",
"clara-udofa <[email protected]>",
"Pat Thiel <[email protected]>",
"Johannes Nickel <[email protected]>",
"Alexis Gauthiez <[email protected]>",
"ysono <[email protected]>",
"Robin Franken <[email protected]>",
"Risto Stevcev <[email protected]>",
"Amila Welihinda <[email protected]>",
"Filipe Araujo <[email protected]>",
"Anton Usmansky <[email protected]>",
"pazone <[email protected]>",
"compulim <[email protected]>",
"csoete <[email protected]>",
"Kurt Harriger <[email protected]>",
"Micah Godbolt <[email protected]>",
"Kevin Lamping <[email protected]>",
"dsh <[email protected]>",
"Mason Du <[email protected]>",
"Jaroslav Kubíček <[email protected]>",
"Richard Leap <[email protected]>",
"Robin Franken <[email protected]>",
"Alexander Abashkin <[email protected]>",
"Marius OLAR <[email protected]>",
"Juga Paazmaya <[email protected]>",
"Karen <[email protected]>",
"George Crawford <[email protected]>",
"Konrad <[email protected]>",
"Thomas Grainger <[email protected]>",
"Denis Gorbachev <[email protected]>",
"Tsutomu Kawamura <[email protected]>",
"Dmitry Sorin <[email protected]>",
"Vadim <[email protected]>",
"Matija Marohnić <[email protected]>",
"Matthew Cale <[email protected]>",
"W. van Kuipers <[email protected]>",
"Jim Davis <jim.davis@krogercom>",
"Jochen <[email protected]>",
"Mikhail Korepanov <[email protected]>",
"Anton Kuznetsov <[email protected]>",
"Jonas Aschenbrenner <[email protected]>",
"tschuliiia <[email protected]>",
"ağdaş Tülek <[email protected]>",
"Zach Lym <[email protected]>",
"Willson Haw <[email protected]>",
"Brian Broll <[email protected]>",
"Ebbe Brandstrup <[email protected]>",
"DudaGod <[email protected]>",
"Nicholas Dobie <[email protected]>",
"enrique.daimiel <[email protected]>",
"Tom Regner <[email protected]>",
"gramgit <[email protected]>",
"Nicky Out <[email protected]>",
"Roman Rozhdestvenskiy <[email protected]>",
"Pat Thiel <[email protected]>",
"just-boris <[email protected]>",
"Marius Rugan <[email protected]>",
"Marco Faustinelli Muzietto <[email protected]>",
"patthiel <[email protected]>",
"David M. Lentz <[email protected]>",
"Branton Horsley <[email protected]>",
"Jon Hoguet <[email protected]>",
"Pranjal Raihan <[email protected]>",
"sbmaxx <[email protected]>",
"Bernhard K. Weisshuhn <[email protected]>",
"ngel Sanz <[email protected]>",
"Danny Guo <[email protected]>",
"Josh Cypher <[email protected]>",
"Stefan Grönke <[email protected]>",
"Roman <[email protected]>",
"Andy Edwards <[email protected]>",
"Kevin Sawicki <[email protected]>",
"Saul Shanabrook <[email protected]>",
"Adrian Lynch <[email protected]>",
"Bryan Kane <[email protected]>",
"Elmar Athmer <[email protected]>",
"Benjamin Eidelman <[email protected]>",
"Michael Jones <[email protected]>",
"Piper Chester <[email protected]>",
"Pranjal Raihan <[email protected]>",
"Quang Van <[email protected]>",
"Ray Dai <[email protected]>",
"RayWasHere <[email protected]>",
"Remek Ambroziak <[email protected]>",
"Richard Leap <[email protected]>",
"Rick Yakubowski <[email protected]>",
"Rob Howell <[email protected]>",
"Robert Jakubowicz <[email protected]>",
"Roman Faizullin <[email protected]>",
"Sakari Jokinen <[email protected]>",
"Sam Joch <[email protected]>",
"Schultz,Konrad <[email protected]>",
"Scott Falkingham <[email protected]>",
"Seth Merrick <[email protected]>",
"Sébastien David <[email protected]>",
"Siva <[email protected]>",
"Templum <[email protected]>",
"TestingBot <[email protected]>",
"Theodore J Huff <[email protected]>",
"Thibaut Etienne <[email protected]>",
"Thomas Grainger <[email protected]>",
"Tim Beyer <[email protected]>",
"Tim Brust <[email protected]>",
"Tim Brust <[email protected]>",
"Tim De Pauw <[email protected]>",
"Tobias Lidskog <[email protected]>",
"Tommy Chen <[email protected]>",
"Tyler Johnson <[email protected]>",
"Vadim Ivanov <[email protected]>",
"Van Le <[email protected]>",
"Vincent Voyer <[email protected]>",
"Vyacheslav Slinko <[email protected]>",
"Will Meldon <[email protected]>",
"William T Luce <[email protected]>",
"Wouter Broekhof <[email protected]>",
"Ziko Rajabali <[email protected]>",
"Zolmeister <[email protected]>",
"amyjen <[email protected]>",
"anhhh.11 <[email protected]>",
"beauwalls1 <[email protected]>",
"butlersrepos <[email protected]>",
"dpm3354 <[email protected]>",
"emilbryggare <[email protected]>",
"fufnf <[email protected]>",
"jharrowmortelliti <[email protected]>",
"junketjim <[email protected]>",
"just-boris <[email protected]>",
"lisss <[email protected]>",
"matteonovelli <[email protected]>",
"pplambeck <[email protected]>",
"psimyn <[email protected]>",
"ruanyl <[email protected]>",
"sbmaxx <[email protected]>",
"sgryt <[email protected]>",
"spreston <[email protected]>",
"ssnau <[email protected]>",
"tormozz48 <[email protected]>",
"twilczek <[email protected]>",
"wcainboundary <[email protected]>",
"wingsbob <[email protected]>",
"lker Göktuğ Öztürk <[email protected]>",
"Richard Silverton <[email protected]>",
"Algram <[email protected]>",
"Amitaibu <[email protected]>",
"Anders D. Johnson <[email protected]>",
"Andrew Price <[email protected]>",
"Andrey Lazebniy <[email protected]>",
"Andrii Shumada <[email protected]>",
"André <[email protected]>",
"Angie Semler <[email protected]>",
"Anthony Barone <[email protected]>",
"Arie Milner <[email protected]>",
"B.E. Henriksen <[email protected]>",
"Ben <[email protected]>",
"Ben Calegari <[email protected]>",
"Benjamin Nortier <[email protected]>",
"BlueRaja <[email protected]>",
"Boris Serdiuk <[email protected]>",
"Brandon Wanamaker <[email protected]>",
"Branton Horsley <[email protected]>",
"Brendan Dahl <[email protected]>",
"Bruno Torquato <[email protected]>",
"Chris Oelmueller <[email protected]>",
"Christian Leutloff <[email protected]>",
"Clint Goodman <[email protected]>",
"Dale Fukami <[email protected]>",
"Daniel Wabyick <[email protected]>",
"David Adams <[email protected]>",
"David Linse <[email protected]>",
"Denis Gorbachev <[email protected]>",
"Ebbe Brandstrup <[email protected]>",
"Eli Flanagan <[email protected]>",
"Emmerson Siqueira <[email protected]>",
"Enrique Paredes <[email protected]>",
"Eric Lee Carraway <[email protected]>",
"Erwan de FERRIERES <[email protected]>",
"Evgeni Kostadinov <[email protected]>",
"Ewan Harris <[email protected]>",
"Eyal Zekaria <[email protected]>",
"Francis Reyes <[email protected]>",
"Gaspar Rey <[email protected]>",
"Graham Nessler <[email protected]>",
"Igor Soarez <[email protected]>",
"Isac Lagerblad <[email protected]>",
"Ivan Poddubny <[email protected]>",
"Jakub Žitný <[email protected]>",
"James M. Greene <[email protected]>",
"Jason Whittle <[email protected]>",
"Javier Candeira <[email protected]>",
"Jens Schulze <[email protected]>",
"Jim Davis <[email protected]>",
"Jim Davis <[email protected]>",
"Jim Davis <[email protected]>",
"Joe <[email protected]>",
"Joe Helfrich <[email protected]>",
"Joe Pettersson <[email protected]>",
"Johannes Nickel <[email protected]>",
"John Hewson <[email protected]>",
"John Scaglione <[email protected]>",
"Jon Hoguet <[email protected]>",
"Jon Wood <[email protected]>",
"Jonathan Fielding <[email protected]>",
"Josh Ferge <[email protected]>",
"Joshua Toenyes <[email protected]>",
"Justin Gorinsky <[email protected]>",
"Kenshiro Nakagawa <[email protected]>",
"Kevin McDonnell <[email protected]>",
"Khanh Do <[email protected]>",
"LA Watts <[email protected]>",
"Laran Evans <[email protected]>",
"Levi Thomason <[email protected]>",
"Luigi Leung <[email protected]>",
"Lukáš Linhart <[email protected]>",
"Macy Abbey <[email protected]>",
"Marc Thomas <[email protected]>",
"Martin Hansen <[email protected]>",
"Mason Du <[email protected]>",
"Mathias Schaefer (molily) <[email protected]>",
"Mathias Schäfer <[email protected]>",
"Maximilian Antoni <[email protected]>",
"Michael Silveira <[email protected]>",
"Mickaël Andrieu <[email protected]>",
"Mike Nason <[email protected]>",
"Minkyu Cho <[email protected]>",
"Mohammad Asif <[email protected]>",
"Navmed <[email protected]>",
"Nick <[email protected]>",
"Oleg Seletsky <[email protected]>",
"Patrick Debois <[email protected]>",
"Pavel Karoukin <[email protected]>"
]
}