-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.04 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
{
"name": "webdriverio-seed",
"version": "0.0.1",
"description": "A boilerplate WebDriverIO project that supports web and mobile app test automation out-of-the-box.",
"author": "Andrew Birkholz",
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "https://github.com/abirkholz/webdriverio-seed.git"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"better-npm-run": "^0.1.0",
"chai": "4.1.2",
"commander": "^2.13.0",
"cucumber": "3.1.0",
"eslint": "^4.10.0",
"wdio-cucumber-framework": "^1.1.0",
"wdio-junit-reporter": "^0.3.1",
"wdio-selenium-standalone-service": "0.0.9",
"wdio-spec-reporter": "0.1.2",
"webdriverio": "^4.12.0"
},
"scripts": {
"test": "bnr chromeLocal -s",
"test:chrome:local": "bnr chromeLocal -s"
},
"betterScripts": {
"chromeLocal": {
"command": "wdio wdio.conf.js --host localhost",
"description": "Chrome on local machine",
"env": {
"CAPABILITY": "chromeLocal"
}
}
}
}