package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "body-parser",
  3. "description": "Node.js body parsing middleware",
  4. "version": "1.19.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. "dependencies": {
  12. "bytes": "3.1.1",
  13. "content-type": "~1.0.4",
  14. "debug": "2.6.9",
  15. "depd": "~1.1.2",
  16. "http-errors": "1.8.1",
  17. "iconv-lite": "0.4.24",
  18. "on-finished": "~2.3.0",
  19. "qs": "6.9.6",
  20. "raw-body": "2.4.2",
  21. "type-is": "~1.6.18"
  22. },
  23. "devDependencies": {
  24. "eslint": "7.32.0",
  25. "eslint-config-standard": "14.1.1",
  26. "eslint-plugin-import": "2.25.3",
  27. "eslint-plugin-markdown": "2.2.1",
  28. "eslint-plugin-node": "11.1.0",
  29. "eslint-plugin-promise": "5.2.0",
  30. "eslint-plugin-standard": "4.1.0",
  31. "methods": "1.1.2",
  32. "mocha": "9.1.3",
  33. "nyc": "15.1.0",
  34. "safe-buffer": "5.2.1",
  35. "supertest": "6.1.6"
  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 .",
  48. "test": "mocha --require test/support/env --reporter spec --check-leaks --bail test/",
  49. "test-ci": "nyc --reporter=lcov --reporter=text npm test",
  50. "test-cov": "nyc --reporter=html --reporter=text npm test"
  51. }
  52. }