fast-jwt
Version:
Fast JSON Web Token implementation
83 lines (82 loc) • 2.29 kB
JSON
{
"name": "fast-jwt",
"version": "6.3.1",
"description": "Fast JSON Web Token implementation",
"author": "NearForm Ltd",
"homepage": "https://github.com/nearform/fast-jwt",
"contributors": [
{
"name": "Paolo Insogna",
"url": "https://github.com/ShogunPanda"
},
{
"name": "Matteo Collina",
"email": "hello@matteocollina.com"
}
],
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"keywords": [
"jwt"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nearform/fast-jwt.git"
},
"bugs": {
"url": "https://github.com/nearform/fast-jwt/issues"
},
"main": "src/index.js",
"typings": "src/index.d.ts",
"types": "src/index.d.ts",
"files": [
"src"
],
"scripts": {
"postpublish": "git push origin && git push origin -f --tags",
"lint": "eslint .",
"test": "node --test --experimental-test-coverage test/**.spec.js && tstyche",
"test:ci": "npm run lint && npm run test",
"test:watch": "node --test --watch --experimental-test-coverage test/**.spec.js",
"test:generate-keys": "node benchmarks/keys/generate-keys.js",
"test:generate-tokens": "node benchmarks/keys/generate-tokens.js",
"benchmark:sign": "node benchmarks/sign.mjs",
"benchmark:decode": "node benchmarks/decode.mjs",
"benchmark:verify": "node benchmarks/verify.mjs",
"benchmark:auth0": "node benchmarks/auth0.mjs",
"benchmark:update": "node benchmarks/update_benchmarks.mjs"
},
"dependencies": {
"@lukeed/ms": "^2.0.2",
"asn1.js": "^5.4.1",
"ecdsa-sig-formatter": "^1.0.11",
"mnemonist": "^0.40.0",
"safe-regex2": "^5.1.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@node-rs/jsonwebtoken": "^0.5.9",
"@types/node": "^26.0.0",
"eslint": "^10.7.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"fastify": "^5.2.0",
"globals": "^17.7.0",
"jiti": "^2.7.0",
"jose": "^6.2.4",
"jsonwebtoken": "^9.0.2",
"mitata": "^1.0.34",
"prettier": "^3.4.2",
"tstyche": "^7.1.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.65.0"
},
"engines": {
"node": ">=20"
}
}