package.json 970 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "clone-response",
  3. "version": "1.0.3",
  4. "description": "Clone a Node.js HTTP response stream",
  5. "main": "src/index.js",
  6. "scripts": {
  7. "test": "xo && nyc ava",
  8. "coverage": "nyc report --reporter=text-lcov | coveralls"
  9. },
  10. "funding": "https://github.com/sponsors/sindresorhus",
  11. "xo": {
  12. "extends": "xo-lukechilds"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "git+https://github.com/sindresorhus/clone-response.git"
  17. },
  18. "keywords": [
  19. "clone",
  20. "duplicate",
  21. "copy",
  22. "response",
  23. "HTTP",
  24. "stream"
  25. ],
  26. "author": "Luke Childs <lukechilds123@gmail.com> (http://lukechilds.co.uk)",
  27. "license": "MIT",
  28. "dependencies": {
  29. "mimic-response": "^1.0.0"
  30. },
  31. "devDependencies": {
  32. "ava": "^0.22.0",
  33. "coveralls": "^2.13.1",
  34. "create-test-server": "^2.0.1",
  35. "eslint-config-xo-lukechilds": "^1.0.0",
  36. "get-stream": "^3.0.0",
  37. "nyc": "^11.0.2",
  38. "pify": "^3.0.0",
  39. "xo": "^0.19.0"
  40. }
  41. }