-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.66 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.66 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "session-appium",
"version": "1.0.0",
"scripts": {
"cleanup-simulators": "npx ts-node scripts/cleanup_ios_simulators.ts",
"create-simulators": "pnpm cleanup-simulators && npx ts-node scripts/create_ios_simulators.ts",
"recover-emulators": "npx ts-node scripts/emulator_health.ts",
"setup-virtual-scene": "npx ts-node scripts/setup_virtual_scene.ts",
"lint": "pnpm prettier . --write --cache && pnpm eslint . --cache ",
"lint-check": "pnpm prettier . --check && pnpm eslint .",
"tsc": "tsc",
"watch": "tsc -w",
"test": "npx playwright test --grep ",
"test-no-retry": "_TESTING=1 npx playwright test --grep ",
"test-one": "_TESTING=1 _FORCE_LOGS=0 npx playwright test --grep",
"test-udid": "_TESTING=1 npx playwright test UDID=$udid --grep",
"test-ios": "_TESTING=1 npx playwright test --grep '@ios'",
"test-android": "_TESTING=1 npx playwright test --grep '@android'",
"test-one-logs": "_TESTING=1 _FORCELOGS=1 npx playwright test --retries 0 ./run/test/**/*.spec.ts --grep",
"test-high-risk-android": "_TESTING=1 npx playwright test --grep '@android @high-risk'",
"test-high-risk-ios": "_TESTING=1 npx playwright test --grep '@ios @high-risk'",
"start-server": "./node_modules/.bin/appium server --use-drivers=uiautomator2,xcuitest --port 8110 --allow-cors",
"allure-generate": "allure generate allure/allure-results --clean",
"allure-open": "allure open",
"mock-pro": "npx ts-node run/test/utils/mock_pro.ts"
},
"devDependencies": {
"@appium/execute-driver-plugin": "^6.0.0",
"@appium/images-plugin": "^4.1.1",
"@appium/opencv": "4.1.1",
"@appium/types": "^1.2.1",
"@eslint/js": "^10.0.1",
"@types/fs-extra": "^11.0.4",
"@types/gh-pages": "^6.1.0",
"@types/lodash": "^4.17.24",
"@types/node": "^25.5.0",
"@types/sinon": "^21.0.0",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"@wdio/types": "^9.27.0",
"allure-commandline": "^2.38.1",
"allure-js-commons": "^3.6.0",
"allure-playwright": "^3.4.5",
"eslint": "^10.1.0",
"eslint-plugin-perfectionist": "^5.7.0",
"fs-extra": "^11.3.4",
"fuse.js": "^7.1.0",
"gh-pages": "^6.3.0",
"glob": "^13.0.6",
"globals": "^17.4.0",
"lodash": "^4.17.23",
"looks-same": "^10.0.1",
"png-js": "^1.0.0",
"prettier": "^3.8.1",
"sharp": "^0.34.5",
"sinon": "^21.0.3",
"source-map-support": "^0.5.21",
"ssim.js": "^3.5.0",
"ts-node": "^10.9.2",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.0",
"undici": "^7.24.6",
"uuid": "^13.0.0"
},
"license": "MIT",
"engines": {
"node": "24.12.0",
"pnpm": "10.28.1"
},
"dependencies": {
"@appium/support": "^7.0.6",
"@noble/curves": "^2.0.1",
"@noble/hashes": "^2.0.1",
"@playwright/test": "^1.59.0",
"@session-foundation/playwright-reporter": "^0.0.8",
"@session-foundation/qa-seeder": "^0.1.26",
"appium": "^3.2.2",
"appium-uiautomator2-driver": "^7.1.0",
"appium-xcuitest-driver": "^10.39.1",
"dotenv": "^17.3.1"
},
"packageManager": "pnpm@10.28.1",
"pnpm": {
"patchedDependencies": {
"appium-uiautomator2-driver": "patches/appium-uiautomator2-driver.patch",
"allure-playwright@3.4.5": "patches/allure-playwright@3.4.5.patch"
},
"ignoredBuiltDependencies": [
"appium-ios-tuntap",
"edgedriver",
"geckodriver"
],
"onlyBuiltDependencies": [
"appium",
"sharp"
],
"overrides": {
"ws@>=8.0.0 <8.17.1": ">=8.17.1",
"tar-fs@>=3.0.0 <3.1.1": ">=3.1.1",
"tar-fs@>=3.0.0 <3.0.9": ">=3.0.9",
"tar-fs@>=3.0.0 <3.0.7": ">=3.0.7"
}
}
}