package.json 883 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "responselike",
  3. "version": "2.0.1",
  4. "description": "A response-like object for mocking a Node.js HTTP response stream",
  5. "funding": "https://github.com/sponsors/sindresorhus",
  6. "main": "src/index.js",
  7. "scripts": {
  8. "test": "xo && nyc ava",
  9. "coverage": "nyc report --reporter=text-lcov | coveralls"
  10. },
  11. "xo": {
  12. "extends": "xo-lukechilds"
  13. },
  14. "keywords": [
  15. "http",
  16. "https",
  17. "response",
  18. "mock",
  19. "request",
  20. "responselike"
  21. ],
  22. "repository": {
  23. "type": "git",
  24. "url": "https://github.com/sindresorhus/responselike.git"
  25. },
  26. "author": "lukechilds",
  27. "license": "MIT",
  28. "devDependencies": {
  29. "ava": "^0.25.0",
  30. "coveralls": "^3.0.0",
  31. "eslint-config-xo-lukechilds": "^1.0.0",
  32. "get-stream": "^3.0.0",
  33. "nyc": "^11.8.0",
  34. "xo": "^0.19.0"
  35. },
  36. "dependencies": {
  37. "lowercase-keys": "^2.0.0"
  38. }
  39. }