package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "wait-on",
  3. "description": "wait-on is a cross platform command line utility and Node.js API which will wait for files, ports, sockets, and http(s) resources to become available",
  4. "version": "7.2.0",
  5. "main": "lib/wait-on",
  6. "bin": {
  7. "wait-on": "bin/wait-on"
  8. },
  9. "author": "Jeff Barczewski <info@codewinds.com>",
  10. "repository": {
  11. "type": "git",
  12. "url": "http://github.com/jeffbski/wait-on.git"
  13. },
  14. "bugs": {
  15. "url": "http://github.com/jeffbski/wait-on/issues"
  16. },
  17. "license": "MIT",
  18. "scripts": {
  19. "lint": "eslint \"lib/**/*.js\" \"test/**/*.js\" \"bin/wait-on\"",
  20. "publish:next": "npm publish --tag next && npm view",
  21. "test": "mocha --exit 'test/**/*.mocha.js'"
  22. },
  23. "engines": {
  24. "node": ">=12.0.0"
  25. },
  26. "devDependencies": {
  27. "eslint": "^8.52.0",
  28. "eslint-config-prettier": "^9.0.0",
  29. "eslint-config-standard": "^17.1.0",
  30. "eslint-plugin-chai-friendly": "^0.7.2",
  31. "eslint-plugin-import": "^2.29.0",
  32. "eslint-plugin-n": "^16.2.0",
  33. "eslint-plugin-node": "^11.1.0",
  34. "eslint-plugin-promise": "^6.1.1",
  35. "expect-legacy": "^1.20.2",
  36. "mkdirp": "^1.0.4",
  37. "mocha": "^10.2.0",
  38. "temp": "^0.9.4"
  39. },
  40. "dependencies": {
  41. "axios": "^1.6.1",
  42. "joi": "^17.11.0",
  43. "lodash": "^4.17.21",
  44. "minimist": "^1.2.8",
  45. "rxjs": "^7.8.1"
  46. },
  47. "keywords": [
  48. "wait",
  49. "delay",
  50. "cli",
  51. "files",
  52. "tcp",
  53. "ports",
  54. "sockets",
  55. "http",
  56. "exist",
  57. "ready",
  58. "available",
  59. "portable",
  60. "cross-platform",
  61. "unix",
  62. "linux",
  63. "windows",
  64. "win32",
  65. "osx"
  66. ]
  67. }