package.json 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. {
  2. "name": "extract-css-chunks-webpack-plugin",
  3. "version": "4.9.0",
  4. "description": "Extract CSS from chunks into stylesheets + HMR. Supports Webpack 4 + SSR",
  5. "license": "MIT",
  6. "author": "James Gillmore <james@faceyspacey.com>",
  7. "contributors": [
  8. "Zack Jackson <zack@ScriptedAlchemy.com> (https://github.com/ScriptedAlchemy)"
  9. ],
  10. "homepage": "http://github.com/faceyspacey/extract-css-chunks-webpack-plugin",
  11. "repository": {
  12. "type": "git",
  13. "url": "https://github.com/faceyspacey/extract-css-chunks-webpack-plugin.git"
  14. },
  15. "config": {
  16. "commitizen": {
  17. "path": "./node_modules/cz-conventional-changelog"
  18. }
  19. },
  20. "keywords": [
  21. "css",
  22. "chunks",
  23. "code splitting",
  24. "mini-css",
  25. "hot",
  26. "hmr",
  27. "universal",
  28. "webpack",
  29. "webpack 4",
  30. "css-hot-loader",
  31. "extract-css-chunks-webpack-plugin"
  32. ],
  33. "main": "dist/cjs.js",
  34. "types": "index.d.ts",
  35. "engines": {
  36. "node": ">= 6.9.0"
  37. },
  38. "scripts": {
  39. "commit": "git-cz",
  40. "start": "npm run build -- -w",
  41. "prebuild": "npm run clean",
  42. "build": "cross-env NODE_ENV=production babel src -d dist --ignore \"src/**/*.test.js\" --copy-files",
  43. "postbuild": "es-check es5 dist/hmr/hotModuleReplacement.js",
  44. "clean": "del-cli dist",
  45. "commitlint": "commitlint --from=master",
  46. "lint:prettier": "prettier \"{**/*,*}.{js,json,md,yml,css}\" --list-different",
  47. "lint:js": "eslint --cache src test",
  48. "lint": "npm-run-all -l -p \"lint:js\" \"lint:prettier\"",
  49. "prepare": "npm run build",
  50. "release": "standard-version",
  51. "security": "npm audit",
  52. "test:only": "cross-env NODE_ENV=test jest --updateSnapshot",
  53. "test:watch": "cross-env NODE_ENV=test jest --watch",
  54. "test:coverage": "cross-env NODE_ENV=test jest --collectCoverageFrom=\"src/**/*.js\" --coverage",
  55. "test:manual": "npm run build && webpack-dev-server test/manual/src/index.js --open --config test/manual/webpack.config.js",
  56. "pretest": "npm run lint",
  57. "test": "cross-env NODE_ENV=test npm run test:coverage",
  58. "defaults": "webpack-defaults",
  59. "semantic-release": "npx semantic-release",
  60. "travis": "npm run ci:coverage"
  61. },
  62. "files": [
  63. "dist",
  64. "index.d.ts"
  65. ],
  66. "peerDependencies": {
  67. "webpack": "^4.4.0 || ^5.0.0"
  68. },
  69. "dependencies": {
  70. "loader-utils": "^2.0.0",
  71. "normalize-url": "1.9.1",
  72. "schema-utils": "^1.0.0",
  73. "webpack-sources": "^1.1.0"
  74. },
  75. "devDependencies": {
  76. "@babel/cli": "7.8.4",
  77. "@babel/core": "7.9.0",
  78. "@babel/preset-env": "7.9.5",
  79. "@commitlint/cli": "8.3.5",
  80. "@commitlint/config-conventional": "8.3.4",
  81. "@webpack-contrib/defaults": "6.3.0",
  82. "@webpack-contrib/eslint-config-webpack": "3.0.0",
  83. "babel-eslint": "10.1.0",
  84. "babel-jest": "25.5.1",
  85. "commitizen": "4.0.4",
  86. "commitlint-azure-pipelines-cli": "1.0.3",
  87. "cross-env": "7.0.2",
  88. "css-loader": "3.5.2",
  89. "cz-conventional-changelog": "3.1.0",
  90. "del": "5.1.0",
  91. "del-cli": "3.0.0",
  92. "es-check": "5.1.0",
  93. "eslint": "6.8.0",
  94. "eslint-config-prettier": "6.10.1",
  95. "eslint-plugin-import": "2.20.2",
  96. "eslint-plugin-prettier": "3.1.2",
  97. "file-loader": "6.0.0",
  98. "husky": "4.2.3",
  99. "jest": "25.5.4",
  100. "jest-dev-server": "4.4.0",
  101. "jest-junit": "10.0.0",
  102. "jest-puppeteer": "4.4.0",
  103. "lint-staged": "10.0.8",
  104. "memfs": "3.1.2",
  105. "npm-run-all": "4.1.5",
  106. "prerender-loader": "1.3.0",
  107. "prettier": "1.19.1",
  108. "puppeteer": "2.1.1",
  109. "serve": "11.3.0",
  110. "standard-version": "8.0.1",
  111. "webpack": "4.43.0",
  112. "webpack-cli": "3.3.11",
  113. "webpack-dev-server": "3.10.3"
  114. }
  115. }