@brandazm/dynamic-permissions
Version:
A flexible and powerful permissions management system for NestJS applications with built-in security features
80 lines (79 loc) • 2.11 kB
JSON
{
"name": "@brandazm/dynamic-permissions",
"version": "1.1.3",
"description": "A flexible and powerful permissions management system for NestJS applications with built-in security features",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"nestjs-permissions": "./dist/bin/nestjs-permissions-cli.js"
},
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"prepublishOnly": "jest --passWithNoTests && npm run lint",
"test": "jest",
"lint": "eslint 'src/**/*.ts'",
"format": "prettier --write 'src/**/*.ts'",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sangdx/nestjs-permissions.git"
},
"keywords": [
"nestjs",
"permissions",
"security",
"rbac",
"authorization",
"authentication",
"access-control",
"security-headers",
"rate-limiting",
"cors"
],
"author": "Your Name",
"license": "MIT",
"bugs": {
"url": "https://github.com/sangdx/nestjs-permissions/issues"
},
"homepage": "https://github.com/sangdx/nestjs-permissions#readme",
"dependencies": {
"@nestjs/common": "^11.0.1",
"@nestjs/core": "^11.0.1",
"commander": "^11.1.0",
"express-rate-limit": "^7.1.5",
"helmet": "^7.1.0",
"reflect-metadata": "^0.2.1",
"rxjs": "^7.8.1",
"typeorm": "^0.3.20"
},
"peerDependencies": {
"@nestjs/common": "^11.0.1",
"@nestjs/core": "^11.0.1"
},
"devDependencies": {
"@nestjs/typeorm": "^11.0.1",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.19",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"files": [
"dist/**/*",
"LICENSE",
"README.md"
],
"publishConfig": {
"access": "public"
}
}