forked from appium/appium-espresso-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
143 lines (143 loc) · 4.23 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "appium-espresso-driver",
"description": "Espresso integration for Appium",
"keywords": [
"appium",
"espresso",
"automated testing",
"android"
],
"version": "3.3.1",
"author": "Appium Contributors",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/appium/appium-espresso-driver.git"
},
"bugs": {
"url": "https://github.com/appium/appium-espresso-driver/issues"
},
"engines": {
"node": ">=14",
"npm": ">=8"
},
"prettier": {
"bracketSpacing": false,
"printWidth": 100,
"singleQuote": true
},
"appium": {
"driverName": "espresso",
"automationName": "Espresso",
"platformNames": [
"Android"
],
"mainClass": "EspressoDriver",
"scripts": {
"print-espresso-path": "./scripts/print-espresso-path.js",
"build-espresso": "./scripts/build-espresso.js"
},
"doctor": {
"checks": [
"./build/lib/doctor/required-checks.js",
"./build/lib/doctor/optional-checks.js"
]
}
},
"main": "./build/index.js",
"bin": {},
"directories": {
"lib": "lib"
},
"files": [
"index.js",
"lib",
"build/index.js",
"build/lib",
"espresso-server/app/src",
"espresso-server/app/build/outputs/apk",
"espresso-server/app/build.gradle.kts",
"espresso-server/app/proguard-rules.pro",
"espresso-server/library/src",
"espresso-server/library/build.gradle.kts",
"espresso-server/gradle",
"espresso-server/gradlew",
"espresso-server/gradlew.bat",
"espresso-server/gradle.properties",
"espresso-server/build.gradle.kts",
"espresso-server/settings.gradle.kts",
"espresso-server/lint.xml",
"!.DS_Store",
"CHANGELOG.md",
"scripts",
"LICENSE",
"npm-shrinkwrap.json"
],
"dependencies": {
"appium-adb": "^12.4.0",
"appium-android-driver": "^9.8.0",
"asyncbox": "^3.0.0",
"axios": "^1.7.2",
"bluebird": "^3.5.0",
"io.appium.settings": "^5.12.0",
"lodash": "^4.17.11",
"portscanner": "^2.1.1",
"semver": "^7.6.2",
"source-map-support": "^0.x",
"teen_process": "^2.2.0"
},
"scripts": {
"build": "npm run build:node && npm run build:server",
"rebuild": "npm run rebuild:node && npm run rebuild:server",
"build:node": "tsc -b",
"build:server": "cd espresso-server && ./gradlew :app:assembleAndroidTest || cd ..",
"rebuild:node": "npm run clean:node && npm run build:node",
"rebuild:server": "cd espresso-server && ./gradlew clean :app:assembleAndroidTest || cd ..",
"clean:node": "npm run build -- --clean",
"clean:server": "cd espresso-server && ./gradlew clean || cd ..",
"dev": "npm run build -- --watch",
"lint": "eslint .",
"lint:server": "cd espresso-server && ./gradlew lint || cd ..",
"lint:fix": "npm run lint -- --fix",
"prepare": "npm run rebuild",
"sync-version": "node ./scripts/sync-version.js --package-version=${npm_package_version}",
"test": "npm run test:node",
"test:node": "mocha --exit --timeout 1m \"./test/unit/**/*-specs.js\"",
"test:server": "cd espresso-server && ./gradlew test --stacktrace || cd ..",
"version": "npm run sync-version && npm run build:server",
"e2e-test": "mocha --exit --timeout 5m \"./test/functional/**/*-specs.js\""
},
"peerDependencies": {
"appium": "^2.4.1"
},
"devDependencies": {
"@appium/eslint-config-appium-ts": "^0.x",
"@appium/tsconfig": "^0.x",
"@appium/types": "^0.x",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/bluebird": "^3.5.38",
"@types/lodash": "^4.14.196",
"@types/mocha": "^10.0.1",
"@types/node": "^20.4.7",
"@types/sinon": "^17.0.0",
"@types/sinon-chai": "^3.2.9",
"@types/teen_process": "^2.0.2",
"@xmldom/xmldom": "^0.x",
"android-apidemos": "^4.1.1",
"appium-chromedriver": "^5.1.4",
"async-lock": "^1.0.0",
"chai": "^5.1.1",
"chai-as-promised": "^8.0.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"mocha": "^10.0.0",
"rimraf": "^5.0.0",
"semantic-release": "^24.0.0",
"sinon": "^17.0.0",
"semver": "^7.3.7",
"ts-node": "^10.9.1",
"typescript": "^5.4.2",
"webdriverio": "^8.0.2",
"xpath": "^0.x"
}
}