-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.78 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.78 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
{
"name": "appium-novawindows-driver",
"version": "1.4.0",
"description": "Appium driver for Windows",
"keywords": [
"appium",
"novawindows",
"uiautomation",
"powershell",
"automated testing",
"windows"
],
"main": "build/lib/driver.js",
"scripts": {
"build": "tsc -b",
"watch": "tsc -b --watch",
"lint": "eslint .",
"test": "npx vitest run",
"test:e2e": "npx vitest run --config vitest.e2e.config.ts"
},
"author": "Automate The Planet",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/AutomateThePlanet/appium-novawindows-driver.git"
},
"bugs": {
"url": "https://github.com/AutomateThePlanet/appium-novawindows-driver/issues"
},
"peerDependencies": {
"appium": "^3.0.0-rc.2"
},
"dependencies": {
"@appium/base-driver": "^10.1.0",
"appium-chromedriver": "^8.2.21",
"bezier-easing": "^2.1.0",
"koffi": "^2.14.1",
"xpath-analyzer": "^3.0.1"
},
"appium": {
"driverName": "novawindows",
"automationName": "NovaWindows",
"platformNames": [
"Windows"
],
"mainClass": "NovaWindowsDriver"
},
"devDependencies": {
"@appium/eslint-config-appium-ts": "^2.0.3",
"@appium/tsconfig": "^1.1.0",
"@appium/types": "^1.1.0",
"@eslint/js": "^9.38.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^24.8.1",
"conventional-changelog-conventionalcommits": "^9.1.0",
"eslint": "^9.38.0",
"semantic-release": "^25.0.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.1",
"vitest": "^2.1.0",
"webdriverio": "^9.0.0"
},
"optionalDependencies": {
"ffmpeg-win32-ia32": "npm:ffmpeg-static@4.1.0",
"ffmpeg-win32-x64": "npm:ffmpeg-static@4.1.0"
}
}