package.json 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. {
  2. "_from": "mini-css-extract-plugin@^0.6.0",
  3. "_id": "mini-css-extract-plugin@0.6.0",
  4. "_inBundle": false,
  5. "_integrity": "sha1-o/Ezctb83pEvPuTNA5ZlcEgB47k=",
  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. },
  12. "_requested": {
  13. "type": "range",
  14. "registry": true,
  15. "raw": "mini-css-extract-plugin@^0.6.0",
  16. "name": "mini-css-extract-plugin",
  17. "escapedName": "mini-css-extract-plugin",
  18. "rawSpec": "^0.6.0",
  19. "saveSpec": null,
  20. "fetchSpec": "^0.6.0"
  21. },
  22. "_requiredBy": [
  23. "#DEV:/"
  24. ],
  25. "_resolved": "https://registry.nlark.com/mini-css-extract-plugin/download/mini-css-extract-plugin-0.6.0.tgz",
  26. "_shasum": "a3f13372d6fcde912f3ee4cd039665704801e3b9",
  27. "_spec": "mini-css-extract-plugin@^0.6.0",
  28. "_where": "D:\\朗通信息\\icssDService",
  29. "author": {
  30. "name": "Tobias Koppers @sokra"
  31. },
  32. "babel": {
  33. "presets": [
  34. [
  35. "@babel/preset-env",
  36. {
  37. "targets": {
  38. "node": "6.9.0"
  39. }
  40. }
  41. ]
  42. ]
  43. },
  44. "bugs": {
  45. "url": "https://github.com/webpack-contrib/mini-css-extract-plugin/issues"
  46. },
  47. "bundleDependencies": false,
  48. "commitlint": {
  49. "extends": [
  50. "@commitlint/config-conventional"
  51. ]
  52. },
  53. "dependencies": {
  54. "loader-utils": "^1.1.0",
  55. "normalize-url": "^2.0.1",
  56. "schema-utils": "^1.0.0",
  57. "webpack-sources": "^1.1.0"
  58. },
  59. "deprecated": false,
  60. "description": "extracts CSS into separate files",
  61. "devDependencies": {
  62. "@babel/cli": "^7.4.3",
  63. "@babel/core": "^7.4.3",
  64. "@babel/preset-env": "^7.4.3",
  65. "@commitlint/cli": "^7.5.2",
  66. "@commitlint/config-conventional": "^7.5.0",
  67. "@webpack-contrib/defaults": "^3.1.1",
  68. "@webpack-contrib/eslint-config-webpack": "^3.0.0",
  69. "acorn": "^6.1.1",
  70. "babel-eslint": "^10.0.1",
  71. "babel-jest": "^24.7.1",
  72. "cross-env": "^5.1.3",
  73. "css-loader": "^2.1.1",
  74. "del": "^4.1.0",
  75. "del-cli": "^1.1.0",
  76. "es-check": "^5.0.0",
  77. "eslint": "^5.16.0",
  78. "eslint-plugin-import": "^2.16.0",
  79. "eslint-plugin-prettier": "^3.0.1",
  80. "file-loader": "^3.0.1",
  81. "husky": "^1.3.1",
  82. "jest": "^24.7.1",
  83. "lint-staged": "^8.1.5",
  84. "memory-fs": "^0.4.1",
  85. "pre-commit": "^1.2.2",
  86. "prettier": "^1.16.4",
  87. "standard-version": "^5.0.2",
  88. "webpack": "4.29.0",
  89. "webpack-cli": "^3.3.0",
  90. "webpack-dev-server": "^3.3.1"
  91. },
  92. "engines": {
  93. "node": ">= 6.9.0"
  94. },
  95. "files": [
  96. "dist"
  97. ],
  98. "homepage": "https://github.com/webpack-contrib/mini-css-extract-plugin",
  99. "husky": {
  100. "hooks": {
  101. "pre-commit": "lint-staged",
  102. "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
  103. }
  104. },
  105. "keywords": [
  106. "webpack",
  107. "css",
  108. "extract",
  109. "hmr"
  110. ],
  111. "license": "MIT",
  112. "lint-staged": {
  113. "*.js": [
  114. "eslint --fix",
  115. "git add"
  116. ]
  117. },
  118. "main": "dist/cjs.js",
  119. "name": "mini-css-extract-plugin",
  120. "peerDependencies": {
  121. "webpack": "^4.4.0"
  122. },
  123. "prettier": {
  124. "singleQuote": true,
  125. "trailingComma": "es5",
  126. "arrowParens": "always"
  127. },
  128. "repository": {
  129. "type": "git",
  130. "url": "git+https://github.com/webpack-contrib/mini-css-extract-plugin.git"
  131. },
  132. "scripts": {
  133. "build": "cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files",
  134. "ci:coverage": "npm run test:coverage -- --runInBand",
  135. "ci:lint": "npm run lint && npm run security",
  136. "ci:lint:commits": "commitlint --from=origin/master --to=${CIRCLE_SHA1}",
  137. "ci:test": "npm run test:only -- --runInBand",
  138. "clean": "del-cli dist",
  139. "commitlint": "commitlint --from=master",
  140. "defaults": "webpack-defaults",
  141. "lint": "eslint --cache src test",
  142. "postbuild": "es-check es5 dist/hmr/hotModuleReplacement.js",
  143. "prebuild": "npm run clean",
  144. "prepublish": "npm run build",
  145. "pretest": "npm run lint",
  146. "release": "standard-version",
  147. "security": "npm audit",
  148. "start": "npm run build -- -w",
  149. "test": "npm run test:only",
  150. "test:coverage": "jest --collectCoverageFrom='src/**/*.js' --coverage",
  151. "test:only": "jest",
  152. "test:watch": "jest --watch"
  153. },
  154. "version": "0.6.0"
  155. }