UNPKG

appium-chromium-driver

Version:

Appium driver for Chromium-based browsers that work with Chromedriver

118 lines (117 loc) 3.14 kB
{ "name": "appium-chromium-driver", "version": "2.2.5", "description": "Appium driver for Chromium-based browsers that work with Chromedriver", "keywords": [ "appium", "automation", "javascript", "selenium", "webdriver", "chrome", "chromium", "google" ], "homepage": "https://appium.io", "bugs": { "url": "https://github.com/appium/appium-chromium-driver/issues" }, "repository": { "type": "git", "url": "https://github.com/appium/appium-chromium-driver.git" }, "license": "Apache-2.0", "author": "https://github.com/appium", "directories": { "lib": "lib" }, "main": "build/lib/index.js", "files": [ "lib", "build/lib", "README.md", "CHANGELOG.md", "LICENSE", "npm-shrinkwrap.json", "scripts" ], "scripts": { "build": "tsc -b", "dev": "npm run build -- --watch", "clean": "npx rimraf build && npx rimraf node_modules/.cache", "reinstall": "npm run clean && npx rimraf node_modules && npm install", "update": "npx rimraf package-lock.json && npm run reinstall", "lint": "eslint .", "lint:fix": "npm run lint -- --fix", "format": "prettier -w ./lib ./test", "format:check": "prettier --check ./lib ./test", "prepare": "npm run build", "test": "npm run test:unit", "test:unit": "mocha \"./test/unit/**/*.spec.ts\"", "test:e2e": "mocha \"./test/e2e/**/*.spec.ts\"", "test:smoke": "node ./build/lib/index.js", "test:ci": "npm run test:unit && npm run test:e2e && npm run test:smoke" }, "prettier": { "bracketSpacing": false, "printWidth": 100, "singleQuote": true }, "dependencies": { "@appium/strongbox": "^1.0.0", "appium-chromedriver": "^8.0.0", "teen_process": "^4.1.0" }, "peerDependencies": { "appium": "^3.0.0-rc.2" }, "engines": { "node": "^20.19.0 || ^22.12.0 || >=24.0.0", "npm": ">=10" }, "publishConfig": { "access": "public" }, "access": "public", "appium": { "driverName": "chromium", "automationName": "chromium", "platformNames": [ "windows", "mac", "linux" ], "mainClass": "ChromiumDriver", "scripts": { "install-chromedriver": "./scripts/install-chromedriver.mjs" } }, "typedoc": { "entryPoint": "./build/lib/index.js" }, "types": "./build/lib/index.d.ts", "devDependencies": { "@appium/eslint-config-appium-ts": "^3.0.0", "@appium/support": "^7.1.0", "@appium/tsconfig": "^1.0.0-rc.1", "@appium/types": "^1.0.0-rc.1", "@semantic-release/changelog": "^6.0.3", "@semantic-release/git": "^10.0.1", "@types/chai": "^5.2.3", "@types/chai-as-promised": "^8.0.2", "@types/mocha": "^10.0.10", "@types/node": "^25.0.1", "@types/sinon": "^21.0.1", "asyncbox": "^6.1.0", "chai": "^6.0.0", "chai-as-promised": "^8.0.0", "conventional-changelog-conventionalcommits": "^9.0.0", "mocha": "^11.0.0", "prettier": "^3.0.3", "semantic-release": "^25.0.2", "sinon": "^22.0.0", "ts-node": "^10.9.2", "typescript": "^6.0.2", "webdriverio": "^9.0.9" } }