You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
1.4 KiB

  1. {
  2. "name": "raw-body",
  3. "description": "Get and validate the raw body of a readable stream.",
  4. "version": "2.3.3",
  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.0.0",
  14. "http-errors": "1.6.3",
  15. "iconv-lite": "0.4.23",
  16. "unpipe": "1.0.0"
  17. },
  18. "devDependencies": {
  19. "bluebird": "3.5.1",
  20. "eslint": "4.19.1",
  21. "eslint-config-standard": "11.0.0",
  22. "eslint-plugin-import": "2.11.0",
  23. "eslint-plugin-markdown": "1.0.0-beta.6",
  24. "eslint-plugin-node": "6.0.1",
  25. "eslint-plugin-promise": "3.7.0",
  26. "eslint-plugin-standard": "3.1.0",
  27. "istanbul": "0.4.5",
  28. "mocha": "2.5.3",
  29. "readable-stream": "2.3.6",
  30. "safe-buffer": "5.1.2"
  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 --plugin markdown --ext js,md .",
  44. "test": "mocha --trace-deprecation --reporter spec --bail --check-leaks test/",
  45. "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --trace-deprecation --reporter dot --check-leaks test/",
  46. "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --trace-deprecation --reporter spec --check-leaks test/"
  47. }
  48. }