package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "body-parser",
  3. "description": "Node.js body parsing middleware",
  4. "version": "2.2.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.2",
  13. "content-type": "^1.0.5",
  14. "debug": "^4.4.0",
  15. "http-errors": "^2.0.0",
  16. "iconv-lite": "^0.6.3",
  17. "on-finished": "^2.4.1",
  18. "qs": "^6.14.0",
  19. "raw-body": "^3.0.0",
  20. "type-is": "^2.0.0"
  21. },
  22. "devDependencies": {
  23. "eslint": "8.34.0",
  24. "eslint-config-standard": "14.1.1",
  25. "eslint-plugin-import": "2.27.5",
  26. "eslint-plugin-markdown": "3.0.0",
  27. "eslint-plugin-node": "11.1.0",
  28. "eslint-plugin-promise": "6.1.1",
  29. "eslint-plugin-standard": "4.1.0",
  30. "mocha": "^11.1.0",
  31. "nyc": "^17.1.0",
  32. "supertest": "^7.0.0"
  33. },
  34. "files": [
  35. "lib/",
  36. "LICENSE",
  37. "HISTORY.md",
  38. "index.js"
  39. ],
  40. "engines": {
  41. "node": ">=18"
  42. },
  43. "scripts": {
  44. "lint": "eslint .",
  45. "test": "mocha --reporter spec --check-leaks test/",
  46. "test-ci": "nyc --reporter=lcovonly --reporter=text npm test",
  47. "test-cov": "nyc --reporter=html --reporter=text npm test"
  48. }
  49. }