package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "copy-webpack-plugin",
  3. "version": "4.6.0",
  4. "description": "Copy files && directories with webpack",
  5. "author": "Len Boyette",
  6. "license": "MIT",
  7. "main": "dist/index.js",
  8. "engines": {
  9. "node": ">= 4"
  10. },
  11. "files": [
  12. "dist"
  13. ],
  14. "scripts": {
  15. "lint": "eslint src/ tests/",
  16. "prepare": "npm run build",
  17. "release": "standard-version",
  18. "pretest": "npm run lint && npm run build && npm run build:tests",
  19. "test": "mocha compiled_tests/",
  20. "build": "babel src/ --out-dir dist/",
  21. "build:tests": "babel tests/ --out-dir compiled_tests/ && rimraf compiled_tests/helpers && ncp tests/helpers compiled_tests/helpers && node scripts/createSpecialDirectory.js"
  22. },
  23. "dependencies": {
  24. "globby": "^7.1.1",
  25. "cacache": "^10.0.4",
  26. "find-cache-dir": "^1.0.0",
  27. "serialize-javascript": "^1.4.0",
  28. "is-glob": "^4.0.0",
  29. "loader-utils": "^1.1.0",
  30. "minimatch": "^3.0.4",
  31. "p-limit": "^1.0.0"
  32. },
  33. "devDependencies": {
  34. "babel-cli": "^6.8.0",
  35. "babel-preset-es2015": "^6.6.0",
  36. "chai": "^3.4.0",
  37. "enhanced-resolve": "^3.4.1",
  38. "eslint": "^2.9.0",
  39. "is-gzip": "^2.0.0",
  40. "mkdirp": "^0.5.1",
  41. "mocha": "^2.4.5",
  42. "ncp": "^2.0.0",
  43. "rimraf": "^2.6.2",
  44. "standard-version": "^4.2.0"
  45. },
  46. "homepage": "https://github.com/webpack-contrib/copy-webpack-plugin",
  47. "bugs": "https://github.com/webpack-contrib/copy-webpack-plugin/issues",
  48. "repository": "https://github.com/webpack-contrib/copy-webpack-plugin.git",
  49. "keywords": [
  50. "webpack",
  51. "plugin",
  52. "transfer",
  53. "move",
  54. "copy"
  55. ]
  56. }