{"maintainers":[{"name":"feedic","email":"me@feedic.com"}],"keywords":["html","parser","streams","xml","dom","rss","feed","atom"],"dist-tags":{"latest":"3.9.2"},"author":{"name":"Felix Boehm","email":"me@feedic.com"},"description":"Fast & forgiving HTML/XML/RSS parser","readme":"# htmlparser2\n\n[![NPM version](http://img.shields.io/npm/v/htmlparser2.svg?style=flat)](https://npmjs.org/package/htmlparser2)\n[![Downloads](https://img.shields.io/npm/dm/htmlparser2.svg?style=flat)](https://npmjs.org/package/htmlparser2)\n[![Build Status](http://img.shields.io/travis/fb55/htmlparser2/master.svg?style=flat)](http://travis-ci.org/fb55/htmlparser2)\n[![Coverage](http://img.shields.io/coveralls/fb55/htmlparser2.svg?style=flat)](https://coveralls.io/r/fb55/htmlparser2)\n\nA forgiving HTML/XML/RSS parser. The parser can handle streams and provides a callback interface.\n\n## Installation\n\tnpm install htmlparser2\n\nA live demo of htmlparser2 is available [here](http://demos.forbeslindesay.co.uk/htmlparser2/).\n\n## Usage\n\n```javascript\nvar htmlparser = require(\"htmlparser2\");\nvar parser = new htmlparser.Parser({\n\tonopentag: function(name, attribs){\n\t\tif(name === \"script\" && attribs.type === \"text/javascript\"){\n\t\t\tconsole.log(\"JS! Hooray!\");\n\t\t}\n\t},\n\tontext: function(text){\n\t\tconsole.log(\"-->\", text);\n\t},\n\tonclosetag: function(tagname){\n\t\tif(tagname === \"script\"){\n\t\t\tconsole.log(\"That's it?!\");\n\t\t}\n\t}\n}, {decodeEntities: true});\nparser.write(\"Xyz <script type='text/javascript'>var foo = '<<bar>>';</ script>\");\nparser.end();\n```\n\nOutput (simplified):\n\n```\n--> Xyz\nJS! Hooray!\n--> var foo = '<<bar>>';\nThat's it?!\n```\n\n## Documentation\n\nRead more about the parser and its options in the [wiki](https://github.com/fb55/htmlparser2/wiki/Parser-options).\n\n## Get a DOM\nThe `DomHandler` (known as `DefaultHandler` in the original `htmlparser` module) produces a DOM (document object model) that can be manipulated using the [`DomUtils`](https://github.com/fb55/DomUtils) helper.\n\nThe `DomHandler`, while still bundled with this module, was moved to its [own module](https://github.com/fb55/domhandler). Have a look at it for further information.\n\n## Parsing RSS/RDF/Atom Feeds\n\n```javascript\nnew htmlparser.FeedHandler(function(<error> error, <object> feed){\n    ...\n});\n```\n\nNote: While the provided feed handler works for most feeds, you might want to use  [danmactough/node-feedparser](https://github.com/danmactough/node-feedparser), which is much better tested and actively maintained.\n\n## Performance\n\nAfter having some artificial benchmarks for some time, __@AndreasMadsen__ published his [`htmlparser-benchmark`](https://github.com/AndreasMadsen/htmlparser-benchmark), which benchmarks HTML parses based on real-world websites.\n\nAt the time of writing, the latest versions of all supported parsers show the following performance characteristics on [Travis CI](https://travis-ci.org/AndreasMadsen/htmlparser-benchmark/builds/10805007) (please note that Travis doesn't guarantee equal conditions for all tests):\n\n```\ngumbo-parser   : 34.9208 ms/file ± 21.4238\nhtml-parser    : 24.8224 ms/file ± 15.8703\nhtml5          : 419.597 ms/file ± 264.265\nhtmlparser     : 60.0722 ms/file ± 384.844\nhtmlparser2-dom: 12.0749 ms/file ± 6.49474\nhtmlparser2    : 7.49130 ms/file ± 5.74368\nhubbub         : 30.4980 ms/file ± 16.4682\nlibxmljs       : 14.1338 ms/file ± 18.6541\nparse5         : 22.0439 ms/file ± 15.3743\nsax            : 49.6513 ms/file ± 26.6032\n```\n\n## How does this module differ from [node-htmlparser](https://github.com/tautologistics/node-htmlparser)?\n\nThis is a fork of the `htmlparser` module. The main difference is that this is intended to be used only with node (it runs on other platforms using [browserify](https://github.com/substack/node-browserify)). `htmlparser2` was rewritten multiple times and, while it maintains an API that's compatible with `htmlparser` in most cases, the projects don't share any code anymore.\n\nThe parser now provides a callback interface close to [sax.js](https://github.com/isaacs/sax-js) (originally targeted at [readabilitySAX](https://github.com/fb55/readabilitysax)). As a result, old handlers won't work anymore.\n\nThe `DefaultHandler` and the `RssHandler` were renamed to clarify their purpose (to `DomHandler` and `FeedHandler`). The old names are still available when requiring `htmlparser2`, your code should work as expected.\n","repository":{"type":"git","url":"git://github.com/fb55/htmlparser2.git"},"users":{"charmander":true,"jswartwood":true,"doliveira":true,"devonning":true,"sbruchmann":true,"tunnckocore":true,"ttsuchiya":true,"stanzhai":true,"shanewholloway":true,"phuego":true,"piper0804":true,"deemstone":true,"jacoborus":true,"demian85":true,"joaocosta":true,"yasinaydin":true,"kulakowka":true,"tunderdomb":true,"subchen":true,"ivanoats":true,"brentonhouse":true,"xek":true,"ninozhang":true,"shipengyan":true,"koolkao":true,"ddffx":true,"amaynut":true,"goodseller":true,"fotooo":true,"ocd_lionel":true,"parkerproject":true,"pdedkov":true,"pandao":true,"maxidr":true,"edloidas":true,"vaviloff":true,"robnov":true,"andrelion":true,"jokja":true,"vamakoda":true,"erincinci":true,"mccoyjordan":true,"nonemoticoner":true,"bemace":true,"xxsnake28":true,"thinhair":true,"preco21":true,"tommyzzm":true,"rubiadias":true,"anthonyvdg":true,"krambuhl":true,"xyyjk":true,"pkout":true,"marsking":true,"errhunter":true,"neo1":true,"danielbankhead":true,"ahvonenj":true,"mojaray2k":true,"jeffersonsouza":true,"monjer":true,"drewigg":true,"bapinney":true,"coolbong":true,"mirkoj":true,"rojo2":true,"emersonmx":true,"bluelovers":true,"gioele-antoci":true,"ukuli":true,"rocket0191":true,"tsxuehu":true,"bphanikumar":true,"harumambur":true,"scott.m.sarsfield":true,"ahmed-dinar":true,"yorusi":true},"bugs":{"url":"http://github.com/fb55/htmlparser2/issues"},"license":"MIT","versions":{"1.0.0":{"name":"htmlparser2","description":"Forgiving HTML/XML/RSS Parser for Node. This version is optimised and cleaned and provides a SAX interface (EventedHandler).","version":"1.0.0","author":{"name":"Felix Boehm","email":"me@feedic.com"},"contributors":[{"name":"Chris Winberry","email":"chris@winberry.net"}],"repository":{"type":"git","url":"git://github.com/fb55/node-htmlparser.git"},"bugs":{"email":"me@feedic.com","url":"http://github.com/fb55/node-htmlparser/issues"},"directories":{"lib":"./lib/"},"main":"./lib/htmlparser","engines":{"node":">0"},"licenses":[{"type":"MIT","url":"http://github.com/tautologistics/node-htmlparser/raw/master/LICENSE"}],"_id":"htmlparser2@1.0.0","_engineSupported":true,"_npmVersion":"1.0.1rc5","_nodeVersion":"v0.4.10","_defaultsLoaded":true,"dist":{"shasum":"5bc30aa170e439652cdaeafc80c7cf8c20534af2","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-1.0.0.tgz"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}]},"1.1.0":{"name":"htmlparser2","description":"Forgiving HTML/XML/RSS Parser for Node. This version is optimised and cleaned and provides a SAX interface (EventedHandler).","version":"1.1.0","author":{"name":"Felix Boehm","email":"me@feedic.com"},"contributors":[{"name":"Chris Winberry","email":"chris@winberry.net"}],"repository":{"type":"git","url":"git://github.com/fb55/node-htmlparser.git"},"bugs":{"email":"me@feedic.com","url":"http://github.com/fb55/node-htmlparser/issues"},"directories":{"lib":"./lib/"},"main":"./lib/htmlparser","engines":{"node":">0"},"licenses":[{"type":"MIT","url":"http://github.com/tautologistics/node-htmlparser/raw/master/LICENSE"}],"_id":"htmlparser2@1.1.0","_engineSupported":true,"_npmVersion":"1.0.1rc5","_nodeVersion":"v0.4.10","_defaultsLoaded":true,"dist":{"shasum":"7449d714006d3f0f6c5cfff771ca1f7250431b0f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-1.1.0.tgz"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}]},"1.5.0":{"name":"htmlparser2","description":"Forgiving HTML/XML/RSS Parser for Node. This version is optimised and cleaned and provides a SAX interface (EventedHandler).","version":"1.5.0","author":{"name":"Felix Boehm","email":"me@feedic.com"},"contributors":[{"name":"Chris Winberry","email":"chris@winberry.net"}],"repository":{"type":"git","url":"git://github.com/fb55/node-htmlparser.git"},"bugs":{"email":"me@feedic.com","url":"http://github.com/fb55/node-htmlparser/issues"},"directories":{"lib":"./lib/"},"main":"./lib/","engines":{"node":">0"},"licenses":[{"type":"MIT","url":"http://github.com/tautologistics/node-htmlparser/raw/master/LICENSE"}],"_npmUser":{"name":"feedic","email":"me@feedic.com"},"_id":"htmlparser2@1.5.0","dependencies":{},"devDependencies":{},"_engineSupported":true,"_npmVersion":"1.0.103","_nodeVersion":"v0.4.10","_defaultsLoaded":true,"dist":{"shasum":"f579bbd9f3a7a58c966f7b39fae8c80ca08cfddd","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-1.5.0.tgz"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}]},"2.0.0":{"name":"htmlparser2","description":"Forgiving HTML/XML/RSS Parser for Node. This version is optimised and cleaned and provides a SAX interface.","version":"2.0.0","author":{"name":"Felix Boehm","email":"me@feedic.com"},"contributors":[{"name":"Chris Winberry","email":"chris@winberry.net"}],"repository":{"type":"git","url":"git://github.com/fb55/node-htmlparser.git"},"bugs":{"email":"me@feedic.com","url":"http://github.com/fb55/node-htmlparser/issues"},"directories":{"lib":"./lib/"},"main":"./lib/","scripts":{"test":"cd tests && node 00-runtests.js"},"engines":{"node":">0"},"licenses":[{"type":"MIT","url":"http://github.com/tautologistics/node-htmlparser/raw/master/LICENSE"}],"_npmUser":{"name":"feedic","email":"me@feedic.com"},"_id":"htmlparser2@2.0.0","dependencies":{},"devDependencies":{},"_engineSupported":true,"_npmVersion":"1.0.106","_nodeVersion":"v0.6.2","_defaultsLoaded":true,"dist":{"shasum":"4f3726cb094c0075c09adcb068cfe9718de87a8b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-2.0.0.tgz"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}]},"2.0.1":{"name":"htmlparser2","description":"Forgiving HTML/XML/RSS Parser for Node. This version is optimised and cleaned and provides a SAX interface.","version":"2.0.1","author":{"name":"Felix Boehm","email":"me@feedic.com"},"contributors":[{"name":"Chris Winberry","email":"chris@winberry.net"}],"repository":{"type":"git","url":"git://github.com/fb55/node-htmlparser.git"},"bugs":{"email":"me@feedic.com","url":"http://github.com/fb55/node-htmlparser/issues"},"directories":{"lib":"./lib/"},"main":"./lib/","scripts":{"test":"cd tests && node 00-runtests.js"},"engines":{"node":">0"},"licenses":[{"type":"MIT","url":"http://github.com/tautologistics/node-htmlparser/raw/master/LICENSE"}],"_npmUser":{"name":"feedic","email":"me@feedic.com"},"_id":"htmlparser2@2.0.1","dependencies":{},"devDependencies":{},"_engineSupported":true,"_npmVersion":"1.0.106","_nodeVersion":"v0.6.4","_defaultsLoaded":true,"dist":{"shasum":"73a9d3e9e30f051e7473ef71f6638581c7588fea","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-2.0.1.tgz"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}]},"2.1.0":{"name":"htmlparser2","description":"Forgiving HTML/XML/RSS Parser for Node. This version is optimised and cleaned and provides a SAX interface.","version":"2.1.0","author":{"name":"Felix Boehm","email":"me@feedic.com"},"contributors":[{"name":"Chris Winberry","email":"chris@winberry.net"}],"repository":{"type":"git","url":"git://github.com/fb55/node-htmlparser.git"},"bugs":{"email":"me@feedic.com","url":"http://github.com/fb55/node-htmlparser/issues"},"directories":{"lib":"./lib/"},"main":"./lib/","scripts":{"test":"cd tests && node 00-runtests.js"},"engines":{"node":">0"},"licenses":[{"type":"MIT","url":"http://github.com/tautologistics/node-htmlparser/raw/master/LICENSE"}],"_npmUser":{"name":"feedic","email":"me@feedic.com"},"_id":"htmlparser2@2.1.0","dependencies":{},"devDependencies":{},"_engineSupported":true,"_npmVersion":"1.0.106","_nodeVersion":"v0.6.6","_defaultsLoaded":true,"dist":{"shasum":"b3f2fed1dd81e0f62772756537322080d6cf4408","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-2.1.0.tgz"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}]},"2.1.1":{"name":"htmlparser2","description":"Forgiving HTML/XML/RSS Parser for Node. This version is optimised and cleaned and provides a SAX interface.","version":"2.1.1","author":{"name":"Felix Boehm","email":"me@feedic.com"},"contributors":[{"name":"Chris Winberry","email":"chris@winberry.net"}],"repository":{"type":"git","url":"git://github.com/fb55/node-htmlparser.git"},"bugs":{"email":"me@feedic.com","url":"http://github.com/fb55/node-htmlparser/issues"},"directories":{"lib":"./lib/"},"main":"./lib/","scripts":{"test":"cd tests && node 00-runtests.js"},"engines":{"node":"node >= 0.3.0"},"licenses":[{"type":"MIT","url":"http://github.com/tautologistics/node-htmlparser/raw/master/LICENSE"}],"_npmUser":{"name":"feedic","email":"me@feedic.com"},"_id":"htmlparser2@2.1.1","dependencies":{},"devDependencies":{},"_engineSupported":true,"_npmVersion":"1.0.106","_nodeVersion":"v0.6.6","_defaultsLoaded":true,"dist":{"shasum":"384616d9715e71c07efca0d7ecb931fce9c7a085","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-2.1.1.tgz"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}]},"2.1.2":{"name":"htmlparser2","description":"Forgiving HTML/XML/RSS Parser for Node. This version is optimised and cleaned and provides a SAX interface.","version":"2.1.2","author":{"name":"Felix Boehm","email":"me@feedic.com"},"contributors":[{"name":"Chris Winberry","email":"chris@winberry.net"}],"repository":{"type":"git","url":"git://github.com/fb55/node-htmlparser.git"},"bugs":{"email":"me@feedic.com","url":"http://github.com/fb55/node-htmlparser/issues"},"directories":{"lib":"./lib/"},"main":"./lib/","scripts":{"test":"cd tests && node 00-runtests.js"},"engines":{"node":"node >= 0.3.0"},"licenses":[{"type":"MIT","url":"http://github.com/tautologistics/node-htmlparser/raw/master/LICENSE"}],"_npmUser":{"name":"feedic","email":"me@feedic.com"},"_id":"htmlparser2@2.1.2","dependencies":{},"devDependencies":{},"_engineSupported":true,"_npmVersion":"1.0.106","_nodeVersion":"v0.6.6","_defaultsLoaded":true,"dist":{"shasum":"3280603024cd8c54d44e890f125744b769aeace5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-2.1.2.tgz"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}]},"2.1.3":{"name":"htmlparser2","description":"Forgiving HTML/XML/RSS Parser for Node. This version is optimised and cleaned and provides a SAX interface.","version":"2.1.3","author":{"name":"Felix Boehm","email":"me@feedic.com"},"keywords":["html","parser","xml","dom","rss","feed","atom"],"contributors":[{"name":"Chris Winberry","email":"chris@winberry.net"}],"repository":{"type":"git","url":"git://github.com/fb55/node-htmlparser.git"},"bugs":{"email":"me@feedic.com","url":"http://github.com/fb55/node-htmlparser/issues"},"directories":{"lib":"./lib/"},"main":"./lib/","scripts":{"test":"node --harmony_proxies tests/00-runtests.js"},"engines":{"node":"node >= 0.3.0"},"licenses":[{"type":"MIT","url":"http://github.com/tautologistics/node-htmlparser/raw/master/LICENSE"}],"_npmUser":{"name":"feedic","email":"me@feedic.com"},"_id":"htmlparser2@2.1.3","dependencies":{},"devDependencies":{},"_engineSupported":true,"_npmVersion":"1.0.106","_nodeVersion":"v0.6.6","_defaultsLoaded":true,"dist":{"shasum":"fa4f9792b86775714d9f013d92a771b16239918c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-2.1.3.tgz"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}]},"2.2.0":{"name":"htmlparser2","description":"Performance-optimized forgiving HTML/XML/RSS parser","version":"2.2.0","author":{"name":"Felix Boehm","email":"me@feedic.com"},"keywords":["html","parser","streams","xml","dom","rss","feed","atom"],"contributors":[{"name":"Chris Winberry","email":"chris@winberry.net"}],"repository":{"type":"git","url":"git://github.com/fb55/node-htmlparser.git"},"bugs":{"email":"me@feedic.com","url":"http://github.com/fb55/node-htmlparser/issues"},"directories":{"lib":"./lib/"},"main":"./lib/","scripts":{"test":"node tests/00-runtests.js"},"engines":{"node":"node >= 0.3.0"},"licenses":[{"type":"MIT","url":"http://github.com/tautologistics/node-htmlparser/raw/master/LICENSE"}],"_npmUser":{"name":"feedic","email":"me@feedic.com"},"_id":"htmlparser2@2.2.0","dependencies":{},"devDependencies":{},"_engineSupported":true,"_npmVersion":"1.0.106","_nodeVersion":"v0.6.7","_defaultsLoaded":true,"dist":{"shasum":"c9093dd364c6c559a80416d78ffe7cb2c906494c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-2.2.0.tgz"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}]},"2.2.2":{"name":"htmlparser2","description":"Performance-optimized forgiving HTML/XML/RSS parser","version":"2.2.2","author":{"name":"Felix Boehm","email":"me@feedic.com"},"keywords":["html","parser","streams","xml","dom","rss","feed","atom"],"contributors":[{"name":"Chris Winberry","email":"chris@winberry.net"}],"repository":{"type":"git","url":"git://github.com/fb55/node-htmlparser.git"},"bugs":{"email":"me@feedic.com","url":"http://github.com/fb55/node-htmlparser/issues"},"directories":{"lib":"./lib/"},"main":"./lib/","scripts":{"test":"node tests/00-runtests.js"},"engines":{"node":"node >= 0.3.0"},"licenses":[{"type":"MIT","url":"http://github.com/tautologistics/node-htmlparser/raw/master/LICENSE"}],"_npmUser":{"name":"feedic","email":"me@feedic.com"},"_id":"htmlparser2@2.2.2","dependencies":{},"devDependencies":{},"_engineSupported":true,"_npmVersion":"1.0.106","_nodeVersion":"v0.6.7","_defaultsLoaded":true,"dist":{"shasum":"30095e23965b3e9b396b05d14b83424ad422efe0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-2.2.2.tgz"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}]},"2.2.3":{"name":"htmlparser2","description":"Performance-optimized forgiving HTML/XML/RSS parser","version":"2.2.3","author":{"name":"Felix Boehm","email":"me@feedic.com"},"keywords":["html","parser","streams","xml","dom","rss","feed","atom"],"contributors":[{"name":"Chris Winberry","email":"chris@winberry.net"}],"repository":{"type":"git","url":"git://github.com/fb55/node-htmlparser.git"},"bugs":{"email":"me@feedic.com","url":"http://github.com/fb55/node-htmlparser/issues"},"directories":{"lib":"./lib/"},"main":"./lib/","scripts":{"test":"node tests/00-runtests.js"},"engines":{"node":"node >= 0.3.0"},"licenses":[{"type":"MIT","url":"http://github.com/tautologistics/node-htmlparser/raw/master/LICENSE"}],"_npmUser":{"name":"feedic","email":"me@feedic.com"},"_id":"htmlparser2@2.2.3","dependencies":{},"devDependencies":{},"_engineSupported":true,"_npmVersion":"1.0.106","_nodeVersion":"v0.6.9","_defaultsLoaded":true,"dist":{"shasum":"37e75dc3d88b624081cef6fa4390b80204fc2b24","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-2.2.3.tgz"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}]},"2.2.4":{"name":"htmlparser2","description":"Performance-optimized forgiving HTML/XML/RSS parser","version":"2.2.4","author":{"name":"Felix Boehm","email":"me@feedic.com"},"keywords":["html","parser","streams","xml","dom","rss","feed","atom"],"contributors":[{"name":"Chris Winberry","email":"chris@winberry.net"}],"repository":{"type":"git","url":"git://github.com/fb55/node-htmlparser.git"},"bugs":{"email":"me@feedic.com","url":"http://github.com/fb55/node-htmlparser/issues"},"directories":{"lib":"./lib/"},"main":"./lib/","scripts":{"test":"node tests/00-runtests.js"},"engines":{"node":"node >= 0.3.0"},"licenses":[{"type":"MIT","url":"http://github.com/tautologistics/node-htmlparser/raw/master/LICENSE"}],"_npmUser":{"name":"feedic","email":"me@feedic.com"},"_id":"htmlparser2@2.2.4","dependencies":{},"devDependencies":{},"optionalDependencies":{},"_engineSupported":true,"_npmVersion":"1.1.3","_nodeVersion":"v0.6.10","_defaultsLoaded":true,"dist":{"shasum":"36fba00a3a91bd640d47688aa50867633c0fda36","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-2.2.4.tgz"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}]},"2.2.5":{"name":"htmlparser2","description":"Performance-optimized forgiving HTML/XML/RSS parser","version":"2.2.5","author":{"name":"Felix Boehm","email":"me@feedic.com"},"keywords":["html","parser","streams","xml","dom","rss","feed","atom"],"contributors":[{"name":"Chris Winberry","email":"chris@winberry.net"}],"repository":{"type":"git","url":"git://github.com/fb55/node-htmlparser.git"},"bugs":{"email":"me@feedic.com","url":"http://github.com/fb55/node-htmlparser/issues"},"directories":{"lib":"./lib/"},"main":"./lib/","scripts":{"test":"node tests/00-runtests.js"},"engines":{"node":"node >= 0.3.0"},"licenses":[{"type":"MIT","url":"http://github.com/tautologistics/node-htmlparser/raw/master/LICENSE"}],"_npmUser":{"name":"feedic","email":"me@feedic.com"},"_id":"htmlparser2@2.2.5","dependencies":{},"devDependencies":{},"optionalDependencies":{},"_engineSupported":true,"_npmVersion":"1.1.9","_nodeVersion":"v0.6.15","_defaultsLoaded":true,"dist":{"shasum":"0a45af5d9371ebe76bbeef97e9ceb304a2a251d8","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-2.2.5.tgz"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}]},"2.2.6":{"name":"htmlparser2","description":"Performance-optimized forgiving HTML/XML/RSS parser","version":"2.2.6","author":{"name":"Felix Boehm","email":"me@feedic.com"},"keywords":["html","parser","streams","xml","dom","rss","feed","atom"],"contributors":[{"name":"Chris Winberry","email":"chris@winberry.net"}],"repository":{"type":"git","url":"git://github.com/fb55/node-htmlparser.git"},"bugs":{"email":"me@feedic.com","url":"http://github.com/fb55/node-htmlparser/issues"},"directories":{"lib":"./lib/"},"main":"./lib/","scripts":{"test":"node tests/00-runtests.js"},"engines":{"node":"node >= 0.3.0"},"licenses":[{"type":"MIT","url":"http://github.com/tautologistics/node-htmlparser/raw/master/LICENSE"}],"_npmUser":{"name":"feedic","email":"me@feedic.com"},"_id":"htmlparser2@2.2.6","dependencies":{},"devDependencies":{},"optionalDependencies":{},"_engineSupported":true,"_npmVersion":"1.1.9","_nodeVersion":"v0.6.15","_defaultsLoaded":true,"dist":{"shasum":"76903b0bb2700de9ab28ddc2f664c72788c71771","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-2.2.6.tgz"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}]},"2.2.7":{"name":"htmlparser2","description":"Performance-optimized forgiving HTML/XML/RSS parser","version":"2.2.7","author":{"name":"Felix Boehm","email":"me@feedic.com"},"keywords":["html","parser","streams","xml","dom","rss","feed","atom"],"contributors":[{"name":"Chris Winberry","email":"chris@winberry.net"}],"repository":{"type":"git","url":"git://github.com/fb55/node-htmlparser.git"},"bugs":{"email":"me@feedic.com","url":"http://github.com/fb55/node-htmlparser/issues"},"directories":{"lib":"./lib/"},"main":"./lib/","scripts":{"test":"node tests/00-runtests.js"},"engines":{"node":"node >= 0.3.0"},"licenses":[{"type":"MIT","url":"http://github.com/tautologistics/node-htmlparser/raw/master/LICENSE"}],"_npmUser":{"name":"feedic","email":"me@feedic.com"},"_id":"htmlparser2@2.2.7","dependencies":{},"devDependencies":{},"optionalDependencies":{},"_engineSupported":true,"_npmVersion":"1.1.18","_nodeVersion":"v0.6.15","_defaultsLoaded":true,"dist":{"shasum":"e649201cb763e750eddfd995c210760dd9e11bbb","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-2.2.7.tgz"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}]},"2.2.8":{"name":"htmlparser2","description":"Performance-optimized forgiving HTML/XML/RSS parser","version":"2.2.8","author":{"name":"Felix Boehm","email":"me@feedic.com"},"keywords":["html","parser","streams","xml","dom","rss","feed","atom"],"contributors":[{"name":"Chris Winberry","email":"chris@winberry.net"}],"repository":{"type":"git","url":"git://github.com/fb55/node-htmlparser.git"},"bugs":{"email":"me@feedic.com","url":"http://github.com/fb55/node-htmlparser/issues"},"directories":{"lib":"./lib/"},"main":"./lib/","scripts":{"test":"node tests/00-runtests.js"},"engines":{"node":"node >= 0.3.0"},"licenses":[{"type":"MIT","url":"http://github.com/tautologistics/node-htmlparser/raw/master/LICENSE"}],"_npmUser":{"name":"feedic","email":"me@feedic.com"},"_id":"htmlparser2@2.2.8","dependencies":{},"devDependencies":{},"optionalDependencies":{},"_engineSupported":true,"_npmVersion":"1.1.18","_nodeVersion":"v0.6.15","_defaultsLoaded":true,"dist":{"shasum":"a90ce269e913801cf82db84b70ce06c3f94820d5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-2.2.8.tgz"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}]},"2.2.9":{"name":"htmlparser2","description":"Performance-optimized forgiving HTML/XML/RSS parser","version":"2.2.9","author":{"name":"Felix Boehm","email":"me@feedic.com"},"keywords":["html","parser","streams","xml","dom","rss","feed","atom"],"contributors":[{"name":"Chris Winberry","email":"chris@winberry.net"}],"repository":{"type":"git","url":"git://github.com/fb55/node-htmlparser.git"},"bugs":{"email":"me@feedic.com","url":"http://github.com/fb55/node-htmlparser/issues"},"directories":{"lib":"./lib/"},"main":"./lib/","scripts":{"test":"node tests/00-runtests.js"},"engines":{"node":"node >= 0.3.0"},"licenses":[{"type":"MIT","url":"http://github.com/tautologistics/node-htmlparser/raw/master/LICENSE"}],"_npmUser":{"name":"feedic","email":"me@feedic.com"},"_id":"htmlparser2@2.2.9","dependencies":{},"devDependencies":{},"optionalDependencies":{},"_engineSupported":true,"_npmVersion":"1.1.18","_nodeVersion":"v0.6.18","_defaultsLoaded":true,"dist":{"shasum":"accc661bc4a648ede7c30d0597dd88ce9f4482de","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-2.2.9.tgz"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}]},"2.3.0":{"name":"htmlparser2","description":"Performance-optimized forgiving HTML/XML/RSS parser","version":"2.3.0","author":{"name":"Felix Boehm","email":"me@feedic.com"},"keywords":["html","parser","streams","xml","dom","rss","feed","atom"],"contributors":[{"name":"Chris Winberry","email":"chris@winberry.net"}],"repository":{"type":"git","url":"git://github.com/fb55/node-htmlparser.git"},"bugs":{"mail":"me@feedic.com","url":"http://github.com/fb55/node-htmlparser/issues"},"directories":{"lib":"./lib/"},"main":"./lib/","scripts":{"test":"node tests/00-runtests.js"},"engines":"node >= 0.3.0","licenses":[{"type":"MIT","url":"http://github.com/tautologistics/node-htmlparser/raw/master/LICENSE"}],"_id":"htmlparser2@2.3.0","dist":{"shasum":"4b3523cb1832cf31bf25580701b80224cad9b6a5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-2.3.0.tgz"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}]},"2.5.0":{"name":"htmlparser2","description":"Performance-optimized forgiving HTML/XML/RSS parser","version":"2.5.0","author":{"name":"Felix Boehm","email":"me@feedic.com"},"keywords":["html","parser","streams","xml","dom","rss","feed","atom"],"contributors":[{"name":"Chris Winberry","email":"chris@winberry.net"}],"repository":{"type":"git","url":"git://github.com/fb55/node-htmlparser.git"},"bugs":{"mail":"me@feedic.com","url":"http://github.com/fb55/node-htmlparser/issues"},"directories":{"lib":"lib/"},"main":"./lib/","scripts":{"test":"node tests/00-runtests.js"},"dependencies":{"domhandler":"2.0","domutils":"1.0","domelementtype":"1.0"},"licenses":[{"type":"MIT","url":"http://github.com/tautologistics/node-htmlparser/raw/master/LICENSE"}],"_id":"htmlparser2@2.5.0","dist":{"shasum":"d129b5f5a8e3eed11f07e9c5b2f902cff5a7aca9","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-2.5.0.tgz"},"_npmVersion":"1.1.65","_npmUser":{"name":"feedic","email":"me@feedic.com"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}]},"2.5.1":{"name":"htmlparser2","description":"Performance-optimized forgiving HTML/XML/RSS parser","version":"2.5.1","author":{"name":"Felix Boehm","email":"me@feedic.com"},"keywords":["html","parser","streams","xml","dom","rss","feed","atom"],"contributors":[{"name":"Chris Winberry","email":"chris@winberry.net"}],"repository":{"type":"git","url":"git://github.com/fb55/node-htmlparser.git"},"bugs":{"mail":"me@feedic.com","url":"http://github.com/fb55/node-htmlparser/issues"},"directories":{"lib":"lib/"},"main":"./lib/","scripts":{"test":"node tests/00-runtests.js"},"dependencies":{"domhandler":"2.0","domutils":"1.0","domelementtype":"1"},"licenses":[{"type":"MIT","url":"http://github.com/tautologistics/node-htmlparser/raw/master/LICENSE"}],"_id":"htmlparser2@2.5.1","dist":{"shasum":"e1881f1f9d13d4a083d39ffdbe3dcd55567a9827","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-2.5.1.tgz"},"_npmVersion":"1.1.69","_npmUser":{"name":"feedic","email":"me@feedic.com"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}]},"2.5.2":{"name":"htmlparser2","description":"Performance-optimized forgiving HTML/XML/RSS parser","version":"2.5.2","author":{"name":"Felix Boehm","email":"me@feedic.com"},"keywords":["html","parser","streams","xml","dom","rss","feed","atom"],"contributors":[{"name":"Chris Winberry","email":"chris@winberry.net"}],"repository":{"type":"git","url":"git://github.com/fb55/node-htmlparser.git"},"bugs":{"mail":"me@feedic.com","url":"http://github.com/fb55/node-htmlparser/issues"},"directories":{"lib":"lib/"},"main":"./lib/","scripts":{"test":"node tests/00-runtests.js"},"dependencies":{"domhandler":"2.0","domutils":"1.0","domelementtype":"1"},"licenses":[{"type":"MIT","url":"http://github.com/tautologistics/node-htmlparser/raw/master/LICENSE"}],"_id":"htmlparser2@2.5.2","dist":{"shasum":"42b51ab2c85068fc67fc5f113c9a2598ffee28d7","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-2.5.2.tgz"},"_from":".","_npmVersion":"1.2.10","_npmUser":{"name":"feedic","email":"me@feedic.com"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}]},"2.6.0":{"name":"htmlparser2","description":"Performance-optimized forgiving HTML/XML/RSS parser","version":"2.6.0","author":{"name":"Felix Boehm","email":"me@feedic.com"},"keywords":["html","parser","streams","xml","dom","rss","feed","atom"],"contributors":[{"name":"Chris Winberry","email":"chris@winberry.net"}],"repository":{"type":"git","url":"git://github.com/fb55/node-htmlparser.git"},"bugs":{"mail":"me@feedic.com","url":"http://github.com/fb55/node-htmlparser/issues"},"directories":{"lib":"lib/"},"main":"./lib/","scripts":{"test":"node tests/00-runtests.js"},"dependencies":{"domhandler":"2.0","domutils":"1.0","domelementtype":"1"},"licenses":[{"type":"MIT","url":"http://github.com/tautologistics/node-htmlparser/raw/master/LICENSE"}],"_id":"htmlparser2@2.6.0","dist":{"shasum":"b28564ea9d1ba56a104ace6a7b0fdda2f315836f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-2.6.0.tgz"},"_from":".","_npmVersion":"1.2.14","_npmUser":{"name":"feedic","email":"me@feedic.com"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}]},"3.0.0":{"name":"htmlparser2","description":"Performance-optimized forgiving HTML/XML/RSS parser","version":"3.0.0","author":{"name":"Felix Boehm","email":"me@feedic.com"},"keywords":["html","parser","streams","xml","dom","rss","feed","atom"],"contributors":[{"name":"Chris Winberry","email":"chris@winberry.net"}],"repository":{"type":"git","url":"git://github.com/fb55/node-htmlparser.git"},"bugs":{"mail":"me@feedic.com","url":"http://github.com/fb55/node-htmlparser/issues"},"directories":{"lib":"lib/"},"main":"lib/index.js","scripts":{"test":"node tests/00-runtests.js"},"dependencies":{"domhandler":"2.0","domutils":"1.1","domelementtype":"1","readable-stream":"1.0"},"licenses":[{"type":"MIT","url":"http://github.com/tautologistics/node-htmlparser/raw/master/LICENSE"}],"_id":"htmlparser2@3.0.0","dist":{"shasum":"38ccfd31c197a8ef7eb7c66933714a8cca4ce5bf","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-3.0.0.tgz"},"_from":".","_npmVersion":"1.2.15","_npmUser":{"name":"feedic","email":"me@feedic.com"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}]},"3.0.1":{"name":"htmlparser2","description":"Performance-optimized forgiving HTML/XML/RSS parser","version":"3.0.1","author":{"name":"Felix Boehm","email":"me@feedic.com"},"keywords":["html","parser","streams","xml","dom","rss","feed","atom"],"contributors":[{"name":"Chris Winberry","email":"chris@winberry.net"}],"repository":{"type":"git","url":"git://github.com/fb55/node-htmlparser.git"},"bugs":{"mail":"me@feedic.com","url":"http://github.com/fb55/node-htmlparser/issues"},"directories":{"lib":"lib/"},"main":"lib/index.js","scripts":{"test":"node tests/00-runtests.js"},"dependencies":{"domhandler":"2.0","domutils":"1.1","domelementtype":"1","readable-stream":"1.0"},"licenses":[{"type":"MIT","url":"http://github.com/tautologistics/node-htmlparser/raw/master/LICENSE"}],"_id":"htmlparser2@3.0.1","dist":{"shasum":"ad37e8b1e1661e41398537aeb92c4c9cb0612bea","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-3.0.1.tgz"},"_from":".","_npmVersion":"1.2.15","_npmUser":{"name":"feedic","email":"me@feedic.com"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}]},"3.0.2":{"name":"htmlparser2","description":"Performance-optimized forgiving HTML/XML/RSS parser","version":"3.0.2","author":{"name":"Felix Boehm","email":"me@feedic.com"},"keywords":["html","parser","streams","xml","dom","rss","feed","atom"],"contributors":[{"name":"Chris Winberry","email":"chris@winberry.net"}],"repository":{"type":"git","url":"git://github.com/fb55/node-htmlparser.git"},"bugs":{"mail":"me@feedic.com","url":"http://github.com/fb55/node-htmlparser/issues"},"directories":{"lib":"lib/"},"main":"lib/index.js","scripts":{"test":"node tests/00-runtests.js"},"dependencies":{"domhandler":"2.0","domutils":"1.1","domelementtype":"1","readable-stream":"1.0"},"licenses":[{"type":"MIT","url":"http://github.com/tautologistics/node-htmlparser/raw/master/LICENSE"}],"_id":"htmlparser2@3.0.2","dist":{"shasum":"b61e725d651a3637f97da232002d5fed493b4ea4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-3.0.2.tgz"},"_from":".","_npmVersion":"1.2.15","_npmUser":{"name":"feedic","email":"me@feedic.com"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}]},"3.0.3":{"name":"htmlparser2","description":"Performance-optimized forgiving HTML/XML/RSS parser","version":"3.0.3","author":{"name":"Felix Boehm","email":"me@feedic.com"},"keywords":["html","parser","streams","xml","dom","rss","feed","atom"],"contributors":[{"name":"Chris Winberry","email":"chris@winberry.net"}],"repository":{"type":"git","url":"git://github.com/fb55/htmlparser2.git"},"bugs":{"mail":"me@feedic.com","url":"http://github.com/fb55/htmlparser2/issues"},"directories":{"lib":"lib/"},"main":"lib/index.js","scripts":{"test":"node tests/00-runtests.js"},"dependencies":{"domhandler":"2.0","domutils":"1.1","domelementtype":"1","readable-stream":"1.0"},"licenses":[{"type":"MIT","url":"http://github.com/fb55/htmlparser2/raw/master/LICENSE"}],"_id":"htmlparser2@3.0.3","dist":{"shasum":"016fe01d4e27af89439fa6157f842b84131d9af3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-3.0.3.tgz"},"_from":".","_npmVersion":"1.2.17","_npmUser":{"name":"feedic","email":"me@feedic.com"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}]},"3.0.4":{"name":"htmlparser2","description":"Performance-optimized forgiving HTML/XML/RSS parser","version":"3.0.4","author":{"name":"Felix Boehm","email":"me@feedic.com"},"keywords":["html","parser","streams","xml","dom","rss","feed","atom"],"contributors":[{"name":"Chris Winberry","email":"chris@winberry.net"}],"repository":{"type":"git","url":"git://github.com/fb55/htmlparser2.git"},"bugs":{"mail":"me@feedic.com","url":"http://github.com/fb55/htmlparser2/issues"},"directories":{"lib":"lib/"},"main":"lib/index.js","scripts":{"test":"node tests/00-runtests.js"},"dependencies":{"domhandler":"2.0","domutils":"1.1","domelementtype":"1","readable-stream":"1.0"},"licenses":[{"type":"MIT","url":"http://github.com/fb55/htmlparser2/raw/master/LICENSE"}],"_id":"htmlparser2@3.0.4","dist":{"shasum":"9e81c739e20ca5dc3f82b640031d401daed77f4d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-3.0.4.tgz"},"_from":".","_npmVersion":"1.2.18","_npmUser":{"name":"feedic","email":"me@feedic.com"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}]},"3.0.5":{"name":"htmlparser2","description":"Fast & forgiving HTML/XML/RSS parser","version":"3.0.5","author":{"name":"Felix Boehm","email":"me@feedic.com"},"keywords":["html","parser","streams","xml","dom","rss","feed","atom"],"contributors":[{"name":"Chris Winberry","email":"chris@winberry.net"}],"repository":{"type":"git","url":"git://github.com/fb55/htmlparser2.git"},"bugs":{"mail":"me@feedic.com","url":"http://github.com/fb55/htmlparser2/issues"},"directories":{"lib":"lib/"},"main":"lib/index.js","scripts":{"test":"node tests/00-runtests.js"},"dependencies":{"domhandler":"2.0","domutils":"1.1","domelementtype":"1","readable-stream":"1.0"},"licenses":[{"type":"MIT","url":"http://github.com/fb55/htmlparser2/raw/master/LICENSE"}],"_id":"htmlparser2@3.0.5","dist":{"shasum":"7f30608cb7809f35ff7c6dd80e29c247aa7daf5f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-3.0.5.tgz"},"_from":".","_npmVersion":"1.2.18","_npmUser":{"name":"feedic","email":"me@feedic.com"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}]},"3.1.1":{"name":"htmlparser2","description":"Fast & forgiving HTML/XML/RSS parser","version":"3.1.1","author":{"name":"Felix Boehm","email":"me@feedic.com"},"keywords":["html","parser","streams","xml","dom","rss","feed","atom"],"contributors":[{"name":"Chris Winberry","email":"chris@winberry.net"}],"repository":{"type":"git","url":"git://github.com/fb55/htmlparser2.git"},"bugs":{"url":"http://github.com/fb55/htmlparser2/issues"},"directories":{"lib":"lib/"},"main":"lib/index.js","scripts":{"test":"node tests/00-runtests.js"},"dependencies":{"domhandler":"2.0","domutils":"1.1","domelementtype":"1","readable-stream":"1.0"},"licenses":[{"type":"MIT","url":"http://github.com/fb55/htmlparser2/raw/master/LICENSE"}],"_id":"htmlparser2@3.1.1","dist":{"shasum":"b4e24d445396f084e17c5f91f6d8cc59505dbb5d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-3.1.1.tgz"},"_from":".","_npmVersion":"1.2.24","_npmUser":{"name":"feedic","email":"me@feedic.com"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}]},"3.1.2":{"name":"htmlparser2","description":"Fast & forgiving HTML/XML/RSS parser","version":"3.1.2","author":{"name":"Felix Boehm","email":"me@feedic.com"},"keywords":["html","parser","streams","xml","dom","rss","feed","atom"],"contributors":[{"name":"Chris Winberry","email":"chris@winberry.net"}],"repository":{"type":"git","url":"git://github.com/fb55/htmlparser2.git"},"bugs":{"url":"http://github.com/fb55/htmlparser2/issues"},"directories":{"lib":"lib/"},"main":"lib/index.js","scripts":{"test":"node tests/00-runtests.js"},"dependencies":{"domhandler":"2.0","domutils":"1.1","domelementtype":"1","readable-stream":"1.0"},"licenses":[{"type":"MIT","url":"http://github.com/fb55/htmlparser2/raw/master/LICENSE"}],"_id":"htmlparser2@3.1.2","dist":{"shasum":"9dfc4a292743a4ce9d321a396ae7a55d98fda30b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-3.1.2.tgz"},"_from":".","_npmVersion":"1.2.24","_npmUser":{"name":"feedic","email":"me@feedic.com"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}]},"3.1.3":{"name":"htmlparser2","description":"Fast & forgiving HTML/XML/RSS parser","version":"3.1.3","author":{"name":"Felix Boehm","email":"me@feedic.com"},"keywords":["html","parser","streams","xml","dom","rss","feed","atom"],"contributors":[{"name":"Chris Winberry","email":"chris@winberry.net"}],"repository":{"type":"git","url":"git://github.com/fb55/htmlparser2.git"},"bugs":{"url":"http://github.com/fb55/htmlparser2/issues"},"directories":{"lib":"lib/"},"main":"lib/index.js","scripts":{"test":"node tests/00-runtests.js"},"dependencies":{"domhandler":"2.0","domutils":"1.1","domelementtype":"1","readable-stream":"1.0"},"licenses":[{"type":"MIT","url":"http://github.com/fb55/htmlparser2/raw/master/LICENSE"}],"_id":"htmlparser2@3.1.3","dist":{"shasum":"f222119d3b30fa6da2c43a6c16ed89fd86d76e14","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-3.1.3.tgz"},"_from":".","_npmVersion":"1.2.24","_npmUser":{"name":"feedic","email":"me@feedic.com"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}]},"3.1.4":{"name":"htmlparser2","description":"Fast & forgiving HTML/XML/RSS parser","version":"3.1.4","author":{"name":"Felix Boehm","email":"me@feedic.com"},"keywords":["html","parser","streams","xml","dom","rss","feed","atom"],"contributors":[{"name":"Chris Winberry","email":"chris@winberry.net"}],"repository":{"type":"git","url":"git://github.com/fb55/htmlparser2.git"},"bugs":{"url":"http://github.com/fb55/htmlparser2/issues"},"directories":{"lib":"lib/"},"main":"lib/index.js","scripts":{"test":"node tests/00-runtests.js"},"dependencies":{"domhandler":"2.0","domutils":"1.1","domelementtype":"1","readable-stream":"1.0"},"licenses":[{"type":"MIT","url":"http://github.com/fb55/htmlparser2/raw/master/LICENSE"}],"_id":"htmlparser2@3.1.4","dist":{"shasum":"72cbe7d5d56c01acf61fcf7b933331f4e45b36f0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-3.1.4.tgz"},"_from":".","_npmVersion":"1.2.32","_npmUser":{"name":"feedic","email":"me@feedic.com"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}]},"3.1.5":{"name":"htmlparser2","description":"Fast & forgiving HTML/XML/RSS parser","version":"3.1.5","author":{"name":"Felix Boehm","email":"me@feedic.com"},"keywords":["html","parser","streams","xml","dom","rss","feed","atom"],"contributors":[{"name":"Chris Winberry","email":"chris@winberry.net"}],"repository":{"type":"git","url":"git://github.com/fb55/htmlparser2.git"},"bugs":{"url":"http://github.com/fb55/htmlparser2/issues"},"directories":{"lib":"lib/"},"main":"lib/index.js","scripts":{"test":"node tests/00-runtests.js"},"dependencies":{"domhandler":"2.0","domutils":"1.1","domelementtype":"1","readable-stream":"1.0"},"licenses":[{"type":"MIT","url":"http://github.com/fb55/htmlparser2/raw/master/LICENSE"}],"_id":"htmlparser2@3.1.5","dist":{"shasum":"8f0b9f511c395f7d598daefe5fc96c415d5e79a3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-3.1.5.tgz"},"_from":".","_npmVersion":"1.3.2","_npmUser":{"name":"feedic","email":"me@feedic.com"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}]},"3.1.6":{"name":"htmlparser2","description":"Fast & forgiving HTML/XML/RSS parser","version":"3.1.6","author":{"name":"Felix Boehm","email":"me@feedic.com"},"keywords":["html","parser","streams","xml","dom","rss","feed","atom"],"contributors":[{"name":"Chris Winberry","email":"chris@winberry.net"}],"repository":{"type":"git","url":"git://github.com/fb55/htmlparser2.git"},"bugs":{"url":"http://github.com/fb55/htmlparser2/issues"},"directories":{"lib":"lib/"},"main":"lib/index.js","scripts":{"test":"node tests/00-runtests.js"},"dependencies":{"domhandler":"2.0","domutils":"1.1","domelementtype":"1","readable-stream":"1.0"},"licenses":[{"type":"MIT","url":"http://github.com/fb55/htmlparser2/raw/master/LICENSE"}],"_id":"htmlparser2@3.1.6","dist":{"shasum":"f00dfd1e25dfc6401c904bd229bd3fbe7dd61d75","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-3.1.6.tgz"},"_from":".","_npmVersion":"1.3.5","_npmUser":{"name":"feedic","email":"me@feedic.com"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}]},"3.2.0":{"name":"htmlparser2","description":"Fast & forgiving HTML/XML/RSS parser","version":"3.2.0","author":{"name":"Felix Boehm","email":"me@feedic.com"},"keywords":["html","parser","streams","xml","dom","rss","feed","atom"],"contributors":[{"name":"Chris Winberry","email":"chris@winberry.net"}],"repository":{"type":"git","url":"git://github.com/fb55/htmlparser2.git"},"bugs":{"url":"http://github.com/fb55/htmlparser2/issues"},"directories":{"lib":"lib/"},"main":"lib/index.js","scripts":{"test":"node tests/00-runtests.js"},"dependencies":{"domhandler":"2.0","domutils":"1.1","domelementtype":"1","readable-stream":"1.0"},"licenses":[{"type":"MIT","url":"http://github.com/fb55/htmlparser2/raw/master/LICENSE"}],"_id":"htmlparser2@3.2.0","dist":{"shasum":"b2f0a5c4f8b91102f9fc4030431ac309006425f6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-3.2.0.tgz"},"_from":".","_npmVersion":"1.3.8","_npmUser":{"name":"feedic","email":"me@feedic.com"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}]},"3.2.1":{"name":"htmlparser2","description":"Fast & forgiving HTML/XML/RSS parser","version":"3.2.1","author":{"name":"Felix Boehm","email":"me@feedic.com"},"keywords":["html","parser","streams","xml","dom","rss","feed","atom"],"contributors":[{"name":"Chris Winberry","email":"chris@winberry.net"}],"repository":{"type":"git","url":"git://github.com/fb55/htmlparser2.git"},"bugs":{"url":"http://github.com/fb55/htmlparser2/issues"},"directories":{"lib":"lib/"},"main":"lib/index.js","scripts":{"test":"node tests/00-runtests.js"},"dependencies":{"domhandler":"2.0","domutils":"1.1","domelementtype":"1","readable-stream":"1.0"},"licenses":[{"type":"MIT","url":"http://github.com/fb55/htmlparser2/raw/master/LICENSE"}],"_id":"htmlparser2@3.2.1","dist":{"shasum":"9edbb8cc88682c24469639e8cd920fbc23f77841","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-3.2.1.tgz"},"_from":".","_npmVersion":"1.3.8","_npmUser":{"name":"feedic","email":"me@feedic.com"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}]},"3.2.2":{"name":"htmlparser2","description":"Fast & forgiving HTML/XML/RSS parser","version":"3.2.2","author":{"name":"Felix Boehm","email":"me@feedic.com"},"keywords":["html","parser","streams","xml","dom","rss","feed","atom"],"contributors":[{"name":"Chris Winberry","email":"chris@winberry.net"}],"repository":{"type":"git","url":"git://github.com/fb55/htmlparser2.git"},"bugs":{"url":"http://github.com/fb55/htmlparser2/issues"},"directories":{"lib":"lib/"},"main":"lib/index.js","scripts":{"test":"node tests/00-runtests.js"},"dependencies":{"domhandler":"2.0","domutils":"1.1","domelementtype":"1","readable-stream":"1.0"},"licenses":[{"type":"MIT","url":"http://github.com/fb55/htmlparser2/raw/master/LICENSE"}],"_id":"htmlparser2@3.2.2","dist":{"shasum":"92b35bcfdf4c89b4a5c67f04c3af81a8743aa2f8","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-3.2.2.tgz"},"_from":".","_npmVersion":"1.3.8","_npmUser":{"name":"feedic","email":"me@feedic.com"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}]},"3.2.3":{"name":"htmlparser2","description":"Fast & forgiving HTML/XML/RSS parser","version":"3.2.3","author":{"name":"Felix Boehm","email":"me@feedic.com"},"keywords":["html","parser","streams","xml","dom","rss","feed","atom"],"contributors":[{"name":"Chris Winberry","email":"chris@winberry.net"}],"repository":{"type":"git","url":"git://github.com/fb55/htmlparser2.git"},"bugs":{"url":"http://github.com/fb55/htmlparser2/issues"},"directories":{"lib":"lib/"},"main":"lib/index.js","scripts":{"test":"node tests/00-runtests.js"},"dependencies":{"domhandler":"2.0","domutils":"1.1","domelementtype":"1","readable-stream":"1.0"},"licenses":[{"type":"MIT","url":"http://github.com/fb55/htmlparser2/raw/master/LICENSE"}],"_id":"htmlparser2@3.2.3","dist":{"shasum":"8f236a5289425940d3d5ef10ee856a3aecd0fb1a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-3.2.3.tgz"},"_from":".","_npmVersion":"1.3.8","_npmUser":{"name":"feedic","email":"me@feedic.com"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}]},"3.2.4":{"name":"htmlparser2","description":"Fast & forgiving HTML/XML/RSS parser","version":"3.2.4","author":{"name":"Felix Boehm","email":"me@feedic.com"},"keywords":["html","parser","streams","xml","dom","rss","feed","atom"],"contributors":[{"name":"Chris Winberry","email":"chris@winberry.net"}],"repository":{"type":"git","url":"git://github.com/fb55/htmlparser2.git"},"bugs":{"url":"http://github.com/fb55/htmlparser2/issues"},"directories":{"lib":"lib/"},"main":"lib/index.js","scripts":{"test":"mocha -R spec"},"dependencies":{"domhandler":"2.0","domutils":"1.1","domelementtype":"1","readable-stream":"1.0"},"devDependencies":{"mocha":"1"},"licenses":[{"type":"MIT","url":"http://github.com/fb55/htmlparser2/raw/master/LICENSE"}],"_id":"htmlparser2@3.2.4","dist":{"shasum":"48abba5a06ca2f8cd60731f645ecd53296ffadec","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-3.2.4.tgz"},"_from":".","_npmVersion":"1.3.8","_npmUser":{"name":"feedic","email":"me@feedic.com"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}]},"3.2.5":{"name":"htmlparser2","description":"Fast & forgiving HTML/XML/RSS parser","version":"3.2.5","author":{"name":"Felix Boehm","email":"me@feedic.com"},"keywords":["html","parser","streams","xml","dom","rss","feed","atom"],"contributors":[{"name":"Chris Winberry","email":"chris@winberry.net"}],"repository":{"type":"git","url":"git://github.com/fb55/htmlparser2.git"},"bugs":{"url":"http://github.com/fb55/htmlparser2/issues"},"directories":{"lib":"lib/"},"main":"lib/index.js","scripts":{"test":"mocha -R spec"},"dependencies":{"domhandler":"2.0","domutils":"1.1","domelementtype":"1","readable-stream":"1.0"},"devDependencies":{"mocha":"1"},"licenses":[{"type":"MIT","url":"http://github.com/fb55/htmlparser2/raw/master/LICENSE"}],"_id":"htmlparser2@3.2.5","dist":{"shasum":"f730b416b15cedd331b441b5532d0da77a04576c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-3.2.5.tgz"},"_from":".","_npmVersion":"1.3.8","_npmUser":{"name":"feedic","email":"me@feedic.com"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}]},"3.3.0":{"name":"htmlparser2","description":"Fast & forgiving HTML/XML/RSS parser","version":"3.3.0","author":{"name":"Felix Boehm","email":"me@feedic.com"},"keywords":["html","parser","streams","xml","dom","rss","feed","atom"],"contributors":[{"name":"Chris Winberry","email":"chris@winberry.net"}],"repository":{"type":"git","url":"git://github.com/fb55/htmlparser2.git"},"bugs":{"url":"http://github.com/fb55/htmlparser2/issues"},"directories":{"lib":"lib/"},"main":"lib/index.js","scripts":{"test":"mocha -R spec"},"dependencies":{"domhandler":"2.1","domutils":"1.1","domelementtype":"1","readable-stream":"1.0"},"devDependencies":{"mocha":"1"},"licenses":[{"type":"MIT","url":"http://github.com/fb55/htmlparser2/raw/master/LICENSE"}],"_id":"htmlparser2@3.3.0","dist":{"shasum":"cc70d05a59f6542e43f0e685c982e14c924a9efe","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-3.3.0.tgz"},"_from":".","_npmVersion":"1.3.8","_npmUser":{"name":"feedic","email":"me@feedic.com"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}]},"3.4.0":{"name":"htmlparser2","description":"Fast & forgiving HTML/XML/RSS parser","version":"3.4.0","author":{"name":"Felix Boehm","email":"me@feedic.com"},"keywords":["html","parser","streams","xml","dom","rss","feed","atom"],"contributors":[{"name":"Chris Winberry","email":"chris@winberry.net"}],"repository":{"type":"git","url":"git://github.com/fb55/htmlparser2.git"},"bugs":{"url":"http://github.com/fb55/htmlparser2/issues"},"directories":{"lib":"lib/"},"main":"lib/index.js","scripts":{"test":"mocha -R spec"},"dependencies":{"domhandler":"2.2","domutils":"1.3","domelementtype":"1","readable-stream":"1.1"},"devDependencies":{"mocha":"1"},"license":"MIT","homepage":"https://github.com/fb55/htmlparser2","_id":"htmlparser2@3.4.0","dist":{"shasum":"a1cd65f5823ad285e19d63b085ad722d0a51eae7","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-3.4.0.tgz"},"_from":".","_npmVersion":"1.3.15","_npmUser":{"name":"feedic","email":"me@feedic.com"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}]},"3.5.0":{"name":"htmlparser2","description":"Fast & forgiving HTML/XML/RSS parser","version":"3.5.0","author":{"name":"Felix Boehm","email":"me@feedic.com"},"keywords":["html","parser","streams","xml","dom","rss","feed","atom"],"repository":{"type":"git","url":"git://github.com/fb55/htmlparser2.git"},"bugs":{"url":"http://github.com/fb55/htmlparser2/issues"},"directories":{"lib":"lib/"},"main":"lib/index.js","scripts":{"test":"mocha -R spec"},"dependencies":{"domhandler":"2.2","domutils":"1.3","domelementtype":"1","readable-stream":"1.1"},"devDependencies":{"mocha":"1"},"license":"MIT","homepage":"https://github.com/fb55/htmlparser2","_id":"htmlparser2@3.5.0","dist":{"shasum":"ce7f0f16e28b88fd20924910d76cd4e0854c8fc4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-3.5.0.tgz"},"_from":".","_npmVersion":"1.4.2","_npmUser":{"name":"feedic","email":"me@feedic.com"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}]},"3.5.1":{"name":"htmlparser2","description":"Fast & forgiving HTML/XML/RSS parser","version":"3.5.1","author":{"name":"Felix Boehm","email":"me@feedic.com"},"keywords":["html","parser","streams","xml","dom","rss","feed","atom"],"repository":{"type":"git","url":"git://github.com/fb55/htmlparser2.git"},"bugs":{"url":"http://github.com/fb55/htmlparser2/issues"},"directories":{"lib":"lib/"},"main":"lib/index.js","scripts":{"test":"mocha -R spec"},"dependencies":{"domhandler":"2.2","domutils":"1.3","domelementtype":"1","readable-stream":"1.1"},"devDependencies":{"mocha":"1"},"license":"MIT","homepage":"https://github.com/fb55/htmlparser2","_id":"htmlparser2@3.5.1","dist":{"shasum":"6f42f7657dd19c13f7d65de9118417394a0be6d0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-3.5.1.tgz"},"_from":".","_npmVersion":"1.4.4","_npmUser":{"name":"feedic","email":"me@feedic.com"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}]},"3.6.0":{"name":"htmlparser2","description":"Fast & forgiving HTML/XML/RSS parser","version":"3.6.0","author":{"name":"Felix Boehm","email":"me@feedic.com"},"keywords":["html","parser","streams","xml","dom","rss","feed","atom"],"repository":{"type":"git","url":"git://github.com/fb55/htmlparser2.git"},"bugs":{"url":"http://github.com/fb55/htmlparser2/issues"},"directories":{"lib":"lib/"},"main":"lib/index.js","scripts":{"test":"mocha && npm run lint","lint":"jshint {lib,test}/*.js test/*/*.js"},"dependencies":{"domhandler":"2.2","domutils":"1.3","domelementtype":"1","readable-stream":"1.1"},"devDependencies":{"mocha":"1","jshint":"2"},"license":"MIT","jshintConfig":{"eqeqeq":true,"freeze":true,"latedef":"nofunc","noarg":true,"nonbsp":true,"quotmark":"double","undef":true,"unused":true,"trailing":true,"eqnull":true,"proto":true,"smarttabs":true,"node":true,"globals":{"describe":true,"it":true}},"homepage":"https://github.com/fb55/htmlparser2","_id":"htmlparser2@3.6.0","dist":{"shasum":"286e4a6a49b1f009d486515e95b381e6f1b79605","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-3.6.0.tgz"},"_from":".","_npmVersion":"1.4.4","_npmUser":{"name":"feedic","email":"me@feedic.com"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}]},"3.7.0":{"name":"htmlparser2","description":"Fast & forgiving HTML/XML/RSS parser","version":"3.7.0","author":{"name":"Felix Boehm","email":"me@feedic.com"},"keywords":["html","parser","streams","xml","dom","rss","feed","atom"],"repository":{"type":"git","url":"git://github.com/fb55/htmlparser2.git"},"bugs":{"url":"http://github.com/fb55/htmlparser2/issues"},"directories":{"lib":"lib/"},"main":"lib/index.js","scripts":{"lcov":"istanbul cover _mocha --report lcovonly -- -R spec","coveralls":"npm run lint && npm run lcov && (cat coverage/lcov.info | coveralls || exit 0)","test":"mocha && npm run lint","lint":"jshint {lib,test}/*.js test/*/*.js"},"dependencies":{"domhandler":"2.2","domutils":"1.3","domelementtype":"1","readable-stream":"1.1","entities":"1.0"},"devDependencies":{"mocha":"1","mocha-lcov-reporter":"*","coveralls":"*","istanbul":"*","jshint":"2"},"license":"MIT","jshintConfig":{"eqeqeq":true,"freeze":true,"latedef":"nofunc","noarg":true,"nonbsp":true,"quotmark":"double","undef":true,"unused":true,"trailing":true,"eqnull":true,"proto":true,"smarttabs":true,"node":true,"globals":{"describe":true,"it":true}},"homepage":"https://github.com/fb55/htmlparser2","_id":"htmlparser2@3.7.0","dist":{"shasum":"3c2924c0fbdefc39d63c64afd1ef9bc57da334d4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-3.7.0.tgz"},"_from":".","_npmVersion":"1.4.4","_npmUser":{"name":"feedic","email":"me@feedic.com"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}]},"3.7.1":{"name":"htmlparser2","description":"Fast & forgiving HTML/XML/RSS parser","version":"3.7.1","author":{"name":"Felix Boehm","email":"me@feedic.com"},"keywords":["html","parser","streams","xml","dom","rss","feed","atom"],"repository":{"type":"git","url":"git://github.com/fb55/htmlparser2.git"},"bugs":{"url":"http://github.com/fb55/htmlparser2/issues"},"directories":{"lib":"lib/"},"main":"lib/index.js","scripts":{"lcov":"istanbul cover _mocha --report lcovonly -- -R spec","coveralls":"npm run lint && npm run lcov && (cat coverage/lcov.info | coveralls || exit 0)","test":"mocha && npm run lint","lint":"jshint {lib,test}/*.js test/*/*.js"},"dependencies":{"domhandler":"2.2","domutils":"1.4","domelementtype":"1","readable-stream":"1.1","entities":"1.0"},"devDependencies":{"mocha":"1","mocha-lcov-reporter":"*","coveralls":"*","istanbul":"*","jshint":"2"},"license":"MIT","jshintConfig":{"eqeqeq":true,"freeze":true,"latedef":"nofunc","noarg":true,"nonbsp":true,"quotmark":"double","undef":true,"unused":true,"trailing":true,"eqnull":true,"proto":true,"smarttabs":true,"node":true,"globals":{"describe":true,"it":true}},"homepage":"https://github.com/fb55/htmlparser2","_id":"htmlparser2@3.7.1","dist":{"shasum":"17bf379c5a7bd14be5c77da7da29fbdc5e5f4c33","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-3.7.1.tgz"},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"feedic","email":"me@feedic.com"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}]},"3.7.2":{"name":"htmlparser2","description":"Fast & forgiving HTML/XML/RSS parser","version":"3.7.2","author":{"name":"Felix Boehm","email":"me@feedic.com"},"keywords":["html","parser","streams","xml","dom","rss","feed","atom"],"repository":{"type":"git","url":"git://github.com/fb55/htmlparser2.git"},"bugs":{"url":"http://github.com/fb55/htmlparser2/issues"},"directories":{"lib":"lib/"},"main":"lib/index.js","scripts":{"lcov":"istanbul cover _mocha --report lcovonly -- -R spec","coveralls":"npm run lint && npm run lcov && (cat coverage/lcov.info | coveralls || exit 0)","test":"mocha && npm run lint","lint":"jshint {lib,test}/*.js test/*/*.js"},"dependencies":{"domhandler":"2.2","domutils":"1.5","domelementtype":"1","readable-stream":"1.1","entities":"1.0"},"devDependencies":{"mocha":"1","mocha-lcov-reporter":"*","coveralls":"*","istanbul":"*","jshint":"2"},"license":"MIT","jshintConfig":{"eqeqeq":true,"freeze":true,"latedef":"nofunc","noarg":true,"nonbsp":true,"quotmark":"double","undef":true,"unused":true,"trailing":true,"eqnull":true,"proto":true,"smarttabs":true,"node":true,"globals":{"describe":true,"it":true}},"homepage":"https://github.com/fb55/htmlparser2","_id":"htmlparser2@3.7.2","_shasum":"5f959dbc97e84a8418a9877c20f5f6f02a6482b0","_from":".","_npmVersion":"1.4.10","_npmUser":{"name":"feedic","email":"me@feedic.com"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}],"dist":{"shasum":"5f959dbc97e84a8418a9877c20f5f6f02a6482b0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-3.7.2.tgz"}},"3.7.3":{"name":"htmlparser2","description":"Fast & forgiving HTML/XML/RSS parser","version":"3.7.3","author":{"name":"Felix Boehm","email":"me@feedic.com"},"keywords":["html","parser","streams","xml","dom","rss","feed","atom"],"repository":{"type":"git","url":"git://github.com/fb55/htmlparser2.git"},"bugs":{"url":"http://github.com/fb55/htmlparser2/issues"},"directories":{"lib":"lib/"},"main":"lib/index.js","scripts":{"lcov":"istanbul cover _mocha --report lcovonly -- -R spec","coveralls":"npm run lint && npm run lcov && (cat coverage/lcov.info | coveralls || exit 0)","test":"mocha && npm run lint","lint":"jshint {lib,test}/*.js test/*/*.js"},"dependencies":{"domhandler":"2.2","domutils":"1.5","domelementtype":"1","readable-stream":"1.1","entities":"1.0"},"devDependencies":{"mocha":"1","mocha-lcov-reporter":"*","coveralls":"*","istanbul":"*","jshint":"2"},"license":"MIT","jshintConfig":{"eqeqeq":true,"freeze":true,"latedef":"nofunc","noarg":true,"nonbsp":true,"quotmark":"double","undef":true,"unused":true,"trailing":true,"eqnull":true,"proto":true,"smarttabs":true,"node":true,"globals":{"describe":true,"it":true}},"gitHead":"3c8707bc39dfe9cfab0313ae47eb43db29d6bb54","homepage":"https://github.com/fb55/htmlparser2","_id":"htmlparser2@3.7.3","_shasum":"6a64c77637c08c6f30ec2a8157a53333be7cb05e","_from":".","_npmVersion":"1.4.20","_npmUser":{"name":"feedic","email":"me@feedic.com"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}],"dist":{"shasum":"6a64c77637c08c6f30ec2a8157a53333be7cb05e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-3.7.3.tgz"}},"3.8.0":{"name":"htmlparser2","description":"Fast & forgiving HTML/XML/RSS parser","version":"3.8.0","author":{"name":"Felix Boehm","email":"me@feedic.com"},"keywords":["html","parser","streams","xml","dom","rss","feed","atom"],"repository":{"type":"git","url":"git://github.com/fb55/htmlparser2.git"},"bugs":{"url":"http://github.com/fb55/htmlparser2/issues"},"directories":{"lib":"lib/"},"main":"lib/index.js","scripts":{"lcov":"istanbul cover _mocha --report lcovonly -- -R spec","coveralls":"npm run lint && npm run lcov && (cat coverage/lcov.info | coveralls || exit 0)","test":"mocha && npm run lint","lint":"jshint lib test && jscs lib test"},"dependencies":{"domhandler":"2.2","domutils":"1.5","domelementtype":"1","readable-stream":"1.1","entities":"1.0"},"devDependencies":{"mocha":"1","mocha-lcov-reporter":"*","coveralls":"*","istanbul":"*","jscs":"1.5.8","jshint":"2"},"browser":{"readable-stream":false},"license":"MIT","jshintConfig":{"eqeqeq":true,"freeze":true,"latedef":"nofunc","noarg":true,"nonbsp":true,"quotmark":"double","undef":true,"unused":true,"trailing":true,"eqnull":true,"proto":true,"smarttabs":true,"node":true,"globals":{"describe":true,"it":true}},"gitHead":"2b6949edcca683c5b814c36ca9b64ba67a156731","homepage":"https://github.com/fb55/htmlparser2","_id":"htmlparser2@3.8.0","_shasum":"bd116771cac8b9f3b3035a6487789d8bf16e3097","_from":".","_npmVersion":"2.1.4","_nodeVersion":"0.10.32","_npmUser":{"name":"feedic","email":"me@feedic.com"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}],"dist":{"shasum":"bd116771cac8b9f3b3035a6487789d8bf16e3097","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-3.8.0.tgz"}},"3.8.1":{"name":"htmlparser2","description":"Fast & forgiving HTML/XML/RSS parser","version":"3.8.1","author":{"name":"Felix Boehm","email":"me@feedic.com"},"keywords":["html","parser","streams","xml","dom","rss","feed","atom"],"repository":{"type":"git","url":"git://github.com/fb55/htmlparser2.git"},"bugs":{"url":"http://github.com/fb55/htmlparser2/issues"},"directories":{"lib":"lib/"},"main":"lib/index.js","scripts":{"lcov":"istanbul cover _mocha --report lcovonly -- -R spec","coveralls":"npm run lint && npm run lcov && (cat coverage/lcov.info | coveralls || exit 0)","test":"mocha && npm run lint","lint":"jshint lib test && jscs lib test"},"dependencies":{"domhandler":"2.2","domutils":"1.5","domelementtype":"1","readable-stream":"1.1","entities":"1.0"},"devDependencies":{"mocha":"1","mocha-lcov-reporter":"*","coveralls":"*","istanbul":"*","jscs":"1.5.8","jshint":"2"},"browser":{"readable-stream":false},"license":"MIT","jshintConfig":{"eqeqeq":true,"freeze":true,"latedef":"nofunc","noarg":true,"nonbsp":true,"quotmark":"double","undef":true,"unused":true,"trailing":true,"eqnull":true,"proto":true,"smarttabs":true,"node":true,"globals":{"describe":true,"it":true}},"gitHead":"6e59ad5b2ebfc7301666db0b1b34383f82c27768","homepage":"https://github.com/fb55/htmlparser2","_id":"htmlparser2@3.8.1","_shasum":"eb1e77e65d09aaab409d3870923b00cd9b2c36b1","_from":".","_npmVersion":"2.1.5","_nodeVersion":"0.10.32","_npmUser":{"name":"feedic","email":"me@feedic.com"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}],"dist":{"shasum":"eb1e77e65d09aaab409d3870923b00cd9b2c36b1","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-3.8.1.tgz"}},"3.8.2":{"name":"htmlparser2","description":"Fast & forgiving HTML/XML/RSS parser","version":"3.8.2","author":{"name":"Felix Boehm","email":"me@feedic.com"},"keywords":["html","parser","streams","xml","dom","rss","feed","atom"],"repository":{"type":"git","url":"git://github.com/fb55/htmlparser2.git"},"bugs":{"url":"http://github.com/fb55/htmlparser2/issues"},"directories":{"lib":"lib/"},"main":"lib/index.js","scripts":{"lcov":"istanbul cover _mocha --report lcovonly -- -R spec","coveralls":"npm run lint && npm run lcov && (cat coverage/lcov.info | coveralls || exit 0)","test":"mocha && npm run lint","lint":"jshint lib test && jscs lib test"},"dependencies":{"domhandler":"2.3","domutils":"1.5","domelementtype":"1","readable-stream":"1.1","entities":"1.0"},"devDependencies":{"mocha":"1","mocha-lcov-reporter":"*","coveralls":"*","istanbul":"*","jscs":"1.5.8","jshint":"2"},"browser":{"readable-stream":false},"license":"MIT","jshintConfig":{"eqeqeq":true,"freeze":true,"latedef":"nofunc","noarg":true,"nonbsp":true,"quotmark":"double","undef":true,"unused":true,"trailing":true,"eqnull":true,"proto":true,"smarttabs":true,"node":true,"globals":{"describe":true,"it":true}},"gitHead":"748d3da71dc664afb8357aabfe6c4a6f74644a0e","homepage":"https://github.com/fb55/htmlparser2","_id":"htmlparser2@3.8.2","_shasum":"0d6bc3471d01e9766fc2c274cbac1d55b36c009c","_from":".","_npmVersion":"2.1.5","_nodeVersion":"0.10.32","_npmUser":{"name":"feedic","email":"me@feedic.com"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}],"dist":{"shasum":"0d6bc3471d01e9766fc2c274cbac1d55b36c009c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-3.8.2.tgz"}},"3.8.3":{"name":"htmlparser2","description":"Fast & forgiving HTML/XML/RSS parser","version":"3.8.3","author":{"name":"Felix Boehm","email":"me@feedic.com"},"keywords":["html","parser","streams","xml","dom","rss","feed","atom"],"repository":{"type":"git","url":"git://github.com/fb55/htmlparser2.git"},"bugs":{"url":"http://github.com/fb55/htmlparser2/issues"},"directories":{"lib":"lib/"},"main":"lib/index.js","scripts":{"lcov":"istanbul cover _mocha --report lcovonly -- -R spec","coveralls":"npm run lint && npm run lcov && (cat coverage/lcov.info | coveralls || exit 0)","test":"mocha && npm run lint","lint":"jshint lib test && jscs lib test"},"dependencies":{"domhandler":"2.3","domutils":"1.5","domelementtype":"1","readable-stream":"1.1","entities":"1.0"},"devDependencies":{"mocha":"1","mocha-lcov-reporter":"*","coveralls":"*","istanbul":"*","jscs":"1.5.8","jshint":"2"},"browser":{"readable-stream":false},"license":"MIT","jshintConfig":{"eqeqeq":true,"freeze":true,"latedef":"nofunc","noarg":true,"nonbsp":true,"quotmark":"double","undef":true,"unused":true,"trailing":true,"eqnull":true,"proto":true,"smarttabs":true,"node":true,"globals":{"describe":true,"it":true}},"gitHead":"44e48f58526de05d2639199f4baaaef235521f6b","homepage":"https://github.com/fb55/htmlparser2#readme","_id":"htmlparser2@3.8.3","_shasum":"996c28b191516a8be86501a7d79757e5c70c1068","_from":".","_npmVersion":"2.11.1","_nodeVersion":"2.2.1","_npmUser":{"name":"feedic","email":"me@feedic.com"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}],"dist":{"shasum":"996c28b191516a8be86501a7d79757e5c70c1068","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-3.8.3.tgz"}},"3.9.0":{"name":"htmlparser2","description":"Fast & forgiving HTML/XML/RSS parser","version":"3.9.0","author":{"name":"Felix Boehm","email":"me@feedic.com"},"keywords":["html","parser","streams","xml","dom","rss","feed","atom"],"repository":{"type":"git","url":"git://github.com/fb55/htmlparser2.git"},"bugs":{"url":"http://github.com/fb55/htmlparser2/issues"},"directories":{"lib":"lib/"},"main":"lib/index.js","files":["lib"],"scripts":{"lcov":"istanbul cover _mocha --report lcovonly -- -R spec","coveralls":"npm run lint && npm run lcov && (cat coverage/lcov.info | coveralls || exit 0)","test":"mocha && npm run lint","lint":"jshint lib test && jscs lib test"},"dependencies":{"domelementtype":"^1.3.0","domhandler":"^2.3.0","domutils":"^1.5.1","entities":"^1.1.1","readable-stream":"^2.0.2"},"devDependencies":{"coveralls":"^2.11.4","istanbul":"^0.3.18","jscs":"^2.1.0","jshint":"^2.8.0","mocha":"^2.2.5","mocha-lcov-reporter":"^0.0.2"},"browser":{"readable-stream":false},"license":"MIT","jshintConfig":{"eqeqeq":true,"freeze":true,"latedef":"nofunc","noarg":true,"nonbsp":true,"quotmark":"double","undef":true,"unused":true,"trailing":true,"eqnull":true,"proto":true,"smarttabs":true,"node":true,"globals":{"describe":true,"it":true}},"gitHead":"fbdd9f2676024c753081f37255fea896d57e2115","homepage":"https://github.com/fb55/htmlparser2#readme","_id":"htmlparser2@3.9.0","_shasum":"1bd6ba4d3358bbd31f93e13fb952961cf4d31b3f","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.0","_npmUser":{"name":"feedic","email":"me@feedic.com"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}],"dist":{"shasum":"1bd6ba4d3358bbd31f93e13fb952961cf4d31b3f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-3.9.0.tgz"}},"3.9.1":{"name":"htmlparser2","description":"Fast & forgiving HTML/XML/RSS parser","version":"3.9.1","author":{"name":"Felix Boehm","email":"me@feedic.com"},"keywords":["html","parser","streams","xml","dom","rss","feed","atom"],"repository":{"type":"git","url":"git://github.com/fb55/htmlparser2.git"},"bugs":{"url":"http://github.com/fb55/htmlparser2/issues"},"directories":{"lib":"lib/"},"main":"lib/index.js","files":["lib"],"scripts":{"lcov":"istanbul cover _mocha --report lcovonly -- -R spec","coveralls":"npm run lint && npm run lcov && (cat coverage/lcov.info | coveralls || exit 0)","test":"mocha && npm run lint","lint":"eslint lib test"},"dependencies":{"domelementtype":"^1.3.0","domhandler":"^2.3.0","domutils":"^1.5.1","entities":"^1.1.1","inherits":"^2.0.1","readable-stream":"^2.0.2"},"devDependencies":{"coveralls":"^2.11.4","istanbul":"^0.4.3","mocha":"^2.2.5","eslint":"^2.12.0","mocha-lcov-reporter":"^1.2.0"},"browser":{"readable-stream":false},"license":"MIT","gitHead":"f4651bd5dc1315a9949ff24361cce012b105861f","homepage":"https://github.com/fb55/htmlparser2#readme","_id":"htmlparser2@3.9.1","_shasum":"621b7a58bc9acd003f7af0a2c9a00aa67c8505d2","_from":".","_npmVersion":"3.9.6","_nodeVersion":"6.2.1","_npmUser":{"name":"feedic","email":"me@feedic.com"},"dist":{"shasum":"621b7a58bc9acd003f7af0a2c9a00aa67c8505d2","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-3.9.1.tgz"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/htmlparser2-3.9.1.tgz_1465693408619_0.5511430425103754"}},"3.9.2":{"name":"htmlparser2","description":"Fast & forgiving HTML/XML/RSS parser","version":"3.9.2","author":{"name":"Felix Boehm","email":"me@feedic.com"},"keywords":["html","parser","streams","xml","dom","rss","feed","atom"],"repository":{"type":"git","url":"git://github.com/fb55/htmlparser2.git"},"bugs":{"url":"http://github.com/fb55/htmlparser2/issues"},"directories":{"lib":"lib/"},"main":"lib/index.js","files":["lib"],"scripts":{"lcov":"istanbul cover _mocha --report lcovonly -- -R spec","coveralls":"npm run lint && npm run lcov && (cat coverage/lcov.info | coveralls || exit 0)","test":"mocha && npm run lint","lint":"eslint lib test"},"dependencies":{"domelementtype":"^1.3.0","domhandler":"^2.3.0","domutils":"^1.5.1","entities":"^1.1.1","inherits":"^2.0.1","readable-stream":"^2.0.2"},"devDependencies":{"coveralls":"^2.11.4","istanbul":"^0.4.3","mocha":"^2.2.5","eslint":"^2.12.0","mocha-lcov-reporter":"^1.2.0"},"browser":{"readable-stream":false},"license":"MIT","gitHead":"e1f12f626f65cf4a082f89bdde89081b54187818","homepage":"https://github.com/fb55/htmlparser2#readme","_id":"htmlparser2@3.9.2","_shasum":"1bdf87acca0f3f9e53fa4fcceb0f4b4cbb00b338","_from":".","_npmVersion":"3.10.9","_nodeVersion":"6.8.1","_npmUser":{"name":"feedic","email":"me@feedic.com"},"dist":{"shasum":"1bdf87acca0f3f9e53fa4fcceb0f4b4cbb00b338","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/htmlparser2/-/htmlparser2-3.9.2.tgz"},"maintainers":[{"name":"feedic","email":"me@feedic.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/htmlparser2-3.9.2.tgz_1476790416824_0.132699006004259"}}},"name":"htmlparser2","time":{"modified":"2017-07-09T06:07:32.361Z","created":"2011-08-28T11:32:26.564Z","1.0.0":"2011-08-28T11:32:27.937Z","1.1.0":"2011-10-21T12:40:26.907Z","1.5.0":"2011-11-05T19:04:15.797Z","1.9.0":"2011-11-27T12:32:20.236Z","2.0.0":"2011-11-27T14:02:55.423Z","2.0.1":"2011-12-10T00:00:12.167Z","2.1.0":"2011-12-18T19:22:18.441Z","2.1.1":"2011-12-19T21:29:29.891Z","2.1.2":"2011-12-21T10:59:45.739Z","2.1.3":"2011-12-28T12:33:51.266Z","2.2.0":"2012-01-13T16:25:13.219Z","2.2.1":"2012-01-14T13:59:37.276Z","2.2.2":"2012-01-17T08:51:09.288Z","2.2.3":"2012-01-28T22:24:55.010Z","2.2.4":"2012-03-04T17:40:18.138Z","2.2.5":"2012-04-18T19:33:50.948Z","2.2.6":"2012-04-26T08:44:14.289Z","2.2.7":"2012-04-26T09:27:02.032Z","2.2.8":"2012-05-06T16:16:02.009Z","2.2.9":"2012-06-02T18:42:03.691Z","2.3.0":"2012-08-14T12:37:04.165Z","2.5.0":"2012-11-10T13:57:57.931Z","2.5.1":"2013-01-09T14:48:45.369Z","2.5.2":"2013-02-15T12:50:42.045Z","2.6.0":"2013-03-17T22:16:03.210Z","3.0.0":"2013-03-31T20:34:43.530Z","3.0.1":"2013-04-04T11:06:05.986Z","3.0.2":"2013-04-04T11:33:33.863Z","3.0.3":"2013-04-09T08:41:44.906Z","3.0.4":"2013-04-15T13:55:28.983Z","3.0.5":"2013-04-15T14:07:50.178Z","3.1.1":"2013-06-05T14:57:40.240Z","3.1.2":"2013-06-09T13:05:01.361Z","3.1.3":"2013-06-14T12:10:39.518Z","3.1.4":"2013-06-23T09:36:39.587Z","3.1.5":"2013-07-21T19:02:44.196Z","3.1.6":"2013-08-02T15:02:14.842Z","3.2.0":"2013-08-18T11:18:37.675Z","3.2.1":"2013-08-18T17:31:31.492Z","3.2.2":"2013-08-18T17:58:57.243Z","3.2.3":"2013-08-18T20:23:40.788Z","3.2.4":"2013-08-29T09:34:15.978Z","3.2.5":"2013-08-30T17:23:55.324Z","3.3.0":"2013-09-04T15:01:30.355Z","3.4.0":"2013-12-12T14:18:18.558Z","3.4.1":"2014-02-14T20:02:54.272Z","3.5.0":"2014-02-14T20:17:45.477Z","3.5.1":"2014-02-25T21:06:24.133Z","3.6.0":"2014-03-15T09:46:09.155Z","3.7.0":"2014-03-17T20:37:14.862Z","3.7.1":"2014-03-22T11:19:32.428Z","3.7.2":"2014-05-19T08:12:56.000Z","3.7.3":"2014-07-09T16:12:12.716Z","3.8.0":"2014-10-22T18:57:00.379Z","3.8.1":"2014-11-04T19:02:03.871Z","3.8.2":"2014-11-04T23:46:52.976Z","3.8.3":"2015-06-05T09:17:14.127Z","3.9.0":"2015-12-01T17:03:17.549Z","3.9.1":"2016-06-12T01:03:29.186Z","3.9.2":"2016-10-18T11:33:38.610Z"},"readmeFilename":"README.md","homepage":"https://github.com/fb55/htmlparser2#readme"}