io.appium.settings 4.1.2 → 4.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/apks/settings_apk-debug.apk +0 -0
- package/app/build.gradle +2 -2
- package/index.js +0 -2
- package/package.json +14 -6
|
Binary file
|
package/app/build.gradle
CHANGED
package/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "io.appium.settings",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.2.0",
|
|
4
4
|
"description": "App for dealing with Android settings",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
7
|
-
"bump-gradle-version": "
|
|
7
|
+
"bump-gradle-version": "node scripts/gradle-version-update.js --package-version=${npm_package_version} && git add app/build.gradle",
|
|
8
8
|
"lint": "./gradlew lint",
|
|
9
|
+
"js:lint": "eslint .",
|
|
10
|
+
"js:lint:fix": "npm run lint -- --fix",
|
|
9
11
|
"move-apks": "rm -rf apks && mkdir -p apks && cp app/build/outputs/apk/debug/settings_apk-debug.apk apks",
|
|
10
12
|
"build": "./gradlew clean assembleDebug && npm run move-apks",
|
|
11
13
|
"prepare": "npm run build",
|
|
@@ -16,6 +18,10 @@
|
|
|
16
18
|
"type": "git",
|
|
17
19
|
"url": "https://github.com/appium/io.appium.settings.git"
|
|
18
20
|
},
|
|
21
|
+
"engines": {
|
|
22
|
+
"node": ">=14",
|
|
23
|
+
"npm": ">=8"
|
|
24
|
+
},
|
|
19
25
|
"keywords": [
|
|
20
26
|
"appium",
|
|
21
27
|
"android",
|
|
@@ -33,16 +39,18 @@
|
|
|
33
39
|
"!.DS_Store",
|
|
34
40
|
"NOTICE.txt"
|
|
35
41
|
],
|
|
36
|
-
"author": "
|
|
42
|
+
"author": "Appium Contributors",
|
|
37
43
|
"license": "Apache-2.0",
|
|
38
44
|
"bugs": {
|
|
39
45
|
"url": "https://github.com/appium/io.appium.settings/issues"
|
|
40
46
|
},
|
|
41
47
|
"homepage": "https://github.com/appium/io.appium.settings",
|
|
42
48
|
"devDependencies": {
|
|
43
|
-
"@appium/
|
|
49
|
+
"@appium/eslint-config-appium": "^6.0.0",
|
|
50
|
+
"eslint": "^7.32.0",
|
|
51
|
+
"fancy-log": "^2.0.0",
|
|
44
52
|
"@semantic-release/git": "^10.0.1",
|
|
45
|
-
"
|
|
46
|
-
"
|
|
53
|
+
"semantic-release": "^19.0.2",
|
|
54
|
+
"semver": "^7.3.7"
|
|
47
55
|
}
|
|
48
56
|
}
|