{
  "name": "danger-plugin-todos",
  "description": "A danger-js plugin to list all todos/fixmes/etc added/changed in a PR",
  "author": {
    "name": "Rohit Gohri",
    "email": "gohri.rohit@gmail.com"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/rohit-gohri/danger-plugin-todos.git"
  },
  "bugs": {
    "url": "https://github.com/rohit-gohri/danger-plugin-todos/issues"
  },
  "homepage": "https://github.com/rohit-gohri/danger-plugin-todos#readme",
  "keywords": [
    "danger",
    "danger-plugin",
    "todo",
    "fixme",
    "danger-js"
  ],
  "version": "1.3.1",
  "main": "dist/index.js",
  "types": "types/index.d.ts",
  "scripts": {
    "commit": "git-cz",
    "build": "tsc",
    "test": "jest",
    "predocs": "rm -rf docs/",
    "docs": "esdoc -c .esdoc.json",
    "prepare": "yarn build",
    "prettier-write": "prettier -- --parser typescript --no-semi --trailing-comma es5 --write --print-width 120",
    "prettier": "yarn prettier-write -- 'src/**/*.{ts,tsx}'",
    "lint": "tslint \"src/**/*.ts\""
  },
  "license": "MIT",
  "engines": {
    "node": ">=10.0.0"
  },
  "devDependencies": {
    "@types/jest": "^25.1.3",
    "@types/lodash": "^4.14.149",
    "@types/node": "^13.7.7",
    "commitizen": "^4.0.3",
    "cz-conventional-changelog": "^3.1.0",
    "danger": "*",
    "esdoc": "^1.1.0",
    "esdoc-standard-plugin": "^1.0.0",
    "husky": "^4.2.3",
    "jest": "^25.1.0",
    "lint-staged": "^10.0.8",
    "prettier": "^1.19.1",
    "semantic-release": "^17.0.4",
    "ts-jest": "^25.2.1",
    "tslint": "^6.0.0",
    "typescript": "^3.8.3",
    "validate-commit-msg": "^2.14.0"
  },
  "release": {
    "branches": [
      "main"
    ]
  },
  "config": {
    "commitizen": {
      "path": "cz-conventional-changelog"
    }
  },
  "lint-staged": {
    "*.@(ts|tsx)": [
      "tslint --fix",
      "yarn prettier-write --"
    ]
  },
  "jest": {
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js"
    ],
    "transform": {
      ".(ts|tsx)": "ts-jest"
    },
    "testRegex": "(.test)\\.(ts|tsx)$",
    "testPathIgnorePatterns": [
      "\\.snap$",
      "<rootDir>/node_modules/"
    ]
  },
  "dependencies": {
    "lodash": "^4.17.15"
  },
  "husky": {
    "hooks": {
      "commit-msg": "validate-commit-msg",
      "pre-commit": "lint-staged"
    }
  }
}
