1 | {
|
2 | "name": "express-session",
|
3 | "version": "1.18.1",
|
4 | "description": "Simple session middleware for Express",
|
5 | "author": "TJ Holowaychuk <tj@vision-media.ca> (http://tjholowaychuk.com)",
|
6 | "contributors": [
|
7 | "Douglas Christopher Wilson <doug@somethingdoug.com>",
|
8 | "Joe Wagner <njwjs722@gmail.com>"
|
9 | ],
|
10 | "repository": "expressjs/session",
|
11 | "license": "MIT",
|
12 | "dependencies": {
|
13 | "cookie": "0.7.2",
|
14 | "cookie-signature": "1.0.7",
|
15 | "debug": "2.6.9",
|
16 | "depd": "~2.0.0",
|
17 | "on-headers": "~1.0.2",
|
18 | "parseurl": "~1.3.3",
|
19 | "safe-buffer": "5.2.1",
|
20 | "uid-safe": "~2.1.5"
|
21 | },
|
22 | "devDependencies": {
|
23 | "after": "0.8.2",
|
24 | "cookie-parser": "1.4.6",
|
25 | "eslint": "8.56.0",
|
26 | "eslint-plugin-markdown": "3.0.1",
|
27 | "express": "4.17.3",
|
28 | "mocha": "10.2.0",
|
29 | "nyc": "15.1.0",
|
30 | "supertest": "6.3.4"
|
31 | },
|
32 | "files": [
|
33 | "session/",
|
34 | "HISTORY.md",
|
35 | "index.js"
|
36 | ],
|
37 | "engines": {
|
38 | "node": ">= 0.8.0"
|
39 | },
|
40 | "scripts": {
|
41 | "lint": "eslint . && node ./scripts/lint-readme.js",
|
42 | "test": "mocha --require test/support/env --check-leaks --bail --no-exit --reporter spec test/",
|
43 | "test-ci": "nyc --reporter=lcov --reporter=text npm test",
|
44 | "test-cov": "nyc npm test",
|
45 | "version": "node scripts/version-history.js && git add HISTORY.md"
|
46 | }
|
47 | }
|