UNPKG

1.33 kBJSONView Raw
1{
2 "name": "cookie-session",
3 "description": "cookie session middleware",
4 "version": "2.1.0",
5 "contributors": [
6 "Douglas Christopher Wilson <doug@somethingdoug.com>",
7 "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)"
8 ],
9 "license": "MIT",
10 "keywords": [
11 "connect",
12 "express",
13 "middleware",
14 "session"
15 ],
16 "repository": "expressjs/cookie-session",
17 "dependencies": {
18 "cookies": "0.9.1",
19 "debug": "3.2.7",
20 "on-headers": "~1.0.2",
21 "safe-buffer": "5.2.1"
22 },
23 "devDependencies": {
24 "connect": "3.7.0",
25 "eslint": "8.56.0",
26 "eslint-config-standard": "14.1.1",
27 "eslint-plugin-import": "2.29.1",
28 "eslint-plugin-markdown": "3.0.1",
29 "eslint-plugin-node": "11.1.0",
30 "eslint-plugin-promise": "6.1.1",
31 "eslint-plugin-standard": "4.1.0",
32 "mocha": "10.2.0",
33 "nyc": "15.1.0",
34 "supertest": "6.3.4"
35 },
36 "files": [
37 "HISTORY.md",
38 "LICENSE",
39 "README.md",
40 "index.js"
41 ],
42 "engines": {
43 "node": ">= 0.10"
44 },
45 "scripts": {
46 "lint": "eslint .",
47 "test": "mocha --check-leaks --reporter spec --bail test/",
48 "test-ci": "nyc --reporter=lcov --reporter=text npm test",
49 "test-cov": "nyc --reporter=html --reporter=text npm test",
50 "version": "node scripts/version-history.js && git add HISTORY.md"
51 }
52}