package.json 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. {
  2. "_from": "mini-css-extract-plugin@^2.5.3",
  3. "_id": "mini-css-extract-plugin@2.10.1",
  4. "_inBundle": false,
  5. "_integrity": "sha512-k7G3Y5QOegl380tXmZ68foBRRjE9Ljavx835ObdvmZjQ639izvZD8CS7BkWw1qKPPzHsGL/JDhl0uyU1zc2rJw==",
  6. "_location": "/mini-css-extract-plugin",
  7. "_phantomChildren": {
  8. "@types/json-schema": "7.0.15",
  9. "ajv-formats": "2.1.1",
  10. "fast-deep-equal": "3.1.3",
  11. "fast-uri": "3.1.0",
  12. "require-from-string": "2.0.2"
  13. },
  14. "_requested": {
  15. "type": "range",
  16. "registry": true,
  17. "raw": "mini-css-extract-plugin@^2.5.3",
  18. "name": "mini-css-extract-plugin",
  19. "escapedName": "mini-css-extract-plugin",
  20. "rawSpec": "^2.5.3",
  21. "saveSpec": null,
  22. "fetchSpec": "^2.5.3"
  23. },
  24. "_requiredBy": [
  25. "/@vue/cli-service"
  26. ],
  27. "_resolved": "https://registry.npmmirror.com/mini-css-extract-plugin/-/mini-css-extract-plugin-2.10.1.tgz",
  28. "_shasum": "a7f0bb890f4e1ce6dfc124bd1e6d6fcd3b359844",
  29. "_spec": "mini-css-extract-plugin@^2.5.3",
  30. "_where": "E:\\git\\2021项目\\安科院大屏\\node_modules\\@vue\\cli-service",
  31. "author": {
  32. "name": "Tobias Koppers @sokra"
  33. },
  34. "bugs": {
  35. "url": "https://github.com/webpack/mini-css-extract-plugin/issues"
  36. },
  37. "bundleDependencies": false,
  38. "dependencies": {
  39. "schema-utils": "^4.0.0",
  40. "tapable": "^2.2.1"
  41. },
  42. "deprecated": false,
  43. "description": "extracts CSS into separate files",
  44. "devDependencies": {
  45. "@babel/cli": "^7.24.1",
  46. "@babel/core": "^7.24.4",
  47. "@babel/preset-env": "^7.24.4",
  48. "@commitlint/cli": "^17.5.1",
  49. "@commitlint/config-conventional": "^17.4.4",
  50. "@types/node": "^18.15.11",
  51. "bootstrap": "^4.6.2",
  52. "cross-env": "^7.0.3",
  53. "cspell": "^6.31.1",
  54. "css-loader": "^6.10.0",
  55. "del": "^6.0.0",
  56. "del-cli": "^4.0.0",
  57. "es-check": "^7.1.0",
  58. "eslint": "^9.32.0",
  59. "eslint-config-webpack": "^4.4.2",
  60. "file-loader": "^6.2.0",
  61. "husky": "^7.0.0",
  62. "jest": "^28.1.3",
  63. "jest-environment-jsdom": "^28.1.3",
  64. "jsdom": "^19.0.0",
  65. "lint-staged": "^13.2.1",
  66. "memfs": "^3.4.13",
  67. "npm-run-all": "^4.1.5",
  68. "prettier": "^3.6.0",
  69. "prettier-2": "npm:prettier@^2",
  70. "sass": "^1.74.1",
  71. "sass-loader": "^12.6.0",
  72. "standard-version": "^9.3.0",
  73. "typescript": "^5.8.0",
  74. "webpack": "^5.102.0",
  75. "webpack-cli": "^4.9.2",
  76. "webpack-dev-server": "^5.2.1"
  77. },
  78. "engines": {
  79. "node": ">= 12.13.0"
  80. },
  81. "files": [
  82. "dist",
  83. "types"
  84. ],
  85. "funding": {
  86. "type": "opencollective",
  87. "url": "https://opencollective.com/webpack"
  88. },
  89. "homepage": "https://github.com/webpack/mini-css-extract-plugin",
  90. "keywords": [
  91. "webpack",
  92. "css",
  93. "extract",
  94. "hmr"
  95. ],
  96. "license": "MIT",
  97. "main": "dist/index.js",
  98. "name": "mini-css-extract-plugin",
  99. "peerDependencies": {
  100. "webpack": "^5.0.0"
  101. },
  102. "repository": {
  103. "type": "git",
  104. "url": "git+https://github.com/webpack/mini-css-extract-plugin.git"
  105. },
  106. "scripts": {
  107. "build": "npm-run-all -p \"build:**\"",
  108. "build:code": "cross-env NODE_ENV=production babel src -d dist --copy-files",
  109. "build:types": "tsc --declaration --emitDeclarationOnly --outDir types && prettier \"types/**/*.ts\" --write",
  110. "clean": "del-cli dist",
  111. "commitlint": "commitlint --from=main",
  112. "fix": "npm-run-all -l fix:code fix:prettier",
  113. "fix:code": "npm run lint:code -- --fix",
  114. "fix:prettier": "npm run lint:prettier -- --write",
  115. "lint": "npm-run-all -l -p \"lint:**\"",
  116. "lint:code": "eslint --cache .",
  117. "lint:es-check": "es-check es5 dist/hmr/hotModuleReplacement.js",
  118. "lint:prettier": "prettier \"{**/*,*}.{js,json,md,yml,css,ts}\" --list-different",
  119. "lint:spelling": "cspell \"**/*.*\"",
  120. "lint:types": "tsc --pretty --noEmit",
  121. "prebuild": "npm run clean",
  122. "prepare": "husky install && npm run build",
  123. "pretest": "npm run lint",
  124. "release": "standard-version",
  125. "security": "npm audit --production",
  126. "start": "npm run build -- -w",
  127. "test": "cross-env NODE_ENV=test npm run test:coverage",
  128. "test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage",
  129. "test:manual": "npm run build && webpack serve ./test/manual/src/index.js --open --config ./test/manual/webpack.config.js",
  130. "test:only": "cross-env NODE_ENV=test jest",
  131. "test:only:experimental": "EXPERIMENTAL_USE_IMPORT_MODULE=true cross-env NODE_ENV=test jest",
  132. "test:watch": "npm run test:only -- --watch"
  133. },
  134. "types": "types/index.d.ts",
  135. "version": "2.10.1"
  136. }