{"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},{"name":"jantimon","email":"j.nicklas@me.com"},{"name":"mastilver","email":"th.sileghem@gmail.com"}],"keywords":["webpack","plugin","html","html-webpack-plugin"],"dist-tags":{"latest":"2.30.1","beta":"2.6.5"},"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"description":"Simplifies creation of HTML files to serve your webpack bundles","readme":"HTML Webpack Plugin\n===================\n[![npm version](https://badge.fury.io/js/html-webpack-plugin.svg)](http://badge.fury.io/js/html-webpack-plugin) [![Dependency Status](https://david-dm.org/jantimon/html-webpack-plugin.svg)](https://david-dm.org/jantimon/html-webpack-plugin) [![Build status](https://travis-ci.org/jantimon/html-webpack-plugin.svg)](https://travis-ci.org/jantimon/html-webpack-plugin) [![Windows build status](https://ci.appveyor.com/api/projects/status/github/jantimon/html-webpack-plugin?svg=true&branch=master)](https://ci.appveyor.com/project/jantimon/html-webpack-plugin) [![js-semistandard-style](https://img.shields.io/badge/code%20style-semistandard-brightgreen.svg?style=flat-square)](https://github.com/Flet/semistandard) [![bitHound Dependencies](https://www.bithound.io/github/jantimon/html-webpack-plugin/badges/dependencies.svg)](https://www.bithound.io/github/jantimon/html-webpack-plugin/master/dependencies/npm) [![license](https://img.shields.io/github/license/mashape/apistatus.svg?maxAge=2592000)]()\n\n[![NPM](https://nodei.co/npm/html-webpack-plugin.png?downloads=true&downloadRank=true&stars=true)](https://nodei.co/npm/html-webpack-plugin/)\n\nThis is a [webpack](http://webpack.github.io/) plugin that simplifies creation of HTML files to serve your\nwebpack bundles. This is especially useful for webpack bundles that include\na hash in the filename which changes every compilation. You can either let the plugin generate an HTML file for you, supply\nyour own template using lodash templates or use your own loader.\n\nMaintainer: Jan Nicklas [@jantimon](https://twitter.com/jantimon) and Thomas Sileghem [@mastilver](https://twitter.com/mastilver)\n\nInstallation\n------------\nInstall the plugin with npm:\n```shell\n$ npm install html-webpack-plugin --save-dev\n```\n\nThird party addons:\n-------------\n\nThe html-webpack-plugin provides [hooks](https://github.com/jantimon/html-webpack-plugin#events) to extend it to your needs.\nThere are already some really powerful plugins which can be integrated with zero configuration:\n\n * [webpack-subresource-integrity](https://www.npmjs.com/package/webpack-subresource-integrity) for enhanced asset security\n * [appcache-webpack-plugin](https://github.com/lettertwo/appcache-webpack-plugin) for iOS and Android offline usage\n * [favicons-webpack-plugin](https://github.com/jantimon/favicons-webpack-plugin) which generates favicons and icons for iOS, Android and desktop browsers\n * [html-webpack-harddisk-plugin](https://github.com/jantimon/html-webpack-harddisk-plugin) can be used to always write to disk the html file, useful when webpack-dev-server / HMR are being used\n * [html-webpack-inline-source-plugin](https://github.com/DustinJackson/html-webpack-inline-source-plugin) to inline your assets in the resulting HTML file\n * [html-webpack-exclude-assets-plugin](https://github.com/jamesjieye/html-webpack-exclude-assets-plugin) for excluding assets using regular expressions\n * [html-webpack-include-assets-plugin](https://github.com/jharris4/html-webpack-include-assets-plugin) for including lists of js or css file paths (such as those copied by the copy-webpack-plugin).\n * [script-ext-html-webpack-plugin](https://github.com/numical/script-ext-html-webpack-plugin) to add `async`, `defer` or `module` attributes to your`<script>` elements, or even in-line them\n * [style-ext-html-webpack-plugin](https://github.com/numical/style-ext-html-webpack-plugin) to convert your `<link>`s to external stylesheets into `<style>` elements containing internal CSS\n * [resource-hints-webpack-plugin](https://github.com/jantimon/resource-hints-webpack-plugin) to add resource hints for faster initial page loads using `<link rel='preload'>` and `<link rel='prefetch'>`\n * [preload-webpack-plugin](https://github.com/GoogleChrome/preload-webpack-plugin) for automatically wiring up asynchronous (and other types) of JavaScript chunks using `<link rel='preload'>` helping with lazy-loading\n * [link-media-html-webpack-plugin](https://github.com/yaycmyk/link-media-html-webpack-plugin) allows for injected stylesheet `<link />` tags to have their media attribute set automatically; useful for providing specific desktop/mobile/print etc. stylesheets that the browser will conditionally download\n * [inline-chunk-manifest-html-webpack-plugin](https://github.com/jouni-kantola/inline-chunk-manifest-html-webpack-plugin) for inlining webpack's chunk manifest. Default extracts manifest and inlines in `<head>`.\n\nBasic Usage\n-----------\n\nThe plugin will generate an HTML5 file for you that includes all your webpack\nbundles in the body using `script` tags. Just add the plugin to your webpack\nconfig as follows:\n\n```javascript\nvar HtmlWebpackPlugin = require('html-webpack-plugin');\nvar webpackConfig = {\n  entry: 'index.js',\n  output: {\n    path: __dirname + '/dist',\n    filename: 'index_bundle.js'\n  },\n  plugins: [new HtmlWebpackPlugin()]\n};\n```\n\nThis will generate a file `dist/index.html` containing the following:\n```html\n<!DOCTYPE html>\n<html>\n  <head>\n    <meta charset=\"UTF-8\">\n    <title>Webpack App</title>\n  </head>\n  <body>\n    <script src=\"index_bundle.js\"></script>\n  </body>\n</html>\n```\n\nIf you have multiple webpack entry points, they will all be included with `script`\ntags in the generated HTML.\n\nIf you have any CSS assets in webpack's output (for example, CSS extracted\nwith the [ExtractTextPlugin](https://github.com/webpack/extract-text-webpack-plugin))\nthen these will be included with `<link>` tags in the HTML head.\n\nConfiguration\n-------------\nYou can pass a hash of configuration options to `HtmlWebpackPlugin`.\nAllowed values are as follows:\n\n- `title`: The title to use for the generated HTML document.\n- `filename`: The file to write the HTML to. Defaults to `index.html`.\n   You can specify a subdirectory here too (eg: `assets/admin.html`).\n- `template`: Webpack require path to the template. Please see the [docs](https://github.com/jantimon/html-webpack-plugin/blob/master/docs/template-option.md) for details.\n- `inject`: `true | 'head' | 'body' | false` Inject all assets into the given `template` or `templateContent` - When passing `true` or `'body'` all javascript resources will be placed at the bottom of the body element. `'head'` will place the scripts in the head element.\n- `favicon`: Adds the given favicon path to the output html.\n- `minify`: `{...} | false` Pass [html-minifier](https://github.com/kangax/html-minifier#options-quick-reference)'s options as object to minify the output.\n- `hash`: `true | false` if `true` then append a unique webpack compilation hash to all\n  included scripts and CSS files. This is useful for cache busting.\n- `cache`: `true | false` if `true` (default) try to emit the file only if it was changed.\n- `showErrors`: `true | false` if `true` (default) errors details will be written into the HTML page.\n- `chunks`: Allows you to add only some chunks (e.g. only the unit-test chunk)\n- `chunksSortMode`: Allows to control how chunks should be sorted before they are included to the html. Allowed values: 'none' | 'auto' | 'dependency' |'manual' | {function} - default: 'auto'\n- `excludeChunks`: Allows you to skip some chunks (e.g. don't add the unit-test chunk)\n- `xhtml`: `true | false` If `true` render the `link` tags as self-closing, XHTML compliant. Default is `false`\n\nHere's an example webpack config illustrating how to use these options:\n```javascript\n{\n  entry: 'index.js',\n  output: {\n    path: __dirname + '/dist',\n    filename: 'index_bundle.js'\n  },\n  plugins: [\n    new HtmlWebpackPlugin({\n      title: 'My App',\n      filename: 'assets/admin.html'\n    })\n  ]\n}\n```\n\nFAQ\n----\n\n* [Why is my HTML minified?](https://github.com/jantimon/html-webpack-plugin/blob/master/docs/template-option.md)\n* [Why is my `<% ... %>` template not working?](https://github.com/jantimon/html-webpack-plugin/blob/master/docs/template-option.md)\n* [How can I use handlebars/pug/ejs as template engine](https://github.com/jantimon/html-webpack-plugin/blob/master/docs/template-option.md)\n\nGenerating Multiple HTML Files\n------------------------------\nTo generate more than one HTML file, declare the plugin more than\nonce in your plugins array:\n```javascript\n{\n  entry: 'index.js',\n  output: {\n    path: __dirname + '/dist',\n    filename: 'index_bundle.js'\n  },\n  plugins: [\n    new HtmlWebpackPlugin(), // Generates default index.html\n    new HtmlWebpackPlugin({  // Also generate a test.html\n      filename: 'test.html',\n      template: 'src/assets/test.html'\n    })\n  ]\n}\n```\n\nWriting Your Own Templates\n--------------------------\nIf the default generated HTML doesn't meet your needs you can supply\nyour own template. The easiest way is to use the `template` option and pass a custom HTML file.\nThe html-webpack-plugin will automatically inject all necessary CSS, JS, manifest\nand favicon files into the markup.\n\n```javascript\nplugins: [\n  new HtmlWebpackPlugin({\n    title: 'Custom template',\n    template: 'my-index.ejs', // Load a custom template (ejs by default see the FAQ for details)\n  })\n]\n```\n\n`my-index.ejs`:\n\n```html\n<!DOCTYPE html>\n<html>\n  <head>\n    <meta http-equiv=\"Content-type\" content=\"text/html; charset=utf-8\"/>\n    <title><%= htmlWebpackPlugin.options.title %></title>\n  </head>\n  <body>\n  </body>\n</html>\n```\n\nIf you already have a template loader, you can use it to parse the template.\nPlease note that this will also happen if you specifiy the html-loader and use `.html` file as template.\n\n```javascript\nmodule: {\n  loaders: [\n    { test: /\\.hbs$/, loader: \"handlebars\" }\n  ]\n},\nplugins: [\n  new HtmlWebpackPlugin({\n    title: 'Custom template using Handlebars',\n    template: 'my-index.hbs'\n  })\n]\n```\n\nYou can use the lodash syntax out of the box.\nIf the `inject` feature doesn't fit your needs and you want full control over the asset placement use the [default template](https://github.com/jaketrent/html-webpack-template/blob/86f285d5c790a6c15263f5cc50fd666d51f974fd/index.html) of the [html-webpack-template project](https://github.com/jaketrent/html-webpack-template) as a starting point for writing your own.\n\nThe following variables are available in the template:\n- `htmlWebpackPlugin`: data specific to this plugin\n  - `htmlWebpackPlugin.files`: a massaged representation of the\n    `assetsByChunkName` attribute of webpack's [stats](https://github.com/webpack/docs/wiki/node.js-api#stats)\n    object. It contains a mapping from entry point name to the bundle filename, eg:\n    ```json\n    \"htmlWebpackPlugin\": {\n      \"files\": {\n        \"css\": [ \"main.css\" ],\n        \"js\": [ \"assets/head_bundle.js\", \"assets/main_bundle.js\"],\n        \"chunks\": {\n          \"head\": {\n            \"entry\": \"assets/head_bundle.js\",\n            \"css\": [ \"main.css\" ]\n          },\n          \"main\": {\n            \"entry\": \"assets/main_bundle.js\",\n            \"css\": []\n          },\n        }\n      }\n    }\n    ```\n    If you've set a publicPath in your webpack config this will be reflected\n    correctly in this assets hash.\n\n  - `htmlWebpackPlugin.options`: the options hash that was passed to\n     the plugin. In addition to the options actually used by this plugin,\n     you can use this hash to pass arbitrary data through to your template.\n\n- `webpack`: the webpack [stats](https://github.com/webpack/docs/wiki/node.js-api#stats)\n  object. Note that this is the stats object as it was at the time the HTML template\n  was emitted and as such may not have the full set of stats that are available\n  after the webpack run is complete.\n\n- `webpackConfig`: the webpack configuration that was used for this compilation. This\n  can be used, for example, to get the `publicPath` (`webpackConfig.output.publicPath`).\n\n\nFiltering chunks\n----------------\n\nTo include only certain chunks you can limit the chunks being used:\n\n```javascript\nplugins: [\n  new HtmlWebpackPlugin({\n    chunks: ['app']\n  })\n]\n```\n\nIt is also possible to exclude certain chunks by setting the `excludeChunks` option:\n\n```javascript\nplugins: [\n  new HtmlWebpackPlugin({\n    excludeChunks: ['dev-helper']\n  })\n]\n```\n\nEvents\n------\n\nTo allow other [plugins](https://github.com/webpack/docs/wiki/plugins) to alter the HTML this plugin executes the following events:\n\nAsync:\n\n * `html-webpack-plugin-before-html-generation`\n * `html-webpack-plugin-before-html-processing`\n * `html-webpack-plugin-alter-asset-tags`\n * `html-webpack-plugin-after-html-processing`\n * `html-webpack-plugin-after-emit`\n\nSync:\n\n * `html-webpack-plugin-alter-chunks`\n\nExample implementation: [html-webpack-harddisk-plugin](https://github.com/jantimon/html-webpack-harddisk-plugin)\n\nUsage:\n\n```javascript\n// MyPlugin.js\n\nfunction MyPlugin(options) {\n  // Configure your plugin with options...\n}\n\nMyPlugin.prototype.apply = function(compiler) {\n  // ...\n  compiler.plugin('compilation', function(compilation) {\n    console.log('The compiler is starting a new compilation...');\n\n    compilation.plugin('html-webpack-plugin-before-html-processing', function(htmlPluginData, callback) {\n      htmlPluginData.html += 'The magic footer';\n      callback(null, htmlPluginData);\n    });\n  });\n\n};\n\nmodule.exports = MyPlugin;\n```\nThen in `webpack.config.js`\n\n```javascript\nplugins: [\n  new MyPlugin({options: ''})\n]\n```\n\nNote that the callback must be passed the htmlPluginData in order to pass this onto any other plugins listening on the same `html-webpack-plugin-before-html-processing` event.\n\n\n# Contribution\n\nYou're free to contribute to this project by submitting [issues](https://github.com/jantimon/html-webpack-plugin/issues) and/or [pull requests](https://github.com/jantimon/html-webpack-plugin/pulls). This project is test-driven, so keep in mind that every change and new feature should be covered by tests.\nThis project uses the [semistandard code style](https://github.com/Flet/semistandard).\n\nBefore running the tests, make sure to execute `yarn link` and `yarn link html-webpack-plugin` (or the npm variant of this).\n\n# License\n\nThis project is licensed under [MIT](https://github.com/jantimon/html-webpack-plugin/blob/master/LICENSE).\n","repository":{"type":"git","url":"git+https://github.com/jantimon/html-webpack-plugin.git"},"users":{"326060588":true,"550843110":true,"1424778602":true,"ampedandwired":true,"efvincent":true,"itonyyo":true,"fkamani":true,"hromadadan":true,"phillipkerman":true,"nice_body":true,"philipjc":true,"lluvio":true,"xiechao06":true,"ridermansb":true,"samar":true,"vbv":true,"corintho":true,"alexbaumgertner":true,"ziliwesley":true,"nckcol":true,"orlenka":true,"crafterm":true,"yhui02":true,"flynntsc":true,"abhisekp":true,"foto":true,"xgheaven":true,"sternelee":true,"jason-g":true,"cfleschhut":true,"resistdesign":true,"mingzepeng":true,"sammyteahan":true,"qqcome110":true,"dhampik":true,"cody1991":true,"sysutangzxcody":true,"imbaranov":true,"bapinney":true,"ckober":true,"linjianhang":true,"stone_breaker":true,"styxnp":true,"mars009":true,"wkaifang":true,"jasonwang1888":true,"guidoschmidt":true,"caesor":true,"tedyhy":true,"sherylhohman":true,"yanlaichang":true,"ackhub":true,"shawndsouza":true,"heineiuo":true,"lianhr12":true,"hckhanh":true,"bushuai":true,"fadihania":true,"jmsmrgn":true,"ghostcode521":true,"enuobear":true,"gejiawen":true,"xiaochao":true,"jruif":true,"gabrielschlomo":true,"tmurngon":true,"guoer":true,"cbetancourt":true,"yinyongcom666":true,"tonyljl526":true,"knoja4":true,"langri-sha":true,"klimnikita":true,"panos277":true,"sunny_anna":true,"stone-jin":true,"holly":true,"johncido":true,"nanxing":true,"laggingreflex":true,"birowsky":true,"weerd":true,"appsparkler":true,"drewigg":true,"xeho91":true,"princetoad":true,"coolhanddev":true,"isenricho":true,"brandonb927":true,"highlanderkev":true,"evdokimovm":true,"theaklair":true,"gskll":true,"isa424":true,"panlw":true,"juandaco":true,"podlebar":true,"ivan.marquez":true,"chaoliu":true,"marlongrape":true,"nketchum":true,"hyteer":true,"pavelusov":true,"serge-nikitin":true,"ritsu":true,"yong_a":true,"zlatip":true,"jimco":true,"shuoshubao":true,"demerfo":true,"josokinas":true,"jacks":true,"zvit":true,"soulchainer":true,"rokeyzki":true,"deryck":true,"lore-w":true,"xrush":true,"fabioper":true,"shoonia":true,"rbultitude":true,"mobeicaoyuan":true,"andysw":true,"nickolas_sv":true,"bigbird92":true,"buzzpsych":true,"duooduo":true,"sameersemna":true,"chiroc":true,"sean-oneal":true,"yayayahei":true,"stephencorwin":true,"luoanyang":true,"albertico88":true,"thevikingcoder":true,"abhijitkalta":true,"httpwww.npmjs.comwulin":true,"~arnold":true,"chenphoenix":true,"tingzisuk":true,"liming8077":true,"lzzdsg":true,"wenrui2017":true,"15110385721":true,"ywt875892894":true,"techfe":true,"paulkolesnyk":true},"bugs":{"url":"https://github.com/jantimon/html-webpack-plugin/issues"},"license":"MIT","versions":{"0.1.0":{"name":"html-webpack-plugin","version":"0.1.0","description":"Generates HTML files to serve your webpack bundles","main":"index.js","scripts":{"test":"jshint *.js spec && node_modules/.bin/jasmine-node --captureExceptions spec"},"repository":{"type":"git","url":"https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","generate"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","devDependencies":{"jasmine-node":"^1.14.5","jshint":"^2.5.2","rimraf":"^2.2.8","webpack":"^1.3.3-beta1"},"dependencies":{"blueimp-tmpl":"~2.5.4"},"gitHead":"07c60a5ae1c1dcc0d801c1b17b780741673211db","_id":"html-webpack-plugin@0.1.0","_shasum":"c7a0d4e16b0adc7db3c9e602c85ac38613071c11","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"}],"dist":{"shasum":"c7a0d4e16b0adc7db3c9e602c85ac38613071c11","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-0.1.0.tgz"},"directories":{}},"0.2.0":{"name":"html-webpack-plugin","version":"0.2.0","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","scripts":{"test":"jshint *.js spec && node_modules/.bin/jasmine-node --captureExceptions spec"},"repository":{"type":"git","url":"https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","generate"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","devDependencies":{"jasmine-node":"^1.14.5","jshint":"^2.5.2","rimraf":"^2.2.8","webpack":"^1.3.3-beta1"},"dependencies":{"blueimp-tmpl":"~2.5.4"},"gitHead":"4ea98940589fcb88f279669223fab78f44e8b429","_id":"html-webpack-plugin@0.2.0","_shasum":"e6fd11b72200a87041cdf74c04fee9cb34ad1d53","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"}],"dist":{"shasum":"e6fd11b72200a87041cdf74c04fee9cb34ad1d53","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-0.2.0.tgz"},"directories":{}},"0.4.0":{"name":"html-webpack-plugin","version":"0.4.0","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","scripts":{"test":"jshint *.js spec && node_modules/.bin/jasmine-node --captureExceptions spec"},"repository":{"type":"git","url":"https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","generate"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","devDependencies":{"jasmine-node":"^1.14.5","jshint":"^2.5.2","rimraf":"^2.2.8","webpack":"^1.3.3-beta1"},"dependencies":{"blueimp-tmpl":"~2.5.4"},"gitHead":"34267233b0c00b73f9c81757ed17bd7969ce10a9","_id":"html-webpack-plugin@0.4.0","_shasum":"7da0d25031f11771b4c69bcc70e092a2f5859fe2","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"}],"dist":{"shasum":"7da0d25031f11771b4c69bcc70e092a2f5859fe2","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-0.4.0.tgz"},"directories":{}},"1.0.0":{"name":"html-webpack-plugin","version":"1.0.0","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","scripts":{"test":"jshint *.js spec && node_modules/.bin/jasmine-node --captureExceptions spec"},"repository":{"type":"git","url":"https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","generate"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","devDependencies":{"jasmine-node":"^1.14.5","jshint":"^2.5.2","rimraf":"^2.2.8","webpack":"^1.3.3-beta1"},"dependencies":{"blueimp-tmpl":"~2.5.4"},"gitHead":"36bf69f1a780f578f695988457589f968f38536c","_id":"html-webpack-plugin@1.0.0","_shasum":"e3cf894261519dae4831a023ba0cdcaff52ee46c","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"}],"dist":{"shasum":"e3cf894261519dae4831a023ba0cdcaff52ee46c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-1.0.0.tgz"},"directories":{}},"1.0.1":{"name":"html-webpack-plugin","version":"1.0.1","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","scripts":{"test":"jshint *.js spec && node_modules/.bin/jasmine-node --captureExceptions spec"},"repository":{"type":"git","url":"https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","generate"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","devDependencies":{"jasmine-node":"^1.14.5","jshint":"^2.5.2","rimraf":"^2.2.8","webpack":"^1.3.3-beta1"},"dependencies":{"blueimp-tmpl":"~2.5.4"},"gitHead":"0394b7845a48f1d0ea2b7dfd1eaee50d9e884084","_id":"html-webpack-plugin@1.0.1","_shasum":"44d7bcb6ad36b73e957e2c43a009e5d7318be7bf","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"}],"dist":{"shasum":"44d7bcb6ad36b73e957e2c43a009e5d7318be7bf","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-1.0.1.tgz"},"directories":{}},"1.1.0":{"name":"html-webpack-plugin","version":"1.1.0","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","scripts":{"test":"jshint *.js spec && node_modules/.bin/jasmine-node --captureExceptions spec"},"repository":{"type":"git","url":"https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","generate"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","devDependencies":{"jasmine-node":"^1.14.5","jshint":"^2.5.2","rimraf":"^2.2.8","webpack":"^1.3.3-beta1"},"dependencies":{"blueimp-tmpl":"~2.5.4"},"gitHead":"209a1d1c5936013ff34df56e7cab8d4c0a4f6770","_id":"html-webpack-plugin@1.1.0","_shasum":"b2936fb3e7065490d034553d6e40990d03a282ed","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"}],"dist":{"shasum":"b2936fb3e7065490d034553d6e40990d03a282ed","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-1.1.0.tgz"},"directories":{}},"1.2.0":{"name":"html-webpack-plugin","version":"1.2.0","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","scripts":{"test":"jshint -c .jshintrc *.js spec && jasmine-node --captureExceptions spec"},"repository":{"type":"git","url":"https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","generate"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","devDependencies":{"jasmine-node":"^1.14.5","jshint":"^2.5.2","rimraf":"^2.2.8","webpack":"^1.3.3-beta1"},"dependencies":{"blueimp-tmpl":"~2.5.4","lodash":"~3.6.0"},"gitHead":"965468a71fc6404368264f46df6afd289aeb4ed3","_id":"html-webpack-plugin@1.2.0","_shasum":"5a720d2ce148c9df3dc0dd1dd0bf6af7d18f7767","_from":".","_npmVersion":"2.1.18","_nodeVersion":"0.10.35","_npmUser":{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},"dist":{"shasum":"5a720d2ce148c9df3dc0dd1dd0bf6af7d18f7767","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-1.2.0.tgz"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"}],"directories":{}},"1.3.0":{"name":"html-webpack-plugin","version":"1.3.0","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","scripts":{"test":"jshint -c .jshintrc *.js spec && jasmine-node --captureExceptions spec"},"repository":{"type":"git","url":"https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","generate"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","devDependencies":{"jasmine-node":"^1.14.5","jshint":"^2.5.2","rimraf":"^2.2.8","webpack":"^1.3.3-beta1"},"dependencies":{"blueimp-tmpl":"~2.5.4","lodash":"~3.6.0"},"gitHead":"de1161381c9f12816b234cc030bfac59a0e49a87","_id":"html-webpack-plugin@1.3.0","_shasum":"83e5fab970667938f3fdb28019c82e82f2a0febf","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"}],"dist":{"shasum":"83e5fab970667938f3fdb28019c82e82f2a0febf","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-1.3.0.tgz"},"directories":{}},"1.4.0":{"name":"html-webpack-plugin","version":"1.4.0","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","default_index.html","default_inject_index.html"],"scripts":{"test":"jshint -c .jshintrc *.js spec && jasmine-node --captureExceptions spec"},"repository":{"type":"git","url":"https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","generate"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","devDependencies":{"css-loader":"^0.12.0","extract-text-webpack-plugin":"^0.7.1","file-loader":"^0.8.1","jasmine-node":"^1.14.5","jshint":"^2.7.0","rimraf":"^2.3.3","style-loader":"^0.12.2","url-loader":"^0.5.5","webpack":"^1.8.11"},"dependencies":{"bluebird":"^2.9.25","blueimp-tmpl":"~2.5.4","html-minifier":"^0.7.2","lodash":"~3.8.0"},"gitHead":"c679de975b160e15d284a7a358d2fe387fda2d03","_id":"html-webpack-plugin@1.4.0","_shasum":"e36db370f6cee78365d744694a18ac44824732e7","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"}],"dist":{"shasum":"e36db370f6cee78365d744694a18ac44824732e7","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-1.4.0.tgz"},"directories":{}},"1.5.0":{"name":"html-webpack-plugin","version":"1.5.0","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","default_index.html","default_inject_index.html"],"scripts":{"pretest":"jshint *.js spec","test":"jasmine-node --captureExceptions spec"},"repository":{"type":"git","url":"https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","generate"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","devDependencies":{"css-loader":"^0.12.0","extract-text-webpack-plugin":"^0.7.1","file-loader":"^0.8.1","jasmine-node":"^1.14.5","jshint":"^2.7.0","rimraf":"^2.3.3","style-loader":"^0.12.2","url-loader":"^0.5.5","webpack":"^1.8.11"},"dependencies":{"bluebird":"^2.9.25","blueimp-tmpl":"~2.5.4","html-minifier":"^0.7.2","lodash":"~3.8.0"},"gitHead":"73a61a94e977f158b3bc5c59fa3e8b92b0b42299","_id":"html-webpack-plugin@1.5.0","_shasum":"1b5d640ce48e804ab2a3aa6536cc4b99b850bf31","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"}],"dist":{"shasum":"1b5d640ce48e804ab2a3aa6536cc4b99b850bf31","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-1.5.0.tgz"},"directories":{}},"1.5.1":{"name":"html-webpack-plugin","version":"1.5.1","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","default_index.html","default_inject_index.html"],"scripts":{"pretest":"jshint *.js spec","test":"jasmine-node --captureExceptions spec"},"repository":{"type":"git","url":"git+https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","generate"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","devDependencies":{"css-loader":"^0.12.0","extract-text-webpack-plugin":"^0.7.1","file-loader":"^0.8.1","jasmine-node":"^1.14.5","jshint":"^2.7.0","rimraf":"^2.3.3","style-loader":"^0.12.2","url-loader":"^0.5.5","webpack":"^1.8.11"},"dependencies":{"bluebird":"^2.9.25","blueimp-tmpl":"~2.5.4","html-minifier":"^0.7.2","lodash":"~3.8.0"},"gitHead":"284067cc1d2eb8901d9debb641e6983fe7ae26d8","_id":"html-webpack-plugin@1.5.1","_shasum":"d1666886864e8396d0da101b5e4af679a83cec44","_from":".","_npmVersion":"2.9.0","_nodeVersion":"0.10.24","_npmUser":{"name":"jantimon","email":"j.nicklas@me.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},{"name":"jantimon","email":"j.nicklas@me.com"}],"dist":{"shasum":"d1666886864e8396d0da101b5e4af679a83cec44","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-1.5.1.tgz"},"directories":{}},"1.5.2":{"name":"html-webpack-plugin","version":"1.5.2","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","default_index.html","default_inject_index.html"],"scripts":{"pretest":"jshint *.js spec","test":"jasmine-node --captureExceptions spec"},"repository":{"type":"git","url":"git+https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","generate"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","devDependencies":{"css-loader":"^0.12.0","extract-text-webpack-plugin":"^0.7.1","file-loader":"^0.8.1","jasmine-node":"^1.14.5","jshint":"^2.7.0","rimraf":"^2.3.3","style-loader":"^0.12.2","url-loader":"^0.5.5","webpack":"^1.8.11"},"dependencies":{"bluebird":"^2.9.25","blueimp-tmpl":"~2.5.4","html-minifier":"^0.7.2","lodash":"~3.9.3"},"gitHead":"1f5b357159442d9b3404ca9a360f5647b96163c9","_id":"html-webpack-plugin@1.5.2","_shasum":"a6f0af9e1474384fa308922f82ea6e39b5a02de0","_from":".","_npmVersion":"2.9.0","_nodeVersion":"0.10.24","_npmUser":{"name":"jantimon","email":"j.nicklas@me.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},{"name":"jantimon","email":"j.nicklas@me.com"}],"dist":{"shasum":"a6f0af9e1474384fa308922f82ea6e39b5a02de0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-1.5.2.tgz"},"directories":{}},"1.6.0":{"name":"html-webpack-plugin","version":"1.6.0","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","default_index.html","default_inject_index.html"],"scripts":{"pretest":"jshint *.js spec","test":"jasmine-node --captureExceptions spec"},"repository":{"type":"git","url":"https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","generate"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","devDependencies":{"css-loader":"^0.12.0","extract-text-webpack-plugin":"^0.7.1","file-loader":"^0.8.1","jasmine-node":"^1.14.5","jshint":"^2.7.0","rimraf":"^2.3.3","style-loader":"^0.12.2","url-loader":"^0.5.5","webpack":"^1.8.11"},"dependencies":{"bluebird":"^2.9.25","blueimp-tmpl":"~2.5.4","html-minifier":"^0.7.2","lodash":"~3.9.3"},"gitHead":"0da9745dd52a696e1319aa572d01534b9795039e","_id":"html-webpack-plugin@1.6.0","_shasum":"f42b98fc91e4132127ef8d17f8965a9a9e8665b8","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.10.24","_npmUser":{"name":"jantimon","email":"j.nicklas@me.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},{"name":"jantimon","email":"j.nicklas@me.com"}],"dist":{"shasum":"f42b98fc91e4132127ef8d17f8965a9a9e8665b8","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-1.6.0.tgz"},"directories":{}},"1.6.1":{"name":"html-webpack-plugin","version":"1.6.1","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","default_index.html","default_inject_index.html"],"scripts":{"pretest":"jshint *.js spec","test":"jasmine-node --captureExceptions spec"},"repository":{"type":"git","url":"https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","generate"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","devDependencies":{"css-loader":"^0.15.4","extract-text-webpack-plugin":"^0.8.2","file-loader":"^0.8.4","jasmine-node":"^2.0.0","jshint":"^2.8.0","rimraf":"^2.4.1","style-loader":"^0.12.3","url-loader":"^0.5.6","webpack":"^1.10.1"},"dependencies":{"bluebird":"^2.9.34","blueimp-tmpl":"^2.5.4","html-minifier":"^0.7.2","lodash":"^3.10.0"},"gitHead":"c5d1a8e36e3af8ce4b4d864a0fd5137c3046656d","_id":"html-webpack-plugin@1.6.1","_shasum":"084936980c41b919f86748febb28a0ad39773f9a","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.10.24","_npmUser":{"name":"jantimon","email":"j.nicklas@me.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},{"name":"jantimon","email":"j.nicklas@me.com"}],"dist":{"shasum":"084936980c41b919f86748febb28a0ad39773f9a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-1.6.1.tgz"},"directories":{}},"2.0.2":{"name":"html-webpack-plugin","version":"2.0.2","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","loader.js","default_index.html","default_inject_index.html"],"scripts":{"pretest":"jshint *.js spec","test":"jasmine-node --captureExceptions spec"},"repository":{"type":"git","url":"git+https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","generate"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","devDependencies":{"appcache-webpack-plugin":"^0.2.0","css-loader":"^0.15.4","extract-text-webpack-plugin":"^0.8.2","file-loader":"^0.8.4","html-loader":"^0.3.0","jade-loader":"^0.7.1","jasmine-node":"^1.14.5","jshint":"^2.8.0","rimraf":"^2.4.1","style-loader":"^0.12.3","underscore-template-loader":"^0.5.1","url-loader":"^0.5.6","webpack":"^1.10.1"},"dependencies":{"loader-utils":"^0.2.10","syntax-error":"^1.1.4","bluebird":"^2.9.34","html-minifier":"^0.7.2","lodash":"^3.10.0"},"gitHead":"2dbf2222bd6222341b71b9651644964f827ecead","_id":"html-webpack-plugin@2.0.2","_shasum":"a1f832d3a1975ed4fc52863820920d933bad8920","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"jantimon","email":"j.nicklas@me.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},{"name":"jantimon","email":"j.nicklas@me.com"}],"dist":{"shasum":"a1f832d3a1975ed4fc52863820920d933bad8920","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-2.0.2.tgz"},"directories":{}},"2.0.3":{"name":"html-webpack-plugin","version":"2.0.3","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","loader.js","default_index.html","default_inject_index.html"],"scripts":{"pretest":"jshint *.js spec","test":"jasmine-node --captureExceptions spec"},"repository":{"type":"git","url":"git+https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","generate"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","devDependencies":{"appcache-webpack-plugin":"^0.2.0","css-loader":"^0.15.4","extract-text-webpack-plugin":"^0.8.2","file-loader":"^0.8.4","html-loader":"^0.3.0","jade-loader":"^0.7.1","jasmine-node":"^1.14.5","jshint":"^2.8.0","rimraf":"^2.4.1","style-loader":"^0.12.3","underscore-template-loader":"^0.5.1","url-loader":"^0.5.6","webpack":"^1.10.1"},"dependencies":{"loader-utils":"^0.2.10","syntax-error":"^1.1.4","bluebird":"^2.9.34","html-minifier":"^0.7.2","lodash":"^3.10.0"},"gitHead":"eed82ed8866b81344f6d8a47bf641e73a490be4b","_id":"html-webpack-plugin@2.0.3","_shasum":"32a63d0cfeb2f919a75f31490a45d0db8827a2a8","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"jantimon","email":"j.nicklas@me.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},{"name":"jantimon","email":"j.nicklas@me.com"}],"dist":{"shasum":"32a63d0cfeb2f919a75f31490a45d0db8827a2a8","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-2.0.3.tgz"},"directories":{}},"2.0.4":{"name":"html-webpack-plugin","version":"2.0.4","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","loader.js","default_index.html","default_inject_index.html"],"scripts":{"pretest":"jshint *.js spec","test":"jasmine-node --captureExceptions spec"},"repository":{"type":"git","url":"git+https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","generate"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","devDependencies":{"appcache-webpack-plugin":"^0.2.0","css-loader":"^0.15.4","extract-text-webpack-plugin":"^0.8.2","file-loader":"^0.8.4","html-loader":"^0.3.0","jade-loader":"^0.7.1","jasmine-node":"^1.14.5","jshint":"^2.8.0","rimraf":"^2.4.1","style-loader":"^0.12.3","underscore-template-loader":"^0.5.1","url-loader":"^0.5.6","webpack":"^1.10.1"},"dependencies":{"loader-utils":"^0.2.10","syntax-error":"^1.1.4","bluebird":"^2.9.34","html-minifier":"^0.7.2","lodash":"^3.10.0"},"gitHead":"274ffbd56f176f30a4777e0ceb0e71d476288b32","_id":"html-webpack-plugin@2.0.4","_shasum":"ad94c6a1c12c95264b81afc16e6fe2d354925852","_from":".","_npmVersion":"2.11.1","_nodeVersion":"0.10.22","_npmUser":{"name":"jantimon","email":"j.nicklas@me.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},{"name":"jantimon","email":"j.nicklas@me.com"}],"dist":{"shasum":"ad94c6a1c12c95264b81afc16e6fe2d354925852","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-2.0.4.tgz"},"directories":{}},"1.6.2":{"name":"html-webpack-plugin","version":"1.6.2","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","default_index.html","default_inject_index.html"],"scripts":{"pretest":"jshint *.js spec","test":"jasmine-node --captureExceptions spec"},"repository":{"type":"git","url":"git+https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","generate"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","devDependencies":{"css-loader":"^0.15.4","extract-text-webpack-plugin":"^0.8.2","file-loader":"^0.8.4","jasmine-node":"^2.0.0","jshint":"^2.8.0","rimraf":"^2.4.1","style-loader":"^0.12.3","url-loader":"^0.5.6","webpack":"^1.10.1"},"dependencies":{"bluebird":"^2.9.34","blueimp-tmpl":"^2.5.4","html-minifier":"^0.7.2","lodash":"^3.10.0"},"gitHead":"b8b758671788e275ad1b237de5383d269ae7c3fa","_id":"html-webpack-plugin@1.6.2","_shasum":"f912b78a38cacd7d7c022408d832c5da3dc40690","_from":".","_npmVersion":"2.11.1","_nodeVersion":"0.10.22","_npmUser":{"name":"jantimon","email":"j.nicklas@me.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},{"name":"jantimon","email":"j.nicklas@me.com"}],"dist":{"shasum":"f912b78a38cacd7d7c022408d832c5da3dc40690","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-1.6.2.tgz"},"directories":{}},"2.1.0":{"name":"html-webpack-plugin","version":"2.1.0","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","loader.js","default_index.html","default_inject_index.html"],"scripts":{"pretest":"jshint *.js spec","test":"jasmine-node --captureExceptions spec"},"repository":{"type":"git","url":"https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","generate"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","devDependencies":{"appcache-webpack-plugin":"^1.2.1","css-loader":"^0.23.0","es6-promise":"^3.0.2","extract-text-webpack-plugin":"^0.9.1","file-loader":"^0.8.4","html-loader":"^0.3.0","jade-loader":"^0.8.0","jasmine-node":"^1.14.5","jshint":"^2.9.1-rc1","rimraf":"^2.4.4","style-loader":"^0.13.0","underscore-template-loader":"^0.5.2","url-loader":"^0.5.6","webpack":"^1.12.8"},"dependencies":{"loader-utils":"^0.2.11","syntax-error":"^1.1.4","bluebird":"^3.0.5","html-minifier":"^1.0.0","lodash":"^3.10.1"},"_id":"html-webpack-plugin@2.1.0","dist":{"shasum":"265bff9bfedc9422001ce1ebfe9ee939517cd220","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-2.1.0.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"jantimon","email":"j.nicklas@me.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},{"name":"jantimon","email":"j.nicklas@me.com"}],"directories":{}},"1.7.0":{"name":"html-webpack-plugin","version":"1.7.0","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","default_index.html","default_inject_index.html"],"scripts":{"pretest":"jshint *.js spec","test":"jasmine-node --captureExceptions spec"},"repository":{"type":"git","url":"https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","generate"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","devDependencies":{"css-loader":"^0.23.0","es6-promise":"^3.0.2","extract-text-webpack-plugin":"^0.9.1","file-loader":"^0.8.4","jasmine-node":"^1.14.5","jshint":"^2.9.1-rc1","rimraf":"^2.4.4","style-loader":"^0.13.0","url-loader":"^0.5.6","webpack":"^1.12.8"},"dependencies":{"bluebird":"^3.0.5","blueimp-tmpl":"^2.5.5","html-minifier":"^1.0.0","lodash":"^3.10.1"},"_id":"html-webpack-plugin@1.7.0","dist":{"shasum":"cd0c73c791bd0c8c45b24e3001be334a6b74297b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-1.7.0.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"jantimon","email":"j.nicklas@me.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},{"name":"jantimon","email":"j.nicklas@me.com"}],"directories":{}},"2.2.0":{"name":"html-webpack-plugin","version":"2.2.0","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","loader.js","default_index.html","default_inject_index.html"],"scripts":{"pretest":"jshint *.js spec","test":"jasmine-node --captureExceptions spec"},"repository":{"type":"git","url":"git+https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","generate"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","devDependencies":{"appcache-webpack-plugin":"^1.2.1","css-loader":"^0.23.1","es6-promise":"^3.0.2","extract-text-webpack-plugin":"^1.0.1","file-loader":"^0.8.5","html-loader":"^0.4.0","jade-loader":"^0.8.0","jasmine-node":"^1.14.5","jshint":"^2.9.1-rc2","rimraf":"^2.5.0","style-loader":"^0.13.0","underscore-template-loader":"^0.5.2","url-loader":"^0.5.7","webpack":"^1.12.10"},"dependencies":{"loader-utils":"^0.2.12","syntax-error":"^1.1.4","bluebird":"^3.1.1","html-minifier":"^1.1.1","lodash":"^3.10.1"},"gitHead":"df441b8b83225db94fba98e2f23cfc8eeb619ebb","_id":"html-webpack-plugin@2.2.0","_shasum":"5a8204315c9328ef0812bca269afc76e90a3cc4f","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"jantimon","email":"j.nicklas@me.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},{"name":"jantimon","email":"j.nicklas@me.com"}],"dist":{"shasum":"5a8204315c9328ef0812bca269afc76e90a3cc4f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-2.2.0.tgz"},"directories":{}},"2.3.0":{"name":"html-webpack-plugin","version":"2.3.0","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","loader.js","default_index.html","default_inject_index.html"],"scripts":{"pretest":"jshint *.js spec","test":"jasmine-node --captureExceptions spec"},"repository":{"type":"git","url":"git+https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","generate"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","devDependencies":{"appcache-webpack-plugin":"^1.2.1","css-loader":"^0.23.1","es6-promise":"^3.0.2","extract-text-webpack-plugin":"^1.0.1","file-loader":"^0.8.5","html-loader":"^0.4.0","jade-loader":"^0.8.0","jasmine-node":"^1.14.5","jshint":"^2.9.1-rc2","rimraf":"^2.5.0","style-loader":"^0.13.0","underscore-template-loader":"^0.5.2","url-loader":"^0.5.7","webpack":"^1.12.10"},"dependencies":{"loader-utils":"^0.2.12","syntax-error":"^1.1.4","bluebird":"^3.1.1","html-minifier":"^1.1.1","lodash":"^3.10.1"},"gitHead":"b4363a85757a07fe23264af2a445338bf45aa24b","_id":"html-webpack-plugin@2.3.0","_shasum":"406df18fde6a93aff8f6cc6ce1856afc1d90eac7","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"jantimon","email":"j.nicklas@me.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},{"name":"jantimon","email":"j.nicklas@me.com"}],"dist":{"shasum":"406df18fde6a93aff8f6cc6ce1856afc1d90eac7","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-2.3.0.tgz"},"directories":{}},"2.4.0":{"name":"html-webpack-plugin","version":"2.4.0","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","loader.js","default_index.html"],"scripts":{"pretest":"jshint *.js spec","test":"jasmine-node --captureExceptions spec"},"repository":{"type":"git","url":"git+https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","html-webpack-plugin"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","devDependencies":{"appcache-webpack-plugin":"^1.2.1","css-loader":"^0.23.1","es6-promise":"^3.0.2","extract-text-webpack-plugin":"^1.0.1","file-loader":"^0.8.5","html-loader":"^0.4.0","jade-loader":"^0.8.0","jasmine-node":"^1.14.5","jshint":"^2.9.1-rc2","rimraf":"^2.5.0","style-loader":"^0.13.0","underscore-template-loader":"^0.5.2","url-loader":"^0.5.7","webpack":"^1.12.10"},"dependencies":{"loader-utils":"^0.2.12","syntax-error":"^1.1.4","bluebird":"^3.1.1","html-minifier":"^1.1.1","lodash":"^3.10.1"},"gitHead":"37e744dd85f9e009bedeedad8d606e0ecc1a5529","_id":"html-webpack-plugin@2.4.0","_shasum":"d9572505db1aa867d814613626bb2f7469636bca","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"jantimon","email":"j.nicklas@me.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},{"name":"jantimon","email":"j.nicklas@me.com"}],"dist":{"shasum":"d9572505db1aa867d814613626bb2f7469636bca","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-2.4.0.tgz"},"directories":{}},"2.5.0":{"name":"html-webpack-plugin","version":"2.5.0","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","loader.js","default_index.html"],"scripts":{"pretest":"jshint *.js spec","test":"jasmine-node --captureExceptions spec"},"repository":{"type":"git","url":"git+https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","html-webpack-plugin"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","devDependencies":{"appcache-webpack-plugin":"^1.2.1","css-loader":"^0.23.1","es6-promise":"^3.0.2","extract-text-webpack-plugin":"^1.0.1","file-loader":"^0.8.5","html-loader":"^0.4.0","jade-loader":"^0.8.0","jasmine-node":"^1.14.5","jshint":"^2.9.1-rc2","rimraf":"^2.5.0","style-loader":"^0.13.0","underscore-template-loader":"^0.5.2","url-loader":"^0.5.7","webpack":"^1.12.10"},"dependencies":{"loader-utils":"^0.2.12","syntax-error":"^1.1.4","bluebird":"^3.1.1","html-minifier":"^1.1.1","lodash":"^3.10.1"},"gitHead":"54528a5b418e3403b1dff8f38e1a57330b9fba3b","_id":"html-webpack-plugin@2.5.0","_shasum":"5456900996ef00dc9fb699583c5fe8b2c9c1eb52","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"jantimon","email":"j.nicklas@me.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},{"name":"jantimon","email":"j.nicklas@me.com"}],"dist":{"shasum":"5456900996ef00dc9fb699583c5fe8b2c9c1eb52","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-2.5.0.tgz"},"directories":{}},"2.6.0":{"name":"html-webpack-plugin","version":"2.6.0","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","loader.js","default_index.html"],"scripts":{"pretest":"jshint *.js spec","test":"jasmine-node --captureExceptions spec"},"repository":{"type":"git","url":"git+https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","html-webpack-plugin"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","devDependencies":{"appcache-webpack-plugin":"^1.2.1","css-loader":"^0.23.1","es6-promise":"^3.0.2","extract-text-webpack-plugin":"^1.0.1","file-loader":"^0.8.5","html-loader":"^0.4.0","jade-loader":"^0.8.0","jasmine-node":"^1.14.5","jshint":"^2.9.1-rc2","rimraf":"^2.5.0","style-loader":"^0.13.0","underscore-template-loader":"^0.5.2","url-loader":"^0.5.7","webpack":"^1.12.10"},"dependencies":{"bluebird":"^3.1.1","html-minifier":"^1.1.1","loader-utils":"^0.2.12","lodash":"^3.10.1","pretty-error":"^2.0.0"},"gitHead":"1622c7d2e2feb731e000bc9a755b242be909fd7d","_id":"html-webpack-plugin@2.6.0","_shasum":"39eb6b32e1e693069357708814646f111b929f6d","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"jantimon","email":"j.nicklas@me.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},{"name":"jantimon","email":"j.nicklas@me.com"}],"dist":{"shasum":"39eb6b32e1e693069357708814646f111b929f6d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-2.6.0.tgz"},"directories":{}},"2.6.1":{"name":"html-webpack-plugin","version":"2.6.1","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","default_index.html","lib/errors.js","lib/compiler.js","lib/loader.js"],"scripts":{"pretest":"jshint *.js spec","test":"jasmine-node --captureExceptions spec"},"repository":{"type":"git","url":"git+https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","html-webpack-plugin"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","devDependencies":{"appcache-webpack-plugin":"^1.2.1","css-loader":"^0.23.1","es6-promise":"^3.0.2","extract-text-webpack-plugin":"^1.0.1","file-loader":"^0.8.5","html-loader":"^0.4.0","jade-loader":"^0.8.0","jasmine-node":"^1.14.5","jshint":"^2.9.1-rc2","rimraf":"^2.5.0","style-loader":"^0.13.0","underscore-template-loader":"^0.5.2","url-loader":"^0.5.7","webpack":"^1.12.10"},"dependencies":{"bluebird":"^3.1.1","html-minifier":"^1.1.1","loader-utils":"^0.2.12","lodash":"^3.10.1","pretty-error":"^2.0.0"},"gitHead":"1622c7d2e2feb731e000bc9a755b242be909fd7d","_id":"html-webpack-plugin@2.6.1","_shasum":"d69272593b9d06bf45436a84cb6fcebb70e1ea1c","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"jantimon","email":"j.nicklas@me.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},{"name":"jantimon","email":"j.nicklas@me.com"}],"dist":{"shasum":"d69272593b9d06bf45436a84cb6fcebb70e1ea1c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-2.6.1.tgz"},"directories":{}},"2.6.2":{"name":"html-webpack-plugin","version":"2.6.2","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","default_index.html","lib/"],"scripts":{"pretest":"jshint *.js spec","test":"jasmine-node --captureExceptions spec"},"repository":{"type":"git","url":"git+https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","html-webpack-plugin"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","devDependencies":{"appcache-webpack-plugin":"^1.2.1","css-loader":"^0.23.1","es6-promise":"^3.0.2","extract-text-webpack-plugin":"^1.0.1","file-loader":"^0.8.5","html-loader":"^0.4.0","jade-loader":"^0.8.0","jasmine-node":"^1.14.5","jshint":"^2.9.1-rc2","rimraf":"^2.5.0","style-loader":"^0.13.0","underscore-template-loader":"^0.5.2","url-loader":"^0.5.7","webpack":"^1.12.10"},"dependencies":{"bluebird":"^3.1.1","html-minifier":"^1.1.1","loader-utils":"^0.2.12","lodash":"^3.10.1","pretty-error":"^2.0.0"},"gitHead":"26c87253ca415a1e2c0b424642ba50bddac0251f","_id":"html-webpack-plugin@2.6.2","_shasum":"a64ca314a8a22acf15c0f75198fab5d18bf9be6a","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"jantimon","email":"j.nicklas@me.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},{"name":"jantimon","email":"j.nicklas@me.com"}],"dist":{"shasum":"a64ca314a8a22acf15c0f75198fab5d18bf9be6a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-2.6.2.tgz"},"directories":{}},"2.6.3":{"name":"html-webpack-plugin","version":"2.6.3","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","default_index.ejs","lib/"],"scripts":{"pretest":"jshint *.js spec","test":"jasmine-node --captureExceptions spec"},"repository":{"type":"git","url":"git+https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","html-webpack-plugin"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","devDependencies":{"appcache-webpack-plugin":"^1.2.1","css-loader":"^0.23.1","dir-compare":"0.0.2","es6-promise":"^3.0.2","extract-text-webpack-plugin":"^1.0.1","file-loader":"^0.8.5","html-loader":"^0.4.0","jade-loader":"^0.8.0","jasmine-node":"^1.14.5","jshint":"^2.9.1-rc2","rimraf":"^2.5.0","style-loader":"^0.13.0","underscore-template-loader":"^0.5.2","url-loader":"^0.5.7","webpack":"^1.12.10"},"dependencies":{"bluebird":"^3.1.1","html-minifier":"^1.1.1","loader-utils":"^0.2.12","lodash":"^3.10.1","pretty-error":"^2.0.0"},"gitHead":"9e7cc462ba4b53d9c188978ef56e4cd8f46f3c00","_id":"html-webpack-plugin@2.6.3","_shasum":"8cff145d14782757afdf485317191ca4ffcca539","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"jantimon","email":"j.nicklas@me.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},{"name":"jantimon","email":"j.nicklas@me.com"}],"dist":{"shasum":"8cff145d14782757afdf485317191ca4ffcca539","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-2.6.3.tgz"},"directories":{}},"2.6.4":{"name":"html-webpack-plugin","version":"2.6.4","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","default_index.ejs","lib/"],"scripts":{"pretest":"jshint *.js spec","test":"jasmine-node --captureExceptions spec"},"repository":{"type":"git","url":"git+https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","html-webpack-plugin"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","devDependencies":{"appcache-webpack-plugin":"^1.2.1","css-loader":"^0.23.1","dir-compare":"0.0.2","es6-promise":"^3.0.2","extract-text-webpack-plugin":"^1.0.1","file-loader":"^0.8.5","html-loader":"^0.4.0","jade-loader":"^0.8.0","jasmine-node":"^1.14.5","jshint":"^2.9.1-rc2","rimraf":"^2.5.0","style-loader":"^0.13.0","underscore-template-loader":"^0.5.2","url-loader":"^0.5.7","webpack":"^1.12.10"},"dependencies":{"bluebird":"^3.1.1","html-minifier":"^1.1.1","loader-utils":"^0.2.12","lodash":"^3.10.1","pretty-error":"^2.0.0"},"gitHead":"c4ee1738e78c32a29b17ad5b999960b65192b81c","_id":"html-webpack-plugin@2.6.4","_shasum":"23377ab74ea13aa3b2491380899bb358acb97f7d","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"jantimon","email":"j.nicklas@me.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},{"name":"jantimon","email":"j.nicklas@me.com"}],"dist":{"shasum":"23377ab74ea13aa3b2491380899bb358acb97f7d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-2.6.4.tgz"},"directories":{}},"2.6.5":{"name":"html-webpack-plugin","version":"2.6.5","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","default_index.ejs","lib/"],"scripts":{"pretest":"jshint *.js spec","test":"jasmine-node --captureExceptions spec"},"repository":{"type":"git","url":"git+https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","html-webpack-plugin"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","devDependencies":{"appcache-webpack-plugin":"^1.2.1","css-loader":"^0.23.1","dir-compare":"0.0.2","es6-promise":"^3.0.2","extract-text-webpack-plugin":"^1.0.1","file-loader":"^0.8.5","html-loader":"^0.4.0","jade-loader":"^0.8.0","jasmine-node":"^1.14.5","jshint":"^2.9.1-rc2","rimraf":"^2.5.0","style-loader":"^0.13.0","underscore-template-loader":"^0.5.2","url-loader":"^0.5.7","webpack":"^1.12.10"},"dependencies":{"bluebird":"^3.1.1","html-minifier":"^1.1.1","loader-utils":"^0.2.12","lodash":"^3.10.1","pretty-error":"^2.0.0"},"gitHead":"d5c4e0845731389e7264b52df8fb8880ec5e651a","_id":"html-webpack-plugin@2.6.5","_shasum":"a9700933e4c97a2d6e4d4be044613f743b2c68f9","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"jantimon","email":"j.nicklas@me.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},{"name":"jantimon","email":"j.nicklas@me.com"}],"dist":{"shasum":"a9700933e4c97a2d6e4d4be044613f743b2c68f9","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-2.6.5.tgz"},"directories":{}},"2.7.1":{"name":"html-webpack-plugin","version":"2.7.1","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","default_index.ejs","lib/"],"scripts":{"pretest":"semistandard","test":"jasmine-node --captureExceptions spec"},"repository":{"type":"git","url":"git+https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","html-webpack-plugin"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","devDependencies":{"appcache-webpack-plugin":"^1.2.1","css-loader":"^0.23.1","dir-compare":"0.0.2","es6-promise":"^3.0.2","extract-text-webpack-plugin":"^1.0.1","file-loader":"^0.8.5","html-loader":"^0.4.0","jade-loader":"^0.8.0","jasmine-node":"^1.14.5","rimraf":"^2.5.0","semistandard":"^7.0.5","style-loader":"^0.13.0","underscore-template-loader":"^0.5.2","url-loader":"^0.5.7","webpack":"^1.12.10"},"dependencies":{"bluebird":"^3.1.1","html-minifier":"^1.1.1","loader-utils":"^0.2.12","lodash":"^3.10.1","pretty-error":"^2.0.0"},"gitHead":"9e8259ae269b78b3c5498bb3320f250ca5d9a476","_id":"html-webpack-plugin@2.7.1","_shasum":"2985949dca3b19429d8ca543043d16df236d23c5","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"jantimon","email":"j.nicklas@me.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},{"name":"jantimon","email":"j.nicklas@me.com"}],"dist":{"shasum":"2985949dca3b19429d8ca543043d16df236d23c5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-2.7.1.tgz"},"directories":{}},"2.7.2":{"name":"html-webpack-plugin","version":"2.7.2","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","default_index.ejs","lib/"],"scripts":{"pretest":"semistandard","test":"jasmine-node --captureExceptions spec"},"repository":{"type":"git","url":"git+https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","html-webpack-plugin"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","devDependencies":{"appcache-webpack-plugin":"^1.2.1","css-loader":"^0.23.1","dir-compare":"0.0.2","es6-promise":"^3.0.2","extract-text-webpack-plugin":"^1.0.1","file-loader":"^0.8.5","html-loader":"^0.4.0","jade-loader":"^0.8.0","jasmine-node":"^1.14.5","rimraf":"^2.5.0","semistandard":"^7.0.5","style-loader":"^0.13.0","underscore-template-loader":"^0.5.2","url-loader":"^0.5.7","webpack":"^1.12.10"},"dependencies":{"bluebird":"^3.1.1","html-minifier":"^1.1.1","loader-utils":"^0.2.12","lodash":"^3.10.1","pretty-error":"^2.0.0"},"gitHead":"70df65d9e5717c9f130e8a0373ae9d37e5711cdd","_id":"html-webpack-plugin@2.7.2","_shasum":"8015fe4b95f7385f3f9208208c0aabf886472ec3","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"jantimon","email":"j.nicklas@me.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},{"name":"jantimon","email":"j.nicklas@me.com"}],"dist":{"shasum":"8015fe4b95f7385f3f9208208c0aabf886472ec3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-2.7.2.tgz"},"directories":{}},"2.8.0":{"name":"html-webpack-plugin","version":"2.8.0","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","default_index.ejs","lib/"],"scripts":{"pretest":"semistandard","test":"jasmine-node --captureExceptions spec"},"repository":{"type":"git","url":"git+https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","html-webpack-plugin"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","devDependencies":{"appcache-webpack-plugin":"^1.2.1","css-loader":"^0.23.1","dir-compare":"0.0.2","es6-promise":"^3.0.2","extract-text-webpack-plugin":"^1.0.1","file-loader":"^0.8.5","html-loader":"^0.4.0","jade":"^1.11.0","jade-loader":"^0.8.0","jasmine-node":"^1.14.5","rimraf":"^2.5.0","semistandard":"^7.0.5","style-loader":"^0.13.0","underscore-template-loader":"^0.5.2","url-loader":"^0.5.7","webpack":"^1.12.10"},"dependencies":{"bluebird":"^3.1.1","html-minifier":"^1.1.1","loader-utils":"^0.2.12","lodash":"^3.10.1","pretty-error":"^2.0.0","toposort":"^0.2.12"},"gitHead":"3f3890175825786490179efbcb6190f959e95abd","_id":"html-webpack-plugin@2.8.0","_shasum":"55c16b472eb19d9373964ccdfe2cd5df204f6779","_from":".","_npmVersion":"2.14.16","_nodeVersion":"0.12.7","_npmUser":{"name":"jantimon","email":"j.nicklas@me.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},{"name":"jantimon","email":"j.nicklas@me.com"}],"dist":{"shasum":"55c16b472eb19d9373964ccdfe2cd5df204f6779","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-2.8.0.tgz"},"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/html-webpack-plugin-2.8.0.tgz_1454518869997_0.18247373029589653"},"directories":{}},"2.8.1":{"name":"html-webpack-plugin","version":"2.8.1","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","default_index.ejs","lib/"],"scripts":{"pretest":"semistandard","test":"jasmine-node --captureExceptions spec"},"repository":{"type":"git","url":"git+https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","html-webpack-plugin"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","devDependencies":{"appcache-webpack-plugin":"^1.2.1","css-loader":"^0.23.1","dir-compare":"0.0.2","es6-promise":"^3.0.2","extract-text-webpack-plugin":"^1.0.1","file-loader":"^0.8.5","html-loader":"^0.4.0","jade":"^1.11.0","jade-loader":"^0.8.0","jasmine-node":"^1.14.5","rimraf":"^2.5.0","semistandard":"^7.0.5","style-loader":"^0.13.0","underscore-template-loader":"^0.5.2","url-loader":"^0.5.7","webpack":"^1.12.10"},"dependencies":{"bluebird":"^3.1.1","html-minifier":"^1.1.1","loader-utils":"^0.2.12","lodash":"^3.10.1","pretty-error":"^2.0.0","toposort":"^0.2.12"},"gitHead":"99a8d7e4fd3533993376326770bb99636f943645","_id":"html-webpack-plugin@2.8.1","_shasum":"ef9e46d0fdad2c50096eb18c53adb80964bb3d79","_from":".","_npmVersion":"2.14.16","_nodeVersion":"0.12.7","_npmUser":{"name":"jantimon","email":"j.nicklas@me.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},{"name":"jantimon","email":"j.nicklas@me.com"}],"dist":{"shasum":"ef9e46d0fdad2c50096eb18c53adb80964bb3d79","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-2.8.1.tgz"},"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/html-webpack-plugin-2.8.1.tgz_1454519071664_0.1372518944554031"},"directories":{}},"2.8.2":{"name":"html-webpack-plugin","version":"2.8.2","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","default_index.ejs","lib/"],"scripts":{"pretest":"semistandard","test":"jasmine-node --captureExceptions spec"},"repository":{"type":"git","url":"git+https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","html-webpack-plugin"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","devDependencies":{"appcache-webpack-plugin":"^1.2.1","css-loader":"^0.23.1","dir-compare":"0.0.2","es6-promise":"^3.0.2","extract-text-webpack-plugin":"^1.0.1","file-loader":"^0.8.5","html-loader":"^0.4.0","jade":"^1.11.0","jade-loader":"^0.8.0","jasmine-node":"^1.14.5","rimraf":"^2.5.0","semistandard":"^7.0.5","style-loader":"^0.13.0","underscore-template-loader":"^0.5.2","url-loader":"^0.5.7","webpack":"^1.12.10"},"dependencies":{"bluebird":"^3.1.1","html-minifier":"^1.1.1","loader-utils":"^0.2.12","lodash":"^3.10.1","pretty-error":"^2.0.0","toposort":"^0.2.12"},"gitHead":"63e4ad6fc7d0fb11eb2c5813b88a22db973c0062","_id":"html-webpack-plugin@2.8.2","_shasum":"120adce1314ab9298b9036101d07fd971a17fa15","_from":".","_npmVersion":"2.14.16","_nodeVersion":"0.12.7","_npmUser":{"name":"jantimon","email":"j.nicklas@me.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},{"name":"jantimon","email":"j.nicklas@me.com"}],"dist":{"shasum":"120adce1314ab9298b9036101d07fd971a17fa15","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-2.8.2.tgz"},"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/html-webpack-plugin-2.8.2.tgz_1455606904567_0.17232874035835266"},"directories":{}},"2.9.0":{"name":"html-webpack-plugin","version":"2.9.0","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","default_index.ejs","lib/"],"scripts":{"pretest":"semistandard","test":"jasmine-node --captureExceptions spec"},"repository":{"type":"git","url":"git+https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","html-webpack-plugin"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","devDependencies":{"appcache-webpack-plugin":"^1.2.1","css-loader":"^0.23.1","dir-compare":"0.0.2","es6-promise":"^3.0.2","extract-text-webpack-plugin":"^1.0.1","file-loader":"^0.8.5","html-loader":"^0.4.0","jade":"^1.11.0","jade-loader":"^0.8.0","jasmine-node":"^1.14.5","rimraf":"^2.5.0","semistandard":"^7.0.5","style-loader":"^0.13.0","underscore-template-loader":"^0.5.2","url-loader":"^0.5.7","webpack":"^1.12.10"},"dependencies":{"bluebird":"^3.1.1","html-minifier":"^1.1.1","loader-utils":"^0.2.12","lodash":"^3.10.1","pretty-error":"^2.0.0","toposort":"^0.2.12"},"gitHead":"713643f84f80435f00cf5ef4cba68b46ae662379","_id":"html-webpack-plugin@2.9.0","_shasum":"cbfb167c0b84c12a0295139886e9db7fca62e902","_from":".","_npmVersion":"2.14.16","_nodeVersion":"0.12.7","_npmUser":{"name":"jantimon","email":"j.nicklas@me.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},{"name":"jantimon","email":"j.nicklas@me.com"}],"dist":{"shasum":"cbfb167c0b84c12a0295139886e9db7fca62e902","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-2.9.0.tgz"},"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/html-webpack-plugin-2.9.0.tgz_1455711509633_0.26125664194114506"},"directories":{}},"2.10.0":{"name":"html-webpack-plugin","version":"2.10.0","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","default_index.ejs","lib/"],"scripts":{"pretest":"semistandard","test":"jasmine"},"repository":{"type":"git","url":"git+https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","html-webpack-plugin"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","devDependencies":{"appcache-webpack-plugin":"^1.2.1","css-loader":"^0.23.1","dir-compare":"1.0.1","es6-promise":"^3.1.2","extract-text-webpack-plugin":"^1.0.1","file-loader":"^0.8.5","html-loader":"^0.4.3","jade":"^1.11.0","jade-loader":"^0.8.0","jasmine":"^2.4.1","rimraf":"^2.5.2","semistandard":"^7.0.5","style-loader":"^0.13.0","underscore-template-loader":"^0.7.2","url-loader":"^0.5.7","webpack":"^1.12.14"},"dependencies":{"bluebird":"^3.3.4","html-minifier":"^1.2.0","loader-utils":"^0.2.12","lodash":"^4.6.1","pretty-error":"^2.0.0","toposort":"^0.2.12"},"gitHead":"4a817ab2c34706c8b1cd999c56412e8c96c7db39","_id":"html-webpack-plugin@2.10.0","_shasum":"9606ffa0773c3940fbf32d00fa1b0d976dbb6f48","_from":".","_npmVersion":"2.14.16","_nodeVersion":"0.12.7","_npmUser":{"name":"jantimon","email":"j.nicklas@me.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},{"name":"jantimon","email":"j.nicklas@me.com"}],"dist":{"shasum":"9606ffa0773c3940fbf32d00fa1b0d976dbb6f48","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-2.10.0.tgz"},"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/html-webpack-plugin-2.10.0.tgz_1457604893832_0.2243602389935404"},"directories":{}},"2.11.0":{"name":"html-webpack-plugin","version":"2.11.0","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","default_index.ejs","lib/"],"scripts":{"prepublish":"npm run test","pretest":"semistandard","test":"jasmine"},"repository":{"type":"git","url":"git+https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","html-webpack-plugin"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","devDependencies":{"appcache-webpack-plugin":"^1.2.1","css-loader":"^0.23.1","dir-compare":"1.0.1","es6-promise":"^3.1.2","extract-text-webpack-plugin":"^1.0.1","file-loader":"^0.8.5","html-loader":"^0.4.3","jade":"^1.11.0","jade-loader":"^0.8.0","jasmine":"^2.4.1","rimraf":"^2.5.2","semistandard":"^7.0.5","style-loader":"^0.13.0","underscore-template-loader":"^0.7.2","url-loader":"^0.5.7","webpack":"^1.12.14"},"dependencies":{"bluebird":"^3.3.4","html-minifier":"^1.2.0","loader-utils":"^0.2.12","lodash":"^4.6.1","pretty-error":"^2.0.0","toposort":"^0.2.12"},"gitHead":"67ca550b99f3b99949ca6d66ac7a122738809784","_id":"html-webpack-plugin@2.11.0","_shasum":"949c049f4036221c3b74485cf81266c57faf39ed","_from":".","_npmVersion":"2.14.20","_nodeVersion":"4.4.0","_npmUser":{"name":"jantimon","email":"j.nicklas@me.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},{"name":"jantimon","email":"j.nicklas@me.com"}],"dist":{"shasum":"949c049f4036221c3b74485cf81266c57faf39ed","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-2.11.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/html-webpack-plugin-2.11.0.tgz_1458479576934_0.2079333506990224"},"directories":{}},"2.12.0":{"name":"html-webpack-plugin","version":"2.12.0","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","default_index.ejs","lib/"],"scripts":{"prepublish":"npm run test","pretest":"semistandard","test":"jasmine"},"repository":{"type":"git","url":"git+https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","html-webpack-plugin"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","devDependencies":{"appcache-webpack-plugin":"^1.2.1","css-loader":"^0.23.1","dir-compare":"1.0.1","es6-promise":"^3.1.2","extract-text-webpack-plugin":"^1.0.1","file-loader":"^0.8.5","html-loader":"^0.4.3","jade":"^1.11.0","jade-loader":"^0.8.0","jasmine":"^2.4.1","rimraf":"^2.5.2","semistandard":"^7.0.5","style-loader":"^0.13.0","underscore-template-loader":"^0.7.2","url-loader":"^0.5.7","webpack":"^1.12.14"},"dependencies":{"bluebird":"^3.3.4","html-minifier":"^1.2.0","loader-utils":"^0.2.12","lodash":"^4.6.1","pretty-error":"^2.0.0","toposort":"^0.2.12"},"gitHead":"58681c3bdb6a3c9e23f0167688f5d34c72f01470","_id":"html-webpack-plugin@2.12.0","_shasum":"5f2ce8668470b597142601194e055a662719aa03","_from":".","_npmVersion":"2.14.20","_nodeVersion":"4.4.0","_npmUser":{"name":"jantimon","email":"j.nicklas@me.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},{"name":"jantimon","email":"j.nicklas@me.com"}],"dist":{"shasum":"5f2ce8668470b597142601194e055a662719aa03","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-2.12.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/html-webpack-plugin-2.12.0.tgz_1458484858548_0.7160279592499137"},"directories":{}},"2.13.0":{"name":"html-webpack-plugin","version":"2.13.0","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","default_index.ejs","lib/"],"scripts":{"prepublish":"npm run test","pretest":"semistandard","recompile":"node examples/rebuild.js","test":"jasmine"},"repository":{"type":"git","url":"git+https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","html-webpack-plugin"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","devDependencies":{"appcache-webpack-plugin":"^1.2.1","css-loader":"^0.23.1","dir-compare":"1.0.1","es6-promise":"^3.1.2","extract-text-webpack-plugin":"^1.0.1","file-loader":"^0.8.5","html-loader":"^0.4.3","jade":"^1.11.0","jade-loader":"^0.8.0","jasmine":"^2.4.1","rimraf":"^2.5.2","semistandard":"^7.0.5","style-loader":"^0.13.0","underscore-template-loader":"^0.7.2","url-loader":"^0.5.7","webpack":"^1.12.14","webpack-recompilation-simulator":"^1.3.0"},"dependencies":{"bluebird":"^3.3.4","html-minifier":"^1.2.0","loader-utils":"^0.2.12","lodash":"^4.6.1","pretty-error":"^2.0.0","toposort":"^0.2.12"},"gitHead":"a04434a2251c5071ed66adcbff60fcecb2009d72","_id":"html-webpack-plugin@2.13.0","_shasum":"47c60764242cb82c190e392ab0c2138b2ffee0c0","_from":".","_npmVersion":"2.14.20","_nodeVersion":"4.4.0","_npmUser":{"name":"jantimon","email":"j.nicklas@me.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},{"name":"jantimon","email":"j.nicklas@me.com"}],"dist":{"shasum":"47c60764242cb82c190e392ab0c2138b2ffee0c0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-2.13.0.tgz"},"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/html-webpack-plugin-2.13.0.tgz_1458724102002_0.1260203323327005"},"directories":{}},"2.14.0":{"name":"html-webpack-plugin","version":"2.14.0","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","default_index.ejs","lib/"],"scripts":{"prepublish":"npm run test","pretest":"semistandard","recompile":"node examples/rebuild.js","test":"jasmine"},"repository":{"type":"git","url":"git+https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","html-webpack-plugin"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","devDependencies":{"appcache-webpack-plugin":"^1.2.1","css-loader":"^0.23.1","dir-compare":"1.0.1","es6-promise":"^3.1.2","extract-text-webpack-plugin":"^1.0.1","file-loader":"^0.8.5","html-loader":"^0.4.3","jade":"^1.11.0","jade-loader":"^0.8.0","jasmine":"^2.4.1","rimraf":"^2.5.2","semistandard":"^7.0.5","style-loader":"^0.13.0","underscore-template-loader":"^0.7.2","url-loader":"^0.5.7","webpack":"^1.12.14","webpack-recompilation-simulator":"^1.3.0"},"dependencies":{"bluebird":"^3.3.4","html-minifier":"^1.2.0","loader-utils":"^0.2.12","lodash":"^4.6.1","pretty-error":"^2.0.0","toposort":"^0.2.12"},"gitHead":"f616f2e22fb3d6df1ec61daac8b65e2d0ca78504","_id":"html-webpack-plugin@2.14.0","_shasum":"f28af70d51ca9106073aa3a6a4541e261c6cbd28","_from":".","_npmVersion":"2.14.20","_nodeVersion":"4.4.0","_npmUser":{"name":"jantimon","email":"j.nicklas@me.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},{"name":"jantimon","email":"j.nicklas@me.com"}],"dist":{"shasum":"f28af70d51ca9106073aa3a6a4541e261c6cbd28","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-2.14.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/html-webpack-plugin-2.14.0.tgz_1458724372501_0.12405077228322625"},"directories":{}},"2.15.0":{"name":"html-webpack-plugin","version":"2.15.0","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","default_index.ejs","lib/"],"scripts":{"prepublish":"npm run test","pretest":"semistandard","build-examples":"node examples/build-examples.js","test":"jasmine"},"repository":{"type":"git","url":"git+https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","html-webpack-plugin"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","devDependencies":{"appcache-webpack-plugin":"^1.2.1","css-loader":"^0.23.1","dir-compare":"1.0.1","es6-promise":"^3.1.2","extract-text-webpack-plugin":"^1.0.1","file-loader":"^0.8.5","html-loader":"^0.4.3","jade":"^1.11.0","jade-loader":"^0.8.0","jasmine":"^2.4.1","rimraf":"^2.5.2","semistandard":"^7.0.5","style-loader":"^0.13.1","underscore-template-loader":"^0.7.2","url-loader":"^0.5.7","webpack":"^1.12.14","webpack-recompilation-simulator":"^1.3.0"},"dependencies":{"bluebird":"^3.3.4","html-minifier":"^1.3.1","loader-utils":"^0.2.13","lodash":"^4.6.1","pretty-error":"^2.0.0","toposort":"^0.2.12"},"gitHead":"3ad0f9fba6ac42fce4f416c12540811d9942ee30","_id":"html-webpack-plugin@2.15.0","_shasum":"1ac9d627ea9f3980275fd5cbb505bc908ac591ca","_from":".","_npmVersion":"2.14.20","_nodeVersion":"4.4.0","_npmUser":{"name":"jantimon","email":"j.nicklas@me.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},{"name":"jantimon","email":"j.nicklas@me.com"}],"dist":{"shasum":"1ac9d627ea9f3980275fd5cbb505bc908ac591ca","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-2.15.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/html-webpack-plugin-2.15.0.tgz_1459269874814_0.872823164332658"},"directories":{}},"2.16.0":{"name":"html-webpack-plugin","version":"2.16.0","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","default_index.ejs","lib/"],"scripts":{"prepublish":"npm run test","pretest":"semistandard","build-examples":"node examples/build-examples.js","test":"jasmine"},"repository":{"type":"git","url":"git+https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","html-webpack-plugin"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","devDependencies":{"appcache-webpack-plugin":"^1.2.1","css-loader":"^0.23.1","dir-compare":"1.0.1","es6-promise":"^3.1.2","extract-text-webpack-plugin":"^1.0.1","file-loader":"^0.8.5","html-loader":"^0.4.3","jade":"^1.11.0","jade-loader":"^0.8.0","jasmine":"^2.4.1","rimraf":"^2.5.2","semistandard":"^7.0.5","style-loader":"^0.13.1","underscore-template-loader":"^0.7.2","url-loader":"^0.5.7","webpack":"^1.12.14","webpack-recompilation-simulator":"^1.3.0"},"dependencies":{"bluebird":"^3.3.4","html-minifier":"^1.3.1","loader-utils":"^0.2.13","lodash":"^4.6.1","pretty-error":"^2.0.0","toposort":"^0.2.12"},"gitHead":"37bf50d662a9effc6fee54320714772b7944fcbc","_id":"html-webpack-plugin@2.16.0","_shasum":"556e94dadf83aa4b2dd662d783e322ea28bfca0c","_from":".","_npmVersion":"2.14.16","_nodeVersion":"0.12.7","_npmUser":{"name":"jantimon","email":"j.nicklas@me.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},{"name":"jantimon","email":"j.nicklas@me.com"}],"dist":{"shasum":"556e94dadf83aa4b2dd662d783e322ea28bfca0c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-2.16.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/html-webpack-plugin-2.16.0.tgz_1460978201817_0.39310407009907067"},"directories":{}},"2.16.1":{"name":"html-webpack-plugin","version":"2.16.1","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","default_index.ejs","lib/"],"scripts":{"prepublish":"npm run test","pretest":"semistandard","build-examples":"node examples/build-examples.js","test":"jasmine"},"repository":{"type":"git","url":"git+https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","html-webpack-plugin"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","devDependencies":{"appcache-webpack-plugin":"^1.2.1","css-loader":"^0.23.1","dir-compare":"1.0.1","es6-promise":"^3.1.2","extract-text-webpack-plugin":"^1.0.1","file-loader":"^0.8.5","html-loader":"^0.4.3","jade":"^1.11.0","jade-loader":"^0.8.0","jasmine":"^2.4.1","rimraf":"^2.5.2","semistandard":"^7.0.5","style-loader":"^0.13.1","underscore-template-loader":"^0.7.2","url-loader":"^0.5.7","webpack":"^1.13.0","webpack-recompilation-simulator":"^1.3.0"},"dependencies":{"bluebird":"^3.3.5","html-minifier":"^2.1.0","loader-utils":"^0.2.14","lodash":"^4.11.1","pretty-error":"^2.0.0","toposort":"^0.2.12"},"gitHead":"3e751b704633a63d2d5f8b160ed9a97e0656c956","_id":"html-webpack-plugin@2.16.1","_shasum":"5edc6ad852088a649778ac611b574926630df9b4","_from":".","_npmVersion":"3.3.12","_nodeVersion":"4.2.2","_npmUser":{"name":"jantimon","email":"j.nicklas@me.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},{"name":"jantimon","email":"j.nicklas@me.com"}],"dist":{"shasum":"5edc6ad852088a649778ac611b574926630df9b4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-2.16.1.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/html-webpack-plugin-2.16.1.tgz_1462205315460_0.5177461476996541"},"directories":{}},"2.16.2":{"name":"html-webpack-plugin","version":"2.16.2","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","default_index.ejs","lib/"],"scripts":{"prepublish":"npm run test","pretest":"semistandard","build-examples":"node examples/build-examples.js","test":"jasmine"},"repository":{"type":"git","url":"git+https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","html-webpack-plugin"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","devDependencies":{"appcache-webpack-plugin":"^1.2.1","css-loader":"^0.23.1","dir-compare":"1.0.1","es6-promise":"^3.1.2","extract-text-webpack-plugin":"^1.0.1","file-loader":"^0.8.5","html-loader":"^0.4.3","jade":"^1.11.0","jade-loader":"^0.8.0","jasmine":"^2.4.1","rimraf":"^2.5.2","semistandard":"^7.0.5","style-loader":"^0.13.1","underscore-template-loader":"^0.7.2","url-loader":"^0.5.7","webpack":"^1.13.0","webpack-recompilation-simulator":"^1.3.0"},"dependencies":{"bluebird":"^3.3.5","html-minifier":"^2.1.0","loader-utils":"^0.2.14","lodash":"^4.11.1","pretty-error":"^2.0.0","toposort":"^0.2.12"},"gitHead":"0952b3a810cfce0d46504b2e3e094aed6105b8ea","_id":"html-webpack-plugin@2.16.2","_shasum":"0c4d5021993e1b9ac1cde430cf82ec113466615c","_from":".","_npmVersion":"3.3.12","_nodeVersion":"4.2.2","_npmUser":{"name":"jantimon","email":"j.nicklas@me.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},{"name":"jantimon","email":"j.nicklas@me.com"}],"dist":{"shasum":"0c4d5021993e1b9ac1cde430cf82ec113466615c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-2.16.2.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/html-webpack-plugin-2.16.2.tgz_1463133113905_0.9295231499709189"},"directories":{}},"2.17.0":{"name":"html-webpack-plugin","version":"2.17.0","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","default_index.ejs","lib/"],"scripts":{"prepublish":"npm run test","pretest":"semistandard","build-examples":"node examples/build-examples.js","test":"jasmine"},"repository":{"type":"git","url":"git+https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","html-webpack-plugin"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","devDependencies":{"appcache-webpack-plugin":"^1.2.1","css-loader":"^0.23.1","dir-compare":"1.0.1","es6-promise":"^3.1.2","extract-text-webpack-plugin":"^1.0.1","file-loader":"^0.8.5","html-loader":"^0.4.3","jade":"^1.11.0","jade-loader":"^0.8.0","jasmine":"^2.4.1","rimraf":"^2.5.2","semistandard":"^7.0.5","style-loader":"^0.13.1","underscore-template-loader":"^0.7.2","url-loader":"^0.5.7","webpack":"^1.13.0","webpack-recompilation-simulator":"^1.3.0"},"dependencies":{"bluebird":"^3.3.5","html-minifier":"^2.1.0","loader-utils":"^0.2.14","lodash":"^4.11.1","pretty-error":"^2.0.0","toposort":"^0.2.12"},"gitHead":"390635a5197921d54d15ecb5247d26c523cb6886","_id":"html-webpack-plugin@2.17.0","_shasum":"40d4e0010191d8f4d18b7843d713bc5ea3fcbae8","_from":".","_npmVersion":"3.3.12","_nodeVersion":"4.2.2","_npmUser":{"name":"jantimon","email":"j.nicklas@me.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},{"name":"jantimon","email":"j.nicklas@me.com"}],"dist":{"shasum":"40d4e0010191d8f4d18b7843d713bc5ea3fcbae8","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-2.17.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/html-webpack-plugin-2.17.0.tgz_1463181263019_0.29180851113051176"},"directories":{}},"2.18.0":{"name":"html-webpack-plugin","version":"2.18.0","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","default_index.ejs","lib/"],"scripts":{"prepublish":"npm run test","pretest":"semistandard","build-examples":"node examples/build-examples.js","test":"jasmine"},"repository":{"type":"git","url":"git+https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","html-webpack-plugin"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","devDependencies":{"appcache-webpack-plugin":"^1.2.1","css-loader":"^0.23.1","dir-compare":"1.0.1","es6-promise":"^3.2.1","extract-text-webpack-plugin":"^1.0.1","file-loader":"^0.8.5","html-loader":"^0.4.3","jade":"^1.11.0","jade-loader":"^0.8.0","jasmine":"^2.4.1","rimraf":"^2.5.2","semistandard":"^7.0.5","style-loader":"^0.13.1","underscore-template-loader":"^0.7.3","url-loader":"^0.5.7","webpack":"^1.13.0","webpack-recompilation-simulator":"^1.3.0"},"dependencies":{"bluebird":"^3.3.5","html-minifier":"^2.1.3","loader-utils":"^0.2.15","lodash":"^4.12.0","pretty-error":"^2.0.0","toposort":"^1.0.0"},"gitHead":"3a106993190fe5791895b5f60067e5c5959912b8","_id":"html-webpack-plugin@2.18.0","_shasum":"bc2ea4b2378f4df64cc8362db69536d076156396","_from":".","_npmVersion":"3.9.1","_nodeVersion":"4.2.2","_npmUser":{"name":"jantimon","email":"j.nicklas@me.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},{"name":"jantimon","email":"j.nicklas@me.com"}],"dist":{"shasum":"bc2ea4b2378f4df64cc8362db69536d076156396","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-2.18.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/html-webpack-plugin-2.18.0.tgz_1464520683885_0.22415767679922283"},"directories":{}},"2.19.0":{"name":"html-webpack-plugin","version":"2.19.0","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","default_index.ejs","lib/"],"scripts":{"prepublish":"npm run test","pretest":"semistandard","build-examples":"node examples/build-examples.js","test":"jasmine"},"repository":{"type":"git","url":"git+https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","html-webpack-plugin"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","devDependencies":{"appcache-webpack-plugin":"^1.2.1","css-loader":"^0.23.1","dir-compare":"1.0.1","es6-promise":"^3.2.1","extract-text-webpack-plugin":"^1.0.1","file-loader":"^0.8.5","html-loader":"^0.4.3","jade":"^1.11.0","jade-loader":"^0.8.0","jasmine":"^2.4.1","rimraf":"^2.5.2","semistandard":"^7.0.5","style-loader":"^0.13.1","underscore-template-loader":"^0.7.3","url-loader":"^0.5.7","webpack":"^1.13.0","webpack-recompilation-simulator":"^1.3.0"},"dependencies":{"bluebird":"^3.3.5","html-minifier":"^2.1.3","loader-utils":"^0.2.15","lodash":"^4.12.0","pretty-error":"^2.0.0","toposort":"^1.0.0"},"gitHead":"c229fcbab27126c427dfd2678d10b410c3de275b","_id":"html-webpack-plugin@2.19.0","_shasum":"f8aff526035ed3c382b4b79b8da5762a97d8952e","_from":".","_npmVersion":"3.9.1","_nodeVersion":"4.2.2","_npmUser":{"name":"jantimon","email":"j.nicklas@me.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},{"name":"jantimon","email":"j.nicklas@me.com"}],"dist":{"shasum":"f8aff526035ed3c382b4b79b8da5762a97d8952e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-2.19.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/html-webpack-plugin-2.19.0.tgz_1464602808433_0.41104411031119525"},"directories":{}},"2.20.0":{"name":"html-webpack-plugin","version":"2.20.0","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","default_index.ejs","lib/"],"scripts":{"prepublish":"npm run test","pretest":"semistandard","build-examples":"node examples/build-examples.js","test":"jasmine"},"repository":{"type":"git","url":"git+https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","html-webpack-plugin"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","devDependencies":{"appcache-webpack-plugin":"^1.2.1","css-loader":"^0.23.1","dir-compare":"1.0.1","es6-promise":"^3.2.1","extract-text-webpack-plugin":"^1.0.1","file-loader":"^0.8.5","html-loader":"^0.4.3","jade":"^1.11.0","jade-loader":"^0.8.0","jasmine":"^2.4.1","rimraf":"^2.5.2","semistandard":"^7.0.5","style-loader":"^0.13.1","underscore-template-loader":"^0.7.3","url-loader":"^0.5.7","webpack":"^1.13.0","webpack-recompilation-simulator":"^1.3.0"},"dependencies":{"bluebird":"^3.3.5","html-minifier":"^2.1.3","loader-utils":"^0.2.15","lodash":"^4.12.0","pretty-error":"^2.0.0","toposort":"^1.0.0"},"gitHead":"c2982a89778511781a5bd2c68c232ff1da0ac237","_id":"html-webpack-plugin@2.20.0","_shasum":"3fc4840f7abee420538deaa6d477ae61b4223a2b","_from":".","_npmVersion":"3.9.1","_nodeVersion":"4.2.2","_npmUser":{"name":"jantimon","email":"j.nicklas@me.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},{"name":"jantimon","email":"j.nicklas@me.com"}],"dist":{"shasum":"3fc4840f7abee420538deaa6d477ae61b4223a2b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-2.20.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/html-webpack-plugin-2.20.0.tgz_1465539415315_0.04082104074768722"},"directories":{}},"2.21.0":{"name":"html-webpack-plugin","version":"2.21.0","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","default_index.ejs","lib/"],"scripts":{"prepublish":"npm run test","pretest":"semistandard","build-examples":"node examples/build-examples.js","test":"jasmine"},"repository":{"type":"git","url":"git+https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","html-webpack-plugin"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","devDependencies":{"appcache-webpack-plugin":"^1.2.1","css-loader":"^0.23.1","dir-compare":"1.0.1","es6-promise":"^3.2.1","extract-text-webpack-plugin":"^1.0.1","file-loader":"^0.8.5","html-loader":"^0.4.3","jade":"^1.11.0","jade-loader":"^0.8.0","jasmine":"^2.4.1","rimraf":"^2.5.2","semistandard":"^7.0.5","style-loader":"^0.13.1","underscore-template-loader":"^0.7.3","url-loader":"^0.5.7","webpack":"^1.13.0","webpack-recompilation-simulator":"^1.3.0"},"dependencies":{"bluebird":"^3.3.5","html-minifier":"^2.1.3","loader-utils":"^0.2.15","lodash":"^4.12.0","pretty-error":"^2.0.0","toposort":"^1.0.0"},"gitHead":"fa25bd7718fd77c04d397df987bee4d51a63982b","_id":"html-webpack-plugin@2.21.0","_shasum":"da9200d80e1fbf4cbf73560a8fadec1678c8886d","_from":".","_npmVersion":"3.9.1","_nodeVersion":"4.2.2","_npmUser":{"name":"jantimon","email":"j.nicklas@me.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},{"name":"jantimon","email":"j.nicklas@me.com"}],"dist":{"shasum":"da9200d80e1fbf4cbf73560a8fadec1678c8886d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-2.21.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/html-webpack-plugin-2.21.0.tgz_1465732708340_0.05409826338291168"},"directories":{}},"2.21.1":{"name":"html-webpack-plugin","version":"2.21.1","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","default_index.ejs","lib/"],"scripts":{"prepublish":"npm run test","pretest":"semistandard","build-examples":"node examples/build-examples.js","test":"jasmine"},"repository":{"type":"git","url":"git+https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","html-webpack-plugin"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","devDependencies":{"appcache-webpack-plugin":"^1.2.1","css-loader":"^0.23.1","dir-compare":"1.0.1","es6-promise":"^3.2.1","extract-text-webpack-plugin":"^1.0.1","file-loader":"^0.8.5","html-loader":"^0.4.3","jade":"^1.11.0","jade-loader":"^0.8.0","jasmine":"^2.4.1","rimraf":"^2.5.2","semistandard":"^7.0.5","style-loader":"^0.13.1","underscore-template-loader":"^0.7.3","url-loader":"^0.5.7","webpack":"^1.13.0","webpack-recompilation-simulator":"^1.3.0"},"dependencies":{"bluebird":"^3.3.5","html-minifier":"^2.1.3","loader-utils":"^0.2.15","lodash":"^4.12.0","pretty-error":"^2.0.0","toposort":"^1.0.0"},"gitHead":"c6b45b314ed58ce6b412097a78d994467798cc60","_id":"html-webpack-plugin@2.21.1","_shasum":"513703d471c040db6931a827f22e4cdc0583dcb5","_from":".","_npmVersion":"3.9.3","_nodeVersion":"4.4.4","_npmUser":{"name":"jantimon","email":"j.nicklas@me.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},{"name":"jantimon","email":"j.nicklas@me.com"}],"dist":{"shasum":"513703d471c040db6931a827f22e4cdc0583dcb5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-2.21.1.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/html-webpack-plugin-2.21.1.tgz_1467454670213_0.7626299816183746"},"directories":{}},"2.22.0":{"name":"html-webpack-plugin","version":"2.22.0","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","default_index.ejs","lib/"],"scripts":{"prepublish":"npm run test","pretest":"semistandard","build-examples":"node examples/build-examples.js","test":"jasmine"},"repository":{"type":"git","url":"git+https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","html-webpack-plugin"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","semistandard":{"ignore":["examples/*/dist/**/*.*"]},"devDependencies":{"appcache-webpack-plugin":"^1.2.1","css-loader":"^0.23.1","dir-compare":"1.0.1","es6-promise":"^3.2.1","extract-text-webpack-plugin":"^1.0.1","file-loader":"^0.9.0","html-loader":"^0.4.3","jade":"^1.11.0","jade-loader":"^0.8.0","jasmine":"^2.4.1","rimraf":"^2.5.2","semistandard":"^8.0.0","style-loader":"^0.13.1","underscore-template-loader":"^0.7.3","url-loader":"^0.5.7","webpack":"^1.13.1","webpack-recompilation-simulator":"^1.3.0"},"dependencies":{"bluebird":"^3.4.1","html-minifier":"^2.1.6","loader-utils":"^0.2.15","lodash":"^4.13.1","pretty-error":"^2.0.0","toposort":"^1.0.0"},"peerDependencies":{"webpack":"*"},"gitHead":"8fbbf69e503ce637c7ac92601afea02caff8ebcb","_id":"html-webpack-plugin@2.22.0","_shasum":"7eb02ff9039da84e5ba71004d4693c04b92d2905","_from":".","_npmVersion":"3.9.3","_nodeVersion":"4.4.4","_npmUser":{"name":"jantimon","email":"j.nicklas@me.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},{"name":"jantimon","email":"j.nicklas@me.com"}],"dist":{"shasum":"7eb02ff9039da84e5ba71004d4693c04b92d2905","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-2.22.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/html-webpack-plugin-2.22.0.tgz_1467457096981_0.4767827505711466"},"directories":{}},"2.23.0":{"name":"html-webpack-plugin","version":"2.23.0","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","default_index.ejs","lib/"],"scripts":{"prepublish":"npm run test","pretest":"semistandard","build-examples":"node examples/build-examples.js","test":"jasmine"},"repository":{"type":"git","url":"git+https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","html-webpack-plugin"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","semistandard":{"ignore":["examples/*/dist/**/*.*"]},"devDependencies":{"appcache-webpack-plugin":"^1.3.0","css-loader":"^0.23.1","dir-compare":"1.0.1","es6-promise":"^3.2.1","extract-text-webpack-plugin":"^1.0.1","file-loader":"^0.9.0","html-loader":"^0.4.3","jade":"^1.11.0","jade-loader":"^0.8.0","jasmine":"^2.4.1","rimraf":"^2.5.4","semistandard":"^8.0.0","style-loader":"^0.13.1","underscore-template-loader":"^0.7.3","url-loader":"^0.5.7","webpack":"^1.13.1","webpack-recompilation-simulator":"^1.3.0"},"dependencies":{"bluebird":"^3.4.1","html-minifier":"^3.0.2","loader-utils":"^0.2.15","lodash":"^4.14.2","pretty-error":"^2.0.0","toposort":"^1.0.0"},"peerDependencies":{"webpack":"*"},"gitHead":"263b5b6bded4f873d45051a926c168a5f94ca1f7","_id":"html-webpack-plugin@2.23.0","_shasum":"728c1313b57252755e43b1346af958fbc76a9406","_from":".","_npmVersion":"3.10.7","_nodeVersion":"4.4.4","_npmUser":{"name":"jantimon","email":"j.nicklas@me.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},{"name":"jantimon","email":"j.nicklas@me.com"}],"dist":{"shasum":"728c1313b57252755e43b1346af958fbc76a9406","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-2.23.0.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/html-webpack-plugin-2.23.0.tgz_1477034903515_0.15693982457742095"},"directories":{}},"2.24.0":{"name":"html-webpack-plugin","version":"2.24.0","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","default_index.ejs","lib/"],"scripts":{"prepublish":"npm run test","pretest":"semistandard","build-examples":"node examples/build-examples.js","test":"jasmine"},"repository":{"type":"git","url":"git+https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","html-webpack-plugin"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","semistandard":{"ignore":["examples/*/dist/**/*.*"]},"devDependencies":{"appcache-webpack-plugin":"^1.3.0","css-loader":"^0.25.0","dir-compare":"1.2.0","es6-promise":"^4.0.5","extract-text-webpack-plugin":"^1.0.1","file-loader":"^0.9.0","html-loader":"^0.4.4","jade":"^1.11.0","jade-loader":"^0.8.0","jasmine":"^2.5.2","rimraf":"^2.5.4","semistandard":"8.0.0","style-loader":"^0.13.1","underscore-template-loader":"^0.7.3","url-loader":"^0.5.7","webpack":"^1.13.2","webpack-recompilation-simulator":"^1.3.0"},"dependencies":{"bluebird":"^3.4.6","html-minifier":"^3.1.0","loader-utils":"^0.2.16","lodash":"^4.16.4","pretty-error":"^2.0.2","toposort":"^1.0.0"},"peerDependencies":{"webpack":"1 || ^2.1.0-beta"},"gitHead":"1a2e2b3e94bc62569ee7b748da88b1b85f2f79c2","_id":"html-webpack-plugin@2.24.0","_shasum":"53697cea79a9f3cd1f8c239ac71f949d5673cacb","_from":".","_npmVersion":"3.10.7","_nodeVersion":"4.4.4","_npmUser":{"name":"jantimon","email":"j.nicklas@me.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},{"name":"jantimon","email":"j.nicklas@me.com"}],"dist":{"shasum":"53697cea79a9f3cd1f8c239ac71f949d5673cacb","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-2.24.0.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/html-webpack-plugin-2.24.0.tgz_1477037817668_0.509069389430806"},"directories":{}},"2.24.1":{"name":"html-webpack-plugin","version":"2.24.1","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","default_index.ejs","lib/"],"scripts":{"prepublish":"npm run test","pretest":"semistandard","build-examples":"node examples/build-examples.js","test":"jasmine"},"repository":{"type":"git","url":"git+https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","html-webpack-plugin"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","semistandard":{"ignore":["examples/*/dist/**/*.*"]},"devDependencies":{"appcache-webpack-plugin":"^1.3.0","css-loader":"^0.25.0","dir-compare":"1.2.0","es6-promise":"^4.0.5","extract-text-webpack-plugin":"^1.0.1","file-loader":"^0.9.0","html-loader":"^0.4.4","jade":"^1.11.0","jade-loader":"^0.8.0","jasmine":"^2.5.2","rimraf":"^2.5.4","semistandard":"8.0.0","style-loader":"^0.13.1","underscore-template-loader":"^0.7.3","url-loader":"^0.5.7","webpack":"^1.13.2","webpack-recompilation-simulator":"^1.3.0"},"dependencies":{"bluebird":"^3.4.6","html-minifier":"^3.1.0","loader-utils":"^0.2.16","lodash":"^4.16.4","pretty-error":"^2.0.2","toposort":"^1.0.0"},"peerDependencies":{"webpack":"1 || ^2.1.0-beta"},"gitHead":"03320747dc4b910517e5aec862429465c0622c43","_id":"html-webpack-plugin@2.24.1","_shasum":"7f45fc678f66eac2d433f22336b4399da023b57e","_from":".","_npmVersion":"3.10.7","_nodeVersion":"4.4.4","_npmUser":{"name":"jantimon","email":"j.nicklas@me.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},{"name":"jantimon","email":"j.nicklas@me.com"}],"dist":{"shasum":"7f45fc678f66eac2d433f22336b4399da023b57e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-2.24.1.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/html-webpack-plugin-2.24.1.tgz_1477900638085_0.590472485171631"},"directories":{}},"2.25.0":{"name":"html-webpack-plugin","version":"2.25.0","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","default_index.ejs","lib/"],"scripts":{"prepublish":"npm run test","pretest":"semistandard","build-examples":"node examples/build-examples.js","test":"jasmine"},"repository":{"type":"git","url":"git+https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","html-webpack-plugin"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","semistandard":{"ignore":["examples/*/dist/**/*.*"]},"devDependencies":{"appcache-webpack-plugin":"^1.3.0","css-loader":"^0.25.0","dir-compare":"1.2.0","es6-promise":"^4.0.5","extract-text-webpack-plugin":"^1.0.1","file-loader":"^0.9.0","html-loader":"^0.4.4","jade":"^1.11.0","jade-loader":"^0.8.0","jasmine":"^2.5.2","rimraf":"^2.5.4","semistandard":"8.0.0","style-loader":"^0.13.1","underscore-template-loader":"^0.7.3","url-loader":"^0.5.7","webpack":"^1.13.2","webpack-recompilation-simulator":"^1.3.0"},"dependencies":{"bluebird":"^3.4.6","html-minifier":"^3.1.0","loader-utils":"^0.2.16","lodash":"^4.16.4","pretty-error":"^2.0.2","toposort":"^1.0.0"},"peerDependencies":{"webpack":"1 || ^2 || ^2.1.0-beta || ^2.2.0-rc"},"gitHead":"be5d67af5bc3145a667c0c80ea19a364ca031219","_id":"html-webpack-plugin@2.25.0","_shasum":"945c860c9bf413d725a09f773d09cfeca72e8f8a","_from":".","_npmVersion":"3.10.7","_nodeVersion":"4.4.4","_npmUser":{"name":"jantimon","email":"j.nicklas@me.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},{"name":"jantimon","email":"j.nicklas@me.com"}],"dist":{"shasum":"945c860c9bf413d725a09f773d09cfeca72e8f8a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-2.25.0.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/html-webpack-plugin-2.25.0.tgz_1483125272588_0.09761273209005594"},"directories":{}},"2.26.0":{"name":"html-webpack-plugin","version":"2.26.0","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","default_index.ejs","lib/"],"scripts":{"prepublish":"npm run test","pretest":"semistandard","build-examples":"node examples/build-examples.js","test":"jasmine"},"repository":{"type":"git","url":"git+https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","html-webpack-plugin"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","semistandard":{"ignore":["examples/*/dist/**/*.*"]},"devDependencies":{"appcache-webpack-plugin":"^1.3.0","css-loader":"^0.26.1","dir-compare":"1.3.0","es6-promise":"^4.0.5","extract-text-webpack-plugin":"^1.0.1","file-loader":"^0.9.0","html-loader":"^0.4.4","jade":"^1.11.0","jade-loader":"^0.8.0","jasmine":"^2.5.2","rimraf":"^2.5.4","semistandard":"8.0.0","style-loader":"^0.13.1","underscore-template-loader":"^0.7.3","url-loader":"^0.5.7","webpack":"^1.14.0","webpack-recompilation-simulator":"^1.3.0"},"dependencies":{"bluebird":"^3.4.7","html-minifier":"^3.2.3","loader-utils":"^0.2.16","lodash":"^4.17.3","pretty-error":"^2.0.2","toposort":"^1.0.0"},"peerDependencies":{"webpack":"1 || ^2 || ^2.1.0-beta || ^2.2.0-rc"},"gitHead":"d22c23066a2905f41b6acb999cbd5d2a5841de30","_id":"html-webpack-plugin@2.26.0","_shasum":"ba97c8a66f912b85df80d2aeea65966c8bd9249e","_from":".","_npmVersion":"3.10.7","_nodeVersion":"4.4.4","_npmUser":{"name":"jantimon","email":"j.nicklas@me.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},{"name":"jantimon","email":"j.nicklas@me.com"}],"dist":{"shasum":"ba97c8a66f912b85df80d2aeea65966c8bd9249e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-2.26.0.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/html-webpack-plugin-2.26.0.tgz_1483478708409_0.24018886988051236"},"directories":{}},"2.27.0":{"name":"html-webpack-plugin","version":"2.27.0","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","default_index.ejs","lib/"],"scripts":{"prepublish":"npm run test","pretest":"semistandard","build-examples":"node examples/build-examples.js","test":"jasmine"},"repository":{"type":"git","url":"git+https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","html-webpack-plugin"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","semistandard":{"ignore":["examples/*/dist/**/*.*"]},"devDependencies":{"appcache-webpack-plugin":"^1.3.0","css-loader":"^0.26.1","dir-compare":"1.3.0","es6-promise":"^4.0.5","extract-text-webpack-plugin":"^1.0.1","file-loader":"^0.9.0","html-loader":"^0.4.4","jade":"^1.11.0","jade-loader":"^0.8.0","jasmine":"^2.5.2","rimraf":"^2.5.4","semistandard":"8.0.0","style-loader":"^0.13.1","underscore-template-loader":"^0.7.3","url-loader":"^0.5.7","webpack":"^1.14.0","webpack-recompilation-simulator":"^1.3.0"},"dependencies":{"bluebird":"^3.4.7","html-minifier":"^3.2.3","loader-utils":"^0.2.16","lodash":"^4.17.3","pretty-error":"^2.0.2","toposort":"^1.0.0"},"peerDependencies":{"webpack":"1 || ^2 || ^2.1.0-beta || ^2.2.0-rc"},"gitHead":"61ec618c533954688f7adfd470dfe99227831b52","_id":"html-webpack-plugin@2.27.0","_shasum":"fa44bbe932f21f146fe63c5ba3eeef88120eec3a","_from":".","_npmVersion":"3.10.7","_nodeVersion":"4.4.4","_npmUser":{"name":"jantimon","email":"j.nicklas@me.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},{"name":"jantimon","email":"j.nicklas@me.com"}],"dist":{"shasum":"fa44bbe932f21f146fe63c5ba3eeef88120eec3a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-2.27.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/html-webpack-plugin-2.27.0.tgz_1485697459015_0.335798901040107"},"directories":{}},"2.27.1":{"name":"html-webpack-plugin","version":"2.27.1","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","default_index.ejs","lib/"],"scripts":{"prepublish":"npm run test","pretest":"semistandard","build-examples":"node examples/build-examples.js","test":"jasmine"},"repository":{"type":"git","url":"git+https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","html-webpack-plugin"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","semistandard":{"ignore":["examples/*/dist/**/*.*"]},"devDependencies":{"appcache-webpack-plugin":"^1.3.0","css-loader":"^0.26.1","dir-compare":"1.3.0","es6-promise":"^4.0.5","extract-text-webpack-plugin":"^1.0.1","file-loader":"^0.9.0","html-loader":"^0.4.4","jade":"^1.11.0","jade-loader":"^0.8.0","jasmine":"^2.5.2","rimraf":"^2.5.4","semistandard":"8.0.0","style-loader":"^0.13.1","underscore-template-loader":"^0.7.3","url-loader":"^0.5.7","webpack":"^1.14.0","webpack-recompilation-simulator":"^1.3.0"},"dependencies":{"bluebird":"^3.4.7","html-minifier":"^3.2.3","loader-utils":"^0.2.16","lodash":"^4.17.3","pretty-error":"^2.0.2","toposort":"^1.0.0"},"peerDependencies":{"webpack":"1 || ^2 || ^2.1.0-beta || ^2.2.0-rc"},"gitHead":"61ec618c533954688f7adfd470dfe99227831b52","_id":"html-webpack-plugin@2.27.1","_shasum":"c6b660d57b88041aa8b8597e2c8611e1366d30c0","_from":".","_npmVersion":"3.10.7","_nodeVersion":"4.4.4","_npmUser":{"name":"jantimon","email":"j.nicklas@me.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},{"name":"jantimon","email":"j.nicklas@me.com"}],"dist":{"shasum":"c6b660d57b88041aa8b8597e2c8611e1366d30c0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-2.27.1.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/html-webpack-plugin-2.27.1.tgz_1485697553189_0.7057398750912398"},"directories":{}},"2.28.0":{"name":"html-webpack-plugin","version":"2.28.0","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","default_index.ejs","lib/"],"scripts":{"prepublish":"npm run test","pretest":"semistandard","build-examples":"node examples/build-examples.js","test":"jasmine"},"repository":{"type":"git","url":"git+https://github.com/ampedandwired/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","html-webpack-plugin"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/ampedandwired/html-webpack-plugin/issues"},"homepage":"https://github.com/ampedandwired/html-webpack-plugin","semistandard":{"ignore":["examples/*/dist/**/*.*"]},"devDependencies":{"appcache-webpack-plugin":"^1.3.0","css-loader":"^0.26.1","dir-compare":"1.3.0","es6-promise":"^4.0.5","extract-text-webpack-plugin":"^1.0.1","file-loader":"^0.9.0","html-loader":"^0.4.4","jade":"^1.11.0","jade-loader":"^0.8.0","jasmine":"^2.5.2","rimraf":"^2.5.4","semistandard":"8.0.0","style-loader":"^0.13.1","underscore-template-loader":"^0.7.3","url-loader":"^0.5.7","webpack":"^1.14.0","webpack-recompilation-simulator":"^1.3.0"},"dependencies":{"bluebird":"^3.4.7","html-minifier":"^3.2.3","loader-utils":"^0.2.16","lodash":"^4.17.3","pretty-error":"^2.0.2","toposort":"^1.0.0"},"peerDependencies":{"webpack":"1 || ^2 || ^2.1.0-beta || ^2.2.0-rc"},"gitHead":"9bdb6189ea630a634a84aabc81a9bbe8c47bf92b","_id":"html-webpack-plugin@2.28.0","_shasum":"2e7863b57e5fd48fe263303e2ffc934c3064d009","_from":".","_npmVersion":"3.10.7","_nodeVersion":"4.4.4","_npmUser":{"name":"jantimon","email":"j.nicklas@me.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},{"name":"jantimon","email":"j.nicklas@me.com"}],"dist":{"shasum":"2e7863b57e5fd48fe263303e2ffc934c3064d009","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-2.28.0.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/html-webpack-plugin-2.28.0.tgz_1485697699497_0.19483900489285588"},"directories":{}},"2.29.0":{"name":"html-webpack-plugin","version":"2.29.0","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","default_index.ejs","lib/"],"scripts":{"prepublish":"npm run test","pretest":"semistandard","build-examples":"node examples/build-examples.js","test":"jasmine"},"repository":{"type":"git","url":"git+https://github.com/jantimon/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","html-webpack-plugin"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/jantimon/html-webpack-plugin/issues"},"homepage":"https://github.com/jantimon/html-webpack-plugin","semistandard":{"ignore":["examples/*/dist/**/*.*"]},"devDependencies":{"appcache-webpack-plugin":"^1.3.0","css-loader":"^0.26.1","dir-compare":"1.3.0","es6-promise":"^4.0.5","extract-text-webpack-plugin":"^1.0.1","file-loader":"^0.9.0","html-loader":"^0.4.4","jade":"^1.11.0","jade-loader":"^0.8.0","jasmine":"^2.5.2","rimraf":"^2.5.4","semistandard":"8.0.0","style-loader":"^0.13.1","underscore-template-loader":"^0.7.3","url-loader":"^0.5.7","webpack":"^1.14.0","webpack-recompilation-simulator":"^1.3.0"},"dependencies":{"bluebird":"^3.4.7","html-minifier":"^3.2.3","loader-utils":"^0.2.16","lodash":"^4.17.3","pretty-error":"^2.0.2","toposort":"^1.0.0"},"peerDependencies":{"webpack":"1 || ^2 || ^2.1.0-beta || ^2.2.0-rc || ^3"},"gitHead":"9665c63362c76f24f5e0bef2232432e505c20c9a","_id":"html-webpack-plugin@2.29.0","_shasum":"e987f421853d3b6938c8c4c8171842e5fd17af23","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"jantimon","email":"j.nicklas@me.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},{"name":"jantimon","email":"j.nicklas@me.com"}],"dist":{"shasum":"e987f421853d3b6938c8c4c8171842e5fd17af23","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-2.29.0.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-webpack-plugin-2.29.0.tgz_1498343855330_0.352178722852841"},"directories":{}},"2.30.0":{"name":"html-webpack-plugin","version":"2.30.0","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","default_index.ejs","lib/"],"scripts":{"prepublish":"npm run test","pretest":"semistandard","build-examples":"node examples/build-examples.js","test":"jasmine"},"repository":{"type":"git","url":"git+https://github.com/jantimon/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","html-webpack-plugin"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/jantimon/html-webpack-plugin/issues"},"homepage":"https://github.com/jantimon/html-webpack-plugin","semistandard":{"ignore":["examples/*/dist/**/*.*"]},"devDependencies":{"appcache-webpack-plugin":"^1.3.0","css-loader":"^0.26.1","dir-compare":"1.3.0","es6-promise":"^4.0.5","extract-text-webpack-plugin":"^1.0.1","file-loader":"^0.9.0","html-loader":"^0.4.4","jade":"^1.11.0","jade-loader":"^0.8.0","jasmine":"^2.5.2","rimraf":"^2.5.4","semistandard":"8.0.0","style-loader":"^0.13.1","underscore-template-loader":"^0.7.3","url-loader":"^0.5.7","webpack":"^1.14.0","webpack-recompilation-simulator":"^1.3.0"},"dependencies":{"bluebird":"^3.4.7","html-minifier":"^3.2.3","loader-utils":"^0.2.16","lodash":"^4.17.3","pretty-error":"^2.0.2","toposort":"^1.0.0"},"peerDependencies":{"webpack":"1 || ^2 || ^2.1.0-beta || ^2.2.0-rc || ^3"},"gitHead":"09a96f5500e8294bfa40efa34e12aa178349543d","_id":"html-webpack-plugin@2.30.0","_shasum":"079002176dff3659e471ded9c3be3a1ceb2960c7","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"jantimon","email":"j.nicklas@me.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},{"name":"jantimon","email":"j.nicklas@me.com"}],"dist":{"shasum":"079002176dff3659e471ded9c3be3a1ceb2960c7","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-2.30.0.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-webpack-plugin-2.30.0.tgz_1501492533509_0.6391380063723773"},"directories":{}},"2.30.1":{"name":"html-webpack-plugin","version":"2.30.1","description":"Simplifies creation of HTML files to serve your webpack bundles","main":"index.js","files":["index.js","default_index.ejs","lib/"],"scripts":{"prepublish":"npm run test","pretest":"semistandard","build-examples":"node examples/build-examples.js","test":"jasmine"},"repository":{"type":"git","url":"git+https://github.com/jantimon/html-webpack-plugin.git"},"keywords":["webpack","plugin","html","html-webpack-plugin"],"author":{"name":"Charles Blaxland","email":"charles.blaxland@gmail.com","url":"https://github.com/ampedandwired"},"license":"MIT","bugs":{"url":"https://github.com/jantimon/html-webpack-plugin/issues"},"homepage":"https://github.com/jantimon/html-webpack-plugin","semistandard":{"ignore":["examples/*/dist/**/*.*"]},"devDependencies":{"appcache-webpack-plugin":"^1.3.0","css-loader":"^0.26.1","dir-compare":"1.3.0","es6-promise":"^4.0.5","extract-text-webpack-plugin":"^1.0.1","file-loader":"^0.9.0","html-loader":"^0.4.4","jade":"^1.11.0","jade-loader":"^0.8.0","jasmine":"^2.5.2","rimraf":"^2.5.4","semistandard":"8.0.0","style-loader":"^0.13.1","underscore-template-loader":"^0.7.3","url-loader":"^0.5.7","webpack":"^1.14.0","webpack-recompilation-simulator":"^1.3.0"},"dependencies":{"bluebird":"^3.4.7","html-minifier":"^3.2.3","loader-utils":"^0.2.16","lodash":"^4.17.3","pretty-error":"^2.0.2","toposort":"^1.0.0"},"peerDependencies":{"webpack":"1 || ^2 || ^2.1.0-beta || ^2.2.0-rc || ^3"},"gitHead":"0cf580c628a495d77b85e35ed1b9d244e2ec5ae0","_id":"html-webpack-plugin@2.30.1","_shasum":"7f9c421b7ea91ec460f56527d78df484ee7537d5","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"jantimon","email":"j.nicklas@me.com"},"maintainers":[{"name":"ampedandwired","email":"charles.blaxland@gmail.com"},{"name":"jantimon","email":"j.nicklas@me.com"}],"dist":{"shasum":"7f9c421b7ea91ec460f56527d78df484ee7537d5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/html-webpack-plugin/-/html-webpack-plugin-2.30.1.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-webpack-plugin-2.30.1.tgz_1501512446619_0.5660167150199413"},"directories":{}}},"name":"html-webpack-plugin","time":{"modified":"2017-08-08T08:56:30.783Z","created":"2014-08-13T03:53:03.816Z","0.1.0":"2014-08-13T03:53:03.816Z","0.2.0":"2014-08-13T07:17:24.948Z","0.4.0":"2014-08-13T11:22:18.184Z","1.0.0":"2014-08-13T23:15:37.255Z","1.0.1":"2014-08-14T10:37:00.436Z","1.1.0":"2014-08-14T11:30:58.252Z","1.2.0":"2015-04-20T03:21:42.915Z","1.3.0":"2015-04-23T12:36:17.679Z","1.4.0":"2015-05-18T11:52:21.202Z","1.5.0":"2015-06-09T12:00:54.506Z","1.5.1":"2015-06-12T17:00:14.124Z","1.5.2":"2015-06-12T17:03:04.433Z","1.6.0":"2015-07-08T09:21:16.330Z","1.6.1":"2015-08-04T15:15:08.519Z","2.0.2":"2015-09-09T10:00:13.003Z","2.0.3":"2015-09-18T11:33:59.743Z","2.0.4":"2015-10-08T19:45:30.573Z","1.6.2":"2015-10-08T19:58:48.942Z","2.1.0":"2015-11-23T13:11:13.445Z","1.7.0":"2015-11-23T13:14:36.447Z","2.2.0":"2016-01-07T09:23:28.170Z","2.3.0":"2016-01-07T10:14:59.134Z","2.4.0":"2016-01-08T09:14:49.062Z","2.5.0":"2016-01-11T15:09:58.357Z","2.6.0":"2016-01-11T21:01:31.004Z","2.6.1":"2016-01-12T08:29:57.230Z","2.6.2":"2016-01-15T16:06:09.463Z","2.6.3":"2016-01-18T15:02:47.016Z","2.6.4":"2016-01-19T08:53:54.500Z","2.6.5":"2016-01-19T13:53:07.908Z","2.7.1":"2016-01-20T16:13:50.830Z","2.7.2":"2016-01-24T18:10:45.355Z","2.8.0":"2016-02-03T17:01:13.176Z","2.8.1":"2016-02-03T17:04:34.660Z","2.8.2":"2016-02-16T07:15:06.730Z","2.9.0":"2016-02-17T12:18:33.369Z","2.10.0":"2016-03-10T10:14:56.100Z","2.11.0":"2016-03-20T13:12:59.438Z","2.12.0":"2016-03-20T14:41:01.154Z","2.13.0":"2016-03-23T09:08:24.370Z","2.14.0":"2016-03-23T09:12:54.827Z","2.15.0":"2016-03-29T16:44:35.771Z","2.16.0":"2016-04-18T11:16:43.072Z","2.16.1":"2016-05-02T16:08:38.013Z","2.16.2":"2016-05-13T09:51:56.421Z","2.17.0":"2016-05-13T23:14:25.098Z","2.18.0":"2016-05-29T11:18:06.339Z","2.19.0":"2016-05-30T10:06:50.543Z","2.20.0":"2016-06-10T06:16:57.720Z","2.21.0":"2016-06-12T11:58:31.351Z","2.21.1":"2016-07-02T10:17:52.406Z","2.22.0":"2016-07-02T10:58:19.564Z","2.23.0":"2016-10-21T07:28:24.459Z","2.24.0":"2016-10-21T08:16:58.683Z","2.24.1":"2016-10-31T07:57:20.324Z","2.25.0":"2016-12-30T19:14:33.304Z","2.26.0":"2017-01-03T21:25:09.150Z","2.27.0":"2017-01-29T13:44:20.951Z","2.27.1":"2017-01-29T13:45:53.823Z","2.28.0":"2017-01-29T13:48:20.142Z","2.29.0":"2017-06-24T22:37:36.524Z","2.30.0":"2017-07-31T09:15:34.622Z","2.30.1":"2017-07-31T14:47:27.717Z"},"readmeFilename":"README.md","homepage":"https://github.com/jantimon/html-webpack-plugin"}