@hz-9/a5-authn
Version:
Authentication module for the @hz-9/a5-* series of repositories.
96 lines • 2.62 kB
JSON
{
"name": "@hz-9/a5-authn",
"version": "0.2.0-alpha.15",
"description": "Authentication module for the @hz-9/a5-* series of repositories.",
"keywords": [
"nest",
"a5",
"a5-authn",
"authentication"
],
"homepage": "https://hz-9.github.io/a5/guide/a5-authn",
"bugs": {
"url": "https://github.com/hz-9/a5/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/hz-9/a5.git",
"directory": "library/authn"
},
"license": "MIT",
"author": "Chen Zhen <heavenzhen999@163.com>",
"exports": {
".": {
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./*": {
"require": "./dist/*.js",
"types": "./dist/*.d.ts"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*.{d.ts,js}"
],
"dependencies": {
"@nestjs/passport": "~11.0.5",
"passport": "~0.7.0"
},
"devDependencies": {
"@hz-9/eslint-config-airbnb-ts": "~0.6.0",
"@nestjs/cli": "^10.0.0",
"@nestjs/common": "^10.0.0",
"@nestjs/core": "^10.0.0",
"@nestjs/testing": "^10.0.0",
"@rushstack/heft": "0.66.1",
"@types/heft-jest": "~1.0.3",
"@types/node": "~20.3.1",
"class-transformer": "~0.5.1",
"class-validator": "~0.14.0",
"eslint": "^8.2.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1",
"ts-node": "^10.9.1",
"typescript": ">=5.0.0 <5.4.0",
"@types/supertest": "~6.0.2",
"supertest": "~7.0.0",
"passport-local": "~1.0.0",
"passport-jwt": "~4.0.1",
"@types/passport-local": "~1.0.38",
"@types/passport-jwt": "~4.0.1",
"@nestjs/swagger": "~7.4.2",
"@hz-9/a5-core": "0.2.0-alpha.15",
"@hz-9/heft-nest-rig": "0.1.2",
"@hz-9/a5-crud-zod": "0.2.0-alpha.15"
},
"peerDependencies": {
"@nestjs/common": "^10.0.0",
"@nestjs/core": "^10.0.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1",
"passport-local": "~1.0.0",
"passport-jwt": "~4.0.1",
"@nestjs/swagger": "~7.4.2",
"@hz-9/a5-core": "0.2.0-alpha.15",
"@hz-9/a5-crud-zod": "0.2.0-alpha.15"
},
"peerDependenciesMeta": {
"passport-local": {
"optional": true
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "heft test-all --clean",
"build-custon": "heft custom-build",
"lint": "heft lint",
"test": "heft test --clean",
"test:watch": "heft test-watch --clean",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json"
}
}