You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
1.5 KiB

  1. {
  2. "name": "body-parser",
  3. "description": "Node.js body parsing middleware",
  4. "version": "1.18.3",
  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.0.0",
  13. "content-type": "~1.0.4",
  14. "debug": "2.6.9",
  15. "depd": "~1.1.2",
  16. "http-errors": "~1.6.3",
  17. "iconv-lite": "0.4.23",
  18. "on-finished": "~2.3.0",
  19. "qs": "6.5.2",
  20. "raw-body": "2.3.3",
  21. "type-is": "~1.6.16"
  22. },
  23. "devDependencies": {
  24. "eslint": "4.19.1",
  25. "eslint-config-standard": "11.0.0",
  26. "eslint-plugin-import": "2.11.0",
  27. "eslint-plugin-markdown": "1.0.0-beta.6",
  28. "eslint-plugin-node": "6.0.1",
  29. "eslint-plugin-promise": "3.7.0",
  30. "eslint-plugin-standard": "3.1.0",
  31. "istanbul": "0.4.5",
  32. "methods": "1.1.2",
  33. "mocha": "2.5.3",
  34. "safe-buffer": "5.1.2",
  35. "supertest": "1.1.0"
  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 --plugin markdown --ext js,md .",
  48. "test": "mocha --require test/support/env --reporter spec --check-leaks --bail test/",
  49. "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --require test/support/env --reporter dot --check-leaks test/",
  50. "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --require test/support/env --reporter spec --check-leaks test/"
  51. }
  52. }