{"maintainers":[{"name":"anonymous","email":"sheo13666q@gmail.com"},{"name":"anonymous","email":"tobias.koppers@googlemail.com"},{"name":"anonymous","email":"mail@johannesewald.de"}],"keywords":["webpack","html","loader"],"dist-tags":{"latest":"5.0.0","next":"1.0.0-alpha.0"},"author":{"name":"Tobias Koppers @sokra"},"description":"Html loader module for webpack","readme":"<div align=\"center\">\n  <img width=\"200\" height=\"200\" src=\"https://www.w3.org/html/logo/downloads/HTML5_Logo.svg\" alt=\"html-loader\">\n  <a href=\"https://github.com/webpack/webpack\">\n    <img width=\"200\" height=\"200\" vspace=\"\" hspace=\"25\" src=\"https://webpack.js.org/assets/icon-square-big.svg\" alt=\"webpack\">\n  </a>\n</div>\n\n[![npm][npm]][npm-url]\n[![node][node]][node-url]\n[![tests][tests]][tests-url]\n[![coverage][cover]][cover-url]\n[![discussion][discussion]][discussion-url]\n[![size][size]][size-url]\n\n# html-loader\n\nExports HTML as string. HTML is minimized when the compiler demands.\n\n## Getting Started\n\nTo begin, you'll need to install `html-loader`:\n\n```console\nnpm install --save-dev html-loader\n```\n\nor\n\n```console\nyarn add -D html-loader\n```\n\nor\n\n```console\npnpm add -D html-loader\n```\n\nThen add the plugin to your `webpack` config. For example:\n\n**file.js**\n\n```js\nimport html from \"./file.html\";\n```\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.html$/i,\n        loader: \"html-loader\",\n      },\n    ],\n  },\n};\n```\n\n## Options\n\n- **[`sources`](#sources)**\n- **[`preprocessor`](#preprocessor)**\n- **[`minimize`](#minimize)**\n- **[`esModule`](#esmodule)**\n\n### `sources`\n\nType:\n\n```ts\ntype sources =\n  | boolean\n  | {\n      list?: Array<{\n        tag?: string;\n        attribute?: string;\n        type?: string;\n        filter?: (\n          tag: string,\n          attribute: string,\n          attributes: string,\n          resourcePath: string,\n        ) => boolean;\n      }>;\n      urlFilter?: (\n        attribute: string,\n        value: string,\n        resourcePath: string,\n      ) => boolean;\n      scriptingEnabled?: boolean;\n    };\n```\n\nDefault: `true`\n\nBy default every loadable attribute (for example - `<img src=\"image.png\">`) is imported (`const img = require('./image.png')` or `import img from \"./image.png\"\"`).\nYou may need to specify loaders for images in your configuration (recommended [`asset modules`](https://webpack.js.org/guides/asset-modules/)).\n\nSupported tags and attributes:\n\n- the `src` attribute of the `audio` tag\n- the `src` attribute of the `embed` tag\n- the `src` attribute of the `img` tag\n- the `srcset` attribute of the `img` tag\n- the `src` attribute of the `input` tag\n- the `data` attribute of the `object` tag\n- the `src` attribute of the `script` tag\n- the `href` attribute of the `script` tag\n- the `xlink:href` attribute of the `script` tag\n- the `src` attribute of the `source` tag\n- the `srcset` attribute of the `source` tag\n- the `src` attribute of the `track` tag\n- the `poster` attribute of the `video` tag\n- the `src` attribute of the `video` tag\n- the `xlink:href` attribute of the `image` tag\n- the `href` attribute of the `image` tag\n- the `xlink:href` attribute of the `use` tag\n- the `href` attribute of the `use` tag\n- the `href` attribute of the `link` tag when the `rel` attribute contains `stylesheet`, `icon`, `shortcut icon`, `mask-icon`, `apple-touch-icon`, `apple-touch-icon-precomposed`, `apple-touch-startup-image`, `manifest`, `prefetch`, `preload` or when the `itemprop` attribute is `image`, `logo`, `screenshot`, `thumbnailurl`, `contenturl`, `downloadurl`, `duringmedia`, `embedurl`, `installurl`, `layoutimage`\n- the `imagesrcset` attribute of the `link` tag when the `rel` attribute contains `stylesheet`, `icon`, `shortcut icon`, `mask-icon`, `apple-touch-icon`, `apple-touch-icon-precomposed`, `apple-touch-startup-image`, `manifest`, `prefetch`, `preload`\n- the `content` attribute of the `meta` tag when the `name` attribute is `msapplication-tileimage`, `msapplication-square70x70logo`, `msapplication-square150x150logo`, `msapplication-wide310x150logo`, `msapplication-square310x310logo`, `msapplication-config`, `twitter:image` or when the `property` attribute is `og:image`, `og:image:url`, `og:image:secure_url`, `og:audio`, `og:audio:secure_url`, `og:video`, `og:video:secure_url`, `vk:image` or when the `itemprop` attribute is `image`, `logo`, `screenshot`, `thumbnailurl`, `contenturl`, `downloadurl`, `duringmedia`, `embedurl`, `installurl`, `layoutimage`\n- the `icon-uri` value component in `content` attribute of the `meta` tag when the `name` attribute is `msapplication-task`\n\n#### `boolean`\n\nThe `true` value enables the processing of all default elements and attributes, the `false` value disables the processing of all attributes.\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.html$/i,\n        loader: \"html-loader\",\n        options: {\n          // Disables attributes processing\n          sources: false,\n        },\n      },\n    ],\n  },\n};\n```\n\n#### `object`\n\nAllows you to specify which tags and attributes to process, filter them, filter urls and process sources starting with `/`.\n\nFor example:\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.html$/i,\n        loader: \"html-loader\",\n        options: {\n          sources: {\n            list: [\n              // All default supported tags and attributes\n              \"...\",\n              {\n                tag: \"img\",\n                attribute: \"data-src\",\n                type: \"src\",\n              },\n              {\n                tag: \"img\",\n                attribute: \"data-srcset\",\n                type: \"srcset\",\n              },\n            ],\n            urlFilter: (attribute, value, resourcePath) => {\n              // The `attribute` argument contains a name of the HTML attribute.\n              // The `value` argument contains a value of the HTML attribute.\n              // The `resourcePath` argument contains a path to the loaded HTML file.\n\n              if (/example\\.pdf$/.test(value)) {\n                return false;\n              }\n\n              return true;\n            },\n          },\n        },\n      },\n    ],\n  },\n};\n```\n\n#### `list`\n\nType:\n\n```ts\ntype list = Array<{\n  tag?: string;\n  attribute?: string;\n  type?: string;\n  filter?: (\n    tag: string,\n    attribute: string,\n    attributes: string,\n    resourcePath: string,\n  ) => boolean;\n}>;\n```\n\nDefault: [supported tags and attributes](#sources).\n\nAllows to setup which tags and attributes to process and how, as well as the ability to filter some of them.\n\nUsing `...` syntax allows you to extend [default supported tags and attributes](#sources).\n\nFor example:\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.html$/i,\n        loader: \"html-loader\",\n        options: {\n          sources: {\n            list: [\n              // All default supported tags and attributes\n              \"...\",\n              {\n                tag: \"img\",\n                attribute: \"data-src\",\n                type: \"src\",\n              },\n              {\n                tag: \"img\",\n                attribute: \"data-srcset\",\n                type: \"srcset\",\n              },\n              {\n                // Tag name\n                tag: \"link\",\n                // Attribute name\n                attribute: \"href\",\n                // Type of processing, can be `src` or `scrset`\n                type: \"src\",\n                // Allow to filter some attributes\n                filter: (tag, attribute, attributes, resourcePath) => {\n                  // The `tag` argument contains a name of the HTML tag.\n                  // The `attribute` argument contains a name of the HTML attribute.\n                  // The `attributes` argument contains all attributes of the tag.\n                  // The `resourcePath` argument contains a path to the loaded HTML file.\n\n                  if (/my-html\\.html$/.test(resourcePath)) {\n                    return false;\n                  }\n\n                  if (!/stylesheet/i.test(attributes.rel)) {\n                    return false;\n                  }\n\n                  if (\n                    attributes.type &&\n                    attributes.type.trim().toLowerCase() !== \"text/css\"\n                  ) {\n                    return false;\n                  }\n\n                  return true;\n                },\n              },\n            ],\n          },\n        },\n      },\n    ],\n  },\n};\n```\n\nIf the tag name is not specified it will process all the tags.\n\n> You can use your custom filter to specify html elements to be processed.\n\nFor example:\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.html$/i,\n        loader: \"html-loader\",\n        options: {\n          sources: {\n            list: [\n              {\n                // Attribute name\n                attribute: \"src\",\n                // Type of processing, can be `src` or `scrset`\n                type: \"src\",\n                // Allow to filter some attributes (optional)\n                filter: (tag, attribute, attributes, resourcePath) => {\n                  // The `tag` argument contains a name of the HTML tag.\n                  // The `attribute` argument contains a name of the HTML attribute.\n                  // The `attributes` argument contains all attributes of the tag.\n                  // The `resourcePath` argument contains a path to the loaded HTML file.\n\n                  // choose all HTML tags except img tag\n                  return tag.toLowerCase() !== \"img\";\n                },\n              },\n            ],\n          },\n        },\n      },\n    ],\n  },\n};\n```\n\nFilter can also be used to extend the supported elements and attributes.\n\nFor example, filter can help process meta tags that reference assets:\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.html$/i,\n        loader: \"html-loader\",\n        options: {\n          sources: {\n            list: [\n              {\n                tag: \"meta\",\n                attribute: \"content\",\n                type: \"src\",\n                filter: (tag, attribute, attributes, resourcePath) => {\n                  if (\n                    attributes.value === \"og:image\" ||\n                    attributes.name === \"twitter:image\"\n                  ) {\n                    return true;\n                  }\n\n                  return false;\n                },\n              },\n            ],\n          },\n        },\n      },\n    ],\n  },\n};\n```\n\n> **Note**\n>\n> source with a `tag` option takes precedence over source without.\n\nFilter can be used to disable default sources.\n\nFor example:\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.html$/i,\n        loader: \"html-loader\",\n        options: {\n          sources: {\n            list: [\n              \"...\",\n              {\n                tag: \"img\",\n                attribute: \"src\",\n                type: \"src\",\n                filter: () => false,\n              },\n            ],\n          },\n        },\n      },\n    ],\n  },\n};\n```\n\n#### `urlFilter`\n\nType:\n\n```ts\ntype urlFilter = (\n  attribute: string,\n  value: string,\n  resourcePath: string,\n) => boolean;\n```\n\nDefault: `undefined`\n\nAllow to filter urls. All filtered urls will not be resolved (left in the code as they were written).\nNon-requestable sources (for example `<img src=\"javascript:void(0)\">`) are not handled by default.\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.html$/i,\n        loader: \"html-loader\",\n        options: {\n          sources: {\n            urlFilter: (attribute, value, resourcePath) => {\n              // The `attribute` argument contains a name of the HTML attribute.\n              // The `value` argument contains a value of the HTML attribute.\n              // The `resourcePath` argument contains a path to the loaded HTML file.\n\n              if (/example\\.pdf$/.test(value)) {\n                return false;\n              }\n\n              return true;\n            },\n          },\n        },\n      },\n    ],\n  },\n};\n```\n\n#### `scriptingEnabled`\n\nType:\n\n```ts\ntype scriptingEnabled = boolean;\n```\n\nDefault: `true`\n\nBy default, the parser in `html-loader` interprets content inside `<noscript>` tags as `#text`, so processing of content inside this tag will be ignored.\n\nIn order to enable processing inside `<noscript>` for content recognition by the parser as `#AST`, set this parameter to: `false`\n\nAdditional information: [scriptingEnabled](https://parse5.js.org/interfaces/parse5.ParserOptions.html#scriptingEnabled)\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.html$/i,\n        loader: \"html-loader\",\n        options: {\n          sources: {\n            // Enables processing inside the <noscript> tag\n            scriptingEnabled: false,\n          },\n        },\n      },\n    ],\n  },\n};\n```\n\n### `preprocessor`\n\nType:\n\n```ts\ntype preprocessor = (\n  content: string | Buffer,\n  loaderContext: LoaderContext,\n) => HTMLElement;\n```\n\nDefault: `undefined`\n\nAllows pre-processing of content before handling.\n\n> **Warning**\n>\n> You should always return valid HTML\n\n**file.hbs**\n\n```hbs\n<div>\n  <p>{{firstname}} {{lastname}}</p>\n  <img src=\"image.png\" alt=\"alt\" />\n<div>\n```\n\n#### `function`\n\nYou can set the `preprocessor` option as a `function` instance.\n\n**webpack.config.js**\n\n```js\nconst Handlebars = require(\"handlebars\");\n\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.hbs$/i,\n        loader: \"html-loader\",\n        options: {\n          preprocessor: (content, loaderContext) => {\n            let result;\n\n            try {\n              result = Handlebars.compile(content)({\n                firstname: \"Value\",\n                lastname: \"OtherValue\",\n              });\n            } catch (error) {\n              loaderContext.emitError(error);\n\n              return content;\n            }\n\n            return result;\n          },\n        },\n      },\n    ],\n  },\n};\n```\n\nYou can also set the `preprocessor` option as an asynchronous function instance.\n\nFor example:\n\n**webpack.config.js**\n\n```js\nconst Handlebars = require(\"handlebars\");\n\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.hbs$/i,\n        loader: \"html-loader\",\n        options: {\n          preprocessor: async (content, loaderContext) => {\n            let result;\n\n            try {\n              result = await Handlebars.compile(content)({\n                firstname: \"Value\",\n                lastname: \"OtherValue\",\n              });\n            } catch (error) {\n              await loaderContext.emitError(error);\n\n              return content;\n            }\n\n            return result;\n          },\n        },\n      },\n    ],\n  },\n};\n```\n\n### `minimize`\n\nType:\n\n```ts\ntype minimize =\n  | boolean\n  | {\n      caseSensitive?: boolean;\n      collapseWhitespace?: boolean;\n      conservativeCollapse?: boolean;\n      keepClosingSlash?: boolean;\n      minifyCSS?: boolean;\n      minifyJS?: boolean;\n      removeComments?: boolean;\n      removeRedundantAttributes?: boolean;\n      removeScriptTypeAttributes?: boolean;\n      removeStyleLinkTypeAttributes?: boolean;\n    };\n```\n\nDefault: `true` in production mode, otherwise `false`\n\nTell `html-loader` to minimize HTML.\n\n#### `boolean`\n\nThe enabled rules for minimizing by default are the following ones:\n\n```js\n({\n  caseSensitive: true,\n  collapseWhitespace: true,\n  conservativeCollapse: true,\n  keepClosingSlash: true,\n  minifyCSS: true,\n  minifyJS: true,\n  removeComments: true,\n  removeRedundantAttributes: true,\n  removeScriptTypeAttributes: true,\n  removeStyleLinkTypeAttributes: true,\n});\n```\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.html$/i,\n        loader: \"html-loader\",\n        options: {\n          minimize: true,\n        },\n      },\n    ],\n  },\n};\n```\n\n#### `object`\n\n**webpack.config.js**\n\nSee [html-minifier-terser](https://github.com/DanielRuf/html-minifier-terser)'s documentation for more information on the available options.\n\nThe default rules can be overridden using the following options in your `webpack.conf.js`\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.html$/i,\n        loader: \"html-loader\",\n        options: {\n          minimize: {\n            removeComments: false,\n            collapseWhitespace: false,\n          },\n        },\n      },\n    ],\n  },\n};\n```\n\nThe default rules can be extended:\n\n**webpack.config.js**\n\n```js\nconst { defaultMinimizerOptions } = require(\"html-loader\");\n\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.html$/i,\n        loader: \"html-loader\",\n        options: {\n          minimize: {\n            ...defaultMinimizerOptions,\n            removeComments: false,\n            collapseWhitespace: false,\n          },\n        },\n      },\n    ],\n  },\n};\n```\n\n### `esModule`\n\nType:\n\n```ts\ntype esModule = boolean;\n```\n\nDefault: `true`\n\nBy default, `html-loader` generates JS modules that use the ES modules syntax.\nThere are some cases in which using ES modules is beneficial, such as [module concatenation](https://webpack.js.org/plugins/module-concatenation-plugin/) and [tree shaking](https://webpack.js.org/guides/tree-shaking/).\n\nYou can enable a CommonJS modules syntax using:\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.html$/i,\n        loader: \"html-loader\",\n        options: {\n          esModule: false,\n        },\n      },\n    ],\n  },\n};\n```\n\n## Examples\n\n### Disable url resolving using the `<!-- webpackIgnore: true -->` comment\n\nWith `<!-- webpackIgnore: true -->` comment, one can disable sources handling for next tag.\n\n```html\n<!-- Disabled url handling for the src attribute -->\n<!-- webpackIgnore: true -->\n<img src=\"image.png\" />\n\n<!-- Disabled url handling for the src and srcset attributes -->\n<!-- webpackIgnore: true -->\n<img\n  srcset=\"image.png 480w, image.png 768w\"\n  src=\"image.png\"\n  alt=\"Elva dressed as a fairy\"\n/>\n\n<!-- Disabled url handling for the content attribute -->\n<!-- webpackIgnore: true -->\n<meta itemprop=\"image\" content=\"./image.png\" />\n\n<!-- Disabled url handling for the href attribute -->\n<!-- webpackIgnore: true -->\n<link rel=\"icon\" type=\"image/png\" sizes=\"192x192\" href=\"./image.png\" />\n```\n\n### roots\n\nWith [`resolve.roots`](https://webpack.js.org/configuration/resolve/#resolveroots) one can specify a list of directories where requests of server-relative URLs (starting with '/') are resolved.\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  context: __dirname,\n  module: {\n    rules: [\n      {\n        test: /\\.html$/i,\n        loader: \"html-loader\",\n        options: {},\n      },\n      {\n        test: /\\.jpg$/,\n        type: \"asset/resource\",\n      },\n    ],\n  },\n  resolve: {\n    roots: [path.resolve(__dirname, \"fixtures\")],\n  },\n};\n```\n\n**file.html**\n\n```html\n<img src=\"/image.jpg\" />\n```\n\n```js\n// => image.jpg in __dirname/fixtures will be resolved\n```\n\n### CDN\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.jpg$/,\n        type: \"asset/resource\",\n      },\n      {\n        test: /\\.png$/,\n        type: \"asset/inline\",\n      },\n    ],\n  },\n  output: {\n    publicPath: \"http://cdn.example.com/[fullhash]/\",\n  },\n};\n```\n\n**file.html**\n\n```html\n<img src=\"image.jpg\" data-src=\"image2x.png\" />\n```\n\n**index.js**\n\n```js\nrequire(\"html-loader!./file.html\");\n\n// => '<img src=\"http://cdn.example.com/49eba9f/a992ca.jpg\" data-src=\"image2x.png\">'\n```\n\n```js\nrequire('html-loader?{\"sources\":{\"list\":[{\"tag\":\"img\",\"attribute\":\"data-src\",\"type\":\"src\"}]}}!./file.html');\n\n// => '<img src=\"image.jpg\" data-src=\"data:image/png;base64,...\" >'\n```\n\n```js\nrequire('html-loader?{\"sources\":{\"list\":[{\"tag\":\"img\",\"attribute\":\"src\",\"type\":\"src\"},{\"tag\":\"img\",\"attribute\":\"data-src\",\"type\":\"src\"}]}}!./file.html');\n\n// => '<img src=\"http://cdn.example.com/49eba9f/a992ca.jpg\" data-src=\"data:image/png;base64,...\" >'\n```\n\n### Process `script` and `link` tags\n\n**script.file.js**\n\n```js\nconsole.log(document);\n```\n\n**style.file.css**\n\n```css\na {\n  color: red;\n}\n```\n\n**file.html**\n\n```html\n<!doctype html>\n<html>\n  <head>\n    <meta charset=\"UTF-8\" />\n    <title>Title of the document</title>\n    <link rel=\"stylesheet\" type=\"text/css\" href=\"./style.file.css\" />\n  </head>\n  <body>\n    Content of the document......\n    <script src=\"./script.file.js\"></script>\n  </body>\n</html>\n```\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.html$/,\n        type: \"asset/resource\",\n        generator: {\n          filename: \"[name][ext]\",\n        },\n      },\n      {\n        test: /\\.html$/i,\n        use: [\"html-loader\"],\n      },\n      {\n        test: /\\.js$/i,\n        exclude: /\\.file.js$/i,\n        loader: \"babel-loader\",\n      },\n      {\n        test: /\\.file.js$/i,\n        type: \"asset/resource\",\n      },\n      {\n        test: /\\.css$/i,\n        exclude: /\\.file.css$/i,\n        loader: \"css-loader\",\n      },\n      {\n        test: /\\.file.css$/i,\n        type: \"asset/resource\",\n      },\n    ],\n  },\n};\n```\n\n### Templating\n\nYou can use any template system. Below is an example for [handlebars](https://handlebarsjs.com/).\n\n**file.hbs**\n\n```hbs\n<div>\n  <p>{{firstname}} {{lastname}}</p>\n  <img src=\"image.png\" alt=\"alt\" />\n<div>\n```\n\n**webpack.config.js**\n\n```js\nconst Handlebars = require(\"handlebars\");\n\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.hbs$/i,\n        loader: \"html-loader\",\n        options: {\n          preprocessor: (content, loaderContext) => {\n            let result;\n\n            try {\n              result = Handlebars.compile(content)({\n                firstname: \"Value\",\n                lastname: \"OtherValue\",\n              });\n            } catch (error) {\n              loaderContext.emitError(error);\n\n              return content;\n            }\n\n            return result;\n          },\n        },\n      },\n    ],\n  },\n};\n```\n\n### PostHTML\n\nYou can use [PostHTML](https://github.com/posthtml/posthtml) without any additional loaders.\n\n**file.html**\n\n```html\n<img src=\"image.jpg\" />\n```\n\n**webpack.config.js**\n\n```js\nconst posthtml = require(\"posthtml\");\nconst posthtmlWebp = require(\"posthtml-webp\");\n\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.hbs$/i,\n        loader: \"html-loader\",\n        options: {\n          preprocessor: (content, loaderContext) => {\n            let result;\n\n            try {\n              result = posthtml().use(plugin).process(content, { sync: true });\n            } catch (error) {\n              loaderContext.emitError(error);\n\n              return content;\n            }\n\n            return result.html;\n          },\n        },\n      },\n    ],\n  },\n};\n```\n\n### Export into HTML files\n\nA very common scenario is exporting the HTML into their own _.html_ file, to serve them directly instead of injecting with javascript.\nThis can be achieved with a combination of html-loader and [`asset modules`](https://webpack.js.org/guides/asset-modules/).\n\nThe html-loader will parse the URLs, require the images and everything you\nexpect. The extract loader will parse the javascript back into a proper html\nfile, ensuring images are required and point to proper path, and the [`asset modules`](https://webpack.js.org/guides/asset-modules/)\nwill write the _.html_ file for you. Example:\n\n**webpack.config.js**\n\n```js\nmodule.exports = {\n  output: {\n    assetModuleFilename: \"[name][ext]\",\n  },\n  module: {\n    rules: [\n      {\n        test: /\\.html$/,\n        type: \"asset/resource\",\n        generator: {\n          filename: \"[name][ext]\",\n        },\n      },\n      {\n        test: /\\.html$/i,\n        use: [\"html-loader\"],\n      },\n    ],\n  },\n};\n```\n\n## Contributing\n\nPlease take a moment to read our contributing guidelines if you haven't yet done so.\n\n[CONTRIBUTING](./.github/CONTRIBUTING.md)\n\n## License\n\n[MIT](./LICENSE)\n\n[npm]: https://img.shields.io/npm/v/html-loader.svg\n[npm-url]: https://npmjs.com/package/html-loader\n[node]: https://img.shields.io/node/v/html-loader.svg\n[node-url]: https://nodejs.org\n[tests]: https://github.com/webpack-contrib/html-loader/workflows/html-loader/badge.svg\n[tests-url]: https://github.com/webpack-contrib/html-loader/actions\n[cover]: https://codecov.io/gh/webpack-contrib/html-loader/branch/master/graph/badge.svg\n[cover-url]: https://codecov.io/gh/webpack-contrib/html-loader\n[discussion]: https://img.shields.io/github/discussions/webpack/webpack\n[discussion-url]: https://github.com/webpack/webpack/discussions\n[size]: https://packagephobia.now.sh/badge?p=html-loader\n[size-url]: https://packagephobia.now.sh/result?p=html-loader\n","repository":{"type":"git","url":"git+https://github.com/webpack-contrib/html-loader.git"},"users":{"abdul":true,"rubiadias":true,"jruif":true,"dhampik":true,"dennisli87":true,"king.v":true,"princetoad":true,"ridermansb":true,"fadihania":true,"finico":true,"areasis":true,"klimnikita":true,"panos277":true,"sunny_anna":true,"landy2014":true,"jaguarj":true,"andrej-k":true,"zeroxys":true,"akh-rman":true,"qqyiyi":true,"yangzw":true,"nilz3ro":true,"tomchao":true,"double1000":true,"mayavera":true,"coolhector":true,"jk6":true,"renishskills":true,"azertypow":true,"rajiff":true,"usingthesystem":true,"flumpus-dev":true},"bugs":{"url":"https://github.com/webpack-contrib/html-loader/issues"},"license":"MIT","versions":{"0.1.0":{"name":"html-loader","version":"0.1.0","author":{"name":"Tobias Koppers @sokra"},"description":"html loader module for webpack","dependencies":{"html-minifier":"0.5.x","source-map":"0.1.x","loader-utils":"0.2.x"},"devDependencies":{"mocha":"1.17.x","should":"3.1.x"},"scripts":{"test":"mocha --reporter spec"},"repository":{"type":"git","url":"git@github.com:webpack/html-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"bugs":{"url":"https://github.com/webpack/html-loader/issues"},"homepage":"https://github.com/webpack/html-loader","_id":"html-loader@0.1.0","dist":{"shasum":"a672a4b76129c8e89f819c2b3983889a01814fb4","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-loader/-/html-loader-0.1.0.tgz","integrity":"sha512-WcLDR5pkdCVKGct744FqPecESfJOYJC/+pb7CcQ5zQo7CuhB8tER2xDrjbrsgn3f2Q9mX2noAMbnxzRF1ZbJQA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDN/iwdjSjGJCO6+xLfAID7AEOroZEtFvH/MS4iXbrg0wIhANL++GnW0XPLwU1ITVIFtrFwMvuTOmdhCBkqQeeLgiKi"}]},"_from":".","_npmVersion":"1.3.21","_npmUser":{"name":"anonymous","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"anonymous","email":"tobias.koppers@googlemail.com"}],"directories":{}},"0.2.0":{"name":"html-loader","version":"0.2.0","author":{"name":"Tobias Koppers @sokra"},"description":"html loader module for webpack","dependencies":{"html-minifier":"0.5.x","source-map":"0.1.x","loader-utils":"0.2.x"},"devDependencies":{"mocha":"1.17.x","should":"3.1.x"},"scripts":{"test":"mocha --reporter spec"},"repository":{"type":"git","url":"git@github.com:webpack/html-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"bugs":{"url":"https://github.com/webpack/html-loader/issues"},"homepage":"https://github.com/webpack/html-loader","_id":"html-loader@0.2.0","dist":{"shasum":"54e538e784f563bbed8a396280565e7fd155478a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-loader/-/html-loader-0.2.0.tgz","integrity":"sha512-OSFAJfSylRT8koEeoVGbrK4SncQIhiP8RdpSBsPtSiPd9SMphCkctajH8xDajUf2PSFy7NWJO1U0/EEeLCmg2w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIG7DLs7pEyNcQNvQU+RZ7aFY9MrZcbe2FPmeMgp3OY7ZAiEA+7RR+WcAxGgxC2dVaccpCGEyb2k3vq8ltnwpcP1mJo4="}]},"_from":".","_npmVersion":"1.3.21","_npmUser":{"name":"anonymous","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"anonymous","email":"tobias.koppers@googlemail.com"}],"directories":{}},"0.2.1":{"name":"html-loader","version":"0.2.1","author":{"name":"Tobias Koppers @sokra"},"description":"html loader module for webpack","dependencies":{"html-minifier":"0.5.x","source-map":"0.1.x","loader-utils":"0.2.x"},"devDependencies":{"mocha":"1.17.x","should":"3.1.x"},"scripts":{"test":"mocha --reporter spec"},"repository":{"type":"git","url":"git@github.com:webpack/html-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"bugs":{"url":"https://github.com/webpack/html-loader/issues"},"homepage":"https://github.com/webpack/html-loader","_id":"html-loader@0.2.1","dist":{"shasum":"aea5beb6346db0d74218846b8a3fb7ad35f9eaad","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-loader/-/html-loader-0.2.1.tgz","integrity":"sha512-7eBCjBYyPXaO03yunK3Tstnh1/pYjl9IVd9QIrOr8kpHGLmgDwDh/V+Yb6zXUIgM8kffEFFcQ1m8g9p83tIvjw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIC9mosNwlvZml/qExug32D6frxooHc4hsbCfIrofea2DAiEAuP+TaiHyNko/+9APr+LJhkwGpHFzG1MoqsNr1VNFuCI="}]},"_from":".","_npmVersion":"1.3.21","_npmUser":{"name":"anonymous","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"anonymous","email":"tobias.koppers@googlemail.com"}],"directories":{}},"0.2.2":{"name":"html-loader","version":"0.2.2","author":{"name":"Tobias Koppers @sokra"},"description":"html loader module for webpack","dependencies":{"html-minifier":"0.5.x","source-map":"0.1.x","loader-utils":"~0.2.2"},"devDependencies":{"mocha":"1.17.x","should":"3.1.x"},"scripts":{"test":"mocha --reporter spec"},"repository":{"type":"git","url":"git@github.com:webpack/html-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"bugs":{"url":"https://github.com/webpack/html-loader/issues"},"homepage":"https://github.com/webpack/html-loader","_id":"html-loader@0.2.2","dist":{"shasum":"cc581cd851babcfd1c95a7b1addac21b822db71f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-loader/-/html-loader-0.2.2.tgz","integrity":"sha512-tbx7elo44AdtHogpPoKtfD6Rwf43LfHIvh7UAEo+QSu4fbOYwADRQeIbReZtb5VR0247Irz1V7UAvVgEZbfaTA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDWySXwd9v3eMJT0joMJjauECDtp3AVpjunD55MV1dm+AiEAmuWf41pOeNgWk9hARKnit68UhldMvf5j5LJVW02CSN4="}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"anonymous","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"anonymous","email":"tobias.koppers@googlemail.com"}],"directories":{}},"0.2.3":{"name":"html-loader","version":"0.2.3","author":{"name":"Tobias Koppers @sokra"},"description":"html loader module for webpack","dependencies":{"html-minifier":"0.5.x","source-map":"0.1.x","fastparse":"^1.0.0","loader-utils":"~0.2.2"},"devDependencies":{"mocha":"1.17.x","should":"3.1.x"},"scripts":{"test":"mocha --reporter spec"},"repository":{"type":"git","url":"git@github.com:webpack/html-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"gitHead":"90e6ddd3037683f79125d57c1505496dbdb810d0","bugs":{"url":"https://github.com/webpack/html-loader/issues"},"homepage":"https://github.com/webpack/html-loader","_id":"html-loader@0.2.3","_shasum":"2c1baef3009ee7f6e9034119401978fe6dc52dbc","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"anonymous","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"anonymous","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"2c1baef3009ee7f6e9034119401978fe6dc52dbc","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-loader/-/html-loader-0.2.3.tgz","integrity":"sha512-crY0RUfh785h3uA5De7smYo9uPQdoUyxMIlZIq5tabr+en4O1K/NhAb5HaNx57dbQRfLX85RR7MRFVCKK9FURQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDkkISBPv9Yx9sfGlZ29oS1z3+brqAFrJKJhQDzEUNJ7AiAydVoBO95xjU1P1/arAquuuNUGr2XTuiaUB7cwHHRugA=="}]},"directories":{}},"0.3.0":{"name":"html-loader","version":"0.3.0","author":{"name":"Tobias Koppers @sokra"},"description":"html loader module for webpack","dependencies":{"html-minifier":"^0.7.2","source-map":"0.1.x","fastparse":"^1.0.0","loader-utils":"~0.2.2"},"devDependencies":{"mocha":"1.17.x","should":"3.1.x"},"scripts":{"test":"mocha --reporter spec"},"repository":{"type":"git","url":"git@github.com:webpack/html-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"gitHead":"2a4388a2efd72de2efbd3442ed156b3cc28e65b0","bugs":{"url":"https://github.com/webpack/html-loader/issues"},"homepage":"https://github.com/webpack/html-loader","_id":"html-loader@0.3.0","_shasum":"979a427ca3a8e6fc7c5bcb7c2f5ab3e940d52917","_from":".","_npmVersion":"2.7.4","_nodeVersion":"0.12.2","_npmUser":{"name":"anonymous","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"anonymous","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"979a427ca3a8e6fc7c5bcb7c2f5ab3e940d52917","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-loader/-/html-loader-0.3.0.tgz","integrity":"sha512-u3sXf2uGD1/QY6hGQDc+lp2ExyA6VvU6NXO5Q/y8Pax9bXZl6xHsqV/YOfksApbChFwgtgfD1nR4RMiZbE+TtQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFS9t9jfbCAn+XZshpQPib8fszlPmHe6j3ni4nIx8PUZAiA4pr5FCkotY14etxTp0F+PPa9UYcn3hSIub91qavYNug=="}]},"directories":{}},"0.4.0":{"name":"html-loader","version":"0.4.0","author":{"name":"Tobias Koppers @sokra"},"description":"html loader module for webpack","dependencies":{"es6-templates":"^0.2.2","fastparse":"^1.0.0","html-minifier":"^1.0.0","loader-utils":"~0.2.2","object-assign":"^4.0.1","source-map":"^0.5.3"},"devDependencies":{"mocha":"^2.3.4","should":"^7.1.1"},"scripts":{"test":"mocha --reporter spec"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/html-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"gitHead":"5fb1cf3b29254d5e47d598f009434aa7c52fa2e1","bugs":{"url":"https://github.com/webpack/html-loader/issues"},"homepage":"https://github.com/webpack/html-loader#readme","_id":"html-loader@0.4.0","_shasum":"841e0b4f8e9f0fd4209c94ce013370261d6410e1","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"anonymous","email":"tobias.koppers@googlemail.com"},"maintainers":[{"name":"anonymous","email":"tobias.koppers@googlemail.com"}],"dist":{"shasum":"841e0b4f8e9f0fd4209c94ce013370261d6410e1","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-loader/-/html-loader-0.4.0.tgz","integrity":"sha512-Ge8x6ORrKRS+HwiTee4QPmp5VMb+uCk+CzvyXduH8hjVQgYnoiQV6BIUqBe2srNG8gQEgsNb3L8oyFeIqGaPrA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQClall+R/tp1xztgxiJL7Rh5isvX+0z163Wfi2DvxicxgIgRmDLFa/HRxylH32ZQocfk/Bz5i43VHzkSJDyOnNomvg="}]},"directories":{}},"0.4.2":{"name":"html-loader","version":"0.4.2","author":{"name":"Tobias Koppers @sokra"},"description":"html loader module for webpack","dependencies":{"es6-templates":"^0.2.2","fastparse":"^1.0.0","html-minifier":"^1.0.0","loader-utils":"~0.2.2","object-assign":"^4.0.1","source-map":"^0.5.3"},"devDependencies":{"mocha":"^2.3.4","should":"^7.1.1"},"scripts":{"test":"mocha --reporter spec"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/html-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"gitHead":"1be759347dc79b9d7b1b5545133f63634fc4d596","bugs":{"url":"https://github.com/webpack/html-loader/issues"},"homepage":"https://github.com/webpack/html-loader#readme","_id":"html-loader@0.4.2","_shasum":"97873e6535466c50205e3135b10b11b3d61951d3","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.5.0","_npmUser":{"name":"anonymous","email":"developers@peerigon.com"},"dist":{"shasum":"97873e6535466c50205e3135b10b11b3d61951d3","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-loader/-/html-loader-0.4.2.tgz","integrity":"sha512-2CFue+bUrKT3sInRobUyisEIcaxlpF0rh5RhIMw7RaJyLq/KmzJxbLU7kw/inSRfHjBC7ljw+2ew2eTrqwKwxA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFljZfJOk8F7jR5gG9c/eFgUL7blSpsm1GrLi6WzUaF6AiEA4xg4Ik4isCZjpHMU1rvk2DljQk+Z2NKiRWw3f4EKoKE="}]},"maintainers":[{"name":"anonymous","email":"developers@peerigon.com"},{"name":"anonymous","email":"tobias.koppers@googlemail.com"}],"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/html-loader-0.4.2.tgz_1455529731374_0.15213080635294318"},"directories":{}},"0.4.3":{"name":"html-loader","version":"0.4.3","author":{"name":"Tobias Koppers @sokra"},"description":"html loader module for webpack","dependencies":{"es6-templates":"^0.2.2","fastparse":"^1.0.0","html-minifier":"^1.0.0","loader-utils":"~0.2.2","object-assign":"^4.0.1"},"devDependencies":{"mocha":"^2.3.4","should":"^7.1.1"},"scripts":{"test":"mocha --reporter spec"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/html-loader.git"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"gitHead":"4e7dc5a33d1a2a72e0727a94368bad6ac0e8bcf5","bugs":{"url":"https://github.com/webpack/html-loader/issues"},"homepage":"https://github.com/webpack/html-loader#readme","_id":"html-loader@0.4.3","_shasum":"ee11786b04818967cd6c679ca055e38f9d9721e7","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.5.0","_npmUser":{"name":"anonymous","email":"developers@peerigon.com"},"dist":{"shasum":"ee11786b04818967cd6c679ca055e38f9d9721e7","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-loader/-/html-loader-0.4.3.tgz","integrity":"sha512-XV8VmsuQJOP4v9v9wT5ounGM28qG1GNYEm2nXL8p8kOL+aV+CtLj5Ag6krqqhRvS9SRcyOD/rkI8eB4k0dPvvg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGyKbz1F369owJrf6Kz2mTs18i7FGUncjarpGTz239SiAiAudUDeg6NN2DMzaHZbv9UpjXgtxv0KYfdVjtbxmPYQ4A=="}]},"maintainers":[{"name":"anonymous","email":"developers@peerigon.com"},{"name":"anonymous","email":"tobias.koppers@googlemail.com"}],"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/html-loader-0.4.3.tgz_1455570934881_0.17954226001165807"},"directories":{}},"0.4.4":{"name":"html-loader","version":"0.4.4","author":{"name":"Tobias Koppers @sokra"},"description":"html loader module for webpack","dependencies":{"es6-templates":"^0.2.2","fastparse":"^1.1.1","html-minifier":"^3.0.1","loader-utils":"^0.2.15","object-assign":"^4.1.0"},"license":"MIT","devDependencies":{"beautify-lint":"^1.0.4","codecov.io":"^0.1.6","eslint":"^3.1.1","istanbul":"^0.4.4","js-beautify":"^1.6.3","mocha":"^2.5.3","should":"^10.0.0"},"scripts":{"pretest":"npm run lint && npm run beautify-lint","test":"mocha --harmony --full-trace --check-leaks","travis":"npm run cover -- --report lcovonly","lint":"eslint lib bin hot","beautify-lint":"beautify-lint lib/**/*.js hot/**/*.js bin/**/*.js benchmark/*.js test/*.js","beautify":"beautify-rewrite lib/**/*.js hot/**/*.js bin/**/*.js benchmark/*.js test/*.js","postcover":"npm run lint && npm run beautify-lint","cover":"istanbul cover -x *.runtime.js node_modules/mocha/bin/_mocha","publish-patch":"npm run lint && npm run beautify-lint && mocha && npm version patch && git push && git push --tags && npm publish"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/html-loader.git"},"gitHead":"773249b221c541e7f95503062bfbfe81f2f2a767","bugs":{"url":"https://github.com/webpack/html-loader/issues"},"homepage":"https://github.com/webpack/html-loader#readme","_id":"html-loader@0.4.4","_shasum":"f2b5b9acd5e035ff3ab5fd369c13c97a7bb014da","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"anonymous","email":"hemanth.hm@gmail.com"},"dist":{"shasum":"f2b5b9acd5e035ff3ab5fd369c13c97a7bb014da","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-loader/-/html-loader-0.4.4.tgz","integrity":"sha512-hsltFPqJ0zQlgt1twdocVCWM79w3NnUUNSL8QU6VM44OgH1RGSAXxFJlofIeBuA5CyWM+/0yLE9HP7yvUuKWqw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEDwB9v3zmoqcoHKHFN9kBuAKULE0MhVePE2I5HoYM6SAiBgwD/2U3A+L99PXZsZxVqwJxJAc0fdO7c9YAV3ipszpQ=="}]},"maintainers":[{"name":"anonymous","email":"hemanth.hm@gmail.com"},{"name":"anonymous","email":"developers@peerigon.com"},{"name":"anonymous","email":"tobias.koppers@googlemail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/html-loader-0.4.4.tgz_1473763638144_0.6524382580537349"},"directories":{}},"0.4.5":{"name":"html-loader","version":"0.4.5","author":{"name":"Tobias Koppers @sokra"},"description":"html loader module for webpack","dependencies":{"es6-templates":"^0.2.2","fastparse":"^1.1.1","html-minifier":"^3.0.1","loader-utils":"^1.0.2","object-assign":"^4.1.0"},"license":"MIT","devDependencies":{"beautify-lint":"^1.0.4","codecov.io":"^0.1.6","eslint":"^3.1.1","istanbul":"^0.4.4","js-beautify":"^1.6.3","mocha":"^2.5.3","should":"^10.0.0"},"scripts":{"pretest":"npm run lint && npm run beautify-lint","test":"mocha --harmony --full-trace --check-leaks","travis":"npm run cover -- --report lcovonly","lint":"eslint lib bin hot","beautify-lint":"beautify-lint lib/**/*.js hot/**/*.js bin/**/*.js benchmark/*.js test/*.js","beautify":"beautify-rewrite lib/**/*.js hot/**/*.js bin/**/*.js benchmark/*.js test/*.js","postcover":"npm run lint && npm run beautify-lint","cover":"istanbul cover -x *.runtime.js node_modules/mocha/bin/_mocha","publish-patch":"npm run lint && npm run beautify-lint && mocha && npm version patch && git push && git push --tags && npm publish"},"repository":{"type":"git","url":"git+ssh://git@github.com/webpack/html-loader.git"},"gitHead":"90c7b60d41a0af76019dbefa91d45dab90fbdd1e","bugs":{"url":"https://github.com/webpack/html-loader/issues"},"homepage":"https://github.com/webpack/html-loader#readme","_id":"html-loader@0.4.5","_shasum":"5fbcd87cd63a5c49a7fce2fe56f425e05729c68c","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.5","_npmUser":{"name":"anonymous","email":"wiens.joshua@gmail.com"},"dist":{"shasum":"5fbcd87cd63a5c49a7fce2fe56f425e05729c68c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-loader/-/html-loader-0.4.5.tgz","integrity":"sha512-RQB5YK5c/dvBFHalLhCFHwUHjMcH7IhlqO5FpmxIsPzkm/5e0t/iB+1pkPi3txofOlCs+YS5asEhlMpG50mc6Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDz8ohAi+QdnYzfB/CSldqrMjbsNovPOY8yebe2dxsh6wIhAL8WBFAuJN+oqCmf4fk46H/h3d5c6HOFk6uQStyYixgN"}]},"maintainers":[{"name":"anonymous","email":"bebraw@gmail.com"},{"name":"anonymous","email":"wiens.joshua@gmail.com"},{"name":"anonymous","email":"eric@smarterspam.com"},{"name":"anonymous","email":"hemanth.hm@gmail.com"},{"name":"anonymous","email":"mail@johannesewald.de"},{"name":"anonymous","email":"developers@peerigon.com"},{"name":"anonymous","email":"tobias.koppers@googlemail.com"},{"name":"anonymous","email":"sean.larkin@cuw.edu"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/html-loader-0.4.5.tgz_1487960864573_0.6131426664069295"},"directories":{}},"0.5.0":{"name":"html-loader","version":"0.5.0","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","description":"html loader module for webpack","main":"index.js","files":["lib"],"scripts":{"pretest":"npm run lint && npm run beautify-lint","test":"mocha --harmony --full-trace --check-leaks","travis":"npm run cover -- --report lcovonly","lint":"eslint lib bin hot","beautify-lint":"beautify-lint lib/**/*.js hot/**/*.js bin/**/*.js benchmark/*.js test/*.js","beautify":"beautify-rewrite lib/**/*.js hot/**/*.js bin/**/*.js benchmark/*.js test/*.js","postcover":"npm run lint && npm run beautify-lint","cover":"istanbul cover -x *.runtime.js node_modules/mocha/bin/_mocha","release":"standard-version"},"dependencies":{"es6-templates":"^0.2.2","fastparse":"^1.1.1","html-minifier":"^3.0.1","loader-utils":"^1.0.2","object-assign":"^4.1.0"},"devDependencies":{"beautify-lint":"^1.0.4","codecov.io":"^0.1.6","eslint":"^3.1.1","istanbul":"^0.4.4","js-beautify":"^1.6.3","mocha":"^2.5.3","should":"^10.0.0","standard-version":"^4.2.0"},"homepage":"http://github.com/webpack-contrib/html-loader","repository":{"type":"git","url":"git+ssh://git@github.com/webpack/html-loader.git"},"gitHead":"9e9bce2e95fc1fce69d632915a72fe7afb310a40","bugs":{"url":"https://github.com/webpack/html-loader/issues"},"_id":"html-loader@0.5.0","_npmVersion":"5.3.0","_nodeVersion":"8.2.0","_npmUser":{"name":"anonymous","email":"wiens.joshua@gmail.com"},"dist":{"integrity":"sha512-O7i3IXkoSXpXG5UnZyspVtcGp/o/sBg4mmqqgE6KGwlzGF8liqxMz90IuEE52ZoAoMGXgUIFcAQ8V9y2EkPZ8w==","shasum":"55653aea10937854de2610f43060d040505a0fd3","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-loader/-/html-loader-0.5.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCuKFTxmQI9j1shRkiiKUnBcJHjQuMCmjRDUsptrTo1bgIgArJItBKx/d9/TJj7H3uF6p3n9chJ7KLFduXV4SvIQqw="}]},"maintainers":[{"email":"developers@peerigon.com","name":"anonymous"},{"email":"eric@smarterspam.com","name":"anonymous"},{"email":"wiens.joshua@gmail.com","name":"anonymous"},{"email":"bebraw@gmail.com","name":"anonymous"},{"email":"mail@johannesewald.de","name":"anonymous"},{"email":"sean.larkin@cuw.edu","name":"anonymous"},{"email":"hemanth.hm@gmail.com","name":"anonymous"},{"email":"tobias.koppers@googlemail.com","name":"anonymous"},{"email":"j.tangelder@gmail.com","name":"anonymous"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-loader-0.5.0.tgz_1501101519301_0.7589198898058385"},"directories":{}},"0.5.1":{"name":"html-loader","version":"0.5.1","author":{"name":"Tobias Koppers @sokra"},"license":"MIT","description":"html loader module for webpack","main":"index.js","files":["lib"],"scripts":{"pretest":"npm run lint && npm run beautify-lint","test":"mocha --harmony --full-trace --check-leaks","travis":"npm run cover -- --report lcovonly","lint":"eslint lib bin hot","beautify-lint":"beautify-lint lib/**/*.js hot/**/*.js bin/**/*.js benchmark/*.js test/*.js","beautify":"beautify-rewrite lib/**/*.js hot/**/*.js bin/**/*.js benchmark/*.js test/*.js","postcover":"npm run lint && npm run beautify-lint","cover":"istanbul cover -x *.runtime.js node_modules/mocha/bin/_mocha","release":"standard-version"},"dependencies":{"es6-templates":"^0.2.2","fastparse":"^1.1.1","html-minifier":"^3.0.1","loader-utils":"^1.0.2","object-assign":"^4.1.0"},"devDependencies":{"beautify-lint":"^1.0.4","codecov.io":"^0.1.6","eslint":"^3.1.1","istanbul":"^0.4.4","js-beautify":"^1.6.3","mocha":"^2.5.3","should":"^10.0.0","standard-version":"^4.2.0"},"homepage":"http://github.com/webpack-contrib/html-loader","repository":{"type":"git","url":"git+ssh://git@github.com/webpack/html-loader.git"},"gitHead":"dac21c2f2577ad7a4b7c033bcc00f3598556efd8","bugs":{"url":"https://github.com/webpack/html-loader/issues"},"_id":"html-loader@0.5.1","_npmVersion":"5.3.0","_nodeVersion":"8.2.1","_npmUser":{"name":"anonymous","email":"wiens.joshua@gmail.com"},"dist":{"integrity":"sha512-RxokXoxcsRSWcN553Ew+K0TUo68gQfmddTuUIZ4xRD8Ax1xXzX2UYQ3FC3D5MoRPGAdL1erWKeEFihDrrdxHiA==","shasum":"4f1e8396a1ea6ab42bedc987dfac058070861ebe","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-loader/-/html-loader-0.5.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHtNIOVz/5o2+ia+KL8ekTAhcfCRP1KCavo0Br4g1x3TAiEAlXojOvW7koM1YlQKWHQnwYALc136UoqEMBTUTCQ+Vvk="}]},"maintainers":[{"email":"developers@peerigon.com","name":"anonymous"},{"email":"eric@smarterspam.com","name":"anonymous"},{"email":"wiens.joshua@gmail.com","name":"anonymous"},{"email":"bebraw@gmail.com","name":"anonymous"},{"email":"mail@johannesewald.de","name":"anonymous"},{"email":"sean.larkin@cuw.edu","name":"anonymous"},{"email":"hemanth.hm@gmail.com","name":"anonymous"},{"email":"tobias.koppers@googlemail.com","name":"anonymous"},{"email":"j.tangelder@gmail.com","name":"anonymous"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-loader-0.5.1.tgz_1502176351815_0.8337455757427961"},"directories":{}},"0.5.4":{"name":"html-loader","version":"0.5.4","author":{"name":"Tobias Koppers @sokra"},"description":"html loader module for webpack","license":"MIT","main":"index.js","files":["lib"],"scripts":{"lint":"eslint lib test","pretest":"npm run lint","test":"mocha --harmony --full-trace --check-leaks","cover":"istanbul cover -x *.runtime.js node_modules/mocha/bin/_mocha","release":"standard-version"},"dependencies":{"es6-templates":"^0.2.3","fastparse":"^1.1.1","html-minifier":"^3.5.8","loader-utils":"^1.1.0","object-assign":"^4.1.1"},"devDependencies":{"beautify-lint":"^1.0.4","codecov.io":"^0.1.6","eslint":"^3.1.1","istanbul":"^0.4.5","js-beautify":"^1.6.3","mocha":"^2.5.3","should":"^10.0.0","standard-version":"^4.3.0"},"homepage":"https://github.com/webpack-contrib/html-loader","repository":{"type":"git","url":"git+https://github.com/webpack-contrib/html-loader.git"},"bugs":{"url":"https://github.com/webpack-contrib/html-loader/issues"},"gitHead":"387299493cb59c75a1bc10f0cff6e23ae9f86f95","_id":"html-loader@0.5.4","_npmVersion":"5.6.0","_nodeVersion":"9.2.0","_npmUser":{"name":"anonymous","email":"michael.ciniawsky@gmail.com"},"dist":{"integrity":"sha512-Raq4yO8GmXcaGxU87P0ukObpBdXFzVnVERJVuR3JPJ5wD2h5owLeyGpCrZ4GHcmlAm80Lh8S4CYjn7YlxGVCkg==","shasum":"70f36e30a923cc52536fdc812cec6f556aeb47a4","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-loader/-/html-loader-0.5.4.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAXrrbY4wnOmgGabI/JDhfvEXkSTfflPJfJqlYpl/gtQAiEA1t+QbQYE9XfCiGm9JQBFF3nU4UTGxpe7yQIi+cR7JjI="}]},"maintainers":[{"email":"michael.ciniawsky@gmail.com","name":"anonymous"},{"email":"developers@peerigon.com","name":"anonymous"},{"email":"eric@smarterspam.com","name":"anonymous"},{"email":"bebraw@gmail.com","name":"anonymous"},{"email":"mail@johannesewald.de","name":"anonymous"},{"email":"sean.larkin@cuw.edu","name":"anonymous"},{"email":"hemanth.hm@gmail.com","name":"anonymous"},{"email":"tobias.koppers@googlemail.com","name":"anonymous"},{"email":"j.tangelder@gmail.com","name":"anonymous"},{"email":"wiens.joshua@gmail.com","name":"anonymous"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-loader-0.5.4.tgz_1515131947247_0.7742094860877842"},"directories":{}},"0.5.5":{"name":"html-loader","version":"0.5.5","author":{"name":"Tobias Koppers @sokra"},"description":"html loader module for webpack","license":"MIT","main":"index.js","files":["lib"],"scripts":{"lint":"eslint lib test","pretest":"npm run lint","test":"mocha --harmony --full-trace --check-leaks","cover":"istanbul cover -x *.runtime.js node_modules/mocha/bin/_mocha","release":"standard-version"},"dependencies":{"es6-templates":"^0.2.3","fastparse":"^1.1.1","html-minifier":"^3.5.8","loader-utils":"^1.1.0","object-assign":"^4.1.1"},"devDependencies":{"beautify-lint":"^1.0.4","codecov.io":"^0.1.6","eslint":"^3.1.1","istanbul":"^0.4.5","js-beautify":"^1.6.3","mocha":"^2.5.3","should":"^10.0.0","standard-version":"^4.3.0"},"homepage":"https://github.com/webpack-contrib/html-loader","repository":{"type":"git","url":"git+https://github.com/webpack-contrib/html-loader.git"},"bugs":{"url":"https://github.com/webpack-contrib/html-loader/issues"},"gitHead":"27026d2f0f5523ddea2a68272c4b58d5b69cffc0","_id":"html-loader@0.5.5","_npmVersion":"5.6.0","_nodeVersion":"9.2.0","_npmUser":{"name":"anonymous","email":"michael.ciniawsky@gmail.com"},"dist":{"integrity":"sha512-7hIW7YinOYUpo//kSYcPB6dCKoceKLmOwjEMmhIobHuWGDVl0Nwe4l68mdG/Ru0wcUxQjVMEoZpkalZ/SE7zog==","shasum":"6356dbeb0c49756d8ebd5ca327f16ff06ab5faea","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-loader/-/html-loader-0.5.5.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDj16rVpDLnqBpyRez+R0Epd4qpj/V9Dm3ak0deFinP9AIhAKTVHlul8RwwvvMdV7zNCgS7tTBYRAvnQwXIa/qQK6tI"}]},"maintainers":[{"email":"michael.ciniawsky@gmail.com","name":"anonymous"},{"email":"developers@peerigon.com","name":"anonymous"},{"email":"eric@smarterspam.com","name":"anonymous"},{"email":"bebraw@gmail.com","name":"anonymous"},{"email":"mail@johannesewald.de","name":"anonymous"},{"email":"sean.larkin@cuw.edu","name":"anonymous"},{"email":"hemanth.hm@gmail.com","name":"anonymous"},{"email":"tobias.koppers@googlemail.com","name":"anonymous"},{"email":"j.tangelder@gmail.com","name":"anonymous"},{"email":"wiens.joshua@gmail.com","name":"anonymous"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-loader-0.5.5.tgz_1516208163878_0.042634898563846946"},"directories":{}},"1.0.0-alpha.0":{"name":"html-loader","version":"1.0.0-alpha.0","author":{"name":"Tobias Koppers @sokra"},"description":"html loader module for webpack","license":"MIT","main":"dist/cjs.js","files":["dist"],"scripts":{"start":"npm run build -- -w","build":"cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files","clean":"del-cli dist","commitlint":"commitlint","commitmsg":"commitlint -e $GIT_PARAMS","lint":"eslint --cache src test","ci:lint:commits":"commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}","lint-staged":"lint-staged","prebuild":"npm run clean","prepare":"npm run build","release":"standard-version","release:ci":"conventional-github-releaser -p angular","release:validate":"commitlint --from=$(git describe --tags --abbrev=0) --to=$(git rev-parse HEAD)","security":"nsp check","test":"jest","test:watch":"jest --watch","test:coverage":"jest --collectCoverageFrom='src/**/*.js' --coverage","ci:lint":"npm run lint && npm run security","ci:test":"npm run test -- --runInBand","ci:coverage":"npm run test:coverage -- --runInBand","defaults":"webpack-defaults"},"dependencies":{"@posthtml/esm":"^1.0.0","htmlnano":"^0.1.6","loader-utils":"^1.1.0","posthtml":"^0.11.2","schema-utils":"^0.4.3"},"devDependencies":{"@commitlint/cli":"^5.2.8","@commitlint/config-angular":"^5.1.1","@webpack-contrib/eslint-config-webpack":"^2.0.2","@webpack-contrib/test-utils":"^0.1.2","babel-cli":"^6.26.0","babel-jest":"^22.1.0","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-polyfill":"^6.26.0","babel-preset-env":"^1.6.1","conventional-github-releaser":"^2.0.0","cross-env":"^5.1.3","del":"^3.0.0","del-cli":"^1.1.0","eslint":"^4.17.0","eslint-plugin-import":"^2.8.0","eslint-plugin-prettier":"^2.6.0","file-loader":"^1.1.6","husky":"^0.14.3","jest":"^22.1.4","jsdom":"^11.6.2","lint-staged":"^6.1.0","memory-fs":"^0.4.1","nsp":"^3.1.0","pre-commit":"^1.2.2","prettier":"^1.10.2","standard-version":"^4.3.0","webpack":"^4.0.0-beta.0","webpack-defaults":"^2.0.0-rc.4"},"engines":{"node":">= 6.9.0 || >= 8.9.0"},"peerDependencies":{"webpack":"^3.0.0 || ^4.0.0"},"homepage":"https://github.com/webpack-contrib/html-loader","repository":{"type":"git","url":"git+https://github.com/webpack-contrib/html-loader.git"},"bugs":{"url":"https://github.com/webpack-contrib/html-loader/issues"},"pre-commit":"lint-staged","lint-staged":{"*.js":["eslint --fix","git add"]},"gitHead":"337cc4a00aa4f1f260d484b0c31532e8e23d1a08","_id":"html-loader@1.0.0-alpha.0","_npmVersion":"5.6.0","_nodeVersion":"9.5.0","_npmUser":{"name":"anonymous","email":"michael.ciniawsky@gmail.com"},"dist":{"integrity":"sha512-KcuaIRWTU0kFjOJCs32a3JsGNCWkeOak0/F/uvJNp3x/N4McXdqHpcK64cYTozK7QLPKKtUqb9h7wR9K9rYRkg==","shasum":"3f4ae7b490a587619be6d1eaa8ce16683580c642","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-loader/-/html-loader-1.0.0-alpha.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDwHixU5EjV8ombPldctH8R6UB7e6cqDe2NRFLCoyCr4QIhAJYOOFsbb97lXdW77I+wzVXvd3GhVPSnyLQxBejW57Bi"}]},"maintainers":[{"email":"michael.ciniawsky@gmail.com","name":"anonymous"},{"email":"developers@peerigon.com","name":"anonymous"},{"email":"eric@smarterspam.com","name":"anonymous"},{"email":"bebraw@gmail.com","name":"anonymous"},{"email":"mail@johannesewald.de","name":"anonymous"},{"email":"sean.larkin@cuw.edu","name":"anonymous"},{"email":"hemanth.hm@gmail.com","name":"anonymous"},{"email":"tobias.koppers@googlemail.com","name":"anonymous"},{"email":"j.tangelder@gmail.com","name":"anonymous"},{"email":"wiens.joshua@gmail.com","name":"anonymous"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-loader-1.0.0-alpha.0.tgz_1517888273768_0.6444152931217104"},"directories":{}},"1.0.0":{"name":"html-loader","version":"1.0.0","description":"Html loader module for webpack","license":"MIT","repository":{"type":"git","url":"git+https://github.com/webpack-contrib/html-loader.git"},"author":{"name":"Tobias Koppers @sokra"},"homepage":"https://github.com/webpack-contrib/html-loader","bugs":{"url":"https://github.com/webpack-contrib/html-loader/issues"},"funding":{"type":"opencollective","url":"https://opencollective.com/webpack"},"main":"dist/cjs.js","engines":{"node":">= 10.13.0"},"scripts":{"start":"npm run build -- -w","clean":"del-cli dist","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\"","prebuild":"npm run clean","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","postbuild":"npm run validate:runtime","commitlint":"commitlint --from=master","security":"npm audit","lint:prettier":"prettier \"{**/*,*}.{js,json,md,yml,css,ts}\" --list-different","lint:js":"eslint --cache .","lint":"npm-run-all -l -p \"lint:**\"","test:only":"cross-env NODE_ENV=test 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":"npm run build","release":"standard-version","defaults":"webpack-defaults"},"peerDependencies":{"webpack":"^4.0.0 || ^5.0.0"},"dependencies":{"html-minifier-terser":"^5.0.4","htmlparser2":"^4.1.0","loader-utils":"^2.0.0","parse-srcset":"^1.0.2","schema-utils":"^2.6.5"},"devDependencies":{"@babel/cli":"^7.8.4","@babel/core":"^7.8.7","@babel/preset-env":"^7.8.7","@commitlint/cli":"^8.3.5","@commitlint/config-conventional":"^8.3.4","@webpack-contrib/defaults":"^6.3.0","@webpack-contrib/eslint-config-webpack":"^3.0.0","babel-jest":"^25.1.0","commitlint-azure-pipelines-cli":"^1.0.3","cross-env":"^7.0.2","del":"^5.1.0","del-cli":"^3.0.0","es-check":"^5.1.0","eslint":"^6.8.0","eslint-config-prettier":"^6.10.0","eslint-plugin-import":"^2.20.1","file-loader":"^6.0.0","handlebars":"^4.7.3","husky":"^4.2.3","jest":"^25.1.0","jest-junit":"^10.0.0","lint-staged":"^10.0.8","memfs":"^3.1.2","npm-run-all":"^4.1.5","posthtml":"^0.12.0","posthtml-webp":"^1.5.0","prettier":"^1.19.1","standard-version":"^7.1.0","webpack":"^4.42.0"},"keywords":["webpack","html","loader"],"gitHead":"d7cccfad615a723ac8a924cd8603667d46a93685","_id":"html-loader@1.0.0","_nodeVersion":"10.15.2","_npmVersion":"6.14.2","dist":{"integrity":"sha512-acPyjP9Mo05jEbe/oejXu5gFwtKWdFewPoaVa47VCnHmRbR43jtdx/kPhPEbCBm2qWtIn+a8uTJAW4Ocnn4olw==","shasum":"40000ff27bfb4fbf087d37f8438cae0b1d8b53b1","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-loader/-/html-loader-1.0.0.tgz","fileCount":13,"unpackedSize":55450,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJec2bTCRA9TVsSAnZWagAANtsP/3A7ZV2WTvXQD9YCMi9q\n9/FbKnvMGfu/QcDWfGjeI7fOWR6rnCsjr0502OJ/k3EUco4tU9ZqUm3OFl0z\npV2hmKt67CTPPT0yY/IvJubPEciYu2rlx8SyAyIKC5T7frJTaL35kOA6InZr\nnm4Eqb9cYZqshony29xx2Gz6peHDwUivJUxrOOqwQzSkAalUWqp4xuXNMY5E\ng1rn2iYsWmxz4S0OKAp+XJZeacUQ28q48xqn4CagX3lR8YXUfLSIfC7ya5jY\nqXL/NhqtdJvhzdjBMKCWujRk2Nwohc2R4/mOJRufAofOe4Yo3FDOAtZfgqWv\nmKD2FurUeQ3n2RI/ydmvv6yvg7UrlNPOgvSC7nOlCugRSsbXkA9TvTkeynuR\nSKJ/9SshVMxBxxNHOD+y6h+CW69jMbNUFsKpacOuxLqSY2sD0UORj64wdLZj\nOl3XRUnnE9mqZBPnQy/FDwl3eCU/uKSDUmDvZYcObZtDmCJI8umHGAQtw+n6\n5jst1/xb6WCm0F81575FuskEam5X6kfBYDdfbQXmJ4pi3ePYz7737nNuWojG\ncW540p44+iNDvySkXEotgfNEt9djVPtFKmqmJw9Nc3zoMKn2x4u4hT5TtCNg\nlNWReEbgbEQb+DrhG2xtakM9/F1egykmNS1XOVo91O8aFNRePptFnkW8DypK\nSeLb\r\n=XHB9\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBWr2RecMxhbpQH9jOQpSTPDowsnATXFiIDXCScN9KHuAiEAm4NrJjpk4qJjpf37mhZHyqT05q0gsawOs0iWj4o7M4o="}]},"maintainers":[{"email":"bebraw@gmail.com","name":"anonymous"},{"email":"wiens.joshua@gmail.com","name":"anonymous"},{"email":"eric@smarterspam.com","name":"anonymous"},{"email":"sheo13666q@gmail.com","name":"anonymous"},{"email":"hemanth.hm@gmail.com","name":"anonymous"},{"email":"mail@johannesewald.de","name":"anonymous"},{"email":"michael.ciniawsky@gmail.com","name":"anonymous"},{"email":"developers@peerigon.com","name":"anonymous"},{"email":"tobias.koppers@googlemail.com","name":"anonymous"},{"email":"sean.larkin@cuw.edu","name":"anonymous"}],"_npmUser":{"name":"anonymous","email":"sheo13666q@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-loader_1.0.0_1584621267353_0.4007727015394904"},"_hasShrinkwrap":false},"1.1.0":{"name":"html-loader","version":"1.1.0","description":"Html loader module for webpack","license":"MIT","repository":{"type":"git","url":"git+https://github.com/webpack-contrib/html-loader.git"},"author":{"name":"Tobias Koppers @sokra"},"homepage":"https://github.com/webpack-contrib/html-loader","bugs":{"url":"https://github.com/webpack-contrib/html-loader/issues"},"funding":{"type":"opencollective","url":"https://opencollective.com/webpack"},"main":"dist/cjs.js","engines":{"node":">= 10.13.0"},"scripts":{"start":"npm run build -- -w","clean":"del-cli dist","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\"","prebuild":"npm run clean","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","postbuild":"npm run validate:runtime","commitlint":"commitlint --from=master","security":"npm audit","lint:prettier":"prettier \"{**/*,*}.{js,json,md,yml,css,ts}\" --list-different","lint:js":"eslint --cache .","lint":"npm-run-all -l -p \"lint:**\"","test:only":"cross-env NODE_ENV=test jest","test:watch":"npm run test:only -- --watch","test:coverage":"npm run test:only -- --coverage","pretest":"npm run lint","test":"npm run test:coverage","prepare":"npm run build","release":"standard-version","defaults":"webpack-defaults"},"peerDependencies":{"webpack":"^4.0.0 || ^5.0.0"},"dependencies":{"html-minifier-terser":"^5.0.5","htmlparser2":"^4.1.0","loader-utils":"^2.0.0","parse-srcset":"^1.0.2","schema-utils":"^2.6.5"},"devDependencies":{"@babel/cli":"^7.8.4","@babel/core":"^7.9.0","@babel/preset-env":"^7.9.0","@commitlint/cli":"^8.3.5","@commitlint/config-conventional":"^8.3.4","@webpack-contrib/defaults":"^6.3.0","@webpack-contrib/eslint-config-webpack":"^3.0.0","babel-jest":"^25.2.6","commitlint-azure-pipelines-cli":"^1.0.3","cross-env":"^7.0.2","del":"^5.1.0","del-cli":"^3.0.0","es-check":"^5.1.0","eslint":"^6.8.0","eslint-config-prettier":"^6.10.1","eslint-plugin-import":"^2.20.2","file-loader":"^6.0.0","handlebars":"^4.7.4","husky":"^4.2.3","jest":"^25.2.6","jest-junit":"^10.0.0","lint-staged":"^10.1.1","memfs":"^3.1.2","npm-run-all":"^4.1.5","posthtml":"^0.12.0","posthtml-webp":"^1.5.0","prettier":"^2.0.2","standard-version":"^7.1.0","webpack":"^4.42.0"},"keywords":["webpack","html","loader"],"gitHead":"7aa1e4abe23426a9bd14a22fae632a695598bdba","_id":"html-loader@1.1.0","_nodeVersion":"10.15.2","_npmVersion":"6.14.3","dist":{"integrity":"sha512-zwLbEgy+i7sgIYTlxI9M7jwkn29IvdsV6f1y7a2aLv/w8l1RigVk0PFijBZLLFsdi2gvL8sf2VJhTjLlfnK8sA==","shasum":"91915f4d274caa9d46d1c3dc847cd82bfc037dbd","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-loader/-/html-loader-1.1.0.tgz","fileCount":13,"unpackedSize":58793,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJehfxJCRA9TVsSAnZWagAApE0QAIzDtlh8QbOAtjtu6CAR\nLzT83/+XA7UTSPFxO7MdH0IVpH3In/CqyySNAGIJdJ9TeGsE7xU/cLd0DnTJ\n8yx24qoQzrCtzuym1o/0bl4MW7QJjoEpcU3RMpT/PKh7FoiF+jxuPS7fsq4K\nxorMkIoJp9zYNzFvdF+SHJzWC589u67Awy7gZPtyhumjY9OyI276eg+Bz+DU\neon+yBMuCSmYE3ae4LtQOIUsFZuRxu8BZI6IuiZh8Z+gPlIXPK08PhCRlCqV\n291xh0zhgYcPjAdM7cuwgwvEKXX0ov+q5RWEeYHfkUHA9Cmc9scjBpjxO2h6\nNwiwIAkhls/8+yGsF2L6CGSurypmSFu5wbZid5L2cPbBpdcqcpvHusFPMBQ9\nn+remIw11fSzYR6pShFMC+WmfMSbPYj1YMmhf7m5hSNdDM2KB9l0cbJyfZCr\nPD3VRe6qCKkx/GRNaplBx4+TPMOFOqkNOCJidfmWxXTItbaNXkA2aUTpL7u7\nnYJDhf8Qvw0ynEpLvNexscd2ZJA0N3dFCBR+TjYHqjKe1j57jEBaUoNmGyRy\nXdbE2Aha7B6FooQ0zgBSCu6riDuipRgkSj3m1Nk2D6GvObhk7vn7+igh2OsO\nq/gRT0hHprmgXQDbN2M3U1LWUO0WbbSYsGUrinTwUJ9mMWDCr3kzEf3dArUx\niLCT\r\n=4csE\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGr1JfarVMZMSLXE1i4HfR54a1DuiOrUuJYMJMCU94VBAiBc4m7Qn9fl3vPIhE7P3CvJ0rIQTYg6RLl2fGCGJ5C12g=="}]},"maintainers":[{"email":"bebraw@gmail.com","name":"anonymous"},{"email":"wiens.joshua@gmail.com","name":"anonymous"},{"email":"eric@smarterspam.com","name":"anonymous"},{"email":"sheo13666q@gmail.com","name":"anonymous"},{"email":"hemanth.hm@gmail.com","name":"anonymous"},{"email":"mail@johannesewald.de","name":"anonymous"},{"email":"michael.ciniawsky@gmail.com","name":"anonymous"},{"email":"developers@peerigon.com","name":"anonymous"},{"email":"tobias.koppers@googlemail.com","name":"anonymous"},{"email":"sean.larkin@cuw.edu","name":"anonymous"}],"_npmUser":{"name":"anonymous","email":"sheo13666q@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-loader_1.1.0_1585839176763_0.5220697929867752"},"_hasShrinkwrap":false},"1.2.0":{"name":"html-loader","version":"1.2.0","description":"Html loader module for webpack","license":"MIT","repository":{"type":"git","url":"git+https://github.com/webpack-contrib/html-loader.git"},"author":{"name":"Tobias Koppers @sokra"},"homepage":"https://github.com/webpack-contrib/html-loader","bugs":{"url":"https://github.com/webpack-contrib/html-loader/issues"},"funding":{"type":"opencollective","url":"https://opencollective.com/webpack"},"main":"dist/cjs.js","engines":{"node":">= 10.13.0"},"scripts":{"start":"npm run build -- -w","clean":"del-cli dist","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\"","prebuild":"npm run clean","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","postbuild":"npm run validate:runtime","commitlint":"commitlint --from=master","security":"npm audit","lint:prettier":"prettier --list-different .","lint:js":"eslint --cache .","lint":"npm-run-all -l -p \"lint:**\"","test:only":"cross-env NODE_ENV=test jest","test:watch":"npm run test:only -- --watch","test:coverage":"npm run test:only -- --coverage","pretest":"npm run lint","test":"npm run test:coverage","prepare":"npm run build","release":"standard-version","defaults":"webpack-defaults"},"peerDependencies":{"webpack":"^4.0.0 || ^5.0.0"},"dependencies":{"html-minifier-terser":"^5.1.1","htmlparser2":"^4.1.0","loader-utils":"^2.0.0","schema-utils":"^2.7.0"},"devDependencies":{"@babel/cli":"^7.10.5","@babel/core":"^7.11.1","@babel/preset-env":"^7.11.0","@commitlint/cli":"^10.0.0","@commitlint/config-conventional":"^10.0.0","@webpack-contrib/defaults":"^6.3.0","@webpack-contrib/eslint-config-webpack":"^3.0.0","babel-jest":"^26.3.0","cross-env":"^7.0.2","del":"^5.1.0","del-cli":"^3.0.1","es-check":"^5.1.0","eslint":"^7.7.0","eslint-config-prettier":"^6.11.0","eslint-plugin-import":"^2.22.0","file-loader":"^6.0.0","handlebars":"^4.7.6","husky":"^4.2.5","jest":"^26.4.0","lint-staged":"^10.2.11","memfs":"^3.2.0","npm-run-all":"^4.1.5","posthtml":"^0.13.2","posthtml-webp":"^1.5.0","prettier":"^2.0.5","standard-version":"^9.0.0","url-loader":"^4.1.0","webpack":"^4.44.1"},"keywords":["webpack","html","loader"],"gitHead":"8d7db7fa60c9571ad723423356c3f289bb412f8b","_id":"html-loader@1.2.0","_nodeVersion":"10.15.2","_npmVersion":"6.14.8","dist":{"integrity":"sha512-/T2MmGeK+xbXT0YLHoKj6Od5KuCpMF5/9chUJO0GAy6O4+KEluUgzJ3SKfbtTA4Zb1a5BLefC+nOZ1Elkp4WtQ==","shasum":"828485a8d75470d805d51263e480a7af50ae1de2","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-loader/-/html-loader-1.2.0.tgz","fileCount":13,"unpackedSize":63221,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfO++zCRA9TVsSAnZWagAAb8QP/0Yx6ewmRxz6pjwLngic\n1btJvvgJDPuWNI9QyzQIFMyt6ZbJZ4oykCSw4yV6jyNX7tPKOI3FMSFg4UvJ\n3RiexYXV8KDslSzuNLnmslrx5wJRVRfKUL9xOqh9Jse9MMsnQeJtOKU5Swz6\nV+QKC3n8smnsqsL0svaHU+WHhK7ME3xvDWGp94z4xs0ITUe6DMnzhkNMR2Do\nsQ+oiMY5OXuxCVc9nwxOBMXLW9gyNCY0AnzgFib6NcpCSRYRpsak3LbO+TDY\ntWIr4RTMPzwKjoxqq12Dnh6ht2XcaDlqgEWJGNjL4+Ea5knwmRPaGDg2D/lN\n4Rv1qf5dG0xC7li/IcpTcdJIl8gea+fhy5FqAVt0GMJ0V4xLi0O9q3FLubuk\np1ga/FUpRk3yLbTeI5pNQ/EqLx6ifFJzkGuhabO6YtIsWrNtMwOVCFWfZudk\nYaTRvIr5duu9qgq+YRoHWVpRmCJlWQG7HW//9N6/SUOoBWMxvDu06k/G9tZU\nBQATygLwNkjfHpWRINsCXpwMkO3UyhP28P7ow0UpcL8fUXCNZNkIgg+/tcB/\nRJBUI0mBxDfr1pco5Ihkr1okXdJRK4GAoYncgRnwLmv5e8fbh36Q3RO36Gib\n3/Y6STFJrCFoynzdNqAU0AF775lhuj8htDM5lBdYvDnj+aj0oQSgXdXyuAaq\nUyMI\r\n=68q7\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDS/k4Hlw9CZOc7wg28smexYIEDW1Xf+3smO1QvVicyLwIhAIj+XgR+OfN1E04tI7cHiE+KSewUGGZ8rbdFVd3atON8"}]},"maintainers":[{"email":"bebraw@gmail.com","name":"anonymous"},{"email":"wiens.joshua@gmail.com","name":"anonymous"},{"email":"eric@smarterspam.com","name":"anonymous"},{"email":"sheo13666q@gmail.com","name":"anonymous"},{"email":"hemanth.hm@gmail.com","name":"anonymous"},{"email":"mail@johannesewald.de","name":"anonymous"},{"email":"michael.ciniawsky@gmail.com","name":"anonymous"},{"email":"developers@peerigon.com","name":"anonymous"},{"email":"tobias.koppers@googlemail.com","name":"anonymous"},{"email":"sean.larkin@cuw.edu","name":"anonymous"}],"_npmUser":{"name":"anonymous","email":"sheo13666q@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-loader_1.2.0_1597763506711_0.5069494181451046"},"_hasShrinkwrap":false},"1.2.1":{"name":"html-loader","version":"1.2.1","description":"Html loader module for webpack","license":"MIT","repository":{"type":"git","url":"git+https://github.com/webpack-contrib/html-loader.git"},"author":{"name":"Tobias Koppers @sokra"},"homepage":"https://github.com/webpack-contrib/html-loader","bugs":{"url":"https://github.com/webpack-contrib/html-loader/issues"},"funding":{"type":"opencollective","url":"https://opencollective.com/webpack"},"main":"dist/cjs.js","engines":{"node":">= 10.13.0"},"scripts":{"start":"npm run build -- -w","clean":"del-cli dist","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\"","prebuild":"npm run clean","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","postbuild":"npm run validate:runtime","commitlint":"commitlint --from=master","security":"npm audit","lint:prettier":"prettier --list-different .","lint:js":"eslint --cache .","lint":"npm-run-all -l -p \"lint:**\"","test:only":"cross-env NODE_ENV=test jest","test:watch":"npm run test:only -- --watch","test:coverage":"npm run test:only -- --coverage","pretest":"npm run lint","test":"npm run test:coverage","prepare":"npm run build","release":"standard-version","defaults":"webpack-defaults"},"peerDependencies":{"webpack":"^4.0.0 || ^5.0.0"},"dependencies":{"html-minifier-terser":"^5.1.1","htmlparser2":"^4.1.0","loader-utils":"^2.0.0","schema-utils":"^2.7.0"},"devDependencies":{"@babel/cli":"^7.10.5","@babel/core":"^7.11.1","@babel/preset-env":"^7.11.0","@commitlint/cli":"^10.0.0","@commitlint/config-conventional":"^10.0.0","@webpack-contrib/defaults":"^6.3.0","@webpack-contrib/eslint-config-webpack":"^3.0.0","babel-jest":"^26.3.0","cross-env":"^7.0.2","del":"^5.1.0","del-cli":"^3.0.1","es-check":"^5.1.0","eslint":"^7.7.0","eslint-config-prettier":"^6.11.0","eslint-plugin-import":"^2.22.0","file-loader":"^6.0.0","handlebars":"^4.7.6","husky":"^4.2.5","jest":"^26.4.0","lint-staged":"^10.2.11","memfs":"^3.2.0","npm-run-all":"^4.1.5","posthtml":"^0.13.2","posthtml-webp":"^1.5.0","prettier":"^2.0.5","standard-version":"^9.0.0","url-loader":"^4.1.0","webpack":"^4.44.1"},"keywords":["webpack","html","loader"],"gitHead":"d30c549c76b2dd73d7ffeb22463595c029b462cd","_id":"html-loader@1.2.1","_nodeVersion":"10.15.2","_npmVersion":"6.14.8","dist":{"integrity":"sha512-oE92tLmSnWIjM0190s8+MiwNAKValkddHSVphSR37MrwcP3iy/rbbw4N7hSLG+m3OiuVRwVHJYFcIYfN2xqUHQ==","shasum":"d564cde016d17fe8a2992a64fea314e09fed7fe3","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-loader/-/html-loader-1.2.1.tgz","fileCount":13,"unpackedSize":63908,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfPSwvCRA9TVsSAnZWagAAjwUQAKOl0TBiOUNDOUw7M2tq\n/KnHJKCKR7+8bwkqEgn42NN/P8LbcGL44a3NZkZZITKX39XcAfL2Q60VaPkq\nzrXDxvHgXi3cof0GZo+Q1FF9MzJwar4wKBUz4+yYKvTAWxJWCmu73ZmST84z\n8fIGWrtcmWmePAlQqR22a7AsKBzKkgs1VpsxiVV4BrqvjSkt6728ef8cFmVD\nxiABGW0JVH5ttGYoQROCqx3CKv+SzW5A4p1T0ujXXR+yjq+8C5/WEcIFu2Z/\nbFkeb44d5mFdYFKioUsmbvheHKvl2TdT4fusyBxtyKHTyb8t8PKWptapadOG\nwLyP/nZSrR7PYbjvMyZnUM8VSPM8J/oIVtVGDPBHZU+DZlXAPD8iGkqvLW26\nWDPWlCLnHXapNtQ9j3hqJ5VkiEMjurZDuJjFHrFrNTzYP8zL3aQUFqARSBcm\nZoGZ0GkOLchqjXX6YE9dl68SxZoTvCAZ+U8v4l7X2NLZfcsnPoqDBQZkMHko\nhgAMhwI2xvxjAVEyGbc6+wLVP+AMlcXK+GYNmAtLdxEXq/vJhhzsgchKJDpw\nGpm451OGcYkMsyvDnZR6M2tFjoQq+3RnK5MDBb8742oaBwE7olcBLx1j4jIA\nKhAuV2Q3kzuLjN4ftaoRmTqCNk7b6UwDhkkW/cs08zdw9FAG7IcGPQZWqGoX\nxpgf\r\n=5RVb\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIECAiZyHj6op8zZJeT+lw/iwSptM54Y7O3Y63LKFHLdYAiEAqVNOoyJNLXInAwPqPWmJEEmQxeYNMLC/9zzg20PBiG0="}]},"maintainers":[{"email":"bebraw@gmail.com","name":"anonymous"},{"email":"wiens.joshua@gmail.com","name":"anonymous"},{"email":"eric@smarterspam.com","name":"anonymous"},{"email":"sheo13666q@gmail.com","name":"anonymous"},{"email":"hemanth.hm@gmail.com","name":"anonymous"},{"email":"mail@johannesewald.de","name":"anonymous"},{"email":"michael.ciniawsky@gmail.com","name":"anonymous"},{"email":"developers@peerigon.com","name":"anonymous"},{"email":"tobias.koppers@googlemail.com","name":"anonymous"},{"email":"sean.larkin@cuw.edu","name":"anonymous"}],"_npmUser":{"name":"anonymous","email":"sheo13666q@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-loader_1.2.1_1597844527063_0.5247674903126602"},"_hasShrinkwrap":false},"1.3.0":{"name":"html-loader","version":"1.3.0","description":"Html loader module for webpack","license":"MIT","repository":{"type":"git","url":"git+https://github.com/webpack-contrib/html-loader.git"},"author":{"name":"Tobias Koppers @sokra"},"homepage":"https://github.com/webpack-contrib/html-loader","bugs":{"url":"https://github.com/webpack-contrib/html-loader/issues"},"funding":{"type":"opencollective","url":"https://opencollective.com/webpack"},"main":"dist/cjs.js","engines":{"node":">= 10.13.0"},"scripts":{"start":"npm run build -- -w","clean":"del-cli dist","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\"","prebuild":"npm run clean","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","postbuild":"npm run validate:runtime","commitlint":"commitlint --from=master","security":"npm audit","lint:prettier":"prettier --list-different .","lint:js":"eslint --cache .","lint":"npm-run-all -l -p \"lint:**\"","test:only":"cross-env NODE_ENV=test jest","test:watch":"npm run test:only -- --watch","test:coverage":"npm run test:only -- --coverage","pretest":"npm run lint","test":"npm run test:coverage","prepare":"npm run build","release":"standard-version","defaults":"webpack-defaults"},"peerDependencies":{"webpack":"^4.0.0 || ^5.0.0"},"dependencies":{"html-minifier-terser":"^5.1.1","htmlparser2":"^4.1.0","loader-utils":"^2.0.0","schema-utils":"^2.7.0"},"devDependencies":{"@babel/cli":"^7.10.5","@babel/core":"^7.11.1","@babel/preset-env":"^7.11.0","@commitlint/cli":"^10.0.0","@commitlint/config-conventional":"^10.0.0","@webpack-contrib/defaults":"^6.3.0","@webpack-contrib/eslint-config-webpack":"^3.0.0","babel-jest":"^26.3.0","cross-env":"^7.0.2","del":"^5.1.0","del-cli":"^3.0.1","es-check":"^5.1.0","eslint":"^7.7.0","eslint-config-prettier":"^6.11.0","eslint-plugin-import":"^2.22.0","file-loader":"^6.0.0","handlebars":"^4.7.6","husky":"^4.2.5","jest":"^26.4.0","lint-staged":"^10.2.11","memfs":"^3.2.0","npm-run-all":"^4.1.5","posthtml":"^0.13.2","posthtml-webp":"^1.5.0","prettier":"^2.0.5","standard-version":"^9.0.0","url-loader":"^4.1.0","webpack":"^4.44.1"},"keywords":["webpack","html","loader"],"gitHead":"2e0b71e3ca5c44de8f594e8f9f9840ed0c64648e","_id":"html-loader@1.3.0","_nodeVersion":"10.15.2","_npmVersion":"6.14.8","dist":{"integrity":"sha512-c4ROd3YokzLWj6YUfI/NcqAsZI8ULtKfkE/8W862vxd2fMst4SVIQt+RVMNUnNmnz0p4uz7Wqc7PXZOdm5KAXA==","shasum":"2cbca7794702818b60f55b3b7c73ab642236635a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-loader/-/html-loader-1.3.0.tgz","fileCount":13,"unpackedSize":64762,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfRUoACRA9TVsSAnZWagAAc0UP/0n2dj59llpLExTSIhed\nVUG5YVsYS2dlN17tdXll4mQ8CzpYC6BpzFVVaUyCUxO7VWPx94p5mf35i+aR\niF0TPn272XdqqlVm3m8uZ6FJd1Msw15KEV/beaX/jz8XVs3vJ54eK6IWJA6+\n4pl43fRwGiFseTJ3IxJPRF30aUe/m5EHaw28QJtzDdAzvChOLBgxRnG7Y9xB\n2FXVE4ReTGQab3JmUOSaojFJE13XBNAXHIkG5N9RoOGt7b44FVhl4IlX/km4\nP3r2Afwt1LATHVlad78zFHU/Vh92xtH4u5rKGf+IL1MKaMnrqklFglj3Y4Ev\nkWXm0xoPU7H1wpBjDiowdsK0sYhviputQxgOHezwtkaMm5GiCOT2nHRayFLp\nBetMyx991rCsitwZL21mxnPdbY4ccJTwMDaYuUupEH6XDy/oTHKL0aau64wf\n/QJJXuyKovh53bspKjJ+ZZYcGHAqrlH9KgJHyOoMDcZbg+FyNbaD97Id8NIt\nVAI1SMl3Il2Wpx4TbRzOTOjIrQTyQjtpAIXIyDyzHxjeNqbuZA6xEdJJpM64\n6NALXs517UsgOaL72XVlj8xDgkdBL1Fp2CpluXSX2KAFT162PmvdvQShhNay\nbNe98uKk4uDBopykdDHlCSP2XItdBuJ9M9dUJkMWH++uNnt2DCyvkeULbJH6\nLsl6\r\n=aVcQ\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDeGEqbGNod5Egku/Vh8DZpnhx430SFjE5ZQmvbSEGoagIgASLCZi+vkWRLB9oHRo1VYKJtwCBQOuicwK+CWSldTA0="}]},"maintainers":[{"email":"bebraw@gmail.com","name":"anonymous"},{"email":"wiens.joshua@gmail.com","name":"anonymous"},{"email":"eric@smarterspam.com","name":"anonymous"},{"email":"sheo13666q@gmail.com","name":"anonymous"},{"email":"hemanth.hm@gmail.com","name":"anonymous"},{"email":"mail@johannesewald.de","name":"anonymous"},{"email":"michael.ciniawsky@gmail.com","name":"anonymous"},{"email":"developers@peerigon.com","name":"anonymous"},{"email":"tobias.koppers@googlemail.com","name":"anonymous"},{"email":"sean.larkin@cuw.edu","name":"anonymous"}],"_npmUser":{"name":"anonymous","email":"sheo13666q@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-loader_1.3.0_1598376448168_0.11841689951633194"},"_hasShrinkwrap":false},"1.3.1":{"name":"html-loader","version":"1.3.1","description":"Html loader module for webpack","license":"MIT","repository":{"type":"git","url":"git+https://github.com/webpack-contrib/html-loader.git"},"author":{"name":"Tobias Koppers @sokra"},"homepage":"https://github.com/webpack-contrib/html-loader","bugs":{"url":"https://github.com/webpack-contrib/html-loader/issues"},"funding":{"type":"opencollective","url":"https://opencollective.com/webpack"},"main":"dist/cjs.js","engines":{"node":">= 10.13.0"},"scripts":{"start":"npm run build -- -w","clean":"del-cli dist","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\"","prebuild":"npm run clean","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","postbuild":"npm run validate:runtime","commitlint":"commitlint --from=master","security":"npm audit","lint:prettier":"prettier --list-different .","lint:js":"eslint --cache .","lint":"npm-run-all -l -p \"lint:**\"","test:only":"cross-env NODE_ENV=test jest","test:watch":"npm run test:only -- --watch","test:coverage":"npm run test:only -- --coverage","pretest":"npm run lint","test":"npm run test:coverage","prepare":"npm run build","release":"standard-version","defaults":"webpack-defaults"},"peerDependencies":{"webpack":"^4.0.0 || ^5.0.0"},"dependencies":{"html-minifier-terser":"^5.1.1","htmlparser2":"^4.1.0","loader-utils":"^2.0.0","schema-utils":"^2.7.1"},"devDependencies":{"@babel/cli":"^7.11.6","@babel/core":"^7.11.6","@babel/preset-env":"^7.11.5","@commitlint/cli":"^11.0.0","@commitlint/config-conventional":"^11.0.0","@webpack-contrib/defaults":"^6.3.0","@webpack-contrib/eslint-config-webpack":"^3.0.0","babel-jest":"^26.3.0","cross-env":"^7.0.2","del":"^5.1.0","del-cli":"^3.0.1","es-check":"^5.1.0","eslint":"^7.9.0","eslint-config-prettier":"^6.11.0","eslint-plugin-import":"^2.22.0","file-loader":"^6.1.0","handlebars":"^4.7.6","husky":"^4.3.0","jest":"^26.4.2","lint-staged":"^10.4.0","memfs":"^3.2.0","npm-run-all":"^4.1.5","posthtml":"^0.13.3","posthtml-webp":"^2.1.0","prettier":"^2.1.2","standard-version":"^9.0.0","url-loader":"^4.1.0","webpack":"^4.44.2"},"keywords":["webpack","html","loader"],"gitHead":"2d89c054fa6c19ce4e85ac607741ae76f2d87d1d","_id":"html-loader@1.3.1","_nodeVersion":"10.15.2","_npmVersion":"6.14.8","dist":{"integrity":"sha512-zL+z9mIhcXEXuHqzriTwZR4ZslZHi5IFNhjyJHyhJlhEgR8VtLTPbqeR5TdbNtHtb88zbVmlNB8ia2vr/GTrbA==","shasum":"16ae142e23daa4f0d67a2ac2fccaa087be5d64e2","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-loader/-/html-loader-1.3.1.tgz","fileCount":13,"unpackedSize":65279,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfaLJhCRA9TVsSAnZWagAAo2kQAI9s2FpfhDwAkGhWgQBp\nZthdZ969e4WY/3p45CVEkBOLRO5zhcvxz6gxRsMm0jW5yxQTGg3T+M1nHxLS\nAwnY4ae86cdqqHm0tt8Tn5bq7jaz9GOVGfySnIN/HbSBu4spdMHTfdoHyWkr\nARsU5QOnzC3DfobqsIyT2SImOSZPCQmlYS+kmrzDP3nNJgYJejxL/sYXSsTl\nxegGE0vSuT8n0kgS1vQ9y4SN6lyl0rlNcLQpsh8DAPAqTFCBN4/sjqDzGovk\nC7hIPFGTw7Y/WElygPYKXKZOtl47pGBMv2ePVdaTcsE9udF1WnKMxkfvMPa9\niod8w9ni0wVUHK54GY6ZunrzgX0RgcFH71KM/P0gJv4h2Ti6e81wcbCLq0GK\nQbXPJzC3OOM+7a2EbXvayL2t2q9lw2FD0dgkHnN+q33X0vJJCiZEezpRWRuL\nvQ/l4JM9HbLE8GJGuCIYf85PmtCSlp8bdK37494ie6y82mBLLZXjhv7FDI3o\nQGeRK2c+fQWR8Nz6UQFMMgjAZIMs98nWep7Pk9ce2Ojq1AWN29wCg3MGiOU5\n7U/4DjmPqq+N0UW0luyYVBnaJ/Jz9s6/a1e/DdwFgJionGzVqbCfLDkk7SiX\nCnMIVu/6YhxUzGxJLG89vMl/KUBmgV2DrpF/UcNu5MPDtyIks/SrD7RJeFR7\nlfw7\r\n=7zjZ\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDJEqtvsIIoL13psh9mhoFoz8As4Ebzwm6Mz+dQiyGmDQIgG9FOG23maMyUdhtoOQDXk28yNfhB4ZJQLFpqmm2pZ3E="}]},"maintainers":[{"name":"anonymous","email":"wiens.joshua@gmail.com"},{"name":"anonymous","email":"sheo13666q@gmail.com"},{"name":"anonymous","email":"tobias.koppers@googlemail.com"},{"name":"anonymous","email":"mail@johannesewald.de"},{"name":"anonymous","email":"michael.ciniawsky@gmail.com"},{"name":"anonymous","email":"bebraw@gmail.com"},{"name":"anonymous","email":"eric@smarterspam.com"},{"name":"anonymous","email":"hemanth.hm@gmail.com"},{"name":"anonymous","email":"sean.larkin@cuw.edu"},{"name":"anonymous","email":"developers@peerigon.com"}],"_npmUser":{"name":"anonymous","email":"sheo13666q@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-loader_1.3.1_1600696929242_0.6979930237514167"},"_hasShrinkwrap":false},"1.3.2":{"name":"html-loader","version":"1.3.2","description":"Html loader module for webpack","license":"MIT","repository":{"type":"git","url":"git+https://github.com/webpack-contrib/html-loader.git"},"author":{"name":"Tobias Koppers @sokra"},"homepage":"https://github.com/webpack-contrib/html-loader","bugs":{"url":"https://github.com/webpack-contrib/html-loader/issues"},"funding":{"type":"opencollective","url":"https://opencollective.com/webpack"},"main":"dist/cjs.js","engines":{"node":">= 10.13.0"},"scripts":{"start":"npm run build -- -w","clean":"del-cli dist","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\"","prebuild":"npm run clean","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","postbuild":"npm run validate:runtime","commitlint":"commitlint --from=master","security":"npm audit","lint:prettier":"prettier --list-different .","lint:js":"eslint --cache .","lint":"npm-run-all -l -p \"lint:**\"","test:only":"cross-env NODE_ENV=test jest","test:watch":"npm run test:only -- --watch","test:coverage":"npm run test:only -- --coverage","pretest":"npm run lint","test":"npm run test:coverage","prepare":"npm run build","release":"standard-version","defaults":"webpack-defaults"},"peerDependencies":{"webpack":"^4.0.0 || ^5.0.0"},"dependencies":{"html-minifier-terser":"^5.1.1","htmlparser2":"^4.1.0","loader-utils":"^2.0.0","schema-utils":"^3.0.0"},"devDependencies":{"@babel/cli":"^7.11.6","@babel/core":"^7.11.6","@babel/preset-env":"^7.11.5","@commitlint/cli":"^11.0.0","@commitlint/config-conventional":"^11.0.0","@webpack-contrib/defaults":"^6.3.0","@webpack-contrib/eslint-config-webpack":"^3.0.0","babel-jest":"^26.5.2","cross-env":"^7.0.2","del":"^6.0.0","del-cli":"^3.0.1","es-check":"^5.1.1","eslint":"^7.10.0","eslint-config-prettier":"^6.12.0","eslint-plugin-import":"^2.22.1","file-loader":"^6.1.1","handlebars":"^4.7.6","husky":"^4.3.0","jest":"^26.5.2","lint-staged":"^10.4.0","memfs":"^3.2.0","npm-run-all":"^4.1.5","posthtml":"^0.13.3","posthtml-webp":"^2.1.0","prettier":"^2.1.2","standard-version":"^9.0.0","url-loader":"^4.1.1","webpack":"^4.44.2"},"keywords":["webpack","html","loader"],"gitHead":"eb17fcdd0e89ca27c82e268ee76841f096617ba6","_id":"html-loader@1.3.2","_nodeVersion":"10.15.2","_npmVersion":"6.14.8","dist":{"integrity":"sha512-DEkUwSd0sijK5PF3kRWspYi56XP7bTNkyg5YWSzBdjaSDmvCufep5c4Vpb3PBf6lUL0YPtLwBfy9fL0t5hBAGA==","shasum":"5a72ebba420d337083497c9aba7866c9e1aee340","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-loader/-/html-loader-1.3.2.tgz","fileCount":13,"unpackedSize":65391,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfgJXaCRA9TVsSAnZWagAA67MP/22mpSrG3rIPctlTQ8K0\nyoOc14DpjQZc554jibscuSph0sjM3gI10v/j1A3QrDpelOVdGAqbMPZNYdC8\nI5v2kX/7mgNuXnDnQlsDkW5SD7Ydh7PWWwcQXwVEVuxvoIa34aehaJWRXy+o\ncgyial9+9yhfWxEXRMqq0xhlIsaOLBYzbOXl3AuVxoK2R1DYdW755mT7ybTa\n88rrCh38vSTRV7A9BPMo7kRTkO3e/xeiVl3npRtSs8VqmOt3qltBZgsMNE7d\n240IyRgHeYhm3Hpa0fRkU1F0uSHyFBEvBUzf44wNc43hnoJPQV3HhQ/Ij38G\nkqxB7zp/TCYT6yCFTs5V9h3k9ggU5rBcY65+b3vVsPH/HCny07HIQRmiJ+r7\nECeA+NSZsFnm1yKjj8q87EyIIRHVwGRxKkoSR14yNsoCjAta76RLBcwfsWfO\n8uQ6i2y27JONb+k3CG+I+EjN9w7lrIX7DjrKXA4O65nEcr0V3sIju0mzeqCF\ndHm+5l7C/6MCcOCFS90d8CdMsZ033fgFtoqBK12MYositHwFH+N5TDk3OzSw\nAvguzdH8sXU2xVh7s7NRz+jwDn//jPLksVkj/XCiKYtT7utJ0uT8ecFqRihG\nO/BFC4YADNniVkpovzkakWpEn+RoIxp37OJ5AvpWv1nGOaxN22JtGu/kZMP2\nSnb1\r\n=Xlk+\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCYzEBMJSTD2+j4mWhBJIrwgo0ucPuibzo+AU1t4xXALQIgcEcpseY5r5GIX9jmTRnmEKsM0trqrNjf6awovd9x384="}]},"maintainers":[{"name":"anonymous","email":"wiens.joshua@gmail.com"},{"name":"anonymous","email":"sheo13666q@gmail.com"},{"name":"anonymous","email":"tobias.koppers@googlemail.com"},{"name":"anonymous","email":"mail@johannesewald.de"},{"name":"anonymous","email":"michael.ciniawsky@gmail.com"},{"name":"anonymous","email":"bebraw@gmail.com"},{"name":"anonymous","email":"eric@smarterspam.com"},{"name":"anonymous","email":"hemanth.hm@gmail.com"},{"name":"anonymous","email":"sean.larkin@cuw.edu"},{"name":"anonymous","email":"developers@peerigon.com"}],"_npmUser":{"name":"anonymous","email":"sheo13666q@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-loader_1.3.2_1602262490110_0.03897517472758483"},"_hasShrinkwrap":false},"2.0.0":{"name":"html-loader","version":"2.0.0","description":"Html loader module for webpack","license":"MIT","repository":{"type":"git","url":"git+https://github.com/webpack-contrib/html-loader.git"},"author":{"name":"Tobias Koppers @sokra"},"homepage":"https://github.com/webpack-contrib/html-loader","bugs":{"url":"https://github.com/webpack-contrib/html-loader/issues"},"funding":{"type":"opencollective","url":"https://opencollective.com/webpack"},"main":"dist/cjs.js","engines":{"node":">= 10.13.0"},"scripts":{"start":"npm run build -- -w","clean":"del-cli dist","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\"","prebuild":"npm run clean","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","postbuild":"npm run validate:runtime","commitlint":"commitlint --from=master","security":"npm audit","lint:prettier":"prettier --list-different .","lint:js":"eslint --cache .","lint":"npm-run-all -l -p \"lint:**\"","test:only":"cross-env NODE_ENV=test jest","test:watch":"npm run test:only -- --watch","test:coverage":"npm run test:only -- --coverage","pretest":"npm run lint","test":"npm run test:coverage","prepare":"npm run build","release":"standard-version","defaults":"webpack-defaults","_postinstall":"husky install","prepublishOnly":"pinst --disable","postpublish":"pinst --enable"},"peerDependencies":{"webpack":"^5.0.0"},"dependencies":{"html-minifier-terser":"^5.1.1","parse5-sax-parser":"^6.0.1"},"devDependencies":{"@babel/cli":"^7.12.10","@babel/core":"^7.12.10","@babel/preset-env":"^7.12.11","@commitlint/cli":"^11.0.0","@commitlint/config-conventional":"^11.0.0","@webpack-contrib/defaults":"^6.3.0","@webpack-contrib/eslint-config-webpack":"^3.0.0","babel-jest":"^26.6.3","cross-env":"^7.0.3","del":"^6.0.0","del-cli":"^3.0.1","es-check":"^5.2.0","eslint":"^7.20.0","eslint-config-prettier":"^7.2.0","eslint-plugin-import":"^2.22.1","handlebars":"^4.7.6","husky":"^5.0.9","jest":"^26.6.3","lint-staged":"^10.5.4","memfs":"^3.2.0","npm-run-all":"^4.1.5","pinst":"^2.1.4","posthtml":"^0.15.1","posthtml-webp":"^2.1.0","prettier":"^2.1.2","standard-version":"^9.0.0","unescape-unicode":"^0.2.0","webpack":"^5.21.2"},"keywords":["webpack","html","loader"],"gitHead":"e73232422234b7e16d94941a879617dcdbd8befd","_id":"html-loader@2.0.0","_nodeVersion":"12.20.1","_npmVersion":"7.5.3","dist":{"integrity":"sha512-/8yd7xrPJM0ugzz4VDK/xLV39nPGpelwehonX/msg/N5ORvQj9G4VncX5coIWKkOSLBANseNaEcW+3Ga0twDWg==","shasum":"32e98b39cf7ce8be6851fa5466abe06015425a46","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-loader/-/html-loader-2.0.0.tgz","fileCount":13,"unpackedSize":75955,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgKT27CRA9TVsSAnZWagAAdxgP/jWEOxHp+80s+CdfSIAR\nOJCLaRzdFT6pb6FHhJAGF0O56YjjScamCDmauIw62lkf071HV80LHuDAxfHJ\n3S5nZx+80+2fIGkmg2H47LivNr0A+yeUp5wnDmXPSuP+CszqtxX9RE59yYvD\nauMLclxAiXyjqowbERhcwokEem/KNmqkH82AjibMwz9LD3TauUj/JJTkrDBn\ni+k5Lgk/xGF7JNUsKuLu70UMpATod8JAmGl2GLhh6+fNgRKM3eLTLVi57DFt\nJw4fEv9W+ee55E3/NOtZKGbRzqj1hHI3QRuer5VK7wya4v1bUfixoQosN7ss\nG8cqjF1iY/Hy9Dt4vXP88HrMUqmEJH8ZEhQBV/HuSGqNKYWO1RyvvXfsDHzE\neVbxrivDlJ42rYgFEe0/ZJE+U8MRZdeUS414uEM0TNLn/LJTy8kAI2j1KP8U\nRWvK/5DyBPX7l3XoDLeGtcq7EytxHdTJZDw+zjGmKHKU5G+6tSHxEgSW0U3L\nWnp77jvKykmHHfy2fzA6+6JhXbrFv41e+FHATyTJoV79KYHW1PAkReHNrMn3\nqTR8Bs6iy8q4+RAqJtuB/jqn+OvEefGULpj2O/EVtwEi3R1WCjLiyfsnSSFV\nuaZs0yCMtqL6gyHEzSETzoErXOZUcRUNFt0LDuI8JwogRDQeV856bJNUpupU\nuNwO\r\n=rLbf\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEM5eLeWYpZpg8pxPirl5Tscrf3HkwEhaZcxTVKhECVwAiBetqi375UVvZweD5/xNE0lCka8ZIUDr2CFnBpTJRj2sA=="}]},"_npmUser":{"name":"anonymous","email":"sheo13666q@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"sheo13666q@gmail.com"},{"name":"anonymous","email":"tobias.koppers@googlemail.com"},{"name":"anonymous","email":"mail@johannesewald.de"},{"name":"anonymous","email":"michael.ciniawsky@gmail.com"},{"name":"anonymous","email":"wiens.joshua@gmail.com"},{"name":"anonymous","email":"bebraw@gmail.com"},{"name":"anonymous","email":"eric@smarterspam.com"},{"name":"anonymous","email":"hemanth.hm@gmail.com"},{"name":"anonymous","email":"sean.larkin@cuw.edu"},{"name":"anonymous","email":"developers@peerigon.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-loader_2.0.0_1613315514721_0.7480942644249133"},"_hasShrinkwrap":false},"2.1.0":{"name":"html-loader","version":"2.1.0","description":"Html loader module for webpack","license":"MIT","repository":{"type":"git","url":"git+https://github.com/webpack-contrib/html-loader.git"},"author":{"name":"Tobias Koppers @sokra"},"homepage":"https://github.com/webpack-contrib/html-loader","bugs":{"url":"https://github.com/webpack-contrib/html-loader/issues"},"funding":{"type":"opencollective","url":"https://opencollective.com/webpack"},"main":"dist/cjs.js","engines":{"node":">= 10.13.0"},"scripts":{"start":"npm run build -- -w","clean":"del-cli dist","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\"","prebuild":"npm run clean","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","postbuild":"npm run validate:runtime","commitlint":"commitlint --from=master","security":"npm audit","lint:prettier":"prettier --list-different .","lint:js":"eslint --cache .","lint":"npm-run-all -l -p \"lint:**\"","test:only":"cross-env NODE_ENV=test jest","test:watch":"npm run test:only -- --watch","test:coverage":"npm run test:only -- --coverage","pretest":"npm run lint","test":"npm run test:coverage","prepare":"npm run build","release":"standard-version","defaults":"webpack-defaults","_postinstall":"husky install","prepublishOnly":"pinst --disable","postpublish":"pinst --enable"},"peerDependencies":{"webpack":"^5.0.0"},"dependencies":{"html-minifier-terser":"^5.1.1","parse5":"^6.0.1"},"devDependencies":{"@babel/cli":"^7.12.10","@babel/core":"^7.12.10","@babel/preset-env":"^7.12.11","@commitlint/cli":"^11.0.0","@commitlint/config-conventional":"^11.0.0","@webpack-contrib/defaults":"^6.3.0","@webpack-contrib/eslint-config-webpack":"^3.0.0","babel-jest":"^26.6.3","cross-env":"^7.0.3","del":"^6.0.0","del-cli":"^3.0.1","es-check":"^5.2.0","eslint":"^7.20.0","eslint-config-prettier":"^7.2.0","eslint-plugin-import":"^2.22.1","handlebars":"^4.7.6","husky":"^5.0.9","jest":"^26.6.3","lint-staged":"^10.5.4","memfs":"^3.2.0","npm-run-all":"^4.1.5","pinst":"^2.1.4","posthtml":"^0.15.1","posthtml-webp":"^2.1.0","prettier":"^2.1.2","standard-version":"^9.0.0","unescape-unicode":"^0.2.0","webpack":"^5.21.2"},"keywords":["webpack","html","loader"],"gitHead":"9f2ca5cd5d3c6edd09c1bd56717487ba39668433","_id":"html-loader@2.1.0","_nodeVersion":"12.20.2","_npmVersion":"7.5.4","dist":{"integrity":"sha512-yg3ph4jmeA79WtXaT/K5RdnJKGHtitvmowZ556Hsii38OQVetl3hmIRwFqYRCy8MODov/oHQEYV5aLaDOX7uaw==","shasum":"f125167d3ebf348f94b42a1f6fb60d976205d5f3","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-loader/-/html-loader-2.1.0.tgz","fileCount":13,"unpackedSize":76784,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgMTrpCRA9TVsSAnZWagAAIMcP+gIwtpsiS7pFhXxz3Ku/\nstBtDlchoU/dsI/xTU4cEoXviY5FDvz9TPU8tw8X5e1U+dBV2q5lwzZwxrQ6\namLJhUvQbGgoxLYpQpiqUm5B3LnTbk3vPKwXmgxvlIME7VrMjEUOZdkbBM6G\nS9mQfBTXI8YFdZYUBdnUM6vmo5bW1gcj6OZ6XPyj36eFjXpU+O0JD5SKgFPQ\n8WQOryJTyxmHuxie7RmIzEequDgOne11Zt/iUyui1JryP1eJXXh8Epv+BMul\nRuBZcWustU9kwMKEbpfkQWjCFSLsr3SCCFhoC2OI4CJa87MNj/gSDTZKDjcQ\nsZtXwQsTczuogfb/NmMxPq2Z4ny54SbCKKPktCV05aGoubZXIGc0KoYT4Uva\nkif0MHwpSWtaPHDyKjlZtBct5JatJdkWXZVAt4DrwBywUy8X9WTT/86U9KOB\nTWMEBk0rcu4os0o9MYv+ALxXfrKogD7bV8Z2Uh/qGN88r/t09HzjIRL1LLqp\np908ekR59Ki/H68TJUPfvVEX1SHG1bci4cuTMuBO7uaMAP0Y+zGGNn1wov2d\nxc8Kzk8QCTGnAFoaSAD6zg0c/LTIUFnPnHIb/9+kbHYogg1FQq/C4VNitgCa\nNs+vvQrQRfinWThSPUyjCGehDMpP3wOgTxC8Gfu8x3e81T2TJCVqilMly+e1\nzfL/\r\n=c/St\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGhHmEx9w6WZ0Ji/KjI6BoSejrxR4WODU8HAfmB+VHmlAiAQdDBMb9yuQtw4Ny0BWz4I4lwH7NXaHs92yRIgsgugmA=="}]},"_npmUser":{"name":"anonymous","email":"sheo13666q@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"sheo13666q@gmail.com"},{"name":"anonymous","email":"tobias.koppers@googlemail.com"},{"name":"anonymous","email":"mail@johannesewald.de"},{"name":"anonymous","email":"michael.ciniawsky@gmail.com"},{"name":"anonymous","email":"wiens.joshua@gmail.com"},{"name":"anonymous","email":"bebraw@gmail.com"},{"name":"anonymous","email":"eric@smarterspam.com"},{"name":"anonymous","email":"hemanth.hm@gmail.com"},{"name":"anonymous","email":"sean.larkin@cuw.edu"},{"name":"anonymous","email":"developers@peerigon.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-loader_2.1.0_1613839080913_0.29534361151230915"},"_hasShrinkwrap":false},"2.1.1":{"name":"html-loader","version":"2.1.1","description":"Html loader module for webpack","license":"MIT","repository":{"type":"git","url":"git+https://github.com/webpack-contrib/html-loader.git"},"author":{"name":"Tobias Koppers @sokra"},"homepage":"https://github.com/webpack-contrib/html-loader","bugs":{"url":"https://github.com/webpack-contrib/html-loader/issues"},"funding":{"type":"opencollective","url":"https://opencollective.com/webpack"},"main":"dist/cjs.js","engines":{"node":">= 10.13.0"},"scripts":{"start":"npm run build -- -w","clean":"del-cli dist","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\"","prebuild":"npm run clean","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","postbuild":"npm run validate:runtime","commitlint":"commitlint --from=master","security":"npm audit","lint:prettier":"prettier --list-different .","lint:js":"eslint --cache .","lint":"npm-run-all -l -p \"lint:**\"","test:only":"cross-env NODE_ENV=test jest","test:watch":"npm run test:only -- --watch","test:coverage":"npm run test:only -- --coverage","pretest":"npm run lint","test":"npm run test:coverage","prepare":"npm run build","release":"standard-version","defaults":"webpack-defaults","_postinstall":"husky install","prepublishOnly":"pinst --disable","postpublish":"pinst --enable"},"peerDependencies":{"webpack":"^5.0.0"},"dependencies":{"html-minifier-terser":"^5.1.1","parse5":"^6.0.1"},"devDependencies":{"@babel/cli":"^7.12.10","@babel/core":"^7.12.10","@babel/preset-env":"^7.12.11","@commitlint/cli":"^11.0.0","@commitlint/config-conventional":"^11.0.0","@webpack-contrib/defaults":"^6.3.0","@webpack-contrib/eslint-config-webpack":"^3.0.0","babel-jest":"^26.6.3","cross-env":"^7.0.3","del":"^6.0.0","del-cli":"^3.0.1","es-check":"^5.2.0","eslint":"^7.20.0","eslint-config-prettier":"^7.2.0","eslint-plugin-import":"^2.22.1","handlebars":"^4.7.6","html-webpack-plugin":"^5.2.0","husky":"^5.0.9","jest":"^26.6.3","lint-staged":"^10.5.4","memfs":"^3.2.0","npm-run-all":"^4.1.5","pinst":"^2.1.4","posthtml":"^0.15.1","posthtml-webp":"^2.1.0","prettier":"^2.1.2","standard-version":"^9.0.0","unescape-unicode":"^0.2.0","webpack":"^5.21.2"},"keywords":["webpack","html","loader"],"gitHead":"de93b86c424198c266b6255f35cd0e91fe38187d","_id":"html-loader@2.1.1","_nodeVersion":"12.20.2","_npmVersion":"7.5.4","dist":{"integrity":"sha512-L6HUVgr2aeGMyiool2raoBQb8Lue2UTAhUsHvsMLyNxfBHMtOz1NJL1GyE4VbyAoYBK5PJp1I9Aw+FqS3d2eTA==","shasum":"61174d43a4fe97b2a79c3b6206736e6725e13b97","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-loader/-/html-loader-2.1.1.tgz","fileCount":13,"unpackedSize":75744,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgNohhCRA9TVsSAnZWagAAoFcP/24vYYeaOmZTW7KLkxwZ\n2YfIbIMfM9xa9vMDgCmnFGzzFAxaOG5ta0Epp3byLhN8SouutFVkGZobmNgI\nTSM7H7+pIolFDUDio6lOCHwV+0Y+SmAlSiYf+nGGtymyk4lc/3jCrBYwTgnB\nbjucQwjnUAMPxsOOnAezl35T/KfR4yu9SDqwX78PlyEiTtb3CxmjqXkd63aH\n6RaJH703ew3EfD4/FuIMq4nshngrtcqFYA8Eh+umWylnZgFl/ZZjx1fNYJc9\nqDHVWG0UfQ0WubFPQ6TU4SyjD0DCjRmYh0/NDtu6WNOuRHxiyud57jYa/y92\n2rumKtjnMDRgToab4swChyI3QydDBQA+AlV1QdBM/GnNv373pOQ4D8spUTAW\nKrIKUw7dzDNm3ln8+g8k5eypU2vBZgV3gbfSUw9fohU+Sm1iac7yFqtCHX3X\nDnwe8ZmQDUBd06MCaGeoIlL2xlm1iZuptg07Lbj7ZFQjaJmOvOlwEQo3YqxL\nD/0bJg7H4qUIpQ8D5THJ8sfEVeEW6a6qeoOUw4JpDBGPX32wyW0JCDbrxZsx\nVEHInwt5BrjUrk54LenJ7VB6EBAgyWiLL2OvwrZtNzUjGba4j2e8R7lVzYn/\nL0IgJVUG5gSzZ08B0/O271WKgimYHe9NBI+S53d/M4GFyZ5YEB17brYSjHfH\nikSj\r\n=JLhD\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC5tnFkbAHzIvihD5lj2Bc34b/sNztBx/8cbyK/ZqISKgIhAMrfVJyajjRzcrYGoVQFFeF6tkEDJKPQcTr/d15psrIM"}]},"_npmUser":{"name":"anonymous","email":"sheo13666q@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"sheo13666q@gmail.com"},{"name":"anonymous","email":"tobias.koppers@googlemail.com"},{"name":"anonymous","email":"mail@johannesewald.de"},{"name":"anonymous","email":"michael.ciniawsky@gmail.com"},{"name":"anonymous","email":"wiens.joshua@gmail.com"},{"name":"anonymous","email":"bebraw@gmail.com"},{"name":"anonymous","email":"eric@smarterspam.com"},{"name":"anonymous","email":"hemanth.hm@gmail.com"},{"name":"anonymous","email":"sean.larkin@cuw.edu"},{"name":"anonymous","email":"developers@peerigon.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-loader_2.1.1_1614186591682_0.5119920859553058"},"_hasShrinkwrap":false},"2.1.2":{"name":"html-loader","version":"2.1.2","description":"Html loader module for webpack","license":"MIT","repository":{"type":"git","url":"git+https://github.com/webpack-contrib/html-loader.git"},"author":{"name":"Tobias Koppers @sokra"},"homepage":"https://github.com/webpack-contrib/html-loader","bugs":{"url":"https://github.com/webpack-contrib/html-loader/issues"},"funding":{"type":"opencollective","url":"https://opencollective.com/webpack"},"main":"dist/cjs.js","engines":{"node":">= 10.13.0"},"scripts":{"start":"npm run build -- -w","clean":"del-cli dist","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\"","prebuild":"npm run clean","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","postbuild":"npm run validate:runtime","commitlint":"commitlint --from=master","security":"npm audit","lint:prettier":"prettier --list-different .","lint:js":"eslint --cache .","lint":"npm-run-all -l -p \"lint:**\"","test:only":"cross-env NODE_ENV=test jest","test:watch":"npm run test:only -- --watch","test:coverage":"npm run test:only -- --coverage","pretest":"npm run lint","test":"npm run test:coverage","prepare":"npm run build","release":"standard-version","defaults":"webpack-defaults","_postinstall":"husky install","prepublishOnly":"pinst --disable","postpublish":"pinst --enable"},"peerDependencies":{"webpack":"^5.0.0"},"dependencies":{"html-minifier-terser":"^5.1.1","parse5":"^6.0.1"},"devDependencies":{"@babel/cli":"^7.12.10","@babel/core":"^7.12.10","@babel/preset-env":"^7.12.11","@commitlint/cli":"^11.0.0","@commitlint/config-conventional":"^11.0.0","@webpack-contrib/defaults":"^6.3.0","@webpack-contrib/eslint-config-webpack":"^3.0.0","babel-jest":"^26.6.3","cross-env":"^7.0.3","del":"^6.0.0","del-cli":"^3.0.1","es-check":"^5.2.0","eslint":"^7.20.0","eslint-config-prettier":"^7.2.0","eslint-plugin-import":"^2.22.1","handlebars":"^4.7.6","html-webpack-plugin":"^5.2.0","husky":"^5.0.9","jest":"^26.6.3","lint-staged":"^10.5.4","memfs":"^3.2.0","npm-run-all":"^4.1.5","pinst":"^2.1.4","posthtml":"^0.15.1","posthtml-webp":"^2.1.0","prettier":"^2.1.2","standard-version":"^9.0.0","unescape-unicode":"^0.2.0","webpack":"^5.21.2"},"keywords":["webpack","html","loader"],"gitHead":"6ae2c142f21dcbdda5f49ae15c8f015588b39222","_id":"html-loader@2.1.2","_nodeVersion":"12.21.0","_npmVersion":"7.6.1","dist":{"integrity":"sha512-XB4O1+6mpLp4qy/3qg5+1QPZ/uXvWtO64hNAX87sKHwcHkp1LJGU7V3sJ9iVmRACElAZXQ4YOO/Lbkx5kYfl9A==","shasum":"17eb111441e863a9308071ed876b4ba861f143df","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-loader/-/html-loader-2.1.2.tgz","fileCount":13,"unpackedSize":77669,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgR5CBCRA9TVsSAnZWagAAB2AP/3eKHEWjvXdLI/uhPe5H\nn/eZIQvdELTqX9MDuuExm/I0Z5q+tGruqu7gL/6klwXSgOW2jGhLHZ4m0DIU\nxH6J+Ac5dXAKc62tP2Umw12sVUcuPpZw+BSOWLWLDRV7BgDe3RhgaU9prU0f\npasn+CxBaUWy2I+vm41LnwYPn8EX8uZvBbfgPKEBZ3puwVw45lXweE3EYXeW\nOfISHg4JTlf/iobYqyS+XDdYcAwyziMJemr0OCsKfSHn9KgN+w4BRsk/lz7a\nWnRYfyh+j0xYMPh15mHFtDXceG9LL1sE3k6mTqmPagmeuDDaLshS1nfDsjrK\n7sNGzBYZvy0SzSimaJ0As/0UDJ2zGGGqfIrKRNEJwyU4g/KXXJme96EYVRV5\nZV3BQ0/Xl+UPzWvXxsuGeOvgpPHOB2zYs4OyLteUnlpuKCWsZaFL+jOOpw6z\nDpMsBlDyRDeARkxsoMP8mB9RqKp+mq2RfrMGrZGJj5meH5zb8/pxBxew7FwP\nvHY7UfzgLYuDm3NCBcRTwPcc5fN4vU27C6aC9E2e1uskY4n94PWzVztTKjG8\nKtjm3Oy25tOu1XjjqUZ0ufXkGqRarf46iEe5liFNpQXd7FBpuCYbnfSgCpQh\nSr3/cWnKGCbjucEWF0N0LAucASjeimCP87mANbyaTVQxZJfwzx+nj5d3x2dT\n2g0W\r\n=V+4H\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGxaMWPMUGNXHIbKIifauVoA0jz6IK9LSnqXGddQybbmAiEAmuL2urgLSuVbX7q8bnf6SlrrFkqfSxnssBn4j9gv/Uo="}]},"_npmUser":{"name":"anonymous","email":"sheo13666q@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"sheo13666q@gmail.com"},{"name":"anonymous","email":"tobias.koppers@googlemail.com"},{"name":"anonymous","email":"mail@johannesewald.de"},{"name":"anonymous","email":"michael.ciniawsky@gmail.com"},{"name":"anonymous","email":"wiens.joshua@gmail.com"},{"name":"anonymous","email":"bebraw@gmail.com"},{"name":"anonymous","email":"eric@smarterspam.com"},{"name":"anonymous","email":"hemanth.hm@gmail.com"},{"name":"anonymous","email":"sean.larkin@cuw.edu"},{"name":"anonymous","email":"developers@peerigon.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-loader_2.1.2_1615302785058_0.9190636639752665"},"_hasShrinkwrap":false},"3.0.0":{"name":"html-loader","version":"3.0.0","description":"Html loader module for webpack","license":"MIT","repository":{"type":"git","url":"git+https://github.com/webpack-contrib/html-loader.git"},"author":{"name":"Tobias Koppers @sokra"},"homepage":"https://github.com/webpack-contrib/html-loader","bugs":{"url":"https://github.com/webpack-contrib/html-loader/issues"},"funding":{"type":"opencollective","url":"https://opencollective.com/webpack"},"main":"dist/cjs.js","engines":{"node":">= 12.13.0"},"scripts":{"start":"npm run build -- -w","clean":"del-cli dist","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\"","prebuild":"npm run clean","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","postbuild":"npm run validate:runtime","commitlint":"commitlint --from=master","security":"npm audit --production","lint:prettier":"prettier --list-different .","lint:js":"eslint --cache .","lint":"npm-run-all -l -p \"lint:**\"","test:only":"cross-env NODE_ENV=test jest","test:watch":"npm run test:only -- --watch","test:coverage":"npm run test:only -- --coverage","pretest":"npm run lint","test":"npm run test:coverage","prepare":"husky install && npm run build","release":"standard-version"},"peerDependencies":{"webpack":"^5.0.0"},"dependencies":{"html-minifier-terser":"^6.0.2","parse5":"^6.0.1"},"devDependencies":{"@babel/cli":"^7.14.5","@babel/core":"^7.14.6","@babel/preset-env":"^7.14.7","@commitlint/cli":"^13.1.0","@commitlint/config-conventional":"^13.1.0","@webpack-contrib/eslint-config-webpack":"^3.0.0","babel-jest":"^27.0.5","cross-env":"^7.0.3","del":"^6.0.0","del-cli":"^4.0.0","es-check":"^6.0.0","eslint":"^8.0.1","eslint-config-prettier":"^8.3.0","eslint-plugin-import":"^2.23.4","handlebars":"^4.7.7","html-webpack-plugin":"^5.3.2","husky":"^7.0.0","jest":"^27.0.5","lint-staged":"^11.0.0","memfs":"^3.2.2","npm-run-all":"^4.1.5","posthtml":"^0.16.4","posthtml-webp":"^2.1.0","prettier":"^2.3.1","standard-version":"^9.3.0","unescape-unicode":"^0.2.0","webpack":"^5.40.0"},"keywords":["webpack","html","loader"],"gitHead":"2d891663982391e58a40ece3881717bd0fcfafda","_id":"html-loader@3.0.0","_nodeVersion":"12.22.7","_npmVersion":"7.24.0","dist":{"integrity":"sha512-xcWiuZwxEs4Sh0D/I+KujHZtCdmA8hPS3nPp/bKXKO9zFouGTdgK8pt7nrh7tD2kIy1ND6OgOpXQUKa+xYIMmg==","shasum":"8be6dfd7d259b0ea83ab78b5ab6a6ef3879abf55","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-loader/-/html-loader-3.0.0.tgz","fileCount":12,"unpackedSize":68629,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCQ9Kla9bCXvwOCTDdidXJsDJqW9CN/+w6DG1ED1WIQKgIhANWMlH2tyrMiJ+KlfLACqPSyEuh5BLFJ13Rxv2mCB2bW"}]},"_npmUser":{"name":"anonymous","email":"sheo13666q@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"sheo13666q@gmail.com"},{"name":"anonymous","email":"tobias.koppers@googlemail.com"},{"name":"anonymous","email":"mail@johannesewald.de"},{"name":"anonymous","email":"michael.ciniawsky@gmail.com"},{"name":"anonymous","email":"wiens.joshua@gmail.com"},{"name":"anonymous","email":"bebraw@gmail.com"},{"name":"anonymous","email":"eric@smarterspam.com"},{"name":"anonymous","email":"hemanth.hm@gmail.com"},{"name":"anonymous","email":"sean.larkin@cuw.edu"},{"name":"anonymous","email":"developers@peerigon.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-loader_3.0.0_1634831350782_0.666928039700561"},"_hasShrinkwrap":false},"3.0.1":{"name":"html-loader","version":"3.0.1","description":"Html loader module for webpack","license":"MIT","repository":{"type":"git","url":"git+https://github.com/webpack-contrib/html-loader.git"},"author":{"name":"Tobias Koppers @sokra"},"homepage":"https://github.com/webpack-contrib/html-loader","bugs":{"url":"https://github.com/webpack-contrib/html-loader/issues"},"funding":{"type":"opencollective","url":"https://opencollective.com/webpack"},"main":"dist/cjs.js","engines":{"node":">= 12.13.0"},"scripts":{"start":"npm run build -- -w","clean":"del-cli dist","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\"","prebuild":"npm run clean","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","postbuild":"npm run validate:runtime","commitlint":"commitlint --from=master","security":"npm audit --production","lint:prettier":"prettier --list-different .","lint:js":"eslint --cache .","lint":"npm-run-all -l -p \"lint:**\"","test:only":"cross-env NODE_ENV=test jest","test:watch":"npm run test:only -- --watch","test:coverage":"npm run test:only -- --coverage","pretest":"npm run lint","test":"npm run test:coverage","prepare":"husky install && npm run build","release":"standard-version"},"peerDependencies":{"webpack":"^5.0.0"},"dependencies":{"html-minifier-terser":"^6.0.2","parse5":"^6.0.1"},"devDependencies":{"@babel/cli":"^7.14.5","@babel/core":"^7.14.6","@babel/preset-env":"^7.14.7","@commitlint/cli":"^14.1.0","@commitlint/config-conventional":"^14.1.0","@webpack-contrib/eslint-config-webpack":"^3.0.0","babel-jest":"^27.0.5","cross-env":"^7.0.3","del":"^6.0.0","del-cli":"^4.0.0","es-check":"^6.0.0","eslint":"^8.0.1","eslint-config-prettier":"^8.3.0","eslint-plugin-import":"^2.23.4","handlebars":"^4.7.7","html-webpack-plugin":"^5.3.2","husky":"^7.0.0","jest":"^27.0.5","lint-staged":"^11.0.0","memfs":"^3.2.2","npm-run-all":"^4.1.5","posthtml":"^0.16.4","posthtml-webp":"^2.1.0","prettier":"^2.3.1","standard-version":"^9.3.0","unescape-unicode":"^0.2.0","webpack":"^5.40.0"},"keywords":["webpack","html","loader"],"gitHead":"576b781f5389475d4fb678df617e7faf2ba394dd","_id":"html-loader@3.0.1","_nodeVersion":"12.22.7","_npmVersion":"8.1.2","dist":{"integrity":"sha512-90Sxg9FhTkQEzmmHT2KOAQniTZgC72aifcfR0fZsuo1PJz0K4EXiTwxejTUombF8XShLj5RaZKYsUJhxR6G2dA==","shasum":"84d9094d7fc2e3fcd871d1524736953742758585","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-loader/-/html-loader-3.0.1.tgz","fileCount":12,"unpackedSize":68726,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCwzPDWs/jvOq0FJynFy4M6WDYC6c+qsRskqT6YGJXkNgIhAK4PggivUvInI0UBXJUM+TKqbnU4EXR2lyZgiZOcWAb7"}]},"_npmUser":{"name":"anonymous","email":"sheo13666q@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"sheo13666q@gmail.com"},{"name":"anonymous","email":"tobias.koppers@googlemail.com"},{"name":"anonymous","email":"mail@johannesewald.de"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-loader_3.0.1_1635865459507_0.4293075949628995"},"_hasShrinkwrap":false},"3.1.0":{"name":"html-loader","version":"3.1.0","description":"Html loader module for webpack","license":"MIT","repository":{"type":"git","url":"git+https://github.com/webpack-contrib/html-loader.git"},"author":{"name":"Tobias Koppers @sokra"},"homepage":"https://github.com/webpack-contrib/html-loader","bugs":{"url":"https://github.com/webpack-contrib/html-loader/issues"},"funding":{"type":"opencollective","url":"https://opencollective.com/webpack"},"main":"dist/cjs.js","engines":{"node":">= 12.13.0"},"scripts":{"start":"npm run build -- -w","clean":"del-cli dist","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\"","prebuild":"npm run clean","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","postbuild":"npm run validate:runtime","commitlint":"commitlint --from=master","security":"npm audit --production","lint:prettier":"prettier --list-different .","lint:js":"eslint --cache .","lint":"npm-run-all -l -p \"lint:**\"","test:only":"cross-env NODE_ENV=test jest","test:watch":"npm run test:only -- --watch","test:coverage":"npm run test:only -- --coverage","pretest":"npm run lint","test":"npm run test:coverage","prepare":"husky install && npm run build","release":"standard-version"},"peerDependencies":{"webpack":"^5.0.0"},"dependencies":{"html-minifier-terser":"^6.0.2","parse5":"^6.0.1"},"devDependencies":{"@babel/cli":"^7.16.7","@babel/core":"^7.16.7","@babel/preset-env":"^7.16.7","@commitlint/cli":"^14.1.0","@commitlint/config-conventional":"^14.1.0","@webpack-contrib/eslint-config-webpack":"^3.0.0","babel-jest":"^27.4.5","cross-env":"^7.0.3","del":"^6.0.0","del-cli":"^4.0.0","es-check":"^6.1.1","eslint":"^8.6.0","eslint-config-prettier":"^8.3.0","eslint-plugin-import":"^2.25.4","handlebars":"^4.7.7","html-webpack-plugin":"^5.3.2","husky":"^7.0.0","jest":"^27.4.5","lint-staged":"^11.0.0","memfs":"^3.4.1","npm-run-all":"^4.1.5","posthtml":"^0.16.4","posthtml-webp":"^2.1.0","prettier":"^2.5.1","standard-version":"^9.3.0","unescape-unicode":"^0.2.0","webpack":"^5.65.0"},"keywords":["webpack","html","loader"],"gitHead":"eb4297da5702867dc835329ff1c1d871be6e70bc","_id":"html-loader@3.1.0","_nodeVersion":"12.22.8","_npmVersion":"8.3.0","dist":{"integrity":"sha512-ycMYFRiCF7YANcLDNP72kh3Po5pTcH+bROzdDwh00iVOAY/BwvpuZ1BKPziQ35Dk9D+UD84VGX1Lu/H4HpO4fw==","shasum":"e5b9c1cf81b043786b15145eb30181575a22d9c8","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-loader/-/html-loader-3.1.0.tgz","fileCount":12,"unpackedSize":69505,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh2a3HCRA9TVsSAnZWagAA6LUP/2D4DihdMdxgb2kvhQ1y\n5Gf8y1Kfay+gqnuVjpduR06ipeYMsoXwAIZm7nY/eeQPhWvGLlaLizNwfiE6\nvm3USDgi+DzOfOSKVFtQXWIgP4QtQLLi7iv1YJXpC6Jeqa+JMQ6UCRXh5fYZ\nF/c6q+BnPD6Qi9eQFyxMTBXviz/YhTRw82K8SqiKhkPhBlLR1NWZUYVBdlRz\nF86zDjvz5vQe3jq+lXKvjXqsdJi9+5rk77dS8iCZcAVqZpDnVgT7sBoeS1vD\njrS/b/MZEEqWsStwapssGVpZTfyEJn+I796Jr8xO5OVWsBPRalyvSG3yf+T2\nct4WtRv/Nhgx1nolrkZUpqswHOgnSBAS0q2JigcgU6QNu/+2VMCk6P/qhNmV\ndXjVGfMf/7ubCRR/DAb/0cCgInxQ3bAWjmuZQtBUSrWKov/13dAeWiCjKW4l\nETcLy41nTuFDug5nAoMqfbt7W+/q4FWj0MYaho773aCGSRJrowh6uK8+YshF\ntLVHxYGzVL8kcO+LsXoCFTi42h8kyyGC59PIcCz+4JKY1Ie83xYTNzbVg3cR\n7Jr6LXK9kpgeSsuEroZt51ti6zP7CV0d/cIIQs2LuwOQOTZ+NezWpLBTO+Fr\nUzzK5TY74gDEPQjdaikwVA9lJyXTcUsXU1IfPj5eI3e82dHaNVfk+XcEaGq3\n5dlZ\r\n=YJ1B\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDyoRW/Uf4HOrs8ODU/5HaLscFzO27BTn9QLHXMU4AIVQIgC5J59RUvBB1I67ky3dktdvzz6NFyeYq+qJnKTGJv+ms="}]},"_npmUser":{"name":"anonymous","email":"sheo13666q@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"sheo13666q@gmail.com"},{"name":"anonymous","email":"tobias.koppers@googlemail.com"},{"name":"anonymous","email":"mail@johannesewald.de"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-loader_3.1.0_1641655751214_0.9189438009985362"},"_hasShrinkwrap":false},"3.1.1":{"name":"html-loader","version":"3.1.1","description":"Html loader module for webpack","license":"MIT","repository":{"type":"git","url":"git+https://github.com/webpack-contrib/html-loader.git"},"author":{"name":"Tobias Koppers @sokra"},"homepage":"https://github.com/webpack-contrib/html-loader","bugs":{"url":"https://github.com/webpack-contrib/html-loader/issues"},"funding":{"type":"opencollective","url":"https://opencollective.com/webpack"},"main":"dist/cjs.js","engines":{"node":">= 14.15.0"},"scripts":{"start":"npm run build -- -w","clean":"del-cli dist","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\"","prebuild":"npm run clean","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","postbuild":"npm run validate:runtime","commitlint":"commitlint --from=master","security":"npm audit --production","lint:prettier":"prettier --list-different .","lint:js":"eslint --cache .","lint":"npm-run-all -l -p \"lint:**\"","test:only":"cross-env NODE_ENV=test jest","test:watch":"npm run test:only -- --watch","test:coverage":"npm run test:only -- --coverage","pretest":"npm run lint","test":"npm run test:coverage","prepare":"husky install && npm run build","release":"standard-version"},"peerDependencies":{"webpack":"^5.0.0"},"dependencies":{"html-minifier-terser":"^6.1.0","parse5":"^7.0.0"},"devDependencies":{"@babel/cli":"^7.17.10","@babel/core":"^7.18.2","@babel/preset-env":"^7.18.2","@commitlint/cli":"^17.0.2","@commitlint/config-conventional":"^17.0.2","@webpack-contrib/eslint-config-webpack":"^3.0.0","babel-jest":"^28.1.1","cross-env":"^7.0.3","del":"^6.1.1","del-cli":"^4.0.0","es-check":"^6.2.1","eslint":"^8.16.0","eslint-config-prettier":"^8.5.0","eslint-plugin-import":"^2.26.0","handlebars":"^4.7.7","html-webpack-plugin":"^5.3.2","husky":"^8.0.1","jest":"^28.1.1","lint-staged":"^13.0.1","memfs":"^3.4.4","npm-run-all":"^4.1.5","posthtml":"^0.16.6","posthtml-webp":"^2.2.0","prettier":"^2.6.2","standard-version":"^9.5.0","unescape-unicode":"^0.2.0","webpack":"^5.73.0"},"keywords":["webpack","html","loader"],"gitHead":"4af872eb8196ee0252d407065d9646ca738b5b5a","_id":"html-loader@3.1.1","_nodeVersion":"18.1.0","_npmVersion":"8.8.0","dist":{"integrity":"sha512-JfQH9/ZvLjcIsEimEOWFnJQRN9o1aYOJXDGusL0ieyzmabfTKvHTABkhOBi+lPn1//D1bF6tRBByBBLfrcmv4w==","shasum":"dd805cac04ba1dc2b01ea4b95f9d9d78d8794b7f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-loader/-/html-loader-3.1.1.tgz","fileCount":12,"unpackedSize":69833,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHpcdyJcZ1XMdzTz2ZNA+leXiBUei2ROKZJ44e1G4SA8AiEAgNemwD83LngXxsVxdCuBkJo5sUKigQXnncDN9sEsQvI="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiqjfoACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrYpQ//QVVqIh5RiH72ZwLpQw2Cn/lHAaF0EVfIPyaUWHa3AbS67+cR\r\naj7WER4cvVsJnGyteytoUnk8iFV9XfgQQFsE1085eS/WRW0mzO8x2ZU9IL8p\r\nZ7kE32s7/6/d3pzVUlsz39MMOJtAL58DFLJF9q1WKbdk8ukHCGXPv5iCKrSi\r\nyR8FanFgw+fLAnRaJiJP8QKcZbg0OcixQ9wQpsd4wh7D9p8Ypjt28VRMJBMs\r\neiGMjlfJ5qOxDhHyeFxhbyXzGqthgz8PBnf5VaQXyhplK6gzmowNSreSg/nJ\r\nSdpnFacN3GfWRwTuiFMunc/t9L/e8wU9uDDuZ7BnH5r/S8CpUSONN+bIbcCp\r\ngNoEO1aWNqmbOq1LApVmo1jkpL16aWXWw1po3EvmIS5leBZwwFWuqH223cyD\r\nh0DpCdAxLYGs/NCk91fa97XODC6NRG05rWLwjdCsqMSzMk2ZhCGgQllYtafr\r\nX7LjVJ1otPUE04rJ55dJZQfIB5jg2ld2NLyTHZxr/IiMjJ5qyUA6dTzZ5PdX\r\niz3/h7YuZKleEYzJhkiDST3PNQeJQxmhENzahvjS4CI0t9wi8sBMcS0Hwz1Z\r\nlyRjxNlIJ5pvqDkfoZbLZufRJ7e32YnAtX7mlpdt6sXvOVZu0flgPNsG7fg6\r\nyGov8hPD5H5cFFjouWmCcXASI3rdSykKonE=\r\n=yhz2\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"anonymous","email":"sheo13666q@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"sheo13666q@gmail.com"},{"name":"anonymous","email":"tobias.koppers@googlemail.com"},{"name":"anonymous","email":"mail@johannesewald.de"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-loader_3.1.1_1655322600437_0.06665380039162905"},"_hasShrinkwrap":false},"4.0.0":{"name":"html-loader","version":"4.0.0","description":"Html loader module for webpack","license":"MIT","repository":{"type":"git","url":"git+https://github.com/webpack-contrib/html-loader.git"},"author":{"name":"Tobias Koppers @sokra"},"homepage":"https://github.com/webpack-contrib/html-loader","bugs":{"url":"https://github.com/webpack-contrib/html-loader/issues"},"funding":{"type":"opencollective","url":"https://opencollective.com/webpack"},"main":"dist/cjs.js","engines":{"node":">= 14.15.0"},"scripts":{"start":"npm run build -- -w","clean":"del-cli dist","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\"","prebuild":"npm run clean","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","postbuild":"npm run validate:runtime","commitlint":"commitlint --from=master","security":"npm audit --production","lint:prettier":"prettier --list-different .","lint:js":"eslint --cache .","lint":"npm-run-all -l -p \"lint:**\"","test:only":"cross-env NODE_ENV=test jest","test:watch":"npm run test:only -- --watch","test:coverage":"npm run test:only -- --coverage","pretest":"npm run lint","test":"npm run test:coverage","prepare":"husky install && npm run build","release":"standard-version"},"peerDependencies":{"webpack":"^5.0.0"},"dependencies":{"html-minifier-terser":"^6.1.0","parse5":"^7.0.0"},"devDependencies":{"@babel/cli":"^7.17.10","@babel/core":"^7.18.2","@babel/preset-env":"^7.18.2","@commitlint/cli":"^17.0.2","@commitlint/config-conventional":"^17.0.2","@webpack-contrib/eslint-config-webpack":"^3.0.0","babel-jest":"^28.1.1","cross-env":"^7.0.3","del":"^6.1.1","del-cli":"^4.0.0","es-check":"^6.2.1","eslint":"^8.16.0","eslint-config-prettier":"^8.5.0","eslint-plugin-import":"^2.26.0","handlebars":"^4.7.7","html-webpack-plugin":"^5.3.2","husky":"^8.0.1","jest":"^28.1.1","lint-staged":"^13.0.1","memfs":"^3.4.4","npm-run-all":"^4.1.5","posthtml":"^0.16.6","posthtml-webp":"^2.2.0","prettier":"^2.6.2","standard-version":"^9.5.0","unescape-unicode":"^0.2.0","webpack":"^5.73.0"},"keywords":["webpack","html","loader"],"gitHead":"ef059088e083cd37e7b3671306cc76df27e6e01d","_id":"html-loader@4.0.0","_nodeVersion":"18.1.0","_npmVersion":"8.8.0","dist":{"integrity":"sha512-y6sVh2/zB72tOmZ9lrdY8cBFg2PECr5PBeo3ZHG3JuK9TVPpetrwlIm0lIgkwbY+Sj2X97LootYlCBzZu2TKEQ==","shasum":"486bfeaf5aaf41a0d9251a69e593ee9c611db9f9","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-loader/-/html-loader-4.0.0.tgz","fileCount":12,"unpackedSize":69833,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIACubmJTS42BQwXhl6jZN3rk7EGINkoIgi8iZd/IItk7AiEA+lkXx5EDhhVEOr7so1se+pLJOdVxP0/R4sGSSblakns="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiqjgoACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpzXw/+KmS6W8dUDRmsvgxXg3gUX66NQyXkun3bgR7GCWHDi1KQG5ep\r\nmpLY2fa5EaG7kp5ZJwJgAoTsFwVAaZIDyl5zlOfQ6lpzR1PVWUSzGEx1RM4S\r\nGQPz+UB+SaTO2wq/tqg6VcCFIht9poWiKhvdtQuLUyPqqPmsTs7Vd1MvyrKH\r\neup6DRILjdNPf38Ou/3O4/5aQFGQB0wpKg7iWuyX7ZObQc7ppPvuxOrCvoj/\r\nnDMyZn/WPw4vqEwGg8CGd0Xe2S+Sq4vFN9dz+GKrZzBnk/nNUsrnvRM6IiLp\r\nOx3jtO8KnR3gq6V995EljdVtoNVWWGAjnqDVG2Isclu8taLyGcVuQHSOAHFI\r\nuQQxeC2XnYIHwu7ADviHDUnKsAk1QWgTSdsiKcR6Cljp6YPNd3tkVPetqCqJ\r\ngBEJFZ4QA/fXhQMKye4oMDaNCXWZYmcsATcX/LxTqHWwhRFOZDGSCWJFF2eU\r\nWwxL6447O8DUdh8ItFL8hFnnLsNlSovQNTrUr/AGEIPXDs3GfJQTW5nWBxZT\r\nT2gRdKJ93J/HBBbCRmbtb/Bx+Y+tTPc8mGM5cvk/pXV6tlhvNBqNq6bHv62A\r\nU6e2j+zlC09hsFzUghSb2cK6pHxcGMDx3h5NWtQhB8+xJSNsHmcqF0W/3Sth\r\n4vogCLJh5+KW63yh8hd6UbUZCe+soPu49/0=\r\n=ElVo\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"anonymous","email":"sheo13666q@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"sheo13666q@gmail.com"},{"name":"anonymous","email":"tobias.koppers@googlemail.com"},{"name":"anonymous","email":"mail@johannesewald.de"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-loader_4.0.0_1655322664491_0.6869701758347002"},"_hasShrinkwrap":false},"3.1.2":{"name":"html-loader","version":"3.1.2","description":"Html loader module for webpack","license":"MIT","repository":{"type":"git","url":"git+https://github.com/webpack-contrib/html-loader.git"},"author":{"name":"Tobias Koppers @sokra"},"homepage":"https://github.com/webpack-contrib/html-loader","bugs":{"url":"https://github.com/webpack-contrib/html-loader/issues"},"funding":{"type":"opencollective","url":"https://opencollective.com/webpack"},"main":"dist/cjs.js","engines":{"node":">= 12.13.0"},"scripts":{"start":"npm run build -- -w","clean":"del-cli dist","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\"","prebuild":"npm run clean","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","postbuild":"npm run validate:runtime","commitlint":"commitlint --from=master","security":"npm audit --production","lint:prettier":"prettier --list-different .","lint:js":"eslint --cache .","lint":"npm-run-all -l -p \"lint:**\"","test:only":"cross-env NODE_ENV=test jest","test:watch":"npm run test:only -- --watch","test:coverage":"npm run test:only -- --coverage","pretest":"npm run lint","test":"npm run test:coverage","prepare":"husky install && npm run build","release":"standard-version"},"peerDependencies":{"webpack":"^5.0.0"},"dependencies":{"html-minifier-terser":"^6.0.2","parse5":"^6.0.1"},"devDependencies":{"@babel/cli":"^7.16.7","@babel/core":"^7.16.7","@babel/preset-env":"^7.16.7","@commitlint/cli":"^14.1.0","@commitlint/config-conventional":"^14.1.0","@webpack-contrib/eslint-config-webpack":"^3.0.0","babel-jest":"^27.4.5","cross-env":"^7.0.3","del":"^6.0.0","del-cli":"^4.0.0","es-check":"^6.1.1","eslint":"^8.6.0","eslint-config-prettier":"^8.3.0","eslint-plugin-import":"^2.25.4","handlebars":"^4.7.7","html-webpack-plugin":"^5.3.2","husky":"^7.0.0","jest":"^27.4.5","lint-staged":"^11.0.0","memfs":"^3.4.1","npm-run-all":"^4.1.5","posthtml":"^0.16.4","posthtml-webp":"^2.1.0","prettier":"^2.5.1","standard-version":"^9.3.0","unescape-unicode":"^0.2.0","webpack":"^5.65.0"},"keywords":["webpack","html","loader"],"gitHead":"eb4297da5702867dc835329ff1c1d871be6e70bc","_id":"html-loader@3.1.2","_nodeVersion":"18.1.0","_npmVersion":"8.8.0","dist":{"integrity":"sha512-9WQlLiAV5N9fCna4MUmBW/ifaUbuFZ2r7IZmtXzhyfyi4zgPEjXsmsYCKs+yT873MzRj+f1WMjuAiPNA7C6Tcw==","shasum":"5dc7e52d110b97c381468ac3354efd9bfa36c9fd","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-loader/-/html-loader-3.1.2.tgz","fileCount":12,"unpackedSize":69505,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD0bCAiSvfCiMUxX4V9u5aFBr0aUtbEDA6aE7e5ZYkNpgIgaPxio4xlJ2kItKqVfOp+wq9KqNp/IQrwB/KCyuzUFbw="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiqjiZACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqRyxAAgFLtN80DqzL1zoBF4xZZpAxhVnNvoRPknbLVKwF9Ixzn6QOf\r\npJlsB8f4I8hFXK9FAdKKJ4zvwiwRYUiUaMCq8fBQSo3TSWoKLLxVhmbSNDR8\r\nY7Z0ObS6n7rP5iH0iv6vGVhfhk1FE8nN5JEctuRK8CKt7CEul1+5KVHV2wXD\r\nAiS9uZu7vyaPUUREKvbmB5xTnu7rcq7C3cvkOzQLX2sG3/kFqc0DW2QMqSRY\r\nh3yj+74a6IwzAbUiqm6AYNU9oIOSTzgKOEaC5fMo4y+wpnNZeAn4G26ofgys\r\nya4aAcYa87P8ti9yFgOGIQ6UsZApWnbfXMV0lwl795d2cmHiHqI+v95A9KMB\r\ne0JW5qacC18ClGr4B9m++O2FCInZn7vTXB8O4Agv2RgZlMrpwKzXfrF8o1pt\r\nl26ro8HATH9JHfysVZOmd4Yxtn0oMvQ3a9V3BjZuQvP7mtUvl0kjVDg437xI\r\nPfG7b4IWvEpQxdYO9FZNmuzTcHKXC563vWaLdu4dnC9fz8XTYutQi8m+p3O7\r\n/wCa/CFsj2pSGefO6VjYPIxmHo9WpcvWnNT5zBUQE/Xs7yq7vhyes5vDd8k3\r\ncRyMABAbVZA9AfCU9cZ8iKfsTS7VNvEZsCu66Zob4FqikSZjyNglGq2GxhIM\r\nxHOZ45077FaWFR30tsDy50mJJpt7x7A5LNc=\r\n=mZHO\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"anonymous","email":"sheo13666q@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"sheo13666q@gmail.com"},{"name":"anonymous","email":"tobias.koppers@googlemail.com"},{"name":"anonymous","email":"mail@johannesewald.de"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-loader_3.1.2_1655322776867_0.6164368033674781"},"_hasShrinkwrap":false},"4.1.0":{"name":"html-loader","version":"4.1.0","description":"Html loader module for webpack","license":"MIT","repository":{"type":"git","url":"git+https://github.com/webpack-contrib/html-loader.git"},"author":{"name":"Tobias Koppers @sokra"},"homepage":"https://github.com/webpack-contrib/html-loader","bugs":{"url":"https://github.com/webpack-contrib/html-loader/issues"},"funding":{"type":"opencollective","url":"https://opencollective.com/webpack"},"main":"dist/cjs.js","engines":{"node":">= 14.15.0"},"scripts":{"start":"npm run build -- -w","clean":"del-cli dist","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\"","prebuild":"npm run clean","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","postbuild":"npm run validate:runtime","commitlint":"commitlint --from=master","security":"npm audit --production","lint:prettier":"prettier --list-different .","lint:js":"eslint --cache .","lint":"npm-run-all -l -p \"lint:**\"","test:only":"cross-env NODE_ENV=test jest","test:watch":"npm run test:only -- --watch","test:coverage":"npm run test:only -- --coverage","pretest":"npm run lint","test":"npm run test:coverage","prepare":"husky install && npm run build","release":"standard-version"},"peerDependencies":{"webpack":"^5.0.0"},"dependencies":{"html-minifier-terser":"^6.1.0","parse5":"^7.0.0"},"devDependencies":{"@babel/cli":"^7.18.6","@babel/core":"^7.18.6","@babel/preset-env":"^7.18.6","@commitlint/cli":"^17.0.3","@commitlint/config-conventional":"^17.0.3","@webpack-contrib/eslint-config-webpack":"^3.0.0","babel-jest":"^28.1.2","cross-env":"^7.0.3","del":"^6.1.1","del-cli":"^4.0.0","es-check":"^6.2.1","eslint":"^8.18.0","eslint-config-prettier":"^8.5.0","eslint-plugin-import":"^2.26.0","handlebars":"^4.7.7","html-webpack-plugin":"^5.3.2","husky":"^8.0.1","jest":"^28.1.2","lint-staged":"^13.0.3","memfs":"^3.4.7","npm-run-all":"^4.1.5","posthtml":"^0.16.6","posthtml-webp":"^2.2.0","prettier":"^2.7.1","standard-version":"^9.5.0","unescape-unicode":"^0.2.0","webpack":"^5.73.0"},"keywords":["webpack","html","loader"],"gitHead":"852993225375bcb4650242fa567b0737f031b11b","_id":"html-loader@4.1.0","_nodeVersion":"18.1.0","_npmVersion":"8.8.0","dist":{"integrity":"sha512-QDDNmLgn96NWtTPx/VXRerFXH0hn7cm4bruqsZ333GCb+rqiqGurcxtP/M52wcui1/iLiu0l5ms/McE7/Ik6aQ==","shasum":"a2f935802675fef0703165491316b200600996be","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-loader/-/html-loader-4.1.0.tgz","fileCount":12,"unpackedSize":70975,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDsD9gkHHPasUXRZt7qH4ey4R/SDdVM+0USOp0EZFM+RwIgIxINsZ5ah/4bZ8qILDCPoQFU4afdGPSSSn9DKH3CvJI="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJizF2IACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpYFQ/+N4WUb72MXb9KXsVx4hS10pOJlSPXM6xvi91YHxu8ntvnkPly\r\nJ82t2iXC3ZRw4i32BecVYWAzr9FWRMRl8vwSfkl8yLPFnowWzbHINTHwfHU5\r\nkATxwt4bwt8E8bV63rTN5ZBbnZzCXMSkc7Jzto5s0JCEKQg1rHimlwKOTaci\r\neHXPKJsabs8QiBE3aq9T5MIU1INQGubQXCe/NX17MBZPeKpYCm4zeT540uGL\r\nY9/kYjo9XxIpUH+lDZgS6RoA4uX+rZepQBFCRz3hUDd4PXGTg2l18evcC6H+\r\nuvnYOBvuNJ52zh6F766u1yjhHkXjJEJ/Mi+9yPLTxZIQbB0/OhGmd6gTvl1D\r\nahAnbg9mn3MwdwhLGTauAFt8NFnkIDDQUI+FnPzKrbNAass5qJFZitG9seoo\r\n6gslju8PZi6ugjTQ3GRk9Lajw/UVA9yLjMnMlGocJ+hBWYVh4y/vGT0RVS5G\r\n6x7QUwAdzjkjhkcKQtYHiW0izxASf28NB8q3US6uJq5veHXoUZE9ipz/wT/H\r\nm3+bAGKiAUTuba/xO26WJxSviWh6xgDefl0j3vVvQfAtfCpy9VWVR76OnHDC\r\nG4RRLbW4u4ZTIbd/9wwtpY1sWQJ0MkAmnMzsoLgEfjeJxmtjrWQkAkGabv26\r\nZay4k1EYD9dOlnxFB6u2VG2G1uZuR5h2ic8=\r\n=n1WB\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"anonymous","email":"sheo13666q@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"sheo13666q@gmail.com"},{"name":"anonymous","email":"tobias.koppers@googlemail.com"},{"name":"anonymous","email":"mail@johannesewald.de"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-loader_4.1.0_1657560456090_0.33292863332083145"},"_hasShrinkwrap":false},"4.2.0":{"name":"html-loader","version":"4.2.0","description":"Html loader module for webpack","license":"MIT","repository":{"type":"git","url":"git+https://github.com/webpack-contrib/html-loader.git"},"author":{"name":"Tobias Koppers @sokra"},"homepage":"https://github.com/webpack-contrib/html-loader","bugs":{"url":"https://github.com/webpack-contrib/html-loader/issues"},"funding":{"type":"opencollective","url":"https://opencollective.com/webpack"},"main":"dist/cjs.js","engines":{"node":">= 14.15.0"},"scripts":{"start":"npm run build -- -w","clean":"del-cli dist","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\"","prebuild":"npm run clean","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","postbuild":"npm run validate:runtime","commitlint":"commitlint --from=master","security":"npm audit --production","lint:prettier":"prettier --list-different .","lint:js":"eslint --cache .","lint":"npm-run-all -l -p \"lint:**\"","test:only":"cross-env NODE_ENV=test jest","test:watch":"npm run test:only -- --watch","test:coverage":"npm run test:only -- --coverage","pretest":"npm run lint","test":"npm run test:coverage","prepare":"husky install && npm run build","release":"standard-version"},"peerDependencies":{"webpack":"^5.0.0"},"dependencies":{"html-minifier-terser":"^7.0.0","parse5":"^7.0.0"},"devDependencies":{"@babel/cli":"^7.18.10","@babel/core":"^7.18.13","@babel/preset-env":"^7.18.10","@commitlint/cli":"^17.1.2","@commitlint/config-conventional":"^17.1.0","@webpack-contrib/eslint-config-webpack":"^3.0.0","babel-jest":"^29.0.3","cross-env":"^7.0.3","del":"^6.1.1","del-cli":"^4.0.0","es-check":"^7.0.0","eslint":"^8.23.0","eslint-config-prettier":"^8.5.0","eslint-plugin-import":"^2.26.0","handlebars":"^4.7.7","html-webpack-plugin":"^5.3.2","husky":"^8.0.1","jest":"^29.0.3","lint-staged":"^13.0.3","memfs":"^3.4.7","npm-run-all":"^4.1.5","posthtml":"^0.16.6","posthtml-webp":"^2.2.0","prettier":"^2.7.1","standard-version":"^9.5.0","unescape-unicode":"^0.2.0","webpack":"^5.74.0"},"keywords":["webpack","html","loader"],"gitHead":"17fbef37b0ffcf3bd883126974021d2601a60f8a","_id":"html-loader@4.2.0","_nodeVersion":"18.7.0","_npmVersion":"8.15.0","dist":{"integrity":"sha512-OxCHD3yt+qwqng2vvcaPApCEvbx+nXWu+v69TYHx1FO8bffHn/JjHtE3TTQZmHjwvnJe4xxzuecetDVBrQR1Zg==","shasum":"20f69f9ec69244860c250ae6ee0046c8c5c4d348","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-loader/-/html-loader-4.2.0.tgz","fileCount":12,"unpackedSize":70978,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBIB3KXfxVz1fCG/7CzT9QblI4x8k603fjPJyJYjdr/IAiARApQBtTztu/EsogDdOQZnlQwEyZrkfsmDpkcl0DLBFQ=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjLPJGACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr8Ew/8CVtKal2rvMAj/SDwsRA+eCjg/UweFwShDebU3T4JqP424rqA\r\nnLaVKLHbYQ6ta4ZAAIpGbClJINxB3QXRHwQObr8DTkHTsILfa8KA6lepzPyi\r\nhcAmuMq58iH8iFhm+IvKYKJDx/kyX72W6adag4B7pmkGnbqlAlDwvksqR/iA\r\nPn2rneFFyiTICdfsiktK4wxMVSDcB6t4LGhJviaIDqVVdEnVKwVmtn4t91Fe\r\nmLCHPVD2A8Mn8CEzjwJko4iRly8geUnOGcpcr7LN/nLXNFDDBFzBV7SJPJit\r\nVxCQ9OYW+uQ4iwMzb66a+S737HZrh6CTntruCJWSUoD05YmLpoKouQzBMdAL\r\nAuYNRbErvK+BJ603LZoHr4QTYn6pkwu0eWesbAbaWmpotQN4ogOJfJrzwdMi\r\n48+oydBZatf4tQbwyejeZjXXMxHOVFFD3OsPWaxpmnAuV+wSkWMJfUv2TPIR\r\nyPvVRx/eRh+BgSFZBItMiTtg1D0m6y02d8NeHSDJnVdi/BbG7uUolz9f4/L6\r\nE3dacVuTXmJxjFtz8AypFkono/C/wzXhSFY5Pn+yZ9vMmC0udKFbEXVZwxuO\r\nbDLWJL0sVLQ7uen1vJG385KI4m+ldknGYgcv4LUbjCOGrVH9cYTSNSapn8J9\r\nw499AWOkE1Rwo6Hvfz9YKqXn3KXNpZGl5Lg=\r\n=PUUy\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"anonymous","email":"sheo13666q@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"sheo13666q@gmail.com"},{"name":"anonymous","email":"tobias.koppers@googlemail.com"},{"name":"anonymous","email":"mail@johannesewald.de"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-loader_4.2.0_1663889990464_0.8561974945609807"},"_hasShrinkwrap":false},"5.0.0":{"name":"html-loader","version":"5.0.0","description":"Html loader module for webpack","license":"MIT","repository":{"type":"git","url":"git+https://github.com/webpack-contrib/html-loader.git"},"author":{"name":"Tobias Koppers @sokra"},"homepage":"https://github.com/webpack-contrib/html-loader","bugs":{"url":"https://github.com/webpack-contrib/html-loader/issues"},"funding":{"type":"opencollective","url":"https://opencollective.com/webpack"},"main":"dist/cjs.js","engines":{"node":">= 18.12.0"},"scripts":{"start":"npm run build -- -w","clean":"del-cli dist","validate:runtime":"es-check es5 \"dist/runtime/**/*.js\"","prebuild":"npm run clean","build":"cross-env NODE_ENV=production babel src -d dist --copy-files","postbuild":"npm run validate:runtime","commitlint":"commitlint --from=master","security":"npm audit --production","lint:prettier":"prettier --cache --list-different .","lint:js":"eslint --cache .","lint:spelling":"cspell --cache --no-must-find-files --quiet \"**/*.*\"","lint":"npm-run-all -l -p \"lint:**\"","fix:js":"npm run lint:js -- --fix","fix:prettier":"npm run lint:prettier -- --write","fix":"npm-run-all -l fix:js fix:prettier","test:only":"cross-env NODE_ENV=test jest","test:watch":"npm run test:only -- --watch","test:coverage":"npm run test:only -- --coverage","pretest":"npm run lint","test":"npm run test:coverage","prepare":"husky install && npm run build","release":"standard-version"},"peerDependencies":{"webpack":"^5.0.0"},"dependencies":{"html-minifier-terser":"^7.2.0","parse5":"^7.1.2"},"devDependencies":{"@babel/cli":"^7.23.4","@babel/core":"^7.23.7","@babel/preset-env":"^7.23.8","@commitlint/cli":"^18.4.4","@commitlint/config-conventional":"^18.4.4","@webpack-contrib/eslint-config-webpack":"^3.0.0","babel-jest":"^29.7.0","cross-env":"^7.0.3","cspell":"^8.3.2","del":"^7.1.0","del-cli":"^5.1.0","es-check":"^7.1.1","eslint":"^8.56.0","eslint-config-prettier":"^9.1.0","eslint-plugin-import":"^2.29.1","handlebars":"^4.7.8","html-webpack-plugin":"^5.6.0","husky":"^8.0.3","jest":"^29.7.0","lint-staged":"^15.2.0","memfs":"^4.6.0","npm-run-all":"^4.1.5","posthtml":"^0.16.6","posthtml-webp":"^2.2.0","prettier":"^3.2.2","standard-version":"^9.5.0","unescape-unicode":"^0.2.0","webpack":"^5.89.0"},"keywords":["webpack","html","loader"],"_id":"html-loader@5.0.0","gitHead":"80ea21b22d8f04e461c08274076c292297f7c1ce","_nodeVersion":"18.19.0","_npmVersion":"10.2.3","dist":{"integrity":"sha512-puaGKdjdVVIFRtgIC2n5dt5bt0N5j6heXlAQZ4Do1MLjHmOT1gCE1Ogg7XZNeJlnOVHHsrZKGs5dfh+XwZ3XPw==","shasum":"2bb3ed423e9ea10f24add5d1a563adc5a8fc7f00","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-loader/-/html-loader-5.0.0.tgz","fileCount":12,"unpackedSize":72470,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDUaeZqKLQoPd3EXple0eb+BcRu8wMVp7j8PWc2z89d+AiEAwtXkBufFoo2mHzb3gMEeOQm7GZJVDdJdgUCK1C2e1ZE="}]},"_npmUser":{"name":"anonymous","email":"sheo13666q@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"sheo13666q@gmail.com"},{"name":"anonymous","email":"tobias.koppers@googlemail.com"},{"name":"anonymous","email":"mail@johannesewald.de"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-loader_5.0.0_1705420697473_0.18436179162008104"},"_hasShrinkwrap":false}},"name":"html-loader","time":{"modified":"2024-01-16T15:58:17.826Z","created":"2014-01-24T15:04:44.164Z","0.1.0":"2014-01-24T15:04:44.164Z","0.2.0":"2014-01-27T12:40:17.837Z","0.2.1":"2014-01-29T12:24:44.452Z","0.2.2":"2014-03-31T07:43:52.787Z","0.2.3":"2014-10-03T17:41:37.899Z","0.3.0":"2015-04-28T20:21:19.853Z","0.4.0":"2015-11-24T06:58:25.495Z","0.4.1":"2016-02-15T08:52:18.396Z","0.4.2":"2016-02-15T09:48:53.433Z","0.4.3":"2016-02-15T21:15:38.646Z","0.4.4":"2016-09-13T10:47:21.120Z","0.4.5":"2017-02-24T18:27:46.236Z","0.5.0":"2017-07-26T20:38:40.366Z","0.5.1":"2017-08-08T07:12:32.847Z","0.5.4":"2018-01-05T05:59:08.194Z","0.5.5":"2018-01-17T16:56:04.976Z","1.0.0-alpha.0":"2018-02-06T03:37:54.785Z","1.0.0":"2020-03-19T12:34:27.518Z","1.1.0":"2020-04-02T14:52:56.961Z","1.2.0":"2020-08-18T15:11:47.083Z","1.2.1":"2020-08-19T13:42:07.183Z","1.3.0":"2020-08-25T17:27:28.291Z","1.3.1":"2020-09-21T14:02:09.415Z","1.3.2":"2020-10-09T16:54:50.251Z","2.0.0":"2021-02-14T15:11:54.888Z","2.1.0":"2021-02-20T16:38:01.047Z","2.1.1":"2021-02-24T17:09:51.871Z","2.1.2":"2021-03-09T15:13:05.223Z","3.0.0":"2021-10-21T15:49:11.175Z","3.0.1":"2021-11-02T15:04:19.751Z","3.1.0":"2022-01-08T15:29:11.426Z","3.1.1":"2022-06-15T19:50:00.675Z","4.0.0":"2022-06-15T19:51:04.695Z","3.1.2":"2022-06-15T19:52:57.060Z","4.1.0":"2022-07-11T17:27:36.287Z","4.2.0":"2022-09-22T23:39:50.658Z","5.0.0":"2024-01-16T15:58:17.648Z"},"readmeFilename":"README.md","homepage":"https://github.com/webpack-contrib/html-loader"}