UNPKG

2.87 kBJSONView Raw
1{
2 "name": "html-minimizer-webpack-plugin",
3 "version": "4.0.0",
4 "description": "html minimizer plugin for Webpack",
5 "license": "MIT",
6 "repository": "webpack-contrib/html-minimizer-webpack-plugin",
7 "author": "webpack Contrib Team",
8 "homepage": "https://github.com/webpack-contrib/html-minimizer-webpack-plugin",
9 "bugs": "https://github.com/webpack-contrib/html-minimizer-webpack-plugin/issues",
10 "funding": {
11 "type": "opencollective",
12 "url": "https://opencollective.com/webpack"
13 },
14 "main": "dist/index.js",
15 "types": "types/index.d.ts",
16 "engines": {
17 "node": ">= 14.15.0"
18 },
19 "scripts": {
20 "start": "npm run build -- -w",
21 "clean": "del-cli dist types",
22 "prebuild": "npm run clean",
23 "build:types": "tsc --declaration --emitDeclarationOnly --outDir types && prettier \"types/**/*.ts\" --write",
24 "build:code": "cross-env NODE_ENV=production babel src -d dist --copy-files",
25 "build": "npm-run-all -p \"build:**\"",
26 "commitlint": "commitlint --from=master",
27 "security": "npm audit",
28 "lint:prettier": "prettier \"{**/*,*}.{js,json,md,yml,css,ts}\" --list-different",
29 "lint:js": "eslint --cache .",
30 "lint:types": "tsc --pretty --noEmit",
31 "lint": "npm-run-all -l -p \"lint:**\"",
32 "test:only": "cross-env NODE_ENV=test jest",
33 "test:watch": "npm run test:only -- --watch",
34 "test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage",
35 "pretest": "npm run lint",
36 "test": "npm run test:coverage",
37 "prepare": "husky install && npm run build",
38 "release": "standard-version"
39 },
40 "files": [
41 "dist",
42 "types"
43 ],
44 "peerDependencies": {
45 "webpack": "^5.1.0"
46 },
47 "dependencies": {
48 "@types/html-minifier-terser": "^6.1.0",
49 "html-minifier-terser": "^6.1.0",
50 "jest-worker": "^27.5.1",
51 "schema-utils": "^4.0.0",
52 "serialize-javascript": "^6.0.0"
53 },
54 "devDependencies": {
55 "@babel/cli": "^7.17.10",
56 "@babel/core": "^7.17.10",
57 "@babel/preset-env": "^7.17.10",
58 "@commitlint/cli": "^17.0.0",
59 "@commitlint/config-conventional": "^17.0.0",
60 "@types/serialize-javascript": "^5.0.2",
61 "@webpack-contrib/eslint-config-webpack": "^3.0.0",
62 "babel-jest": "^28.1.0",
63 "copy-webpack-plugin": "^9.0.1",
64 "cross-env": "^7.0.3",
65 "del": "^6.0.0",
66 "del-cli": "^4.0.1",
67 "eslint": "^8.14.0",
68 "eslint-config-prettier": "^8.5.0",
69 "eslint-plugin-import": "^2.26.0",
70 "husky": "^8.0.1",
71 "jest": "^28.1.0",
72 "lint-staged": "^12.4.1",
73 "memfs": "^3.4.1",
74 "npm-run-all": "^4.1.5",
75 "prettier": "^2.6.2",
76 "standard-version": "^9.3.1",
77 "typescript": "^4.6.4",
78 "webpack": "^5.72.0"
79 },
80 "keywords": [
81 "html",
82 "webpack",
83 "webpack-plugin",
84 "minimize",
85 "minimizer",
86 "minify",
87 "minifier",
88 "optimize",
89 "optimizer"
90 ]
91}