{
  "name": "danger",
  "version": "10.8.0",
  "description": "Unit tests for Team Culture",
  "main": "distribution/danger.js",
  "typings": "distribution/danger.d.ts",
  "bin": {
    "danger": "distribution/commands/danger.js",
    "danger-js": "distribution/commands/danger.js",
    "danger-pr": "distribution/commands/danger-pr.js",
    "danger-runner": "distribution/commands/danger-runner.js",
    "danger-process": "distribution/commands/danger-process.js",
    "danger-ci": "distribution/commands/danger-ci.js",
    "danger-init": "distribution/commands/danger-init.js",
    "danger-local": "distribution/commands/danger-local.js",
    "danger-reset-status": "distribution/commands/danger-reset-status.js"
  },
  "jest": {
    "preset": "ts-jest",
    "testResultsProcessor": "jest-json-reporter",
    "testPathIgnorePatterns": [
      "/node_modules/",
      "/distribution/",
      "/types/"
    ],
    "watchPathIgnorePatterns": [
      "<rootDir>/test-results.json"
    ],
    "cacheDirectory": ".jest/cache"
  },
  "lint-staged": {
    "*.@(json|md)": [
      "yarn prettier --write",
      "git add"
    ],
    "*.@(ts|tsx)": [
      "tslint --fix",
      "yarn prettier --write",
      "git add"
    ]
  },
  "pkg": {
    "scripts": "distribution/**/*.js"
  },
  "prettier": {
    "printWidth": 120,
    "semi": false,
    "singleQuote": false,
    "trailingComma": "es5",
    "bracketSpacing": true,
    "proseWrap": "always"
  },
  "scripts": {
    "release": "release-it",
    "test": "jest",
    "test:fixtures": "node ./scripts/run-fixtures.js",
    "test:update-fixtures": "yarn test:fixtures --update",
    "test:watch": "jest --watch",
    "lint": "tslint \"source/**/*.ts\"",
    "lint:fix": "tslint \"source/**/*.ts\" --fix",
    "prepublishOnly": "yarn build && yarn jest && yarn declarations && yarn build:flow-types && yarn build:pretty-types",
    "build": "shx rm -rf ./distribution && tsc -p tsconfig.production.json && madge ./distribution --circular",
    "build:fast": "tsc -p tsconfig.production.json",
    "build:flow-types": "cp source/danger.d.ts source/_danger.d.ts && sed -ie 's/api: GitHub/api: any/g' source/_danger.d.ts && npx flowgen@1.3.0 source/_danger.d.ts -o distribution/danger.js.flow && node scripts/update_flow_types.js",
    "build:schemas": "typescript-json-schema tsconfig.json DangerJSON > source/danger-incoming-process-schema.json; typescript-json-schema tsconfig.json DangerResults > source/danger-outgoing-process-schema.json; yarn prettier --write source/danger-outgoing-process-schema.json source/danger-incoming-process-schema.json",
    "build:pretty-types": "yarn prettier --write distribution/danger.d.ts; yarn prettier --parser flow distribution/danger.js.flow --write",
    "build:watch": "tsc -w",
    "link": "yarn run build && chmod +x distribution/commands/danger.js && yarn link",
    "package": "yarn run build; yarn run pkg . --output brew-distribution/danger; zip -j brew-distribution/danger-macos.zip brew-distribution/danger; shasum -a 256 brew-distribution/danger-macos.zip",
    "declarations": "ts-node ./scripts/create-danger-dts.ts",
    "docs:cp_defs": "mkdir docs/docs_generate; cp source/danger.d.ts docs/docs_generate; cp node_modules/@octokit/rest/index.d.ts docs/docs_generate/github.d.ts",
    "docs": "yarn run docs:cp_defs; yarn typedoc --ignoreCompilerErrors --mode modules --json docs/js_ref_dsl_docs.json --includeDeclarations source",
    "dts-lint": "yarn run declarations && yarn dtslint types",
    "danger:prepush": "yarn build:fast; yarn test:fixtures; node distribution/commands/danger.js local --base main --dangerfile dangerfile.lite.ts"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/danger/danger-js.git"
  },
  "keywords": [
    "danger",
    "ci"
  ],
  "author": "Orta Therox",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/danger/danger-js/issues"
  },
  "homepage": "https://github.com/danger/danger-js#readme",
  "devDependencies": {
    "@babel/cli": "7.1.2",
    "@babel/core": "7.1.2",
    "@babel/plugin-transform-flow-strip-types": "7.0.0",
    "@babel/plugin-transform-typescript": "7.1.0",
    "@babel/preset-env": "7.1.0",
    "@babel/traverse": "7.1.0",
    "@types/async-retry": "^1.4.1",
    "@types/debug": "0.0.30",
    "@types/get-stdin": "^5.0.1",
    "@types/http-proxy-agent": "^2.0.1",
    "@types/jest": "^24.0.11",
    "@types/json5": "^0.0.30",
    "@types/jsonwebtoken": "^7.2.8",
    "@types/lodash.includes": "^4.3.4",
    "@types/lodash.mapvalues": "^4.6.6",
    "@types/lodash.memoize": "^4.1.3",
    "@types/micromatch": "^3.1.0",
    "@types/nock": "^10.0.3",
    "@types/node": "^10.11.3",
    "@types/node-fetch": "^2.1.2",
    "@types/p-limit": "^2.0.0",
    "@types/prettier": "^1.16.1",
    "@types/readline-sync": "^1.4.3",
    "@types/voca": "^1.4.0",
    "danger-plugin-jest": "^1.0.1",
    "danger-plugin-yarn": "^1.3.1",
    "date-fns": "^1.29.0",
    "flow-bin": "^0.77.0",
    "husky": "^1.0.1",
    "jest": "^24.0.0",
    "jest-json-reporter": "^1.2.2",
    "lint-staged": "^7.3.0",
    "madge": "^3.2.0",
    "nock": "^10.0.6",
    "pkg": "^4.4.2",
    "prettier": "^1.14.2",
    "release-it": "^13.5.2",
    "shx": "^0.3.2",
    "ts-jest": "^24.0.2",
    "ts-node": "^8.0.2",
    "tslint": "^5.11.0",
    "tslint-config-prettier": "^1.15.0",
    "typedoc": "0.9.0",
    "typescript": "^3.9.7",
    "typescript-json-schema": "^0.32.0"
  },
  "dependencies": {
    "@babel/polyfill": "^7.2.5",
    "@octokit/rest": "^16.43.1",
    "async-retry": "1.2.3",
    "chalk": "^2.3.0",
    "commander": "^2.18.0",
    "debug": "^4.1.1",
    "fast-json-patch": "^3.0.0-1",
    "get-stdin": "^6.0.0",
    "gitlab": "^10.0.1",
    "http-proxy-agent": "^2.1.0",
    "https-proxy-agent": "^2.2.1",
    "hyperlinker": "^1.0.0",
    "json5": "^2.1.0",
    "jsonpointer": "^5.0.0",
    "jsonwebtoken": "^8.4.0",
    "lodash.find": "^4.6.0",
    "lodash.includes": "^4.3.0",
    "lodash.isobject": "^3.0.2",
    "lodash.keys": "^4.0.8",
    "lodash.mapvalues": "^4.6.0",
    "lodash.memoize": "^4.1.2",
    "memfs-or-file-map-to-github-branch": "^1.1.0",
    "micromatch": "^4.0.4",
    "node-cleanup": "^2.1.2",
    "node-fetch": "2.6.1",
    "override-require": "^1.1.1",
    "p-limit": "^2.1.0",
    "parse-diff": "^0.7.0",
    "parse-git-config": "^2.0.3",
    "parse-github-url": "^1.0.2",
    "parse-link-header": "^2.0.0",
    "pinpoint": "^1.1.0",
    "prettyjson": "^1.2.1",
    "readline-sync": "^1.4.9",
    "require-from-string": "^2.0.2",
    "supports-hyperlinks": "^1.0.1"
  },
  "optionalDependencies": {},
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged",
      "pre-push": "yarn build; yarn danger:prepush"
    }
  }
}
