| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- {
- "name": "minimizer-webpack-plugin",
- "version": "5.8.0",
- "description": "Minimizer plugin for webpack",
- "keywords": [
- "uglify",
- "uglify-js",
- "uglify-es",
- "terser",
- "swc",
- "esbuild",
- "html",
- "html-minifier",
- "html-minifier-terser",
- "css",
- "cssnano",
- "csso",
- "clean-css",
- "lightningcss",
- "webpack",
- "webpack-plugin",
- "minification",
- "compress",
- "compressor",
- "min",
- "minification",
- "minifier",
- "minify",
- "optimize",
- "optimizer"
- ],
- "homepage": "https://github.com/webpack/minimizer-webpack-plugin",
- "bugs": "https://github.com/webpack/minimizer-webpack-plugin/issues",
- "repository": "webpack/minimizer-webpack-plugin",
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- },
- "license": "MIT",
- "author": "webpack Contrib Team",
- "main": "dist/index.js",
- "types": "types/index.d.ts",
- "files": [
- "dist",
- "types"
- ],
- "scripts": {
- "clean": "del-cli dist types",
- "prebuild": "npm run clean",
- "build:serialize-javascript": "node ./scripts/copy-serialize-javascript.js",
- "build:types": "tsc --declaration --emitDeclarationOnly --outDir types && prettier \"types/**/*.ts\" --write",
- "build:code": "babel src -d dist --copy-files",
- "build": "npm-run-all -p \"build:**\"",
- "security": "npm audit --production",
- "lint:serialize-javascript": "node ./scripts/copy-serialize-javascript.js --check",
- "lint:prettier": "prettier --list-different .",
- "lint:code": "eslint --cache .",
- "lint:spelling": "cspell \"**/*.*\"",
- "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:base": "jest",
- "test:watch": "npm run test:base -- --watch",
- "test:coverage": "npm run test:base -- --collectCoverageFrom=\"src/**/*.js\" --coverage",
- "pretest": "npm run lint",
- "test": "npm run test:coverage",
- "prepare": "husky && npm run build",
- "version": "changeset version",
- "release": "npm run build && changeset publish"
- },
- "dependencies": {
- "@jridgewell/trace-mapping": "^0.3.31",
- "jest-worker": "^27.4.5",
- "schema-utils": "^4.3.3",
- "terser": "^5.51.0"
- },
- "devDependencies": {
- "@babel/cli": "^7.28.6",
- "@babel/core": "^7.29.0",
- "@babel/preset-env": "^7.29.5",
- "@changesets/cli": "^3.0.1",
- "@changesets/get-github-info": "^1.0.0",
- "@minify-html/node": "^0.18.1",
- "@swc/core": "^1.16.1",
- "@swc/css": "^0.0.28",
- "@swc/html": "^1.16.1",
- "@types/clean-css": "^4.2.11",
- "@types/csso": "^5.0.5",
- "@types/html-minifier-terser": "^7.0.2",
- "@types/node": "^26.3.0",
- "@types/serialize-javascript": "^5.0.4",
- "@types/uglify-js": "^3.17.5",
- "clean-css": "^5.3.3",
- "copy-webpack-plugin": "^14.0.0",
- "cspell": "^10.1.1",
- "cssnano": "^8.0.9",
- "csso": "^5.0.5",
- "del": "^6.1.1",
- "del-cli": "^7.0.0",
- "esbuild": "^0.28.2",
- "eslint": "^10.9.1",
- "eslint-config-webpack": "^4.9.6",
- "file-loader": "^6.2.0",
- "html-minifier-terser": "^7.2.0",
- "husky": "^9.1.7",
- "jest": "^30.4.2",
- "lightningcss": "^1.33.0",
- "lint-staged": "^17.3.0",
- "memfs": "^4.68.1",
- "npm-run-all": "^4.1.5",
- "postcss": "^8.5.26",
- "prettier": "^3.9.6",
- "prettier-2": "npm:prettier@^2",
- "serialize-javascript": "^7.1.0",
- "typescript": "^6.0.3",
- "uglify-js": "^3.19.3",
- "webpack": "^5.109.2",
- "webpack-cli": "^7.2.2",
- "worker-loader": "^3.0.8"
- },
- "peerDependencies": {
- "webpack": "^5.1.0"
- },
- "peerDependenciesMeta": {
- "@minify-html/node": {
- "optional": true
- },
- "@swc/core": {
- "optional": true
- },
- "@swc/css": {
- "optional": true
- },
- "@swc/html": {
- "optional": true
- },
- "clean-css": {
- "optional": true
- },
- "cssnano": {
- "optional": true
- },
- "csso": {
- "optional": true
- },
- "esbuild": {
- "optional": true
- },
- "html-minifier-terser": {
- "optional": true
- },
- "lightningcss": {
- "optional": true
- },
- "postcss": {
- "optional": true
- },
- "uglify-js": {
- "optional": true
- }
- },
- "engines": {
- "node": ">= 10.13.0"
- }
- }
|