1 | {
|
---|
2 | "name": "express",
|
---|
3 | "description": "Fast, unopinionated, minimalist web framework",
|
---|
4 | "version": "4.18.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 | "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.1",
|
---|
34 | "content-disposition": "0.5.4",
|
---|
35 | "content-type": "~1.0.4",
|
---|
36 | "cookie": "0.5.0",
|
---|
37 | "cookie-signature": "1.0.6",
|
---|
38 | "debug": "2.6.9",
|
---|
39 | "depd": "2.0.0",
|
---|
40 | "encodeurl": "~1.0.2",
|
---|
41 | "escape-html": "~1.0.3",
|
---|
42 | "etag": "~1.8.1",
|
---|
43 | "finalhandler": "1.2.0",
|
---|
44 | "fresh": "0.5.2",
|
---|
45 | "http-errors": "2.0.0",
|
---|
46 | "merge-descriptors": "1.0.1",
|
---|
47 | "methods": "~1.1.2",
|
---|
48 | "on-finished": "2.4.1",
|
---|
49 | "parseurl": "~1.3.3",
|
---|
50 | "path-to-regexp": "0.1.7",
|
---|
51 | "proxy-addr": "~2.0.7",
|
---|
52 | "qs": "6.11.0",
|
---|
53 | "range-parser": "~1.2.1",
|
---|
54 | "safe-buffer": "5.2.1",
|
---|
55 | "send": "0.18.0",
|
---|
56 | "serve-static": "1.15.0",
|
---|
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.8",
|
---|
69 | "eslint": "8.24.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.0.0",
|
---|
75 | "morgan": "1.10.0",
|
---|
76 | "multiparty": "4.2.3",
|
---|
77 | "nyc": "15.1.0",
|
---|
78 | "pbkdf2-password": "1.2.1",
|
---|
79 | "supertest": "6.3.0",
|
---|
80 | "vhost": "~3.0.2"
|
---|
81 | },
|
---|
82 | "engines": {
|
---|
83 | "node": ">= 0.10.0"
|
---|
84 | },
|
---|
85 | "files": [
|
---|
86 | "LICENSE",
|
---|
87 | "History.md",
|
---|
88 | "Readme.md",
|
---|
89 | "index.js",
|
---|
90 | "lib/"
|
---|
91 | ],
|
---|
92 | "scripts": {
|
---|
93 | "lint": "eslint .",
|
---|
94 | "test": "mocha --require test/support/env --reporter spec --bail --check-leaks test/ test/acceptance/",
|
---|
95 | "test-ci": "nyc --reporter=lcovonly --reporter=text npm test",
|
---|
96 | "test-cov": "nyc --reporter=html --reporter=text npm test",
|
---|
97 | "test-tap": "mocha --require test/support/env --reporter tap --check-leaks test/ test/acceptance/"
|
---|
98 | }
|
---|
99 | }
|
---|