{
    "name": "@flamesshield/rules-engine",
    "version": "1.4.0",
    "description": "Independent rules engine for security analysis of Firebase",
    "type": "module",
    "main": "dist/index.js",
    "types": "dist/index.d.ts",
    "files": [
        "dist/**/*"
    ],
    "scripts": {
        "build": "tsc",
        "dev": "tsc --watch",
        "test": "jest",
        "lint": "eslint src/**/*.ts",
        "prepublishOnly": "npm run build",
        "clean": "rm -rf dist",
        "deploy-rules": "node scripts/deploy-rules.js"
    },
    "keywords": [
        "security",
        "rules-engine",
        "static-analysis",
        "sarif",
        "scanning"
    ],
    "author": "Fireshield Team",
    "license": "MIT",
    "publishConfig": {
        "access": "public"
    },
    "repository": {
        "type": "git",
        "url": "git+https://github.com/Safetorun/flameshield-app.git"
    },
    "dependencies": {
        "json-rules-engine": "^6.5.0",
        "lodash.get": "^4.4.2"
    },
    "devDependencies": {
        "@types/jest": "^29.0.0",
        "@types/lodash.get": "^4.4.9",
        "@types/node": "^18.0.0",
        "@typescript-eslint/eslint-plugin": "^6.0.0",
        "@typescript-eslint/parser": "^6.0.0",
        "eslint": "^8.0.0",
        "firebase-admin": "^13.4.0",
        "jest": "^29.0.0",
        "ts-jest": "^29.0.0",
        "typescript": "^5.0.0"
    },
    "exports": {
        ".": {
            "types": "./dist/index.d.ts",
            "default": "./dist/index.js"
        },
        "./types": {
            "types": "./dist/types/index.d.ts",
            "default": "./dist/types/index.js"
        }
    }
}
