UNPKG

@veloze/jwt

Version:
69 lines 1.51 kB
{ "name": "@veloze/jwt", "version": "2.0.0", "description": "todo", "keywords": [ "jwt", "veloze", "express" ], "homepage": "https://github.com/commenthol/veloze-jwt", "repository": { "type": "git", "url": "https://github.com/commenthol/veloze-jwt.git" }, "license": "MIT", "author": "commenthol <commenthol@gmail.com>", "sideEffects": false, "type": "module", "imports": { "#*": { "default": "./src/*" } }, "main": "src/index.js", "types": "types/index.d.ts", "files": [ "docs", "src", "types" ], "mocha": { "recursive": true }, "dependencies": { "jose": "^6.0.12", "veloze": "^1.2.2" }, "devDependencies": { "@types/node": "^24.1.0", "c8": "^10.1.3", "debug-level": "^4.1.1", "eslint": "^9.32.0", "eslint-config-prettier": "^10.1.8", "eslint-plugin-prettier": "^5.5.3", "globals": "^16.3.0", "jsonwebtoken": "^9.0.2", "mocha": "^11.7.1", "npm-run-all": "^4.1.5", "shelljs": "^0.10.0", "supertest": "^7.1.4", "typescript": "^5.8.3" }, "engines": { "node": ">=18" }, "publishConfig": { "access": "public" }, "scripts": { "all": "npm-run-all lint c8 types", "ci": "CI=true npm-run-all lint c8 types", "changelog": "conv-changelog -t groups -o", "c8": "c8 -r html -r text -r lcov npm t", "lint": "eslint .", "test": "mocha", "test:certs": "sh ./scripts/test-certs.sh", "types": "rm -rf types; tsc" } }