forked from appium/android-apidemos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.32 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
{
"name": "android-apidemos",
"version": "4.1.1",
"description": "A fork of Google's Android ApiDemos application, used for testing Appium",
"license": "Apache-2.0",
"main": "index.js",
"directories": {},
"scripts": {
"bump-gradle-version": "node ./scripts/gradle-version-update.js --package-version=${npm_package_version} && git add app/build.gradle",
"build": "node ./scripts/build.js",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"prepare": "npm run build",
"version": "npm run bump-gradle-version && npm run build",
"clean": "rm -rf node_modules && rm -f package-lock.json && npm install"
},
"repository": {
"type": "git",
"url": "https://github.com/appium/android-apidemos.git"
},
"keywords": [
"appium",
"android",
"apidemos"
],
"author": "Appium Contributors",
"bugs": {
"url": "https://github.com/appium/android-apidemos/issues"
},
"homepage": "https://github.com/appium/android-apidemos",
"engines": {
"node": ">=14",
"npm": ">=8"
},
"files": [
"./index.js",
"./apks"
],
"devDependencies": {
"@appium/eslint-config-appium": "^6.0.0",
"eslint": "^7.32.0",
"fancy-log": "^2.0.0",
"@semantic-release/git": "^10.0.1",
"semantic-release": "^21.0.0",
"semver": "^7.3.7",
"teen_process": "^2.0.2"
}
}