forked from fastify/session
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.28 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
{
"name": "@fastify/session",
"version": "10.6.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": "tap",
"test:typescript": "tsd",
"benchmark": "node benchmark/bench.js",
"lint": "standard lib/* test/* benchmark/*.js",
"lint:fix": "standard --fix",
"coveralls": "tap --coverage-report=lcov",
"coverage": "tap --coverage-report=html"
},
"keywords": [
"session",
"fastify"
],
"author": "Denis Fäcke",
"license": "MIT",
"dependencies": {
"fastify-plugin": "^4.0.0",
"safe-stable-stringify": "^2.3.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastify/session.git"
},
"devDependencies": {
"@fastify/cookie": "^9.0.4",
"@fastify/pre-commit": "^2.0.2",
"@types/node": "^20.1.0",
"connect-mongo": "^5.0.0",
"connect-redis": "^7.0.0",
"cronometro": "^1.1.0",
"fastify": "^4.3.0",
"ioredis": "^5.0.5",
"session-file-store": "^1.5.0",
"standard": "^17.0.0",
"tap": "^16.3.0",
"tsd": "^0.29.0"
},
"types": "types/types.d.ts",
"files": [
"lib",
"types/types.d.ts"
],
"pre-commit": [
"lint",
"test"
]
}