{"maintainers":[{"name":"alexlamsl","email":"alex+npm@starthq.com"},{"name":"kangax","email":"kangax@gmail.com"}],"keywords":["cli","compress","compressor","css","html","htmlmin","javascript","min","minification","minifier","minify","optimize","optimizer","pack","packer","parse","parser","uglifier","uglify"],"dist-tags":{"latest":"3.5.0"},"author":{"name":"Juriy \"kangax\" Zaytsev"},"description":"Highly configurable, well-tested, JavaScript-based HTML minifier.","readme":"# HTMLMinifier\n\n[![NPM version](https://img.shields.io/npm/v/html-minifier.svg)](https://www.npmjs.com/package/html-minifier)\n[![Build Status](https://img.shields.io/travis/kangax/html-minifier.svg)](https://travis-ci.org/kangax/html-minifier)\n[![Dependency Status](https://img.shields.io/david/kangax/html-minifier.svg)](https://david-dm.org/kangax/html-minifier)\n[![devDependency Status](https://img.shields.io/david/dev/kangax/html-minifier.svg)](https://david-dm.org/kangax/html-minifier?type=dev)\n[![Gitter](https://img.shields.io/gitter/room/kangax/html-minifier.svg)](https://gitter.im/kangax/html-minifier)\n\n[HTMLMinifier](http://kangax.github.io/html-minifier/) is a highly **configurable**, **well-tested**, JavaScript-based HTML minifier.\n\nSee [corresponding blog post](http://perfectionkills.com/experimenting-with-html-minifier/) for all the gory details of [how it works](http://perfectionkills.com/experimenting-with-html-minifier/#how_it_works), [description of each option](http://perfectionkills.com/experimenting-with-html-minifier/#options), [testing results](http://perfectionkills.com/experimenting-with-html-minifier/#field_testing) and [conclusions](http://perfectionkills.com/experimenting-with-html-minifier/#cost_and_benefits).\n\n[Test suite is available online](http://kangax.github.io/html-minifier/tests/).\n\nAlso see corresponding [Ruby wrapper](https://github.com/stereobooster/html_minifier), and for Node.js, [Grunt plugin](https://github.com/gruntjs/grunt-contrib-htmlmin), [Gulp module](https://github.com/jonschlinkert/gulp-htmlmin), [Koa middleware wrapper](https://github.com/koajs/html-minifier) and [Express middleware wrapper](https://github.com/melonmanchan/express-minify-html).\n\nFor lint-like capabilities take a look at [HTMLLint](https://github.com/kangax/html-lint).\n\n## Minification comparison\n\nHow does HTMLMinifier compare to other solutions — [HTML Minifier from Will Peavy](http://www.willpeavy.com/minifier/) (1st result in [Google search for \"html minifier\"](https://www.google.com/#q=html+minifier)) as well as [htmlcompressor.com](http://htmlcompressor.com) and [minimize](https://github.com/Swaagie/minimize)?\n\n| Site                                                                        | Original size *(KB)* | HTMLMinifier | minimize | Will Peavy | htmlcompressor.com |\n| --------------------------------------------------------------------------- |:--------------------:| ------------:| --------:| ----------:| ------------------:|\n| [Google](https://www.google.com/)                                           | 44                   | **42**       | 45       | 46         | 45                 |\n| [HTMLMinifier](https://github.com/kangax/html-minifier)                     | 126                  | **98**       | 106      | 110        | 106                |\n| [CNN](http://www.cnn.com/)                                                  | 133                  | **122**      | 131      | 132        | 126                |\n| [Amazon](http://www.amazon.co.uk/)                                          | 196                  | **164**      | 187      | 190        | n/a                |\n| [New York Times](http://www.nytimes.com/)                                   | 210                  | **141**      | 158      | 158        | 148                |\n| [Stack Overflow](http://stackoverflow.com/)                                 | 218                  | **168**      | 176      | 184        | 174                |\n| [BBC](http://www.bbc.co.uk/)                                                | 240                  | **196**      | 232      | 239        | 227                |\n| [Bootstrap CSS](http://getbootstrap.com/css/)                               | 272                  | **260**      | 269      | 229        | 269                |\n| [Wikipedia](https://en.wikipedia.org/wiki/President_of_the_United_States)   | 549                  | **502**      | 530      | 548        | 529                |\n| [NBC](http://www.nbc.com/)                                                  | 644                  | **612**      | 642      | 645        | n/a                |\n| [Eloquent Javascript](http://eloquentjavascript.net/1st_edition/print.html) | 870                  | **815**      | 840      | 864        | n/a                |\n| [ES6 table](http://kangax.github.io/compat-table/es6/)                      | 4381                 | **3696**     | 4131     | n/a        | n/a                |\n| [ES6 draft](https://tc39.github.io/ecma262/)                                | 5506                 | **4913**     | 5060     | n/a        | n/a                |\n\n## Options Quick Reference\n\nMost of the options are disabled by default.\n\n| Option                         | Description     | Default |\n|--------------------------------|-----------------|---------|\n| `caseSensitive`                | Treat attributes in case sensitive manner (useful for custom HTML tags) | `false` |\n| `collapseBooleanAttributes`    | [Omit attribute values from boolean attributes](http://perfectionkills.com/experimenting-with-html-minifier/#collapse_boolean_attributes) | `false` |\n| `collapseInlineTagWhitespace`  | Don't leave any spaces between `display:inline;` elements when collapsing. Must be used in conjunction with `collapseWhitespace=true` | `false` |\n| `collapseWhitespace`           | [Collapse white space that contributes to text nodes in a document tree](http://perfectionkills.com/experimenting-with-html-minifier/#collapse_whitespace) | `false` |\n| `conservativeCollapse`         | Always collapse to 1 space (never remove it entirely). Must be used in conjunction with `collapseWhitespace=true` | `false` |\n| `customAttrAssign`             | Arrays of regex'es that allow to support custom attribute assign expressions (e.g. `'<div flex?=\"{{mode != cover}}\"></div>'`) | `[ ]` |\n| `customAttrCollapse`           | Regex that specifies custom attribute to strip newlines from (e.g. `/ng-class/`) | |\n| `customAttrSurround`           | Arrays of regex'es that allow to support custom attribute surround expressions (e.g. `<input {{#if value}}checked=\"checked\"{{/if}}>`) | `[ ]` |\n| `customEventAttributes`        | Arrays of regex'es that allow to support custom event attributes for `minifyJS` (e.g. `ng-click`) | `[ /^on[a-z]{3,}$/ ]` |\n| `decodeEntities`               | Use direct Unicode characters whenever possible | `false` |\n| `html5`                        | Parse input according to HTML5 specifications | `true` |\n| `ignoreCustomComments`         | Array of regex'es that allow to ignore certain comments, when matched | `[ /^!/ ]` |\n| `ignoreCustomFragments`        | Array of regex'es that allow to ignore certain fragments, when matched (e.g. `<?php ... ?>`, `{{ ... }}`, etc.)  | `[ /<%[\\s\\S]*?%>/, /<\\?[\\s\\S]*?\\?>/ ]` |\n| `includeAutoGeneratedTags`     | Insert tags generated by HTML parser | `true` |\n| `keepClosingSlash`             | Keep the trailing slash on singleton elements | `false` |\n| `maxLineLength`                | Specify a maximum line length. Compressed output will be split by newlines at valid HTML split-points |\n| `minifyCSS`                    | Minify CSS in style elements and style attributes (uses [clean-css](https://github.com/jakubpawlowicz/clean-css)) | `false` (could be `true`, `Object`, `Function(text)`) |\n| `minifyJS`                     | Minify JavaScript in script elements and event attributes (uses [UglifyJS](https://github.com/mishoo/UglifyJS2)) | `false` (could be `true`, `Object`, `Function(text, inline)`) |\n| `minifyURLs`                   | Minify URLs in various attributes (uses [relateurl](https://github.com/stevenvachon/relateurl)) | `false` (could be `String`, `Object`, `Function(text)`) |\n| `preserveLineBreaks`           | Always collapse to 1 line break (never remove it entirely) when whitespace between tags include a line break. Must be used in conjunction with `collapseWhitespace=true` | `false` |\n| `preventAttributesEscaping`    | Prevents the escaping of the values of attributes | `false` |\n| `processConditionalComments`   | Process contents of conditional comments through minifier | `false` |\n| `processScripts`               | Array of strings corresponding to types of script elements to process through minifier (e.g. `text/ng-template`, `text/x-handlebars-template`, etc.) | `[ ]` |\n| `quoteCharacter`               | Type of quote to use for attribute values (' or \") | |\n| `removeAttributeQuotes`        | [Remove quotes around attributes when possible](http://perfectionkills.com/experimenting-with-html-minifier/#remove_attribute_quotes) | `false` |\n| `removeComments`               | [Strip HTML comments](http://perfectionkills.com/experimenting-with-html-minifier/#remove_comments) | `false` |\n| `removeEmptyAttributes`        | [Remove all attributes with whitespace-only values](http://perfectionkills.com/experimenting-with-html-minifier/#remove_empty_or_blank_attributes) | `false` (could be `true`, `Function(attrName, tag)`) |\n| `removeEmptyElements`          | [Remove all elements with empty contents](http://perfectionkills.com/experimenting-with-html-minifier/#remove_empty_elements) | `false` |\n| `removeOptionalTags`           | [Remove optional tags](http://perfectionkills.com/experimenting-with-html-minifier/#remove_optional_tags) | `false` |\n| `removeRedundantAttributes`    | [Remove attributes when value matches default.](http://perfectionkills.com/experimenting-with-html-minifier/#remove_redundant_attributes) | `false` |\n| `removeScriptTypeAttributes`   | Remove `type=\"text/javascript\"` from `script` tags. Other `type` attribute values are left intact | `false` |\n| `removeStyleLinkTypeAttributes`| Remove `type=\"text/css\"` from `style` and `link` tags. Other `type` attribute values are left intact | `false` |\n| `removeTagWhitespace`          | Remove space between attributes whenever possible. **Note that this will result in invalid HTML!** | `false` |\n| `sortAttributes`               | [Sort attributes by frequency](#sorting-attributes--style-classes) | `false` |\n| `sortClassName`                | [Sort style classes by frequency](#sorting-attributes--style-classes) | `false` |\n| `trimCustomFragments`          | Trim white space around `ignoreCustomFragments`. | `false` |\n| `useShortDoctype`              | [Replaces the `doctype` with the short (HTML5) doctype](http://perfectionkills.com/experimenting-with-html-minifier/#use_short_doctype) | `false` |\n\n### Sorting attributes / style classes\n\nMinifier options like `sortAttributes` and `sortClassName` won't impact the plain-text size of the output. However, they form long repetitive chains of characters that should improve compression ratio of gzip used in HTTP compression.\n\n## Special cases\n\n### Ignoring chunks of markup\n\nIf you have chunks of markup you would like preserved, you can wrap them `<!-- htmlmin:ignore -->`.\n\n### Preserving SVG tags\n\nSVG tags are automatically recognized, and when they are minified, both case-sensitivity and closing-slashes are preserved, regardless of the minification settings used for the rest of the file.\n\n### Working with invalid markup\n\nHTMLMinifier **can't work with invalid or partial chunks of markup**. This is because it parses markup into a tree structure, then modifies it (removing anything that was specified for removal, ignoring anything that was specified to be ignored, etc.), then it creates a markup out of that tree and returns it.\n\nInput markup (e.g. `<p id=\"\">foo`)\n\n↓\n\nInternal representation of markup in a form of tree (e.g. `{ tag: \"p\", attr: \"id\", children: [\"foo\"] }`)\n\n↓\n\nTransformation of internal representation (e.g. removal of `id` attribute)\n\n↓\n\nOutput of resulting markup (e.g. `<p>foo</p>`)\n\nHTMLMinifier can't know that original markup was only half of the tree; it does its best to try to parse it as a full tree and it loses information about tree being malformed or partial in the beginning. As a result, it can't create a partial/malformed tree at the time of the output.\n\n## Installation Instructions\n\nFrom NPM for use as a command line app:\n\n```shell\nnpm install html-minifier -g\n```\n\nFrom NPM for programmatic use:\n\n```shell\nnpm install html-minifier\n```\n\nFrom Git:\n\n```shell\ngit clone git://github.com/kangax/html-minifier.git\ncd html-minifier\nnpm link .\n```\n\n## Usage\n\nFor command line usage please see `html-minifier --help`\n\n### Node.js\n\n```js\nvar minify = require('html-minifier').minify;\nvar result = minify('<p title=\"blah\" id=\"moo\">foo</p>', {\n  removeAttributeQuotes: true\n});\nresult; // '<p title=blah id=moo>foo</p>'\n```\n\n## Running benchmarks\n\nBenchmarks for minified HTML:\n\n```shell\nnode benchmark.js\n```\n","repository":{"type":"git","url":"git+https://github.com/kangax/html-minifier.git"},"users":{"gloddy":true,"csbun":true,"niccai":true,"dazld":true,"ziink":true,"reekdeb":true,"snhasani":true,"hitesh":true,"zhangyaochun":true,"beliy":true,"kangax":true,"inflowmotion":true,"grimmjaw":true,"derekyo77":true,"andamira":true,"minghe":true,"joaocunha":true,"sm0ck1":true,"raiseandfall":true,"mamboer":true,"mjwilliams":true,"jcottam":true,"zaptun":true,"alejcerro":true,"timtian":true,"markymark":true,"dandv":true,"nanook":true,"m412c0":true,"cypark":true,"neomorphic":true,"denji":true,"pandao":true,"russiansoon":true,"viweei":true,"michaeldegroot":true,"schwartzman":true,"milfromoz":true,"dorayx":true,"rubiadias":true,"markoni":true,"danielbankhead":true,"dennisli87":true,"katopz":true,"itskdk":true,"f124275809":true,"landy2014":true,"antixrist":true,"marcobiedermann":true,"makknife":true,"sushiilbharti":true,"demiurgosoft":true,"huangkerui":true,"dgautsch":true,"aquarch":true,"langri-sha":true,"timothyw-zou":true,"finnhvman":true,"haoxiaodan":true,"monjer":true,"danielbayley":true,"fedeghe":true,"pixelcraft":true,"budparr":true,"h0ward":true,"kikna":true,"lachriz":true,"vinbhatt":true,"modood":true,"klimnikita":true,"anderpo":true},"bugs":{"url":"https://github.com/kangax/html-minifier/issues"},"license":"MIT","versions":{"0.4.3":{"name":"html-minifier","version":"0.4.3","description":"HTML minifier with lint-like capabilities.","keywords":["html","minifier","lint"],"maintainers":[{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"}],"licenses":[{"type":"MIT","url":"https://github.com/kangax/html-minifier/blob/gh-pages/src/license.txt"}],"repositories":[{"type":"git","url":"git://github.com/kangax/html-minifier.git"}],"engines":{"node":">=0.4.8"},"directories":{"src":"./src"},"main":"./src/htmlminifier.js","_npmJsonOpts":{"file":"/Users/kangax/.npm/html-minifier/0.4.3/package/package.json","wscript":false,"contributors":false,"serverjs":false},"_id":"html-minifier@0.4.3","dependencies":{},"devDependencies":{},"_engineSupported":true,"_npmVersion":"1.0.22","_nodeVersion":"v0.4.10","_defaultsLoaded":true,"dist":{"shasum":"193b65f5e1a901b74356e656aab24453494fb872","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-0.4.3.tgz"},"scripts":{}},"0.4.4":{"name":"html-minifier","version":"0.4.4","description":"HTML minifier with lint-like capabilities.","keywords":["html","minifier","lint"],"maintainers":[{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"}],"licenses":[{"type":"MIT","url":"https://github.com/kangax/html-minifier/blob/gh-pages/src/license.txt"}],"repositories":[{"type":"git","url":"git://github.com/kangax/html-minifier.git"}],"engines":{"node":">=0.4.8"},"directories":{"src":"./src"},"main":"./src/htmlminifier.js","_npmJsonOpts":{"file":"/Users/kangax/.npm/html-minifier/0.4.4/package/package.json","wscript":false,"contributors":false,"serverjs":false},"_id":"html-minifier@0.4.4","dependencies":{},"devDependencies":{},"_engineSupported":true,"_npmVersion":"1.0.22","_nodeVersion":"v0.4.10","_defaultsLoaded":true,"dist":{"shasum":"9d76bb2328cbc1524b1c1bfcfb6bd694de5d18a8","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-0.4.4.tgz"},"scripts":{}},"0.4.5":{"name":"html-minifier","description":"HTML minifier with lint-like capabilities.","version":"0.4.5","keywords":["html","minifier","lint"],"url":"http://github.com/kangax/html-minifier","maintainers":[{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"}],"licenses":[{"type":"MIT","url":"https://github.com/kangax/html-minifier/blob/gh-pages/src/license.txt"}],"repository":{"type":"git","url":"git://github.com/kangax/html-minifier.git"},"engines":{"node":">=0.4.8"},"directories":{"src":"./src"},"main":"./src/htmlminifier.js","_npmJsonOpts":{"file":"/Users/kangax/.npm/html-minifier/0.4.5/package/package.json","wscript":false,"contributors":false,"serverjs":false},"_id":"html-minifier@0.4.5","dependencies":{},"devDependencies":{},"_engineSupported":true,"_npmVersion":"1.0.22","_nodeVersion":"v0.4.10","_defaultsLoaded":true,"dist":{"shasum":"763a1c806c0c18ee8117021bf137b18db056e786","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-0.4.5.tgz"},"scripts":{}},"0.5.0":{"name":"html-minifier","description":"HTML minifier with lint-like capabilities.","version":"0.5.0","keywords":["html","minifier","lint"],"url":"http://github.com/kangax/html-minifier","maintainers":[{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"}],"licenses":[{"type":"MIT","url":"https://github.com/kangax/html-minifier/blob/gh-pages/src/license.txt"}],"repository":{"type":"git","url":"git://github.com/kangax/html-minifier"},"engines":{"node":">=0.4.8"},"directories":{"src":"./src"},"scripts":{"test":"node test.js"},"devDependencies":{"qunit":"0.5.x","jshint":"1.1.x","uglify-js":"2.2.x"},"main":"./src/htmlminifier.js","_id":"html-minifier@0.5.0","dist":{"shasum":"69335cb085be54df4f382976329a931372fdd163","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-0.5.0.tgz"},"_from":".","_npmVersion":"1.2.14","_npmUser":{"name":"kangax","email":"kangax@gmail.com"}},"0.5.1":{"name":"html-minifier","description":"HTML minifier with lint-like capabilities.","version":"0.5.1","keywords":["html","minifier","lint"],"url":"http://github.com/kangax/html-minifier","maintainers":[{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"}],"licenses":[{"type":"MIT","url":"https://github.com/kangax/html-minifier/blob/gh-pages/LICENSE"}],"repository":{"type":"git","url":"git://github.com/kangax/html-minifier"},"engines":{"node":">=0.4.8"},"directories":{"src":"./src"},"scripts":{"test":"jshint src/htmlminifier.js src/htmllint.js && cat src/htmlparser.js src/htmlminifier.js src/htmllint.js > dist/all.js && node test.js"},"devDependencies":{"qunit":"0.5.x","jshint":"1.1.x","uglify-js":"2.2.x"},"main":"./dist/all.js","_id":"html-minifier@0.5.1","dist":{"shasum":"954877c13e9df7104addcf629e3f92e4889f0a5e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-0.5.1.tgz"},"_from":".","_npmVersion":"1.2.14","_npmUser":{"name":"kangax","email":"kangax@gmail.com"}},"0.5.2":{"name":"html-minifier","description":"HTML minifier with lint-like capabilities.","version":"0.5.2","keywords":["html","minifier","lint"],"url":"http://github.com/kangax/html-minifier","maintainers":[{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"}],"licenses":[{"type":"MIT","url":"https://github.com/kangax/html-minifier/blob/gh-pages/LICENSE"}],"repository":{"type":"git","url":"git://github.com/kangax/html-minifier"},"engines":{"node":">=0.4.8"},"directories":{"src":"./src"},"scripts":{"test":"jshint src/htmlminifier.js src/htmllint.js && cat src/htmlparser.js src/htmlminifier.js src/htmllint.js > dist/all.js && node test.js"},"devDependencies":{"qunit":"0.5.x","jshint":"1.1.x","uglify-js":"2.2.x"},"main":"./dist/all.js","_id":"html-minifier@0.5.2","dist":{"shasum":"4e95cb29778292743b31262c7eeaac1dfb2e801b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-0.5.2.tgz"},"_from":".","_npmVersion":"1.2.14","_npmUser":{"name":"kangax","email":"kangax@gmail.com"}},"0.5.4":{"name":"html-minifier","description":"HTML minifier with lint-like capabilities.","version":"0.5.4","keywords":["html","minifier","lint"],"url":"http://github.com/kangax/html-minifier","maintainers":[{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"}],"licenses":[{"type":"MIT","url":"https://github.com/kangax/html-minifier/blob/gh-pages/LICENSE"}],"repository":{"type":"git","url":"git://github.com/kangax/html-minifier"},"engines":{"node":">=0.4.8"},"directories":{"src":"./src"},"scripts":{"test":"jshint src/htmlminifier.js src/htmllint.js && cat src/htmlparser.js src/htmlminifier.js src/htmllint.js > dist/all.js && node test.js"},"devDependencies":{"qunit":"0.5.x","jshint":"1.1.x","uglify-js":"2.2.x"},"main":"./dist/all.js","bugs":{"url":"https://github.com/kangax/html-minifier/issues"},"_id":"html-minifier@0.5.4","dist":{"shasum":"f84ecb10afe3d0918e6c371c43c51d42769173a2","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-0.5.4.tgz"},"_from":".","_npmVersion":"1.3.2","_npmUser":{"name":"kangax","email":"kangax@gmail.com"}},"0.5.5":{"name":"html-minifier","description":"HTML minifier with lint-like capabilities.","version":"0.5.5","keywords":["html","minifier","lint"],"url":"http://github.com/kangax/html-minifier","maintainers":[{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"}],"licenses":[{"type":"MIT","url":"https://github.com/kangax/html-minifier/blob/gh-pages/LICENSE"}],"repository":{"type":"git","url":"git://github.com/kangax/html-minifier"},"engines":{"node":">=0.4.8"},"directories":{"src":"./src"},"scripts":{"test":"jshint src/htmlminifier.js src/htmllint.js && cat src/htmlparser.js src/htmlminifier.js src/htmllint.js > dist/all.js && node test.js"},"devDependencies":{"qunit":"0.5.x","jshint":"1.1.x","uglify-js":"2.2.x"},"main":"./dist/all.js","bugs":{"url":"https://github.com/kangax/html-minifier/issues"},"_id":"html-minifier@0.5.5","dist":{"shasum":"b3f9be3fd1aa30ebf55c29c7e92bd3f4a5268867","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-0.5.5.tgz"},"_from":".","_npmVersion":"1.3.11","_npmUser":{"name":"kangax","email":"kangax@gmail.com"}},"0.5.6":{"name":"html-minifier","description":"HTML minifier with lint-like capabilities.","version":"0.5.6","keywords":["html","minifier","lint"],"url":"http://github.com/kangax/html-minifier","homepage":"http://kangax.github.io/html-minifier/","author":{"name":"Juriy \"kangax\" Zaytsev"},"maintainers":[{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"}],"license":{"type":"MIT","url":"https://github.com/kangax/html-minifier/blob/gh-pages/LICENSE"},"repository":{"type":"git","url":"git://github.com/kangax/html-minifier"},"bugs":{"url":"https://github.com/kangax/html-minifier/issues"},"engines":{"node":">=0.8.0"},"directories":{"test":"tests"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"0.4.x","grunt-contrib-concat":"0.3.x","grunt-contrib-jshint":"0.8.x","grunt-contrib-qunit":"0.4.x","grunt-contrib-uglify":"0.3.x","grunt-exec":"0.4.x","grunt-jscs-checker":"0.4.x","load-grunt-tasks":"0.3.x","qunit":"0.5.x","time-grunt":"0.2.x"},"files":["dist","LICENSE"],"main":"./dist/htmlminifier.js","_id":"html-minifier@0.5.6","dist":{"shasum":"0f15b437c27b5ce9aa84a44ca2850880e9257996","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-0.5.6.tgz"},"_from":".","_npmVersion":"1.3.11","_npmUser":{"name":"kangax","email":"kangax@gmail.com"}},"0.6.0":{"name":"html-minifier","description":"HTML minifier with lint-like capabilities.","version":"0.6.0","keywords":["html","minifier","lint"],"homepage":"http://kangax.github.io/html-minifier/","author":{"name":"Juriy \"kangax\" Zaytsev"},"maintainers":[{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"}],"license":{"type":"MIT","url":"https://github.com/kangax/html-minifier/blob/gh-pages/LICENSE"},"repository":{"type":"git","url":"https://github.com/kangax/html-minifier"},"bugs":{"url":"https://github.com/kangax/html-minifier/issues"},"engines":{"node":">=0.10.0"},"directories":{"test":"tests"},"scripts":{"test":"grunt test"},"dependencies":{"clean-css":"2.1.x","uglify-js":"2.4.x"},"devDependencies":{"grunt":"0.4.x","grunt-contrib-concat":"0.4.x","grunt-contrib-jshint":"0.10.x","grunt-contrib-qunit":"0.4.x","grunt-contrib-uglify":"0.4.x","grunt-exec":"0.4.x","grunt-jscs-checker":"0.4.x","load-grunt-tasks":"0.4.x","qunit":"0.6.x","time-grunt":"0.3.x"},"files":["dist","CHANGELOG.md","LICENSE"],"main":"./dist/htmlminifier.js","_id":"html-minifier@0.6.0","_shasum":"6e6d22a35b5b1cf8fdae28417df230aa9d21ae72","_from":".","_npmVersion":"1.4.7","_npmUser":{"name":"kangax","email":"kangax@gmail.com"},"dist":{"shasum":"6e6d22a35b5b1cf8fdae28417df230aa9d21ae72","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-0.6.0.tgz"}},"0.6.1":{"name":"html-minifier","description":"HTML minifier with lint-like capabilities.","version":"0.6.1","keywords":["html","minifier","lint"],"homepage":"http://kangax.github.io/html-minifier/","author":{"name":"Juriy \"kangax\" Zaytsev"},"maintainers":[{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"},{"name":"Zoltan Frombach","email":"tssajo@gmail.com"}],"license":{"type":"MIT","url":"https://github.com/kangax/html-minifier/blob/gh-pages/LICENSE"},"bin":{"html-minifier":"./cli.js"},"repository":{"type":"git","url":"https://github.com/kangax/html-minifier"},"bugs":{"url":"https://github.com/kangax/html-minifier/issues"},"engines":{"node":">=0.10.0"},"directories":{"test":"tests"},"scripts":{"test":"grunt test"},"dependencies":{"change-case":"2.1.x","clean-css":"2.1.x","cli":"0.6.x","uglify-js":"2.4.x"},"devDependencies":{"grunt":"0.4.x","grunt-contrib-concat":"0.4.x","grunt-contrib-jshint":"0.10.x","grunt-contrib-qunit":"0.4.x","grunt-contrib-uglify":"0.4.x","grunt-exec":"0.4.x","grunt-jscs-checker":"0.4.x","load-grunt-tasks":"0.4.x","qunit":"0.6.x","time-grunt":"0.3.x"},"files":["dist","cli.js","sample-cli-config-file.conf","CHANGELOG.md","LICENSE"],"main":"./dist/htmlminifier.js","_id":"html-minifier@0.6.1","_shasum":"9a59e316eb9a354b8be1a8bc5a3fc5737420ddeb","_from":".","_npmVersion":"1.4.10","_npmUser":{"name":"kangax","email":"kangax@gmail.com"},"dist":{"shasum":"9a59e316eb9a354b8be1a8bc5a3fc5737420ddeb","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-0.6.1.tgz"}},"0.6.2":{"name":"html-minifier","description":"HTML minifier with lint-like capabilities.","version":"0.6.2","keywords":["html","minifier","lint"],"homepage":"http://kangax.github.io/html-minifier/","author":{"name":"Juriy \"kangax\" Zaytsev"},"maintainers":[{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"},{"name":"Zoltan Frombach","email":"tssajo@gmail.com"}],"license":{"type":"MIT","url":"https://github.com/kangax/html-minifier/blob/gh-pages/LICENSE"},"bin":{"html-minifier":"./cli.js"},"repository":{"type":"git","url":"https://github.com/kangax/html-minifier"},"bugs":{"url":"https://github.com/kangax/html-minifier/issues"},"engines":{"node":">=0.10.0"},"directories":{"test":"tests"},"scripts":{"test":"grunt test"},"dependencies":{"change-case":"2.1.x","clean-css":"2.1.x","cli":"0.6.x","uglify-js":"2.4.x"},"devDependencies":{"grunt":"0.4.x","grunt-contrib-concat":"0.4.x","grunt-contrib-jshint":"0.10.x","grunt-contrib-qunit":"0.4.x","grunt-contrib-uglify":"0.4.x","grunt-exec":"0.4.x","grunt-jscs-checker":"0.4.x","load-grunt-tasks":"0.4.x","qunit":"0.6.x","time-grunt":"0.3.x"},"files":["dist","cli.js","sample-cli-config-file.conf","CHANGELOG.md","LICENSE"],"main":"./dist/htmlminifier.js","gitHead":"88e09b0461a3bb279d1762f8cbc844fb8aa14660","_id":"html-minifier@0.6.2","_shasum":"4cce9d940257b41f14bc31213f23bdc7a68d8cff","_from":".","_npmVersion":"1.4.14","_npmUser":{"name":"kangax","email":"kangax@gmail.com"},"dist":{"shasum":"4cce9d940257b41f14bc31213f23bdc7a68d8cff","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-0.6.2.tgz"}},"0.6.3":{"name":"html-minifier","description":"HTML minifier with lint-like capabilities.","version":"0.6.3","keywords":["html","minifier","lint"],"homepage":"http://kangax.github.io/html-minifier/","author":{"name":"Juriy \"kangax\" Zaytsev"},"maintainers":[{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"},{"name":"Zoltan Frombach","email":"tssajo@gmail.com"}],"license":{"type":"MIT","url":"https://github.com/kangax/html-minifier/blob/gh-pages/LICENSE"},"bin":{"html-minifier":"./cli.js"},"repository":{"type":"git","url":"https://github.com/kangax/html-minifier"},"bugs":{"url":"https://github.com/kangax/html-minifier/issues"},"engines":{"node":">=0.10.0"},"directories":{"test":"tests"},"scripts":{"test":"grunt test"},"dependencies":{"change-case":"2.1.x","clean-css":"2.2.x","cli":"0.6.x","uglify-js":"2.4.x"},"devDependencies":{"grunt":"0.4.x","grunt-contrib-concat":"0.4.x","grunt-contrib-jshint":"0.10.x","grunt-contrib-qunit":"0.5.x","grunt-contrib-uglify":"0.5.x","grunt-exec":"0.4.x","grunt-jscs-checker":"0.6.x","load-grunt-tasks":"0.6.x","qunit":"0.6.x","time-grunt":"0.3.x"},"files":["dist","cli.js","sample-cli-config-file.conf","CHANGELOG.md","LICENSE"],"main":"./dist/htmlminifier.js","gitHead":"88463932cf829633e64086269a249e78b1b57397","_id":"html-minifier@0.6.3","_shasum":"11ab235b207128c39188c3ccad4509ddda0da6be","_from":".","_npmVersion":"1.4.14","_npmUser":{"name":"kangax","email":"kangax@gmail.com"},"dist":{"shasum":"11ab235b207128c39188c3ccad4509ddda0da6be","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-0.6.3.tgz"}},"0.6.4":{"name":"html-minifier","description":"HTML minifier with lint-like capabilities.","version":"0.6.4","keywords":["html","minifier","lint"],"homepage":"http://kangax.github.io/html-minifier/","author":{"name":"Juriy \"kangax\" Zaytsev"},"maintainers":[{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"},{"name":"Zoltan Frombach","email":"tssajo@gmail.com"}],"license":{"type":"MIT","url":"https://github.com/kangax/html-minifier/blob/gh-pages/LICENSE"},"bin":{"html-minifier":"./cli.js"},"repository":{"type":"git","url":"https://github.com/kangax/html-minifier"},"bugs":{"url":"https://github.com/kangax/html-minifier/issues"},"engines":{"node":">=0.10.0"},"directories":{"test":"tests"},"scripts":{"test":"grunt test"},"dependencies":{"change-case":"2.1.x","clean-css":"2.2.x","cli":"0.6.x","uglify-js":"2.4.x"},"devDependencies":{"grunt":"0.4.x","grunt-contrib-concat":"0.4.x","grunt-contrib-jshint":"0.10.x","grunt-contrib-qunit":"0.5.x","grunt-contrib-uglify":"0.5.x","grunt-exec":"0.4.x","grunt-jscs-checker":"0.6.x","load-grunt-tasks":"0.6.x","qunit":"0.6.x","time-grunt":"0.3.x"},"files":["dist","cli.js","sample-cli-config-file.conf","CHANGELOG.md","LICENSE"],"main":"./dist/htmlminifier.js","gitHead":"48a5e9ee953538f331627435e4379e766738e733","_id":"html-minifier@0.6.4","_shasum":"a03a89c02c7b2b9c3522f2aaa470110795ca5bcc","_from":".","_npmVersion":"1.4.14","_npmUser":{"name":"kangax","email":"kangax@gmail.com"},"dist":{"shasum":"a03a89c02c7b2b9c3522f2aaa470110795ca5bcc","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-0.6.4.tgz"}},"0.6.5":{"name":"html-minifier","description":"HTML minifier with lint-like capabilities.","version":"0.6.5","keywords":["html","minifier","lint"],"homepage":"http://kangax.github.io/html-minifier/","author":{"name":"Juriy \"kangax\" Zaytsev"},"maintainers":[{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"},{"name":"Zoltan Frombach","email":"tssajo@gmail.com"}],"license":{"type":"MIT","url":"https://github.com/kangax/html-minifier/blob/gh-pages/LICENSE"},"bin":{"html-minifier":"./cli.js"},"repository":{"type":"git","url":"https://github.com/kangax/html-minifier"},"bugs":{"url":"https://github.com/kangax/html-minifier/issues"},"engines":{"node":">=0.10.0"},"directories":{"test":"tests"},"scripts":{"test":"grunt test"},"dependencies":{"change-case":"2.1.x","clean-css":"2.2.x","cli":"0.6.x","uglify-js":"2.4.x"},"devDependencies":{"cli-table":"0.3.x","grunt":"0.4.x","grunt-contrib-concat":"0.4.x","grunt-contrib-jshint":"0.10.x","grunt-contrib-qunit":"0.5.x","grunt-contrib-uglify":"0.5.x","grunt-exec":"0.4.x","grunt-jscs":"0.6.x","load-grunt-tasks":"0.6.x","qunit":"0.6.x","time-grunt":"0.3.x","underscore":"1.6.x"},"files":["dist","cli.js","sample-cli-config-file.conf","CHANGELOG.md","LICENSE"],"main":"./dist/htmlminifier.js","gitHead":"fcdf3d3e146b687182c4913f6217fd8ca148e8fc","_id":"html-minifier@0.6.5","_shasum":"e5dcad68d760b08aeed8b7da3e8cbc0bc37b002b","_from":".","_npmVersion":"1.4.14","_npmUser":{"name":"kangax","email":"kangax@gmail.com"},"dist":{"shasum":"e5dcad68d760b08aeed8b7da3e8cbc0bc37b002b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-0.6.5.tgz"}},"0.6.6":{"name":"html-minifier","description":"HTML minifier with lint-like capabilities.","version":"0.6.6","keywords":["html","minifier","lint"],"homepage":"http://kangax.github.io/html-minifier/","author":{"name":"Juriy \"kangax\" Zaytsev"},"maintainers":[{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"},{"name":"Zoltan Frombach","email":"tssajo@gmail.com"}],"license":{"type":"MIT","url":"https://github.com/kangax/html-minifier/blob/gh-pages/LICENSE"},"bin":{"html-minifier":"./cli.js"},"repository":{"type":"git","url":"https://github.com/kangax/html-minifier"},"bugs":{"url":"https://github.com/kangax/html-minifier/issues"},"engines":{"node":">=0.10.0"},"directories":{"test":"tests"},"scripts":{"test":"grunt test"},"dependencies":{"change-case":"2.1.x","clean-css":"2.2.x","cli":"0.6.x","uglify-js":"2.4.x"},"devDependencies":{"cli-table":"0.3.x","grunt":"0.4.x","grunt-contrib-concat":"0.5.x","grunt-contrib-jshint":"0.10.x","grunt-contrib-qunit":"0.5.x","grunt-contrib-uglify":"0.5.x","grunt-exec":"0.4.x","grunt-jscs":"0.6.x","load-grunt-tasks":"0.6.x","qunit":"0.7.x","time-grunt":"0.4.x","underscore":"1.6.x"},"files":["dist","cli.js","sample-cli-config-file.conf","CHANGELOG.md","LICENSE"],"main":"./dist/htmlminifier.js","gitHead":"223f484bad8f65f9e944de1be2c9eee2e299b39e","_id":"html-minifier@0.6.6","_shasum":"231b2038a4de25a219f503540ca62eb9c8845905","_from":".","_npmVersion":"1.4.14","_npmUser":{"name":"kangax","email":"kangax@gmail.com"},"dist":{"shasum":"231b2038a4de25a219f503540ca62eb9c8845905","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-0.6.6.tgz"}},"0.6.7":{"name":"html-minifier","description":"HTML minifier with lint-like capabilities.","version":"0.6.7","keywords":["html","minifier","lint"],"homepage":"http://kangax.github.io/html-minifier/","author":{"name":"Juriy \"kangax\" Zaytsev"},"maintainers":[{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"},{"name":"Zoltan Frombach","email":"tssajo@gmail.com"}],"license":{"type":"MIT","url":"https://github.com/kangax/html-minifier/blob/gh-pages/LICENSE"},"bin":{"html-minifier":"./cli.js"},"repository":{"type":"git","url":"https://github.com/kangax/html-minifier"},"bugs":{"url":"https://github.com/kangax/html-minifier/issues"},"engines":{"node":">=0.10.0"},"directories":{"test":"tests"},"scripts":{"test":"grunt test"},"dependencies":{"change-case":"2.1.x","clean-css":"2.2.x","cli":"0.6.x","uglify-js":"2.4.x","relateurl":"0.2.x"},"devDependencies":{"cli-table":"0.3.x","grunt":"0.4.x","grunt-contrib-concat":"0.5.x","grunt-contrib-jshint":"0.10.x","grunt-contrib-qunit":"0.5.x","grunt-contrib-uglify":"0.5.x","grunt-exec":"0.4.x","grunt-jscs":"0.6.x","load-grunt-tasks":"0.6.x","qunit":"0.7.x","time-grunt":"1.0.x"},"files":["dist","cli.js","sample-cli-config-file.conf","CHANGELOG.md","LICENSE"],"main":"./dist/htmlminifier.js","gitHead":"df246df54f4ece777719fb3e08ee64cad3b45c5a","_id":"html-minifier@0.6.7","_shasum":"73282173983f5fd52cbf4977fbdb15aaec15514b","_from":".","_npmVersion":"1.4.14","_npmUser":{"name":"kangax","email":"kangax@gmail.com"},"dist":{"shasum":"73282173983f5fd52cbf4977fbdb15aaec15514b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-0.6.7.tgz"}},"0.6.8":{"name":"html-minifier","description":"HTML minifier with lint-like capabilities.","version":"0.6.8","keywords":["html","minifier","lint"],"homepage":"http://kangax.github.io/html-minifier/","author":{"name":"Juriy \"kangax\" Zaytsev"},"maintainers":[{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"},{"name":"Zoltan Frombach","email":"tssajo@gmail.com"}],"license":{"type":"MIT","url":"https://github.com/kangax/html-minifier/blob/gh-pages/LICENSE"},"bin":{"html-minifier":"./cli.js"},"repository":{"type":"git","url":"https://github.com/kangax/html-minifier"},"bugs":{"url":"https://github.com/kangax/html-minifier/issues"},"engines":{"node":">=0.10.0"},"directories":{"test":"tests"},"scripts":{"test":"grunt test"},"dependencies":{"change-case":"2.1.x","clean-css":"2.2.x","cli":"0.6.x","uglify-js":"2.4.x","relateurl":"0.2.x"},"devDependencies":{"cli-table":"0.3.x","grunt":"0.4.x","grunt-contrib-concat":"0.5.x","grunt-contrib-jshint":"0.10.x","grunt-contrib-qunit":"0.5.x","grunt-contrib-uglify":"0.5.x","grunt-exec":"0.4.x","grunt-jscs":"0.6.x","load-grunt-tasks":"0.6.x","qunit":"0.7.x","time-grunt":"1.0.x"},"files":["dist","cli.js","sample-cli-config-file.conf","CHANGELOG.md","LICENSE"],"main":"./dist/htmlminifier.js","gitHead":"6c097d070097b675e38f66bb58955d9b4d5080e4","_id":"html-minifier@0.6.8","_shasum":"596e17e5faf1040c3c68b5d136d32d79efc9ed07","_from":".","_npmVersion":"1.4.14","_npmUser":{"name":"kangax","email":"kangax@gmail.com"},"dist":{"shasum":"596e17e5faf1040c3c68b5d136d32d79efc9ed07","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-0.6.8.tgz"}},"0.6.9":{"name":"html-minifier","description":"HTML minifier with lint-like capabilities.","version":"0.6.9","keywords":["html","minifier","lint"],"homepage":"http://kangax.github.io/html-minifier/","author":{"name":"Juriy \"kangax\" Zaytsev"},"maintainers":[{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"},{"name":"Zoltan Frombach","email":"tssajo@gmail.com"}],"license":{"type":"MIT","url":"https://github.com/kangax/html-minifier/blob/gh-pages/LICENSE"},"bin":{"html-minifier":"./cli.js"},"repository":{"type":"git","url":"https://github.com/kangax/html-minifier"},"bugs":{"url":"https://github.com/kangax/html-minifier/issues"},"engines":{"node":">=0.10.0"},"directories":{"test":"tests"},"scripts":{"test":"grunt test"},"dependencies":{"change-case":"2.1.x","clean-css":"2.2.x","cli":"0.6.x","uglify-js":"2.4.x","relateurl":"0.2.x"},"devDependencies":{"cli-table":"0.3.x","grunt":"0.4.x","grunt-contrib-concat":"0.5.x","grunt-contrib-jshint":"0.10.x","grunt-contrib-qunit":"0.5.x","grunt-contrib-uglify":"0.6.x","grunt-exec":"0.4.x","grunt-jscs":"0.7.x","load-grunt-tasks":"0.6.x","qunit":"0.7.x","time-grunt":"1.0.x"},"files":["dist","cli.js","sample-cli-config-file.conf","CHANGELOG.md","LICENSE"],"main":"./dist/htmlminifier.js","gitHead":"1475be63b95fc2141343b081f6c993b3a51c29f5","_id":"html-minifier@0.6.9","_shasum":"5105dc236f5e7e1a8ba651d4ab981386fc7abe53","_from":".","_npmVersion":"1.4.14","_npmUser":{"name":"kangax","email":"kangax@gmail.com"},"dist":{"shasum":"5105dc236f5e7e1a8ba651d4ab981386fc7abe53","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-0.6.9.tgz"}},"0.7.0":{"name":"html-minifier","description":"HTML minifier with lint-like capabilities.","version":"0.7.0","keywords":["html","minifier","lint"],"homepage":"http://kangax.github.io/html-minifier/","author":{"name":"Juriy \"kangax\" Zaytsev"},"maintainers":[{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"},{"name":"Zoltan Frombach","email":"tssajo@gmail.com"}],"license":{"type":"MIT","url":"https://github.com/kangax/html-minifier/blob/gh-pages/LICENSE"},"bin":{"html-minifier":"./cli.js"},"repository":{"type":"git","url":"https://github.com/kangax/html-minifier"},"bugs":{"url":"https://github.com/kangax/html-minifier/issues"},"engines":{"node":">=0.10.0"},"directories":{"test":"tests"},"scripts":{"test":"grunt test"},"dependencies":{"change-case":"2.2.x","clean-css":"3.0.x","cli":"0.6.x","uglify-js":"2.4.x","relateurl":"0.2.x"},"devDependencies":{"chalk":"0.5.x","cli-table":"0.3.x","grunt":"0.4.x","grunt-contrib-concat":"0.5.x","grunt-contrib-jshint":"0.11.x","grunt-contrib-qunit":"0.5.x","grunt-contrib-uglify":"0.7.x","grunt-exec":"0.4.x","grunt-jscs":"1.2.x","load-grunt-tasks":"3.1.x","qunit":"0.7.x","time-grunt":"1.0.x"},"files":["dist","cli.js","sample-cli-config-file.conf","CHANGELOG.md","LICENSE"],"main":"./dist/htmlminifier.js","gitHead":"64356013075711b78cc9462f16c7bfbdacfc7700","_id":"html-minifier@0.7.0","_shasum":"39d22ced9209c5e008776edff6ae384f735d7cca","_from":".","_npmVersion":"2.1.11","_nodeVersion":"0.10.33","_npmUser":{"name":"kangax","email":"kangax@gmail.com"},"dist":{"shasum":"39d22ced9209c5e008776edff6ae384f735d7cca","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-0.7.0.tgz"}},"0.7.1":{"name":"html-minifier","description":"HTML minifier with lint-like capabilities.","version":"0.7.1","keywords":["html","minifier","lint"],"homepage":"http://kangax.github.io/html-minifier/","author":{"name":"Juriy \"kangax\" Zaytsev"},"maintainers":[{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"},{"name":"Zoltan Frombach","email":"tssajo@gmail.com"}],"license":{"type":"MIT","url":"https://github.com/kangax/html-minifier/blob/gh-pages/LICENSE"},"bin":{"html-minifier":"./cli.js"},"repository":{"type":"git","url":"https://github.com/kangax/html-minifier"},"bugs":{"url":"https://github.com/kangax/html-minifier/issues"},"engines":{"node":">=0.10.0"},"directories":{"test":"tests"},"scripts":{"test":"grunt test"},"dependencies":{"change-case":"2.3.x","clean-css":"3.1.x","cli":"0.6.x","concat-stream":"1.4.x","uglify-js":"2.4.x","relateurl":"0.2.x"},"devDependencies":{"chalk":"1.0.x","cli-table":"0.3.x","grunt":"0.4.x","grunt-contrib-concat":"0.5.x","grunt-contrib-jshint":"0.11.x","grunt-contrib-qunit":"0.7.x","grunt-contrib-uglify":"0.8.x","grunt-exec":"0.4.x","grunt-jscs":"1.6.x","load-grunt-tasks":"3.1.x","qunit":"0.7.x","time-grunt":"1.1.x"},"files":["dist","cli.js","sample-cli-config-file.conf","CHANGELOG.md","LICENSE"],"main":"./dist/htmlminifier.js","gitHead":"f9259a935e595e6d40b00e5a3ef29c1890784734","_id":"html-minifier@0.7.1","_shasum":"056f8f9cc246e6233b895a6e0ba40747dd1b0c52","_from":".","_npmVersion":"2.1.11","_nodeVersion":"0.10.33","_npmUser":{"name":"kangax","email":"kangax@gmail.com"},"dist":{"shasum":"056f8f9cc246e6233b895a6e0ba40747dd1b0c52","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-0.7.1.tgz"}},"0.7.2":{"name":"html-minifier","description":"HTML minifier with lint-like capabilities.","version":"0.7.2","keywords":["html","minifier","lint"],"homepage":"http://kangax.github.io/html-minifier/","author":{"name":"Juriy \"kangax\" Zaytsev"},"maintainers":[{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"},{"name":"Zoltan Frombach","email":"tssajo@gmail.com"}],"license":{"type":"MIT","url":"https://github.com/kangax/html-minifier/blob/gh-pages/LICENSE"},"bin":{"html-minifier":"./cli.js"},"repository":{"type":"git","url":"https://github.com/kangax/html-minifier"},"bugs":{"url":"https://github.com/kangax/html-minifier/issues"},"engines":{"node":">=0.10.0"},"directories":{"test":"tests"},"scripts":{"test":"grunt test"},"dependencies":{"change-case":"2.3.x","clean-css":"3.1.x","cli":"0.6.x","concat-stream":"1.4.x","uglify-js":"2.4.x","relateurl":"0.2.x"},"devDependencies":{"chalk":"1.0.x","cli-table":"0.3.x","grunt":"0.4.x","grunt-contrib-concat":"0.5.x","grunt-contrib-jshint":"0.11.x","grunt-contrib-qunit":"0.7.x","grunt-contrib-uglify":"0.8.x","grunt-exec":"0.4.x","grunt-jscs":"1.6.x","load-grunt-tasks":"3.1.x","qunit":"0.7.x","time-grunt":"1.1.x"},"files":["dist","cli.js","sample-cli-config-file.conf","CHANGELOG.md","LICENSE"],"main":"./dist/htmlminifier.js","gitHead":"20216b6e969f17557b8a07897110547b7380258f","_id":"html-minifier@0.7.2","_shasum":"2b7959b1051a481e71cd7c6e59a64272af895cfd","_from":".","_npmVersion":"2.1.11","_nodeVersion":"0.10.33","_npmUser":{"name":"kangax","email":"kangax@gmail.com"},"dist":{"shasum":"2b7959b1051a481e71cd7c6e59a64272af895cfd","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-0.7.2.tgz"}},"0.8.0":{"name":"html-minifier","description":"HTML minifier with lint-like capabilities.","version":"0.8.0","keywords":["html","minifier","lint"],"homepage":"http://kangax.github.io/html-minifier/","author":{"name":"Juriy \"kangax\" Zaytsev"},"maintainers":[{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"},{"name":"Zoltan Frombach","email":"tssajo@gmail.com"}],"license":"MIT","bin":{"html-minifier":"./cli.js"},"main":"src/htmlminifier.js","repository":{"type":"git","url":"git+https://github.com/kangax/html-minifier.git"},"bugs":{"url":"https://github.com/kangax/html-minifier/issues"},"engines":{"node":">=0.10.0"},"scripts":{"test":"grunt test"},"dependencies":{"change-case":"2.3.x","clean-css":"3.4.x","cli":"0.10.x","concat-stream":"1.5.x","relateurl":"0.2.x","uglify-js":"2.4.x"},"devDependencies":{"chalk":"1.1.x","cli-table":"0.3.x","grunt":"0.4.x","grunt-contrib-concat":"0.5.x","grunt-contrib-jshint":"0.11.x","grunt-contrib-qunit":"0.7.x","grunt-contrib-uglify":"0.9.x","grunt-exec":"0.4.x","grunt-jscs":"2.1.x","load-grunt-tasks":"3.2.x","qunit":"0.7.x","time-grunt":"1.2.x"},"files":["dist","src","cli.js","sample-cli-config-file.conf","CHANGELOG.md","LICENSE"],"gitHead":"8524bb57f6e764c9561513f93e90dee39439132a","_id":"html-minifier@0.8.0","_shasum":"12ccbbaffc3d1674f707816ce4825d4b892281ba","_from":".","_npmVersion":"2.14.3","_nodeVersion":"4.1.0","_npmUser":{"name":"kangax","email":"kangax@gmail.com"},"dist":{"shasum":"12ccbbaffc3d1674f707816ce4825d4b892281ba","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-0.8.0.tgz"},"directories":{}},"1.0.0":{"name":"html-minifier","description":"HTML minifier with lint-like capabilities.","version":"1.0.0","keywords":["html","minifier","lint"],"homepage":"http://kangax.github.io/html-minifier/","author":{"name":"Juriy \"kangax\" Zaytsev"},"maintainers":[{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"},{"name":"Zoltan Frombach","email":"tssajo@gmail.com"}],"license":"MIT","bin":{"html-minifier":"./cli.js"},"main":"src/htmlminifier.js","repository":{"type":"git","url":"git+https://github.com/kangax/html-minifier.git"},"bugs":{"url":"https://github.com/kangax/html-minifier/issues"},"engines":{"node":">=0.10.0"},"scripts":{"test":"grunt test"},"dependencies":{"change-case":"2.3.x","clean-css":"3.4.x","cli":"0.11.x","concat-stream":"1.5.x","relateurl":"0.2.x","uglify-js":"2.5.x"},"devDependencies":{"chalk":"1.1.x","cli-table":"0.3.x","grunt":"0.4.x","grunt-contrib-concat":"0.5.x","grunt-contrib-jshint":"0.11.x","grunt-contrib-qunit":"0.7.x","grunt-contrib-uglify":"0.9.x","grunt-exec":"0.4.x","grunt-jscs":"2.1.x","load-grunt-tasks":"3.3.x","qunit":"0.7.x","time-grunt":"1.2.x"},"files":["dist","src","cli.js","sample-cli-config-file.conf","CHANGELOG.md","LICENSE"],"gitHead":"ec4227c7aed93144c8d4d335200cbbabccac1222","_id":"html-minifier@1.0.0","_shasum":"8b101086f352f6b1b5b1a7929a803e49c2d2aba9","_from":".","_npmVersion":"2.11.2","_nodeVersion":"0.12.5","_npmUser":{"name":"kangax","email":"kangax@gmail.com"},"dist":{"shasum":"8b101086f352f6b1b5b1a7929a803e49c2d2aba9","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-1.0.0.tgz"},"directories":{}},"1.0.1":{"name":"html-minifier","description":"HTML minifier with lint-like capabilities.","version":"1.0.1","keywords":["html","minifier","lint"],"homepage":"http://kangax.github.io/html-minifier/","author":{"name":"Juriy \"kangax\" Zaytsev"},"maintainers":[{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"},{"name":"Zoltan Frombach","email":"tssajo@gmail.com"}],"license":"MIT","bin":{"html-minifier":"./cli.js"},"main":"src/htmlminifier.js","repository":{"type":"git","url":"git+https://github.com/kangax/html-minifier.git"},"bugs":{"url":"https://github.com/kangax/html-minifier/issues"},"engines":{"node":">=0.10.0"},"scripts":{"test":"grunt test"},"dependencies":{"change-case":"2.3.x","clean-css":"3.4.x","cli":"0.11.x","concat-stream":"1.5.x","relateurl":"0.2.x","uglify-js":"2.6.x"},"devDependencies":{"chalk":"1.1.x","cli-table":"0.3.x","grunt":"0.4.x","grunt-contrib-concat":"0.5.x","grunt-contrib-jshint":"0.11.x","grunt-contrib-qunit":"0.7.x","grunt-contrib-uglify":"0.11.x","grunt-exec":"0.4.x","grunt-jscs":"2.5.x","load-grunt-tasks":"3.4.x","qunit":"0.7.x","time-grunt":"1.3.x"},"files":["dist","src","cli.js","sample-cli-config-file.conf","CHANGELOG.md","LICENSE"],"gitHead":"47fc45d1fcdb03a51dd30595e3921b6e55729810","_id":"html-minifier@1.0.1","_shasum":"3545b936b0c910cee88c18ec90852cff02f84b8f","_from":".","_npmVersion":"2.11.2","_nodeVersion":"0.12.5","_npmUser":{"name":"kangax","email":"kangax@gmail.com"},"dist":{"shasum":"3545b936b0c910cee88c18ec90852cff02f84b8f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-1.0.1.tgz"},"directories":{}},"1.1.1":{"name":"html-minifier","description":"HTML minifier with lint-like capabilities.","version":"1.1.1","keywords":["html","minifier","lint"],"homepage":"http://kangax.github.io/html-minifier/","author":{"name":"Juriy \"kangax\" Zaytsev"},"maintainers":[{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"},{"name":"Zoltan Frombach","email":"tssajo@gmail.com"}],"license":"MIT","bin":{"html-minifier":"./cli.js"},"main":"src/htmlminifier.js","repository":{"type":"git","url":"git+https://github.com/kangax/html-minifier.git"},"bugs":{"url":"https://github.com/kangax/html-minifier/issues"},"engines":{"node":">=0.10.0"},"scripts":{"test":"grunt test"},"dependencies":{"change-case":"2.3.x","clean-css":"3.4.x","cli":"0.11.x","concat-stream":"1.5.x","relateurl":"0.2.x","uglify-js":"2.6.x"},"devDependencies":{"chalk":"1.1.x","cli-table":"0.3.x","grunt":"0.4.x","grunt-contrib-concat":"0.5.x","grunt-contrib-jshint":"0.11.x","grunt-contrib-qunit":"0.7.x","grunt-contrib-uglify":"0.11.x","grunt-exec":"0.4.x","grunt-jscs":"2.5.x","load-grunt-tasks":"3.4.x","qunit":"0.7.x","time-grunt":"1.3.x"},"files":["dist","src","cli.js","sample-cli-config-file.conf","CHANGELOG.md","LICENSE"],"gitHead":"01b15984dc5f63e5a32a6f5e13a0b1c7cb2535bf","_id":"html-minifier@1.1.1","_shasum":"6850f99f9244a6541ad57d2327a204c9567b698f","_from":".","_npmVersion":"3.3.9","_nodeVersion":"5.0.0","_npmUser":{"name":"kangax","email":"kangax@gmail.com"},"dist":{"shasum":"6850f99f9244a6541ad57d2327a204c9567b698f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-1.1.1.tgz"},"directories":{}},"1.2.0":{"name":"html-minifier","description":"HTML minifier with lint-like capabilities.","version":"1.2.0","keywords":["html","minifier","lint"],"homepage":"http://kangax.github.io/html-minifier/","author":{"name":"Juriy \"kangax\" Zaytsev"},"maintainers":[{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"},{"name":"Zoltan Frombach","email":"tssajo@gmail.com"}],"license":"MIT","bin":{"html-minifier":"./cli.js"},"main":"src/htmlminifier.js","repository":{"type":"git","url":"git+https://github.com/kangax/html-minifier.git"},"bugs":{"url":"https://github.com/kangax/html-minifier/issues"},"engines":{"node":">=0.10.0"},"scripts":{"test":"grunt test"},"dependencies":{"change-case":"2.3.x","clean-css":"3.4.x","cli":"0.11.x","concat-stream":"1.5.x","relateurl":"0.2.x","uglify-js":"2.6.x"},"devDependencies":{"brotli":"1.1.x","chalk":"1.1.x","cli-table":"0.3.x","grunt":"0.4.x","grunt-contrib-concat":"0.5.x","grunt-contrib-jshint":"1.0.x","grunt-contrib-qunit":"1.0.x","grunt-contrib-uglify":"0.11.x","grunt-exec":"0.4.x","grunt-jscs":"2.7.x","load-grunt-tasks":"3.4.x","lzma":"2.2.x","minimize":"1.8.x","progress":"1.1.x","qunit":"0.9.x","time-grunt":"1.3.x"},"files":["dist","src","cli.js","sample-cli-config-file.conf","CHANGELOG.md","LICENSE"],"gitHead":"0f7b10886d660e0f2017e21e7fca850f7f7263dc","_id":"html-minifier@1.2.0","_shasum":"0891d9dd0e5c75762e06fdcf209c8038af1bddab","_from":".","_npmVersion":"3.3.9","_nodeVersion":"5.0.0","_npmUser":{"name":"kangax","email":"kangax@gmail.com"},"dist":{"shasum":"0891d9dd0e5c75762e06fdcf209c8038af1bddab","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-1.2.0.tgz"},"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/html-minifier-1.2.0.tgz_1455909980460_0.8082687112037092"},"directories":{}},"1.3.0":{"name":"html-minifier","description":"HTML minifier with lint-like capabilities.","version":"1.3.0","keywords":["html","minifier","lint"],"homepage":"http://kangax.github.io/html-minifier/","author":{"name":"Juriy \"kangax\" Zaytsev"},"maintainers":[{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"},{"name":"Zoltan Frombach","email":"tssajo@gmail.com"}],"license":"MIT","bin":{"html-minifier":"./cli.js"},"main":"src/htmlminifier.js","repository":{"type":"git","url":"git+https://github.com/kangax/html-minifier.git"},"bugs":{"url":"https://github.com/kangax/html-minifier/issues"},"engines":{"node":">=0.10.0"},"scripts":{"assets":"grunt assets","assets/clean-css":"browserify node_modules/clean-css/ --standalone CleanCSS | uglifyjs --compress --mangle -o assets/cleancss-browser.js","assets/ncname":"browserify node_modules/ncname/ --standalone NCName | uglifyjs --compress --mangle -o assets/ncname-browser.js","assets/relateurl":"browserify node_modules/relateurl/ --standalone RelateUrl | uglifyjs --compress --mangle -o assets/relateurl-browser.js","assets/uglify-js":"browserify node_modules/uglify-js/ --standalone UglifyJS | uglifyjs --compress --mangle -o assets/uglify-browser.js","test":"grunt test"},"dependencies":{"change-case":"2.3.x","clean-css":"3.4.x","cli":"0.11.x","concat-stream":"1.5.x","ncname":"1.0.x","relateurl":"0.2.x","uglify-js":"2.6.x"},"devDependencies":{"browserify":"13.0.x","brotli":"1.1.x","chalk":"1.1.x","cli-table":"0.3.x","grunt":"0.4.x","grunt-cli":"0.1.x","grunt-contrib-concat":"1.0.x","grunt-contrib-uglify":"1.0.x","grunt-eslint":"18.0.x","grunt-exec":"0.4.x","grunt-lib-phantomjs":"1.0.x","load-grunt-tasks":"3.4.x","lzma":"2.3.x","minimize":"1.8.x","progress":"1.1.x","qunit":"0.9.x","time-grunt":"1.3.x"},"files":["dist","src","cli.js","sample-cli-config-file.conf","CHANGELOG.md","LICENSE"],"gitHead":"29017df749cbfda3a3911825462a5e035173de11","_id":"html-minifier@1.3.0","_shasum":"bc6286710682ff4666d8271cf02c63a06103d0ec","_from":".","_npmVersion":"3.3.9","_nodeVersion":"5.0.0","_npmUser":{"name":"kangax","email":"kangax@gmail.com"},"dist":{"shasum":"bc6286710682ff4666d8271cf02c63a06103d0ec","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-1.3.0.tgz"},"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/html-minifier-1.3.0.tgz_1458156168745_0.5556741936597973"},"directories":{}},"1.3.1":{"name":"html-minifier","description":"HTML minifier with lint-like capabilities.","version":"1.3.1","keywords":["html","minifier","lint"],"homepage":"http://kangax.github.io/html-minifier/","author":{"name":"Juriy \"kangax\" Zaytsev"},"maintainers":[{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"},{"name":"Zoltan Frombach","email":"tssajo@gmail.com"}],"license":"MIT","bin":{"html-minifier":"./cli.js"},"main":"src/htmlminifier.js","repository":{"type":"git","url":"git+https://github.com/kangax/html-minifier.git"},"bugs":{"url":"https://github.com/kangax/html-minifier/issues"},"engines":{"node":">=0.10.0"},"scripts":{"assets":"grunt assets","assets/clean-css":"browserify node_modules/clean-css/ --standalone CleanCSS | uglifyjs --compress --mangle -o assets/cleancss-browser.js","assets/ncname":"browserify node_modules/ncname/ --standalone NCName | uglifyjs --compress --mangle -o assets/ncname-browser.js","assets/relateurl":"browserify node_modules/relateurl/ --standalone RelateUrl | uglifyjs --compress --mangle -o assets/relateurl-browser.js","assets/uglify-js":"browserify node_modules/uglify-js/ --standalone UglifyJS | uglifyjs --compress --mangle -o assets/uglify-browser.js","test":"grunt test"},"dependencies":{"change-case":"2.3.x","clean-css":"3.4.x","cli":"0.11.x","concat-stream":"1.5.x","ncname":"1.0.x","relateurl":"0.2.x","uglify-js":"2.6.x"},"devDependencies":{"browserify":"13.0.x","brotli":"1.1.x","chalk":"1.1.x","cli-table":"0.3.x","grunt":"0.4.x","grunt-cli":"1.1.x","grunt-contrib-concat":"1.0.x","grunt-contrib-uglify":"1.0.x","grunt-eslint":"18.0.x","grunt-exec":"0.4.x","grunt-lib-phantomjs":"1.0.x","load-grunt-tasks":"3.4.x","lzma":"2.3.x","minimize":"1.8.x","progress":"1.1.x","qunit":"0.9.x","time-grunt":"1.3.x"},"files":["dist","src","cli.js","sample-cli-config-file.conf","CHANGELOG.md","LICENSE"],"gitHead":"057b9f81bca5f714eb66c04f57397d430eac25fd","_id":"html-minifier@1.3.1","_shasum":"181771e9a190c8bf898b2cc5581e030e639402d7","_from":".","_npmVersion":"3.3.9","_nodeVersion":"5.0.0","_npmUser":{"name":"kangax","email":"kangax@gmail.com"},"dist":{"shasum":"181771e9a190c8bf898b2cc5581e030e639402d7","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-1.3.1.tgz"},"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/html-minifier-1.3.1.tgz_1458713332275_0.8313878329936415"},"directories":{}},"1.4.0":{"name":"html-minifier","description":"HTML minifier with lint-like capabilities.","version":"1.4.0","keywords":["html","minifier","lint"],"homepage":"http://kangax.github.io/html-minifier/","author":{"name":"Juriy \"kangax\" Zaytsev"},"maintainers":[{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"},{"name":"Zoltan Frombach","email":"tssajo@gmail.com"}],"license":"MIT","bin":{"html-minifier":"./cli.js"},"main":"src/htmlminifier.js","repository":{"type":"git","url":"git+https://github.com/kangax/html-minifier.git"},"bugs":{"url":"https://github.com/kangax/html-minifier/issues"},"engines":{"node":">=0.10.0"},"scripts":{"dist":"grunt dist","test":"grunt test"},"dependencies":{"change-case":"2.3.x","clean-css":"3.4.x","cli":"0.11.x","concat-stream":"1.5.x","ncname":"1.0.x","relateurl":"0.2.x","uglify-js":"2.6.x"},"devDependencies":{"brotli":"1.2.x","chalk":"1.1.x","cli-table":"0.3.x","grunt":"0.4.x","grunt-browserify":"5.0.x","grunt-cli":"1.1.x","grunt-contrib-uglify":"1.0.x","grunt-eslint":"18.0.x","grunt-exec":"0.4.x","grunt-lib-phantomjs":"1.0.x","load-grunt-tasks":"3.4.x","lzma":"2.3.x","minimize":"1.8.x","progress":"1.1.x","qunit":"0.9.x","time-grunt":"1.3.x"},"files":["dist","src","cli.js","sample-cli-config-file.conf","CHANGELOG.md","LICENSE"],"gitHead":"f68b7afd4a02aedd7a6b553e1e11b20bb2e0a14c","_id":"html-minifier@1.4.0","_shasum":"5f85bc13935ebcacc5ccaedcb13959dc05755f14","_from":".","_npmVersion":"3.3.9","_nodeVersion":"5.0.0","_npmUser":{"name":"kangax","email":"kangax@gmail.com"},"dist":{"shasum":"5f85bc13935ebcacc5ccaedcb13959dc05755f14","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-1.4.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/html-minifier-1.4.0.tgz_1459373486726_0.8803366287611425"},"directories":{}},"1.5.0":{"name":"html-minifier","description":"HTML minifier with lint-like capabilities.","version":"1.5.0","keywords":["html","minifier","lint"],"homepage":"http://kangax.github.io/html-minifier/","author":{"name":"Juriy \"kangax\" Zaytsev"},"maintainers":[{"name":"alexlamsl","email":"alex+npm@starthq.com"},{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"},{"name":"Zoltan Frombach","email":"tssajo@gmail.com"}],"license":"MIT","bin":{"html-minifier":"./cli.js"},"main":"src/htmlminifier.js","repository":{"type":"git","url":"git+https://github.com/kangax/html-minifier.git"},"bugs":{"url":"https://github.com/kangax/html-minifier/issues"},"engines":{"node":">=0.10.0"},"scripts":{"dist":"grunt dist","test":"grunt test"},"dependencies":{"change-case":"2.3.x","clean-css":"3.4.x","commander":"2.9.x","concat-stream":"1.5.x","he":"1.0.x","ncname":"1.0.x","relateurl":"0.2.x","uglify-js":"2.6.x"},"devDependencies":{"brotli":"1.2.x","chalk":"1.1.x","cli-table":"0.3.x","grunt":"1.0.x","grunt-browserify":"5.0.x","grunt-contrib-uglify":"1.0.x","grunt-eslint":"18.0.x","grunt-lib-phantomjs":"1.0.x","lzma":"2.3.x","minimize":"1.8.x","progress":"1.1.x","qunit":"0.9.x","time-grunt":"1.3.x"},"files":["src","cli.js","sample-cli-config-file.conf","LICENSE"],"gitHead":"2604d6a6c5406a24b50b6b796ecc7957d8aae41e","_id":"html-minifier@1.5.0","_shasum":"beb05fd9cc340945865c10f40aedf469af4b1534","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.0","_npmUser":{"name":"alexlamsl","email":"alex+npm@starthq.com"},"dist":{"shasum":"beb05fd9cc340945865c10f40aedf469af4b1534","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-1.5.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/html-minifier-1.5.0.tgz_1460270812072_0.5190650071017444"},"directories":{}},"2.0.0":{"name":"html-minifier","description":"Highly configurable, well-tested, JavaScript-based HTML minifier.","version":"2.0.0","keywords":["cli","compress","compressor","css","html","htmlmin","javascript","min","minification","minifier","minify","optimize","optimizer","pack","packer","parse","parser","uglifier","uglify"],"homepage":"http://kangax.github.io/html-minifier/","author":{"name":"Juriy \"kangax\" Zaytsev"},"maintainers":[{"name":"alexlamsl","email":"alex+npm@starthq.com"},{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"},{"name":"Zoltan Frombach","email":"tssajo@gmail.com"}],"license":"MIT","bin":{"html-minifier":"./cli.js"},"main":"src/htmlminifier.js","repository":{"type":"git","url":"git+https://github.com/kangax/html-minifier.git"},"bugs":{"url":"https://github.com/kangax/html-minifier/issues"},"engines":{"node":">=0.10.0"},"scripts":{"dist":"grunt dist","test":"grunt test"},"dependencies":{"change-case":"2.3.x","clean-css":"3.4.x","commander":"2.9.x","concat-stream":"1.5.x","he":"1.0.x","ncname":"1.0.x","relateurl":"0.2.x","uglify-js":"2.6.x","brotli":"1.2.x","chalk":"1.1.x","cli-table":"0.3.x","lzma":"2.3.x","minimize":"1.8.x","progress":"1.1.x"},"devDependencies":{"grunt":"1.0.x","grunt-browserify":"5.0.x","grunt-contrib-uglify":"1.0.x","grunt-eslint":"18.1.x","phantomjs-prebuilt":"2.1.x","qunitjs":"1.x"},"optionalDependencies":{"brotli":"1.2.x","chalk":"1.1.x","cli-table":"0.3.x","lzma":"2.3.x","minimize":"1.8.x","progress":"1.1.x"},"files":["src/*.js","cli.js","sample-cli-config-file.conf"],"gitHead":"db920b70d0888975d4459a914e640ef217c17a77","_id":"html-minifier@2.0.0","_shasum":"292c0dbe5fb2cca16497f6514d62b29e6404e607","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.1","_npmUser":{"name":"alexlamsl","email":"alexlamsl@gmail.com"},"dist":{"shasum":"292c0dbe5fb2cca16497f6514d62b29e6404e607","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-2.0.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/html-minifier-2.0.0.tgz_1461043317473_0.14455284224823117"},"directories":{}},"2.1.0":{"name":"html-minifier","description":"Highly configurable, well-tested, JavaScript-based HTML minifier.","version":"2.1.0","keywords":["cli","compress","compressor","css","html","htmlmin","javascript","min","minification","minifier","minify","optimize","optimizer","pack","packer","parse","parser","uglifier","uglify"],"homepage":"http://kangax.github.io/html-minifier/","author":{"name":"Juriy \"kangax\" Zaytsev"},"maintainers":[{"name":"alexlamsl","email":"alex+npm@starthq.com"},{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"},{"name":"Zoltan Frombach","email":"tssajo@gmail.com"}],"license":"MIT","bin":{"html-minifier":"./cli.js"},"main":"src/htmlminifier.js","repository":{"type":"git","url":"git+https://github.com/kangax/html-minifier.git"},"bugs":{"url":"https://github.com/kangax/html-minifier/issues"},"engines":{"node":">=0.10.0"},"scripts":{"dist":"grunt dist","test":"grunt test"},"dependencies":{"change-case":"2.3.x","clean-css":"3.4.x","commander":"2.9.x","concat-stream":"1.5.x","he":"1.0.x","ncname":"1.0.x","relateurl":"0.2.x","uglify-js":"2.6.x"},"devDependencies":{"grunt":"1.0.x","grunt-browserify":"5.0.x","grunt-contrib-uglify":"1.0.x","grunt-eslint":"18.1.x","phantomjs-prebuilt":"2.1.x","qunitjs":"1.x"},"benchmarkDependencies":{"brotli":"1.2.x","chalk":"1.1.x","cli-table":"0.3.x","lzma":"2.3.x","minimize":"1.8.x","progress":"1.1.x"},"files":["src/*.js","cli.js","sample-cli-config-file.conf"],"gitHead":"26a4600ad70538d5881a07ae7cbec25d98641d11","_id":"html-minifier@2.1.0","_shasum":"cb3dd866af40f7ea603c648871e7c6be9b77d88e","_from":".","_npmVersion":"3.8.3","_nodeVersion":"6.0.0-pre7","_npmUser":{"name":"alexlamsl","email":"alexlamsl@gmail.com"},"dist":{"shasum":"cb3dd866af40f7ea603c648871e7c6be9b77d88e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-2.1.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/html-minifier-2.1.0.tgz_1461408200166_0.61821568175219"},"directories":{}},"2.1.1":{"name":"html-minifier","description":"Highly configurable, well-tested, JavaScript-based HTML minifier.","version":"2.1.1","keywords":["cli","compress","compressor","css","html","htmlmin","javascript","min","minification","minifier","minify","optimize","optimizer","pack","packer","parse","parser","uglifier","uglify"],"homepage":"http://kangax.github.io/html-minifier/","author":{"name":"Juriy \"kangax\" Zaytsev"},"maintainers":[{"name":"alexlamsl","email":"alex+npm@starthq.com"},{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"},{"name":"Zoltan Frombach","email":"tssajo@gmail.com"}],"license":"MIT","bin":{"html-minifier":"./cli.js"},"main":"src/htmlminifier.js","repository":{"type":"git","url":"git+https://github.com/kangax/html-minifier.git"},"bugs":{"url":"https://github.com/kangax/html-minifier/issues"},"engines":{"node":">=0.10.0"},"scripts":{"dist":"grunt dist","test":"grunt test"},"dependencies":{"change-case":"2.3.x","clean-css":"3.4.x","commander":"2.9.x","he":"1.0.x","ncname":"1.0.x","relateurl":"0.2.x","uglify-js":"2.6.x"},"devDependencies":{"grunt":"1.0.x","grunt-browserify":"5.0.x","grunt-contrib-uglify":"1.0.x","grunt-eslint":"18.1.x","phantomjs-prebuilt":"2.1.x","qunitjs":"1.x"},"benchmarkDependencies":{"brotli":"1.2.x","chalk":"1.1.x","cli-table":"0.3.x","lzma":"2.3.x","minimize":"1.8.x","progress":"1.1.x"},"files":["src/*.js","cli.js","sample-cli-config-file.conf"],"gitHead":"7a4db8e7a8431a38d504ce4a923764a5375bb1ab","_id":"html-minifier@2.1.1","_shasum":"ff308a2b3d156ffdea16de3cbb94ce4116e68c7f","_from":".","_npmVersion":"3.8.3","_nodeVersion":"6.0.0-pre7","_npmUser":{"name":"alexlamsl","email":"alexlamsl@gmail.com"},"dist":{"shasum":"ff308a2b3d156ffdea16de3cbb94ce4116e68c7f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-2.1.1.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/html-minifier-2.1.1.tgz_1462131719018_0.5972132727038115"},"directories":{}},"2.1.2":{"name":"html-minifier","description":"Highly configurable, well-tested, JavaScript-based HTML minifier.","version":"2.1.2","keywords":["cli","compress","compressor","css","html","htmlmin","javascript","min","minification","minifier","minify","optimize","optimizer","pack","packer","parse","parser","uglifier","uglify"],"homepage":"http://kangax.github.io/html-minifier/","author":{"name":"Juriy \"kangax\" Zaytsev"},"maintainers":[{"name":"alexlamsl","email":"alex+npm@starthq.com"},{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"},{"name":"Zoltan Frombach","email":"tssajo@gmail.com"}],"license":"MIT","bin":{"html-minifier":"./cli.js"},"main":"src/htmlminifier.js","repository":{"type":"git","url":"git+https://github.com/kangax/html-minifier.git"},"bugs":{"url":"https://github.com/kangax/html-minifier/issues"},"engines":{"node":">=0.10.0"},"scripts":{"dist":"grunt dist","test":"grunt test"},"dependencies":{"change-case":"2.3.x","clean-css":"3.4.x","commander":"2.9.x","he":"1.0.x","ncname":"1.0.x","relateurl":"0.2.x","uglify-js":"2.6.x"},"devDependencies":{"grunt":"1.0.x","grunt-browserify":"5.0.x","grunt-contrib-uglify":"1.0.x","grunt-eslint":"18.1.x","phantomjs-prebuilt":"2.1.x","qunitjs":"1.x"},"benchmarkDependencies":{"brotli":"1.2.x","chalk":"1.1.x","cli-table":"0.3.x","lzma":"2.3.x","minimize":"1.8.x","progress":"1.1.x"},"files":["src/*.js","cli.js","sample-cli-config-file.conf"],"gitHead":"45ce137486f8a27681f04fecfa8687eca7b1c192","_id":"html-minifier@2.1.2","_shasum":"07b1437b6663dd6cf3e9964e88947df5bc1c2fc5","_from":".","_npmVersion":"3.8.3","_nodeVersion":"6.0.0-pre7","_npmUser":{"name":"alexlamsl","email":"alexlamsl@gmail.com"},"dist":{"shasum":"07b1437b6663dd6cf3e9964e88947df5bc1c2fc5","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-2.1.2.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/html-minifier-2.1.2.tgz_1462194474596_0.15764835756272078"},"directories":{}},"2.1.3":{"name":"html-minifier","description":"Highly configurable, well-tested, JavaScript-based HTML minifier.","version":"2.1.3","keywords":["cli","compress","compressor","css","html","htmlmin","javascript","min","minification","minifier","minify","optimize","optimizer","pack","packer","parse","parser","uglifier","uglify"],"homepage":"http://kangax.github.io/html-minifier/","author":{"name":"Juriy \"kangax\" Zaytsev"},"maintainers":[{"name":"alexlamsl","email":"alex+npm@starthq.com"},{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"},{"name":"Zoltan Frombach","email":"tssajo@gmail.com"}],"license":"MIT","bin":{"html-minifier":"./cli.js"},"main":"src/htmlminifier.js","repository":{"type":"git","url":"git+https://github.com/kangax/html-minifier.git"},"bugs":{"url":"https://github.com/kangax/html-minifier/issues"},"engines":{"node":">=0.10.0"},"scripts":{"dist":"grunt dist","test":"grunt test"},"dependencies":{"change-case":"2.3.x","clean-css":"3.4.x","commander":"2.9.x","he":"1.1.x","ncname":"1.0.x","relateurl":"0.2.x","uglify-js":"2.6.x"},"devDependencies":{"grunt":"1.0.x","grunt-browserify":"5.0.x","grunt-contrib-uglify":"1.0.x","grunt-eslint":"18.1.x","phantomjs-prebuilt":"2.1.x","qunitjs":"1.x"},"benchmarkDependencies":{"brotli":"1.2.x","chalk":"1.1.x","cli-table":"0.3.x","lzma":"2.3.x","minimize":"1.8.x","progress":"1.1.x"},"files":["src/*.js","cli.js","sample-cli-config-file.conf"],"gitHead":"18c486d25369599bab9381ba9d45bbf3c2107924","_id":"html-minifier@2.1.3","_shasum":"94b1fafdc75cf9efec49290c58969178eb494627","_from":".","_npmVersion":"3.8.3","_nodeVersion":"6.0.0-pre7","_npmUser":{"name":"alexlamsl","email":"alexlamsl@gmail.com"},"dist":{"shasum":"94b1fafdc75cf9efec49290c58969178eb494627","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-2.1.3.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/html-minifier-2.1.3.tgz_1463239640175_0.21753168385475874"},"directories":{}},"2.1.4":{"name":"html-minifier","description":"Highly configurable, well-tested, JavaScript-based HTML minifier.","version":"2.1.4","keywords":["cli","compress","compressor","css","html","htmlmin","javascript","min","minification","minifier","minify","optimize","optimizer","pack","packer","parse","parser","uglifier","uglify"],"homepage":"http://kangax.github.io/html-minifier/","author":{"name":"Juriy \"kangax\" Zaytsev"},"maintainers":[{"name":"alexlamsl","email":"alex+npm@starthq.com"},{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"},{"name":"Zoltan Frombach","email":"tssajo@gmail.com"}],"license":"MIT","bin":{"html-minifier":"./cli.js"},"main":"src/htmlminifier.js","repository":{"type":"git","url":"git+https://github.com/kangax/html-minifier.git"},"bugs":{"url":"https://github.com/kangax/html-minifier/issues"},"engines":{"node":">=0.10.0"},"scripts":{"dist":"grunt dist","test":"grunt test"},"dependencies":{"change-case":"3.0.x","clean-css":"3.4.x","commander":"2.9.x","he":"1.1.x","ncname":"1.0.x","relateurl":"0.2.x","uglify-js":"2.6.x"},"devDependencies":{"grunt":"1.0.x","grunt-browserify":"5.0.x","grunt-contrib-uglify":"1.0.x","grunt-eslint":"18.1.x","phantomjs-prebuilt":"2.1.x","qunitjs":"1.x"},"benchmarkDependencies":{"brotli":"1.2.x","chalk":"1.1.x","cli-table":"0.3.x","lzma":"2.3.x","minimize":"2.0.x","progress":"1.1.x"},"files":["src/*.js","cli.js","sample-cli-config-file.conf"],"gitHead":"3dc7d05fced8f3d8d238771a3c9fd2af75eb0523","_id":"html-minifier@2.1.4","_shasum":"a6ea039c05783fa1e7afdf0d3ad83fe0c0771f86","_from":".","_npmVersion":"3.8.3","_nodeVersion":"6.0.0-pre7","_npmUser":{"name":"alexlamsl","email":"alexlamsl@gmail.com"},"dist":{"shasum":"a6ea039c05783fa1e7afdf0d3ad83fe0c0771f86","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-2.1.4.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/html-minifier-2.1.4.tgz_1466078322051_0.6938322125934064"},"directories":{}},"2.1.5":{"name":"html-minifier","description":"Highly configurable, well-tested, JavaScript-based HTML minifier.","version":"2.1.5","keywords":["cli","compress","compressor","css","html","htmlmin","javascript","min","minification","minifier","minify","optimize","optimizer","pack","packer","parse","parser","uglifier","uglify"],"homepage":"http://kangax.github.io/html-minifier/","author":{"name":"Juriy \"kangax\" Zaytsev"},"maintainers":[{"name":"alexlamsl","email":"alex+npm@starthq.com"},{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"},{"name":"Zoltan Frombach","email":"tssajo@gmail.com"}],"license":"MIT","bin":{"html-minifier":"./cli.js"},"main":"src/htmlminifier.js","repository":{"type":"git","url":"git+https://github.com/kangax/html-minifier.git"},"bugs":{"url":"https://github.com/kangax/html-minifier/issues"},"engines":{"node":">=0.10.0"},"scripts":{"dist":"grunt dist","test":"grunt test"},"dependencies":{"change-case":"3.0.x","clean-css":"3.4.x","commander":"2.9.x","he":"1.1.x","ncname":"1.0.x","relateurl":"0.2.x","uglify-js":"2.6.x"},"devDependencies":{"grunt":"1.0.x","grunt-browserify":"5.0.x","grunt-contrib-uglify":"1.0.x","grunt-eslint":"18.1.x","phantomjs-prebuilt":"2.1.x","qunitjs":"2.x"},"benchmarkDependencies":{"brotli":"1.2.x","chalk":"1.1.x","cli-table":"0.3.x","lzma":"2.3.x","minimize":"2.0.x","progress":"1.1.x"},"files":["src/*.js","cli.js","sample-cli-config-file.conf"],"gitHead":"126f6e0cd21d3793aadba356f2d959314f54cd20","_id":"html-minifier@2.1.5","_shasum":"ebba8d5b99108043c7c3f2d8b2a410122e7eabcb","_from":".","_npmVersion":"3.8.3","_nodeVersion":"6.0.0-pre7","_npmUser":{"name":"alexlamsl","email":"alexlamsl@gmail.com"},"dist":{"shasum":"ebba8d5b99108043c7c3f2d8b2a410122e7eabcb","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-2.1.5.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/html-minifier-2.1.5.tgz_1466264914463_0.5498629494104534"},"directories":{}},"2.1.6":{"name":"html-minifier","description":"Highly configurable, well-tested, JavaScript-based HTML minifier.","version":"2.1.6","keywords":["cli","compress","compressor","css","html","htmlmin","javascript","min","minification","minifier","minify","optimize","optimizer","pack","packer","parse","parser","uglifier","uglify"],"homepage":"http://kangax.github.io/html-minifier/","author":{"name":"Juriy \"kangax\" Zaytsev"},"maintainers":[{"name":"alexlamsl","email":"alex+npm@starthq.com"},{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"},{"name":"Zoltan Frombach","email":"tssajo@gmail.com"}],"license":"MIT","bin":{"html-minifier":"./cli.js"},"main":"src/htmlminifier.js","repository":{"type":"git","url":"git+https://github.com/kangax/html-minifier.git"},"bugs":{"url":"https://github.com/kangax/html-minifier/issues"},"engines":{"node":">=0.10.0"},"scripts":{"dist":"grunt dist","test":"grunt test"},"dependencies":{"change-case":"3.0.x","clean-css":"3.4.x","commander":"2.9.x","he":"1.1.x","ncname":"1.0.x","relateurl":"0.2.x","uglify-js":"2.6.x"},"devDependencies":{"grunt":"1.0.x","grunt-browserify":"5.0.x","grunt-contrib-uglify":"1.0.x","grunt-eslint":"18.1.x","phantomjs-prebuilt":"2.1.x","qunitjs":"2.x"},"benchmarkDependencies":{"brotli":"1.2.x","chalk":"1.1.x","cli-table":"0.3.x","lzma":"2.3.x","minimize":"2.0.x","progress":"1.1.x"},"files":["src/*.js","cli.js","sample-cli-config-file.conf"],"gitHead":"c3c0e55a381d34e98c67fead9bea81a518b2c487","_id":"html-minifier@2.1.6","_shasum":"6236d794099e2cf97c02e7cb5b456184131b4367","_from":".","_npmVersion":"3.9.5","_nodeVersion":"7.0.0-pre8","_npmUser":{"name":"alexlamsl","email":"alexlamsl@gmail.com"},"dist":{"shasum":"6236d794099e2cf97c02e7cb5b456184131b4367","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-2.1.6.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/html-minifier-2.1.6.tgz_1466831924380_0.06976894685067236"},"directories":{}},"2.1.7":{"name":"html-minifier","description":"Highly configurable, well-tested, JavaScript-based HTML minifier.","version":"2.1.7","keywords":["cli","compress","compressor","css","html","htmlmin","javascript","min","minification","minifier","minify","optimize","optimizer","pack","packer","parse","parser","uglifier","uglify"],"homepage":"http://kangax.github.io/html-minifier/","author":{"name":"Juriy \"kangax\" Zaytsev"},"maintainers":[{"name":"alexlamsl","email":"alex+npm@starthq.com"},{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"},{"name":"Zoltan Frombach","email":"tssajo@gmail.com"}],"license":"MIT","bin":{"html-minifier":"./cli.js"},"main":"src/htmlminifier.js","repository":{"type":"git","url":"git+https://github.com/kangax/html-minifier.git"},"bugs":{"url":"https://github.com/kangax/html-minifier/issues"},"engines":{"node":">=0.10.0"},"scripts":{"dist":"grunt dist","test":"grunt test"},"dependencies":{"change-case":"3.0.x","clean-css":"3.4.x","commander":"2.9.x","he":"1.1.x","ncname":"1.0.x","relateurl":"0.2.x","uglify-js":"2.6.x"},"devDependencies":{"grunt":"1.0.x","grunt-browserify":"5.0.x","grunt-contrib-uglify":"1.0.x","grunt-eslint":"19.0.x","phantomjs-prebuilt":"2.1.x","qunitjs":"2.x"},"benchmarkDependencies":{"brotli":"1.2.x","chalk":"1.1.x","cli-table":"0.3.x","lzma":"2.3.x","minimize":"2.0.x","progress":"1.1.x"},"files":["src/*.js","cli.js","sample-cli-config-file.conf"],"gitHead":"049ce6265ddaf17abfc02a532de93c049c855389","_id":"html-minifier@2.1.7","_shasum":"9051d6fcbbcf214ed307e1ad74f432bb9ad655cc","_from":".","_npmVersion":"3.9.5","_nodeVersion":"7.0.0-pre8","_npmUser":{"name":"alexlamsl","email":"alexlamsl@gmail.com"},"dist":{"shasum":"9051d6fcbbcf214ed307e1ad74f432bb9ad655cc","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-2.1.7.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/html-minifier-2.1.7.tgz_1467528979101_0.17999707208946347"},"directories":{}},"3.0.0":{"name":"html-minifier","description":"Highly configurable, well-tested, JavaScript-based HTML minifier.","version":"3.0.0","keywords":["cli","compress","compressor","css","html","htmlmin","javascript","min","minification","minifier","minify","optimize","optimizer","pack","packer","parse","parser","uglifier","uglify"],"homepage":"http://kangax.github.io/html-minifier/","author":{"name":"Juriy \"kangax\" Zaytsev"},"maintainers":[{"name":"alexlamsl","email":"alex+npm@starthq.com"},{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"},{"name":"Zoltan Frombach","email":"tssajo@gmail.com"}],"license":"MIT","bin":{"html-minifier":"./cli.js"},"main":"src/htmlminifier.js","repository":{"type":"git","url":"git+https://github.com/kangax/html-minifier.git"},"bugs":{"url":"https://github.com/kangax/html-minifier/issues"},"engines":{"node":">=4"},"scripts":{"dist":"grunt dist","test":"grunt test"},"dependencies":{"change-case":"3.0.x","clean-css":"3.4.x","commander":"2.9.x","he":"1.1.x","ncname":"1.0.x","relateurl":"0.2.x","uglify-js":"2.7.x"},"devDependencies":{"grunt":"1.0.x","grunt-browserify":"5.0.x","grunt-contrib-uglify":"1.0.x","grunt-eslint":"19.0.x","phantomjs-prebuilt":"2.1.x","qunitjs":"2.x"},"benchmarkDependencies":{"brotli":"1.2.x","chalk":"1.1.x","cli-table":"0.3.x","lzma":"2.3.x","minimize":"2.0.x","progress":"1.1.x"},"files":["src/*.js","cli.js","sample-cli-config-file.conf"],"gitHead":"b2f5749b70bfd65c3c9237d6f21557c63c435b5a","_id":"html-minifier@3.0.0","_shasum":"7c973655fa3a0604dcb95f4eb002e16857d654c4","_from":".","_npmVersion":"3.9.5","_nodeVersion":"7.0.0-pre8","_npmUser":{"name":"alexlamsl","email":"alexlamsl@gmail.com"},"dist":{"shasum":"7c973655fa3a0604dcb95f4eb002e16857d654c4","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-3.0.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/html-minifier-3.0.0.tgz_1467963047629_0.1708131805062294"},"directories":{}},"3.0.1":{"name":"html-minifier","description":"Highly configurable, well-tested, JavaScript-based HTML minifier.","version":"3.0.1","keywords":["cli","compress","compressor","css","html","htmlmin","javascript","min","minification","minifier","minify","optimize","optimizer","pack","packer","parse","parser","uglifier","uglify"],"homepage":"http://kangax.github.io/html-minifier/","author":{"name":"Juriy \"kangax\" Zaytsev"},"maintainers":[{"name":"alexlamsl","email":"alex+npm@starthq.com"},{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"},{"name":"Zoltan Frombach","email":"tssajo@gmail.com"}],"license":"MIT","bin":{"html-minifier":"./cli.js"},"main":"src/htmlminifier.js","repository":{"type":"git","url":"git+https://github.com/kangax/html-minifier.git"},"bugs":{"url":"https://github.com/kangax/html-minifier/issues"},"engines":{"node":">=4"},"scripts":{"dist":"grunt dist","test":"grunt test"},"dependencies":{"change-case":"3.0.x","clean-css":"3.4.x","commander":"2.9.x","he":"1.1.x","ncname":"1.0.x","relateurl":"0.2.x","uglify-js":"2.7.x"},"devDependencies":{"grunt":"1.0.x","grunt-browserify":"5.0.x","grunt-contrib-uglify":"1.0.x","grunt-eslint":"19.0.x","phantomjs-prebuilt":"2.1.x","qunitjs":"2.x"},"benchmarkDependencies":{"brotli":"1.2.x","chalk":"1.1.x","cli-table":"0.3.x","lzma":"2.3.x","minimize":"2.0.x","progress":"1.1.x"},"files":["src/*.js","cli.js","sample-cli-config-file.conf"],"gitHead":"4a8f1031a5fc6a63bed2b63f220f011d516cc0b1","_id":"html-minifier@3.0.1","_shasum":"d694580afb10dade448a1cd96683a1adb1f08bc9","_from":".","_npmVersion":"3.9.5","_nodeVersion":"7.0.0-pre8","_npmUser":{"name":"alexlamsl","email":"alexlamsl@gmail.com"},"dist":{"shasum":"d694580afb10dade448a1cd96683a1adb1f08bc9","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-3.0.1.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/html-minifier-3.0.1.tgz_1468040269510_0.9450808824039996"},"directories":{}},"3.0.2":{"name":"html-minifier","description":"Highly configurable, well-tested, JavaScript-based HTML minifier.","version":"3.0.2","keywords":["cli","compress","compressor","css","html","htmlmin","javascript","min","minification","minifier","minify","optimize","optimizer","pack","packer","parse","parser","uglifier","uglify"],"homepage":"http://kangax.github.io/html-minifier/","author":{"name":"Juriy \"kangax\" Zaytsev"},"maintainers":[{"name":"alexlamsl","email":"alex+npm@starthq.com"},{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"},{"name":"Zoltan Frombach","email":"tssajo@gmail.com"}],"license":"MIT","bin":{"html-minifier":"./cli.js"},"main":"src/htmlminifier.js","repository":{"type":"git","url":"git+https://github.com/kangax/html-minifier.git"},"bugs":{"url":"https://github.com/kangax/html-minifier/issues"},"engines":{"node":">=4"},"scripts":{"dist":"grunt dist","test":"grunt test"},"dependencies":{"change-case":"3.0.x","clean-css":"3.4.x","commander":"2.9.x","he":"1.1.x","ncname":"1.0.x","relateurl":"0.2.x","uglify-js":"2.7.x"},"devDependencies":{"grunt":"1.0.x","grunt-browserify":"5.0.x","grunt-contrib-uglify":"2.0.x","grunt-eslint":"19.0.x","phantomjs-prebuilt":"2.1.x","qunitjs":"2.x"},"benchmarkDependencies":{"brotli":"1.2.x","chalk":"1.1.x","cli-table":"0.3.x","lzma":"2.3.x","minimize":"2.0.x","progress":"1.1.x"},"files":["src/*.js","cli.js","sample-cli-config-file.conf"],"gitHead":"948c4836ea26fa2d3db8f11298f22a0faaef4f21","_id":"html-minifier@3.0.2","_shasum":"4e5dc28ccd3b2cba2a3bbd20d572af83f48faaeb","_from":".","_npmVersion":"3.9.5","_nodeVersion":"7.0.0-pre8","_npmUser":{"name":"alexlamsl","email":"alexlamsl@gmail.com"},"dist":{"shasum":"4e5dc28ccd3b2cba2a3bbd20d572af83f48faaeb","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-3.0.2.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/html-minifier-3.0.2.tgz_1469892563402_0.7087493054568768"},"directories":{}},"3.0.3":{"name":"html-minifier","description":"Highly configurable, well-tested, JavaScript-based HTML minifier.","version":"3.0.3","keywords":["cli","compress","compressor","css","html","htmlmin","javascript","min","minification","minifier","minify","optimize","optimizer","pack","packer","parse","parser","uglifier","uglify"],"homepage":"http://kangax.github.io/html-minifier/","author":{"name":"Juriy \"kangax\" Zaytsev"},"maintainers":[{"name":"alexlamsl","email":"alex+npm@starthq.com"},{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"},{"name":"Zoltan Frombach","email":"tssajo@gmail.com"}],"license":"MIT","bin":{"html-minifier":"./cli.js"},"main":"src/htmlminifier.js","repository":{"type":"git","url":"git+https://github.com/kangax/html-minifier.git"},"bugs":{"url":"https://github.com/kangax/html-minifier/issues"},"engines":{"node":">=4"},"scripts":{"dist":"grunt dist","test":"grunt test"},"dependencies":{"change-case":"3.0.x","clean-css":"3.4.x","commander":"2.9.x","he":"1.1.x","ncname":"1.0.x","relateurl":"0.2.x","uglify-js":"2.7.x"},"devDependencies":{"grunt":"1.0.x","grunt-browserify":"5.0.x","grunt-contrib-uglify":"2.0.x","gruntify-eslint":"3.1.x","phantomjs-prebuilt":"2.1.x","qunitjs":"2.x"},"benchmarkDependencies":{"brotli":"1.3.x","chalk":"1.1.x","cli-table":"0.3.x","lzma":"2.3.x","minimize":"2.0.x","progress":"1.1.x"},"files":["src/*.js","cli.js","sample-cli-config-file.conf"],"gitHead":"89c29688d84b97de949b47dda66e72201760048a","_id":"html-minifier@3.0.3","_shasum":"21bb5463519b710a3b0a0e8e50a2ec0b2b690e4c","_from":".","_npmVersion":"3.10.3","_nodeVersion":"7.0.0-pre9","_npmUser":{"name":"alexlamsl","email":"alexlamsl@gmail.com"},"dist":{"shasum":"21bb5463519b710a3b0a0e8e50a2ec0b2b690e4c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-3.0.3.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/html-minifier-3.0.3.tgz_1474008989512_0.5552944969385862"},"directories":{}},"3.1.0":{"name":"html-minifier","description":"Highly configurable, well-tested, JavaScript-based HTML minifier.","version":"3.1.0","keywords":["cli","compress","compressor","css","html","htmlmin","javascript","min","minification","minifier","minify","optimize","optimizer","pack","packer","parse","parser","uglifier","uglify"],"homepage":"http://kangax.github.io/html-minifier/","author":{"name":"Juriy \"kangax\" Zaytsev"},"maintainers":[{"name":"alexlamsl","email":"alex+npm@starthq.com"},{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"},{"name":"Zoltan Frombach","email":"tssajo@gmail.com"}],"license":"MIT","bin":{"html-minifier":"./cli.js"},"main":"src/htmlminifier.js","repository":{"type":"git","url":"git+https://github.com/kangax/html-minifier.git"},"bugs":{"url":"https://github.com/kangax/html-minifier/issues"},"engines":{"node":">=4"},"scripts":{"dist":"grunt dist","test":"grunt test"},"dependencies":{"change-case":"3.0.x","clean-css":"3.4.x","commander":"2.9.x","he":"1.1.x","ncname":"1.0.x","relateurl":"0.2.x","uglify-js":"2.7.x"},"devDependencies":{"grunt":"1.0.x","grunt-browserify":"5.0.x","grunt-contrib-uglify":"2.0.x","gruntify-eslint":"3.1.x","phantomjs-prebuilt":"2.1.x","qunitjs":"2.x"},"benchmarkDependencies":{"brotli":"1.3.x","chalk":"1.1.x","cli-table":"0.3.x","lzma":"2.3.x","minimize":"2.0.x","progress":"1.1.x"},"files":["src/*.js","cli.js","sample-cli-config-file.conf"],"gitHead":"969d21a0a86696d0bb148e3c6bd572bddd9049c5","_id":"html-minifier@3.1.0","_shasum":"e0b35d7a1fff89ae989e2fa51c572bc0d1f2d1f6","_from":".","_npmVersion":"3.10.3","_nodeVersion":"7.0.0-pre9","_npmUser":{"name":"alexlamsl","email":"alexlamsl@gmail.com"},"dist":{"shasum":"e0b35d7a1fff89ae989e2fa51c572bc0d1f2d1f6","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-3.1.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/html-minifier-3.1.0.tgz_1474857214039_0.14933095779269934"},"directories":{}},"3.1.1":{"name":"html-minifier","description":"Highly configurable, well-tested, JavaScript-based HTML minifier.","version":"3.1.1","keywords":["cli","compress","compressor","css","html","htmlmin","javascript","min","minification","minifier","minify","optimize","optimizer","pack","packer","parse","parser","uglifier","uglify"],"homepage":"http://kangax.github.io/html-minifier/","author":{"name":"Juriy \"kangax\" Zaytsev"},"maintainers":[{"name":"alexlamsl","email":"alex+npm@starthq.com"},{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"},{"name":"Zoltan Frombach","email":"tssajo@gmail.com"}],"license":"MIT","bin":{"html-minifier":"./cli.js"},"main":"src/htmlminifier.js","repository":{"type":"git","url":"git+https://github.com/kangax/html-minifier.git"},"bugs":{"url":"https://github.com/kangax/html-minifier/issues"},"engines":{"node":">=4"},"scripts":{"dist":"grunt dist","test":"grunt test"},"dependencies":{"change-case":"3.0.x","clean-css":"3.4.x","commander":"2.9.x","he":"1.1.x","ncname":"1.0.x","relateurl":"0.2.x","uglify-js":"2.7.x"},"devDependencies":{"grunt":"1.0.x","grunt-browserify":"5.0.x","grunt-contrib-uglify":"2.0.x","gruntify-eslint":"3.1.x","phantomjs-prebuilt":"2.1.x","qunitjs":"2.x"},"benchmarkDependencies":{"brotli":"1.3.x","chalk":"1.1.x","cli-table":"0.3.x","lzma":"2.3.x","minimize":"2.0.x","progress":"1.1.x"},"files":["src/*.js","cli.js","sample-cli-config-file.conf"],"gitHead":"7ebf22c2dde7070d71d41889a60e6808af9bb333","_id":"html-minifier@3.1.1","_shasum":"73bd0600fc9d68f536b13a788360245b6d76eb9c","_from":".","_npmVersion":"3.10.3","_nodeVersion":"7.0.0-pre9","_npmUser":{"name":"alexlamsl","email":"alexlamsl@gmail.com"},"dist":{"shasum":"73bd0600fc9d68f536b13a788360245b6d76eb9c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-3.1.1.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/html-minifier-3.1.1.tgz_1478425820507_0.7456896570511162"},"directories":{}},"3.2.2":{"name":"html-minifier","description":"Highly configurable, well-tested, JavaScript-based HTML minifier.","version":"3.2.2","keywords":["cli","compress","compressor","css","html","htmlmin","javascript","min","minification","minifier","minify","optimize","optimizer","pack","packer","parse","parser","uglifier","uglify"],"homepage":"http://kangax.github.io/html-minifier/","author":{"name":"Juriy \"kangax\" Zaytsev"},"maintainers":[{"name":"alexlamsl","email":"alex+npm@starthq.com"},{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"},{"name":"Zoltan Frombach","email":"tssajo@gmail.com"}],"license":"MIT","bin":{"html-minifier":"./cli.js"},"main":"src/htmlminifier.js","repository":{"type":"git","url":"git+https://github.com/kangax/html-minifier.git"},"bugs":{"url":"https://github.com/kangax/html-minifier/issues"},"engines":{"node":">=4"},"scripts":{"dist":"grunt dist","test":"grunt test"},"dependencies":{"camel-case":"3.0.x","clean-css":"3.4.x","commander":"2.9.x","he":"1.1.x","ncname":"1.0.x","param-case":"2.1.x","relateurl":"0.2.x","uglify-js":"2.7.x"},"devDependencies":{"grunt":"1.0.x","grunt-browserify":"5.0.x","grunt-contrib-uglify":"2.0.x","gruntify-eslint":"3.1.x","phantomjs-prebuilt":"2.1.x","qunitjs":"2.x"},"benchmarkDependencies":{"brotli":"1.3.x","chalk":"1.1.x","cli-table":"0.3.x","lzma":"2.3.x","minimize":"2.0.x","progress":"1.1.x"},"files":["src/*.js","cli.js","sample-cli-config-file.conf"],"gitHead":"e3800b44253f18ba38924f8cf4e9db8fa96aea69","_id":"html-minifier@3.2.2","_shasum":"30d9fc4f22967bf056c68851e42a787bd45089a5","_from":".","_npmVersion":"3.10.3","_nodeVersion":"7.0.0-pre9","_npmUser":{"name":"alexlamsl","email":"alexlamsl@gmail.com"},"dist":{"shasum":"30d9fc4f22967bf056c68851e42a787bd45089a5","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-3.2.2.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/html-minifier-3.2.2.tgz_1479418569175_0.4232895409222692"},"directories":{}},"3.2.3":{"name":"html-minifier","description":"Highly configurable, well-tested, JavaScript-based HTML minifier.","version":"3.2.3","keywords":["cli","compress","compressor","css","html","htmlmin","javascript","min","minification","minifier","minify","optimize","optimizer","pack","packer","parse","parser","uglifier","uglify"],"homepage":"http://kangax.github.io/html-minifier/","author":{"name":"Juriy \"kangax\" Zaytsev"},"maintainers":[{"name":"alexlamsl","email":"alex+npm@starthq.com"},{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"},{"name":"Zoltan Frombach","email":"tssajo@gmail.com"}],"license":"MIT","bin":{"html-minifier":"./cli.js"},"main":"src/htmlminifier.js","repository":{"type":"git","url":"git+https://github.com/kangax/html-minifier.git"},"bugs":{"url":"https://github.com/kangax/html-minifier/issues"},"engines":{"node":">=4"},"scripts":{"dist":"grunt dist","test":"grunt test"},"dependencies":{"camel-case":"3.0.x","clean-css":"3.4.x","commander":"2.9.x","he":"1.1.x","ncname":"1.0.x","param-case":"2.1.x","relateurl":"0.2.x","uglify-js":"2.7.x"},"devDependencies":{"grunt":"1.0.x","grunt-browserify":"5.0.x","grunt-contrib-uglify":"2.0.x","gruntify-eslint":"3.1.x","phantomjs-prebuilt":"2.1.x","qunitjs":"2.x"},"benchmarkDependencies":{"brotli":"1.3.x","chalk":"1.1.x","cli-table":"0.3.x","lzma":"2.3.x","minimize":"2.0.x","progress":"1.1.x"},"files":["src/*.js","cli.js","sample-cli-config-file.conf"],"gitHead":"64190178d33882be1a89bcfc332d764f94d8b64c","_id":"html-minifier@3.2.3","_shasum":"d2ff536e24d95726c332493d8f77d84dbed85372","_from":".","_npmVersion":"3.10.3","_nodeVersion":"7.0.0-pre9","_npmUser":{"name":"alexlamsl","email":"alexlamsl@gmail.com"},"dist":{"shasum":"d2ff536e24d95726c332493d8f77d84dbed85372","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-3.2.3.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/html-minifier-3.2.3.tgz_1479970591584_0.511705641169101"},"directories":{}},"3.3.0":{"name":"html-minifier","description":"Highly configurable, well-tested, JavaScript-based HTML minifier.","version":"3.3.0","keywords":["cli","compress","compressor","css","html","htmlmin","javascript","min","minification","minifier","minify","optimize","optimizer","pack","packer","parse","parser","uglifier","uglify"],"homepage":"http://kangax.github.io/html-minifier/","author":{"name":"Juriy \"kangax\" Zaytsev"},"maintainers":[{"name":"alexlamsl","email":"alex+npm@starthq.com"},{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"},{"name":"Zoltan Frombach","email":"tssajo@gmail.com"}],"license":"MIT","bin":{"html-minifier":"./cli.js"},"main":"src/htmlminifier.js","repository":{"type":"git","url":"git+https://github.com/kangax/html-minifier.git"},"bugs":{"url":"https://github.com/kangax/html-minifier/issues"},"engines":{"node":">=4"},"scripts":{"dist":"grunt dist","test":"grunt test"},"dependencies":{"camel-case":"3.0.x","clean-css":"4.0.x","commander":"2.9.x","he":"1.1.x","ncname":"1.0.x","param-case":"2.1.x","relateurl":"0.2.x","uglify-js":"2.7.x"},"devDependencies":{"grunt":"1.0.x","grunt-browserify":"5.0.x","grunt-contrib-uglify":"2.0.x","gruntify-eslint":"3.1.x","phantomjs-prebuilt":"2.1.x","qunitjs":"2.x"},"benchmarkDependencies":{"brotli":"1.3.x","chalk":"1.1.x","cli-table":"0.3.x","lzma":"2.3.x","minimize":"2.0.x","progress":"1.1.x"},"files":["src/*.js","cli.js","sample-cli-config-file.conf"],"gitHead":"eb8b03182cb85cafbbc4d4fab386a6674cf49fae","_id":"html-minifier@3.3.0","_shasum":"a9b5b8eda501362d4c5699db02a8dc72013d1fab","_from":".","_npmVersion":"3.10.3","_nodeVersion":"7.0.0-pre9","_npmUser":{"name":"alexlamsl","email":"alexlamsl@gmail.com"},"dist":{"shasum":"a9b5b8eda501362d4c5699db02a8dc72013d1fab","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-3.3.0.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/html-minifier-3.3.0.tgz_1485278488243_0.19468101602979004"},"directories":{}},"3.3.1":{"name":"html-minifier","description":"Highly configurable, well-tested, JavaScript-based HTML minifier.","version":"3.3.1","keywords":["cli","compress","compressor","css","html","htmlmin","javascript","min","minification","minifier","minify","optimize","optimizer","pack","packer","parse","parser","uglifier","uglify"],"homepage":"http://kangax.github.io/html-minifier/","author":{"name":"Juriy \"kangax\" Zaytsev"},"maintainers":[{"name":"alexlamsl","email":"alex+npm@starthq.com"},{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"},{"name":"Zoltan Frombach","email":"tssajo@gmail.com"}],"license":"MIT","bin":{"html-minifier":"./cli.js"},"main":"src/htmlminifier.js","repository":{"type":"git","url":"git+https://github.com/kangax/html-minifier.git"},"bugs":{"url":"https://github.com/kangax/html-minifier/issues"},"engines":{"node":">=4"},"scripts":{"dist":"grunt dist","test":"grunt test"},"dependencies":{"camel-case":"3.0.x","clean-css":"4.0.x","commander":"2.9.x","he":"1.1.x","ncname":"1.0.x","param-case":"2.1.x","relateurl":"0.2.x","uglify-js":"2.7.x"},"devDependencies":{"grunt":"1.0.x","grunt-browserify":"5.0.x","grunt-contrib-uglify":"2.0.x","gruntify-eslint":"3.1.x","phantomjs-prebuilt":"2.1.x","qunitjs":"2.x"},"benchmarkDependencies":{"brotli":"1.3.x","chalk":"1.1.x","cli-table":"0.3.x","lzma":"2.3.x","minimize":"2.0.x","progress":"1.1.x"},"files":["src/*.js","cli.js","sample-cli-config-file.conf"],"gitHead":"c9f35d8e77ca746be45f992e0c41f98223596ad8","_id":"html-minifier@3.3.1","_shasum":"dd38e60571537bf34a8171889c64fce73c45edad","_from":".","_npmVersion":"3.10.3","_nodeVersion":"7.0.0-pre9","_npmUser":{"name":"alexlamsl","email":"alexlamsl@gmail.com"},"dist":{"shasum":"dd38e60571537bf34a8171889c64fce73c45edad","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-3.3.1.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/html-minifier-3.3.1.tgz_1486518472229_0.7295489760581404"},"directories":{}},"3.3.2":{"name":"html-minifier","description":"Highly configurable, well-tested, JavaScript-based HTML minifier.","version":"3.3.2","keywords":["cli","compress","compressor","css","html","htmlmin","javascript","min","minification","minifier","minify","optimize","optimizer","pack","packer","parse","parser","uglifier","uglify"],"homepage":"http://kangax.github.io/html-minifier/","author":{"name":"Juriy \"kangax\" Zaytsev"},"maintainers":[{"name":"alexlamsl","email":"alex+npm@starthq.com"},{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"},{"name":"Zoltan Frombach","email":"tssajo@gmail.com"}],"license":"MIT","bin":{"html-minifier":"./cli.js"},"main":"src/htmlminifier.js","repository":{"type":"git","url":"git+https://github.com/kangax/html-minifier.git"},"bugs":{"url":"https://github.com/kangax/html-minifier/issues"},"engines":{"node":">=4"},"scripts":{"dist":"grunt dist","test":"grunt test"},"dependencies":{"camel-case":"3.0.x","clean-css":"4.0.x","commander":"2.9.x","he":"1.1.x","ncname":"1.0.x","param-case":"2.1.x","relateurl":"0.2.x","uglify-js":"2.7.x"},"devDependencies":{"grunt":"1.0.x","grunt-browserify":"5.0.x","grunt-contrib-uglify":"2.1.x","gruntify-eslint":"3.1.x","phantomjs-prebuilt":"2.1.x","qunitjs":"2.x"},"benchmarkDependencies":{"brotli":"1.3.x","chalk":"1.1.x","cli-table":"0.3.x","lzma":"2.3.x","minimize":"2.0.x","progress":"1.1.x"},"files":["src/*.js","cli.js","sample-cli-config-file.conf"],"gitHead":"7b3a59a53822c248dc4a17b433a21afa8564fb6b","_id":"html-minifier@3.3.2","_shasum":"7259c2028d058dd90783745b3e4b246243a98d35","_from":".","_npmVersion":"3.10.3","_nodeVersion":"7.0.0-pre9","_npmUser":{"name":"alexlamsl","email":"alexlamsl@gmail.com"},"dist":{"shasum":"7259c2028d058dd90783745b3e4b246243a98d35","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-3.3.2.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/html-minifier-3.3.2.tgz_1487506997925_0.19861092721112072"},"directories":{}},"3.3.3":{"name":"html-minifier","description":"Highly configurable, well-tested, JavaScript-based HTML minifier.","version":"3.3.3","keywords":["cli","compress","compressor","css","html","htmlmin","javascript","min","minification","minifier","minify","optimize","optimizer","pack","packer","parse","parser","uglifier","uglify"],"homepage":"http://kangax.github.io/html-minifier/","author":{"name":"Juriy \"kangax\" Zaytsev"},"maintainers":[{"name":"alexlamsl","email":"alex+npm@starthq.com"},{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"},{"name":"Zoltan Frombach","email":"tssajo@gmail.com"}],"license":"MIT","bin":{"html-minifier":"./cli.js"},"main":"src/htmlminifier.js","repository":{"type":"git","url":"git+https://github.com/kangax/html-minifier.git"},"bugs":{"url":"https://github.com/kangax/html-minifier/issues"},"engines":{"node":">=4"},"scripts":{"dist":"grunt dist","test":"grunt test"},"dependencies":{"camel-case":"3.0.x","clean-css":"4.0.x","commander":"2.9.x","he":"1.1.x","ncname":"1.0.x","param-case":"2.1.x","relateurl":"0.2.x","uglify-js":"2.7.x"},"devDependencies":{"grunt":"1.0.x","grunt-browserify":"5.0.x","grunt-contrib-uglify":"2.1.x","gruntify-eslint":"3.1.x","phantomjs-prebuilt":"2.1.x","qunitjs":"2.x"},"benchmarkDependencies":{"brotli":"1.3.x","chalk":"1.1.x","cli-table":"0.3.x","lzma":"2.3.x","minimize":"2.0.x","progress":"1.1.x"},"files":["src/*.js","cli.js","sample-cli-config-file.conf"],"gitHead":"27d8341f52020e23c5ae1991ce96c0e4441cc5a7","_id":"html-minifier@3.3.3","_shasum":"5e85516b2aff3c3fb9bda351879375868386d6f6","_from":".","_npmVersion":"3.10.3","_nodeVersion":"7.0.0-pre9","_npmUser":{"name":"alexlamsl","email":"alexlamsl@gmail.com"},"dist":{"shasum":"5e85516b2aff3c3fb9bda351879375868386d6f6","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-3.3.3.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/html-minifier-3.3.3.tgz_1487510221885_0.966693123569712"},"directories":{}},"3.4.0":{"name":"html-minifier","description":"Highly configurable, well-tested, JavaScript-based HTML minifier.","version":"3.4.0","keywords":["cli","compress","compressor","css","html","htmlmin","javascript","min","minification","minifier","minify","optimize","optimizer","pack","packer","parse","parser","uglifier","uglify"],"homepage":"http://kangax.github.io/html-minifier/","author":{"name":"Juriy \"kangax\" Zaytsev"},"maintainers":[{"name":"alexlamsl","email":"alex+npm@starthq.com"},{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"},{"name":"Zoltan Frombach","email":"tssajo@gmail.com"}],"license":"MIT","bin":{"html-minifier":"./cli.js"},"main":"src/htmlminifier.js","repository":{"type":"git","url":"git+https://github.com/kangax/html-minifier.git"},"bugs":{"url":"https://github.com/kangax/html-minifier/issues"},"engines":{"node":">=4"},"scripts":{"dist":"grunt dist","test":"grunt test"},"dependencies":{"camel-case":"3.0.x","clean-css":"4.0.x","commander":"2.9.x","he":"1.1.x","ncname":"1.0.x","param-case":"2.1.x","relateurl":"0.2.x","uglify-js":"2.8.x"},"devDependencies":{"grunt":"1.0.x","grunt-browserify":"5.0.x","grunt-contrib-uglify":"2.1.x","gruntify-eslint":"3.1.x","phantomjs-prebuilt":"2.1.x","qunitjs":"2.x"},"benchmarkDependencies":{"brotli":"1.3.x","chalk":"1.1.x","cli-table":"0.3.x","lzma":"2.3.x","minimize":"2.0.x","progress":"1.1.x"},"files":["src/*.js","cli.js","sample-cli-config-file.conf"],"gitHead":"0a3075cf74fe1d413859fe62ea6b3190b3433aef","_id":"html-minifier@3.4.0","_shasum":"80f236b7374d70f017fecaac42d37bb1170d2975","_from":".","_npmVersion":"3.10.3","_nodeVersion":"7.0.0-pre9","_npmUser":{"name":"alexlamsl","email":"alexlamsl@gmail.com"},"dist":{"shasum":"80f236b7374d70f017fecaac42d37bb1170d2975","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-3.4.0.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/html-minifier-3.4.0.tgz_1488292887562_0.6446507200598717"},"directories":{}},"3.4.1":{"name":"html-minifier","description":"Highly configurable, well-tested, JavaScript-based HTML minifier.","version":"3.4.1","keywords":["cli","compress","compressor","css","html","htmlmin","javascript","min","minification","minifier","minify","optimize","optimizer","pack","packer","parse","parser","uglifier","uglify"],"homepage":"http://kangax.github.io/html-minifier/","author":{"name":"Juriy \"kangax\" Zaytsev"},"maintainers":[{"name":"alexlamsl","email":"alex+npm@starthq.com"},{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"},{"name":"Zoltan Frombach","email":"tssajo@gmail.com"}],"license":"MIT","bin":{"html-minifier":"./cli.js"},"main":"src/htmlminifier.js","repository":{"type":"git","url":"git+https://github.com/kangax/html-minifier.git"},"bugs":{"url":"https://github.com/kangax/html-minifier/issues"},"engines":{"node":">=4"},"scripts":{"dist":"grunt dist","test":"grunt test"},"dependencies":{"camel-case":"3.0.x","clean-css":"4.0.x","commander":"2.9.x","he":"1.1.x","ncname":"1.0.x","param-case":"2.1.x","relateurl":"0.2.x","uglify-js":"2.8.x"},"devDependencies":{"grunt":"1.0.x","grunt-browserify":"5.0.x","grunt-contrib-uglify":"2.2.x","gruntify-eslint":"3.1.x","phantomjs-prebuilt":"2.1.x","qunitjs":"2.x"},"benchmarkDependencies":{"brotli":"1.3.x","chalk":"1.1.x","cli-table":"0.3.x","lzma":"2.3.x","minimize":"2.1.x","progress":"1.1.x"},"files":["src/*.js","cli.js","sample-cli-config-file.conf"],"gitHead":"5b95af1a6a2162f51868dffdcbf5ace443c2b417","_id":"html-minifier@3.4.1","_shasum":"0bf3c54d7f116d500b78c51fc4246039922dc250","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.7.1","_npmUser":{"name":"alexlamsl","email":"alexlamsl@gmail.com"},"dist":{"shasum":"0bf3c54d7f116d500b78c51fc4246039922dc250","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-3.4.1.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/html-minifier-3.4.1.tgz_1489435816952_0.796590712852776"},"directories":{}},"3.4.2":{"name":"html-minifier","description":"Highly configurable, well-tested, JavaScript-based HTML minifier.","version":"3.4.2","keywords":["cli","compress","compressor","css","html","htmlmin","javascript","min","minification","minifier","minify","optimize","optimizer","pack","packer","parse","parser","uglifier","uglify"],"homepage":"http://kangax.github.io/html-minifier/","author":{"name":"Juriy \"kangax\" Zaytsev"},"maintainers":[{"name":"alexlamsl","email":"alex+npm@starthq.com"},{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"},{"name":"Zoltan Frombach","email":"tssajo@gmail.com"}],"license":"MIT","bin":{"html-minifier":"./cli.js"},"main":"src/htmlminifier.js","repository":{"type":"git","url":"git+https://github.com/kangax/html-minifier.git"},"bugs":{"url":"https://github.com/kangax/html-minifier/issues"},"engines":{"node":">=4"},"scripts":{"dist":"grunt dist","test":"grunt test"},"dependencies":{"camel-case":"3.0.x","clean-css":"4.0.x","commander":"2.9.x","he":"1.1.x","ncname":"1.0.x","param-case":"2.1.x","relateurl":"0.2.x","uglify-js":"2.8.x"},"devDependencies":{"grunt":"1.0.x","grunt-browserify":"5.0.x","grunt-contrib-uglify":"2.2.x","gruntify-eslint":"3.1.x","phantomjs-prebuilt":"2.1.x","qunitjs":"2.x"},"benchmarkDependencies":{"brotli":"1.3.x","chalk":"1.1.x","cli-table":"0.3.x","lzma":"2.3.x","minimize":"2.1.x","progress":"1.1.x"},"files":["src/*.js","cli.js","sample-cli-config-file.conf"],"gitHead":"d8c8680a98212077b637f6289625dcac22a32c16","_id":"html-minifier@3.4.2","_shasum":"31896baaf735c1d95f7a0b7291f9dc36c0720752","_from":".","_npmVersion":"4.1.2","_nodeVersion":"8.0.0-nightly20170318c0297990ba","_npmUser":{"name":"alexlamsl","email":"alexlamsl@gmail.com"},"dist":{"shasum":"31896baaf735c1d95f7a0b7291f9dc36c0720752","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-3.4.2.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/html-minifier-3.4.2.tgz_1489905956229_0.5216381342615932"},"directories":{}},"3.4.3":{"name":"html-minifier","description":"Highly configurable, well-tested, JavaScript-based HTML minifier.","version":"3.4.3","keywords":["cli","compress","compressor","css","html","htmlmin","javascript","min","minification","minifier","minify","optimize","optimizer","pack","packer","parse","parser","uglifier","uglify"],"homepage":"http://kangax.github.io/html-minifier/","author":{"name":"Juriy \"kangax\" Zaytsev"},"maintainers":[{"name":"alexlamsl","email":"alex+npm@starthq.com"},{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"},{"name":"Zoltan Frombach","email":"tssajo@gmail.com"}],"license":"MIT","bin":{"html-minifier":"./cli.js"},"main":"src/htmlminifier.js","repository":{"type":"git","url":"git+https://github.com/kangax/html-minifier.git"},"bugs":{"url":"https://github.com/kangax/html-minifier/issues"},"engines":{"node":">=4"},"scripts":{"dist":"grunt dist","test":"grunt test"},"dependencies":{"camel-case":"3.0.x","clean-css":"4.0.x","commander":"2.9.x","he":"1.1.x","ncname":"1.0.x","param-case":"2.1.x","relateurl":"0.2.x","uglify-js":"~2.8.22"},"devDependencies":{"grunt":"1.0.x","grunt-browserify":"5.0.x","grunt-contrib-uglify":"2.3.x","gruntify-eslint":"3.1.x","phantomjs-prebuilt":"2.1.x","qunitjs":"2.x","uglify-to-browserify":"1.0.x"},"benchmarkDependencies":{"brotli":"1.3.x","chalk":"1.1.x","cli-table":"0.3.x","lzma":"2.3.x","minimize":"2.1.x","progress":"2.0.x"},"files":["src/*.js","cli.js","sample-cli-config-file.conf"],"gitHead":"afaafeb2b3aa9f1a1b9a9c54275092a8202b9a28","_id":"html-minifier@3.4.3","_shasum":"eb3a7297c804611f470454eeebe0aacc427e424a","_from":".","_npmVersion":"4.2.0","_nodeVersion":"8.0.0-nightly20170407265fc0bedc","_npmUser":{"name":"alexlamsl","email":"alexlamsl@gmail.com"},"dist":{"shasum":"eb3a7297c804611f470454eeebe0aacc427e424a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-3.4.3.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/html-minifier-3.4.3.tgz_1491723877945_0.5113236841280013"},"directories":{}},"3.4.4":{"name":"html-minifier","description":"Highly configurable, well-tested, JavaScript-based HTML minifier.","version":"3.4.4","keywords":["cli","compress","compressor","css","html","htmlmin","javascript","min","minification","minifier","minify","optimize","optimizer","pack","packer","parse","parser","uglifier","uglify"],"homepage":"http://kangax.github.io/html-minifier/","author":{"name":"Juriy \"kangax\" Zaytsev"},"maintainers":[{"name":"alexlamsl","email":"alex+npm@starthq.com"},{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"},{"name":"Zoltan Frombach","email":"tssajo@gmail.com"}],"license":"MIT","bin":{"html-minifier":"./cli.js"},"main":"src/htmlminifier.js","repository":{"type":"git","url":"git+https://github.com/kangax/html-minifier.git"},"bugs":{"url":"https://github.com/kangax/html-minifier/issues"},"engines":{"node":">=4"},"scripts":{"dist":"grunt dist","test":"grunt test"},"dependencies":{"camel-case":"3.0.x","clean-css":"4.0.x","commander":"2.9.x","he":"1.1.x","ncname":"1.0.x","param-case":"2.1.x","relateurl":"0.2.x","uglify-js":"~2.8.22"},"devDependencies":{"grunt":"1.0.x","grunt-browserify":"5.0.x","grunt-contrib-uglify":"2.3.x","gruntify-eslint":"3.1.x","phantomjs-prebuilt":"2.1.x","qunitjs":"2.x","uglify-to-browserify":"1.0.x"},"benchmarkDependencies":{"brotli":"1.3.x","chalk":"1.1.x","cli-table":"0.3.x","lzma":"2.3.x","minimize":"2.1.x","progress":"2.0.x"},"files":["src/*.js","cli.js","sample-cli-config-file.conf"],"gitHead":"3e116dfc6e8109408844dc8d53debf6296990186","_id":"html-minifier@3.4.4","_shasum":"616fe3e3ef16da02b393d9a6099eeff468a35df0","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.10.0","_npmUser":{"name":"alexlamsl","email":"alexlamsl@gmail.com"},"dist":{"shasum":"616fe3e3ef16da02b393d9a6099eeff468a35df0","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-3.4.4.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/html-minifier-3.4.4.tgz_1494074280369_0.9554194097872823"},"directories":{}},"3.5.0":{"name":"html-minifier","description":"Highly configurable, well-tested, JavaScript-based HTML minifier.","version":"3.5.0","keywords":["cli","compress","compressor","css","html","htmlmin","javascript","min","minification","minifier","minify","optimize","optimizer","pack","packer","parse","parser","uglifier","uglify"],"homepage":"http://kangax.github.io/html-minifier/","author":{"name":"Juriy \"kangax\" Zaytsev"},"maintainers":[{"name":"alexlamsl","email":"alex+npm@starthq.com"},{"name":"kangax","email":"kangax@gmail.com"}],"contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"},{"name":"Zoltan Frombach","email":"tssajo@gmail.com"}],"license":"MIT","bin":{"html-minifier":"./cli.js"},"main":"src/htmlminifier.js","repository":{"type":"git","url":"git+https://github.com/kangax/html-minifier.git"},"bugs":{"url":"https://github.com/kangax/html-minifier/issues"},"engines":{"node":">=4"},"scripts":{"dist":"grunt dist","test":"grunt test"},"dependencies":{"camel-case":"3.0.x","clean-css":"4.1.x","commander":"2.9.x","he":"1.1.x","ncname":"1.0.x","param-case":"2.1.x","relateurl":"0.2.x","uglify-js":"3.0.x"},"devDependencies":{"grunt":"1.0.x","grunt-browserify":"5.0.x","grunt-contrib-uglify":"3.0.x","gruntify-eslint":"3.1.x","phantomjs-prebuilt":"2.1.x","qunitjs":"2.x"},"benchmarkDependencies":{"brotli":"1.3.x","chalk":"1.1.x","cli-table":"0.3.x","lzma":"2.3.x","minimize":"2.1.x","progress":"2.0.x"},"files":["src/*.js","cli.js","sample-cli-config-file.conf"],"gitHead":"b328d5029ef97558593438a41246a05985949fc0","_id":"html-minifier@3.5.0","_shasum":"98be1b18f87443592722f654e67a1541f22018cb","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.10.0","_npmUser":{"name":"alexlamsl","email":"alexlamsl@gmail.com"},"dist":{"shasum":"98be1b18f87443592722f654e67a1541f22018cb","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/html-minifier/-/html-minifier-3.5.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/html-minifier-3.5.0.tgz_1494879177753_0.1812389027327299"},"directories":{}}},"name":"html-minifier","contributors":[{"name":"Gilmore Davidson","url":"https://github.com/gilmoreorless"},{"name":"Hugo Wetterberg","email":"hugo@wetterberg.nu"},{"name":"Zoltan Frombach","email":"tssajo@gmail.com"}],"time":{"modified":"2017-05-19T13:57:40.941Z","created":"2011-08-05T22:37:09.311Z","0.4.3":"2011-08-05T22:37:11.460Z","0.4.4":"2011-08-08T22:42:57.057Z","0.4.5":"2011-08-08T22:54:04.206Z","0.5.0":"2013-04-02T12:37:44.048Z","0.5.1":"2013-05-12T17:10:53.063Z","0.5.2":"2013-05-13T00:05:56.850Z","0.5.4":"2013-09-04T11:33:42.109Z","0.5.5":"2014-01-21T19:02:31.006Z","0.5.6":"2014-03-12T19:08:29.200Z","0.6.0":"2014-05-04T10:56:38.742Z","0.6.1":"2014-05-22T18:32:22.044Z","0.6.2":"2014-06-19T20:49:12.661Z","0.6.3":"2014-06-24T13:13:34.790Z","0.6.4":"2014-07-06T18:14:55.320Z","0.6.5":"2014-07-06T18:16:14.814Z","0.6.6":"2014-07-27T17:40:03.761Z","0.6.7":"2014-09-02T14:01:17.885Z","0.6.8":"2014-09-03T14:59:02.997Z","0.6.9":"2014-10-16T15:39:25.898Z","0.7.0":"2015-02-04T12:30:04.299Z","0.7.1":"2015-04-04T14:56:02.996Z","0.7.2":"2015-04-05T15:59:31.758Z","0.8.0":"2015-09-23T18:14:24.345Z","1.0.0":"2015-10-25T15:26:57.543Z","1.0.1":"2015-12-24T16:38:34.854Z","1.1.1":"2016-01-04T22:11:26.133Z","1.2.0":"2016-02-19T19:26:22.995Z","1.3.0":"2016-03-16T19:22:51.240Z","1.3.1":"2016-03-23T06:08:52.725Z","1.4.0":"2016-03-30T21:31:27.162Z","1.5.0":"2016-04-10T06:46:54.569Z","2.0.0":"2016-04-19T05:21:57.878Z","2.1.0":"2016-04-23T10:43:20.731Z","2.1.1":"2016-05-01T19:42:01.509Z","2.1.2":"2016-05-02T13:07:55.029Z","2.1.3":"2016-05-14T15:27:23.691Z","2.1.4":"2016-06-16T11:58:42.436Z","2.1.5":"2016-06-18T15:48:34.865Z","2.1.6":"2016-06-25T05:18:44.962Z","2.1.7":"2016-07-03T06:56:19.568Z","3.0.0":"2016-07-08T07:30:50.116Z","3.0.1":"2016-07-09T04:57:49.969Z","3.0.2":"2016-07-30T15:29:27.855Z","3.0.3":"2016-09-16T06:56:32.067Z","3.1.0":"2016-09-26T02:33:34.275Z","3.1.1":"2016-11-06T09:50:22.616Z","3.2.0":"2016-11-17T16:46:03.350Z","3.2.1":"2016-11-17T17:20:01.559Z","3.2.2":"2016-11-17T21:36:11.179Z","3.2.3":"2016-11-24T06:56:31.810Z","3.3.0":"2017-01-24T17:21:30.120Z","3.3.1":"2017-02-08T01:47:52.475Z","3.3.2":"2017-02-19T12:23:18.174Z","3.3.3":"2017-02-19T13:17:03.514Z","3.4.0":"2017-02-28T14:41:29.392Z","3.4.1":"2017-03-13T20:10:17.189Z","3.4.2":"2017-03-19T06:45:58.162Z","3.4.3":"2017-04-09T07:44:38.214Z","3.4.4":"2017-05-06T12:38:02.391Z","3.5.0":"2017-05-15T20:12:58.017Z"},"readmeFilename":"README.md","homepage":"http://kangax.github.io/html-minifier/"}