Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
seleniumhq
GitHub Repository: seleniumhq/selenium
Path: blob/trunk/javascript/selenium-webdriver/package.json
3220 views
1
{
2
"name": "selenium-webdriver",
3
"version": "4.36.0-nightly202508121825",
4
"description": "The official WebDriver JavaScript bindings from the Selenium project",
5
"license": "Apache-2.0",
6
"keywords": [
7
"automation",
8
"selenium",
9
"testing",
10
"webdriver",
11
"webdriverjs"
12
],
13
"homepage": "https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/selenium-webdriver#readme",
14
"bugs": {
15
"url": "https://github.com/SeleniumHQ/selenium/issues"
16
},
17
"main": "./index",
18
"repository": {
19
"type": "git",
20
"url": "https://github.com/SeleniumHQ/selenium.git"
21
},
22
"engines": {
23
"node": ">= 20.0.0"
24
},
25
"dependencies": {
26
"@bazel/runfiles": "^6.3.1",
27
"jszip": "^3.10.1",
28
"tmp": "^0.2.5",
29
"ws": "^8.18.3"
30
},
31
"devDependencies": {
32
"@eslint/js": "^9.18.0",
33
"clean-jsdoc-theme": "^4.3.0",
34
"eslint": "^9.18.0",
35
"eslint-config-prettier": "^10.0.1",
36
"eslint-plugin-mocha": "^10.5.0",
37
"eslint-plugin-n": "^17.15.1",
38
"eslint-plugin-no-only-tests": "^3.3.0",
39
"eslint-plugin-prettier": "^5.2.1",
40
"express": "^4.21.2",
41
"globals": "^15.14.0",
42
"has-flag": "^5.0.1",
43
"jsdoc": "^4.0.4",
44
"mocha": "^11.0.1",
45
"mocha-junit-reporter": "^2.2.1",
46
"multer": "1.4.5-lts.2",
47
"prettier": "^3.4.2",
48
"serve-index": "^1.9.1",
49
"sinon": "^19.0.5",
50
"supports-color": "^10.0.0"
51
},
52
"scripts": {
53
"lint": "eslint .",
54
"lint:fix": "eslint . --fix",
55
"test": "bazel test //javascript/selenium-webdriver/...",
56
"generate-docs": "jsdoc --configure jsdoc_conf.json --verbose"
57
},
58
"mocha": {
59
"recursive": true,
60
"timeout": 600000
61
},
62
"publishConfig": {
63
"registry": "https://registry.npmjs.org/"
64
},
65
"funding": [
66
{
67
"type": "github",
68
"url": "https://github.com/sponsors/SeleniumHQ"
69
},
70
{
71
"type": "opencollective",
72
"url": "https://opencollective.com/selenium"
73
}
74
]
75
}
76
77