@syntropysoft/praetorian
Version:
Praetorian CLI – A universal multi-environment configuration validator for DevSecOps teams. Validate, compare, and secure YAML/ENV files with ease.
95 lines (94 loc) • 2.47 kB
JSON
{
"name": "@syntropysoft/praetorian",
"version": "0.0.4-alpha",
"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",
"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": "echo 'Linting skipped - eslint not configured'",
"format": "echo 'Formatting skipped - prettier not configured'",
"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/core": "^9.2.0",
"@stryker-mutator/jest-runner": "^9.2.0",
"@types/inquirer": "^9.0.8",
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^18.0.0",
"@types/xml2js": "^0.4.14",
"@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",
"toml": "^3.0.0",
"xml2js": "^0.6.2",
"yaml": "^2.3.0"
},
"engines": {
"node": ">=18.0.0"
}
}