package.json 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. {
  2. "_from": "mini-css-extract-plugin@^0.9.0",
  3. "_id": "mini-css-extract-plugin@0.9.0",
  4. "_inBundle": false,
  5. "_integrity": "sha1-R/LPB6oWWrNXM7H8l9TEbAVkM54=",
  6. "_location": "/mini-css-extract-plugin",
  7. "_phantomChildren": {
  8. "ajv": "6.12.6",
  9. "ajv-errors": "1.0.1",
  10. "ajv-keywords": "3.5.2",
  11. "object-assign": "4.1.1",
  12. "prepend-http": "1.0.4",
  13. "query-string": "4.3.4",
  14. "sort-keys": "1.1.2"
  15. },
  16. "_requested": {
  17. "type": "range",
  18. "registry": true,
  19. "raw": "mini-css-extract-plugin@^0.9.0",
  20. "name": "mini-css-extract-plugin",
  21. "escapedName": "mini-css-extract-plugin",
  22. "rawSpec": "^0.9.0",
  23. "saveSpec": null,
  24. "fetchSpec": "^0.9.0"
  25. },
  26. "_requiredBy": [
  27. "/@vue/cli-service"
  28. ],
  29. "_resolved": "https://registry.nlark.com/mini-css-extract-plugin/download/mini-css-extract-plugin-0.9.0.tgz",
  30. "_shasum": "47f2cf07aa165ab35733b1fc97d4c46c0564339e",
  31. "_spec": "mini-css-extract-plugin@^0.9.0",
  32. "_where": "D:\\bomanss\\ruoyi-ui\\node_modules\\@vue\\cli-service",
  33. "author": {
  34. "name": "Tobias Koppers @sokra"
  35. },
  36. "bugs": {
  37. "url": "https://github.com/webpack-contrib/mini-css-extract-plugin/issues"
  38. },
  39. "bundleDependencies": false,
  40. "dependencies": {
  41. "loader-utils": "^1.1.0",
  42. "normalize-url": "1.9.1",
  43. "schema-utils": "^1.0.0",
  44. "webpack-sources": "^1.1.0"
  45. },
  46. "deprecated": false,
  47. "description": "extracts CSS into separate files",
  48. "devDependencies": {
  49. "@babel/cli": "^7.7.5",
  50. "@babel/core": "^7.7.5",
  51. "@babel/preset-env": "^7.7.6",
  52. "@commitlint/cli": "^8.1.0",
  53. "@commitlint/config-conventional": "^8.1.0",
  54. "@webpack-contrib/defaults": "^5.0.2",
  55. "@webpack-contrib/eslint-config-webpack": "^3.0.0",
  56. "babel-eslint": "^10.0.2",
  57. "babel-jest": "^24.8.0",
  58. "commitlint-azure-pipelines-cli": "^1.0.2",
  59. "cross-env": "^5.2.0",
  60. "css-loader": "^3.3.2",
  61. "del": "^4.1.1",
  62. "del-cli": "^1.1.0",
  63. "es-check": "^5.0.0",
  64. "eslint": "^6.7.2",
  65. "eslint-config-prettier": "^6.0.0",
  66. "eslint-plugin-import": "^2.19.1",
  67. "file-loader": "^4.0.0",
  68. "husky": "^3.0.0",
  69. "jest": "^24.8.0",
  70. "jest-junit": "^10.0.0",
  71. "lint-staged": "^9.5.0",
  72. "memory-fs": "^0.4.1",
  73. "npm-run-all": "^4.1.5",
  74. "prettier": "^1.19.1",
  75. "standard-version": "^7.0.1",
  76. "webpack": "^4.41.3",
  77. "webpack-cli": "^3.3.6",
  78. "webpack-dev-server": "^3.7.2"
  79. },
  80. "engines": {
  81. "node": ">= 6.9.0"
  82. },
  83. "files": [
  84. "dist"
  85. ],
  86. "homepage": "https://github.com/webpack-contrib/mini-css-extract-plugin",
  87. "keywords": [
  88. "webpack",
  89. "css",
  90. "extract",
  91. "hmr"
  92. ],
  93. "license": "MIT",
  94. "main": "dist/cjs.js",
  95. "name": "mini-css-extract-plugin",
  96. "peerDependencies": {
  97. "webpack": "^4.4.0"
  98. },
  99. "repository": {
  100. "type": "git",
  101. "url": "git+https://github.com/webpack-contrib/mini-css-extract-plugin.git"
  102. },
  103. "scripts": {
  104. "build": "cross-env NODE_ENV=production babel src -d dist --ignore \"src/**/*.test.js\" --copy-files",
  105. "clean": "del-cli dist",
  106. "commitlint": "commitlint --from=master",
  107. "defaults": "webpack-defaults",
  108. "lint": "npm-run-all -l -p \"lint:**\"",
  109. "lint:js": "eslint --cache src test",
  110. "lint:prettier": "prettier \"{**/*,*}.{js,json,md,yml,css}\" --list-different",
  111. "postbuild": "es-check es5 dist/hmr/hotModuleReplacement.js",
  112. "prebuild": "npm run clean",
  113. "prepare": "npm run build",
  114. "pretest": "npm run lint",
  115. "release": "standard-version",
  116. "security": "npm audit",
  117. "start": "npm run build -- -w",
  118. "test": "cross-env NODE_ENV=test npm run test:coverage",
  119. "test:coverage": "cross-env NODE_ENV=test jest --collectCoverageFrom=\"src/**/*.js\" --coverage",
  120. "test:manual": "npm run build && webpack-dev-server test/manual/src/index.js --open --config test/manual/webpack.config.js",
  121. "test:only": "cross-env NODE_ENV=test jest",
  122. "test:watch": "cross-env NODE_ENV=test jest --watch"
  123. },
  124. "version": "0.9.0"
  125. }