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.

64 lines
1.5 KiB

{
"name": "@fastify/cookie",
"version": "7.4.0",
"description": "Plugin for fastify to add support for cookies",
"main": "plugin.js",
"types": "plugin.d.ts",
"scripts": {
"lint": "standard | snazzy",
"lint:ci": "standard",
"lint:fix": "standard --fix",
"test": "npm run unit && npm run typescript",
"typescript": "tsd",
"unit": "tap -J \"test/*.test.js\"",
"unit:report": "npm run unit -- --coverage-report=html",
"unit:verbose": "npm run unit -- -Rspec"
},
"precommit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/fastify/fastify-cookie.git"
},
"keywords": [
"fastify",
"cookie"
],
"author": "James Sumners <james.sumners@gmail.com>",
"contributors": [
{
"name": "Salman Mitha",
"email": "SalmanMitha@gmail.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/fastify/fastify-cookie/issues"
},
"homepage": "https://github.com/fastify/fastify-cookie#readme",
"devDependencies": {
"@fastify/pre-commit": "^2.0.2",
"@types/node": "^18.0.0",
"benchmark": "^2.1.4",
"fastify": "^4.0.0-rc.2",
"sinon": "^14.0.0",
"snazzy": "^9.0.0",
"standard": "^17.0.0",
"tap": "^16.0.0",
"tsd": "^0.22.0",
"typescript": "^4.5.5"
},
"dependencies": {
"cookie": "^0.5.0",
"fastify-plugin": "^4.0.0"
},
"tsd": {
"directory": "test"
},
"publishConfig": {
"access": "public"
}
}