package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "body-parser",
  3. "description": "Node.js body parsing middleware",
  4. "version": "2.2.1",
  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. "funding": {
  12. "type": "opencollective",
  13. "url": "https://opencollective.com/express"
  14. },
  15. "dependencies": {
  16. "bytes": "^3.1.2",
  17. "content-type": "^1.0.5",
  18. "debug": "^4.4.3",
  19. "http-errors": "^2.0.0",
  20. "iconv-lite": "^0.7.0",
  21. "on-finished": "^2.4.1",
  22. "qs": "^6.14.0",
  23. "raw-body": "^3.0.1",
  24. "type-is": "^2.0.1"
  25. },
  26. "devDependencies": {
  27. "eslint": "^8.57.1",
  28. "eslint-config-standard": "^14.1.1",
  29. "eslint-plugin-import": "^2.31.0",
  30. "eslint-plugin-markdown": "^3.0.1",
  31. "eslint-plugin-node": "^11.1.0",
  32. "eslint-plugin-promise": "^6.6.0",
  33. "eslint-plugin-standard": "^4.1.0",
  34. "mocha": "^11.1.0",
  35. "nyc": "^17.1.0",
  36. "supertest": "^7.0.0"
  37. },
  38. "files": [
  39. "lib/",
  40. "LICENSE",
  41. "index.js"
  42. ],
  43. "engines": {
  44. "node": ">=18"
  45. },
  46. "scripts": {
  47. "lint": "eslint .",
  48. "test": "mocha --reporter spec --check-leaks test/",
  49. "test-ci": "nyc --reporter=lcovonly --reporter=text npm test",
  50. "test-cov": "nyc --reporter=html --reporter=text npm test"
  51. }
  52. }