express-flasher/package.json
Gregory Ballantine db9ff7ef05
All checks were successful
ci/woodpecker/tag/woodpecker Pipeline was successful
ci/woodpecker/push/woodpecker Pipeline was successful
Added the code for the express-flasher; added ESLint; added Woodpecker CI config
2022-11-04 16:09:20 -04:00

27 lines
647 B
JSON

{
"name": "express-flasher",
"version": "1.0.0",
"description": "Express.js middleware to easily set and retrieve session flash messages.",
"main": "index.js",
"scripts": {
"lint": "eslint index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://git.metaunix.net/BitGoblin/express-flasher"
},
"keywords": [
"express",
"expressjs",
"flash",
"session"
],
"author": "Gregory Ballantine <gballantine@bitgoblin.tech>",
"license": "BSD-2-Clause",
"devDependencies": {
"eslint": "^8.26.0",
"eslint-config-google": "^0.14.0"
}
}