package.json 805 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "raw-body",
  3. "description": "Get and validate the raw body of a readable stream.",
  4. "version": "1.1.7",
  5. "author": "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)",
  6. "license": "MIT",
  7. "repository": "stream-utils/raw-body",
  8. "dependencies": {
  9. "bytes": "1",
  10. "string_decoder": "0.10"
  11. },
  12. "devDependencies": {
  13. "istanbul": "0.2.10",
  14. "mocha": "~1.20.1",
  15. "readable-stream": "~1.0.17",
  16. "request": ">= 2.36.0 < 3",
  17. "through2": "~0.4.1"
  18. },
  19. "engines": {
  20. "node": ">= 0.8.0"
  21. },
  22. "scripts": {
  23. "test": "mocha --reporter spec --bail test/",
  24. "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot test/",
  25. "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec test/"
  26. }
  27. }