UNPKG

nestjs-google-auth-guard

Version:
58 lines 1.57 kB
{ "name": "nestjs-google-auth-guard", "version": "0.1.3", "description": "Google Auth Guard for NestJS", "main": "dist/index.js", "files": [ "dist" ], "engines": { "node": ">=22" }, "keywords": [ "nestjs", "google auth", "oauth", "guard", "authentication", "bearer token", "async local storage", "decorator", "context", "authorization" ], "author": "Farenheith", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/codibre/nestjs-context.git" }, "bugs": { "url": "https://github.com/codibre/nestjs-context.git/issues" }, "homepage": "https://github.com/codibre/nestjs-context/tree/main/libs/nestjs-google-auth-guard#readme", "devDependencies": { "google-auth-library": "^10.2.1", "jest": "^29.7.0", "read-pkg": "^9.0.1" }, "peerDependencies": { "rxjs": "*", "google-auth-library": ">=10.2.1" }, "scripts": { "prebuild": "rimraf dist", "build": "nest build", "test": "jest --runInBand", "test:scope": "jest --runInBand --scope", "test:cov": "jest --runInBand --coverage", "test:unit": "NODE_ENV=test jest --runInBand --forceExit", "lint": "pnpm run lint:format && pnpm run lint:style", "lint:fix": "pnpm run lint:format:fix && pnpm run lint:style:fix", "lint:format": "prettier --check '**/{src,test}/**/*.ts'", "lint:format:fix": "prettier --write '**/{src,test}/**/*.ts'", "lint:style": "eslint", "lint:style:fix": "eslint --fix", "lint:staged": "lint-staged" } }