package.json 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. {
  2. "name": "copy-webpack-plugin",
  3. "version": "12.0.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/index.js",
  15. "types": "types/index.d.ts",
  16. "engines": {
  17. "node": ">= 18.12.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 --cache --list-different .",
  29. "lint:js": "eslint --cache .",
  30. "lint:spelling": "cspell --cache --no-must-find-files --quiet \"**/*.*\"",
  31. "lint:types": "tsc --pretty --noEmit",
  32. "lint": "npm-run-all -l -p \"lint:**\"",
  33. "fix:js": "npm run lint:js -- --fix",
  34. "fix:prettier": "npm run lint:prettier -- --write",
  35. "fix": "npm-run-all -l fix:js fix:prettier",
  36. "test:only": "cross-env NODE_ENV=test jest",
  37. "test:watch": "npm run test:only -- --watch",
  38. "test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage",
  39. "pretest": "npm run lint",
  40. "test": "npm run test:coverage",
  41. "prepare": "husky install && npm run build",
  42. "release": "standard-version"
  43. },
  44. "files": [
  45. "dist",
  46. "types"
  47. ],
  48. "peerDependencies": {
  49. "webpack": "^5.1.0"
  50. },
  51. "dependencies": {
  52. "fast-glob": "^3.3.2",
  53. "glob-parent": "^6.0.1",
  54. "globby": "^14.0.0",
  55. "normalize-path": "^3.0.0",
  56. "schema-utils": "^4.2.0",
  57. "serialize-javascript": "^6.0.2"
  58. },
  59. "devDependencies": {
  60. "@babel/cli": "^7.23.4",
  61. "@babel/core": "^7.23.7",
  62. "@babel/eslint-parser": "^7.23.3",
  63. "@babel/preset-env": "^7.23.7",
  64. "@commitlint/cli": "^18.4.4",
  65. "@commitlint/config-conventional": "^18.4.4",
  66. "@types/glob-parent": "^5.1.3",
  67. "@types/node": "^20.10.8",
  68. "@types/normalize-path": "^3.0.2",
  69. "@types/serialize-javascript": "^5.0.4",
  70. "@webpack-contrib/eslint-config-webpack": "^3.0.0",
  71. "babel-jest": "^29.7.0",
  72. "cross-env": "^7.0.3",
  73. "cspell": "^8.3.2",
  74. "del": "^6.1.1",
  75. "del-cli": "^5.1.0",
  76. "eslint": "^8.56.0",
  77. "eslint-config-prettier": "^9.1.0",
  78. "eslint-plugin-import": "^2.29.1",
  79. "file-loader": "^6.2.0",
  80. "husky": "^8.0.3",
  81. "is-gzip": "^2.0.0",
  82. "jest": "^29.7.0",
  83. "lint-staged": "^15.2.0",
  84. "memfs": "^4.6.0",
  85. "npm-run-all": "^4.1.5",
  86. "prettier": "^3.1.1",
  87. "standard-version": "^9.3.1",
  88. "typescript": "^5.3.3",
  89. "webpack": "^5.89.0"
  90. },
  91. "keywords": [
  92. "webpack",
  93. "plugin",
  94. "transfer",
  95. "move",
  96. "copy"
  97. ]
  98. }