{
  "name": "@byu-oit/policy",
  "version": "1.1.2",
  "description": "Statically configure and evaluate business rules, policies, or other conditional logic within applications.",
  "engines": {
    "node": ">=18"
  },
  "type": "module",
  "main": "./dist/cjs/index.js",
  "types": "./dist/cjs/index.d.ts",
  "module": "./dist/esm/index.js",
  "exports": {
    "./package.json": "./package.json",
    "./system": {
      "import": {
        "types": "./dist/esm/system/index.d.ts",
        "default": "./dist/esm/system/index.js"
      },
      "require": {
        "types": "./dist/cjs/system/index.d.ts",
        "default": "./dist/cjs/system/index.js"
      }
    },
    ".": {
      "import": {
        "types": "./dist/esm/index.d.ts",
        "default": "./dist/esm/index.js"
      },
      "require": {
        "types": "./dist/cjs/index.d.ts",
        "default": "./dist/cjs/index.js"
      }
    }
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "rimraf dist && concurrently \"npm:build:*\" -c cyanBright",
    "build:cjs": "tsc -p tsconfig.cjs.json && echo-cli \"{\\\"type\\\": \\\"commonjs\\\"}\" > dist/cjs/package.json",
    "build:esm": "tsc -p tsconfig.json && echo-cli \"{\\\"type\\\": \\\"module\\\"}\" > dist/esm/package.json",
    "build:test": "tsc -p tsconfig.ava.json",
    "clean": "rimraf dist coverage && ava reset-cache",
    "lint": "npx @biomejs/biome check src test",
    "lint:fix": "npx @biomejs/biome check --write src test",
    "test": "npm run build:test && ava test/**/*.spec.ts",
    "test:coverage": "c8 -r html -r lcov ava test/**/*.spec.ts"
  },
  "dependencies": {
    "lodash.get": "^4.4.2",
    "tslib": "^2.5.0"
  },
  "peerDependencies": {
    "@sinclair/typebox": "^0.34.14"
  },
  "devDependencies": {
    "@ava/typescript": "^7.0.0",
    "@biomejs/biome": "1.9.4",
    "@swc-node/register": "^1.10.9",
    "@types/lodash.get": "^4.4.9",
    "@typescript-eslint/eslint-plugin": "^8.59.2",
    "@typescript-eslint/parser": "^8.59.2",
    "ava": "^8.0.0",
    "c8": "^7.13.0",
    "concurrently": "^9.2.1",
    "echo-cli": "^2.0.0",
    "eslint": "^10.3.0",
    "eslint-plugin-tsdoc": "^0.5.2",
    "rimraf": "^6.0.1",
    "sinon": "^22.0.0",
    "typescript": "5.5"
  },
  "overrides": {
    "lodash": "4.18.1"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/byu-oit/poliblob.git"
  },
  "keywords": [],
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://github.com/byu-oit/poliblob/issues"
  },
  "homepage": "https://github.com/byu-oit/poliblob/packages/policy#readme",
  "publishConfig": {
    "access": "public"
  },
  "ava": {
    "typescript": {
      "rewritePaths": {
        "src/": ".ava-build/src/",
        "test/": ".ava-build/test/"
      },
      "compile": false
    }
  },
  "gitHead": "0b13a23d847008228b28dfba1ea9fee2731b1bd8"
}
