package.json 711 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "portfinder",
  3. "description": "A simple tool to find an open port on the current machine",
  4. "version": "1.0.36",
  5. "author": "Charlie Robbins <charlie.robbins@gmail.com>, Erik Trom <erik.trom@gmail.com>",
  6. "repository": {
  7. "type": "git",
  8. "url": "git@github.com:http-party/node-portfinder.git"
  9. },
  10. "keywords": [
  11. "http",
  12. "ports",
  13. "utilities"
  14. ],
  15. "files": [
  16. "lib"
  17. ],
  18. "dependencies": {
  19. "async": "^3.2.6",
  20. "debug": "^4.3.6"
  21. },
  22. "devDependencies": {
  23. "jest": "^29.7.0"
  24. },
  25. "main": "./lib/portfinder",
  26. "types": "./lib/portfinder.d.ts",
  27. "scripts": {
  28. "test": "jest --runInBand"
  29. },
  30. "engines": {
  31. "node": ">= 10.12"
  32. },
  33. "license": "MIT"
  34. }