appium-geckodriver
Version:
Appium driver for Gecko-based browsers and web views
113 lines (112 loc) • 2.88 kB
JSON
{
"name": "appium-geckodriver",
"description": "Appium driver for Gecko-based browsers and web views",
"keywords": [
"appium",
"gecko",
"seamonkey",
"firefox"
],
"version": "2.2.5",
"author": "Appium Contributors",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/appium/appium-geckodriver.git"
},
"bugs": {
"url": "https://github.com/appium/appium-geckodriver/issues"
},
"engines": {
"node": "^20.19.0 || ^22.12.0 || >=24.0.0",
"npm": ">=10"
},
"prettier": {
"bracketSpacing": false,
"printWidth": 100,
"singleQuote": true
},
"appium": {
"driverName": "gecko",
"automationName": "Gecko",
"platformNames": [
"Linux",
"Mac",
"Android",
"Windows"
],
"scripts": {
"install-geckodriver": "./scripts/install-geckodriver.mjs"
},
"mainClass": "GeckoDriver"
},
"main": "./build/lib/index.js",
"types": "./build/lib/index.d.ts",
"bin": {},
"directories": {
"lib": "lib"
},
"files": [
"lib",
"build/lib",
"CHANGELOG.md",
"LICENSE",
"npm-shrinkwrap.json",
"scripts/*.mjs"
],
"peerDependencies": {
"appium": "^3.0.0-rc.2"
},
"dependencies": {
"appium-adb": "^15.0.0",
"asyncbox": "^6.0.1",
"axios": "^1.7.7",
"bluebird": "^3.5.1",
"portscanner": "2.2.0",
"semver": "^7.6.3",
"tar-stream": "^3.1.7",
"teen_process": "^4.0.4"
},
"scripts": {
"build": "tsc -b",
"clean": "npm run build -- --clean",
"rebuild": "npm run clean; npm run build",
"dev": "npm run build -- --watch",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"prepare": "npm run build",
"format": "prettier -w ./lib ./test",
"format:check": "prettier --check ./lib ./test",
"test": "mocha --exit --timeout 1m \"./test/unit/**/*-specs.ts\"",
"e2e-test": "mocha --exit --timeout 5m \"./test/functional/**/*-specs.ts\""
},
"devDependencies": {
"@appium/eslint-config-appium-ts": "^3.0.0",
"@appium/tsconfig": "^1.0.0-rc.1",
"@appium/types": "^1.0.0-rc.1",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/bluebird": "^3.5.38",
"@types/chai": "^5.2.3",
"@types/chai-as-promised": "^8.0.2",
"@types/mocha": "^10.0.1",
"@types/node": "^25.0.0",
"@types/portscanner": "^2.1.4",
"@types/tar-stream": "^3.1.4",
"chai": "^6.0.0",
"chai-as-promised": "^8.0.0",
"conventional-changelog-conventionalcommits": "^9.1.0",
"mocha": "^11.7.1",
"prettier": "^3.0.0",
"semantic-release": "^25.0.2",
"ts-node": "^10.9.1",
"typescript": "^6.0.2",
"webdriverio": "^9.0.5"
},
"doctor": {
"checks": [
"./build/lib/doctor/required-checks.js",
"./build/lib/doctor/optional-checks.js"
]
}
}