package.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "tsconfig-paths-webpack-plugin",
  3. "version": "4.1.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": "^4.1.2"
  14. },
  15. "devDependencies": {
  16. "@types/jest": "^27.0.3",
  17. "@types/node": "^14.14.34",
  18. "@typescript-eslint/eslint-plugin": "^5.22.0",
  19. "@typescript-eslint/parser": "^5.22.0",
  20. "eslint": "^8.14.0",
  21. "eslint-config-prettier": "^8.5.0",
  22. "eslint-plugin-import": "^2.26.0",
  23. "eslint-plugin-jsdoc": "^39.2.9",
  24. "husky": "^5.1.3",
  25. "jest": "^27.3.1",
  26. "jest-mock-process": "^1.4.0",
  27. "lint-staged": "^10.5.4",
  28. "prettier": "^2.2.1",
  29. "rimraf": "^3.0.2",
  30. "ts-jest": "^27.0.7",
  31. "ts-loader": "^8.0.18",
  32. "typescript": "^4.2.3",
  33. "webpack": "^5.65.0",
  34. "webpack-cli": "^4.5.0"
  35. },
  36. "scripts": {
  37. "prepare": "husky install",
  38. "compile:example": "tsc -p examples/example",
  39. "example": "yarn build && cd examples/example && webpack && node custom-fs.js",
  40. "build": "rimraf lib && tsc -p .",
  41. "lint": "eslint \"./{src,tests}/**/*.ts{,x}\" --ext .js,.ts,.tsx -f visualstudio",
  42. "test": "jest",
  43. "test-coverage": "jest --coverage",
  44. "verify": "yarn build && yarn lint && yarn test-coverage",
  45. "preversion": "yarn verify",
  46. "postversion": "git push --tags && yarn publish --new-version $npm_package_version && git push && echo \"Successfully released version $npm_package_version!\""
  47. },
  48. "engines": {
  49. "node": ">=10.13.0"
  50. },
  51. "lint-staged": {
  52. "*.{ts,tsx}": "eslint",
  53. "*.{ts,tsx,json,css}": "prettier --write"
  54. }
  55. }