-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
38 lines (38 loc) · 1.18 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": "webdriverio6-appium-mocha-boilerplate",
"version": "1.0.0",
"description": "Boilerplate project to run native and browser for android and ios using mocha with page object pattern",
"scripts": {
"ios": "wdio ./config/ios.config.js",
"android": "wdio ./config/android.config.js",
"iosBrowser": "wdio ./config/iosBrowser.config.js",
"androidBrowser": "wdio ./config/androidBrowser.config.js",
"lint": "eslint .",
"allure": "allure generate ./reports/allure/allure-results && allure open --clean"
},
"keywords": [
"Appium",
"Mocha",
"webdriverio",
"wdio",
"mobile automation",
"native apps",
"mobile browser"
],
"author": "Arjun Annamalai - arjun1120@gmail.com",
"license": "ISC",
"devDependencies": {
"@wdio/allure-reporter": "^6.1.14",
"@wdio/appium-service": "^6.1.16",
"@wdio/cli": "^6.1.17",
"@wdio/local-runner": "^6.1.19",
"@wdio/mocha-framework": "^6.1.19",
"@wdio/spec-reporter": "^6.1.14",
"@wdio/sync": "^6.1.14",
"allure-commandline": "^2.13.0",
"chromedriver": "^83.0.0",
"eslint": "^7.3.0",
"wdio-chromedriver-service": "^6.0.3",
"wdio-json-reporter": "^2.0.0"
}
}