node-red-contrib-jsonwebtoken
Version:
This node allows you to sign and validate JSON Web Token (JWT)
41 lines (40 loc) • 878 B
JSON
{
"name": "node-red-contrib-jsonwebtoken",
"version": "1.0.5",
"description": "This node allows you to sign and validate JSON Web Token (JWT)",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"node-red",
"jwt",
"jsonwebtoken",
"security",
"sign",
"login"
],
"author": "Asiel Hernandez Valdes",
"license": "ISC",
"node-red": {
"version": ">=4.0.0",
"nodes": {
"jwt-sign": "jwt-sign.js",
"jwt-verify": "jwt-verify.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/asielh1n1/node-red-contrib-jsonwebtoken.git"
},
"dependencies": {
"jsonwebtoken": "^9.0.2",
"jwks-rsa": "^3.1.0",
"ajv": "^8.17.1",
"ajv-errors": "^3.0.0",
"ajv-formats": "^3.0.1"
}
}