forked from garyb-bs/WebDriverIO-Appium-Mocha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.53 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
{
"name": "browserstack-examples-appium-webdriverio",
"version": "1.0.0",
"description": "This project contains examples to run appium tests locally and on BrowserStack",
"devDependencies": {
"@wdio/allure-reporter": "^7.16.13",
"@wdio/appium-service": "^7.16.13",
"@wdio/browserstack-service": "^7.16.10",
"@wdio/cli": "^7.16.10",
"@wdio/local-runner": "^7.16.13",
"@wdio/mocha-framework": "^7.16.13",
"@wdio/spec-reporter": "^7.16.13",
"allure-commandline": "^2.13.8",
"appium": "^1.22.2",
"chai": "^4.3.4",
"lodash": "4.17.21"
},
"scripts": {
"bstack-single": "wdio run resources/conf/wdio-bstack-single.conf.js",
"bstack-suite": "wdio run resources/conf/wdio-bstack-suite.conf.js",
"bstack-parallel": "wdio run resources/conf/wdio-bstack-parallel.conf.js",
"bstack-parallel-devices": "wdio run resources/conf/wdio-bstack-parallel-devices.conf.js",
"bstack-local": "wdio run resources/conf/wdio-bstack-local.conf.js",
"bstack-local-parallel-devices": "wdio run resources/conf/wdio-bstack-local-parallel-devices.conf.js",
"onprem": "wdio run resources/conf/wdio-onprem.conf.js",
"onprem-suite": "wdio run resources/conf/wdio-onprem-suite.conf.js",
"generate-report": "./node_modules/allure-commandline/bin/allure generate allure-results --clean && ./node_modules/allure-commandline/bin/allure open"
},
"keywords": [
"appium",
"browserstack",
"webdriverio"
],
"author": "",
"license": "ISC",
"dependencies": {
"browserstack-local": "^1.4.9"
}
}