{
  "name": "tsconfig-paths-webpack-plugin",
  "version": "3.3.0",
  "description": "Load modules according to tsconfig paths in webpack.",
  "main": "lib/index.js",
  "types": "lib/index",
  "author": "Jonas Kello",
  "license": "MIT",
  "repository": "https://github.com/dividab/tsconfig-paths-webpack-plugin",
  "dependencies": {
    "chalk": "^2.3.0",
    "enhanced-resolve": "^4.0.0",
    "tsconfig-paths": "^3.4.0"
  },
  "devDependencies": {
    "@types/node": "^8.0.9",
    "husky": "^4.2.5",
    "lint-staged": "^10.2.11",
    "prettier": "^2.0.5",
    "rimraf": "^3.0.2",
    "ts-loader": "^2.2.2",
    "tslint": "^5.8.0",
    "tslint-immutable": "^6.0.1",
    "typescript": "^3.9.7",
    "webpack": "^4.44.0",
    "webpack-cli": "^3.3.12"
  },
  "scripts": {
    "compile:example": "tsc -p example",
    "example": "yarn build && cd example && webpack && node custom-fs.js",
    "build": "rimraf lib && tsc -p src",
    "lint": "tslint -t msbuild './src/**/*.ts{,x}' -e './src/node_modules/**/*'",
    "publish:major": "yarn run build && node scripts/publish.js major",
    "publish:minor": "yarn run build && node scripts/publish.js minor",
    "publish:patch": "yarn run build && node scripts/publish.js patch",
    "verify": "yarn build && yarn lint",
    "preversion": "yarn verify",
    "postversion": "git push --tags && yarn publish --new-version $npm_package_version && git push && echo \"Successfully released version $npm_package_version!\""
  },
  "lint-staged": {
    "*.{ts,tsx}": "tslint",
    "*.{ts,tsx,json,css}": [
      "prettier --write",
      "git add"
    ]
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  }
}
