package.json 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. {
  2. "name": "express",
  3. "description": "Fast, unopinionated, minimalist web framework",
  4. "version": "4.15.2",
  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. "rest",
  24. "restful",
  25. "router",
  26. "app",
  27. "api"
  28. ],
  29. "dependencies": {
  30. "accepts": "~1.3.3",
  31. "array-flatten": "1.1.1",
  32. "content-disposition": "0.5.2",
  33. "content-type": "~1.0.2",
  34. "cookie": "0.3.1",
  35. "cookie-signature": "1.0.6",
  36. "debug": "2.6.1",
  37. "depd": "~1.1.0",
  38. "encodeurl": "~1.0.1",
  39. "escape-html": "~1.0.3",
  40. "etag": "~1.8.0",
  41. "finalhandler": "~1.0.0",
  42. "fresh": "0.5.0",
  43. "merge-descriptors": "1.0.1",
  44. "methods": "~1.1.2",
  45. "on-finished": "~2.3.0",
  46. "parseurl": "~1.3.1",
  47. "path-to-regexp": "0.1.7",
  48. "proxy-addr": "~1.1.3",
  49. "qs": "6.4.0",
  50. "range-parser": "~1.2.0",
  51. "send": "0.15.1",
  52. "serve-static": "1.12.1",
  53. "setprototypeof": "1.0.3",
  54. "statuses": "~1.3.1",
  55. "type-is": "~1.6.14",
  56. "utils-merge": "1.0.0",
  57. "vary": "~1.1.0"
  58. },
  59. "devDependencies": {
  60. "after": "0.8.2",
  61. "body-parser": "1.17.1",
  62. "cookie-parser": "~1.4.3",
  63. "ejs": "2.5.6",
  64. "express-session": "1.15.1",
  65. "istanbul": "0.4.5",
  66. "marked": "0.3.6",
  67. "method-override": "2.3.7",
  68. "mocha": "3.2.0",
  69. "morgan": "1.8.1",
  70. "multiparty": "4.1.3",
  71. "pbkdf2-password": "1.2.1",
  72. "should": "11.2.0",
  73. "supertest": "1.2.0",
  74. "connect-redis": "~2.4.1",
  75. "cookie-session": "~1.2.0",
  76. "jade": "~1.11.0",
  77. "vhost": "~3.0.2"
  78. },
  79. "engines": {
  80. "node": ">= 0.10.0"
  81. },
  82. "files": [
  83. "LICENSE",
  84. "History.md",
  85. "Readme.md",
  86. "index.js",
  87. "lib/"
  88. ],
  89. "scripts": {
  90. "test": "mocha --require test/support/env --reporter spec --bail --check-leaks test/ test/acceptance/",
  91. "test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --require test/support/env --reporter spec --check-leaks test/ test/acceptance/",
  92. "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --require test/support/env --reporter dot --check-leaks test/ test/acceptance/",
  93. "test-tap": "mocha --require test/support/env --reporter tap --check-leaks test/ test/acceptance/"
  94. }
  95. }