-
Notifications
You must be signed in to change notification settings - Fork 109
/
package.json
66 lines (66 loc) · 2.33 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
{
"name": "webdriverIO-with-cucumberBDD",
"version": "2.0.4",
"description": "WebDriverIO-v8 bindings for Node.js with Cucumber",
"author": "Amiya Pattanaik <pattnaik_amiya@yahoo.com>",
"license": "MIT",
"main": "./node_modules/.bin/wdio",
"type": "module",
"keywords": [
"selenium",
"web testing",
"webdriver",
"webdriverio",
"automation",
"e2e",
"test",
"cucumber"
],
"repository": {
"type": "git",
"url": "https://github.com/amiya-pattnaik/webdriverIO-with-cucumberBDD.git"
},
"homepage": "https://github.com/amiya-pattnaik/webdriverIO-with-cucumberBDD",
"bugs": {
"url": "https://github.com/amiya-pattnaik/webdriverIO-with-cucumberBDD/issues"
},
"scripts": {
"allure:history": "mkdir -p allure-report/history ./test/reports/allure-results/history && cp -a allure-report/history ./test/reports/allure-results/",
"allure-report": "node_modules/.bin/allure generate --clean ./test/reports/allure-results && allure open -p 5050",
"xunit-report": "node_modules/.bin/xunit-viewer --server -p=3000 -t='Automation Test Report' --results=./test/reports/junit-results --output=./xunit-report/xunit-report.html",
"test-sauce": "wdio wdio.sauce.conf.ts",
"test-browserstack": "wdio wdio.browserstack.conf.ts",
"test-lambdatest": "wdio wdio.lambdatest.conf.ts",
"test-local": "wdio wdio.local.conf.ts",
"test-mobile": "wdio wdio.appium.conf.ts"
},
"devDependencies": {
"@wdio/allure-reporter": "^8.1.2",
"@wdio/appium-service": "^8.1.3",
"@wdio/browserstack-service": "^8.1.3",
"@wdio/cli": "^8.1.3",
"@wdio/cucumber-framework": "^8.1.2",
"@wdio/globals": "^8.1.3",
"@wdio/junit-reporter": "^8.1.2",
"@wdio/local-runner": "^8.1.3",
"@wdio/sauce-service": "^8.1.3",
"@wdio/selenium-standalone-service": "^8.1.2",
"@wdio/spec-reporter": "^8.1.2",
"allure-commandline": "^2.20.1",
"eslint": "^8.31.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"wdio-chromedriver-service": "^8.0.1",
"wdio-wait-for": "^3.0.1",
"webdriverio": "^8.1.3",
"xunit-viewer": "^7.2.0"
},
"dependencies": {
"@wdio/codemod": "^0.12.0",
"jscodeshift": "^0.14.0"
}
}