UNPKG

1.45 kBJSONView Raw
1{
2 "name": "tsconfig-paths-webpack-plugin",
3 "version": "3.0.3",
4 "description": "Load modules according to tsconfig paths in webpack.",
5 "main": "index.js",
6 "author": "Jonas Kello",
7 "license": "MIT",
8 "repository": "https://github.com/dividab/tsconfig-paths-webpack-plugin",
9 "dependencies": {
10 "chalk": "^2.3.0",
11 "tsconfig-paths": "^3.2.0"
12 },
13 "devDependencies": {
14 "@types/colors": "^1.1.3",
15 "@types/lodash": "^4.14.68",
16 "@types/node": "^8.0.9",
17 "husky": "^0.14.3",
18 "lint-staged": "^6.0.0",
19 "rimraf": "^2.6.2",
20 "shelljs": "^0.7.8",
21 "ts-loader": "^2.2.2",
22 "ts-node": "^3.2.0",
23 "tslint": "^5.8.0",
24 "tslint-immutable": "^4.4.0",
25 "typescript": "^2.4.1",
26 "webpack": "^4.1.1",
27 "webpack-cli": "^2.0.11"
28 },
29 "scripts": {
30 "precommit": "lint-staged",
31 "compile": "tsc -p src",
32 "compile:tests": "tsc -p tests",
33 "compile:example": "tsc -p example",
34 "example": "yarn build && cd example && webpack",
35 "build": "rimraf lib && tsc -p src",
36 "lint":
37 "tslint -t msbuild './src/**/*.ts{,x}' -e './src/node_modules/**/*'",
38 "publish:major": "yarn run build && node scripts/publish.js major",
39 "publish:minor": "yarn run build && node scripts/publish.js minor",
40 "publish:patch": "yarn run build && node scripts/publish.js patch"
41 },
42 "lint-staged": {
43 "*.{ts,tsx}": "tslint",
44 "*.{ts,tsx,json,css}": ["prettier --write", "git add"]
45 }
46}