package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "raw-body",
  3. "description": "Get and validate the raw body of a readable stream.",
  4. "version": "2.4.2",
  5. "author": "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)",
  6. "contributors": [
  7. "Douglas Christopher Wilson <doug@somethingdoug.com>",
  8. "Raynos <raynos2@gmail.com>"
  9. ],
  10. "license": "MIT",
  11. "repository": "stream-utils/raw-body",
  12. "dependencies": {
  13. "bytes": "3.1.1",
  14. "http-errors": "1.8.1",
  15. "iconv-lite": "0.4.24",
  16. "unpipe": "1.0.0"
  17. },
  18. "devDependencies": {
  19. "bluebird": "3.7.2",
  20. "eslint": "7.32.0",
  21. "eslint-config-standard": "14.1.1",
  22. "eslint-plugin-import": "2.25.3",
  23. "eslint-plugin-markdown": "2.2.1",
  24. "eslint-plugin-node": "11.1.0",
  25. "eslint-plugin-promise": "5.1.1",
  26. "eslint-plugin-standard": "4.1.0",
  27. "mocha": "9.1.3",
  28. "nyc": "15.1.0",
  29. "readable-stream": "2.3.7",
  30. "safe-buffer": "5.2.1"
  31. },
  32. "engines": {
  33. "node": ">= 0.8"
  34. },
  35. "files": [
  36. "HISTORY.md",
  37. "LICENSE",
  38. "README.md",
  39. "index.d.ts",
  40. "index.js"
  41. ],
  42. "scripts": {
  43. "lint": "eslint .",
  44. "test": "mocha --trace-deprecation --reporter spec --bail --check-leaks test/",
  45. "test-ci": "nyc --reporter=lcov --reporter=text npm test",
  46. "test-cov": "nyc --reporter=html --reporter=text npm test"
  47. }
  48. }