{
  "name": "jest-spin-reporter",
  "version": "2.0.0",
  "description": "Test reporter for jest with progress spinner",
  "main": "./dist/main.js",
  "config": {
    "commitizen": {
      "path": "cz-conventional-changelog"
    }
  },
  "lint-staged": {
    "*.ts": [
      "prettier --write --single-quote --print-width 120 --jsx-bracket-same-line true --ignore-path ./src/lib/*.js",
      "tslint --fix",
      "git add"
    ]
  },
  "scripts": {
    "prepublishOnly": "npm-run-all build test",
    "test": "echo not",
    "lint": "tslint -c tslint.json -p tsconfig.json \"src/**/*.ts\" \"spec/**/*.ts\"",
    "lint:staged": "lint-staged",
    "build": "webpack --require ts-node/register",
    "commit": "git-cz -S",
    "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/kwonoj/jest-spin-reporter.git"
  },
  "keywords": [
    "Jest",
    "Reporter",
    "Spinner",
    "Progress"
  ],
  "author": "OJ Kwon <kwon.ohjoong@gmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/kwonoj/jest-spin-reporter/issues"
  },
  "homepage": "https://github.com/kwonoj/jest-spin-reporter#readme",
  "devDependencies": {
    "@commitlint/cli": "^8.1.0",
    "@commitlint/config-angular": "^8.1.0",
    "@types/chalk": "^2.2.0",
    "@types/cli-spinners": "^1.3.0",
    "@types/jest": "^24.0.17",
    "@types/node": "^12.7.1",
    "chalk": "^2.4.2",
    "commitizen": "^4.0.3",
    "conventional-changelog": "^3.1.10",
    "conventional-changelog-cli": "^2.0.23",
    "generate-asset-webpack-plugin": "^0.3.0",
    "husky": "^3.0.3",
    "jest": "^24.8.0",
    "lint-staged": "^9.2.1",
    "npm-run-all": "^4.1.5",
    "prettier": "^1.18.2",
    "pretty-ms": "^5.0.0",
    "smart-spinner": "^1.0.1",
    "terser-webpack-plugin": "^1.4.1",
    "ts-loader": "^6.0.4",
    "ts-node": "^8.3.0",
    "tslint": "^5.18.0",
    "tslint-no-unused-expression-chai": "^0.1.4",
    "typescript": "^3.5.3",
    "webpack": "^4.39.2",
    "webpack-cli": "^3.3.6"
  },
  "dependencies": {},
  "husky": {
    "hooks": {
      "commit-msg": "commitlint -e",
      "pre-commit": "lint-staged",
      "pre-push": "npm-run-all build test"
    }
  }
}
