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.

60 lines
1.4 KiB

{
"name": "@fastify/jwt",
"version": "6.5.0",
"description": "JWT utils for Fastify",
"main": "jwt.js",
"types": "jwt.d.ts",
"scripts": {
"lint": "standard",
"lint:fix": "standard --fix",
"test": "npm run lint && npm run unit && npm run test:typescript",
"test:typescript": "tsd",
"unit": "tap -J test/*.test.js",
"unit:report": "npm run unit -- --cov --coverage-report=html",
"unit:verbose": "npm run unit -- -Rspec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastify/fastify-jwt.git"
},
"keywords": [
"jwt",
"json",
"token",
"jsonwebtoken",
"fastify"
],
"author": "Tomas Della Vedova - @delvedor (http://delved.org)",
"license": "MIT",
"bugs": {
"url": "https://github.com/fastify/fastify-jwt/issues"
},
"homepage": "https://github.com/fastify/fastify-jwt#readme",
"dependencies": {
"@fastify/error": "^3.0.0",
"@lukeed/ms": "^2.0.0",
"fast-jwt": "^2.0.0",
"fastify-plugin": "^4.0.0",
"steed": "^1.1.3"
},
"devDependencies": {
"@fastify/cookie": "^8.1.0",
"@fastify/pre-commit": "^2.0.2",
"@types/node": "^18.0.0",
"fastify": "^4.0.0-rc.2",
"standard": "^17.0.0",
"tap": "^16.0.0",
"tsd": "^0.24.1"
},
"tsd": {
"directory": "test/types"
},
"publishConfig": {
"access": "public"
},
"pre-commit": [
"lint",
"test"
]
}