-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.16 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
{
"name": "appium-webdriverio",
"version": "1.0.4",
"description": "Appium WebdriverIO Starter Boilerplate for NodeJS with Mocha. Test your mobile apps with ease!",
"author": "morellexf13",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/morellexf13/appium-webdriverio.git"
},
"scripts": {
"test": "./node_modules/.bin/wdio wdio.conf.js",
"test-allure": "npm run test && allure generate --clean && allure open"
},
"main": "index.js",
"keywords": [
"boilerplate",
"nodejs",
"webdriverio",
"mocha",
"appium"
],
"dependencies": {
"appium": "^2.1.3",
"chai": "^4.3.10",
"webdriverio": "^8.16.22"
},
"devDependencies": {
"@wdio/allure-reporter": "^8.16.22",
"@wdio/appium-service": "^8.16.22",
"@wdio/cli": "^8.16.22",
"@wdio/local-runner": "^8.16.22",
"@wdio/mocha-framework": "^8.16.22",
"@wdio/selenium-standalone-service": "^8.15.0",
"appium-uiautomator2-driver": "^2.29.10",
"ts-node": "^10.9.1"
},
"bundledDependencies": [
"appium",
"chai",
"webdriverio"
],
"bundleDependencies": [
"appium",
"chai",
"webdriverio"
]
}