UNPKG

2.51 kBJSONView Raw
1{
2 "name": "html-minimizer-webpack-plugin",
3 "version": "3.2.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/cjs.js",
15 "engines": {
16 "node": ">= 12.13.0"
17 },
18 "scripts": {
19 "start": "npm run build -- -w",
20 "clean": "del-cli dist",
21 "prebuild": "npm run clean",
22 "build": "cross-env NODE_ENV=production babel src -d dist --copy-files",
23 "commitlint": "commitlint --from=master",
24 "security": "npm audit",
25 "lint:prettier": "prettier \"{**/*,*}.{js,json,md,yml,css,ts}\" --list-different",
26 "lint:js": "eslint --cache .",
27 "lint": "npm-run-all -l -p \"lint:**\"",
28 "test:only": "cross-env NODE_ENV=test jest",
29 "test:watch": "npm run test:only -- --watch",
30 "test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage",
31 "pretest": "npm run lint",
32 "test": "npm run test:coverage",
33 "prepare": "husky install && npm run build",
34 "release": "standard-version"
35 },
36 "files": [
37 "dist"
38 ],
39 "peerDependencies": {
40 "webpack": "^5.1.0"
41 },
42 "dependencies": {
43 "html-minifier-terser": "^6.0.0",
44 "jest-worker": "^27.0.6",
45 "p-limit": "^3.1.0",
46 "schema-utils": "^3.1.1",
47 "serialize-javascript": "^6.0.0"
48 },
49 "devDependencies": {
50 "@babel/cli": "^7.14.8",
51 "@babel/core": "^7.15.0",
52 "@babel/preset-env": "^7.15.0",
53 "@commitlint/cli": "^13.1.0",
54 "@commitlint/config-conventional": "^13.1.0",
55 "@webpack-contrib/eslint-config-webpack": "^3.0.0",
56 "babel-jest": "^27.0.6",
57 "copy-webpack-plugin": "^9.0.1",
58 "cross-env": "^7.0.3",
59 "del": "^6.0.0",
60 "del-cli": "^4.0.1",
61 "eslint": "^7.32.0",
62 "eslint-config-prettier": "^8.3.0",
63 "eslint-plugin-import": "^2.24.0",
64 "husky": "^7.0.1",
65 "jest": "^27.0.6",
66 "lint-staged": "^11.1.2",
67 "memfs": "^3.2.2",
68 "npm-run-all": "^4.1.5",
69 "prettier": "^2.3.2",
70 "standard-version": "^9.3.1",
71 "webpack": "^5.50.0"
72 },
73 "keywords": [
74 "html",
75 "webpack",
76 "webpack-plugin",
77 "minimize",
78 "minimizer",
79 "minify",
80 "minifier",
81 "optimize",
82 "optimizer"
83 ]
84}