-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.93 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
{
"name": "webdriverio-appium-cucumber-boilerplate",
"license": "MIT",
"scripts": {
"code:check": "yarn code:lint && yarn code:prettier",
"code:format": "yarn code:lint --fix --quiet && yarn code:prettier --write",
"code:lint": "eslint .",
"code:prettier": "prettier --check \"**/*.js*\"",
"report:allure": "npx allure",
"report:generate": "yarn report:allure generate --clean ./test-report/allure-result/ -o ./test-report/allure-report",
"report:open": "yarn report:allure open test-report/allure-report",
"android.sauce.rdc.app": "./node_modules/.bin/wdio ./config/saucelabs/wdio.android.rdc.app.conf.js",
"android.app": "./node_modules/.bin/wdio ./config/wdio.android.app.conf.js",
"ios.app": "./node_modules/.bin/wdio ./config/wdio.ios.app.conf.js",
"ios.sauce.rdc.app": "./node_modules/.bin/wdio ./config/saucelabs/wdio.ios.rdc.app.conf.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Schveitzer/webdriverio-appium-cucumber-boilerplate.git"
},
"dependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/node": "^7.7.0",
"@babel/polyfill": "^7.7.0",
"@babel/preset-env": "^7.7.1",
"@babel/register": "^7.7.0",
"@types/cucumber": "^6.0.0",
"@types/node": "^12.12.7",
"@types/webdriverio": "^5.0.0",
"@wdio/allure-reporter": "^5.16.0",
"@wdio/cli": "^5.16.6",
"@wdio/cucumber-framework": "^5.16.6",
"@wdio/local-runner": "^5.16.6",
"@wdio/spec-reporter": "^5.16.5",
"@wdio/sync": "^5.16.5",
"allure-commandline": "^2.13.0",
"chai": "^4.2.0",
"cucumber": "^6.0.4",
"debug": "^4.1.1",
"eslint": "^6.6.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-import": "^2.18.2",
"fibers": "^4.0.2",
"husky": "^3.0.9",
"nconf": "^0.10.0",
"prettier": "^1.19.1",
"webdriverio": "^5.16.6"
}
}