Files

48 lines
1.5 KiB
JSON

{
"name": "tsconfig-paths-webpack-plugin",
"version": "3.5.2",
"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": "^4.1.0",
"enhanced-resolve": "^5.7.0",
"tsconfig-paths": "^3.9.0"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^14.14.34",
"husky": "^5.1.3",
"jest": "^26.6.3",
"jest-mock-process": "^1.4.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.3",
"ts-loader": "^8.0.18",
"tslint": "^5.20.1",
"tslint-immutable": "^6.0.1",
"typescript": "^4.2.3",
"webpack": "^5.25.1",
"webpack-cli": "^4.5.0"
},
"scripts": {
"prepare": "husky install",
"compile:example": "tsc -p example",
"example": "yarn build && cd example && webpack && node custom-fs.js",
"build": "rimraf lib && tsc -p src/tsconfig.lib.json",
"lint": "tslint -t msbuild './src/**/*.ts{,x}' -e './src/node_modules/**/*'",
"test": "jest",
"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"
}
}