You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
1.3 KiB

{
"name": "@fastify/session",
"version": "9.0.0",
"description": "a session plugin for fastify",
"main": "lib/fastifySession.js",
"scripts": {
"unit": "ava test/*.test.js",
"tsc-check": "tsd",
"test": "npm run lint && npm run unit && npm run tsc-check",
"benchmark": "node bench.js",
"lint": "standard lib/* test/* bench.js",
"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",
"safe-stable-stringify": "^2.3.1",
"uid-safe": "^2.1.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastify/session.git"
},
"devDependencies": {
"@types/node": "^17.0.0",
"ava": "^4.1.0",
"connect-redis": "^6.1.3",
"cronometro": "^0.8.0",
"fastify": "^4.0.0-rc.2",
"@fastify/cookie": "^7.0.0",
"nyc": "^15.0.0",
"redis": "^4.0.6",
"session-file-store": "^1.5.0",
"sinon": "^14.0.0",
"standard": "^17.0.0",
"tsd": "^0.20.0",
"typescript": "^4.0.2",
"undici": "^5.0.0"
},
"types": "types/types.d.ts",
"files": [
"lib",
"types/types.d.ts"
]
}