{
  "name": "@syntropysoft/praetorian",
  "version": "0.0.2-alpha.4",
  "description": "Praetorian CLI – A universal multi-environment configuration validator for DevSecOps teams. Validate, compare, and secure YAML/ENV files with ease.",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "praetorian": "dist/cli.js"
  },
  "oclif": {
    "bin": "praetorian",
    "dirname": "dist",
    "commands": "./dist/commands",
    "plugins": [
      "@oclif/plugin-help"
    ]
  },
  "scripts": {
    "build": "tsc",
    "dev": "tsx src/presentation/cli/simple-cli.ts",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "test:integration": "jest tests/integration/",
    "test:mutation": "stryker run",
    "clean:tmp": "node scripts/clean-tmp.js",
    "clean": "rm -rf dist && npm run clean:tmp",
    "lint": "eslint src/**/*.ts",
    "format": "prettier --write src/**/*.ts",
    "prepublishOnly": "npm run clean && npm run build"
  },
  "keywords": [
    "praetorian",
    "config-validator",
    "yaml-checker",
    "cli-tool",
    "devsecops",
    "configuration",
    "validation",
    "security",
    "audit",
    "syntropysoft",
    "yaml",
    "json",
    "env",
    "multi-environment",
    "configuration-management"
  ],
  "author": "SyntropySoft",
  "license": "Apache-2.0",
  "repository": {
    "type": "git",
    "url": "https://github.com/syntropysoft/praetorian.git"
  },
  "bugs": {
    "url": "https://github.com/syntropysoft/praetorian/issues"
  },
  "homepage": "https://github.com/syntropysoft/praetorian#readme",
  "files": [
    "dist",
    "examples",
    "README.md",
    "LICENSE"
  ],
  "devDependencies": {
    "@stryker-mutator/jest-runner": "^8.7.1",
    "@types/inquirer": "^9.0.8",
    "@types/jest": "^30.0.0",
    "@types/js-yaml": "^4.0.9",
    "@types/node": "^18.0.0",
    "@typescript-eslint/eslint-plugin": "^6.0.0",
    "@typescript-eslint/parser": "^6.0.0",
    "eslint": "^8.0.0",
    "jest": "^30.0.5",
    "jest-environment-node": "^30.0.5",
    "prettier": "^3.0.0",
    "ts-jest": "^29.4.0",
    "tsx": "^4.0.0",
    "typescript": "^5.0.0"
  },
  "dependencies": {
    "@oclif/core": "^4.5.2",
    "@oclif/plugin-help": "^6.2.32",
    "chalk": "^4.1.2",
    "inquirer": "^8.2.6",
    "yaml": "^2.3.0"
  },
  "engines": {
    "node": ">=18.0.0"
  }
}
