This repository has been archived by the owner on Sep 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
76 lines (76 loc) · 1.96 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
{
"name": "gulp-webdriver",
"version": "4.0.0",
"description": "gulp-webdriver is a gulp plugin to run e2e tests with the WebdriverIO testrunner",
"repository": {
"type": "git",
"url": "https://github.com/webdriverio/gulp-webdriver.git"
},
"main": "lib/index.js",
"scripts": {
"prepublish": "npm run compile",
"compile": "babel --presets @babel/env -d lib/ src/",
"eslint": "eslint gulp/ src/ test/ *.js",
"test": "gulp test",
"pretest": "npm run eslint && npm run compile"
},
"engines": {
"node": ">=12"
},
"keywords": [
"webdriverio",
"gulp",
"selenium",
"webdriver",
"mocha",
"test",
"testing",
"bdd",
"tdd",
"saucelabs",
"runner",
"gulpplugin"
],
"author": "Christian Bromann <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/webdriverio/gulp-webdriver/issues"
},
"homepage": "https://github.com/webdriverio/gulp-webdriver",
"dependencies": {
"plugin-error": "^1.0.1",
"resolve": "^1.16.1",
"through2": "^3.0.1"
},
"peerDependencies": {
"@wdio/cli": "^6.1.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/register": "^7.9.0",
"@wdio/cli": "^6.1.0",
"@wdio/dot-reporter": "^6.0.16",
"@wdio/local-runner": "^6.1.0",
"@wdio/logger": "^6.0.16",
"@wdio/mocha-framework": "^6.1.0",
"@wdio/sync": "^6.1.0",
"ansi-colors": "^4.1.1",
"babel-eslint": "^10.1.0",
"codeclimate-test-reporter": "^0.5.1",
"del": "^5.1.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-eslint": "^6.0.0",
"mocha": "^7.1.1",
"run-sequence": "^2.2.1",
"selenium-standalone": "^6.17.0"
}
}