selenium-standalone
Version:
installs a `selenium-standalone` command line to install and start a standalone selenium server
73 lines (72 loc) • 2.47 kB
JSON
{
"name": "selenium-standalone",
"version": "8.2.3",
"description": "installs a `selenium-standalone` command line to install and start a standalone selenium server",
"main": "index.js",
"engines": {
"node": ">=12.0.0",
"npm": ">=6.0.0"
},
"scripts": {
"start": "DEBUG=selenium-standalone:* ./bin/selenium-standalone install && DEBUG=selenium-standalone:* ./bin/selenium-standalone start",
"test": "./bin/selenium-standalone install && mocha",
"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 ."
},
"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": "^9.0.0",
"cross-spawn": "^7.0.3",
"debug": "^4.3.1",
"fs-extra": "^10.0.0",
"got": "^11.8.2",
"is-port-reachable": "^3.0.0",
"lodash.mapvalues": "^4.6.0",
"lodash.merge": "^4.6.2",
"minimist": "^1.2.5",
"mkdirp": "^1.0.4",
"progress": "2.0.3",
"tar-stream": "2.2.0",
"which": "^2.0.2",
"yauzl": "^2.10.0"
},
"devDependencies": {
"chai": "4.3.6",
"doctoc": "2.2.1",
"eslint": "8.26.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.1",
"json": "11.0.0",
"mocha": "10.1.0",
"mversion": "2.0.1",
"npm-run-all": "^4.1.5",
"prettier": "2.7.1",
"release-it": "^15.0.0"
}
}