forked from fastify/fastify-secure-session
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.06 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
{
"name": "fastify-secure-session",
"version": "2.2.1",
"description": "Create a secure stateless cookie session for Fastify",
"main": "index.js",
"types": "index.d.ts",
"bin": {
"secure-session-gen-key": "genkey.js"
},
"scripts": {
"test": "standard && tap test/*.js && tsd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastify/fastify-secure-session.git"
},
"keywords": [
"fastify",
"secure",
"session",
"sodium"
],
"author": "Matteo Collina <hello@matteocollina.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fastify/fastify-secure-session/issues"
},
"homepage": "https://github.com/fastify/fastify-secure-session#readme",
"devDependencies": {
"@types/node": "^14.0.23",
"cookie": "^0.4.0",
"fastify": "^3.0.0",
"pre-commit": "^1.2.2",
"standard": "^14.3.3",
"tap": "^14.10.7",
"tsd": "^0.13.1",
"typescript": "^4.0.2"
},
"dependencies": {
"fastify-cookie": "^4.0.2",
"fastify-plugin": "^2.0.0",
"sodium-native": "^3.0.0"
}
}