package.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "detect-port",
  3. "version": "1.5.1",
  4. "description": "Node.js implementation of port detector",
  5. "keywords": [
  6. "detect",
  7. "port"
  8. ],
  9. "bin": {
  10. "detect": "./bin/detect-port.js",
  11. "detect-port": "./bin/detect-port.js"
  12. },
  13. "main": "index.js",
  14. "files": [
  15. "bin",
  16. "lib",
  17. "index.js"
  18. ],
  19. "repository": {
  20. "type": "git",
  21. "url": "git://github.com/node-modules/detect-port.git"
  22. },
  23. "dependencies": {
  24. "address": "^1.0.1",
  25. "debug": "4"
  26. },
  27. "devDependencies": {
  28. "command-line-test": "1",
  29. "egg-bin": "^5.2.0",
  30. "egg-ci": "^2.1.0",
  31. "eslint": "^8.23.1",
  32. "eslint-config-egg": "^12.0.0",
  33. "git-contributor": "1",
  34. "mm": "^2.1.0",
  35. "pedding": "^1.1.0",
  36. "power-assert": "^1.6.1"
  37. },
  38. "scripts": {
  39. "test": "egg-bin test",
  40. "ci": "npm run lint && egg-bin cov",
  41. "lint": "eslint .",
  42. "contributor": "git-contributor"
  43. },
  44. "ci": {
  45. "os": "linux",
  46. "version": "14, 16, 18"
  47. },
  48. "homepage": "https://github.com/node-modules/detect-port",
  49. "license": "MIT"
  50. }