package.json 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. {
  2. "name": "copy-webpack-plugin",
  3. "version": "5.1.2",
  4. "description": "Copy files && directories with webpack",
  5. "license": "MIT",
  6. "repository": "webpack-contrib/copy-webpack-plugin",
  7. "author": "Len Boyette",
  8. "homepage": "https://github.com/webpack-contrib/copy-webpack-plugin",
  9. "bugs": "https://github.com/webpack-contrib/copy-webpack-plugin/issues",
  10. "funding": {
  11. "type": "opencollective",
  12. "url": "https://opencollective.com/webpack"
  13. },
  14. "main": "dist/cjs.js",
  15. "engines": {
  16. "node": ">= 6.9.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",
  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. "defaults": "webpack-defaults"
  36. },
  37. "files": [
  38. "dist"
  39. ],
  40. "peerDependencies": {
  41. "webpack": "^4.0.0 || ^5.0.0"
  42. },
  43. "dependencies": {
  44. "cacache": "^12.0.3",
  45. "find-cache-dir": "^2.1.0",
  46. "glob-parent": "^3.1.0",
  47. "globby": "^7.1.1",
  48. "is-glob": "^4.0.1",
  49. "loader-utils": "^1.2.3",
  50. "minimatch": "^3.0.4",
  51. "normalize-path": "^3.0.0",
  52. "p-limit": "^2.2.1",
  53. "schema-utils": "^1.0.0",
  54. "serialize-javascript": "^4.0.0",
  55. "webpack-log": "^2.0.0"
  56. },
  57. "devDependencies": {
  58. "@babel/cli": "^7.7.5",
  59. "@babel/core": "^7.7.5",
  60. "@babel/preset-env": "^7.7.6",
  61. "@commitlint/cli": "^8.2.0",
  62. "@commitlint/config-conventional": "^8.2.0",
  63. "@webpack-contrib/defaults": "^6.2.0",
  64. "@webpack-contrib/eslint-config-webpack": "^3.0.0",
  65. "babel-jest": "^24.9.0",
  66. "commitlint-azure-pipelines-cli": "^1.0.2",
  67. "cross-env": "^5.2.1",
  68. "del": "^4.1.1",
  69. "del-cli": "^1.1.0",
  70. "enhanced-resolve": "^4.1.1",
  71. "eslint": "^6.7.2",
  72. "eslint-config-prettier": "^6.7.0",
  73. "eslint-plugin-import": "^2.19.1",
  74. "husky": "^3.1.0",
  75. "is-gzip": "^2.0.0",
  76. "jest": "^24.9.0",
  77. "jest-junit": "^10.0.0",
  78. "lint-staged": "^9.5.0",
  79. "memfs": "^3.0.1",
  80. "mkdirp": "^0.5.1",
  81. "npm-run-all": "^4.1.5",
  82. "prettier": "^1.19.1",
  83. "standard-version": "^7.0.1",
  84. "webpack": "^4.41.2"
  85. },
  86. "keywords": [
  87. "webpack",
  88. "plugin",
  89. "transfer",
  90. "move",
  91. "copy"
  92. ]
  93. }