UNPKG

1.54 kBJSONView Raw
1{
2 "name": "tsconfig-paths-webpack-plugin",
3 "version": "3.5.0",
4 "description": "Load modules according to tsconfig paths in webpack.",
5 "main": "lib/index.js",
6 "types": "lib/index",
7 "author": "Jonas Kello",
8 "license": "MIT",
9 "repository": "https://github.com/dividab/tsconfig-paths-webpack-plugin",
10 "dependencies": {
11 "chalk": "^4.1.0",
12 "enhanced-resolve": "^5.7.0",
13 "tsconfig-paths": "^3.9.0"
14 },
15 "devDependencies": {
16 "@types/jest": "^26.0.20",
17 "@types/node": "^14.14.34",
18 "husky": "^5.1.3",
19 "jest": "^26.6.3",
20 "jest-mock-process": "^1.4.0",
21 "lint-staged": "^10.5.4",
22 "prettier": "^2.2.1",
23 "rimraf": "^3.0.2",
24 "ts-jest": "^26.5.3",
25 "ts-loader": "^8.0.18",
26 "tslint": "^5.20.1",
27 "tslint-immutable": "^6.0.1",
28 "typescript": "^4.2.3",
29 "webpack": "^5.25.1",
30 "webpack-cli": "^4.5.0"
31 },
32 "scripts": {
33 "prepare": "husky install",
34 "compile:example": "tsc -p example",
35 "example": "yarn build && cd example && webpack && node custom-fs.js",
36 "build": "rimraf lib && tsc -p src/tsconfig.lib.json",
37 "lint": "tslint -t msbuild './src/**/*.ts{,x}' -e './src/node_modules/**/*'",
38 "test": "jest",
39 "verify": "yarn build && yarn lint",
40 "preversion": "yarn verify",
41 "postversion": "git push --tags && yarn publish --new-version $npm_package_version && git push && echo \"Successfully released version $npm_package_version!\""
42 },
43 "lint-staged": {
44 "*.{ts,tsx}": "tslint",
45 "*.{ts,tsx,json,css}": "prettier --write"
46 }
47}