-
-
Notifications
You must be signed in to change notification settings - Fork 8.4k
/
Copy pathpackage.json
75 lines (75 loc) · 1.9 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
{
"name": "selenium-webdriver",
"version": "4.28.0-nightly202411252022",
"description": "The official WebDriver JavaScript bindings from the Selenium project",
"license": "Apache-2.0",
"keywords": [
"automation",
"selenium",
"testing",
"webdriver",
"webdriverjs"
],
"homepage": "https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme",
"bugs": {
"url": "https://github.com/SeleniumHQ/selenium/issues"
},
"main": "./index",
"repository": {
"type": "git",
"url": "https://github.com/SeleniumHQ/selenium.git"
},
"engines": {
"node": ">= 22.13.0"
},
"dependencies": {
"@bazel/runfiles": "^6.3.1",
"jszip": "^3.10.1",
"tmp": "^0.2.3",
"ws": "^8.18.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"clean-jsdoc-theme": "^4.3.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-no-only-tests": "^3.3.0",
"eslint-plugin-prettier": "^5.2.1",
"express": "^4.21.2",
"globals": "^15.14.0",
"has-flag": "^5.0.1",
"jsdoc": "^4.0.4",
"mocha": "^11.0.1",
"mocha-junit-reporter": "^2.2.1",
"multer": "1.4.5-lts.1",
"prettier": "^3.4.2",
"serve-index": "^1.9.1",
"sinon": "^19.0.2",
"supports-color": "^10.0.0"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "bazel test //javascript/node/selenium-webdriver/...",
"generate-docs": "jsdoc --configure jsdoc_conf.json --verbose"
},
"mocha": {
"recursive": true,
"timeout": 600000
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/SeleniumHQ"
},
{
"type": "opencollective",
"url": "https://opencollective.com/selenium"
}
]
}