{
  "name": "@bartekbp/typescript-checkstyle",
  "version": "5.0.0",
  "description": "Library reporting tsc output in checkstyle format",
  "main": "dist/index.js",
  "bin": "dist/cli.js",
  "scripts": {
    "clean": "rimraf dist",
    "build": "tsc --project tsconfig.prod.json",
    "watch": "tsc --watch --project tsconfig.prod.json",
    "test": "jest",
    "check:eslint": "eslint \"src/**/*.ts\"",
    "fix:eslint": "eslint \"src/**/*.ts\" --fix",
    "check:types": "tsc --noEmit",
    "check:filenames": "ls-lint",
    "check:all": "npm-run-all -p check:types check:eslint check:filenames",
    "fix:all": "npm-run-all -p fix:eslint"
  },
  "files": [
    "dist"
  ],
  "types": "dist/index.d.ts",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/bartekbp/typescript-checkstyle.git"
  },
  "keywords": [
    "typescript",
    "tsc",
    "checkstyle",
    "formatter"
  ],
  "author": "Bartosz Polnik",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/bartekbp/typescript-checkstyle/issues"
  },
  "homepage": "https://github.com/bartekbp/typescript-checkstyle#readme",
  "devDependencies": {
    "@ls-lint/ls-lint": "^1.9.2",
    "@types/jest": "^26.0.20",
    "@types/lodash": "^4.14.168",
    "@types/node": "^14.14.22",
    "@types/yargs": "^15.0.12",
    "@typescript-eslint/eslint-plugin": "^4.14.0",
    "@typescript-eslint/parser": "^4.14.0",
    "eslint": "^7.18.0",
    "jest": "^26.6.3",
    "jest-xml-matcher": "^1.2.0",
    "npm-run-all": "^4.1.5",
    "rimraf": "^3.0.2",
    "ts-jest": "^26.4.4",
    "tsconfig-paths": "^3.9.0",
    "typescript": "^4.1.3"
  },
  "dependencies": {
    "@aivenio/tsc-output-parser": "^2.1.1",
    "checkstyle-formatter": "^1.1.0",
    "get-stdin": "^8.0.0",
    "yargs": "^16.2.0",
    "lodash": "^4.17.20"
  }
}
