forked from appium/appium-uiautomator2-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
126 lines (126 loc) · 3.53 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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "appium-uiautomator2-driver",
"description": "UiAutomator2 integration for Appium",
"keywords": [
"appium",
"uiautomator2",
"automated testing",
"android"
],
"version": "2.29.4",
"author": "Appium Contributors",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/appium/appium-uiautomator2-driver.git"
},
"bugs": {
"url": "https://github.com/appium/appium-uiautomator2-driver/issues"
},
"engines": {
"node": ">=14",
"npm": ">=8"
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"prettier": {
"bracketSpacing": false,
"printWidth": 100,
"singleQuote": true
},
"appium": {
"driverName": "uiautomator2",
"automationName": "UiAutomator2",
"platformNames": [
"Android"
],
"mainClass": "AndroidUiautomator2Driver",
"scripts": {
"reset": "scripts/reset.js"
}
},
"main": "./build/index.js",
"bin": {},
"directories": {
"lib": "lib"
},
"files": [
"index.js",
"lib",
"build/index.js",
"build/lib",
"scripts",
"CHANGELOG.md"
],
"dependencies": {
"@babel/runtime": "^7.0.0",
"appium-adb": "^9.13.1",
"appium-android-driver": "^5.14.0",
"appium-chromedriver": "^5.6.1",
"appium-uiautomator2-server": "^5.12.2",
"asyncbox": "^2.3.1",
"axios": "^1.x",
"bluebird": "^3.5.1",
"css-selector-parser": "^2.2.3",
"lodash": "^4.17.4",
"portscanner": "^2.2.0",
"source-map-support": "^0.x",
"teen_process": "^2.0.0"
},
"scripts": {
"build": "rimraf build && babel --out-dir=build/lib lib && babel --out-dir=build index.js",
"reset": "node ./scripts/reset.js",
"dev": "npm run build -- --watch",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0",
"precommit-lint": "lint-staged",
"prepare": "npm run build",
"test": "mocha --exit --timeout 1m \"./test/unit/**/*-specs.js\"",
"e2e-test:driver": "mocha --exit --timeout 10m \"./test/functional/driver-e2e-specs.js\"",
"e2e-test:commands": "mocha --exit --timeout 10m \"./test/functional/commands\"",
"e2e-test:commands:find": "mocha --exit --timeout 10m \"./test/functional/commands/find\"",
"e2e-test:commands:general": "mocha --exit --timeout 10m \"./test/functional/commands/general\"",
"e2e-test:commands:keyboard": "mocha --exit --timeout 10m \"./test/functional/commands/keyboard\""
},
"pre-commit": [
"precommit-msg",
"precommit-lint"
],
"peerDependencies": {
"appium": "^2.0.0-beta.40"
},
"devDependencies": {
"@appium/eslint-config-appium": "^8.0.0",
"@appium/test-support": "^3.0.0",
"@babel/cli": "^7.18.10",
"@babel/core": "^7.18.10",
"@babel/eslint-parser": "^7.18.9",
"@babel/plugin-transform-runtime": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/register": "^7.18.9",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@xmldom/xmldom": "^0.x",
"android-apidemos": "^4.1.1",
"babel-plugin-source-map-support": "^2.2.0",
"chai": "^4.1.0",
"chai-as-promised": "^7.1.1",
"conventional-changelog-conventionalcommits": "^6.0.0",
"eslint-config-prettier": "^8.5.0",
"fancy-log": "^2.0.0",
"lint-staged": "^14.0.0",
"mocha": "^10.0.0",
"pre-commit": "^1.2.2",
"rimraf": "^5.0.0",
"semantic-release": "^20.0.2",
"sharp": "^0.x",
"sinon": "^15.0.0",
"unzipper": "^0.x",
"webdriverio": "^8.0.5",
"xpath": "^0.x"
}
}