{
  "name": "css-minimizer-webpack-plugin",
  "version": "8.0.0",
  "description": "CSS minimizer (minifier) plugin for Webpack",
  "keywords": [
    "cssnano",
    "css",
    "csso",
    "clean-css",
    "swc",
    "esbuild",
    "webpack",
    "webpack-plugin",
    "minimize",
    "minimizer",
    "minify",
    "minifier",
    "optimize",
    "optimizer"
  ],
  "homepage": "https://github.com/webpack/css-minimizer-webpack-plugin",
  "bugs": "https://github.com/webpack/css-minimizer-webpack-plugin/issues",
  "repository": "webpack/css-minimizer-webpack-plugin",
  "funding": {
    "type": "opencollective",
    "url": "https://opencollective.com/webpack"
  },
  "license": "MIT",
  "author": "Loann Neveu",
  "main": "dist/index.js",
  "types": "types/index.d.ts",
  "files": [
    "dist",
    "types"
  ],
  "scripts": {
    "start": "npm run build -- -w",
    "clean": "del-cli dist",
    "prebuild": "npm run clean types",
    "build:types": "tsc --declaration --emitDeclarationOnly --outDir types && prettier \"types/**/*.ts\" --write",
    "build:code": "cross-env NODE_ENV=production babel src -d dist --copy-files",
    "build": "npm-run-all -p \"build:**\"",
    "commitlint": "commitlint --from=main",
    "security": "npm audit",
    "lint:prettier": "prettier --cache --list-different .",
    "lint:code": "eslint --cache .",
    "lint:spelling": "cspell --cache --no-must-find-files --quiet \"**/*.*\"",
    "lint:types": "tsc --pretty --noEmit",
    "lint": "npm-run-all -l -p \"lint:**\"",
    "fix:code": "npm run lint:code -- --fix",
    "fix:prettier": "npm run lint:prettier -- --write",
    "fix": "npm-run-all -l fix:code fix:prettier",
    "test:only": "cross-env NODE_ENV=test NODE_OPTIONS=\"--experimental-vm-modules\" jest",
    "test:watch": "npm run test:only -- --watch",
    "test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage",
    "pretest": "npm run lint",
    "test": "npm run test:coverage",
    "prepare": "husky && npm run build",
    "release": "standard-version"
  },
  "dependencies": {
    "@jridgewell/trace-mapping": "^0.3.25",
    "cssnano": "^7.0.4",
    "jest-worker": "^30.0.5",
    "postcss": "^8.4.40",
    "schema-utils": "^4.2.0",
    "serialize-javascript": "^7.0.3"
  },
  "devDependencies": {
    "@babel/cli": "^7.24.8",
    "@babel/core": "^7.25.2",
    "@babel/preset-env": "^7.25.3",
    "@commitlint/cli": "^20.4.2",
    "@commitlint/config-conventional": "^20.4.2",
    "@parcel/css": "^1.8.3",
    "@swc/css": "^0.0.28",
    "@types/clean-css": "^4.2.11",
    "@types/csso": "^5.0.4",
    "@types/node": "^20.14.9",
    "@types/serialize-javascript": "^5.0.4",
    "babel-jest": "^30.0.5",
    "clean-css": "^5.3.3",
    "copy-webpack-plugin": "^14.0.0",
    "cross-env": "^7.0.3",
    "cspell": "^9.7.0",
    "css-loader": "^6.10.0",
    "cssnano-preset-simple": "^4.0.0",
    "csso": "^5.0.3",
    "del": "^6.1.0",
    "del-cli": "^7.0.0",
    "esbuild": "^0.27.3",
    "eslint": "^9.30.1",
    "eslint-config-webpack": "^4.4.1",
    "husky": "^9.1.4",
    "jest": "^30.0.5",
    "lightningcss": "^1.25.1",
    "lint-staged": "^16.3.1",
    "memfs": "^4.11.1",
    "mini-css-extract-plugin": "^2.9.0",
    "npm-run-all": "^4.1.5",
    "prettier": "^3.6.2",
    "sass": "^1.77.8",
    "sass-loader": "^16.0.5",
    "standard-version": "^9.5.0",
    "sugarss": "^5.0.0",
    "typescript": "^5.5.4",
    "webpack": "^5.93.0"
  },
  "peerDependencies": {
    "webpack": "^5.0.0"
  },
  "peerDependenciesMeta": {
    "clean-css": {
      "optional": true
    },
    "csso": {
      "optional": true
    },
    "esbuild": {
      "optional": true
    },
    "@parcel/css": {
      "optional": true
    },
    "lightningcss": {
      "optional": true
    },
    "@swc/css": {
      "optional": true
    }
  },
  "engines": {
    "node": ">= 20.9.0"
  }
}
