package.json 1.4 KB

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