2013-02-13 19:38:36 -08:00
|
|
|
{
|
2015-01-16 14:00:38 -08:00
|
|
|
"name": "selenium-webdriver",
|
2024-02-19 23:44:47 +00:00
|
|
|
"version": "4.18.1",
|
2015-01-16 14:00:38 -08:00
|
|
|
"description": "The official WebDriver JavaScript bindings from the Selenium project",
|
2015-09-15 09:34:24 -07:00
|
|
|
"license": "Apache-2.0",
|
2015-01-16 14:00:38 -08:00
|
|
|
"keywords": [
|
|
|
|
|
"automation",
|
|
|
|
|
"selenium",
|
|
|
|
|
"testing",
|
|
|
|
|
"webdriver",
|
|
|
|
|
"webdriverjs"
|
|
|
|
|
],
|
2020-12-18 03:48:50 -05:00
|
|
|
"homepage": "https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme",
|
2015-01-16 14:00:38 -08:00
|
|
|
"bugs": {
|
2015-03-12 18:29:47 -07:00
|
|
|
"url": "https://github.com/SeleniumHQ/selenium/issues"
|
2015-01-16 14:00:38 -08:00
|
|
|
},
|
|
|
|
|
"main": "./index",
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
2015-03-12 18:29:47 -07:00
|
|
|
"url": "https://github.com/SeleniumHQ/selenium.git"
|
2015-01-16 14:00:38 -08:00
|
|
|
},
|
|
|
|
|
"engines": {
|
2022-09-01 21:38:03 +05:30
|
|
|
"node": ">= 14.20.0"
|
2015-01-16 14:00:38 -08:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2023-04-05 20:41:50 +05:30
|
|
|
"jszip": "^3.10.1",
|
2021-02-08 20:09:38 +02:00
|
|
|
"tmp": "^0.2.1",
|
2023-10-06 16:15:53 -04:00
|
|
|
"ws": ">=8.14.2"
|
2015-01-16 14:00:38 -08:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2023-10-06 16:15:53 -04:00
|
|
|
"eslint": "^8.50.0",
|
2023-08-10 20:34:22 +05:30
|
|
|
"eslint-config-prettier": "^9.0.0",
|
2022-11-16 07:39:45 +05:30
|
|
|
"eslint-plugin-no-only-tests": "^3.1.0",
|
2020-08-03 17:56:31 +03:00
|
|
|
"eslint-plugin-node": "^11.1.0",
|
2023-07-11 20:42:39 +05:30
|
|
|
"eslint-plugin-prettier": "^5.0.0",
|
2022-11-16 07:39:45 +05:30
|
|
|
"express": "^4.18.2",
|
2023-01-04 23:55:35 +05:30
|
|
|
"mocha": "^10.2.0",
|
2022-06-02 23:41:17 +05:30
|
|
|
"multer": "^1.4.5-lts.1",
|
2023-10-06 16:15:53 -04:00
|
|
|
"prettier": "^3.0.3",
|
2019-02-01 23:38:16 +03:00
|
|
|
"serve-index": "^1.9.1",
|
2023-10-06 16:15:53 -04:00
|
|
|
"sinon": "^16.1.0"
|
2015-01-16 14:00:38 -08:00
|
|
|
},
|
|
|
|
|
"scripts": {
|
2023-04-05 20:52:31 +05:30
|
|
|
"lint": "eslint --ignore-pattern node_modules --ignore-pattern generator --ext js lib/http.js \"**/*.js\"",
|
2024-02-07 16:07:24 +00:00
|
|
|
"lint:fix": "eslint --ignore-pattern node_modules --ignore-pattern generator --ext js lib/http.js \"**/*.js\" --fix",
|
2020-08-03 17:56:31 +03:00
|
|
|
"test": "npm run lint && mocha -t 600000 --recursive test",
|
2022-12-27 11:39:45 +05:30
|
|
|
"test-jasmine": "bazel test //javascript/node/selenium-webdriver:tests"
|
2019-05-05 14:49:34 -07:00
|
|
|
},
|
|
|
|
|
"mocha": {
|
|
|
|
|
"recursive": true,
|
|
|
|
|
"timeout": 600000
|
2015-01-16 14:00:38 -08:00
|
|
|
}
|
2013-03-20 12:51:51 -07:00
|
|
|
}
|