-
-
Notifications
You must be signed in to change notification settings - Fork 222
/
package.json
88 lines (88 loc) · 3.1 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "selenium-standalone",
"version": "10.0.0",
"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"
}
}