forked from SeleniumHQ/selenium
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.41 KB
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
{
"name": "selenium-webdriver",
"version": "4.3.1",
"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": ">= 10.15.0"
},
"dependencies": {
"jszip": "^3.10.0",
"tmp": "^0.2.1",
"ws": ">=8.7.0"
},
"devDependencies": {
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-no-only-tests": "^2.6.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"express": "^4.17.1",
"jasmine": "^3.8.0",
"mocha": "^10.0.0",
"multer": "^1.4.5-lts.1",
"prettier": "^2.6.1",
"serve-index": "^1.9.1",
"sinon": "^10.0.0"
},
"scripts": {
"lint": "eslint --ignore-pattern node_modules --ignore-pattern generator --fix --ext js lib/http.js \"**/*.js\"",
"test": "npm run lint && mocha -t 600000 --recursive test",
"test-jasmine": "jasmine JASMINE_CONFIG_PATH=jasmine.json"
},
"mocha": {
"recursive": true,
"timeout": 600000
}
}