{
  "name": "casbin",
  "version": "5.0.7",
  "description": "An authorization library that supports access control models like ACL, RBAC, ABAC in Node.JS",
  "main": "lib/cjs/index.js",
  "typings": "lib/cjs/index.d.ts",
  "module": "lib/esm/index.js",
  "scripts": {
    "prepack": "run-s lint test build",
    "postpack": "run-s clean",
    "build": "run-s clean && run-p build:*",
    "build:cjs": "tsc -p tsconfig.cjs.json",
    "build:esm": "tsc -p tsconfig.esm.json",
    "test": "jest",
    "lint": "eslint . --ext .js,.ts",
    "fmt": "eslint . --ext .js,.ts --fix",
    "semantic-release": "semantic-release",
    "commit": "git-cz",
    "clean": "rimraf lib"
  },
  "devDependencies": {
    "@semantic-release/changelog": "^3.0.6",
    "@semantic-release/git": "^7.0.18",
    "@types/ip": "^0.0.31",
    "@types/jest": "^24.0.11",
    "@types/lodash": "^4.14.113",
    "@types/micromatch": "^4.0.1",
    "@types/node": "^10.5.3",
    "@typescript-eslint/eslint-plugin": "^2.6.1",
    "@typescript-eslint/parser": "^2.6.1",
    "coveralls": "^3.0.2",
    "cz-conventional-changelog": "^3.2.0",
    "eslint": "^6.6.0",
    "eslint-config-prettier": "^6.5.0",
    "eslint-plugin-prettier": "^3.1.1",
    "husky": "^2.3.0",
    "jest": "^24.3.1",
    "lint-staged": "^8.1.7",
    "npm-run-all": "^4.1.5",
    "prettier": "^1.19.1",
    "pretty-quick": "^2.0.1",
    "rimraf": "^2.6.2",
    "semantic-release": "^15.13.31",
    "ts-jest": "^24.0.0",
    "tslint": "^5.11.0",
    "typescript": "^3.7.2"
  },
  "dependencies": {
    "await-lock": "^2.0.1",
    "expression-eval": "^2.0.0",
    "ip": "^1.1.5",
    "micromatch": "^4.0.2"
  },
  "files": [
    "lib",
    "examples"
  ],
  "homepage": "http://casbin.org",
  "repository": {
    "type": "git",
    "url": "https://github.com/casbin/node-casbin.git"
  },
  "licenses": [
    {
      "type": "Apache-2.0",
      "url": "http://www.apache.org/licenses/LICENSE-2.0"
    }
  ],
  "husky": {
    "hooks": {
      "prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
      "pre-commit": "yarn fmt && pretty-quick --staged"
    }
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  }
}
