package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "body-parser",
  3. "description": "Node.js body parsing middleware",
  4. "version": "1.20.4",
  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.2",
  13. "content-type": "~1.0.5",
  14. "debug": "2.6.9",
  15. "depd": "2.0.0",
  16. "destroy": "~1.2.0",
  17. "http-errors": "~2.0.1",
  18. "iconv-lite": "~0.4.24",
  19. "on-finished": "~2.4.1",
  20. "qs": "~6.14.0",
  21. "raw-body": "~2.5.3",
  22. "type-is": "~1.6.18",
  23. "unpipe": "~1.0.0"
  24. },
  25. "devDependencies": {
  26. "eslint": "8.34.0",
  27. "eslint-config-standard": "14.1.1",
  28. "eslint-plugin-import": "2.27.5",
  29. "eslint-plugin-markdown": "3.0.0",
  30. "eslint-plugin-node": "11.1.0",
  31. "eslint-plugin-promise": "6.1.1",
  32. "eslint-plugin-standard": "4.1.0",
  33. "methods": "1.1.2",
  34. "mocha": "10.2.0",
  35. "nyc": "15.1.0",
  36. "safe-buffer": "5.2.1",
  37. "supertest": "6.3.3"
  38. },
  39. "files": [
  40. "lib/",
  41. "LICENSE",
  42. "HISTORY.md",
  43. "index.js"
  44. ],
  45. "engines": {
  46. "node": ">= 0.8",
  47. "npm": "1.2.8000 || >= 1.4.16"
  48. },
  49. "scripts": {
  50. "lint": "eslint .",
  51. "test": "mocha --require test/support/env --reporter spec --check-leaks --bail test/",
  52. "test-ci": "nyc --reporter=lcov --reporter=text npm test",
  53. "test-cov": "nyc --reporter=html --reporter=text npm test"
  54. }
  55. }