-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 893 Bytes
/
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
{
"name": "appium-example",
"version": "1.0.0",
"description": "",
"scripts": {
"test": "node --experimental-vm-modules ./node_modules/.bin/jest"
},
"jest": {
"preset": "ts-jest",
"transform": {
"^.+\\.tsx?$": [
"ts-jest",
{
"tsconfig": "tsconfig.json"
}
]
},
"setupFilesAfterEnv": [
"./jest.setup.ts"
]
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.12",
"appium-uiautomator2-driver": "^2.44.0",
"jest-environment-node": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"webdriverio": "^8.29.7"
},
"type": "module",
"dependencies": {
"@wdio/appium-service": "^8.29.7",
"@wdio/cli": "^8.29.7",
"appium": "^2.5.1",
"axios": "^1.6.7",
"dotenv": "^16.4.1",
"jest": "^29.7.0"
}
}