-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
47 lines (47 loc) · 1.11 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
{
"name": "fastify-session",
"version": "5.2.1",
"description": "a session plugin for fastify",
"main": "lib/fastifySession.js",
"scripts": {
"unit": "ava test/*.test.js",
"tsc-check": "tsc --project ./types/tsconfig.json --noEmit",
"test": "npm run lint && npm run unit && npm run tsc-check",
"lint": "standard lib/* test/*",
"coveralls": "nyc npm test",
"coverage": "nyc npm test && nyc report --reporter=html"
},
"keywords": [
"session",
"fastify"
],
"author": "Denis Fäcke",
"license": "MIT",
"dependencies": {
"cookie-signature": "^1.1.0",
"fastify-plugin": "^3.0.0",
"uid-safe": "^2.1.5"
},
"engines": {
"node": ">= 10.13.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SerayaEryn/fastify-session.git"
},
"devDependencies": {
"@types/node": "^16.10.1",
"ava": "^3.6.0",
"fastify": "^3.0.0",
"fastify-cookie": "^5.3.1",
"got": "^11.6.0",
"nyc": "^15.0.0",
"standard": "^16.0.1",
"typescript": "^4.0.2"
},
"types": "types/types.d.ts",
"files": [
"lib",
"types/types.d.ts"
]
}