-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.6 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
{
"name": "cribmd-e2e-test-framework",
"version": "2.0.2",
"description": "WebDriverIO-v6 bindings for Node.js with Cucumber",
"author": "Amiya Pattanaik <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/amiya-pattnaik/webdriverIO-with-cucumberBDD",
"main": "./node_modules/.bin/wdio",
"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",
"junit-report": "node_modules/.bin/junit-viewer --results=./test/reports/junit-results --save=junit-results.html && open junit-results.html",
"test-sauce": "wdio ./test/config/wdio.sauce.conf.js",
"test-browserstack": "wdio ./test/config/wdio.browserstack.conf.js",
"test-local": "npm run allure:history && wdio ./test/config/wdio.local.conf.js",
"test-mobile": "wdio ./test/config/wdio.appium.conf.js"
},
"keywords": [
"selenium",
"web testing",
"webdriver",
"webdriverio",
"automation",
"e2e",
"test",
"cucumber"
],
"repository": {
"type": "git",
"url": "https://github.com/amiya-pattnaik/webdriverIO-with-cucumberBDD.git"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-syntax-export-default-from": "^7.8.3",
"@babel/preset-env": "^7.9.0",
"@babel/register": "^7.9.0",
"@wdio/allure-reporter": "^6.4.7",
"@wdio/appium-service": "^6.4.7",
"@wdio/browserstack-service": "^6.4.7",
"@wdio/cli": "^6.0.5",
"@wdio/cucumber-framework": "^6.5.0",
"@wdio/junit-reporter": "^6.4.7",
"@wdio/local-runner": "^6.0.5",
"@wdio/sauce-service": "^6.0.4",
"@wdio/selenium-standalone-service": "^6.4.7",
"@wdio/spec-reporter": "^6.0.4",
"@wdio/sync": "^6.0.1",
"allure-commandline": "^2.13.0",
"babel-plugin-source-map-support": "^2.1.3",
"chai": "^4.2.0",
"cucumber-tag-expressions": "^2.0.3",
"eslint": "^7.2.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",
"grunt": "^1.3.0",
"grunt-cli": "^1.3.2",
"grunt-cucumberjs": "^2.0.2",
"grunt-webdriver": "^3.0.0",
"junit-viewer": "^4.11.1",
"node-excel-to-json": "0.0.3",
"selenium-standalone": "^6.20.0",
"underscore": "^1.11.0",
"wdio-chromedriver-service": "^6.0.2",
"wdio-json-reporter": "^2.0.0"
}
}