package.json 618 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "timed-out",
  3. "version": "4.0.1",
  4. "description": "Emit `ETIMEDOUT` or `ESOCKETTIMEDOUT` when ClientRequest is hanged",
  5. "license": "MIT",
  6. "repository": "floatdrop/timed-out",
  7. "author": {
  8. "name": "Vsevolod Strukchinsky",
  9. "email": "floatdrop@gmail.com"
  10. },
  11. "engines": {
  12. "node": ">=0.10.0"
  13. },
  14. "scripts": {
  15. "test": "xo && mocha"
  16. },
  17. "files": [
  18. "index.js"
  19. ],
  20. "keywords": [
  21. "http",
  22. "https",
  23. "get",
  24. "got",
  25. "url",
  26. "uri",
  27. "request",
  28. "util",
  29. "utility",
  30. "simple"
  31. ],
  32. "devDependencies": {
  33. "mocha": "*",
  34. "xo": "^0.16.0"
  35. }
  36. }