package.json 768 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "mimic-response",
  3. "version": "3.1.0",
  4. "description": "Mimic a Node.js HTTP response stream",
  5. "license": "MIT",
  6. "repository": "sindresorhus/mimic-response",
  7. "funding": "https://github.com/sponsors/sindresorhus",
  8. "author": {
  9. "name": "Sindre Sorhus",
  10. "email": "sindresorhus@gmail.com",
  11. "url": "https://sindresorhus.com"
  12. },
  13. "engines": {
  14. "node": ">=10"
  15. },
  16. "scripts": {
  17. "test": "xo && ava && tsd"
  18. },
  19. "files": [
  20. "index.d.ts",
  21. "index.js"
  22. ],
  23. "keywords": [
  24. "mimic",
  25. "response",
  26. "stream",
  27. "http",
  28. "https",
  29. "request",
  30. "get",
  31. "core"
  32. ],
  33. "devDependencies": {
  34. "@types/node": "^14.0.1",
  35. "ava": "^2.4.0",
  36. "create-test-server": "^2.4.0",
  37. "p-event": "^4.1.0",
  38. "pify": "^5.0.0",
  39. "tsd": "^0.11.0",
  40. "xo": "^0.30.0"
  41. }
  42. }