mirror of
https://github.com/appium/appium.git
synced 2026-01-29 13:49:01 -06:00
Bumps [appium-geckodriver](https://github.com/appium/appium-geckodriver) from 0.2.0 to 0.3.0. - [Release notes](https://github.com/appium/appium-geckodriver/releases) - [Commits](https://github.com/appium/appium-geckodriver/compare/v0.2.0...v0.3.0) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
122 lines
3.5 KiB
JSON
122 lines
3.5 KiB
JSON
{
|
|
"name": "appium",
|
|
"description": "Automation for Apps.",
|
|
"tags": [
|
|
"automation",
|
|
"javascript",
|
|
"selenium",
|
|
"webdriver",
|
|
"ios",
|
|
"android",
|
|
"firefoxos",
|
|
"testing"
|
|
],
|
|
"version": "1.19.0-beta.0",
|
|
"author": "https://github.com/appium",
|
|
"license": "Apache-2.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/appium/appium.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/appium/appium/issues"
|
|
},
|
|
"engines": {
|
|
"node": ">=8",
|
|
"npm": ">=6"
|
|
},
|
|
"main": "./build/lib/main.js",
|
|
"bin": {
|
|
"appium": "./build/lib/main.js",
|
|
"authorize-ios": "./node_modules/.bin/authorize-ios"
|
|
},
|
|
"directories": {
|
|
"lib": "./lib",
|
|
"doc": "./docs"
|
|
},
|
|
"files": [
|
|
"bin",
|
|
"lib",
|
|
"build/lib",
|
|
"npm-shrinkwrap.json"
|
|
],
|
|
"dependencies": {
|
|
"@babel/runtime": "^7.6.0",
|
|
"appium-android-driver": "^4.20.0",
|
|
"appium-base-driver": "^7.0.0",
|
|
"appium-espresso-driver": "^1.0.0",
|
|
"appium-fake-driver": "^1.x",
|
|
"appium-flutter-driver": "^0",
|
|
"appium-geckodriver": "^0.3.0",
|
|
"appium-ios-driver": "4.x",
|
|
"appium-mac-driver": "1.x",
|
|
"appium-safari-driver": "^2.1.0",
|
|
"appium-support": "2.x",
|
|
"appium-tizen-driver": "^1.1.1-beta.4",
|
|
"appium-uiautomator2-driver": "^1.37.1",
|
|
"appium-windows-driver": "1.x",
|
|
"appium-xcuitest-driver": "^3.27.6",
|
|
"appium-youiengine-driver": "^1.2.0",
|
|
"argparse": "^2.0.1",
|
|
"async-lock": "^1.0.0",
|
|
"asyncbox": "2.x",
|
|
"axios": "^0.21.0",
|
|
"bluebird": "3.x",
|
|
"continuation-local-storage": "3.x",
|
|
"dateformat": "^3.0.3",
|
|
"find-root": "^1.1.0",
|
|
"lodash": "^4.17.11",
|
|
"longjohn": "^0.2.12",
|
|
"npmlog": "4.x",
|
|
"semver": "^7.0.0",
|
|
"source-map-support": "0.x",
|
|
"teen_process": "1.x",
|
|
"winston": "3.x",
|
|
"word-wrap": "^1.2.3"
|
|
},
|
|
"scripts": {
|
|
"clean": "rm -rf node_modules && rm -f package-lock.json && npm install",
|
|
"prepare": "gulp prepublish",
|
|
"prepublishOnly": "npm run prune-shrinkwrap && gulp fixShrinkwrap",
|
|
"postpublish": "npm run restore-shrinkwrap",
|
|
"prune-shrinkwrap": "!(test -e npm-shrinkwrap.json) || (npm ci --production --ignore-scripts && npm run backup-shrinkwrap && npm shrinkwrap && npm install --only=dev --no-shrinkwrap)",
|
|
"restore-shrinkwrap": "!(test -e npm-shrinkwrap.json) || (mv npm-shrinkwrap-backup.json npm-shrinkwrap.json)",
|
|
"backup-shrinkwrap": "mv npm-shrinkwrap.json npm-shrinkwrap-backup.json",
|
|
"check-pruned-shrinkwrap": "node check-pruned-shrinkwrap.js",
|
|
"test": "gulp once",
|
|
"e2e-test": "gulp e2e-test",
|
|
"watch": "gulp watch",
|
|
"build": "gulp transpile",
|
|
"mocha": "mocha",
|
|
"precommit-msg": "echo 'Pre-commit checks...' && exit 0",
|
|
"precommit-test": "REPORTER=dot gulp once",
|
|
"lint": "gulp lint",
|
|
"lint:fix": "gulp lint --fix",
|
|
"coverage": "gulp coveralls",
|
|
"generate-docs": "node ./build/commands-yml/parse.js",
|
|
"zip": "zip -qr appium.zip .",
|
|
"upload": "gulp github-upload",
|
|
"zip-and-upload": "npm run zip && npm run upload",
|
|
"authorize-ios": "authorize-ios"
|
|
},
|
|
"pre-commit": [
|
|
"precommit-msg",
|
|
"precommit-test"
|
|
],
|
|
"devDependencies": {
|
|
"appium-gulp-plugins": "^5.2.1",
|
|
"chai": "4.x",
|
|
"chai-as-promised": "7.x",
|
|
"eslint-config-appium": "^4.0.1",
|
|
"fancy-log": "^1.3.2",
|
|
"gulp": "^4.0.0",
|
|
"handlebars": "^4.2.0",
|
|
"mocha": "^8.0.1",
|
|
"pre-commit": "1.x",
|
|
"sinon": "^9.0.0",
|
|
"validate.js": "^0.13.0",
|
|
"wd": "^1.10.0",
|
|
"yaml-js": "^0.2.0"
|
|
}
|
|
}
|