@umbrelladocs/rdformat-validator
Version:
Validate and fix Reviewdog Diagnostic Format (RD Format) - A comprehensive library and CLI tool for validating JSON data against the Reviewdog Diagnostic Format specification
127 lines (126 loc) • 3.72 kB
JSON
{
"name": "@umbrelladocs/rdformat-validator",
"version": "1.0.0",
"description": "Validate and fix Reviewdog Diagnostic Format (RD Format) - A comprehensive library and CLI tool for validating JSON data against the Reviewdog Diagnostic Format specification",
"author": {
"name": "Gaurav Nelson",
"url": "https://github.com/UmbrellaDocs/rdformat-validator"
},
"maintainers": [
{
"name": "Gaurav Nelson"
}
],
"main": "dist/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"bin": {
"rdformat-validator": "bin/rdformat-validator.js"
},
"scripts": {
"build": "npm run build:cjs && npm run build:esm && npm run build:cli",
"build:cjs": "tsc",
"build:esm": "tsc -p tsconfig.esm.json && node scripts/fix-esm-imports.js",
"build:cli": "npm run build:cjs && node scripts/prepare-cli.js",
"prebuild": "rimraf dist",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --watchAll=false",
"lint": "eslint src/**/*.ts --max-warnings 200",
"lint:fix": "eslint src/**/*.ts --fix --max-warnings 200",
"lint:strict": "eslint src/**/*.ts",
"lint:ci": "eslint src/**/*.ts --config eslint.config.ci.js",
"type-check": "tsc --noEmit",
"build:check": "tsc --noEmit",
"validate": "npm run type-check && npm run test",
"validate:full": "npm run type-check && npm run lint && npm run test",
"clean": "rimraf dist",
"dev": "ts-node src/index.ts",
"start": "node dist/index.js",
"prepublishOnly": "npm run validate && npm run build",
"postpublish": "echo 'Package published successfully!'",
"preversion": "npm run validate",
"postversion": "git push && git push --tags",
"release": "semantic-release",
"release:dry": "semantic-release --dry-run",
"release:debug": "semantic-release --debug",
"release:local": "semantic-release --extends ./.releaserc.local.json --dry-run"
},
"keywords": [
"reviewdog",
"validator",
"diagnostic",
"format",
"json",
"linter",
"cli",
"rdformat",
"validation",
"typescript",
"nodejs",
"code-quality",
"static-analysis",
"json-schema"
],
"categories": [
"Linters",
"Other"
],
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UmbrellaDocs/rdformat-validator.git"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/UmbrellaDocs"
},
"dependencies": {
"commander": "^14.0.0"
},
"devDependencies": {
"@eslint/js": "^9.31.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.3",
"@semantic-release/npm": "^12.0.2",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.15",
"@typescript-eslint/eslint-plugin": "^8.37.0",
"@typescript-eslint/parser": "^8.37.0",
"eslint": "^9.31.0",
"jest": "^30.0.4",
"rimraf": "^6.0.1",
"semantic-release": "^24.2.7",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"license": "Apache-2.0",
"files": [
"dist/",
"bin/",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"bugs": {
"url": "https://github.com/UmbrellaDocs/rdformat-validator/issues"
},
"homepage": "https://github.com/UmbrellaDocs/rdformat-validator#readme"
}