-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
59 lines (59 loc) · 1.81 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
53
54
55
56
57
58
59
{
"name": "uplink-e2e-tests",
"version": "1.0.0",
"description": "An automation testing framework built with WebdriverIO and Appium to test Uplink Desktop app",
"scripts": {
"mac.app": "DRIVER=mac2 npx wdio config/wdio.mac.app.conf.ts",
"mac.ci": "DRIVER=mac2 npx wdio config/wdio.mac.ci.conf.ts",
"mac.multiremote": "DRIVER=mac2 npx wdio config/wdio.mac.multiremote.conf.ts",
"windows.app": "npx wdio config/wdio.windows.app.conf.ts",
"windows.ci": "npx wdio config/wdio.windows.ci.conf.ts",
"lint": "eslint config tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Satellite-im/testing-uplink.git"
},
"keywords": [
"WebdriverIO",
"WebDriver",
"appium",
"native app",
"hybrid",
"android",
"ios"
],
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"@wdio/allure-reporter": "^8.34.0",
"@wdio/appium-service": "^8.35.1",
"@wdio/cli": "^8.35.1",
"@wdio/junit-reporter": "^8.32.4",
"@wdio/local-runner": "^8.35.1",
"@wdio/mocha-framework": "^8.35.0",
"@wdio/spec-reporter": "^8.32.4",
"@wdio/visual-service": "^4.0.2",
"appium": "^2.5.3",
"appium-mac2-driver": "^1.12.0",
"appium-windows-driver": "^2.12.21",
"clipboardy": "^4.0.0",
"eslint-plugin-wdio": "^8.24.12",
"kill-port": "^2.0.1",
"module-alias": "^2.2.3",
"prettier": "^3.2.5",
"robotjs": "^0.6.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.3",
"wdio-winappdriver-service": "^0.1.1",
"webdriverio": "^8.35.1"
},
"_moduleAliases": {
"@config": "./config",
"@fixtures": "./tests/fixtures",
"@helpers": "./tests/helpers",
"@screenobjects": "./tests/screenobjects",
"@specs": "./tests/specs"
}
}