{
  "name": "tsconfig-paths-webpack-plugin",
  "version": "3.2.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/colors": "^1.1.3",
    "@types/lodash": "^4.14.68",
    "@types/node": "^8.0.9",
    "husky": "^0.14.3",
    "lint-staged": "^6.0.0",
    "rimraf": "^2.6.2",
    "shelljs": "^0.7.8",
    "ts-loader": "^2.2.2",
    "ts-node": "^6.0.3",
    "tslint": "^5.8.0",
    "tslint-immutable": "^4.4.0",
    "typescript": "^2.4.1",
    "webpack": "^4.1.1",
    "webpack-cli": "^2.0.11"
  },
  "scripts": {
    "precommit": "lint-staged",
    "compile": "tsc -p src",
    "compile:tests": "tsc -p tests",
    "compile:example": "tsc -p example",
    "example": "yarn build && cd example && webpack",
    "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"
  },
  "lint-staged": {
    "*.{ts,tsx}": "tslint",
    "*.{ts,tsx,json,css}": ["prettier --write", "git add"]
  }
}
