package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "body-parser",
  3. "description": "Node.js body parsing middleware",
  4. "version": "1.19.0",
  5. "contributors": [
  6. "Douglas Christopher Wilson <doug@somethingdoug.com>",
  7. "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)"
  8. ],
  9. "license": "MIT",
  10. "repository": "expressjs/body-parser",
  11. "dependencies": {
  12. "bytes": "3.1.0",
  13. "content-type": "~1.0.4",
  14. "debug": "2.6.9",
  15. "depd": "~1.1.2",
  16. "http-errors": "1.7.2",
  17. "iconv-lite": "0.4.24",
  18. "on-finished": "~2.3.0",
  19. "qs": "6.7.0",
  20. "raw-body": "2.4.0",
  21. "type-is": "~1.6.17"
  22. },
  23. "devDependencies": {
  24. "eslint": "5.16.0",
  25. "eslint-config-standard": "12.0.0",
  26. "eslint-plugin-import": "2.17.2",
  27. "eslint-plugin-markdown": "1.0.0",
  28. "eslint-plugin-node": "8.0.1",
  29. "eslint-plugin-promise": "4.1.1",
  30. "eslint-plugin-standard": "4.0.0",
  31. "istanbul": "0.4.5",
  32. "methods": "1.1.2",
  33. "mocha": "6.1.4",
  34. "safe-buffer": "5.1.2",
  35. "supertest": "4.0.2"
  36. },
  37. "files": [
  38. "lib/",
  39. "LICENSE",
  40. "HISTORY.md",
  41. "index.js"
  42. ],
  43. "engines": {
  44. "node": ">= 0.8"
  45. },
  46. "scripts": {
  47. "lint": "eslint --plugin markdown --ext js,md .",
  48. "test": "mocha --require test/support/env --reporter spec --check-leaks --bail test/",
  49. "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --require test/support/env --reporter dot --check-leaks test/",
  50. "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --require test/support/env --reporter spec --check-leaks test/"
  51. }
  52. }