package.json 947 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "selenium-webdriver",
  3. "version": "3.6.0",
  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",
  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": ">= 6.9.0"
  24. },
  25. "dependencies": {
  26. "jszip": "^3.1.3",
  27. "rimraf": "^2.5.4",
  28. "tmp": "0.0.30",
  29. "xml2js": "^0.4.17"
  30. },
  31. "devDependencies": {
  32. "express": "^4.14.0",
  33. "mocha": "^3.1.2",
  34. "multer": "^1.2.0",
  35. "promises-aplus-tests": "^2.1.2",
  36. "serve-index": "^1.8.0",
  37. "sinon": "^1.17.6"
  38. },
  39. "scripts": {
  40. "test": "mocha -t 600000 --recursive test"
  41. }
  42. }