package.json 837 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "tcp-port-used",
  3. "version": "1.0.1",
  4. "description": "A simple Node.js module to check if a TCP port is already bound.",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "./node_modules/.bin/mocha --reporter=list ./test.js"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "git://github.com/stdarg/tcp-port-used.git"
  12. },
  13. "keywords": [
  14. "tcp",
  15. "port",
  16. "available",
  17. "free",
  18. "check",
  19. "networking"
  20. ],
  21. "author": "Edmond Meinfelder",
  22. "license": "MIT",
  23. "bugs": {
  24. "url": "https://github.com/stdargtcp-port-used/issues"
  25. },
  26. "homepage": "https://github.com/stdarg/tcp-port-used",
  27. "dependencies": {
  28. "debug": "4.1.0",
  29. "is2": "2.0.1"
  30. },
  31. "devDependencies": {
  32. "mocha": "^5.2.0"
  33. }
  34. }