-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.11 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.11 KB
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
{
"name": "web-webdriverio-example",
"version": "1.0.0",
"description": "Web automation testing example project with WebdriverIO",
"main": "index.js",
"scripts": {
"test": "wdio run ./resources/config/wdio.conf.js",
"test-safari": "wdio run ./resources/config/wdio.conf.safari.js",
"test-ci": "wdio run ./resources/config/wdio.conf.ci.js",
"test-bdd": "wdio run ./resources/config/wdio.conf.cucumber.js",
"test-bdd-ci": "wdio run ./resources/config/wdio.conf.cucumber.ci.js",
"report": "allure open"
},
"keywords": [],
"author": "lynix28",
"license": "ISC",
"dependencies": {
"@wdio/allure-reporter": "^8.11.0",
"@wdio/cli": "^8.11.2",
"@wdio/cucumber-framework": "^8.15.4",
"@wdio/globals": "^8.11.2",
"@wdio/local-runner": "^8.11.2",
"@wdio/mocha-framework": "^8.11.0",
"@wdio/selenium-standalone-service": "^8.11.0",
"allure-commandline": "^2.22.2",
"chai": "^4.3.7",
"chromedriver": "^114.0.3",
"dotenv": "^16.1.4",
"edgedriver": "^5.3.5",
"geckodriver": "^4.2.0",
"ts-node": "^10.9.1",
"wdio-safaridriver-service": "^2.1.1"
}
}