{
  "name": "another-json-rules-engine",
  "version": "0.5.4",
  "description": "Another Json Rules Engine: a flexible rules engine for validating JSON objects in Node.js and browser.",
  "main": "dist/index.cjs",
  "module": "dist/index.js",
  "type": "module",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    }
  },
  "files": [
    "dist",
    "README.md"
  ],
  "scripts": {
    "test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js",
    "build": "rollup -c",
    "prepublishOnly": "npm run build"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/ggerhardt/ajre-rules-engine"
  },
  "keywords": [
    "rules",
    "engine",
    "validator",
    "javascript",
    "browser",
    "nodejs"
  ],
  "author": "gustavo.gerhardt@gmail.com",
  "license": "MIT",
  "devDependencies": {
    "@rollup/plugin-commonjs": "^25.0.0",
    "@rollup/plugin-node-resolve": "^15.0.0",
    "jest": "^29.0.0",
    "rollup": "^4.0.0"
  },
  "dependencies": {
    "object-path": "^0.11.8"
  }
}
