{
  "name": "@burdaforward/composable-rules",
  "version": "3.0.1",
  "description": "A library for composable rule logic. Easily combine simple rules into more complex ones in a maintainable way using your custom logic and data.",
  "main": "./dist/index.cjs",
  "unpkg": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "require": "./dist/index.cjs",
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    }
  },
  "scripts": {
    "build": "tsup src/index.ts --format cjs,esm --dts --minify --clean",
    "release": "npm run build && npm publish",
    "lint": "eslint src",
    "lint:fix": "npm run lint -- --fix",
    "type-check": "tsc --noEmit",
    "test": "jest src",
    "prepublishOnly": "npm run build",
    "compile": "tsc"
  },
  "files": [
    "dist/"
  ],
  "type": "module",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/burdaforward/composable-rules.git"
  },
  "keywords": [
    "rules",
    "javascript",
    "business",
    "logic"
  ],
  "author": "BurdaForward",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/burdaforward/composable-rules/issues"
  },
  "homepage": "https://github.com/burdaforward/composable-rules#readme",
  "devDependencies": {
    "@types/jest": "^29.4.1",
    "@types/node": "^18.15.3",
    "@typescript-eslint/eslint-plugin": "^5.55.0",
    "@typescript-eslint/parser": "^5.55.0",
    "eslint": "^8.36.0",
    "eslint-config-airbnb-base": "^15.0.0",
    "eslint-config-airbnb-typescript": "^17.0.0",
    "eslint-config-prettier": "^8.7.0",
    "eslint-plugin-import": "^2.27.5",
    "eslint-plugin-prettier": "^4.2.1",
    "jest": "^29.5.0",
    "prettier": "^2.8.4",
    "prettier-plugin-organize-imports": "^3.2.2",
    "ts-jest": "^29.0.5",
    "ts-node": "^10.9.1",
    "tsup": "^6.0.1",
    "typescript": "^4.9.5"
  }
}
