UNPKG

appium-chromium-driver

Version:

Appium 2.x driver for Chromium-based browsers that work with Chromedriver

114 lines (113 loc) 2.9 kB
{ "name": "appium-chromium-driver", "version": "1.5.1", "description": "Appium 2.x 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": "index.js", "files": [ "lib", "build", "index.js", "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", "prepare": "npm run build", "test": "npm run test:unit", "test:unit": "mocha \"./test/unit/**/*.spec.js\"", "test:e2e": "mocha \"./test/e2e/**/*.spec.js\"", "test:smoke": "node ./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-chromedriver": "^7.0.6", "bluebird": "^3.7.2", "lodash": "^4.17.21" }, "peerDependencies": { "appium": "^2.11.5" }, "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0", "npm": ">=8" }, "publishConfig": { "access": "public" }, "access": "public", "appium": { "driverName": "chromium", "automationName": "Chromium", "platformNames": [ "Windows", "mac", "macOS", "Linux" ], "mainClass": "ChromiumDriver", "scripts": { "install-chromedriver": "./scripts/install-chromedriver.mjs" } }, "typedoc": { "entryPoint": "./build/lib/index.js" }, "types": "./build/lib/driver.d.ts", "devDependencies": { "@appium/eslint-config-appium-ts": "^1.0.0", "@appium/tsconfig": "^0.x", "@appium/types": "^0.x", "@semantic-release/changelog": "^6.0.3", "@semantic-release/git": "^10.0.1", "@types/bluebird": "^3.5.42", "@types/mocha": "^10.0.10", "@types/node": "^22.10.5", "asyncbox": "^3.0.0", "chai": "^5.1.1", "chai-as-promised": "^8.0.0", "conventional-changelog-conventionalcommits": "^8.0.0", "mocha": "^11.0.0", "rimraf": "^5.0.10", "semantic-release": "^24.1.3", "ts-node": "^10.9.2", "typescript": "^5.6.3", "webdriverio": "^9.0.9" } }