{
  "name": "danger-plugin-lint-report",
  "description": "This plugin reads checkstyle / lint reports and posts issues and violations as inline comments in pull requests.",
  "author": {
    "name": "Damian Burke",
    "email": "burkedamian@gmail.com"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/damian-burke/danger-plugin-lint-report.git"
  },
  "bugs": {
    "url": "https://github.com/damian-burke/danger-plugin-lint-report/issues"
  },
  "homepage": "https://github.com/damian-burke/danger-plugin-lint-report#readme",
  "keywords": [
    "danger",
    "danger-plugin"
  ],
  "version": "1.8.1",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "scripts": {
    "precommit": "lint-staged",
    "commit": "git-cz",
    "commitmsg": "validate-commit-msg",
    "build": "tsc",
    "test": "jest",
    "predocs": "rm -rf docs/",
    "prepublish": "yarn build",
    "semantic-release": "semantic-release pre && yarn publish && semantic-release post",
    "prettier": "prettier",
    "prettier-write": "yarn prettier --parser typescript --write",
    "prettier-project": "yarn prettier-write -- 'src/**/*.{ts,tsx}'",
    "lint": "tslint \"src/**/*.ts\""
  },
  "license": "MIT",
  "engines": {
    "node": ">=12.0.0"
  },
  "devDependencies": {
    "@types/jest": "^27.0.1",
    "commitizen": "^4.2.4",
    "cz-conventional-changelog": "^3.3.0",
    "danger": "^10.6.6",
    "husky": "^7.0.1",
    "jest": "^27.0.6",
    "lint-staged": "^11.1.2",
    "prettier": "^2.3.2",
    "semantic-release": "^17.4.5",
    "ts-jest": "^27.0.5",
    "tslint": "^5.20.1",
    "typescript": "^4.3.5",
    "validate-commit-msg": "^2.12.1"
  },
  "config": {
    "commitizen": {
      "path": "cz-conventional-changelog"
    }
  },
  "lint-staged": {
    "*.@(ts|tsx)": [
      "tslint --fix",
      "yarn prettier-write --",
      "git add"
    ]
  },
  "jest": {
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js"
    ],
    "transform": {
      ".(ts|tsx)": "ts-jest"
    },
    "testRegex": "(.test)\\.(ts|tsx)$",
    "testPathIgnorePatterns": [
      "\\.snap$",
      "<rootDir>/node_modules/"
    ]
  },
  "dependencies": {
    "@types/node": "^16.6.1",
    "glob": "^7.1.7",
    "xml-js": "^1.6.11"
  },
  "packageManager": "yarn@3.0.1-rc.2"
}