package.json 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. {
  2. "_from": "copy-webpack-plugin@^5.1.1",
  3. "_id": "copy-webpack-plugin@5.1.2",
  4. "_inBundle": false,
  5. "_integrity": "sha1-ioieHcr6bJHGzUvhrRWPHTgjuuI=",
  6. "_location": "/copy-webpack-plugin",
  7. "_phantomChildren": {
  8. "ajv": "6.12.6",
  9. "ajv-errors": "1.0.1",
  10. "ajv-keywords": "3.5.2",
  11. "array-union": "1.0.2",
  12. "commondir": "1.0.1",
  13. "dir-glob": "2.2.2",
  14. "glob": "7.1.7",
  15. "is-extglob": "2.1.1",
  16. "make-dir": "2.1.0",
  17. "p-limit": "2.3.0",
  18. "path-dirname": "1.0.2"
  19. },
  20. "_requested": {
  21. "type": "range",
  22. "registry": true,
  23. "raw": "copy-webpack-plugin@^5.1.1",
  24. "name": "copy-webpack-plugin",
  25. "escapedName": "copy-webpack-plugin",
  26. "rawSpec": "^5.1.1",
  27. "saveSpec": null,
  28. "fetchSpec": "^5.1.1"
  29. },
  30. "_requiredBy": [
  31. "/@vue/cli-service"
  32. ],
  33. "_resolved": "https://registry.nlark.com/copy-webpack-plugin/download/copy-webpack-plugin-5.1.2.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcopy-webpack-plugin%2Fdownload%2Fcopy-webpack-plugin-5.1.2.tgz",
  34. "_shasum": "8a889e1dcafa6c91c6cd4be1ad158f1d3823bae2",
  35. "_spec": "copy-webpack-plugin@^5.1.1",
  36. "_where": "D:\\bomanss\\ruoyi-ui\\node_modules\\@vue\\cli-service",
  37. "author": {
  38. "name": "Len Boyette"
  39. },
  40. "bugs": {
  41. "url": "https://github.com/webpack-contrib/copy-webpack-plugin/issues"
  42. },
  43. "bundleDependencies": false,
  44. "dependencies": {
  45. "cacache": "^12.0.3",
  46. "find-cache-dir": "^2.1.0",
  47. "glob-parent": "^3.1.0",
  48. "globby": "^7.1.1",
  49. "is-glob": "^4.0.1",
  50. "loader-utils": "^1.2.3",
  51. "minimatch": "^3.0.4",
  52. "normalize-path": "^3.0.0",
  53. "p-limit": "^2.2.1",
  54. "schema-utils": "^1.0.0",
  55. "serialize-javascript": "^4.0.0",
  56. "webpack-log": "^2.0.0"
  57. },
  58. "deprecated": false,
  59. "description": "Copy files && directories with webpack",
  60. "devDependencies": {
  61. "@babel/cli": "^7.7.5",
  62. "@babel/core": "^7.7.5",
  63. "@babel/preset-env": "^7.7.6",
  64. "@commitlint/cli": "^8.2.0",
  65. "@commitlint/config-conventional": "^8.2.0",
  66. "@webpack-contrib/defaults": "^6.2.0",
  67. "@webpack-contrib/eslint-config-webpack": "^3.0.0",
  68. "babel-jest": "^24.9.0",
  69. "commitlint-azure-pipelines-cli": "^1.0.2",
  70. "cross-env": "^5.2.1",
  71. "del": "^4.1.1",
  72. "del-cli": "^1.1.0",
  73. "enhanced-resolve": "^4.1.1",
  74. "eslint": "^6.7.2",
  75. "eslint-config-prettier": "^6.7.0",
  76. "eslint-plugin-import": "^2.19.1",
  77. "husky": "^3.1.0",
  78. "is-gzip": "^2.0.0",
  79. "jest": "^24.9.0",
  80. "jest-junit": "^10.0.0",
  81. "lint-staged": "^9.5.0",
  82. "memfs": "^3.0.1",
  83. "mkdirp": "^0.5.1",
  84. "npm-run-all": "^4.1.5",
  85. "prettier": "^1.19.1",
  86. "standard-version": "^7.0.1",
  87. "webpack": "^4.41.2"
  88. },
  89. "engines": {
  90. "node": ">= 6.9.0"
  91. },
  92. "files": [
  93. "dist"
  94. ],
  95. "funding": {
  96. "type": "opencollective",
  97. "url": "https://opencollective.com/webpack"
  98. },
  99. "homepage": "https://github.com/webpack-contrib/copy-webpack-plugin",
  100. "keywords": [
  101. "webpack",
  102. "plugin",
  103. "transfer",
  104. "move",
  105. "copy"
  106. ],
  107. "license": "MIT",
  108. "main": "dist/cjs.js",
  109. "name": "copy-webpack-plugin",
  110. "peerDependencies": {
  111. "webpack": "^4.0.0 || ^5.0.0"
  112. },
  113. "repository": {
  114. "type": "git",
  115. "url": "git+https://github.com/webpack-contrib/copy-webpack-plugin.git"
  116. },
  117. "scripts": {
  118. "build": "cross-env NODE_ENV=production babel src -d dist --copy-files",
  119. "clean": "del-cli dist",
  120. "commitlint": "commitlint --from=master",
  121. "defaults": "webpack-defaults",
  122. "lint": "npm-run-all -l -p \"lint:**\"",
  123. "lint:js": "eslint --cache .",
  124. "lint:prettier": "prettier \"{**/*,*}.{js,json,md,yml,css,ts}\" --list-different",
  125. "prebuild": "npm run clean",
  126. "prepare": "npm run build",
  127. "pretest": "npm run lint",
  128. "release": "standard-version",
  129. "security": "npm audit",
  130. "start": "npm run build -- -w",
  131. "test": "npm run test:coverage",
  132. "test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage",
  133. "test:only": "cross-env NODE_ENV=test jest",
  134. "test:watch": "npm run test:only -- --watch"
  135. },
  136. "version": "5.1.2"
  137. }