package.json 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. {
  2. "name": "fork-ts-checker-webpack-plugin",
  3. "version": "8.0.0",
  4. "description": "Runs typescript type checker and linter on separate process.",
  5. "keywords": [
  6. "webpack",
  7. "plugin",
  8. "typescript",
  9. "typecheck",
  10. "ts-loader",
  11. "webpack",
  12. "fork",
  13. "fast"
  14. ],
  15. "bugs": {
  16. "url": "https://github.com/TypeStrong/fork-ts-checker-webpack-plugin/issues"
  17. },
  18. "repository": {
  19. "type": "git",
  20. "url": "https://github.com/TypeStrong/fork-ts-checker-webpack-plugin.git"
  21. },
  22. "license": "MIT",
  23. "author": "Piotr Oleś <piotrek.oles@gmail.com>",
  24. "contributors": [
  25. "Piotr Oleś <piotrek.oles@gmail.com> (https://github.com/piotr-oles)",
  26. "John Reilly <johnny_reilly@hotmail.com> (https://johnnyreilly.com)"
  27. ],
  28. "files": [
  29. "lib"
  30. ],
  31. "main": "lib/index.js",
  32. "types": "lib/index.d.ts",
  33. "scripts": {
  34. "build": "cross-env rimraf lib && cross-env tsc --version && cross-env tsc",
  35. "lint": "cross-env eslint ./src ./test --ext .ts",
  36. "test": "yarn build && yarn test:unit && yarn test:e2e",
  37. "test:unit": "cross-env jest --config=test/unit/jest.config.js",
  38. "test:e2e": "npm pack && cross-env jest --config=test/e2e/jest.config.js --ci -i -b",
  39. "precommit": "cross-env lint-staged && yarn build && yarn test:unit",
  40. "commit": "cross-env git-cz",
  41. "semantic-release": "semantic-release",
  42. "prepare": "husky install"
  43. },
  44. "commitlint": {
  45. "extends": [
  46. "@commitlint/config-conventional"
  47. ]
  48. },
  49. "lint-staged": {
  50. "*.ts": "eslint --fix"
  51. },
  52. "config": {
  53. "commitizen": {
  54. "path": "cz-conventional-changelog"
  55. }
  56. },
  57. "dependencies": {
  58. "@babel/code-frame": "^7.16.7",
  59. "chalk": "^4.1.2",
  60. "chokidar": "^3.5.3",
  61. "cosmiconfig": "^7.0.1",
  62. "deepmerge": "^4.2.2",
  63. "fs-extra": "^10.0.0",
  64. "memfs": "^3.4.1",
  65. "minimatch": "^3.0.4",
  66. "node-abort-controller": "^3.0.1",
  67. "schema-utils": "^3.1.1",
  68. "semver": "^7.3.5",
  69. "tapable": "^2.2.1"
  70. },
  71. "peerDependencies": {
  72. "typescript": ">3.6.0",
  73. "webpack": "^5.11.0"
  74. },
  75. "devDependencies": {
  76. "@commitlint/config-conventional": "^16.0.0",
  77. "@semantic-release/commit-analyzer": "^8.0.1",
  78. "@semantic-release/exec": "^5.0.0",
  79. "@semantic-release/github": "^7.2.3",
  80. "@semantic-release/npm": "^7.1.3",
  81. "@semantic-release/release-notes-generator": "^9.0.3",
  82. "@types/babel__code-frame": "^7.0.3",
  83. "@types/cross-spawn": "^6.0.2",
  84. "@types/fs-extra": "^9.0.13",
  85. "@types/jest": "^27.4.0",
  86. "@types/json-schema": "^7.0.9",
  87. "@types/minimatch": "^3.0.5",
  88. "@types/mock-fs": "^4.13.1",
  89. "@types/node": "^16.4.13",
  90. "@types/rimraf": "^3.0.2",
  91. "@types/semver": "^7.3.9",
  92. "@typescript-eslint/eslint-plugin": "^5.10.1",
  93. "@typescript-eslint/parser": "^5.10.1",
  94. "commitlint": "^16.1.0",
  95. "cross-env": "^7.0.3",
  96. "eslint": "^8.8.0",
  97. "eslint-plugin-import": "^2.25.4",
  98. "eslint-plugin-node": "^11.1.0",
  99. "eslint-plugin-prettier": "^4.0.0",
  100. "git-cz": "^4.8.0",
  101. "husky": "^7.0.4",
  102. "jest": "^27.4.7",
  103. "jest-circus": "^27.4.6",
  104. "jest-environment-node": "^27.4.6",
  105. "json-schema": "^0.4.0",
  106. "karton": "^0.4.1",
  107. "lint-staged": "^11.1.2",
  108. "mock-fs": "^5.1.2",
  109. "prettier": "^2.5.1",
  110. "rimraf": "^3.0.2",
  111. "semantic-release": "^17.4.4",
  112. "strip-ansi": "^6.0.0",
  113. "ts-jest": "^27.1.3",
  114. "typescript": "^4.5.5",
  115. "webpack": "^5.67.0"
  116. },
  117. "engines": {
  118. "node": ">=12.13.0",
  119. "yarn": ">=1.0.0"
  120. }
  121. }