@fastify/flash
Version:
Flash message plugin for fastify.
90 lines (89 loc) • 2.23 kB
JSON
{
"name": "@fastify/flash",
"version": "6.0.3",
"description": "Flash message plugin for fastify.",
"main": "./lib",
"type": "commonjs",
"scripts": {
"prebuild": "npm run clean-build && npm run lint",
"build": "tsc -p ./tsconfig.build.json",
"clean-build": "rimraf ./lib && mkdir lib",
"prettier": "prettier --log-level warn --write \"src/**/*.{ts,tsx}\"",
"prelint": "npm run prettier",
"lint": "tslint --fix -c tslint.json -t stylish -p ./tsconfig.json",
"update": "npx npm-check -u",
"prepublishOnly": "npm run build",
"pretest": "npx -p \"@fastify/secure-session\" secure-session > secret-key",
"test": "borp --coverage",
"test:report": "npm run test | tee out.tap",
"posttest": "rimraf secret-key"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastify/fastify-flash.git"
},
"keywords": [
"fastify",
"flash",
"messages"
],
"contributors": [
"Maksim Sinik <maksim@sinik.it>",
{
"name": "Matteo Collina",
"email": "hello@matteocollina.com"
},
{
"name": "James Sumners",
"url": "https://james.sumners.info"
},
{
"name": "Frazer Smith",
"email": "frazer.dev@icloud.com",
"url": "https://github.com/fdawgs"
}
],
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/MIT"
}
],
"bugs": {
"url": "https://github.com/fastify/fastify-flash/issues"
},
"homepage": "https://github.com/fastify/fastify-flash#readme",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/fastify"
},
{
"type": "opencollective",
"url": "https://opencollective.com/fastify"
}
],
"devDependencies": {
"@fastify/secure-session": "^8.0.0",
"@types/node": "^22.0.0",
"fastify": "^5.0.0",
"prettier": "^3.2.5",
"rimraf": "^6.0.1",
"borp": "^0.19.0",
"ts-node": "^10.9.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "~5.7.2"
},
"dependencies": {
"fastify-plugin": "^5.0.0"
},
"files": [
"/lib",
"/typings"
],
"publishConfig": {
"access": "public"
}
}