Skip to main content
Module

x/lyrol/package.json

πŸ” lyrol is fully featured role management library for node.js. It allows you to easily create roles and manage permissions and authorize your users, and it supports various frameworks like express, koa and next.js
Latest
File
{ "name": "lyrol", "author": "Mohamed Achaq", "description": "lyrol is fully featured role management library for node.js. It allows you to easily create roles and manage permissions and authorize your users, and it supports various frameworks like express, koa and next.js", "version": "3.1.1", "license": "MIT", "keywords": [ "roles", "permissions", "role-management", "role manager", "permission", "scope", "Express role management", "koa role management", "role management", "koa middleware", "express middleware", "next.js middleware", "next.js role management", "next.js permissions" ], "repository": { "type": "git", "url": "https://github.com/triyanox/lyrol.git" }, "main": "dist/index.js", "module": "dist/lyrol.esm.js", "typings": "dist/index.d.ts", "files": [ "dist", "src" ], "scripts": { "analyze": "size-limit --why", "build": "dts build", "lint": "dts lint", "prepare": "dts build", "size": "size-limit", "start": "dts watch", "test": "dts test" }, "husky": { "hooks": { "pre-commit": "dts lint" } }, "prettier": { "printWidth": 80, "semi": true, "singleQuote": true, "trailingComma": "es5" }, "jest": { "testEnvironment": "node" }, "engines": { "node": ">=12" }, "size-limit": [ { "path": "dist/lyrol.cjs.production.min.js", "limit": "10 KB" }, { "path": "dist/lyrol.esm.js", "limit": "10 KB" } ], "devDependencies": { "@size-limit/preset-small-lib": "^8.2.4", "@tsconfig/recommended": "^1.0.2", "@types/express": "^4.17.17", "@types/koa": "^2.13.5", "@types/koa-router": "^7.4.4", "@types/react": "^18.0.33", "@types/supertest": "^2.0.12", "dts-cli": "^1.6.3", "express": "^4.18.2", "husky": "^8.0.3", "koa": "^2.14.1", "koa-router": "^12.0.0", "next": "^13.1.6", "pino": "^8.10.0", "react": "^18.2.0", "size-limit": "^8.2.4", "supertest": "^6.3.3", "tslib": "^2.5.0", "typescript": "^4.9.5" }, "dependencies": {}}