package.json 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. {
  2. "name": "copy-webpack-plugin",
  3. "version": "10.2.4",
  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/index.js",
  15. "types": "types/index.d.ts",
  16. "engines": {
  17. "node": ">= 12.20.0"
  18. },
  19. "scripts": {
  20. "start": "npm run build -- -w",
  21. "clean": "del-cli dist types",
  22. "prebuild": "npm run clean",
  23. "build:types": "tsc --declaration --emitDeclarationOnly --outDir types --rootDir src && prettier \"types/**/*.ts\" --write",
  24. "build:code": "cross-env NODE_ENV=production babel src -d dist --copy-files",
  25. "build": "npm-run-all -p \"build:**\"",
  26. "commitlint": "commitlint --from=master",
  27. "security": "npm audit --production",
  28. "lint:prettier": "prettier --list-different .",
  29. "lint:js": "eslint --cache .",
  30. "lint:types": "tsc --pretty --noEmit",
  31. "lint": "npm-run-all -l -p \"lint:**\"",
  32. "test:only": "cross-env NODE_ENV=test jest",
  33. "test:watch": "npm run test:only -- --watch",
  34. "test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage",
  35. "pretest": "npm run lint",
  36. "test": "npm run test:coverage",
  37. "prepare": "husky install && npm run build",
  38. "release": "standard-version"
  39. },
  40. "files": [
  41. "dist",
  42. "types"
  43. ],
  44. "peerDependencies": {
  45. "webpack": "^5.1.0"
  46. },
  47. "dependencies": {
  48. "fast-glob": "^3.2.7",
  49. "glob-parent": "^6.0.1",
  50. "globby": "^12.0.2",
  51. "normalize-path": "^3.0.0",
  52. "schema-utils": "^4.0.0",
  53. "serialize-javascript": "^6.0.0"
  54. },
  55. "devDependencies": {
  56. "@babel/cli": "^7.16.7",
  57. "@babel/core": "^7.16.7",
  58. "@babel/eslint-parser": "^7.16.5",
  59. "@babel/preset-env": "^7.16.7",
  60. "@commitlint/cli": "^15.0.0",
  61. "@commitlint/config-conventional": "^15.0.0",
  62. "@types/glob-parent": "^5.1.1",
  63. "@types/normalize-path": "^3.0.0",
  64. "@types/serialize-javascript": "^5.0.2",
  65. "@webpack-contrib/eslint-config-webpack": "^3.0.0",
  66. "babel-jest": "^27.4.5",
  67. "cross-env": "^7.0.3",
  68. "del": "^6.0.0",
  69. "del-cli": "^4.0.1",
  70. "eslint": "^8.6.0",
  71. "eslint-config-prettier": "^8.3.0",
  72. "eslint-plugin-import": "^2.25.4",
  73. "file-loader": "^6.2.0",
  74. "husky": "^7.0.1",
  75. "is-gzip": "^2.0.0",
  76. "jest": "^27.4.5",
  77. "lint-staged": "^12.1.5",
  78. "memfs": "^3.4.1",
  79. "mkdirp": "^1.0.4",
  80. "npm-run-all": "^4.1.5",
  81. "prettier": "^2.3.2",
  82. "standard-version": "^9.3.1",
  83. "typescript": "^4.5.4",
  84. "webpack": "^5.64.1"
  85. },
  86. "keywords": [
  87. "webpack",
  88. "plugin",
  89. "transfer",
  90. "move",
  91. "copy"
  92. ]
  93. }