-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.39 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
{
"name": "webdriverio-theinternet",
"version": "1.0.0",
"description": "Example webdriverio usage",
"main": "wdio.conf.js",
"directories": {
"test": "test"
},
"dependencies": {
"chai": "^3.5.0",
"webdriverio": "^4.6.1",
"wdio-sauce-service": "0.2.4",
"wdio-mocha-framework": "0.5.8",
"wdio-allure-reporter": "0.1.2",
"allure-commandline": "1.4.23",
"selenium-standalone": "5.11.1",
"wdio-selenium-standalone-service": "0.0.7"
},
"devDependencies": {},
"scripts": {
"cleanup": "rm -rf ./allure-results && rm -rf ./allure-report && rm -rf ./errorShots",
"pretest": "npm run cleanup",
"test": "./node_modules/.bin/wdio",
"test:local": "npm run pretest && ./node_modules/.bin/wdio ./conf/local.conf.js && npm run posttest",
"test:sauce": "npm run pretest && ./node_modules/.bin/wdio ./conf/saucelabs.conf.js && npm run posttest",
"report": "allure generate allure-results && allure report open",
"posttest": "npm run report",
"postinstall": "./node_modules/.bin/selenium-standalone install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andrew-fowler/webdriverio-theinternet.git"
},
"author": "Andrew Fowler",
"license": "ISC",
"bugs": {
"url": "https://github.com/andrew-fowler/webdriverio-theinternet/issues"
},
"homepage": "https://github.com/andrew-fowler/webdriverio-theinternet#readme"
}