{"maintainers":[{"name":"anonymous","email":"tim.beyer@gmail.com"}],"dist-tags":{"latest":"0.7.0"},"author":{"name":"Tim Beyer"},"description":"Converts html into a vtree","readme":"html-to-vdom [![Build Status](https://travis-ci.org/TimBeyer/html-to-vdom.svg?branch=master)](https://travis-ci.org/TimBeyer/html-to-vdom) [![Coverage Status](https://coveralls.io/repos/TimBeyer/html-to-vdom/badge.svg?branch=master&service=github)](https://coveralls.io/github/TimBeyer/html-to-vdom?branch=master)\n============\n\nAbout\n-----\n\nThis is yet another library to convert HTML into a [vtree](https://github.com/Matt-Esch/vtree).\nIt's used in conjunction with [virtual-dom](https://github.com/Matt-Esch/virtual-dom) to convert template based views into `virtual-dom` views.\n\nNote\n----\n\nAs of v0.7.0, HTML attribute parsing has been improved by using [React's list of attributes and properties](https://github.com/facebook/react/blob/c265504fe2fdeadf0e5358879a3c141628b37a23/src/renderers/dom/shared/HTMLDOMPropertyConfig.js) to decide what to set on the VNode. This means that you should experience better compatibility and full support for HTML5. Custom attributes are also no longer lower cased automatically. Inline SVG is not yet supported, but will be worked on for the next version.\n\nAs of v0.6.0, converting sibling nodes without an enclosing parent tag returns an array of type `VNode` instead of throwing an error\n\nAs of v0.5.1, `html-to-vdom` no longer supports browsers without a full ES5 implementation.\n\nAs of v0.3.0, the VNode and VText classes need to be passed in during library initialization from the `virtual-dom` module you are using.  \nThis is to reduce incompatibilties you might have due to depending on a different version of `virtual-dom` than the one this library would use. \n\nUsage\n-----\n\n```javascript\nvar VNode = require('virtual-dom/vnode/vnode');\nvar VText = require('virtual-dom/vnode/vtext');\n\nvar convertHTML = require('html-to-vdom')({\n    VNode: VNode,\n    VText: VText\n});\n\nvar html = '<div>Foobar</div>';\n\nvar vtree = convertHTML(html);\nvar createElement = require('virtual-dom/create-element');\nvar el = createElement(vTree);\ndocument.body.appendChild(el);\n```\n\n#### Specifying a key\nIn order for `virtual-dom` to detect moves it needs a key. To specify your own custom method of finding a key pass in a method that takes the current tag and returns the key.\n\n```javascript\nvar convertHTML = require('html-to-vdom')({\n    VNode: VNode,\n    VText: VText\n});\n\nconvertHTML({\n    getVNodeKey: function (attributes) {\n        return attributes.id;\n    }\n}, '<div id=\"foo\"></div>');\n```\n\nIf you have a single key method you can also pass the options first, allowing you to create a single bound method for all key lookups:\n\n```javascript\nvar convertHTMLWithKey = convertHTML.bind(null, {\n    getVNodeKey: function (attributes) {\n        return attributes.id;\n    }   \n});\n\nconvertHTMLWithKey('<div id=\"foo\"></div>');\n```\n\nCredits\n-------\n\nThanks to:  \n* [@nkzawa](https://github.com/nkzawa) for making me aware of attribute lowercasing problems and submitting a PR to fix it\n* [@mattferrin](https://github.com/mattferrin) for noticing that promises could be removed from the API and contributing a PR to do so\n* [@tiagorg](https://github.com/tiagorg) for contributing a PR for style attribute parsing\n* [@dariusriggins](https://github.com/dariusriggins) for adding VNode key support\n* [@jsyang](https://github.com/jsyang) for removing the `lodash` dependency for a leaner build and [improved performance](http://jsperf.com/html-to-vdom-lodash-vs-native)\n* [@bregenspan](https://github.com/bregenspan) for making the dataset conversion standards-compliant\n* [@jesseditson](https://github.com/jesseditson) for adding `<script>` and `<style>` tag support and contributing to achieve better attribute/property handling\n","repository":{"type":"git","url":"git://github.com/TimBeyer/html-to-vdom.git"},"bugs":{"url":"https://github.com/TimBeyer/html-to-vdom/issues"},"license":"ISC","versions":{"0.0.1":{"name":"html-to-vdom","version":"0.0.1","description":"Converts html into a vtree","main":"index.js","scripts":{"test":"mocha test"},"repository":{"type":"git","url":"git://github.com/TimBeyer/html-to-vdom.git"},"author":{"name":"Tim Beyer"},"license":"ISC","bugs":{"url":"https://github.com/TimBeyer/html-to-vdom/issues"},"homepage":"https://github.com/TimBeyer/html-to-vdom","dependencies":{"bluebird":"^2.2.2","htmlparser":"^1.7.7","lodash":"^2.4.1","vtree":"0.0.14"},"devDependencies":{"chai":"^1.9.1","chai-as-promised":"^4.1.1"},"_id":"html-to-vdom@0.0.1","_shasum":"1fe26fd00295603add24e068ff779b71d6d00272","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"anonymous","email":"tim.beyer@gmail.com"},"maintainers":[{"name":"anonymous","email":"tim.beyer@gmail.com"}],"dist":{"shasum":"1fe26fd00295603add24e068ff779b71d6d00272","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/html-to-vdom/-/html-to-vdom-0.0.1.tgz","integrity":"sha512-NSdEMjZw5wKygiTD+57zcloPHVqZuYK7poc8DLzVYqUrIpUYZZwRJIgcRaGK3pGIgPZDCvrl1VlSzR7UaZvGfQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDG6BGUMUenduC3figtAS7CHrJN0DWT+9NPnTo8DHFW5gIhALfx7xpFqynrOIC7fIACdvTZBVkE4nObrLJX1Z5j3gwo"}]}},"0.0.2":{"name":"html-to-vdom","version":"0.0.2","description":"Converts html into a vtree","main":"index.js","scripts":{"test":"mocha test"},"repository":{"type":"git","url":"git://github.com/TimBeyer/html-to-vdom.git"},"author":{"name":"Tim Beyer"},"license":"ISC","bugs":{"url":"https://github.com/TimBeyer/html-to-vdom/issues"},"homepage":"https://github.com/TimBeyer/html-to-vdom","dependencies":{"bluebird":"^2.2.2","htmlparser":"^1.7.7","lodash":"^2.4.1","vtree":"0.0.14"},"devDependencies":{"chai":"^1.9.1","chai-as-promised":"^4.1.1"},"_id":"html-to-vdom@0.0.2","_shasum":"4bb1cea7ac45ecf9906e505fb91606b8d17dde86","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"anonymous","email":"tim.beyer@gmail.com"},"maintainers":[{"name":"anonymous","email":"tim.beyer@gmail.com"}],"dist":{"shasum":"4bb1cea7ac45ecf9906e505fb91606b8d17dde86","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/html-to-vdom/-/html-to-vdom-0.0.2.tgz","integrity":"sha512-oW6DcQoJBpdhGe/CEoKs33R8DO5+wWMu3MQ21PT0pxehG9rpUf5O0cUPXV6qmISRMXAy7bRUJMwIUnc+IdFOyQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIC30Tduv2ncUsh99sV/5ruj8km2O+vDzUxwfjk7Mr1ssAiEA+KouIb/pkRVnm6iik11BYplTKl+JVL1zEPzi5w1xdgY="}]}},"0.0.3":{"name":"html-to-vdom","version":"0.0.3","description":"Converts html into a vtree","main":"index.js","scripts":{"test":"mocha test"},"repository":{"type":"git","url":"git://github.com/TimBeyer/html-to-vdom.git"},"author":{"name":"Tim Beyer"},"license":"ISC","bugs":{"url":"https://github.com/TimBeyer/html-to-vdom/issues"},"homepage":"https://github.com/TimBeyer/html-to-vdom","dependencies":{"bluebird":"^2.2.2","htmlparser":"^1.7.7","lodash":"^2.4.1","vtree":"0.0.14"},"devDependencies":{"chai":"^1.9.1","chai-as-promised":"^4.1.1"},"_id":"html-to-vdom@0.0.3","_shasum":"b112e48f1e331e7a51bcb6d712f9f76f7c9b9d29","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"anonymous","email":"tim.beyer@gmail.com"},"maintainers":[{"name":"anonymous","email":"tim.beyer@gmail.com"}],"dist":{"shasum":"b112e48f1e331e7a51bcb6d712f9f76f7c9b9d29","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/html-to-vdom/-/html-to-vdom-0.0.3.tgz","integrity":"sha512-hAqYVydisLe0llFNwVpsxgJky3eAnNH5HDwusHAzhAD++wZn6BpBUvMxE3N1wt3hj18lA+MhcTkJ8tO80MlHow==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD2iBD9qGnnz0hbGMkfErSBC9xLT7wVFbVdtTWlMLmsHAIhAOSPOoVIHoy5fkMIUw37O55+8NE1/uH7ntyXePFayPcX"}]}},"0.0.4":{"name":"html-to-vdom","version":"0.0.4","description":"Converts html into a vtree","main":"index.js","scripts":{"test":"mocha test"},"repository":{"type":"git","url":"git://github.com/TimBeyer/html-to-vdom.git"},"author":{"name":"Tim Beyer"},"license":"ISC","bugs":{"url":"https://github.com/TimBeyer/html-to-vdom/issues"},"homepage":"https://github.com/TimBeyer/html-to-vdom","dependencies":{"bluebird":"^2.2.2","htmlparser":"^1.7.7","lodash":"^2.4.1","vtree":"0.0.14"},"devDependencies":{"chai":"^1.9.1","chai-as-promised":"^4.1.1"},"_id":"html-to-vdom@0.0.4","_shasum":"4d464ac9c260d50042c073071c64904d132b3aee","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"anonymous","email":"tim.beyer@gmail.com"},"maintainers":[{"name":"anonymous","email":"tim.beyer@gmail.com"}],"dist":{"shasum":"4d464ac9c260d50042c073071c64904d132b3aee","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/html-to-vdom/-/html-to-vdom-0.0.4.tgz","integrity":"sha512-SXIFiaNprS+Rl7q+5B6llNW2mjXmVQRVd4ED+U1FQGuN0hhg2Cau4nA3pZaXA0Y/It+uKTTpz5q1z6cgCfGyrw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCR69pdwkh3EKiuKBzKkgGx8AgViA0WYrfKggNXCYdZEAIgLj3H+vRu87z78mPCxt03yyXgHWNRu70DlkqUg4CP8xQ="}]}},"0.0.5":{"name":"html-to-vdom","version":"0.0.5","description":"Converts html into a vtree","main":"index.js","scripts":{"test":"mocha test"},"repository":{"type":"git","url":"git://github.com/TimBeyer/html-to-vdom.git"},"author":{"name":"Tim Beyer"},"license":"ISC","bugs":{"url":"https://github.com/TimBeyer/html-to-vdom/issues"},"homepage":"https://github.com/TimBeyer/html-to-vdom","dependencies":{"bluebird":"^2.2.2","htmlparser":"^1.7.7","lodash":"^2.4.1","vtree":"0.0.14"},"devDependencies":{"chai":"^1.9.1","chai-as-promised":"^4.1.1"},"_id":"html-to-vdom@0.0.5","_shasum":"9c52b90d2f2b3893e74735510df98e3bfc629044","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"anonymous","email":"tim.beyer@gmail.com"},"maintainers":[{"name":"anonymous","email":"tim.beyer@gmail.com"}],"dist":{"shasum":"9c52b90d2f2b3893e74735510df98e3bfc629044","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/html-to-vdom/-/html-to-vdom-0.0.5.tgz","integrity":"sha512-m3BJKyLxZl2LVfBWq+rMhXuL9lyb7ai5cTHgFJRpP33PT5zDMlSp/gQdu+uCz9mYsjHGED2wIdTUEQOKm/+iag==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDlKve2ZbZx8b7TCKg346/whDHGWCxG0oE3BPN61rLQJAiEAvEE9EdGr62JJkY+sZ4XM4sEAMKLeRnv7Vei4msH0JdU="}]}},"0.0.6":{"name":"html-to-vdom","version":"0.0.6","description":"Converts html into a vtree","main":"index.js","scripts":{"test":"mocha test"},"repository":{"type":"git","url":"git://github.com/TimBeyer/html-to-vdom.git"},"author":{"name":"Tim Beyer"},"license":"ISC","bugs":{"url":"https://github.com/TimBeyer/html-to-vdom/issues"},"homepage":"https://github.com/TimBeyer/html-to-vdom","dependencies":{"bluebird":"^2.2.2","htmlparser":"^1.7.7","lodash":"^2.4.1","vtree":"0.0.14"},"devDependencies":{"chai":"^1.9.1","chai-as-promised":"^4.1.1"},"_id":"html-to-vdom@0.0.6","_shasum":"7bae97e2fd585242436b137f080966a126f81dbf","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"anonymous","email":"tim.beyer@gmail.com"},"maintainers":[{"name":"anonymous","email":"tim.beyer@gmail.com"}],"dist":{"shasum":"7bae97e2fd585242436b137f080966a126f81dbf","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/html-to-vdom/-/html-to-vdom-0.0.6.tgz","integrity":"sha512-Yo6Flr2bzzhcZrgE6mcP2ggncHDWhFHa4MfkAgYkhTV1sdEXPm1CIEYaYuO9yygSuUdiQcRzFVFak7CEilfzrw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIB888DTZ8SKhlz0a0nnfhlRRWc/AoKjb2LRcm6wzkaVOAiAp8iz++LdL2GsQZLxZfEh3L/Y8XwS68Y4nUzH2o2uHnw=="}]}},"0.0.7":{"name":"html-to-vdom","version":"0.0.7","description":"Converts html into a vtree","main":"index.js","scripts":{"test":"mocha test"},"repository":{"type":"git","url":"git://github.com/TimBeyer/html-to-vdom.git"},"author":{"name":"Tim Beyer"},"license":"ISC","bugs":{"url":"https://github.com/TimBeyer/html-to-vdom/issues"},"homepage":"https://github.com/TimBeyer/html-to-vdom","dependencies":{"bluebird":"^2.2.2","htmlparser":"^1.7.7","lodash":"^2.4.1","vtree":"0.0.14"},"devDependencies":{"chai":"^1.9.1","chai-as-promised":"^4.1.1","mocha":"^1.21.4"},"_id":"html-to-vdom@0.0.7","_shasum":"565152f58e058da66cc4886aabc1c945207050ba","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"anonymous","email":"tim.beyer@gmail.com"},"maintainers":[{"name":"anonymous","email":"tim.beyer@gmail.com"}],"dist":{"shasum":"565152f58e058da66cc4886aabc1c945207050ba","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/html-to-vdom/-/html-to-vdom-0.0.7.tgz","integrity":"sha512-Trp+HeoaCg3YmXwWQgRtEfGgQ0DbQtqX/cZUo7ZJ/rA6kI2IOIBHQHtIJRvhZX1AYDaMFUXuBa/elcxd/7UnLQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEr4ohkWdkKFh5NpBwpvcrijggEAA63hy1bXPSzbgwaiAiAi/RVZedW/c6im00b/OnruFJGc1UOSXXg4pqjyRkAUhw=="}]}},"0.1.0":{"name":"html-to-vdom","version":"0.1.0","description":"Converts html into a vtree","main":"index.js","scripts":{"test":"mocha test"},"repository":{"type":"git","url":"git://github.com/TimBeyer/html-to-vdom.git"},"author":{"name":"Tim Beyer"},"license":"ISC","bugs":{"url":"https://github.com/TimBeyer/html-to-vdom/issues"},"homepage":"https://github.com/TimBeyer/html-to-vdom","dependencies":{"bluebird":"^2.2.2","ent":"^2.0.0","htmlparser":"^1.7.7","lodash":"^2.4.1","vtree":"0.0.14"},"devDependencies":{"chai":"^1.9.1","chai-as-promised":"^4.1.1","mocha":"^1.21.4"},"_id":"html-to-vdom@0.1.0","_shasum":"d5584a4eb018ae0c428d313df699f61ac75d844a","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"anonymous","email":"tim.beyer@gmail.com"},"maintainers":[{"name":"anonymous","email":"tim.beyer@gmail.com"}],"dist":{"shasum":"d5584a4eb018ae0c428d313df699f61ac75d844a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/html-to-vdom/-/html-to-vdom-0.1.0.tgz","integrity":"sha512-wcqHirZJw27bLCNwykF7l5nPCDw+Vg+cdl2ohSmc9CmGGX6XT7bbD5DNUSIFAAjak06Akgk+Mv+MxFlBoxB9vA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDp+VvJ1eVrdtmZdUXdcRpBQIZE9SBIpsbe03gYgvLv8AiA8fvn+/8uSAi85bMX1EVB/eJNhG1mVDYcSN+zoOSuD1Q=="}]}},"0.1.1":{"name":"html-to-vdom","version":"0.1.1","description":"Converts html into a vtree","main":"index.js","scripts":{"test":"mocha test"},"repository":{"type":"git","url":"git://github.com/TimBeyer/html-to-vdom.git"},"author":{"name":"Tim Beyer"},"license":"ISC","bugs":{"url":"https://github.com/TimBeyer/html-to-vdom/issues"},"homepage":"https://github.com/TimBeyer/html-to-vdom","dependencies":{"bluebird":"^2.2.2","ent":"^2.0.0","htmlparser":"^1.7.7","lodash":"^2.4.1","vtree":"0.0.21"},"devDependencies":{"chai":"^1.9.1","chai-as-promised":"^4.1.1","mocha":"^1.21.4"},"gitHead":"7f62f5bee05778fc22dc5231e8571908fa1f1b66","_id":"html-to-vdom@0.1.1","_shasum":"65679caf861fee4307c51219c82df4e2f7464deb","_from":".","_npmVersion":"2.1.2","_nodeVersion":"0.10.28","_npmUser":{"name":"anonymous","email":"tim.beyer@gmail.com"},"maintainers":[{"name":"anonymous","email":"tim.beyer@gmail.com"}],"dist":{"shasum":"65679caf861fee4307c51219c82df4e2f7464deb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/html-to-vdom/-/html-to-vdom-0.1.1.tgz","integrity":"sha512-TIp9z0LHLGCGWN0/2wpwWRuU+Z5sgvcBHQPdXmd1iAC4rEGqJqQQyyNPR6fJKJkg7zX2zOb9WZLkaWDWRh3Ykg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDwBANKsvtwc/oD7Mu3yZwXTsAtgR7jynH7Cni6RdF4FwIhAJ1uwlluLj23V6ekqyLfZ0aMiqw1uU+oy39aES8L/Xzd"}]}},"0.1.2":{"name":"html-to-vdom","version":"0.1.2","description":"Converts html into a vtree","main":"index.js","scripts":{"test":"mocha test"},"repository":{"type":"git","url":"git://github.com/TimBeyer/html-to-vdom.git"},"author":{"name":"Tim Beyer"},"license":"ISC","bugs":{"url":"https://github.com/TimBeyer/html-to-vdom/issues"},"homepage":"https://github.com/TimBeyer/html-to-vdom","dependencies":{"bluebird":"^2.2.2","ent":"^2.0.0","htmlparser":"^1.7.7","lodash":"^2.4.1","vtree":"0.0.21"},"devDependencies":{"chai":"^1.9.1","chai-as-promised":"^4.1.1","mocha":"^1.21.4"},"gitHead":"8be21dab0d205ea306722f052c9b5ecbb041c97e","_id":"html-to-vdom@0.1.2","_shasum":"3da30e20b94f52fac18ebb8237a62fc60758768b","_from":".","_npmVersion":"2.1.2","_nodeVersion":"0.10.28","_npmUser":{"name":"anonymous","email":"tim.beyer@gmail.com"},"maintainers":[{"name":"anonymous","email":"tim.beyer@gmail.com"}],"dist":{"shasum":"3da30e20b94f52fac18ebb8237a62fc60758768b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/html-to-vdom/-/html-to-vdom-0.1.2.tgz","integrity":"sha512-LRfU9ZGwcJ1eQyL3BijrJ9lkKgc8KX2eSkcImyQb75cXNNeZClbFicSvwLYCIhhQ5rPis2Iy5hkNHFeP45PH/w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIA+lpv9rSFTSFSbuNqFxzObFHYQ5yOXhag1YsBLu1B6AAiEAxEPcOvmQHnVw0Iu4beynM0h5P0OhPOAKIAFU+tdFYb4="}]}},"0.2.0":{"name":"html-to-vdom","version":"0.2.0","description":"Converts html into a vtree","main":"index.js","scripts":{"test":"mocha test"},"repository":{"type":"git","url":"git://github.com/TimBeyer/html-to-vdom.git"},"author":{"name":"Tim Beyer"},"license":"ISC","bugs":{"url":"https://github.com/TimBeyer/html-to-vdom/issues"},"homepage":"https://github.com/TimBeyer/html-to-vdom","dependencies":{"ent":"^2.0.0","htmlparser2":"^3.8.2","lodash":"^2.4.1","vtree":"0.0.21"},"devDependencies":{"chai":"^1.9.1","chai-as-promised":"^4.1.1","mocha":"^1.21.4"},"gitHead":"704033e9094361e9e14e93e01ca9601447b7e70e","_id":"html-to-vdom@0.2.0","_shasum":"90e4353ee538431c6fbe7c2be62d46f8bb10cb6c","_from":".","_npmVersion":"2.1.2","_nodeVersion":"0.10.28","_npmUser":{"name":"anonymous","email":"tim.beyer@gmail.com"},"maintainers":[{"name":"anonymous","email":"tim.beyer@gmail.com"}],"dist":{"shasum":"90e4353ee538431c6fbe7c2be62d46f8bb10cb6c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/html-to-vdom/-/html-to-vdom-0.2.0.tgz","integrity":"sha512-QMEvosr0lfmGjaiTrVQ4vuA8AxyHEBS2gt6b5D6BUWjBhXlKaXmRz2S0Hr0fPTPqBZ/5tUTUL4NTkdxdgSPa3w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC0Ij4fA5TOfYO1gWdb5NgJXhnpuQv4xnmJCtlHkvYDewIhAJmikXHzqxZ06cg3irBTQiQOEPI+gLGU4mpTdbUtzztH"}]}},"0.2.1":{"name":"html-to-vdom","version":"0.2.1","description":"Converts html into a vtree","main":"index.js","scripts":{"test":"mocha test"},"repository":{"type":"git","url":"git://github.com/TimBeyer/html-to-vdom.git"},"author":{"name":"Tim Beyer"},"license":"ISC","bugs":{"url":"https://github.com/TimBeyer/html-to-vdom/issues"},"homepage":"https://github.com/TimBeyer/html-to-vdom","dependencies":{"ent":"^2.0.0","htmlparser2":"^3.8.2","lodash":"^2.4.1","vtree":"0.0.21"},"devDependencies":{"chai":"^1.9.1","chai-as-promised":"^4.1.1","mocha":"^1.21.4"},"gitHead":"74f6914b9fbaf3b4592a82497e3fed4a01458bfc","_id":"html-to-vdom@0.2.1","_shasum":"8d22ae3b59fbfa9adb11def5b56914293a62ef22","_from":".","_npmVersion":"2.1.2","_nodeVersion":"0.10.28","_npmUser":{"name":"anonymous","email":"tim.beyer@gmail.com"},"maintainers":[{"name":"anonymous","email":"tim.beyer@gmail.com"}],"dist":{"shasum":"8d22ae3b59fbfa9adb11def5b56914293a62ef22","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/html-to-vdom/-/html-to-vdom-0.2.1.tgz","integrity":"sha512-PNQaelTjf9/1CzdW5jNycEQppVBcV+IaRiWgtChVU8+XDkPHdmp//nsUhuCQKnmoA+nI11+lAIvm3dxyywX5MA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIB45FUDpDXYqz4LlPQPK3oEAGCBexPE5KNdnV4KYSDrAAiEA4dzDWZe0voDXMe6+7UTnWQEmqenV8W/RQy2SpWe+ydA="}]}},"0.3.0":{"name":"html-to-vdom","version":"0.3.0","description":"Converts html into a vtree","main":"index.js","scripts":{"test":"mocha test"},"repository":{"type":"git","url":"git://github.com/TimBeyer/html-to-vdom.git"},"author":{"name":"Tim Beyer"},"license":"ISC","bugs":{"url":"https://github.com/TimBeyer/html-to-vdom/issues"},"homepage":"https://github.com/TimBeyer/html-to-vdom","dependencies":{"ent":"^2.0.0","htmlparser2":"^3.8.2","lodash":"^2.4.1"},"devDependencies":{"chai":"^1.9.1","chai-as-promised":"^4.1.1","mocha":"^1.21.4","virtual-dom":"0.0.23"},"gitHead":"de428f4a4f85bf1d5e3b40ec75dc36b90e237235","_id":"html-to-vdom@0.3.0","_shasum":"5569a226753efc5f8c285829ae8cb4f72b74ec28","_from":".","_npmVersion":"2.1.2","_nodeVersion":"0.10.28","_npmUser":{"name":"anonymous","email":"tim.beyer@gmail.com"},"maintainers":[{"name":"anonymous","email":"tim.beyer@gmail.com"}],"dist":{"shasum":"5569a226753efc5f8c285829ae8cb4f72b74ec28","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/html-to-vdom/-/html-to-vdom-0.3.0.tgz","integrity":"sha512-FtFaGlCHmui4O5SUvwnmmr+9YISl8SgmzJSbosjj8m7p+XruoMAjVtR4JmN6k/BOlvBYf9AyTLtuo6pp/lKkog==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGCMDsrx0SlSAQ0H5PRjkrH5ywcoqUSk4w0q7k0cOR5pAiBmo1+fe640BKrrFMKaMael7SE7cEheZHDQUksxZHC41w=="}]}},"0.4.0":{"name":"html-to-vdom","version":"0.4.0","description":"Converts html into a vtree","main":"index.js","scripts":{"test":"mocha test"},"repository":{"type":"git","url":"git://github.com/TimBeyer/html-to-vdom.git"},"author":{"name":"Tim Beyer"},"license":"ISC","bugs":{"url":"https://github.com/TimBeyer/html-to-vdom/issues"},"homepage":"https://github.com/TimBeyer/html-to-vdom","dependencies":{"ent":"^2.0.0","htmlparser2":"^3.8.2","lodash":"^2.4.1"},"devDependencies":{"chai":"^1.9.1","chai-as-promised":"^4.1.1","mocha":"^1.21.4","virtual-dom":"0.0.23"},"gitHead":"238677bfdbb5da18e9125084e3e7ff47e79cb437","_id":"html-to-vdom@0.4.0","_shasum":"7e68c0253009bb9b5aa0b80756ec7e9cb92b7628","_from":".","_npmVersion":"2.1.2","_nodeVersion":"0.10.28","_npmUser":{"name":"anonymous","email":"tim.beyer@gmail.com"},"maintainers":[{"name":"anonymous","email":"tim.beyer@gmail.com"}],"dist":{"shasum":"7e68c0253009bb9b5aa0b80756ec7e9cb92b7628","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/html-to-vdom/-/html-to-vdom-0.4.0.tgz","integrity":"sha512-vxTxbORaZ/zY/jtTcD3qyFi9uhTfE6KQrb/sYudOQyW5ANqhsMDB+ddys7eqxU2zhks6HNd9Peje4tU6fYM0Bg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDG2p5KXGs2yiZiBGihTIqRGJOjmhGvidV2iT/o5KozzQIhAM2A7gaCYMQuGwxT0TknidHGFX9t+puGnm5YilTX4smN"}]}},"0.5.0":{"name":"html-to-vdom","version":"0.5.0","description":"Converts html into a vtree","main":"index.js","scripts":{"test":"mocha test"},"repository":{"type":"git","url":"git://github.com/TimBeyer/html-to-vdom.git"},"author":{"name":"Tim Beyer"},"license":"ISC","bugs":{"url":"https://github.com/TimBeyer/html-to-vdom/issues"},"homepage":"https://github.com/TimBeyer/html-to-vdom","dependencies":{"ent":"^2.0.0","htmlparser2":"^3.8.2","lodash":"^2.4.1"},"devDependencies":{"chai":"^1.9.1","chai-as-promised":"^4.1.1","mocha":"^1.21.4","virtual-dom":"0.0.23"},"gitHead":"6093e2a06689d25ef4c0729bc62e6d172f713bc8","_id":"html-to-vdom@0.5.0","_shasum":"67351a589837a273d70d5738228c5fd6f352ffbd","_from":".","_npmVersion":"2.1.2","_nodeVersion":"0.10.28","_npmUser":{"name":"anonymous","email":"tim.beyer@gmail.com"},"maintainers":[{"name":"anonymous","email":"tim.beyer@gmail.com"}],"dist":{"shasum":"67351a589837a273d70d5738228c5fd6f352ffbd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/html-to-vdom/-/html-to-vdom-0.5.0.tgz","integrity":"sha512-tRXPpbGoQl7Sxi6FfoevL2EO8j35HUm4SbMopDINXjShsh205/KwDUFm9s/zuC/uJo8MSqbUNluV+xpr9kS0Gw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCMex7RhHwo0sq84G+6tQ38uorPIArdPMCN3pMq8+i9gQIhAKJZrg1Rii7UUsmuc92JMkDX+G2Jhkm4cwNptY57HwUX"}]}},"0.5.1":{"name":"html-to-vdom","version":"0.5.1","description":"Converts html into a vtree","main":"index.js","scripts":{"test":"mocha test"},"repository":{"type":"git","url":"git://github.com/TimBeyer/html-to-vdom.git"},"author":{"name":"Tim Beyer"},"license":"ISC","bugs":{"url":"https://github.com/TimBeyer/html-to-vdom/issues"},"homepage":"https://github.com/TimBeyer/html-to-vdom","dependencies":{"ent":"^2.0.0","htmlparser2":"^3.8.2"},"devDependencies":{"chai":"^1.9.1","chai-as-promised":"^4.1.1","mocha":"^1.21.4","virtual-dom":"0.0.23"},"_id":"html-to-vdom@0.5.1","_shasum":"59a0fe6740e3bf496ff5903875bd9effb34a3d13","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"anonymous","email":"tim.beyer@gmail.com"},"maintainers":[{"name":"anonymous","email":"tim.beyer@gmail.com"}],"dist":{"shasum":"59a0fe6740e3bf496ff5903875bd9effb34a3d13","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/html-to-vdom/-/html-to-vdom-0.5.1.tgz","integrity":"sha512-JV0infWSXeW/s+FZ7/U3/fbiyiNU6TzNRRsFF0UoHFtLnszBXpQ8Mw3tBrpblP5pQ2CMXgt1BsM9H+aFs0Se8Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCuZb3iMpy+cUhZCcK9ht5GIXvlOBppPDT6VX3q6BNiMQIhAO5A041/UqWWffmRGbS+HVZg+d7AbGNwMmbPmLIFq1MM"}]}},"0.5.2":{"name":"html-to-vdom","version":"0.5.2","description":"Converts html into a vtree","main":"index.js","scripts":{"test":"mocha test"},"repository":{"type":"git","url":"git://github.com/TimBeyer/html-to-vdom.git"},"author":{"name":"Tim Beyer"},"license":"ISC","bugs":{"url":"https://github.com/TimBeyer/html-to-vdom/issues"},"homepage":"https://github.com/TimBeyer/html-to-vdom","dependencies":{"ent":"^2.0.0","htmlparser2":"^3.8.2"},"devDependencies":{"chai":"^1.9.1","chai-as-promised":"^4.1.1","mocha":"^1.21.4","virtual-dom":"0.0.23"},"_id":"html-to-vdom@0.5.2","_shasum":"401242aa60cfd777c00cd3dcfee7cabb5e8d9e9c","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"anonymous","email":"tim.beyer@gmail.com"},"maintainers":[{"name":"anonymous","email":"tim.beyer@gmail.com"}],"dist":{"shasum":"401242aa60cfd777c00cd3dcfee7cabb5e8d9e9c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/html-to-vdom/-/html-to-vdom-0.5.2.tgz","integrity":"sha512-fiWAJlbG29SlPR0mDUW7mAPGBSQ3jsIIt0jB8r26igWljN90t8Xn38hXjuGRcewvtET1Ynkz9L9NVM5lhO/OPw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGiyVIWexIDrChTNyZsiXjXrJEiQTIlh7Xr0lQyLrS4XAiAXtYqDPL2wgxUmovl8N8NyizoeY4z8ST+r2XcfBkpLVw=="}]}},"0.5.3":{"name":"html-to-vdom","version":"0.5.3","description":"Converts html into a vtree","main":"index.js","scripts":{"test":"mocha test"},"repository":{"type":"git","url":"git://github.com/TimBeyer/html-to-vdom.git"},"author":{"name":"Tim Beyer"},"license":"ISC","bugs":{"url":"https://github.com/TimBeyer/html-to-vdom/issues"},"homepage":"https://github.com/TimBeyer/html-to-vdom","dependencies":{"ent":"^2.0.0","htmlparser2":"^3.8.2"},"devDependencies":{"chai":"^1.9.1","chai-as-promised":"^4.1.1","mocha":"^1.21.4","virtual-dom":"0.0.23"},"_id":"html-to-vdom@0.5.3","_shasum":"abecc77fa416f20e6457819f90b18aa55a60343f","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"anonymous","email":"tim.beyer@gmail.com"},"maintainers":[{"name":"anonymous","email":"tim.beyer@gmail.com"}],"dist":{"shasum":"abecc77fa416f20e6457819f90b18aa55a60343f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/html-to-vdom/-/html-to-vdom-0.5.3.tgz","integrity":"sha512-2o5MB0J4PZz7mfVrx3KSOVCSfNZHdIlMBw+stWOQivnvYZAfHypT4L+e+rHuwCp5K2l+5que1UdWtIlbnjyLTg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDwosBj9ScpVhoNrB8G+Sw2fe6W+VMv6cB+b7ISnGmBvwIgFhyNHWEn9sLVOztZ9HqLrGZPv+hfNoSb240XG2j2BEg="}]}},"0.5.4":{"name":"html-to-vdom","version":"0.5.4","description":"Converts html into a vtree","main":"index.js","scripts":{"test":"mocha test"},"repository":{"type":"git","url":"git://github.com/TimBeyer/html-to-vdom.git"},"author":{"name":"Tim Beyer"},"license":"ISC","bugs":{"url":"https://github.com/TimBeyer/html-to-vdom/issues"},"homepage":"https://github.com/TimBeyer/html-to-vdom","dependencies":{"ent":"^2.0.0","htmlparser2":"^3.8.2"},"devDependencies":{"chai":"^1.9.1","chai-as-promised":"^4.1.1","mocha":"^1.21.4","virtual-dom":"0.0.23"},"_id":"html-to-vdom@0.5.4","_shasum":"31a29f92b9fd602472430b1a1b6013bb7161bb39","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"anonymous","email":"tim.beyer@gmail.com"},"maintainers":[{"name":"anonymous","email":"tim.beyer@gmail.com"}],"dist":{"shasum":"31a29f92b9fd602472430b1a1b6013bb7161bb39","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/html-to-vdom/-/html-to-vdom-0.5.4.tgz","integrity":"sha512-O+HIUKRO2AJz+jqwS5m/VbQUbw8aSeICG7eom4LWr5B6rEWF5DTmt8KXtL6MIGD/xCywy+05HeNiwbkirrCs9w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIF9bFuicDJCddHBSvRKxXABaibyc8JMY1e5ectI7sB5eAiEA9gXQ+g32qsG3r4K1/NvfhhjTZwUkuNFxTuFV0MK1sng="}]}},"0.5.5":{"name":"html-to-vdom","version":"0.5.5","description":"Converts html into a vtree","main":"index.js","scripts":{"test":"mocha test"},"repository":{"type":"git","url":"git://github.com/TimBeyer/html-to-vdom.git"},"author":{"name":"Tim Beyer"},"license":"ISC","bugs":{"url":"https://github.com/TimBeyer/html-to-vdom/issues"},"homepage":"https://github.com/TimBeyer/html-to-vdom","dependencies":{"ent":"^2.0.0","htmlparser2":"^3.8.2"},"devDependencies":{"chai":"^1.9.1","chai-as-promised":"^4.1.1","mocha":"^1.21.4","virtual-dom":"0.0.23"},"gitHead":"39a3bec8598085bfacb08d3ac37ae53eaf98686f","_id":"html-to-vdom@0.5.5","_shasum":"f08251207a49ad8ab969a3d4d33a3ff21dd35676","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"anonymous","email":"tim.beyer@gmail.com"},"maintainers":[{"name":"anonymous","email":"tim.beyer@gmail.com"}],"dist":{"shasum":"f08251207a49ad8ab969a3d4d33a3ff21dd35676","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/html-to-vdom/-/html-to-vdom-0.5.5.tgz","integrity":"sha512-qifFAxdVsmOGK1XuuB1n/+xx++Aj3EXIeHOaOA5D35x4GNfGWXja+6YkUHIimqln4rE9DSnSiRAxLJu+U5ESMg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCID6JfAM8yZGypmEiTy1Xj7drlhzfA0JaLWxCDz3wrlozAiEA8KbUOiJK81Xey+5UsMEnIFtFEOMhevHBVDSDDLK4rLw="}]}},"0.6.0":{"name":"html-to-vdom","version":"0.6.0","description":"Converts html into a vtree","main":"index.js","scripts":{"test":"mocha test"},"repository":{"type":"git","url":"git://github.com/TimBeyer/html-to-vdom.git"},"author":{"name":"Tim Beyer"},"license":"ISC","bugs":{"url":"https://github.com/TimBeyer/html-to-vdom/issues"},"homepage":"https://github.com/TimBeyer/html-to-vdom","dependencies":{"ent":"^2.0.0","htmlparser2":"^3.8.2"},"devDependencies":{"chai":"^1.9.1","chai-as-promised":"^4.1.1","mocha":"^1.21.4","virtual-dom":"0.0.23"},"gitHead":"8fe1fa271b3c41e2341172fdf44424e6daf1f2ec","_id":"html-to-vdom@0.6.0","_shasum":"a7f60a65c7c390a7f43bff70ceaa46a1b22ad5bb","_from":".","_npmVersion":"2.9.0","_nodeVersion":"0.12.2","_npmUser":{"name":"anonymous","email":"tim.beyer@gmail.com"},"maintainers":[{"name":"anonymous","email":"tim.beyer@gmail.com"}],"dist":{"shasum":"a7f60a65c7c390a7f43bff70ceaa46a1b22ad5bb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/html-to-vdom/-/html-to-vdom-0.6.0.tgz","integrity":"sha512-iehgaj1U4JkdM1Es8JqoRDowGC4nNrmc689a1aqKbPFbqKqeDithuTLKZuwYTNBHruGIzGPLan8bS9thGbNrBQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIByxak6JezMnIIvwVUrJYYeTJd1/cbG2xuXF7lDCR6VhAiEAziucSkb1/+jz7d7qu4GBF54wScqCK5DbnV+qB3te3Pw="}]}},"0.7.0":{"name":"html-to-vdom","version":"0.7.0","description":"Converts html into a vtree","main":"index.js","scripts":{"test":"mocha test","test-coverage":"NODE_ENV=test ./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && rm -rf ./coverage"},"repository":{"type":"git","url":"git://github.com/TimBeyer/html-to-vdom.git"},"author":{"name":"Tim Beyer"},"license":"ISC","bugs":{"url":"https://github.com/TimBeyer/html-to-vdom/issues"},"homepage":"https://github.com/TimBeyer/html-to-vdom","dependencies":{"ent":"^2.0.0","htmlparser2":"^3.8.2"},"devDependencies":{"chai":"^1.9.1","chai-as-promised":"^4.1.1","coveralls":"^2.11.2","istanbul":"^0.3.17","mocha":"^1.21.4","virtual-dom":"2.0.1"},"gitHead":"074e216b3139cf13fef3fcf438d4e5133301e007","_id":"html-to-vdom@0.7.0","_shasum":"cc67a09b67d3520b0a577ed0e33706a2310ce9dc","_from":".","_npmVersion":"2.9.0","_nodeVersion":"0.12.2","_npmUser":{"name":"anonymous","email":"tim.beyer@gmail.com"},"maintainers":[{"name":"anonymous","email":"tim.beyer@gmail.com"}],"dist":{"shasum":"cc67a09b67d3520b0a577ed0e33706a2310ce9dc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/html-to-vdom/-/html-to-vdom-0.7.0.tgz","integrity":"sha512-k+d2qNkbx0JO00KezQsNcn6k2I/xSBP4yXYFLvXbcasTTDh+RDLUJS3puxqyNnpdyXWRHFGoKU7cRmby8/APcQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICd2xB92796hK/klrGkXJ2OkLp1d96p8vIOCxGqPDSImAiA80LFxBRNIkutEXw6E3DFPeJGLSow1XVg3Px84dkZfZw=="}]}}},"name":"html-to-vdom","time":{"modified":"2022-06-18T21:58:37.820Z","created":"2014-07-21T16:40:34.808Z","0.0.1":"2014-07-21T16:40:34.808Z","0.0.2":"2014-07-21T16:47:35.493Z","0.0.3":"2014-08-01T20:53:50.282Z","0.0.4":"2014-08-01T20:57:05.188Z","0.0.5":"2014-08-05T10:21:09.553Z","0.0.6":"2014-08-12T07:16:06.873Z","0.0.7":"2014-08-13T07:12:49.431Z","0.1.0":"2014-08-24T08:09:06.012Z","0.1.1":"2014-10-08T09:32:24.039Z","0.1.2":"2014-12-01T11:43:05.463Z","0.2.0":"2014-12-07T19:28:11.463Z","0.2.1":"2014-12-07T21:41:06.455Z","0.3.0":"2014-12-18T18:48:58.386Z","0.4.0":"2015-01-06T08:09:40.859Z","0.5.0":"2015-01-27T19:09:55.444Z","0.5.1":"2015-02-08T11:46:07.685Z","0.5.2":"2015-02-12T14:05:58.842Z","0.5.3":"2015-02-12T21:50:20.738Z","0.5.4":"2015-02-14T16:22:06.545Z","0.5.5":"2015-03-04T17:55:31.110Z","0.6.0":"2015-07-07T15:16:01.608Z","0.7.0":"2015-07-09T10:41:52.596Z"},"readmeFilename":"README.md","homepage":"https://github.com/TimBeyer/html-to-vdom"}