{
  "name": "danger-plugin-rally",
  "description": "Tools for linking rally stories to pull requests",
  "author": {
    "name": "Nick Cacace",
    "email": "NickCacace@gmail.com"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/bearalliance/danger-plugin-rally.git"
  },
  "bugs": {
    "url": "https://github.com/bearalliance/danger-plugin-rally/issues"
  },
  "homepage": "https://github.com/bearalliance/danger-plugin-rally#readme",
  "keywords": [
    "danger",
    "danger-plugin",
    "rally"
  ],
  "version": "1.4.0",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "scripts": {
    "commit": "git-cz",
    "build": "tsc",
    "prepublishOnly": "rimraf dist/ && npm run build",
    "test": "npm run prettier:check && npm run lint && npm run test:unit",
    "test:unit": "jest",
    "prepublish": "npm run build",
    "prettier:fix": "prettier --write . --ignore-path .gitignore",
    "prettier:check": "prettier --check . --ignore-path .gitignore",
    "lint": "tslint \"src/**/*.ts\""
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged",
      "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
    }
  },
  "license": "MIT",
  "engines": {
    "node": ">=4.0.0"
  },
  "files": [
    "dist"
  ],
  "devDependencies": {
    "@commitlint/cli": "^8.3.5",
    "@commitlint/config-conventional": "8.3.0",
    "@types/jest": "^25.2.1",
    "commitizen": "^4.0.4",
    "cz-conventional-changelog": "^3.1.0",
    "danger": "*",
    "husky": "^4.2.5",
    "jest": "^25.3.0",
    "lint-staged": "^10.2.7",
    "prettier": "^2.0.4",
    "rimraf": "^3.0.2",
    "ts-jest": "^25.4.0",
    "ts-mockery": "^1.2.0",
    "tslint": "^6.1.1",
    "tslint-config-prettier": "^1.18.0",
    "typescript": "^3.6.4"
  },
  "config": {
    "commitizen": {
      "path": "cz-conventional-changelog"
    }
  },
  "lint-staged": {
    "*{ts,tsx}": [
      "tslint --fix",
      "prettier --write"
    ],
    "*{js,json,md}": [
      "prettier --write"
    ]
  },
  "jest": {
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js"
    ],
    "transform": {
      ".(ts|tsx)": "ts-jest"
    },
    "testRegex": "(.test)\\.(ts|tsx)$",
    "testPathIgnorePatterns": [
      "\\.snap$",
      "<rootDir>/node_modules/"
    ]
  }
}
