UNPKG

selenium-standalone

Version:

installs a `selenium-standalone` command line to install and start a standalone selenium server

89 lines (88 loc) 3.17 kB
{ "name": "selenium-standalone", "version": "10.0.2", "description": "installs a `selenium-standalone` command line to install and start a standalone selenium server", "main": "index.js", "scripts": { "build": "tsc -p .", "start": "DEBUG=selenium-standalone:* ./bin/selenium-standalone install && DEBUG=selenium-standalone:* ./bin/selenium-standalone start", "test": "run-s test:*", "test:v4": "cross-env SELENIUM_VERSION=4.10.0 ./bin/selenium-standalone install && nyc --reporter=text --reporter=html mocha --timeout=60000", "test:v3": "cross-env SELENIUM_VERSION=3.141.59 ./bin/selenium-standalone install && mocha 'test/programmatic.js' --timeout=60000", "docker:build": "run-s docker:build:*", "docker:build:latest": "docker build -t webdriverio/${npm_package_name}:latest --cache-from webdriverio/${npm_package_name}:latest .", "docker:build:tag": "docker build -t webdriverio/${npm_package_name}:${npm_package_version} --cache-from webdriverio/${npm_package_name}:${npm_package_version} .", "docker:push": "docker push webdriverio/${npm_package_name}:latest", "release": "release-it --github.release", "release:ci": "npm run release -- --ci --npm.skipChecks --no-git.requireCleanWorkingDir", "release:patch": "npm run release -- patch", "release:minor": "npm run release -- minor", "release:major": "npm run release -- major", "lint": "eslint --ignore-path .gitignore .", "lint:fix": "eslint --fix --ignore-path .gitignore ." }, "engines": { "node": ">=14" }, "bin": { "selenium-standalone": "./bin/selenium-standalone" }, "repository": { "type": "git", "url": "git@github.com:webdriverio/selenium-standalone.git" }, "bugs": { "url": "https://github.com/webdriverio/selenium-standalone/issues" }, "homepage": "https://github.com/webdriverio/selenium-standalone", "author": "Vincent Voyer <vincent@zeroload.net>", "license": "MIT", "husky": { "hooks": { "pre-commit": "npm run lint" } }, "dependencies": { "commander": "^8.3.0", "cross-spawn": "^7.0.3", "debug": "^4.3.1", "execa": "^5.1.1", "find-process": "1.4.7", "fkill": "^7.2.1", "got": "^11.8.6", "http-proxy-agent": "^7.0.2", "https-proxy-agent": "^7.0.4", "is-port-reachable": "^3.0.0", "lodash.mapvalues": "^4.6.0", "lodash.merge": "^4.6.2", "md5": "^2.3.0", "minimist": "^1.2.5", "mkdirp": "^2.1.3", "progress": "2.0.3", "tar-stream": "3.1.7", "which": "^2.0.2", "yauzl": "^3.1.2" }, "devDependencies": { "@types/chai": "^4.3.12", "@types/debug": "^4.1.12", "@types/lodash.mapvalues": "^4.6.9", "@types/lodash.merge": "^4.6.9", "@types/mocha": "^10.0.6", "@types/which": "^3.0.3", "chai": "^4.4.1", "cross-env": "^7.0.3", "doctoc": "2.2.1", "eslint": "8.57.0", "eslint-config-prettier": "9.1.0", "eslint-plugin-prettier": "4.2.1", "husky": "^7.0.4", "json": "11.0.0", "mocha": "^10.2.0", "npm-run-all": "^4.1.5", "nyc": "^15.1.0", "prettier": "2.8.8", "release-it": "^17.0.1", "typescript": "^5.4.2" } }