package.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "clone-response",
  3. "version": "1.0.2",
  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. "xo": {
  11. "extends": "xo-lukechilds"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "git+https://github.com/lukechilds/clone-response.git"
  16. },
  17. "keywords": [
  18. "clone",
  19. "duplicate",
  20. "copy",
  21. "response",
  22. "HTTP",
  23. "stream"
  24. ],
  25. "author": "Luke Childs <lukechilds123@gmail.com> (http://lukechilds.co.uk)",
  26. "license": "MIT",
  27. "bugs": {
  28. "url": "https://github.com/lukechilds/clone-response/issues"
  29. },
  30. "homepage": "https://github.com/lukechilds/clone-response",
  31. "dependencies": {
  32. "mimic-response": "^1.0.0"
  33. },
  34. "devDependencies": {
  35. "ava": "^0.22.0",
  36. "coveralls": "^2.13.1",
  37. "create-test-server": "^2.0.1",
  38. "eslint-config-xo-lukechilds": "^1.0.0",
  39. "get-stream": "^3.0.0",
  40. "nyc": "^11.0.2",
  41. "pify": "^3.0.0",
  42. "xo": "^0.19.0"
  43. }
  44. }