{
  "name": "keycloak-authorization-services",
  "version": "2.0.5",
  "description": "This library implements the [Keycloak Authorization Service](https://www.keycloak.org/docs/latest/authorization_services/#_service_overview).",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "scripts": {
    "test": "cross-env DEBUG=keycloak-authorization-service:* jest --passWithNoTests --group=unit/test",
    "test:integration": "cross-env DEBUG=keycloak-authorization-service:* jest --passWithNoTests --group=integration/test",
    "lint": "eslint . --cache --fix --max-warnings 10 --ext .ts",
    "prettier": "prettier --write .",
    "prepare": "husky install",
    "prebuild": "shx rm -rf dist",
    "build": "tsc -p ."
  },
  "keywords": [],
  "author": "Herberts Cruz<herbertscruz@gmail.com>",
  "license": "ISC",
  "dependencies": {
    "axios": "^1.13.2",
    "cross-env": "^7.0.3",
    "debug": "^4.4.3",
    "dotenv": "^16.6.1",
    "express": "^4.22.1",
    "jsonwebtoken": "^9.0.3",
    "jwks-rsa": "^3.2.1"
  },
  "devDependencies": {
    "@babel/core": "^7.19.0",
    "@babel/plugin-proposal-decorators": "^7.19.0",
    "@babel/preset-env": "^7.19.0",
    "@babel/preset-typescript": "^7.18.6",
    "@commitlint/cli": "^17.3.0",
    "@commitlint/config-conventional": "^17.3.0",
    "@types/debug": "^4.1.12",
    "@types/express": "^4.17.25",
    "@types/jest": "^29.5.14",
    "@types/jsonwebtoken": "^8.5.9",
    "@types/node": "^18.7.15",
    "@types/supertest": "^2.0.12",
    "@typescript-eslint/eslint-plugin": "^5.36.2",
    "@typescript-eslint/parser": "^5.36.2",
    "eslint": "^8.23.0",
    "husky": "^8.0.2",
    "jest": "^29.7.0",
    "jest-extended": "^3.1.0",
    "jest-runner-groups": "^2.2.0",
    "lint-staged": "^13.0.3",
    "prettier": "^2.7.1",
    "shx": "^0.3.4",
    "supertest": "^6.2.4",
    "testcontainers": "^11.11.0",
    "ts-jest": "^29.4.6",
    "ts-node": "^10.9.2",
    "ts-node-dev": "^2.0.0",
    "tslib": "^2.4.0",
    "typescript": "^4.8.2"
  },
  "lint-staged": {
    "*.ts": [
      "npm run lint",
      "npm run prettier",
      "npm run test",
      "git add ."
    ]
  },
  "files": [
    "dist",
    "LICENCE",
    "README.md"
  ],
  "engines": {
    "node": ">=16.x"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/herbertscruz/keycloak-authorization-services.git"
  },
  "bugs": {
    "url": "https://github.com/herbertscruz/keycloak-authorization-services/issues"
  },
  "homepage": "https://github.com/herbertscruz/keycloak-authorization-services#readme"
}
