package.json 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. {
  2. "name": "thread-loader",
  3. "version": "3.0.4",
  4. "description": "Runs the following loaders in a worker pool",
  5. "license": "MIT",
  6. "repository": "webpack-contrib/thread-loader",
  7. "author": "Tobias Koppers @sokra",
  8. "homepage": "https://github.com/webpack-contrib/thread-loader",
  9. "bugs": "https://github.com/webpack-contrib/thread-loader/issues",
  10. "funding": {
  11. "type": "opencollective",
  12. "url": "https://opencollective.com/webpack"
  13. },
  14. "main": "dist/cjs.js",
  15. "engines": {
  16. "node": ">= 10.13.0"
  17. },
  18. "scripts": {
  19. "start": "npm run build -- -w",
  20. "clean": "del-cli dist",
  21. "prebuild": "npm run clean",
  22. "build": "cross-env NODE_ENV=production babel src -d dist --copy-files",
  23. "commitlint": "commitlint --from=master",
  24. "security": "npm audit",
  25. "lint:prettier": "prettier \"{**/*,*}.{js,json,md,yml,css,ts}\" --list-different",
  26. "lint:js": "eslint --cache .",
  27. "lint": "npm-run-all -l -p \"lint:**\"",
  28. "test:only": "cross-env NODE_ENV=test jest --forceExit",
  29. "test:watch": "npm run test:only -- --watch",
  30. "test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage",
  31. "pretest": "npm run lint",
  32. "test": "npm run test:coverage",
  33. "prepare": "npm run build",
  34. "release": "standard-version"
  35. },
  36. "files": [
  37. "dist"
  38. ],
  39. "peerDependencies": {
  40. "webpack": "^4.27.0 || ^5.0.0"
  41. },
  42. "dependencies": {
  43. "json-parse-better-errors": "^1.0.2",
  44. "loader-runner": "^4.1.0",
  45. "loader-utils": "^2.0.0",
  46. "neo-async": "^2.6.2",
  47. "schema-utils": "^3.0.0"
  48. },
  49. "devDependencies": {
  50. "@babel/cli": "^7.12.1",
  51. "@babel/core": "^7.12.3",
  52. "@babel/preset-env": "^7.12.1",
  53. "@commitlint/cli": "^11.0.0",
  54. "@commitlint/config-conventional": "^11.0.0",
  55. "@webpack-contrib/eslint-config-webpack": "^3.0.0",
  56. "babel-jest": "^26.6.1",
  57. "babel-loader": "^8.1.0",
  58. "cross-env": "^7.0.2",
  59. "css-loader": "^5.0.0",
  60. "del": "^5.1.0",
  61. "del-cli": "^3.0.1",
  62. "eslint": "^7.12.1",
  63. "eslint-config-prettier": "^6.14.0",
  64. "eslint-plugin-import": "^2.22.1",
  65. "husky": "^4.3.0",
  66. "jest": "^26.6.1",
  67. "lint-staged": "^10.5.0",
  68. "lodash": "^4.17.20",
  69. "memfs": "^3.2.0",
  70. "mini-css-extract-plugin": "^1.6.0",
  71. "nodemon": "^2.0.6",
  72. "npm-run-all": "^4.1.5",
  73. "postcss": "^8.2.14",
  74. "postcss-font-magician": "^3.0.0",
  75. "postcss-loader": "^5.2.0",
  76. "prettier": "^2.1.2",
  77. "sass": "^1.27.0",
  78. "sass-loader": "^11.0.1",
  79. "standard-version": "^9.0.0",
  80. "webpack": "^5.3.0"
  81. },
  82. "keywords": [
  83. "webpack"
  84. ]
  85. }