package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "raw-body",
  3. "description": "Get and validate the raw body of a readable stream.",
  4. "version": "3.0.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.2",
  14. "http-errors": "~2.0.1",
  15. "iconv-lite": "~0.7.0",
  16. "unpipe": "~1.0.0"
  17. },
  18. "devDependencies": {
  19. "@stylistic/eslint-plugin": "^5.1.0",
  20. "@stylistic/eslint-plugin-js": "^4.1.0",
  21. "bluebird": "3.7.2",
  22. "eslint": "^9.0.0",
  23. "mocha": "10.7.0",
  24. "neostandard": "^0.12.0",
  25. "nyc": "17.0.0",
  26. "readable-stream": "2.3.7",
  27. "safe-buffer": "5.2.1"
  28. },
  29. "engines": {
  30. "node": ">= 0.10"
  31. },
  32. "files": [
  33. "LICENSE",
  34. "README.md",
  35. "index.d.ts",
  36. "index.js"
  37. ],
  38. "scripts": {
  39. "lint": "eslint",
  40. "lint:fix": "eslint --fix",
  41. "test": "mocha --trace-deprecation --reporter spec --check-leaks test/",
  42. "test:ci": "nyc --reporter=lcovonly --reporter=text npm test",
  43. "test:cov": "nyc --reporter=html --reporter=text npm test",
  44. "version": "node scripts/version-history.js && git add HISTORY.md"
  45. }
  46. }