{ "name": "express-jwt", "version": "8.4.1", "description": "JWT authentication middleware.", "keywords": [ "auth", "authn", "authentication", "authz", "authorization", "http", "jwt", "token", "oauth", "express" ], "repository": { "type": "git", "url": "git://github.com/auth0/express-jwt.git" }, "bugs": { "url": "http://github.com/auth0/express-jwt/issues" }, "author": { "name": "Matias Woloski", "email": "matias@auth0.com", "url": "https://www.auth0.com/" }, "license": "MIT", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "/dist" ], "dependencies": { "@types/jsonwebtoken": "^9", "express-unless": "^2.1.3", "jsonwebtoken": "^9.0.0" }, "devDependencies": { "@types/express": "^4.17.16", "@types/mocha": "^9.1.0", "@typescript-eslint/eslint-plugin": "^5.15.0", "@typescript-eslint/parser": "^5.15.0", "conventional-changelog": "^3.1.25", "eslint": "^8.11.0", "express": "^4.17.3", "mocha": "^10.2.0", "prettier": "^2.6.0", "ts-node": "^10.7.0", "typescript": "^4.6.2" }, "engines": { "node": ">= 8.0.0" }, "scripts": { "build": "rm -rf dist ; tsc", "prepare": "npm run build", "test": "mocha --reporter spec --require ts-node/register test/**", "lint": "eslint --fix --ext .ts ./src" } }