-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
55 lines (55 loc) · 1.31 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
{
"name": "@fastify/secure-session",
"version": "8.1.0",
"description": "Create a secure stateless cookie session for Fastify",
"main": "index.js",
"type": "commonjs",
"types": "types/index.d.ts",
"bin": {
"@fastify/secure-session": "genkey.js"
},
"scripts": {
"lint": "standard",
"test": "npm run test:unit && npm run test:typescript",
"test:unit": "c8 --100 node --test",
"test:typescript": "tsd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastify/fastify-secure-session.git"
},
"keywords": [
"fastify",
"secure",
"session",
"sodium"
],
"author": "Matteo Collina <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fastify/fastify-secure-session/issues"
},
"homepage": "https://github.com/fastify/fastify-secure-session#readme",
"devDependencies": {
"@fastify/pre-commit": "^2.0.2",
"@sinonjs/fake-timers": "^13.0.2",
"@types/node": "^22.0.0",
"c8": "^10.1.2",
"cookie": "^1.0.1",
"fastify": "^5.0.0",
"standard": "^17.1.0",
"tsd": "^0.31.0"
},
"dependencies": {
"@fastify/cookie": "^11.0.1",
"fastify-plugin": "^5.0.0",
"sodium-native": "^4.0.10"
},
"publishConfig": {
"access": "public"
},
"pre-commit": [
"lint",
"test"
]
}