package.json 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. {
  2. "name": "copy-webpack-plugin",
  3. "version": "9.1.0",
  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": ">= 12.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 --production",
  25. "lint:prettier": "prettier --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": "husky install && npm run build",
  34. "release": "standard-version"
  35. },
  36. "files": [
  37. "dist"
  38. ],
  39. "peerDependencies": {
  40. "webpack": "^5.1.0"
  41. },
  42. "dependencies": {
  43. "fast-glob": "^3.2.7",
  44. "glob-parent": "^6.0.1",
  45. "globby": "^11.0.3",
  46. "normalize-path": "^3.0.0",
  47. "schema-utils": "^3.1.1",
  48. "serialize-javascript": "^6.0.0"
  49. },
  50. "devDependencies": {
  51. "@babel/cli": "^7.14.8",
  52. "@babel/core": "^7.15.0",
  53. "@babel/preset-env": "^7.15.0",
  54. "@commitlint/cli": "^14.1.0",
  55. "@commitlint/config-conventional": "^14.1.0",
  56. "@webpack-contrib/eslint-config-webpack": "^3.0.0",
  57. "babel-jest": "^27.0.6",
  58. "cross-env": "^7.0.3",
  59. "del": "^6.0.0",
  60. "del-cli": "^4.0.1",
  61. "eslint": "^8.2.0",
  62. "eslint-config-prettier": "^8.3.0",
  63. "eslint-plugin-import": "^2.24.0",
  64. "file-loader": "^6.2.0",
  65. "husky": "^7.0.1",
  66. "is-gzip": "^2.0.0",
  67. "jest": "^27.0.6",
  68. "lint-staged": "^11.1.2",
  69. "memfs": "^3.2.2",
  70. "mkdirp": "^1.0.4",
  71. "npm-run-all": "^4.1.5",
  72. "prettier": "^2.3.2",
  73. "standard-version": "^9.3.1",
  74. "webpack": "^5.50.0"
  75. },
  76. "keywords": [
  77. "webpack",
  78. "plugin",
  79. "transfer",
  80. "move",
  81. "copy"
  82. ]
  83. }