package.json 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. {
  2. "name": "fork-ts-checker-webpack-plugin",
  3. "version": "6.5.3",
  4. "description": "Runs typescript type checker and linter on separate process.",
  5. "keywords": [
  6. "fast",
  7. "fork",
  8. "linter",
  9. "webpack",
  10. "plugin",
  11. "ts-loader",
  12. "typescript",
  13. "webpack"
  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://blog.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. },
  43. "husky": {
  44. "hooks": {
  45. "pre-commit": "lint-staged && yarn build && yarn test:unit",
  46. "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
  47. }
  48. },
  49. "commitlint": {
  50. "extends": [
  51. "@commitlint/config-conventional"
  52. ]
  53. },
  54. "lint-staged": {
  55. "*.ts": "eslint --fix"
  56. },
  57. "config": {
  58. "commitizen": {
  59. "path": "cz-conventional-changelog"
  60. }
  61. },
  62. "dependencies": {
  63. "@babel/code-frame": "^7.8.3",
  64. "@types/json-schema": "^7.0.5",
  65. "chalk": "^4.1.0",
  66. "chokidar": "^3.4.2",
  67. "cosmiconfig": "^6.0.0",
  68. "deepmerge": "^4.2.2",
  69. "fs-extra": "^9.0.0",
  70. "glob": "^7.1.6",
  71. "memfs": "^3.1.2",
  72. "minimatch": "^3.0.4",
  73. "schema-utils": "2.7.0",
  74. "semver": "^7.3.2",
  75. "tapable": "^1.0.0"
  76. },
  77. "peerDependencies": {
  78. "eslint": ">= 6",
  79. "typescript": ">= 2.7",
  80. "webpack": ">= 4",
  81. "vue-template-compiler": "*"
  82. },
  83. "peerDependenciesMeta": {
  84. "eslint": {
  85. "optional": true
  86. },
  87. "vue-template-compiler": {
  88. "optional": true
  89. }
  90. },
  91. "devDependencies": {
  92. "@commitlint/config-conventional": "^11.0.0",
  93. "@semantic-release/commit-analyzer": "^8.0.1",
  94. "@semantic-release/exec": "^5.0.0",
  95. "@semantic-release/github": "^7.1.1",
  96. "@semantic-release/npm": "^7.0.6",
  97. "@semantic-release/release-notes-generator": "^9.0.1",
  98. "@types/babel__code-frame": "^7.0.2",
  99. "@types/cross-spawn": "^6.0.2",
  100. "@types/eslint": "^7.2.4",
  101. "@types/fs-extra": "^9.0.2",
  102. "@types/jest": "^26.0.14",
  103. "@types/minimatch": "^3.0.1",
  104. "@types/mock-fs": "^4.13.0",
  105. "@types/node": "^14.11.10",
  106. "@types/rimraf": "^3.0.0",
  107. "@types/semver": "^7.3.4",
  108. "@types/webpack": "^4.41.22",
  109. "@typescript-eslint/eslint-plugin": "^2.27.0",
  110. "@typescript-eslint/parser": "^2.27.0",
  111. "commitlint": "^11.0.0",
  112. "cross-env": "^7.0.2",
  113. "cross-spawn": "^7.0.3",
  114. "eslint": "^6.8.0",
  115. "eslint-config-prettier": "^6.13.0",
  116. "eslint-plugin-node": "^11.1.0",
  117. "eslint-plugin-prettier": "^3.1.4",
  118. "git-cz": "^4.7.1",
  119. "husky": "^4.3.0",
  120. "jest": "^26.5.3",
  121. "jest-circus": "^26.5.3",
  122. "jest-environment-node": "^26.5.2",
  123. "lint-staged": "^10.4.2",
  124. "mock-fs": "^4.13.0",
  125. "prettier": "^2.1.2",
  126. "rimraf": "^3.0.2",
  127. "semantic-release": "^17.2.1",
  128. "strip-ansi": "^6.0.0",
  129. "tree-kill": "^1.2.2",
  130. "ts-jest": "^26.4.1",
  131. "typescript": "^3.8.3",
  132. "webpack": "^4.42.1"
  133. },
  134. "engines": {
  135. "node": ">=10",
  136. "yarn": ">=1.0.0"
  137. }
  138. }