forked from appium/io.appium.settings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.28 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
{
"name": "io.appium.settings",
"version": "3.0.1",
"description": "App for dealing with Android settings",
"main": "index.js",
"scripts": {
"bump-gradle-version": "gulp gradle-version-update --package-version=${npm_package_version} && git add app/build.gradle",
"lint": "./gradlew lint",
"move-apks": "rm -rf apks && mkdir -p apks && cp app/build/outputs/apk/debug/settings_apk-debug.apk apks",
"build": "./gradlew clean assembleDebug && npm run move-apks",
"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/io.appium.settings.git"
},
"keywords": [
"appium",
"android",
"settings"
],
"files": [
"index.js",
"gradle*",
"build.gradle",
"settings.gradle",
"apks/",
"app/build.gradle",
"app/src/",
"gradle/",
"!.DS_Store"
],
"author": "https://github.com/appium",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/appium/io.appium.settings/issues"
},
"homepage": "https://github.com/appium/io.appium.settings",
"devDependencies": {
"appium-gulp-plugins": "^5.0.0",
"gulp": "^4.0.0"
}
}