UNPKG

geckodriver

Version:
85 lines (84 loc) 2.3 kB
{ "name": "geckodriver", "version": "4.2.1", "description": "Mozilla's Geckodriver for Node.js", "homepage": "https://github.com/webdriverio-community/node-geckodriver#readme", "author": { "name": "vladikoff", "email": "vlad.filippov@gmail.com", "url": "http://vf.io" }, "license": "MPL-2.0", "keywords": [ "geckodriver", "webdriver" ], "repository": { "type": "git", "url": "git+https://github.com/webdriverio-community/node-geckodriver.git" }, "scripts": { "build": "tsc -b .", "clean": "rimraf ./node_modules package-lock.yaml ./dist", "prepare": "husky install", "postinstall": "test -f ./dist/install.js && node ./dist/install.js || echo \"Skipping install, project not build!\"", "test": "run-s test:*", "test:lint": "eslint", "test:unit": "vitest --run", "test:e2e": "node ./tests/test.e2e.js", "watch": "npm run build -- --watch" }, "engines": { "node": "^16.13 || >=18 || >=20" }, "type": "module", "types": "./dist/index.d.ts", "main": "./dist/cjs/index.js", "exports": { ".": [ { "types": "./dist/index.d.ts", "import": "./dist/index.js", "require": "./dist/cjs/index.js" }, "./dist/cjs/index.js" ] }, "bin": { "geckodriver": "./bin/geckodriver.js" }, "bugs": { "url": "https://github.com/webdriverio-community/node-geckodriver/issues" }, "devDependencies": { "@types/node": "^20.4.2", "@types/tar-fs": "^2.0.1", "@types/unzipper": "^0.10.6", "@typescript-eslint/eslint-plugin": "^6.0.0", "@typescript-eslint/parser": "^6.0.0", "@vitest/coverage-c8": "^0.33.0", "eslint": "^8.45.0", "eslint-plugin-import": "^2.27.5", "eslint-plugin-unicorn": "^48.0.0", "geckodriver": ".", "husky": "^8.0.3", "npm-run-all": "^4.1.5", "octokit": "^3.0.0", "release-it": "^16.1.0", "ts-node": "^10.9.1", "typescript": "^5.1.6", "vitest": "^0.34.1", "wait-port": "^1.0.4", "webdriverio": "^8.13.1" }, "dependencies": { "@wdio/logger": "^8.11.0", "decamelize": "^6.0.0", "http-proxy-agent": "^7.0.0", "https-proxy-agent": "^7.0.1", "node-fetch": "^3.3.1", "tar-fs": "^3.0.4", "unzipper": "^0.10.14", "which": "^4.0.0" } }