package.json 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. {
  2. "name": "express",
  3. "description": "Fast, unopinionated, minimalist web framework",
  4. "version": "4.21.1",
  5. "author": "TJ Holowaychuk <tj@vision-media.ca>",
  6. "contributors": [
  7. "Aaron Heckmann <aaron.heckmann+github@gmail.com>",
  8. "Ciaran Jessup <ciaranj@gmail.com>",
  9. "Douglas Christopher Wilson <doug@somethingdoug.com>",
  10. "Guillermo Rauch <rauchg@gmail.com>",
  11. "Jonathan Ong <me@jongleberry.com>",
  12. "Roman Shtylman <shtylman+expressjs@gmail.com>",
  13. "Young Jae Sim <hanul@hanul.me>"
  14. ],
  15. "license": "MIT",
  16. "repository": "expressjs/express",
  17. "homepage": "http://expressjs.com/",
  18. "keywords": [
  19. "express",
  20. "framework",
  21. "sinatra",
  22. "web",
  23. "http",
  24. "rest",
  25. "restful",
  26. "router",
  27. "app",
  28. "api"
  29. ],
  30. "dependencies": {
  31. "accepts": "~1.3.8",
  32. "array-flatten": "1.1.1",
  33. "body-parser": "1.20.3",
  34. "content-disposition": "0.5.4",
  35. "content-type": "~1.0.4",
  36. "cookie": "0.7.1",
  37. "cookie-signature": "1.0.6",
  38. "debug": "2.6.9",
  39. "depd": "2.0.0",
  40. "encodeurl": "~2.0.0",
  41. "escape-html": "~1.0.3",
  42. "etag": "~1.8.1",
  43. "finalhandler": "1.3.1",
  44. "fresh": "0.5.2",
  45. "http-errors": "2.0.0",
  46. "merge-descriptors": "1.0.3",
  47. "methods": "~1.1.2",
  48. "on-finished": "2.4.1",
  49. "parseurl": "~1.3.3",
  50. "path-to-regexp": "0.1.10",
  51. "proxy-addr": "~2.0.7",
  52. "qs": "6.13.0",
  53. "range-parser": "~1.2.1",
  54. "safe-buffer": "5.2.1",
  55. "send": "0.19.0",
  56. "serve-static": "1.16.2",
  57. "setprototypeof": "1.2.0",
  58. "statuses": "2.0.1",
  59. "type-is": "~1.6.18",
  60. "utils-merge": "1.0.1",
  61. "vary": "~1.1.2"
  62. },
  63. "devDependencies": {
  64. "after": "0.8.2",
  65. "connect-redis": "3.4.2",
  66. "cookie-parser": "1.4.6",
  67. "cookie-session": "2.0.0",
  68. "ejs": "3.1.9",
  69. "eslint": "8.47.0",
  70. "express-session": "1.17.2",
  71. "hbs": "4.2.0",
  72. "marked": "0.7.0",
  73. "method-override": "3.0.0",
  74. "mocha": "10.2.0",
  75. "morgan": "1.10.0",
  76. "nyc": "15.1.0",
  77. "pbkdf2-password": "1.2.1",
  78. "supertest": "6.3.0",
  79. "vhost": "~3.0.2"
  80. },
  81. "engines": {
  82. "node": ">= 0.10.0"
  83. },
  84. "files": [
  85. "LICENSE",
  86. "History.md",
  87. "Readme.md",
  88. "index.js",
  89. "lib/"
  90. ],
  91. "scripts": {
  92. "lint": "eslint .",
  93. "test": "mocha --require test/support/env --reporter spec --bail --check-leaks test/ test/acceptance/",
  94. "test-ci": "nyc --exclude examples --exclude test --exclude benchmarks --reporter=lcovonly --reporter=text npm test",
  95. "test-cov": "nyc --exclude examples --exclude test --exclude benchmarks --reporter=html --reporter=text npm test",
  96. "test-tap": "mocha --require test/support/env --reporter tap --check-leaks test/ test/acceptance/"
  97. }
  98. }