forked from fastify/session
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.2 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
{
"name": "@fastify/session",
"version": "10.0.0",
"description": "a session plugin for fastify",
"main": "lib/fastifySession.js",
"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",
"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": "^8.0.0",
"@fastify/pre-commit": "^2.0.2",
"@types/node": "^18.0.0",
"connect-redis": "^6.1.3",
"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.24.1"
},
"types": "types/types.d.ts",
"files": [
"lib",
"types/types.d.ts"
],
"pre-commit": [
"lint",
"test"
]
}