package.json 1020 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "cacheable-lookup",
  3. "version": "5.0.4",
  4. "description": "A cacheable dns.lookup(…) that respects the TTL",
  5. "engines": {
  6. "node": ">=10.6.0"
  7. },
  8. "files": [
  9. "source",
  10. "index.d.ts"
  11. ],
  12. "main": "source/index.js",
  13. "types": "index.d.ts",
  14. "scripts": {
  15. "test": "xo && nyc --reporter=lcovonly --reporter=text ava && tsd"
  16. },
  17. "repository": {
  18. "type": "git",
  19. "url": "git+https://github.com/szmarczak/cacheable-lookup.git"
  20. },
  21. "keywords": [
  22. "dns",
  23. "lookup",
  24. "cacheable",
  25. "ttl"
  26. ],
  27. "author": "Szymon Marczak",
  28. "license": "MIT",
  29. "bugs": {
  30. "url": "https://github.com/szmarczak/cacheable-lookup/issues"
  31. },
  32. "homepage": "https://github.com/szmarczak/cacheable-lookup#readme",
  33. "devDependencies": {
  34. "@types/keyv": "^3.1.1",
  35. "ava": "^3.8.2",
  36. "benchmark": "^2.1.4",
  37. "coveralls": "^3.0.9",
  38. "keyv": "^4.0.0",
  39. "nyc": "^15.0.0",
  40. "proxyquire": "^2.1.3",
  41. "tsd": "^0.11.0",
  42. "quick-lru": "^5.1.0",
  43. "xo": "^0.25.3"
  44. }
  45. }