-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
56 lines (56 loc) · 1.33 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "@fastify/session",
"version": "11.0.1",
"description": "a session plugin for fastify",
"main": "lib/fastifySession.js",
"type": "commonjs",
"scripts": {
"test": "npm run test:unit && npm run test:typescript",
"test:unit": "c8 --100 node --test",
"test:typescript": "tsd",
"benchmark": "node benchmark/bench.js",
"lint": "standard lib/* test/* benchmark/*.js",
"lint:fix": "standard --fix"
},
"keywords": [
"session",
"fastify"
],
"author": "Denis Fäcke",
"license": "MIT",
"dependencies": {
"fastify-plugin": "^5.0.1",
"safe-stable-stringify": "^2.4.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastify/session.git"
},
"bugs": {
"url": "https://github.com/fastify/session/issues"
},
"homepage": "https://github.com/fastify/session#readme",
"devDependencies": {
"@fastify/cookie": "^11.0.0",
"@fastify/pre-commit": "^2.1.0",
"@types/node": "^22.0.0",
"c8": "^10.1.2",
"connect-mongo": "^5.1.0",
"connect-redis": "^7.1.1",
"cronometro": "^4.0.0",
"fastify": "^5.0.0",
"ioredis": "^5.3.2",
"session-file-store": "^1.5.0",
"standard": "^17.1.0",
"tsd": "^0.31.0"
},
"types": "types/types.d.ts",
"files": [
"lib",
"types/types.d.ts"
],
"pre-commit": [
"lint",
"test"
]
}