{"_id":"html-to-react","_rev":"67-007fc0b06aa3be0d0c26d6f59fdaac39","name":"html-to-react","time":{"modified":"2023-10-04T08:28:23.228Z","created":"2015-06-20T20:06:26.739Z","0.0.1":"2015-06-20T20:06:26.739Z","0.0.2":"2015-06-20T20:23:11.513Z","0.0.3":"2015-06-20T20:28:00.822Z","0.0.4":"2015-06-20T20:39:11.131Z","0.1.0":"2015-06-20T22:11:18.159Z","0.1.1":"2015-06-21T22:57:32.706Z","0.1.2":"2016-01-20T06:56:26.885Z","1.0.0":"2016-05-02T05:59:25.650Z","1.1.0":"2016-09-25T19:28:16.732Z","1.1.1":"2016-09-25T19:32:14.567Z","1.1.2":"2016-09-25T19:33:26.359Z","1.2.0":"2016-10-02T07:39:24.514Z","1.2.1":"2016-10-17T17:07:39.785Z","1.2.2":"2016-11-01T12:44:23.284Z","1.2.3":"2017-02-04T17:38:11.426Z","1.2.4-s":"2017-02-14T06:00:07.657Z","1.2.4":"2017-02-14T06:02:01.719Z","1.2.5":"2017-04-13T10:27:02.968Z","1.2.6":"2017-04-14T12:27:51.057Z","1.2.7":"2017-04-14T12:35:24.703Z","1.2.8":"2017-05-10T18:38:10.832Z","1.2.9":"2017-06-02T07:36:22.741Z","1.2.10":"2017-06-13T09:50:23.587Z","1.2.11":"2017-06-13T11:21:35.637Z","1.2.12":"2017-09-26T13:10:11.637Z","1.3.0":"2017-09-27T12:59:48.210Z","1.3.1":"2017-10-07T13:09:10.354Z","1.3.2":"2017-12-23T16:32:07.457Z","1.3.3":"2018-01-14T12:40:03.133Z","1.3.4":"2018-12-06T15:34:24.870Z","1.4.0":"2019-08-06T16:05:10.565Z","1.4.1":"2019-08-11T13:10:33.733Z","1.4.2":"2019-09-20T06:49:19.131Z","1.4.3":"2020-05-23T17:02:10.316Z","1.4.4":"2020-10-05T07:41:09.300Z","1.4.5":"2020-10-24T13:41:12.740Z","1.4.6":"2021-09-16T10:50:40.125Z","1.4.7":"2021-09-16T12:47:44.734Z","1.4.8":"2022-01-25T17:09:18.243Z","1.5.0":"2022-07-01T08:09:27.278Z","1.5.1":"2023-04-07T15:07:39.329Z","1.6.0":"2023-06-04T14:17:02.365Z","1.7.0":"2023-10-04T08:28:23.035Z"},"maintainers":[{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},{"name":"mikenikles","email":"mikenikles@gmail.com"},{"name":"arian.hosseinzadeh","email":"aryan.hosseinzadeh@gmail.com"}],"dist-tags":{"latest":"1.7.0"},"description":"A lightweight library that converts raw HTML to a React DOM structure.","readme":"# html-to-react\n\n[![Greenkeeper badge](https://badges.greenkeeper.io/aknuds1/html-to-react.svg)](https://greenkeeper.io/)\n[![Build Status](https://travis-ci.org/aknuds1/html-to-react.svg?branch=master)](https://travis-ci.org/aknuds1/html-to-react)\n[![npm version](https://badge.fury.io/js/html-to-react.svg)](http://badge.fury.io/js/html-to-react)\n[![Dependency Status](https://david-dm.org/aknuds1/html-to-react.svg)](https://david-dm.org/aknuds1/html-to-react)\n[![Coverage Status](https://coveralls.io/repos/aknuds1/html-to-react/badge.svg?branch=master)](https://coveralls.io/r/aknuds1/html-to-react?branch=master)\n[![npm](https://img.shields.io/npm/dm/html-to-react.svg?maxAge=2592000)](https://www.npmjs.com/package/html-to-react)\n\nA lightweight library that converts raw HTML to a React DOM structure.\n\n## Why?\nI had a scenario where an HTML template was generated by a different team, yet I wanted to leverage\nReact for the parts I did have control over. The template basically contains something like:\n\n```html\n<div class=\"row\">\n  <div class=\"col-sm-6\">\n    <div data-report-id=\"report-1\">\n      <!-- A React component for report-1 -->\n    </div>\n  </div>\n  <div class=\"col-sm-6\">\n    <div data-report-id=\"report-2\">\n      <!-- A React component for report-2 -->\n    </div>\n  </div>\n</div>\n```\n\nI had to replace each `<div>` that contains a `data-report-id` attribute with an actual report,\nwhich was nothing more than a React component.\n\nSimply replacing the `<div>` elements with a React component would end up with multiple top-level\nReact components that have no common parent.\n\nThe **html-to-react** module solves this problem by parsing each DOM element and converting it to a\nReact tree with one single parent.\n\n## Installation\n\n`$ npm install --save html-to-react`\n\n## Examples\n\n### Simple\n\nThe following example parses each node and its attributes and returns a tree of React elements.\n\n```javascript\nconst ReactDOMServer = require('react-dom/server');\nconst HtmlToReactParser = require('html-to-react').Parser;\n\nconst htmlInput = '<div><h1>Title</h1><p>A paragraph</p></div>';\nconst htmlToReactParser = new HtmlToReactParser();\nconst reactElement = htmlToReactParser.parse(htmlInput);\nconst reactHtml = ReactDOMServer.renderToStaticMarkup(reactElement);\n\nassert.equal(reactHtml, htmlInput); // true\n```\n\n### With Custom Processing Instructions\n\nIf certain DOM nodes require specific processing, for example if you want to capitalize each\n`<h1>` tag, the following example demonstrates this:\n\n```javascript\nconst ReactDOMServer = require('react-dom/server');\nconst HtmlToReact = require('html-to-react');\nconst HtmlToReactParser = require('html-to-react').Parser;\n\nconst htmlInput = '<div><h1>Title</h1><p>Paragraph</p><h1>Another title</h1></div>';\nconst htmlExpected = '<div><h1>TITLE</h1><p>Paragraph</p><h1>ANOTHER TITLE</h1></div>';\n\nconst isValidNode = function () {\n  return true;\n};\n\n// Order matters. Instructions are processed in the order they're defined\nconst processNodeDefinitions = new HtmlToReact.ProcessNodeDefinitions();\nconst processingInstructions = [\n  {\n    // Custom <h1> processing\n    shouldProcessNode: function (node) {\n      return node.parent && node.parent.name && node.parent.name === 'h1';\n    },\n    processNode: function (node, children) {\n      return node.data.toUpperCase();\n    }\n  },\n  {\n    // Anything else\n    shouldProcessNode: function (node) {\n      return true;\n    },\n    processNode: processNodeDefinitions.processDefaultNode\n  }\n];\nconst htmlToReactParser = new HtmlToReactParser();\nconst reactComponent = htmlToReactParser.parseWithInstructions(htmlInput, isValidNode,\n  processingInstructions);\nconst reactHtml = ReactDOMServer.renderToStaticMarkup(reactComponent);\nassert.equal(reactHtml, htmlExpected);\n```\n\n### Replace the Children of an Element\n\nThere may be a situation where you want to replace the children of an element with a React\ncomponent. This is beneficial if you want to:\n- a) Preserve the containing element\n- b) Not rely on any child node to insert your React component\n\n#### Example\n\nBelow is a simple template that could get loaded via ajax into your application\n\n##### Before\n```html\n<div class=\"row\">\n  <div class=\"col-sm-6\">\n    <div data-container=\"wysiwyg\">\n      <h1>Sample Heading</h1>\n      <p>Sample Text</p>\n    </div>\n  </div>\n</div>\n```\n\n##### After\n\nYou may want to extract the inner html from the `data-container` attribute, store it and then pass\nit as a prop to your injected `RichTextEditor`.\n\n```html\n<div class=\"row\">\n  <div class=\"col-sm-6\">\n    <div data-container=\"wysiwyg\">\n      <RichTextEditor html={\"<h1>Sample heading</h1><p>Sample Text</p>\"} />\n    </div>\n  </div>\n</div>\n```\n\n#### Setup\n\nIn your instructions object, you must specify `replaceChildren: true`.\n\n```javascript\nconst React = require('react');\nconst HtmlToReact = require('html-to-react');\nconst HtmlToReactParser = require('html-to-react').Parser;\n\nconst htmlToReactParser = new HtmlToReactParser();\nconst htmlInput = '<div><div data-test=\"foo\"><p>Text</p><p>Text</p></div></div>';\nconst htmlExpected = '<div><div data-test=\"foo\"><h1>Heading</h1></div></div>';\n\nconst isValidNode = function () {\n  return true;\n};\n\nconst processNodeDefinitions = new HtmlToReact.ProcessNodeDefinitions();\n\n// Order matters. Instructions are processed in\n// the order they're defined\nconst processingInstructions = [\n  {\n    // This is REQUIRED, it tells the parser\n    // that we want to insert our React\n    // component as a child\n    replaceChildren: true,\n    shouldProcessNode: function (node) {\n      return node.attribs && node.attribs['data-test'] === 'foo';\n    },\n    processNode: function (node, children, index) {\n      return React.createElement('h1', {key: index,}, 'Heading');\n    }\n  },\n  {\n    // Anything else\n    shouldProcessNode: function (node) {\n      return true;\n    },\n    processNode: processNodeDefinitions.processDefaultNode,\n  },\n];\n\nconst reactComponent = htmlToReactParser.parseWithInstructions(\n  htmlInput, isValidNode, processingInstructions);\nconst reactHtml = ReactDOMServer.renderToStaticMarkup(\n  reactComponent);\nassert.equal(reactHtml, htmlExpected);\n```\n\n### With Preprocessing Instructions\n\nThere may be situations where you want to preprocess nodes before rendering them, analogously\nto the custom processing instructions functionality. The rationale for supporting preprocessing\nhooks is generally that you might want to apply more general processing to nodes, before\napplying custom processing hooks to filtered sets of nodes. You could accomplish the same by\ncalling common functions from your custom processing hooks, but the preprocessing hooks\nAPI makes it more convenient.\n\n#### Example\n\nBelow is a simple template in which you may want to replace div IDs, via a preprocessing hook:\n\n```html\n<div class=\"row\">\n  <div id=\"first\" data-process=\"shared\">\n    <p>Sample For First</p>\n  </div>\n  <div id=\"second\" data-process=\"shared\">\n    <p>Sample For Second</p>\n  </div>\n</div>\n```\n\nWe want to process the above HTML into the following:\n\n```html\n<div class=\"row\">\n  <h1 id=\"preprocessed-first\">First</h1>\n  <h2 id=\"preprocessed-second\">Second</h2>\n</div>\n```\n\nWe can accomplish that with the following script, using a combination of preprocessing and\ncustom processing instructions:\n\n```javascript\nconst React = require('react');\nconst HtmlToReact = require('html-to-react');\nconst HtmlToReactParser = require('html-to-react').Parser;\n\nconst htmlToReactParser = new HtmlToReactParser();\nconst htmlInput = '<div class=\"row\">' +\n  '<div id=\"first\" data-process=\"shared\">' +\n    '<p>Sample For First</p>' +\n  '</div>' +\n  '<div id=\"second\" data-process=\"shared\">' +\n    '<p>Sample For Second</p>' +\n  '</div>' +\n'</div>';\n\nconst htmlExpected = '<div class=\"row\">' +\n  '<h1 id=\"preprocessed-first\">First</h1>' +\n  '<h2 id=\"preprocessed-second\">Second</h2>' +\n'</div>';\n\nconst isValidNode = function () {\n  return true;\n};\n\nconst preprocessingInstructions = [\n  {\n    shouldPreprocessNode: function (node) {\n      return node.attribs && node.attribs['data-process'] === 'shared';\n    },\n    preprocessNode: function (node) {\n      node.attribs = {id: `preprocessed-${node.attribs.id}`,};\n    },\n  }\n];\nconst processNodeDefinitions = new HtmlToReact.ProcessNodeDefinitions();\nconst processingInstructions = [\n  {\n    shouldProcessNode: function (node) {\n      return node.attribs && node.attribs.id === 'preprocessed-first';\n    },\n    processNode: function(node, children, index) {\n      return React.createElement('h1', {key: index, id: node.attribs.id,}, 'First');\n    },\n  },\n  {\n    shouldProcessNode: function (node) {\n      return node.attribs && node.attribs.id === 'preprocessed-second';\n    },\n    processNode: function (node, children, index) {\n      return React.createElement('h2', {key: index, id: node.attribs.id,}, 'Second');\n    },\n  },\n  {\n    shouldProcessNode: function (node) {\n      return true;\n    },\n    processNode: processNodeDefinitions.processDefaultNode,\n  },\n];\n\nconst reactComponent = parser.parseWithInstructions(htmlInput, isValidNode, processingInstructions,\n  preprocessingInstructions);\nconst reactHtml = ReactDOMServer.renderToStaticMarkup(reactComponent);\nassert.equal(reactHtml, htmlExpected);\n```\n\n## Tests & Coverage\n\nTest locally: `$ npm test`\n\nTest with coverage and report coverage to Coveralls: `$ npm run test-coverage`\n\nTest with coverage and open HTML report: `$ npm run test-html-coverage`\n","versions":{"0.0.2":{"name":"html-to-react","version":"0.0.2","description":"A lightweight library that converts raw HTML to a React DOM structure.","main":"index.js","scripts":{"test":"./node_modules/mocha/bin/mocha"},"repository":{"type":"git","url":"https://github.com/mikenikles/html2react.git"},"keywords":["react","react-component","html"],"author":{"name":"Mike Nikles"},"license":"MIT","bugs":{"url":"https://github.com/mikenikles/html2react/issues"},"homepage":"https://github.com/mikenikles/html2react","dependencies":{"htmlparser2":"^3.8.3","lodash":"^3.9.3","react":"^0.13.3"},"devDependencies":{"mocha":"^2.2.5"},"gitHead":"4660939f0f006f562162dcd6e3e4bc9356a94090","_id":"html-to-react@0.0.2","_shasum":"b8ed00da88aee2bde37610d378768c3de51bb1cf","_from":".","_npmVersion":"2.7.3","_nodeVersion":"0.10.26","_npmUser":{"name":"mikenikles","email":"mike@vanniksoftware.com"},"dist":{"shasum":"b8ed00da88aee2bde37610d378768c3de51bb1cf","tarball":"https://registry.npmjs.org/html-to-react/-/html-to-react-0.0.2.tgz","integrity":"sha512-PAygJ2hKkfhlxNfIbpDJJ2+p1jeBNf9fW0HrzkeCSNOp4g5AvqcrhH3pbOMTdnXNMYT2COP/Hcz7eui7YhWJtQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCeXe+xe6/FFDaBk0ViYsInvLY0EF6ays9C/a7lGWFEhQIgBjbzcpWbo7aTO8s05OIAdktLc4jJy/+zHc4hAGUXz4c="}]},"maintainers":[{"name":"mikenikles","email":"mike@vanniksoftware.com"}],"directories":{}},"0.0.3":{"name":"html-to-react","version":"0.0.3","description":"A lightweight library that converts raw HTML to a React DOM structure.","main":"index.js","scripts":{"test":"./node_modules/mocha/bin/mocha"},"repository":{"type":"git","url":"https://github.com/mikenikles/html2react.git"},"keywords":["react","react-component","html"],"author":{"name":"Mike Nikles"},"license":"MIT","bugs":{"url":"https://github.com/mikenikles/html2react/issues"},"homepage":"https://github.com/mikenikles/html2react","dependencies":{"htmlparser2":"^3.8.3","lodash":"^3.9.3","react":"^0.13.3"},"devDependencies":{"mocha":"^2.2.5"},"gitHead":"4a996954fcde78969189fb347fc7d449ac18d8d5","_id":"html-to-react@0.0.3","_shasum":"a949fba6943cd59dae73958d60b89217682cc3e2","_from":".","_npmVersion":"2.7.3","_nodeVersion":"0.10.26","_npmUser":{"name":"mikenikles","email":"mike@vanniksoftware.com"},"dist":{"shasum":"a949fba6943cd59dae73958d60b89217682cc3e2","tarball":"https://registry.npmjs.org/html-to-react/-/html-to-react-0.0.3.tgz","integrity":"sha512-SxKA/KtQH37/dgWGQDU4haClMZG0bxEhtkm+xE8I3CEJ03T8HAfbJIp7F2yJv+rkWJL+8GfOrM64IIFOLoFAAg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBaqak5F36mxt5k5CTjVjq9HSe5l+kJNKuD9xPC2D564AiEA7M1ww4mh2BCE5klHQSi1ZzBXC1CCyHDfosSA5BaoMaw="}]},"maintainers":[{"name":"mikenikles","email":"mike@vanniksoftware.com"}],"directories":{}},"0.0.4":{"name":"html-to-react","version":"0.0.4","description":"A lightweight library that converts raw HTML to a React DOM structure.","main":"index.js","scripts":{"test":"./node_modules/mocha/bin/mocha"},"repository":{"type":"git","url":"https://github.com/mikenikles/html-to-react.git"},"keywords":["react","react-component","html"],"author":{"name":"Mike Nikles"},"license":"MIT","bugs":{"url":"https://github.com/mikenikles/html-to-react/issues"},"homepage":"https://github.com/mikenikles/html-to-react","dependencies":{"htmlparser2":"^3.8.3","lodash":"^3.9.3","react":"^0.13.3"},"devDependencies":{"mocha":"^2.2.5"},"gitHead":"e584eb3cd0bb95ada47857209a14ff25d3628240","_id":"html-to-react@0.0.4","_shasum":"fd51942190d4dc5333c7c974bf0a738414460532","_from":".","_npmVersion":"2.7.3","_nodeVersion":"0.10.26","_npmUser":{"name":"mikenikles","email":"mike@vanniksoftware.com"},"dist":{"shasum":"fd51942190d4dc5333c7c974bf0a738414460532","tarball":"https://registry.npmjs.org/html-to-react/-/html-to-react-0.0.4.tgz","integrity":"sha512-13ymAvQRjCX6tYT40j2AdZDe/LJs9jiJIvxXkB+VZaT6pJ+Cnl/dBuXFnx4oQ4D6THoKni0N9mVyzcUEiNr9TA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCqr+AzwICkx81senCB87l/imzSUxUijlwl7JpiETOVfAIgT2qp6+vMcjWwA3ADZxZ0XcD5Jneda2pjnbH9w8iUgDk="}]},"maintainers":[{"name":"mikenikles","email":"mike@vanniksoftware.com"}],"directories":{}},"0.1.0":{"name":"html-to-react","version":"0.1.0","description":"A lightweight library that converts raw HTML to a React DOM structure.","main":"index.js","scripts":{"test":"./node_modules/mocha/bin/mocha"},"repository":{"type":"git","url":"https://github.com/mikenikles/html-to-react.git"},"keywords":["react","react-component","html"],"author":{"name":"Mike Nikles"},"license":"MIT","bugs":{"url":"https://github.com/mikenikles/html-to-react/issues"},"homepage":"https://github.com/mikenikles/html-to-react","dependencies":{"htmlparser2":"^3.8.3","lodash":"^3.9.3","react":"^0.13.3"},"devDependencies":{"mocha":"^2.2.5"},"gitHead":"19ed0887daf022810653ffb7f1485a4a9c965fda","_id":"html-to-react@0.1.0","_shasum":"e8231b3d4c31bf474f41095e830c7d73f66a4219","_from":".","_npmVersion":"2.7.3","_nodeVersion":"0.10.26","_npmUser":{"name":"mikenikles","email":"mike@vanniksoftware.com"},"dist":{"shasum":"e8231b3d4c31bf474f41095e830c7d73f66a4219","tarball":"https://registry.npmjs.org/html-to-react/-/html-to-react-0.1.0.tgz","integrity":"sha512-nJGUr4Q+Hj3LVZP7YyceNJAz+IBhviwIXxJTKaKoP9XHoQjPYaiKwtTTouZ0reJ19Pw7KlI4OTyODmxyIWMF7g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIG9Sj6Ejq4wsSeK3nJwrv6lgCoKzzPLzGwc+CspLTne5AiBfphLcXnr/djmvtcz1INlE7y3o3rXzzVsTIwye33R6GA=="}]},"maintainers":[{"name":"mikenikles","email":"mike@vanniksoftware.com"},{"name":"arian.hosseinzadeh","email":"aryan.hosseinzadeh@gmail.com"}],"directories":{}},"0.1.1":{"name":"html-to-react","version":"0.1.1","description":"A lightweight library that converts raw HTML to a React DOM structure.","main":"index.js","scripts":{"test":"./node_modules/mocha/bin/mocha --require blanket --reporter mocha-lcov-reporter | ./node_modules/coveralls/bin/coveralls.js","test-locally":"./node_modules/mocha/bin/mocha","test-html-coverage":"rm coverage.html; ./node_modules/mocha/bin/mocha --require blanket -R html-cov > coverage.html; open coverage.html"},"repository":{"type":"git","url":"https://github.com/mikenikles/html-to-react.git"},"keywords":["react","react-component","html"],"author":{"name":"Mike Nikles"},"license":"MIT","bugs":{"url":"https://github.com/mikenikles/html-to-react/issues"},"homepage":"https://github.com/mikenikles/html-to-react","config":{"blanket":{"pattern":[""],"data-cover-never":["node_modules","test"]}},"dependencies":{"htmlparser2":"^3.8.3","lodash":"^3.9.3","react":"^0.13.3"},"devDependencies":{"blanket":"^1.1.7","coveralls":"^2.11.2","mocha":"^2.2.5","mocha-lcov-reporter":"0.0.2"},"gitHead":"5c5c35fc93347fd76de066f163dabf06dbe38976","_id":"html-to-react@0.1.1","_shasum":"3d99985267fb153fe71747475937a2e434a702e2","_from":".","_npmVersion":"2.7.3","_nodeVersion":"0.10.26","_npmUser":{"name":"mikenikles","email":"mike@vanniksoftware.com"},"dist":{"shasum":"3d99985267fb153fe71747475937a2e434a702e2","tarball":"https://registry.npmjs.org/html-to-react/-/html-to-react-0.1.1.tgz","integrity":"sha512-vM/UF0vfHkocDo3x4YYTROoU2JosA0CQI/EIDe1si9h0MMLn/VJa6TmyD2IznS8JKzFyvvrdlL1xKWUJW6mORQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC7bQ+5Pjv9hfzByHRzW8AWmSi2oHS0komM8Z7+4JuFnwIhALYscQV6rnXVpB3q1uoqs1jkKxDvcNzq0akwJKuWlJAB"}]},"maintainers":[{"name":"mikenikles","email":"mike@vanniksoftware.com"},{"name":"arian.hosseinzadeh","email":"aryan.hosseinzadeh@gmail.com"}],"directories":{}},"0.1.2":{"name":"html-to-react","version":"0.1.2","description":"A lightweight library that converts raw HTML to a React DOM structure.","main":"index.js","scripts":{"test":"./node_modules/mocha/bin/mocha --require blanket --reporter mocha-lcov-reporter | ./node_modules/coveralls/bin/coveralls.js","test-locally":"./node_modules/mocha/bin/mocha","test-html-coverage":"rm coverage.html; ./node_modules/mocha/bin/mocha --require blanket -R html-cov > coverage.html; open coverage.html"},"repository":{"type":"git","url":"git+https://github.com/mikenikles/html-to-react.git"},"keywords":["react","react-component","html"],"author":{"name":"Mike Nikles"},"license":"MIT","bugs":{"url":"https://github.com/mikenikles/html-to-react/issues"},"homepage":"https://github.com/mikenikles/html-to-react","config":{"blanket":{"pattern":[""],"data-cover-never":["node_modules","test"]}},"dependencies":{"htmlparser2":"^3.8.3","lodash":"^3.9.3","react":"^0.13.3"},"devDependencies":{"blanket":"1.1.7","coveralls":"^2.11.2","mocha":"^2.2.5","mocha-lcov-reporter":"0.0.2"},"gitHead":"55cbfb7797bf76e033032fa8faac3fc345553db9","_id":"html-to-react@0.1.2","_shasum":"ed58e81998e9957d7f7e3c289118265d9b46e676","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"mikenikles","email":"mike@esladvice.com"},"dist":{"shasum":"ed58e81998e9957d7f7e3c289118265d9b46e676","tarball":"https://registry.npmjs.org/html-to-react/-/html-to-react-0.1.2.tgz","integrity":"sha512-Ygd02K4SwasIcTkHNVoDOH2vQqxULW6P7Q+kjM47oWNnsJ46RjPGiYGE18ytqCxhVmXPy9W1mZstjTw/EgsfGg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDERqymW66DNwJPxWMB1gkZJMzkQcCH6QXQ4mea77Dn5AIgZnPZO0pQbcbdXKabGbFpp5KwUZGoCzrLCTuiVrRNoes="}]},"maintainers":[{"name":"mikenikles","email":"mike@vanniksoftware.com"},{"name":"arian.hosseinzadeh","email":"aryan.hosseinzadeh@gmail.com"}],"directories":{}},"1.0.0":{"name":"html-to-react","version":"1.0.0","description":"A lightweight library that converts raw HTML to a React DOM structure.","main":"index.js","scripts":{"test":"istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage","test-html-coverage":"istanbul cover ./node_modules/mocha/bin/_mocha; open coverage/lcov-report/index.html"},"repository":{"type":"git","url":"https://github.com/mikenikles/html-to-react.git"},"keywords":["react","react-component","html"],"author":{"name":"Mike Nikles"},"license":"MIT","bugs":{"url":"https://github.com/mikenikles/html-to-react/issues"},"homepage":"https://github.com/mikenikles/html-to-react","config":{"blanket":{"pattern":[""],"data-cover-never":["node_modules","test"]}},"dependencies":{"ent":"^2.2.0","htmlparser2":"^3.8.3","lodash.camelcase":"^4.1.0","lodash.compact":"^3.0.1","lodash.find":"^4.3.0","lodash.foreach":"^4.2.0","lodash.includes":"^4.1.2","lodash.map":"^4.3.0"},"devDependencies":{"coveralls":"2.11.9","istanbul":"0.4.3","lodash":"^4.11.1","mocha":"2.4.5","mocha-lcov-reporter":"1.2.0","react":"^0.14.7","react-dom":"^0.14.7"},"gitHead":"f9f4ccaadc24867aca76a1575099abdfd10ac702","_id":"html-to-react@1.0.0","_shasum":"d2cc471e2912cbfd8b4be7cd2ad074024e0c02cd","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.2.0","_npmUser":{"name":"mikenikles","email":"mike@esladvice.com"},"dist":{"shasum":"d2cc471e2912cbfd8b4be7cd2ad074024e0c02cd","tarball":"https://registry.npmjs.org/html-to-react/-/html-to-react-1.0.0.tgz","integrity":"sha512-DyCYBvnnpfaoFApk5CCHSjFbbP7pKMM3kQ7UZe+cMTywoYeu6dBHmnx1JQL8lP/9L/oUiZ55cBJLZJlctJTCrg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDW9sq13xYAXi8mnrdH2MKrDNmG25OA5Rzr2pvKYmi40QIgYp+ztjJNUMTVviJdxjyfEDeRsHNGORH8mCgOOkWsXj4="}]},"maintainers":[{"name":"mikenikles","email":"mike@vanniksoftware.com"},{"name":"arian.hosseinzadeh","email":"aryan.hosseinzadeh@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/html-to-react-1.0.0.tgz_1462168763393_0.938415507087484"},"directories":{}},"1.1.0":{"name":"html-to-react","version":"1.1.0","description":"A lightweight library that converts raw HTML to a React DOM structure.","main":"index.js","scripts":{"test":"./node_modules/mocha/bin/mocha","test-coverage":"istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage","test-html-coverage":"istanbul cover ./node_modules/mocha/bin/_mocha; open coverage/lcov-report/index.html"},"repository":{"type":"git","url":"git+https://github.com/aknuds1/html-to-react.git"},"keywords":["react","react-component","html"],"author":{"name":"Arve Knudsen, Mike Nikles"},"license":"MIT","bugs":{"url":"https://github.com/aknuds1/html-to-react/issues"},"homepage":"https://github.com/aknuds1/html-to-react","config":{"blanket":{"pattern":[""],"data-cover-never":["node_modules","test"]}},"dependencies":{"ent":"^2.2.0","htmlparser2":"^3.8.3","lodash.camelcase":"^4.3.0","lodash.find":"^4.6.0","lodash.frompairs":"^4.0.1","lodash.includes":"^4.3.0","lodash.isempty":"^4.4.0","lodash.map":"^4.6.0","lodash.merge":"^4.6.0"},"peerDependencies":{"react":"^15.0"},"devDependencies":{"coveralls":"^2.11","istanbul":"^0.4","mocha":"^3.0","mocha-lcov-reporter":"^1.2.0","ramda":"^0.22.1","react":"^15.0","react-dom":"^15.0"},"_id":"html-to-react@1.1.0","_shasum":"6c81516e8bf92b81be8e9c6cc626945bf73820d9","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.6.0","_npmUser":{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},"dist":{"shasum":"6c81516e8bf92b81be8e9c6cc626945bf73820d9","tarball":"https://registry.npmjs.org/html-to-react/-/html-to-react-1.1.0.tgz","integrity":"sha512-el6T4Dpme5QYhnrz4cJjexLUxdYmPm0QHAGaHmYO+bagK5OlsWmFCZWjJJXwKs2eX/aztm7aGqAtAdRKfRSPVQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFvNP+qZjZmxOur0VkTdRbXXcxrTdYKi6kz4dGfo5a+JAiBXW5Ezfu4tqfIrPqpuFiZC7Gp8rxw9SWQ87IIyh8zynA=="}]},"maintainers":[{"name":"arian.hosseinzadeh","email":"aryan.hosseinzadeh@gmail.com"},{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},{"name":"mikenikles","email":"mike@esladvice.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/html-to-react-1.1.0.tgz_1474831694711_0.8095356356352568"},"directories":{}},"1.1.1":{"name":"html-to-react","version":"1.1.1","description":"A lightweight library that converts raw HTML to a React DOM structure.","main":"index.js","scripts":{"test":"./node_modules/mocha/bin/mocha","test-coverage":"istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage","test-html-coverage":"istanbul cover ./node_modules/mocha/bin/_mocha; open coverage/lcov-report/index.html"},"repository":{"type":"git","url":"git+https://github.com/aknuds1/html-to-react.git"},"keywords":["react","react-component","html"],"author":{"name":"Arve Knudsen, Mike Nikles"},"license":"MIT","bugs":{"url":"https://github.com/aknuds1/html-to-react/issues"},"homepage":"https://github.com/aknuds1/html-to-react","config":{"blanket":{"pattern":[""],"data-cover-never":["node_modules","test"]}},"dependencies":{"ent":"^2.2.0","htmlparser2":"^3.8.3","ramda":"^0.22.0","underscore.string.fp":"^1.0.4"},"peerDependencies":{"react":"^15.0"},"devDependencies":{"coveralls":"^2.11","istanbul":"^0.4","mocha":"^3.0","mocha-lcov-reporter":"^1.2.0","react":"^15.0","react-dom":"^15.0"},"_id":"html-to-react@1.1.1","_shasum":"b58dbb1e4384fc813d8d46722f086ff3f6979ae5","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.6.0","_npmUser":{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},"dist":{"shasum":"b58dbb1e4384fc813d8d46722f086ff3f6979ae5","tarball":"https://registry.npmjs.org/html-to-react/-/html-to-react-1.1.1.tgz","integrity":"sha512-7/ChhqmjsIDcMmnES1rcOXgzHKX1XhPVWJuKbh6gSMG3UFiK4q4XNpE8sEYcF/ApmgP80f3N5cjMwkYegh1I6w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFC7K/73i/XlQ4ti2w6d6sB1k438pz7qsaP5ViMs8vKuAiEA15rbVuTgkpkR0U3TfJJ085wQtwfsrEMVai8LcPh2ARw="}]},"maintainers":[{"name":"arian.hosseinzadeh","email":"aryan.hosseinzadeh@gmail.com"},{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},{"name":"mikenikles","email":"mike@esladvice.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/html-to-react-1.1.1.tgz_1474831933321_0.7303616583812982"},"directories":{}},"1.1.2":{"name":"html-to-react","version":"1.1.2","description":"A lightweight library that converts raw HTML to a React DOM structure.","main":"index.js","scripts":{"test":"./node_modules/mocha/bin/mocha","test-coverage":"istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage","test-html-coverage":"istanbul cover ./node_modules/mocha/bin/_mocha; open coverage/lcov-report/index.html"},"repository":{"type":"git","url":"git+https://github.com/aknuds1/html-to-react.git"},"keywords":["react","react-component","html"],"author":{"name":"Arve Knudsen, Mike Nikles"},"license":"MIT","bugs":{"url":"https://github.com/aknuds1/html-to-react/issues"},"homepage":"https://github.com/aknuds1/html-to-react","config":{"blanket":{"pattern":[""],"data-cover-never":["node_modules","test"]}},"dependencies":{"ent":"^2.2.0","htmlparser2":"^3.8.3","lodash.camelcase":"^4.3.0","lodash.find":"^4.6.0","lodash.frompairs":"^4.0.1","lodash.includes":"^4.3.0","lodash.isempty":"^4.4.0","lodash.map":"^4.6.0","lodash.merge":"^4.6.0"},"peerDependencies":{"react":"^15.0"},"devDependencies":{"coveralls":"^2.11","istanbul":"^0.4","mocha":"^3.0","mocha-lcov-reporter":"^1.2.0","ramda":"^0.22.1","react":"^15.0","react-dom":"^15.0"},"_id":"html-to-react@1.1.2","_shasum":"601c64761ea0ad3a0d533347c70818d4024e6a7d","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.6.0","_npmUser":{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},"dist":{"shasum":"601c64761ea0ad3a0d533347c70818d4024e6a7d","tarball":"https://registry.npmjs.org/html-to-react/-/html-to-react-1.1.2.tgz","integrity":"sha512-MjPKswAH5MAqqX8M+uz9dF87myjydTmWpM+RkKWYGo+bDvZYH4uH/RFUVAhh3PGLl9yQPh5F4H5XzagdEIrh5A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCaW54fZyuak79V17uKJe4RyZkQy6QJLtKbsAw9GQZMnwIgQnqi1emh8RV4txS1zMkmAaUtf22u4fsqlhKRJBafVB0="}]},"maintainers":[{"name":"arian.hosseinzadeh","email":"aryan.hosseinzadeh@gmail.com"},{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},{"name":"mikenikles","email":"mike@esladvice.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/html-to-react-1.1.2.tgz_1474832004558_0.9396368572488427"},"directories":{}},"1.2.0":{"name":"html-to-react","version":"1.2.0","description":"A lightweight library that converts raw HTML to a React DOM structure.","main":"index.js","scripts":{"test":"./node_modules/mocha/bin/mocha","test-coverage":"istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage","test-html-coverage":"istanbul cover ./node_modules/mocha/bin/_mocha; open coverage/lcov-report/index.html"},"repository":{"type":"git","url":"git+https://github.com/aknuds1/html-to-react.git"},"keywords":["react","react-component","html"],"author":{"name":"Arve Knudsen, Mike Nikles"},"license":"MIT","bugs":{"url":"https://github.com/aknuds1/html-to-react/issues"},"homepage":"https://github.com/aknuds1/html-to-react","config":{"blanket":{"pattern":[""],"data-cover-never":["node_modules","test"]}},"dependencies":{"ent":"^2.2.0","htmlparser2":"^3.8.3","lodash.camelcase":"^4.3.0","lodash.find":"^4.6.0","lodash.foreach":"^4.5.0","lodash.frompairs":"^4.0.1","lodash.includes":"^4.3.0","lodash.isempty":"^4.4.0","lodash.map":"^4.6.0","lodash.merge":"^4.6.0"},"peerDependencies":{"react":"^15.0"},"devDependencies":{"coveralls":"^2.11","istanbul":"^0.4","mocha":"^3.0","mocha-lcov-reporter":"^1.2.0","ramda":"^0.22.1","react":"^15.0","react-dom":"^15.0"},"_id":"html-to-react@1.2.0","_shasum":"9bd764d3cbc3fc2cc5b5970cea1c685e804d36bf","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.6.0","_npmUser":{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},"dist":{"shasum":"9bd764d3cbc3fc2cc5b5970cea1c685e804d36bf","tarball":"https://registry.npmjs.org/html-to-react/-/html-to-react-1.2.0.tgz","integrity":"sha512-ceDUhUlx7wFAr8rQOmSpOXnHC7z/26CgS+PSzGf2FUsDauNqY80AS1rqEyJ6PGZ6kH53dUDl9Qx3HpMpcBYr6A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDppSavNXY8PkIsTfWtP1wj33ttuPe4QanFhpEwBaE8ogIhAJNNeCb3EpzZ7XsbxD+bIZpHxM4poVpOEjL7sr8GNiaS"}]},"maintainers":[{"name":"arian.hosseinzadeh","email":"aryan.hosseinzadeh@gmail.com"},{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},{"name":"mikenikles","email":"mike@esladvice.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/html-to-react-1.2.0.tgz_1475393963105_0.8994914251379669"},"directories":{}},"1.2.1":{"name":"html-to-react","version":"1.2.1","description":"A lightweight library that converts raw HTML to a React DOM structure.","main":"index.js","scripts":{"test":"eslint . && ./node_modules/mocha/bin/mocha","test-coverage":"eslint . && istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage","test-html-coverage":"eslint . && istanbul cover ./node_modules/mocha/bin/_mocha; open coverage/lcov-report/index.html"},"repository":{"type":"git","url":"git+https://github.com/aknuds1/html-to-react.git"},"keywords":["react","react-component","html"],"author":{"name":"Arve Knudsen, Mike Nikles"},"license":"MIT","bugs":{"url":"https://github.com/aknuds1/html-to-react/issues"},"homepage":"https://github.com/aknuds1/html-to-react","config":{"blanket":{"pattern":[""],"data-cover-never":["node_modules","test"]}},"dependencies":{"ent":"^2.2.0","htmlparser2":"^3.8.3","ramda":"^0.22.0","underscore.string.fp":"^1.0.4"},"peerDependencies":{"react":"^15.0"},"devDependencies":{"coveralls":"^2.11","eslint":"^3.7.0","istanbul":"^0.4","mocha":"^3.0","mocha-lcov-reporter":"^1.2.0","react":"^15.0","react-dom":"^15.0"},"gitHead":"773227616ce48102413d57dcd424330f785f8a0d","_id":"html-to-react@1.2.1","_shasum":"7a7009b39ef2e69b9a02fa05a16e45c0efe23f55","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.1","_npmUser":{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},"dist":{"shasum":"7a7009b39ef2e69b9a02fa05a16e45c0efe23f55","tarball":"https://registry.npmjs.org/html-to-react/-/html-to-react-1.2.1.tgz","integrity":"sha512-1mZSG/ccgSesOfV7XU++QWsDSZ+7goO8gbWV+Y0E2xcigaIWfyv3NZROTlPjIc3dOcmC6pKMFBepOHUg/1Pfdw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHq0zSy5sptYo20QVv4dzCiRnE4E2X6ZchIXVEpYZV7lAiBjev5xJeZ5AVi9LYjvoSB412VFin4w94b9zQXWYSAZ+g=="}]},"maintainers":[{"name":"arian.hosseinzadeh","email":"aryan.hosseinzadeh@gmail.com"},{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},{"name":"mikenikles","email":"mike@esladvice.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/html-to-react-1.2.1.tgz_1476724057839_0.2252780965063721"},"directories":{}},"1.2.2":{"name":"html-to-react","version":"1.2.2","description":"A lightweight library that converts raw HTML to a React DOM structure.","main":"index.js","scripts":{"test":"eslint . && ./node_modules/mocha/bin/mocha","test-coverage":"eslint . && istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage","test-html-coverage":"eslint . && istanbul cover ./node_modules/mocha/bin/_mocha; open coverage/lcov-report/index.html"},"repository":{"type":"git","url":"git+https://github.com/aknuds1/html-to-react.git"},"keywords":["react","react-component","html"],"author":{"name":"Arve Knudsen, Mike Nikles"},"license":"MIT","bugs":{"url":"https://github.com/aknuds1/html-to-react/issues"},"homepage":"https://github.com/aknuds1/html-to-react","config":{"blanket":{"pattern":[""],"data-cover-never":["node_modules","test"]}},"dependencies":{"ent":"^2.2.0","htmlparser2":"^3.8.3","ramda":"^0.22.0","underscore.string.fp":"^1.0.4"},"peerDependencies":{"react":"^15.0"},"devDependencies":{"coveralls":"^2.11","eslint":"^3.7.0","istanbul":"^0.4","mocha":"^3.0","mocha-lcov-reporter":"^1.2.0","react":"^15.0","react-dom":"^15.0"},"gitHead":"b6d7b59b267e174fc7da7cb32650afe9f8071449","_id":"html-to-react@1.2.2","_shasum":"39f4b027d1a77820ba5a2185624d9e14d0c16500","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},"dist":{"shasum":"39f4b027d1a77820ba5a2185624d9e14d0c16500","tarball":"https://registry.npmjs.org/html-to-react/-/html-to-react-1.2.2.tgz","integrity":"sha512-4k0p8vLQeLZV+867DBQQkwK/dvTG0ymRvo3pCwuQoFggkuFJ0JgM77PTkfolz/3Ihx/tNXOjYAoDvg0+t8q7sQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFpbMkcVNfNo1Cnzn8KEAwP0Zs7IObnZ2d13RWZEAXC+AiBSp7Vg5YCeLoslYCkbxgJNcQ9C3wXPcHg2SmdRmM82Fg=="}]},"maintainers":[{"name":"arian.hosseinzadeh","email":"aryan.hosseinzadeh@gmail.com"},{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},{"name":"mikenikles","email":"mike@esladvice.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/html-to-react-1.2.2.tgz_1478004262638_0.4972572571132332"},"directories":{}},"1.2.3":{"name":"html-to-react","version":"1.2.3","description":"A lightweight library that converts raw HTML to a React DOM structure.","main":"index.js","scripts":{"test":"eslint . && ./node_modules/mocha/bin/mocha","test-coverage":"eslint . && istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage","test-html-coverage":"eslint . && istanbul cover ./node_modules/mocha/bin/_mocha; open coverage/lcov-report/index.html"},"repository":{"type":"git","url":"git+https://github.com/aknuds1/html-to-react.git"},"keywords":["react","react-component","html"],"author":{"name":"Arve Knudsen, Mike Nikles"},"license":"MIT","bugs":{"url":"https://github.com/aknuds1/html-to-react/issues"},"homepage":"https://github.com/aknuds1/html-to-react","config":{"blanket":{"pattern":[""],"data-cover-never":["node_modules","test"]}},"dependencies":{"ent":"^2.2.0","htmlparser2":"^3.8.3","ramda":"^0.23.0","underscore.string.fp":"^1.0.4"},"peerDependencies":{"react":"^15.0"},"devDependencies":{"coveralls":"^2.11","eslint":"^3.7.0","istanbul":"^0.4","mocha":"^3.0","mocha-lcov-reporter":"^1.2.0","react":"^15.0","react-dom":"^15.0"},"gitHead":"37e76e2275e48a6d3259a8ff7dade3dda619ea4a","_id":"html-to-react@1.2.3","_shasum":"7378cb0f56a5475601847c2fa7ae8434b8ddee2d","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},"dist":{"shasum":"7378cb0f56a5475601847c2fa7ae8434b8ddee2d","tarball":"https://registry.npmjs.org/html-to-react/-/html-to-react-1.2.3.tgz","integrity":"sha512-MKzHQE1axhMnw7FxPpA+GzSilLUQt7pMOXsHtApefiwHiEEL/KcJVveUWDl2G36Hqh+LeLlqaMwU0tqFT/zvTQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDcYZyiL5AwTDRb+BJpMgTmAhM/J/Oe8vGbndZLRKf63AiBhZuDAuXfUVFWTO9Osq8qkKyAshzTTv+dVVDoxcjAEhg=="}]},"maintainers":[{"name":"arian.hosseinzadeh","email":"aryan.hosseinzadeh@gmail.com"},{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},{"name":"mikenikles","email":"mike@esladvice.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/html-to-react-1.2.3.tgz_1486229890681_0.9451481581199914"},"directories":{}},"1.2.4-s":{"name":"html-to-react","version":"1.2.4-s","description":"A lightweight library that converts raw HTML to a React DOM structure.","main":"index.js","scripts":{"test":"eslint . && ./node_modules/mocha/bin/mocha","test-coverage":"eslint . && istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage","test-html-coverage":"eslint . && istanbul cover ./node_modules/mocha/bin/_mocha; open coverage/lcov-report/index.html"},"repository":{"type":"git","url":"git+https://github.com/aknuds1/html-to-react.git"},"keywords":["react","react-component","html"],"author":{"name":"Arve Knudsen, Mike Nikles"},"license":"MIT","bugs":{"url":"https://github.com/aknuds1/html-to-react/issues"},"homepage":"https://github.com/aknuds1/html-to-react","config":{"blanket":{"pattern":[""],"data-cover-never":["node_modules","test"]}},"dependencies":{"ent":"^2.2.0","htmlparser2":"^3.8.3","ramda":"^0.23.0","underscore.string.fp":"^1.0.4"},"peerDependencies":{"react":"^15.0"},"devDependencies":{"coveralls":"^2.11","eslint":"^3.7.0","istanbul":"^0.4","mocha":"^3.0","mocha-lcov-reporter":"^1.2.0","react":"^15.0","react-dom":"^15.0"},"gitHead":"716e4cb50cb6fb16d2cfc9a8b8f58962608c79fe","_id":"html-to-react@1.2.4-s","_shasum":"8c320d7509c3b46f7d571f0af1d479461e34f7e8","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.5.0","_npmUser":{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},"dist":{"shasum":"8c320d7509c3b46f7d571f0af1d479461e34f7e8","tarball":"https://registry.npmjs.org/html-to-react/-/html-to-react-1.2.4-s.tgz","integrity":"sha512-75uwQU1nNdMysVwLBrQQHqTl2TVAk6/z6B3aXuRIJDIcaMGsl2SKLbAAVdx10qLGwf2fhNCvH5UaXCYRhCaWHg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDtUPJ9vmK8je7Nn7/1B7RijYAkcTwXuWd3DD2lNSulWwIgDPZKM1vJ+CcvH7okNtd95myIR0Qkpf2LLC8dG+Ddt3w="}]},"maintainers":[{"name":"arian.hosseinzadeh","email":"aryan.hosseinzadeh@gmail.com"},{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},{"name":"mikenikles","email":"mike@esladvice.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/html-to-react-1.2.4-s.tgz_1487052007011_0.8311794577166438"},"directories":{}},"1.2.4":{"name":"html-to-react","version":"1.2.4","description":"A lightweight library that converts raw HTML to a React DOM structure.","main":"index.js","scripts":{"test":"eslint . && ./node_modules/mocha/bin/mocha","test-coverage":"eslint . && istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage","test-html-coverage":"eslint . && istanbul cover ./node_modules/mocha/bin/_mocha; open coverage/lcov-report/index.html"},"repository":{"type":"git","url":"git+https://github.com/aknuds1/html-to-react.git"},"keywords":["react","react-component","html"],"author":{"name":"Arve Knudsen, Mike Nikles"},"license":"MIT","bugs":{"url":"https://github.com/aknuds1/html-to-react/issues"},"homepage":"https://github.com/aknuds1/html-to-react","config":{"blanket":{"pattern":[""],"data-cover-never":["node_modules","test"]}},"dependencies":{"ent":"^2.2.0","htmlparser2":"^3.8.3","ramda":"^0.23.0","underscore.string.fp":"^1.0.4"},"peerDependencies":{"react":"^15.0"},"devDependencies":{"coveralls":"^2.11","eslint":"^3.7.0","istanbul":"^0.4","mocha":"^3.0","mocha-lcov-reporter":"^1.2.0","react":"^15.0","react-dom":"^15.0"},"gitHead":"f23b896a8b9f36499aa9e4d94a269068e8c01069","_id":"html-to-react@1.2.4","_shasum":"89fd8370df47849be076e6ac3fdb9fae6058f153","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.5.0","_npmUser":{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},"dist":{"shasum":"89fd8370df47849be076e6ac3fdb9fae6058f153","tarball":"https://registry.npmjs.org/html-to-react/-/html-to-react-1.2.4.tgz","integrity":"sha512-Vt+6OR304EhVtiCcu+tQJzK4qWC9dt7hCwLzZFzM2/hqavb58myPqMiD6KPR1r4t+XCkQbuKkvM22rFVSilk9A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIC9MhpJ4MAfjwkSL/Kr0zcJdXEqnYMt7bDCDYVEzYcH9AiBc05EmlkrSq2USXUU5I+0JCyOX1tRZvd7doydk+Khu0g=="}]},"maintainers":[{"name":"arian.hosseinzadeh","email":"aryan.hosseinzadeh@gmail.com"},{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},{"name":"mikenikles","email":"mike@esladvice.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/html-to-react-1.2.4.tgz_1487052121122_0.12807357404381037"},"directories":{}},"1.2.5":{"name":"html-to-react","version":"1.2.5","description":"A lightweight library that converts raw HTML to a React DOM structure.","main":"index.js","scripts":{"test":"eslint . && ./node_modules/mocha/bin/mocha","test-coverage":"eslint . && istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage","test-html-coverage":"eslint . && istanbul cover ./node_modules/mocha/bin/_mocha; open coverage/lcov-report/index.html"},"repository":{"type":"git","url":"git+https://github.com/aknuds1/html-to-react.git"},"keywords":["react","react-component","html"],"author":{"name":"Arve Knudsen, Mike Nikles"},"license":"MIT","bugs":{"url":"https://github.com/aknuds1/html-to-react/issues"},"homepage":"https://github.com/aknuds1/html-to-react","config":{"blanket":{"pattern":[""],"data-cover-never":["node_modules","test"]}},"dependencies":{"ent":"^2.2.0","htmlparser2":"^3.8.3","ramda":"^0.23.0","underscore.string.fp":"^1.0.4"},"peerDependencies":{"react":"^15.0"},"devDependencies":{"coveralls":"^2.11","eslint":"^3.7.0","istanbul":"^0.4","mocha":"^3.0","mocha-lcov-reporter":"^1.2.0","react":"^15.0","react-dom":"^15.0"},"gitHead":"ac9002c33d486f048b11bfef4a0787c528cad2d4","_id":"html-to-react@1.2.5","_shasum":"ef0aa862eb31d13618e19d3e9e0453a005215838","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.7.0","_npmUser":{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},"dist":{"shasum":"ef0aa862eb31d13618e19d3e9e0453a005215838","tarball":"https://registry.npmjs.org/html-to-react/-/html-to-react-1.2.5.tgz","integrity":"sha512-+IpUOHj+UtPOq3jDocZHmnRmdHKgm+Lv0DFhzdhmbcbrC+jY6k2VG6gegm8FL3m6oNbQa2Q9m/3wbXqdFVrEOA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCN+BKB5NHL2etC5WTxewcEykoc3elmuzMlvWO+DgQVhAIhAPykYzwUa7ZX/9mfuCIAzSLyS3Map6GD56raq6iF5hr4"}]},"maintainers":[{"name":"arian.hosseinzadeh","email":"aryan.hosseinzadeh@gmail.com"},{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},{"name":"mikenikles","email":"mike@esladvice.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/html-to-react-1.2.5.tgz_1492079222303_0.5203584157861769"},"directories":{}},"1.2.6":{"name":"html-to-react","version":"1.2.6","description":"A lightweight library that converts raw HTML to a React DOM structure.","main":"index.js","scripts":{"test":"eslint . && ./node_modules/mocha/bin/mocha","test-coverage":"eslint . && istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage","test-html-coverage":"eslint . && istanbul cover ./node_modules/mocha/bin/_mocha; open coverage/lcov-report/index.html"},"repository":{"type":"git","url":"git+https://github.com/aknuds1/html-to-react.git"},"keywords":["react","react-component","html"],"author":{"name":"Arve Knudsen, Mike Nikles"},"license":"MIT","bugs":{"url":"https://github.com/aknuds1/html-to-react/issues"},"homepage":"https://github.com/aknuds1/html-to-react","config":{"blanket":{"pattern":[""],"data-cover-never":["node_modules","test"]}},"dependencies":{"htmlparser2":"^3.8.3","ramda":"^0.23.0","underscore.string.fp":"^1.0.4"},"peerDependencies":{"react":"^15.0"},"devDependencies":{"coveralls":"^2.11","eslint":"^3.7.0","istanbul":"^0.4","mocha":"^3.0","mocha-lcov-reporter":"^1.2.0","react":"^15.0","react-dom":"^15.0"},"gitHead":"1ff4ea729d82dfa7749341441e5bfffe4455c7a6","_id":"html-to-react@1.2.6","_shasum":"8eebd0e33bd56117ad267e1c06255d741c234353","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.7.0","_npmUser":{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},"dist":{"shasum":"8eebd0e33bd56117ad267e1c06255d741c234353","tarball":"https://registry.npmjs.org/html-to-react/-/html-to-react-1.2.6.tgz","integrity":"sha512-cAlfkeIqDvotau7PVw7IUGU5eO337HySKk8GeZPuaLJyMiITWxXL8BCcR7pX0GUt2LEn0oeyTiIhnExqp2VkRw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIG8OZgr4sRj+wdkIR9cRDlnsSqqAIIyEWCgqL03mw3f/AiBjJL0PXG5xaduhZZAKG4z2v9jLuwuRHkfgMrYyxYEFBA=="}]},"maintainers":[{"name":"arian.hosseinzadeh","email":"aryan.hosseinzadeh@gmail.com"},{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},{"name":"mikenikles","email":"mike@esladvice.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/html-to-react-1.2.6.tgz_1492172868990_0.5734916911460459"},"directories":{}},"1.2.7":{"name":"html-to-react","version":"1.2.7","description":"A lightweight library that converts raw HTML to a React DOM structure.","main":"index.js","scripts":{"test":"eslint . && ./node_modules/mocha/bin/mocha","test-coverage":"eslint . && istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage","test-html-coverage":"eslint . && istanbul cover ./node_modules/mocha/bin/_mocha; open coverage/lcov-report/index.html"},"repository":{"type":"git","url":"git+https://github.com/aknuds1/html-to-react.git"},"keywords":["react","react-component","html"],"author":{"name":"Arve Knudsen, Mike Nikles"},"license":"MIT","bugs":{"url":"https://github.com/aknuds1/html-to-react/issues"},"homepage":"https://github.com/aknuds1/html-to-react","config":{"blanket":{"pattern":[""],"data-cover-never":["node_modules","test"]}},"dependencies":{"domhandler":"^2.3.0","htmlparser2":"^3.8.3","ramda":"^0.23.0","underscore.string.fp":"^1.0.4"},"peerDependencies":{"react":"^15.0"},"devDependencies":{"coveralls":"^2.11","eslint":"^3.7.0","istanbul":"^0.4","mocha":"^3.0","mocha-lcov-reporter":"^1.2.0","react":"^15.0","react-dom":"^15.0"},"gitHead":"a73d19b80c56326677e96097d8fab3f5c46c5888","_id":"html-to-react@1.2.7","_shasum":"b50b4737d020d728f1b4823543b82148372808dd","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.7.0","_npmUser":{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},"dist":{"shasum":"b50b4737d020d728f1b4823543b82148372808dd","tarball":"https://registry.npmjs.org/html-to-react/-/html-to-react-1.2.7.tgz","integrity":"sha512-/y6M5abBzI8LXPiiR+tX/aCweYLJU9aGxsp9oZGMGeIUqmOO/o2L0PSfJj3pCi5XyR4TIln0IkozATlYccWmBw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEv/oL4F8qkQZEhWYkiE3D1Eu4FuStPvxyqUlQAIaiJGAiEA/aWizmtU86EqvOqMynIExFB9DlK337JZtT+n3TMqOJE="}]},"maintainers":[{"name":"arian.hosseinzadeh","email":"aryan.hosseinzadeh@gmail.com"},{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},{"name":"mikenikles","email":"mike@esladvice.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/html-to-react-1.2.7.tgz_1492173322394_0.4780501152854413"},"directories":{}},"1.2.8":{"name":"html-to-react","version":"1.2.8","description":"A lightweight library that converts raw HTML to a React DOM structure.","main":"index.js","scripts":{"test":"eslint . && ./node_modules/mocha/bin/mocha","test-coverage":"eslint . && istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage","test-html-coverage":"eslint . && istanbul cover ./node_modules/mocha/bin/_mocha; open coverage/lcov-report/index.html"},"repository":{"type":"git","url":"git+https://github.com/aknuds1/html-to-react.git"},"keywords":["react","react-component","html"],"author":{"name":"Arve Knudsen, Mike Nikles"},"license":"MIT","bugs":{"url":"https://github.com/aknuds1/html-to-react/issues"},"homepage":"https://github.com/aknuds1/html-to-react","config":{"blanket":{"pattern":[""],"data-cover-never":["node_modules","test"]}},"dependencies":{"domhandler":"^2.3.0","escape-string-regexp":"^1.0.5","htmlparser2":"^3.8.3","ramda":"^0.23.0","underscore.string.fp":"^1.0.4"},"peerDependencies":{"react":"^15.0"},"devDependencies":{"coveralls":"^2.11","eslint":"^3.7.0","istanbul":"^0.4","mocha":"^3.0","mocha-lcov-reporter":"^1.2.0","react":"^15.0","react-dom":"^15.0"},"gitHead":"e7065b966f3e2ab77c281ce448385c105c175f75","_id":"html-to-react@1.2.8","_shasum":"048c2f1fd8df14805740a127dbe39fb727a837a2","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.7.0","_npmUser":{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},"dist":{"shasum":"048c2f1fd8df14805740a127dbe39fb727a837a2","tarball":"https://registry.npmjs.org/html-to-react/-/html-to-react-1.2.8.tgz","integrity":"sha512-gMd3cCejE8FHGj+57GPNbRbITPCqp31n462gzny0W3wlpZjD4KUuuodcq6F2hh/DLc5PapbH1WkjB0BzibRNvA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIESgWZHCPXmcKpKPyOUoW9Zi3WSO0tj5meXCntkWptt1AiAvKfH+s7CzKvcyZrfEbAEd+mETT3EXw8xNyq7QeDszsQ=="}]},"maintainers":[{"name":"arian.hosseinzadeh","email":"aryan.hosseinzadeh@gmail.com"},{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},{"name":"mikenikles","email":"mike@esladvice.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/html-to-react-1.2.8.tgz_1494441490587_0.7530465859454125"},"directories":{}},"1.2.9":{"name":"html-to-react","version":"1.2.9","description":"A lightweight library that converts raw HTML to a React DOM structure.","main":"index.js","scripts":{"test":"eslint . && ./node_modules/mocha/bin/mocha","test-coverage":"eslint . && istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage","test-html-coverage":"eslint . && istanbul cover ./node_modules/mocha/bin/_mocha; open coverage/lcov-report/index.html"},"repository":{"type":"git","url":"git+https://github.com/aknuds1/html-to-react.git"},"keywords":["react","react-component","html"],"author":{"name":"Arve Knudsen, Mike Nikles"},"license":"MIT","bugs":{"url":"https://github.com/aknuds1/html-to-react/issues"},"homepage":"https://github.com/aknuds1/html-to-react","config":{"blanket":{"pattern":[""],"data-cover-never":["node_modules","test"]}},"dependencies":{"domhandler":"^2.3.0","escape-string-regexp":"^1.0.5","htmlparser2":"^3.8.3","ramda":"^0.24.0","underscore.string.fp":"^1.0.4"},"peerDependencies":{"react":"^15.0"},"devDependencies":{"coveralls":"^2.11","eslint":"^3.7.0","istanbul":"^0.4","mocha":"^3.4.2","mocha-lcov-reporter":"^1.2.0","react":"^15.0","react-dom":"^15.0"},"gitHead":"15d67cd437620d9740dd742760cfae7054167c9f","_id":"html-to-react@1.2.9","_shasum":"6e2db4bcd565d454daf5a041d3dd40f046cfdb7d","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.7.0","_npmUser":{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},"dist":{"shasum":"6e2db4bcd565d454daf5a041d3dd40f046cfdb7d","tarball":"https://registry.npmjs.org/html-to-react/-/html-to-react-1.2.9.tgz","integrity":"sha512-H6YrvkjxHGiE/3JLJU3X3gqDvpLLkqX7I1R4caXDYzHeIHeujuD+TzGGehmpSgpgMPnR4whz9q8CIx4ktZQPuA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC53nt/rugE8KnvjQGhVt5cpXo6wdNKHFQLQofgo6LtfwIhAMH3PXARvq8aE0dV23blpr8TrudnpsshoNc/gmqA3efh"}]},"maintainers":[{"name":"arian.hosseinzadeh","email":"aryan.hosseinzadeh@gmail.com"},{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},{"name":"mikenikles","email":"mike@esladvice.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-react-1.2.9.tgz_1496388981588_0.7309035114012659"},"directories":{}},"1.2.10":{"name":"html-to-react","version":"1.2.10","description":"A lightweight library that converts raw HTML to a React DOM structure.","main":"index.js","scripts":{"test":"eslint . && ./node_modules/mocha/bin/mocha","test-coverage":"eslint . && istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage","test-html-coverage":"eslint . && istanbul cover ./node_modules/mocha/bin/_mocha; open coverage/lcov-report/index.html"},"repository":{"type":"git","url":"git+https://github.com/aknuds1/html-to-react.git"},"keywords":["react","react-component","html"],"author":{"name":"Arve Knudsen, Mike Nikles"},"license":"MIT","bugs":{"url":"https://github.com/aknuds1/html-to-react/issues"},"homepage":"https://github.com/aknuds1/html-to-react","config":{"blanket":{"pattern":[""],"data-cover-never":["node_modules","test"]}},"dependencies":{"domhandler":"^2.3.0","escape-string-regexp":"^1.0.5","htmlparser2":"^3.8.3","ramda":"^0.24.0","underscore.string.fp":"^1.0.4"},"peerDependencies":{"react":"^15.0"},"devDependencies":{"coveralls":"^2.11","eslint":"^3.7.0","istanbul":"^0.4","mocha":"^3.4.2","mocha-lcov-reporter":"^1.2.0","react":"^15.0","react-dom":"^15.0"},"gitHead":"99549a4ff4f482eeedf6838a54e5e23c2fa9620f","_id":"html-to-react@1.2.10","_npmVersion":"5.0.3","_nodeVersion":"8.1.0","_npmUser":{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},"dist":{"integrity":"sha512-bKre9OvWBUDOp3RU4IMGnLpitAow40UIfnpBRiy6AJp/h+ijQ2HerUL40rM8BQAi6PFAg9PkrJj7Bg5NpBIXtA==","shasum":"8a4353f9b4a682347eb0fa83bc4774b21a9ea0fd","tarball":"https://registry.npmjs.org/html-to-react/-/html-to-react-1.2.10.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC3yux+iJOZv6qlGRP5zavsn8pUAQ2jsMpnY7/GynyJ3wIgZIz/jC99gkUJPzFDjSFTUfOXb+Hyvb3q8pB5cBNGpzM="}]},"maintainers":[{"name":"arian.hosseinzadeh","email":"aryan.hosseinzadeh@gmail.com"},{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},{"name":"mikenikles","email":"mike@esladvice.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-react-1.2.10.tgz_1497347422605_0.8822655333206058"},"directories":{}},"1.2.11":{"name":"html-to-react","version":"1.2.11","description":"A lightweight library that converts raw HTML to a React DOM structure.","main":"index.js","scripts":{"test":"eslint . && ./node_modules/mocha/bin/mocha","test-coverage":"eslint . && istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage","test-html-coverage":"eslint . && istanbul cover ./node_modules/mocha/bin/_mocha; open coverage/lcov-report/index.html"},"repository":{"type":"git","url":"git+https://github.com/aknuds1/html-to-react.git"},"keywords":["react","react-component","html"],"author":{"name":"Arve Knudsen, Mike Nikles"},"license":"MIT","bugs":{"url":"https://github.com/aknuds1/html-to-react/issues"},"homepage":"https://github.com/aknuds1/html-to-react","config":{"blanket":{"pattern":[""],"data-cover-never":["node_modules","test"]}},"dependencies":{"domhandler":"^2.3.0","escape-string-regexp":"^1.0.5","htmlparser2":"^3.8.3","ramda":"^0.24.0","underscore.string.fp":"^1.0.4"},"peerDependencies":{"react":"^15.0"},"devDependencies":{"coveralls":"^2.11","eslint":"^3.7.0","istanbul":"^0.4","mocha":"^3.4.2","mocha-lcov-reporter":"^1.2.0","react":"^15.0","react-dom":"^15.0"},"gitHead":"0aa41c7efac4d8bcc8ff11d46410d513df35eb9a","_id":"html-to-react@1.2.11","_shasum":"fd05600ca26e5cf3eadac94bdfb43ddda623d7b4","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.7.0","_npmUser":{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},"dist":{"shasum":"fd05600ca26e5cf3eadac94bdfb43ddda623d7b4","tarball":"https://registry.npmjs.org/html-to-react/-/html-to-react-1.2.11.tgz","integrity":"sha512-QrbS+Vi+7TXrQt5GKQbfTKDG2wezX4ZhgPokse2FwZiH1Fbrrr6W4w4+V3Xigs0TnVmRpbIhrdQ5R3e5Ys42ww==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIF+6YALP//mxw8yqJrPh1flcksz6zh3K9WW5I/8E+5/nAiEAnyKDLSMWrehjoszX3I+sNR1o+dkNbUgUwroZ9nszpXE="}]},"maintainers":[{"name":"arian.hosseinzadeh","email":"aryan.hosseinzadeh@gmail.com"},{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},{"name":"mikenikles","email":"mike@esladvice.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-react-1.2.11.tgz_1497352894509_0.9924626157153398"},"directories":{}},"1.2.12":{"name":"html-to-react","version":"1.2.12","description":"A lightweight library that converts raw HTML to a React DOM structure.","main":"index.js","scripts":{"test":"eslint . && ./node_modules/mocha/bin/mocha","test-coverage":"eslint . && istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage","test-html-coverage":"eslint . && istanbul cover ./node_modules/mocha/bin/_mocha; open coverage/lcov-report/index.html"},"repository":{"type":"git","url":"git+https://github.com/aknuds1/html-to-react.git"},"keywords":["react","react-component","html"],"author":{"name":"Arve Knudsen, Mike Nikles"},"license":"MIT","bugs":{"url":"https://github.com/aknuds1/html-to-react/issues"},"homepage":"https://github.com/aknuds1/html-to-react","config":{"blanket":{"pattern":[""],"data-cover-never":["node_modules","test"]}},"dependencies":{"domhandler":"^2.3.0","escape-string-regexp":"^1.0.5","htmlparser2":"^3.8.3","ramda":"^0.24.0","underscore.string.fp":"^1.0.4"},"peerDependencies":{"react":"^15.0"},"devDependencies":{"coveralls":"^2.11","eslint":"^4.0","istanbul":"^0.4","mocha":"^3.4.2","mocha-lcov-reporter":"^1.2.0","react":"^15.0","react-dom":"^15.0"},"gitHead":"2b1b968302adcfd065322704520c7dc3d86d232d","_id":"html-to-react@1.2.12","_shasum":"d378d35fd6732ca4ba762ce79a361b28541609a1","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.10.1","_npmUser":{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},"dist":{"shasum":"d378d35fd6732ca4ba762ce79a361b28541609a1","tarball":"https://registry.npmjs.org/html-to-react/-/html-to-react-1.2.12.tgz","integrity":"sha512-DKkzj1OkSuH1xrQEb/VQgEpzfzRZhLCFw+F3JJpMIWbnw3H0p2hw85Sq2+8NkQFrARR3p8J8SFsZGZj+VVXKjA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCOH3pwJhf4qfnIAupccKKcLWJcR5wp6Q8pLxWkuQJ8hAIhAKNKeuqpVbzu6durQQP9fQwrvbBHYPFc8s4UN1M1m8Bs"}]},"maintainers":[{"name":"arian.hosseinzadeh","email":"aryan.hosseinzadeh@gmail.com"},{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},{"name":"mikenikles","email":"mike@esladvice.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-react-1.2.12.tgz_1506431410640_0.4588228214997798"},"directories":{}},"1.3.0":{"name":"html-to-react","version":"1.3.0","description":"A lightweight library that converts raw HTML to a React DOM structure.","main":"index.js","scripts":{"test":"eslint . && ./node_modules/mocha/bin/mocha","test-coverage":"eslint . && istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage","test-html-coverage":"eslint . && istanbul cover ./node_modules/mocha/bin/_mocha; open coverage/lcov-report/index.html"},"repository":{"type":"git","url":"git+https://github.com/aknuds1/html-to-react.git"},"keywords":["react","react-component","html"],"author":{"name":"Arve Knudsen, Mike Nikles"},"license":"MIT","bugs":{"url":"https://github.com/aknuds1/html-to-react/issues"},"homepage":"https://github.com/aknuds1/html-to-react","config":{"blanket":{"pattern":[""],"data-cover-never":["node_modules","test"]}},"dependencies":{"domhandler":"^2.3.0","escape-string-regexp":"^1.0.5","htmlparser2":"^3.8.3","ramda":"^0.24.1","underscore.string.fp":"^1.0.4"},"peerDependencies":{"react":"^16.0"},"devDependencies":{"coveralls":"^2.11","eslint":"^4.0","istanbul":"^0.4","mocha":"^3.5","mocha-lcov-reporter":"^1.2.0","react":"^16.0","react-dom":"^16.0"},"gitHead":"e51033588fc4a76e5674815cf69de2a985dd0966","_id":"html-to-react@1.3.0","_npmVersion":"5.4.2","_nodeVersion":"8.5.0","_npmUser":{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},"dist":{"integrity":"sha512-iXYO4oCKQc23iMD5Old3zmIGVUtBxR5wmV+pXRLM/eYab2UayqyZ8RCc60SzXm1Tprf1zw0XnjVByZLM5Xs89A==","shasum":"1ad3e592cb5fc3543e983f1854bbb82c592ffce7","tarball":"https://registry.npmjs.org/html-to-react/-/html-to-react-1.3.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAldhIX+zT5abVCjFBGjM9HIbboPZczQCLvxj6J4Dz2jAiEAte1/tXAzbMGg7y0kuObFzuGuscpZA8DDq+aM5LMufTA="}]},"maintainers":[{"name":"arian.hosseinzadeh","email":"aryan.hosseinzadeh@gmail.com"},{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},{"name":"mikenikles","email":"mike@esladvice.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-react-1.3.0.tgz_1506517187255_0.1278142067603767"},"directories":{}},"1.3.1":{"name":"html-to-react","version":"1.3.1","description":"A lightweight library that converts raw HTML to a React DOM structure.","main":"index.js","scripts":{"test":"eslint . && ./node_modules/mocha/bin/mocha","test-coverage":"eslint . && istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage","test-html-coverage":"eslint . && istanbul cover ./node_modules/mocha/bin/_mocha; open coverage/lcov-report/index.html"},"repository":{"type":"git","url":"git+https://github.com/aknuds1/html-to-react.git"},"keywords":["react","react-component","html"],"author":{"name":"Arve Knudsen, Mike Nikles"},"license":"MIT","bugs":{"url":"https://github.com/aknuds1/html-to-react/issues"},"homepage":"https://github.com/aknuds1/html-to-react","config":{"blanket":{"pattern":[""],"data-cover-never":["node_modules","test"]}},"dependencies":{"domhandler":"^2.3.0","escape-string-regexp":"^1.0.5","htmlparser2":"^3.8.3","ramda":"^0.24.1","underscore.string.fp":"^1.0.4"},"peerDependencies":{"react":"^16.0"},"devDependencies":{"coveralls":"^2.11","eslint":"^4.0","istanbul":"^0.4","mocha":"^3.5","mocha-lcov-reporter":"^1.2.0","react":"^16.0","react-dom":"^16.0"},"gitHead":"ab5a865e8abcbcdd7d0fec526dc7185f10fbd8ba","_id":"html-to-react@1.3.1","_shasum":"0dbd7f38fce494190f6748d5a30ff9603bca38cb","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.10.1","_npmUser":{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},"dist":{"shasum":"0dbd7f38fce494190f6748d5a30ff9603bca38cb","tarball":"https://registry.npmjs.org/html-to-react/-/html-to-react-1.3.1.tgz","integrity":"sha512-fKNOCYoD6cOC9DzM/gT042gVMfS9dOGzsZxESmXZ8U5/Fp9G1Zwhv/PLmEFi/0qR7VvOg60veUmb/Lbro3GdXA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD72Ke3VR+d2WuZBQJIW7477caxK4BBkqvAqEDHjU6PcwIgY3Lg1trm3TZYaltrY9JCz2zxGm0B0BP/HTi+32JlR8g="}]},"maintainers":[{"name":"arian.hosseinzadeh","email":"aryan.hosseinzadeh@gmail.com"},{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},{"name":"mikenikles","email":"mike@esladvice.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-react-1.3.1.tgz_1507381749294_0.5787907005287707"},"directories":{}},"1.3.2":{"name":"html-to-react","version":"1.3.2","description":"A lightweight library that converts raw HTML to a React DOM structure.","main":"index.js","scripts":{"test":"eslint . && ./node_modules/mocha/bin/mocha","test-coverage":"eslint . && istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage","test-html-coverage":"eslint . && istanbul cover ./node_modules/mocha/bin/_mocha; open coverage/lcov-report/index.html"},"repository":{"type":"git","url":"git+https://github.com/aknuds1/html-to-react.git"},"keywords":["react","react-component","html"],"author":{"name":"Arve Knudsen, Mike Nikles"},"license":"MIT","bugs":{"url":"https://github.com/aknuds1/html-to-react/issues"},"homepage":"https://github.com/aknuds1/html-to-react","config":{"blanket":{"pattern":[""],"data-cover-never":["node_modules","test"]}},"dependencies":{"domhandler":"^2.3.0","escape-string-regexp":"^1.0.5","htmlparser2":"^3.8.3","ramda":"^0.25.0","underscore.string.fp":"^1.0.4"},"peerDependencies":{"react":"^16.0"},"devDependencies":{"coveralls":"^3.0","eslint":"^4.8.0","istanbul":"^0.4","mocha":"^4.0.1","mocha-lcov-reporter":"^1.2.0","react":"^16.0","react-dom":"^16.0"},"gitHead":"c7469f94e356c95b3a1c5a4f8b4e6d31d45b203e","_id":"html-to-react@1.3.2","_npmVersion":"5.6.0","_nodeVersion":"9.3.0","_npmUser":{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},"dist":{"integrity":"sha512-psp6owUiSBaQ8Kf0wnbJHfhP753rG9IetCXJTkDdxJhHQX4a7M7dwYBt/Q6t+WkL1nrjDRSuANWwJO1MwPQJdQ==","shasum":"2a3174d430ec19513dae5055bb6b9b6fcda2574c","tarball":"https://registry.npmjs.org/html-to-react/-/html-to-react-1.3.2.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIE/AEj+Nwi24HWWQ4ZZMs1J7v623NV1+9u2BradEMbPvAiAiAT3CRSzY49pE9284lM5ddnL/dGLo4XZfhCfWmdFHYg=="}]},"maintainers":[{"email":"arve.knudsen@gmail.com","name":"arve.knudsen"},{"email":"aryan.hosseinzadeh@gmail.com","name":"arian.hosseinzadeh"},{"email":"mike@esladvice.com","name":"mikenikles"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-react-1.3.2.tgz_1514046726536_0.1467382761184126"},"directories":{}},"1.3.3":{"name":"html-to-react","version":"1.3.3","description":"A lightweight library that converts raw HTML to a React DOM structure.","main":"index.js","scripts":{"test":"eslint . && ./node_modules/mocha/bin/mocha","test-coverage":"eslint . && istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage","test-html-coverage":"eslint . && istanbul cover ./node_modules/mocha/bin/_mocha; open coverage/lcov-report/index.html"},"repository":{"type":"git","url":"git+https://github.com/aknuds1/html-to-react.git"},"keywords":["react","react-component","html"],"author":{"name":"Arve Knudsen, Mike Nikles"},"license":"MIT","bugs":{"url":"https://github.com/aknuds1/html-to-react/issues"},"homepage":"https://github.com/aknuds1/html-to-react","config":{"blanket":{"pattern":[""],"data-cover-never":["node_modules","test"]}},"dependencies":{"domhandler":"^2.3.0","escape-string-regexp":"^1.0.5","htmlparser2":"^3.8.3","ramda":"^0.25.0","underscore.string.fp":"^1.0.4"},"peerDependencies":{"react":"^16.0"},"devDependencies":{"coveralls":"^3.0","eslint":"^4.8.0","istanbul":"^0.4","mocha":"^4.0.1","mocha-lcov-reporter":"^1.2.0","react":"^16.0","react-dom":"^16.0"},"gitHead":"ff6fab35a375bfbc851c41ae09ec22ac8880cab5","_id":"html-to-react@1.3.3","_npmVersion":"5.6.0","_nodeVersion":"9.4.0","_npmUser":{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},"dist":{"integrity":"sha512-4Qi5/t8oBr6c1t1kBJKyxEeJu0lb7ctvq29oFZioiUHH0Wz88VWGwoXuH26HDt9v64bDHA4NMPNTH8bVrcaJWA==","shasum":"e41666a735f9997ed2372dcd21d8b0e42b334467","tarball":"https://registry.npmjs.org/html-to-react/-/html-to-react-1.3.3.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCaZwCB4TqvmlsH1IQVS54nFdrWm/klOM0uKxzT9+EVWgIhAKVOHzIlfkLClgWBarNzGpWTRhK9oHlM2G60UknDbug/"}]},"maintainers":[{"email":"arve.knudsen@gmail.com","name":"arve.knudsen"},{"email":"aryan.hosseinzadeh@gmail.com","name":"arian.hosseinzadeh"},{"email":"mike@esladvice.com","name":"mikenikles"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-react-1.3.3.tgz_1515933602941_0.0057854922488331795"},"directories":{}},"1.3.4":{"name":"html-to-react","version":"1.3.4","description":"A lightweight library that converts raw HTML to a React DOM structure.","main":"index.js","scripts":{"test":"eslint . && ./node_modules/mocha/bin/mocha","test-coverage":"eslint . && istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage","test-html-coverage":"eslint . && istanbul cover ./node_modules/mocha/bin/_mocha; open coverage/lcov-report/index.html"},"repository":{"type":"git","url":"git+https://github.com/aknuds1/html-to-react.git"},"keywords":["react","react-component","html"],"author":{"name":"Arve Knudsen, Mike Nikles"},"license":"MIT","bugs":{"url":"https://github.com/aknuds1/html-to-react/issues"},"homepage":"https://github.com/aknuds1/html-to-react","config":{"blanket":{"pattern":[""],"data-cover-never":["node_modules","test"]}},"dependencies":{"domhandler":"^2.4.2","escape-string-regexp":"^1.0.5","htmlparser2":"^3.10.0","lodash.camelcase":"^4.3.0","ramda":"^0.26"},"peerDependencies":{"react":"^16.0"},"devDependencies":{"coveralls":"^3.0.2","eslint":"^5.9.0","istanbul":"^0.4","mocha":"^5.2.0","mocha-lcov-reporter":"^1.2.0","react":"^16.6.3","react-dom":"^16.6.3"},"gitHead":"02d80e2119cb186f5916f25cc1fa484e84024b9c","_id":"html-to-react@1.3.4","_npmVersion":"6.4.1","_nodeVersion":"11.3.0","_npmUser":{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},"dist":{"integrity":"sha512-/tWDdb/8Koi/QEP5YUY1653PcDpBnnMblXRhotnTuhFDjI1Fc6Wzox5d4sw73Xk5rM2OdM5np4AYjT/US/Wj7Q==","shasum":"647b3a54fdec73a6461864b129fb0d1eec7d4589","tarball":"https://registry.npmjs.org/html-to-react/-/html-to-react-1.3.4.tgz","fileCount":18,"unpackedSize":48461,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcCUGBCRA9TVsSAnZWagAAoeAP/RGByR+Txb2x/PkRVCSg\nfKynMuPa/ZMCht0pGPjWuMMV/DnOmw616zy5f0l9hoyoJ6kD13JXPT2h8XZ1\nfwaVnUSXhEv56El6lfQq2eWxNi06FjNRhKl5gOCn97W96MyQn/xWixPgzgOq\nc4bu/GemymXOs9eC3lJI368NAV3LcLED1RlxBGHVQC3QjAksnLl0SsOzJ/Yk\nQqmXbo/+wAJlTf9NTrzuNA3c7N2772zWjRE3wHv/AfXkWM2IncTzppFNQaVT\nX9jAo09RuNKV5un3mv29khWgvBrgUqnMJVNPgfdYvDI/uXHz2TZSokMmsPBd\nj2AbP+xjX+V/DYHrbCQzxXLjh6V3sqK1V7tId5rEgIuHpAqN26/+EDU7jE07\nSmUOyWL9g/DWTX1V93KAWKNlMk77J53RuBxViy2XBQIub5TJG57QnUdRk9Fk\ntAm6eOG+sNzZYc4cnuhk6IFA19Ev+ilSpCXRdQxk+vEjFW5WoaHPrZ0AVUxM\nyqdB3ickmnVlZWy5MAR+OnhnLrxq+fpwywi/123qPLoNWwsRFKzxN6C8/14j\nIC+kEAtj1e0jMVmdvPLtmT/dGJuTN9gzVAwucOk8Njb1W16DTOnqMcel5izk\nAoPuIJ49dTFt2SDNxdsRf7msUXyb1DvLYzg2BTvbiUjNPwiS1F5Qa54avQmq\n2fmr\r\n=sNAi\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGHqLgLC1YXe8WDi1vuPBsTW41SXTR7qZbAKxhUlTgFKAiEAstWBSv+H5NGpm+qR4f1/VD7JCa1/DnAra0sp4UEnUVQ="}]},"maintainers":[{"email":"aryan.hosseinzadeh@gmail.com","name":"arian.hosseinzadeh"},{"email":"arve.knudsen@gmail.com","name":"arve.knudsen"},{"email":"mike@esladvice.com","name":"mikenikles"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-react_1.3.4_1544110464728_0.9596497174356595"},"_hasShrinkwrap":false},"1.4.0":{"name":"html-to-react","version":"1.4.0","description":"A lightweight library that converts raw HTML to a React DOM structure.","main":"index.js","scripts":{"test":"eslint . && ./node_modules/mocha/bin/mocha","test-coverage":"eslint . && istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage","test-html-coverage":"eslint . && istanbul cover ./node_modules/mocha/bin/_mocha; open coverage/lcov-report/index.html"},"repository":{"type":"git","url":"git+https://github.com/aknuds1/html-to-react.git"},"keywords":["react","react-component","html"],"author":{"name":"Arve Knudsen, Mike Nikles"},"license":"MIT","bugs":{"url":"https://github.com/aknuds1/html-to-react/issues"},"homepage":"https://github.com/aknuds1/html-to-react","config":{"blanket":{"pattern":[""],"data-cover-never":["node_modules","test"]}},"dependencies":{"domhandler":"^3.0","htmlparser2":"^4.0","lodash.camelcase":"^4.3.0","ramda":"^0.26"},"peerDependencies":{"react":"^16.0"},"devDependencies":{"coveralls":"^3.0.5","eslint":"^6.1.0","istanbul":"^0.4","mocha":"^6.2.0","mocha-lcov-reporter":"^1.2.0","react":"^16.8.6","react-dom":"^16.8.6"},"gitHead":"59f9f52eec7810491702213e985fcc850e175af6","_id":"html-to-react@1.4.0","_nodeVersion":"12.7.0","_npmVersion":"6.10.2","dist":{"integrity":"sha512-VmpVO6gAw75MxRu7OgptdwtG5/thOFxTiXevsBt3gdmup2srUewHGNJWilknb334YNsMIIS0/+sGztxyClGuZA==","shasum":"991e1185e1c45f7b3ba2b42c1f7a03bd34dec770","tarball":"https://registry.npmjs.org/html-to-react/-/html-to-react-1.4.0.tgz","fileCount":18,"unpackedSize":54513,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdSaU3CRA9TVsSAnZWagAA3UoP/0VX1L4TKP2gz9flVtbm\nfgPiyo8idULanbH30PLb4V0gMlhiRMGAjLgM1tMf5Wd/x7FWThVnyP+FoLWH\n352dIY4DdETxNYnfu0oLPKSEB/TWTGtmnunu+gi+eWM+TaHZDutcB4PM0BOo\nbWivuFXKbSDD/CnAbnqOYWe3a6Ieqcv4S5kD1SFLthlJqJpL/rYsah2F85WW\nPOCTpJuDJeVyXkdwwyrieeuxi2WtkQ9o4O+SiCfp8Gak0tJfP5Y1bPcwejrj\nzeW/WKYBQEonsUPKxHvOfP52GOVm0svaEE3HM+C6DQWdkfeBJxlDNnQgDB1g\n4OdCNAXTmtvM0ybj4VX2qQnk56fHAiowyOXeCDgZJ4dLfsPtGxpGaOMJ+bz2\nbqGaJ0F2Mk14cPBDU1diab7/QJgxccRRZ2wwARAx01YFiGqbpZGHqoBWEyB3\n192GyQiHZDlzMtKacy48vPOgZS5KU4aw4tmQBfHZxaEwoU/TjANGlRBjO8DA\nrCcPqVhUiX+U4IHWPMBLG6E5ACN34mGemxLMPsAl0z/pfi4wU4RHwu7Xo5H1\nnFC+RniDaVdvxPDXXlrIA7H3T98QkdlKouSNtJtsg7cu3eLrvWc3FCJkihkl\n9hbw4X6b+4M8RW1uMK8fRgjc2CfLcjVPSjZf3wzJDLh7q8Vigdkty0Pht0qX\nuAYg\r\n=WTR7\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHcsKm9nLKGlL+QXA2h1itw8ZfXks56OM3/wYBNEnkNGAiEAobfrrLnO+D5/w+tvfPbeb2Odu3mYZMVxV/XmznJ3Xf4="}]},"maintainers":[{"email":"aryan.hosseinzadeh@gmail.com","name":"arian.hosseinzadeh"},{"email":"arve.knudsen@gmail.com","name":"arve.knudsen"},{"email":"mike@esladvice.com","name":"mikenikles"}],"_npmUser":{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-react_1.4.0_1565107510446_0.6202034838120332"},"_hasShrinkwrap":false},"1.4.1":{"name":"html-to-react","version":"1.4.1","description":"A lightweight library that converts raw HTML to a React DOM structure.","main":"index.js","scripts":{"test":"eslint . && ./node_modules/mocha/bin/mocha","test-coverage":"eslint . && istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage","test-html-coverage":"eslint . && istanbul cover ./node_modules/mocha/bin/_mocha; open coverage/lcov-report/index.html"},"repository":{"type":"git","url":"git+https://github.com/aknuds1/html-to-react.git"},"keywords":["react","react-component","html"],"author":{"name":"Arve Knudsen, Mike Nikles"},"license":"MIT","bugs":{"url":"https://github.com/aknuds1/html-to-react/issues"},"homepage":"https://github.com/aknuds1/html-to-react","config":{"blanket":{"pattern":[""],"data-cover-never":["node_modules","test"]}},"dependencies":{"domhandler":"^3.0","htmlparser2":"^4.0","lodash.camelcase":"^4.3.0","ramda":"^0.26"},"peerDependencies":{"react":"^16.0"},"devDependencies":{"coveralls":"^3.0.6","eslint":"^6.1.0","istanbul":"^0.4","mocha":"^6.2.0","mocha-lcov-reporter":"^1.2.0","react":"^16.9.0","react-dom":"^16.9.0"},"gitHead":"c9214cb15766ff3f99013f6b5eaf2e9e8291ab05","_id":"html-to-react@1.4.1","_nodeVersion":"12.8.0","_npmVersion":"6.10.2","dist":{"integrity":"sha512-Ys2gGxF8LBF9bD8tbnsU0xgEDOTC3Sy81mtpIH/61hSqGE1l4QetnN1yv0oAK/PuvwABmiNS+ggqvuzo+GfoiA==","shasum":"64f67657c6335056866e334c097556f25894dd47","tarball":"https://registry.npmjs.org/html-to-react/-/html-to-react-1.4.1.tgz","fileCount":18,"unpackedSize":55418,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdUBPKCRA9TVsSAnZWagAA90wP/AjxxRpiXaOJrDMxhUCV\nwFYdWnl80tmnBoBQ8d6YnHfeVAKSUuO6SdkUNqwkkFOxPoP+Q8aDx35Jw34t\n8Wm+OiUzrxTdXaTNSXlMMHJIXJy2a8FXanZOE4DobH14tfsKgY7/VJLnksJi\nGBzbMd3/6YGTXZNV7SYX8XYfWNH0nH4GsQ73Iz8vQCNIHY3oHdoExTvX1KO8\n4cX13pd6T+xHUHIUhB0b8XxYipkjcew0wnzgEJLmK/Q8s8iOT6c/7Dy27+x8\nL/IHn8v39VCEooan8yg/Ss/Gh70rPVGZNkz5Jx944o9v/bcjx1fjQwBkE8mh\nT77CBhkEdb5tRDvsB5nFuqj6z/HKEDEA/0yTJsPfp96rpDp1V2K8THkTYbWT\nG61euOkIGK/YY5C5ymt2YT/wUrZo7uA9I2qGjkfcTfAbdSKTBZjy2Q8ydaMV\nJiqQjHr2/Nz5mtqzLmQWCPJtCUO6gz7erJudOLyuAs4WXWuUri4pcQLeX33m\n5F8jCjS/HlEptycD7OR59NB24Cg0AuODWKED9pZclm3naRCc+1xxrybXzsZF\n/LvbBj/qBQg/9FWPPxmxa4s6kM2TQi10dypBR2mtMAH/jbhC33eokrd3EMLc\nOd7mh9QJdG9rIzAcNvJBejO5iDKiONtyB0cOzeFgaAVsy376oxC/RetyVIx8\ntD/z\r\n=Ew5k\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDwMCpPA2CXieUAXMX8HFUSdlMzt06Com3eMhTFIvZK+QIgOF0NDoHfh2/Ba+RrIjPBaQ6X5m+Yi1aAK1zkPLGklsI="}]},"maintainers":[{"email":"aryan.hosseinzadeh@gmail.com","name":"arian.hosseinzadeh"},{"email":"arve.knudsen@gmail.com","name":"arve.knudsen"},{"email":"mike@esladvice.com","name":"mikenikles"}],"_npmUser":{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-react_1.4.1_1565529033611_0.9856165987591194"},"_hasShrinkwrap":false},"1.4.2":{"name":"html-to-react","version":"1.4.2","description":"A lightweight library that converts raw HTML to a React DOM structure.","main":"index.js","scripts":{"test":"eslint . && ./node_modules/mocha/bin/mocha","test-coverage":"eslint . && istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage","test-html-coverage":"eslint . && istanbul cover ./node_modules/mocha/bin/_mocha; open coverage/lcov-report/index.html"},"repository":{"type":"git","url":"git+https://github.com/aknuds1/html-to-react.git"},"keywords":["react","react-component","html"],"author":{"name":"Arve Knudsen, Mike Nikles"},"license":"MIT","bugs":{"url":"https://github.com/aknuds1/html-to-react/issues"},"homepage":"https://github.com/aknuds1/html-to-react","config":{"blanket":{"pattern":[""],"data-cover-never":["node_modules","test"]}},"dependencies":{"domhandler":"^3.0","htmlparser2":"^4.0","lodash.camelcase":"^4.3.0","ramda":"^0.26"},"peerDependencies":{"react":"^16.0"},"devDependencies":{"coveralls":"^3.0.6","eslint":"^6.4.0","istanbul":"^0.4","mocha":"^6.2.0","mocha-lcov-reporter":"^1.2.0","react":"^16.9.0","react-dom":"^16.9.0"},"gitHead":"ee99dba4d873cb35d3743e6cf8675d6679e8a873","_id":"html-to-react@1.4.2","_nodeVersion":"12.10.0","_npmVersion":"6.10.3","dist":{"integrity":"sha512-TdTfxd95sRCo6QL8admCkE7mvNNrXtGoVr1dyS+7uvc8XCqAymnf/6ckclvnVbQNUo2Nh21VPwtfEHd0khiV7g==","shasum":"7b628ab56cd63a52f2d0b79d0fa838a51f088a57","tarball":"https://registry.npmjs.org/html-to-react/-/html-to-react-1.4.2.tgz","fileCount":20,"unpackedSize":56318,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdhHZvCRA9TVsSAnZWagAAOWYQAJJqRhkZyEy9rJJ3L/r2\nP3sMd4wOMUU5jAloac8EEsXiza+gV/bj3IiyBqBmNcZ0oTWDrunQcx/YFWCJ\n4NPtLlXzqn6XRmTed/tRZu2TZKqqWQWmGY+KwylAg/Cxr+Rq2dUw/cX+1uNZ\nKCF5WCk0WMamhNjq0IED6LWSjtQvrBun3NtraNWI2nAN/jK9q+PLybtYFVUD\nppnOXi+sZwDGH9OZHphjkoJhsnWyZmhKczb15/aYJ+azHTJV812/zr3PC7Gc\nsLpyYk+WawkffOndTQp7GUBh69ygmcxb4hnC5vPnUI/TUXaG16j/Ji2Zet/y\nPBhAYSoU5YmMs19fGL3DMdB2vtu6j3RzDZC/JsOYY/edE5OJ8Rx/13YRzcYV\nPOHo2i68mnZlzS6yH2EOGIjVAIRLIrw4XZKHkwTizwNIFajhdPCkb2sTSS34\n5ZDi145JTvgIG2oNISDlhxUUlhr+NmqkcirzbPihR/hkCj7SMN5N03KaOUsE\nWL7zEIvw61IOuU5PuxQOEozmXh7+1Zt+XAqrzwh1hXfdNptgtj/BRi43pIQv\n0IFCG4mR7YUGlnRuj7HHh6ZtXFhCfBSyF0lUGCF3bqDRlJUvjLzRdDFdUZzX\nPnHHuh8cmsoGTmelSM9XkGHboSGSDjlOLvuYQl6d645IAuy2krA6Gx5N2jOK\nNpDt\r\n=W5/j\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBDFjfaEmUmKcE/sbrf+WZHvgB5m/ztIfDaAC/G8m6mxAiEA8dxZ1OVux0Zq1oRwQAdW3t6DpKGk87Nd74hXJahuey0="}]},"maintainers":[{"email":"aryan.hosseinzadeh@gmail.com","name":"arian.hosseinzadeh"},{"email":"arve.knudsen@gmail.com","name":"arve.knudsen"},{"email":"mike@esladvice.com","name":"mikenikles"}],"_npmUser":{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-react_1.4.2_1568962158993_0.9329603130815545"},"_hasShrinkwrap":false},"1.4.3":{"name":"html-to-react","version":"1.4.3","description":"A lightweight library that converts raw HTML to a React DOM structure.","main":"index.js","scripts":{"test":"eslint . && ./node_modules/mocha/bin/mocha","test-coverage":"eslint . && nyc --reporter=text-lcov npm test | coveralls","test-html-coverage":"eslint . && nyc --reporter=html npm test; open coverage/index.html"},"repository":{"type":"git","url":"git+https://github.com/aknuds1/html-to-react.git"},"keywords":["react","react-component","html"],"author":{"name":"Arve Knudsen, Mike Nikles"},"license":"MIT","bugs":{"url":"https://github.com/aknuds1/html-to-react/issues"},"homepage":"https://github.com/aknuds1/html-to-react","config":{"blanket":{"pattern":[""],"data-cover-never":["node_modules","test"]}},"dependencies":{"domhandler":"^3.0","htmlparser2":"^4.1.0","lodash.camelcase":"^4.3.0","ramda":"^0.27"},"peerDependencies":{"react":"^16.0"},"devDependencies":{"coveralls":"^3.1.0","eslint":"^7.0","mocha":"^7.2.0","mocha-lcov-reporter":"^1.2.0","nyc":"^15.0.1","react":"^16.13.1","react-dom":"^16.13.1"},"volta":{"node":"14.3.0"},"gitHead":"e46970535cd95865c637eeb0abe845aca495d884","_id":"html-to-react@1.4.3","_nodeVersion":"14.3.0","_npmVersion":"6.14.5","dist":{"integrity":"sha512-txe09A3vxW8yEZGJXJ1is5gGDfBEVACmZDSgwDyH5EsfRdOubBwBCg63ZThZP0xBn0UE4FyvMXZXmohusCxDcg==","shasum":"1430a1cb581ef29533892ec70a2fdc4554b17ffd","tarball":"https://registry.npmjs.org/html-to-react/-/html-to-react-1.4.3.tgz","fileCount":20,"unpackedSize":57243,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeyVcSCRA9TVsSAnZWagAAZh8P/1YQnEHQuQEyozbKkqdX\ntmC4UQOdB/5O3eAtHMrFfhdSqt8fFD9BLS+K/PNma82tJgLm4tW/DQq3gr6c\nm2+beiQQm64sse+MZsp47Kwua2Jzqt9EOdURt0FuRq9l2NvrCiaFj0i7CWOo\nMcVVfm9Rw+cew2UHaPS1cprN7ZaE/kGjoo21gNSpYcHfT2D2jR5097F+V1hP\nJF4im5JpAFkwEMSZ6KCp3J2Oyk9cZ2WUMwrD9Geg9hH/JhuErKdt+6JRSSPq\narilaM4GeeMbmXUoiLxwlTPaQfyMIL4k+I3SqSz983iaBh05WpcZfZQ5UUTL\nWJeBcbI3WvYJ1o8HvTepQCPJJf3FSIipdjDDIUaxWhre8nviVpCYFZj9ixUZ\nqUrjYLjs1BxsB0sO/Nv/wIqcj8sPOvouydk4yUWJadxoEoQsqsp5cGVfZHe/\n13iP6v6xTd/x58zQnp2dwQ6dE1i57xfKvLPT9GpY5vmNR/kyvyrtabedCchf\n/KIHWEpAi4StfZwEISWUHG8tjW21trxjZ1fjPi4674V8tVgnbfUcsaDpdOnb\n53I0NYSt9ssKTGLlNPSOX7mwhxYqRSqqzoOBJAw4cmCosGE+LPShiG6MLIxa\ntWLWnU3D9yme0Zxi2O4SRr/vDyPmpF+6I3dOFl3JrvBliz53kWmQo4WNpEHF\nQLNm\r\n=nX4+\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC0ZJjCBx0CuqbfgQArhcVkxR9nQA/ncDmIEdSb95MDSwIgYHD1kkKFrCWMwFLMGQbWHbon3SxO6Hyy0X9FxNBcsk8="}]},"maintainers":[{"email":"aryan.hosseinzadeh@gmail.com","name":"arian.hosseinzadeh"},{"email":"arve.knudsen@gmail.com","name":"arve.knudsen"},{"email":"mike@esladvice.com","name":"mikenikles"}],"_npmUser":{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-react_1.4.3_1590253330190_0.32921546598692464"},"_hasShrinkwrap":false},"1.4.4":{"name":"html-to-react","version":"1.4.4","description":"A lightweight library that converts raw HTML to a React DOM structure.","main":"index.js","scripts":{"test":"eslint . && ./node_modules/mocha/bin/mocha","test-coverage":"eslint . && nyc --reporter=text-lcov npm test | coveralls","test-html-coverage":"eslint . && nyc --reporter=html npm test; open coverage/index.html"},"repository":{"type":"git","url":"git+https://github.com/aknuds1/html-to-react.git"},"keywords":["react","react-component","html"],"author":{"name":"Arve Knudsen, Mike Nikles"},"license":"MIT","bugs":{"url":"https://github.com/aknuds1/html-to-react/issues"},"homepage":"https://github.com/aknuds1/html-to-react","config":{"blanket":{"pattern":[""],"data-cover-never":["node_modules","test"]}},"dependencies":{"domhandler":"^3.3.0","htmlparser2":"^5.0","lodash.camelcase":"^4.3.0","ramda":"^0.27.1"},"peerDependencies":{"react":"^16.0"},"devDependencies":{"coveralls":"^3.1.0","eslint":"^7.10.0","mocha":"^8.1.3","mocha-lcov-reporter":"^1.2.0","nyc":"^15.1.0","react":"^16.13.1","react-dom":"^16.13.1"},"volta":{"node":"14.13.0"},"gitHead":"662426cf25be368ea2db6c896df1b81beec72c20","_id":"html-to-react@1.4.4","_nodeVersion":"14.13.0","_npmVersion":"6.14.8","dist":{"integrity":"sha512-oE4GYH8c/gvFQwfNHBhg1LpfiPsQRKj0JQmvccvUHqyyF7U1H7UzZ7Z6CyF7okv1QFukyvjH9aAApNa4kYSO9g==","shasum":"dd5edb76ff28ab7fc34faabd91446bece292dc38","tarball":"https://registry.npmjs.org/html-to-react/-/html-to-react-1.4.4.tgz","fileCount":20,"unpackedSize":57363,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfes4VCRA9TVsSAnZWagAALgwP/RvtT6lVPEqCNzbEnuoq\nkuZWutsD9sW+3yTTicM32+Glc6Q6Kdonzgre/Pjy5xe3KtzzCFIN7ntfFyii\nu0+r9X3r8VCbDBm9pJc3Lk2IKd3wDUj7IMvRzUElhHf3Q9BtHTUQssJrjTLw\nhgmK14o8xWyQC/XeIMfV/Fjo6hAKGPqPbyd55bgKZ9veCwrRIzwottpEk58r\nSBr0a0t99RE873xUhHN5zw10wU7wMB0C5onIVxODNaCDS0Pb9TYwJsrmTFGT\nWRNcoud+SDcN91EYooxaLdqS11qCGsJS+MPPYlu2Bn1PT62UieoJbGkDnEFr\n6+awJG8J9kPZeW7FpvpWhPnI3ezu/HVsoCQous/BlETIPPg0UzX4b4tQDmWX\n/E7fv7FSGFoY6d56BWbNk77KGFjOLqms3qrKx3Y1kCgMEUY2cktC6a1gz35d\nuxHJCiNUg/EbPz22TNcNST5jkGm0I+DBAabkFV0voXjdHQRfFIl7KB4BsEg5\nzyDf5CQFlDtg+5DLEb1S8dERYxGxF8pQFhDGKPjrUZDb6ni5kObUU0YeeFZ8\ncZaAN/SpIJNen4s7OGfAuTuYevGJmRswpA8v60/z5aXtliAnzWehDn0RcLnn\nKzFhHHF8XrlJaF/jFyV4YOOZRUaXLTI8FnK7g5W6knN1X/ZaUoSR2zcp8Gth\n7Zmd\r\n=wZF3\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIE6SemBU+JP12os2SZFzyVF/vP8s6qXfGaGD3TjNMEhAAiBzVe5ckoY0YQGwkO5gUYzVGiZRid8FoJ7ND/9qElUVQA=="}]},"maintainers":[{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},{"name":"mikenikles","email":"mike@esladvice.com"},{"name":"arian.hosseinzadeh","email":"aryan.hosseinzadeh@gmail.com"}],"_npmUser":{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-react_1.4.4_1601883669149_0.5486010338467944"},"_hasShrinkwrap":false},"1.4.5":{"name":"html-to-react","version":"1.4.5","description":"A lightweight library that converts raw HTML to a React DOM structure.","main":"index.js","scripts":{"test":"eslint . && ./node_modules/mocha/bin/mocha","test-coverage":"eslint . && nyc --reporter=text-lcov npm test | coveralls","test-html-coverage":"eslint . && nyc --reporter=html npm test; open coverage/index.html"},"repository":{"type":"git","url":"git+https://github.com/aknuds1/html-to-react.git"},"keywords":["react","react-component","html"],"author":{"name":"Arve Knudsen, Mike Nikles"},"license":"MIT","bugs":{"url":"https://github.com/aknuds1/html-to-react/issues"},"homepage":"https://github.com/aknuds1/html-to-react","config":{"blanket":{"pattern":[""],"data-cover-never":["node_modules","test"]}},"dependencies":{"domhandler":"^3.3.0","htmlparser2":"^5.0","lodash.camelcase":"^4.3.0","ramda":"^0.27.1"},"peerDependencies":{"react":"^16.0 || ^17.0"},"devDependencies":{"coveralls":"^3.1.0","eslint":"^7.11.0","mocha":"^8.2.0","mocha-lcov-reporter":"^1.2.0","nyc":"^15.1.0","react":"^17.0.1","react-dom":"^17.0.1"},"volta":{"node":"15.0.1"},"gitHead":"a10462807630c61396d5a0d583f80b2a22a9695c","_id":"html-to-react@1.4.5","_nodeVersion":"15.0.1","_npmVersion":"7.0.3","dist":{"integrity":"sha512-KONZUDFPg5OodWaQu2ymfkDmU0JA7zB1iPfvyHehTmMUZnk0DS7/TyCMTzsLH6b4BvxX15g88qZCXFhJWktsmA==","shasum":"59091c11021d1ef315ef738460abb6a4a41fe1ce","tarball":"https://registry.npmjs.org/html-to-react/-/html-to-react-1.4.5.tgz","fileCount":20,"unpackedSize":57369,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJflC75CRA9TVsSAnZWagAAqxwQAI5JJWlVEm97FeWZqbFR\n1zy/jWMzODgM+u+OrfeT6nt9hLl6djzuuBW+Gr6IduID/JLi3WT1er5y2eOx\nlxKCAwDhZlARL33bfrZ+6KFXYyDsUZGfCShLLlfsM37mSGK553DTUdcbod3y\nMsZ/anaGpajk3GOuR+Pgh9nOdx+gGcSaHu3Eo746/JuT4UnfRkNrRzZUSean\nNJqzo+RaCkPM2G4gcZcnDC9MxnLzdbRnkw7rYpMQoskY+Q5Z2o9BWY7XEIVg\nZAaIVm3NTrRFsoEHsBIjUmKxwIeb7yFL7+K5FwCqjt+X9i2Dt3v3xbAPbAqs\nifiRN62YpxycAKcWlB/bNAfPIGAmquhn4hxqUc5dcFOYlQWcrjeq2Hmlzhfr\nytpEzu2ZkZL4k3kkh8dShJrC6njCVZOaiDPnyAkUfNGiQIcehwrtrYr80xvo\n3N/v97dtqaDrFLgkBUjazVttYUSn9dZhAYCFQBr1UF/XvcPX+++7YuvGnJKU\nvbMU5CY4LAT0qha6AkrhqxdXpAhrPBl0YtwspzEXqopBWLeKPbf5PbcnxR1t\ngYdfOt75SaguCC+tJXE8w5piSX6/MWeR9Kr6qwtnvvem1XkLJA9zs/zAiG3P\nwnq6rPbdZCV58dlJWnqatY26puFHaMyzWjgvtUWvBn3bdt1DYkUNEW91Rz4l\nWM/u\r\n=PH8B\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDj2aQlmTQ7qN20DPaaop6FeuMykNoAWgBeoAdTmWoPbgIgcyO02rqlvwK55HNaxu3wfx82ks1t+HAakCF4C+vs+i4="}]},"maintainers":[{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},{"name":"mikenikles","email":"mike@esladvice.com"},{"name":"arian.hosseinzadeh","email":"aryan.hosseinzadeh@gmail.com"}],"_npmUser":{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-react_1.4.5_1603546872613_0.9535672744506369"},"_hasShrinkwrap":false},"1.4.6":{"name":"html-to-react","version":"1.4.6","description":"A lightweight library that converts raw HTML to a React DOM structure.","main":"index.js","scripts":{"test":"eslint . && ./node_modules/mocha/bin/mocha","test-coverage":"eslint . && nyc npm test && nyc report --reporter=text-lcov | coveralls","test-html-coverage":"eslint . && nyc --reporter=html npm test; open coverage/index.html"},"repository":{"type":"git","url":"git+https://github.com/aknuds1/html-to-react.git"},"keywords":["react","react-component","html"],"author":{"name":"Arve Knudsen, Mike Nikles"},"license":"MIT","bugs":{"url":"https://github.com/aknuds1/html-to-react/issues"},"homepage":"https://github.com/aknuds1/html-to-react","config":{"blanket":{"pattern":[""],"data-cover-never":["node_modules","test"]}},"dependencies":{"domhandler":"^4.0","htmlparser2":"^7.0","lodash.camelcase":"^4.3.0","ramda":"^0.27.1"},"peerDependencies":{"react":"^16.0 || ^17.0"},"devDependencies":{"coveralls":"^3.1.0","eslint":"^7.11.0","mocha":"^9.1.0","mocha-lcov-reporter":"^1.2.0","nyc":"^15.1.0","react":"^17.0.1","react-dom":"^17.0.1"},"volta":{"node":"16.9.1"},"gitHead":"18ddc400dcd079f584a5b86a97b6c70bc88a74be","_id":"html-to-react@1.4.6","_nodeVersion":"16.9.1","_npmVersion":"7.21.1","dist":{"integrity":"sha512-xVTZx68Z6/6pUGTAniZIM0+b11S3E+gZFwE2obiRoWGNb/MmMF8LZcB2LjVj/zU9NPAMMdhiUf36MNzzC+yuhw==","shasum":"b8255efff4b5df5397966a5f8b48d99a73a679c1","tarball":"https://registry.npmjs.org/html-to-react/-/html-to-react-1.4.6.tgz","fileCount":21,"unpackedSize":58657,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhQyGACRA9TVsSAnZWagAA8o0P/2/aIqgHZFLZCd10ut7S\nNSHaunRgbMLzcHNNke2EhovSO1huTb7AsNvGqQ1Az7AGgmHT5O7xDxM7MC3d\nVqO57TMCGP9vkGf/+Eeo00sE5JyWnHauWDCnbIBoenGXuSqwm8NG5j7UWHpi\nvYP87E/BZtc6Fy06UW4Ccqqvu98E3LsL1ahMagiqe1m6+SrJ7K0sV/foNA2r\nY3bhtZeK7kGDytg4McvRjP02hgCmd+JPq2IZBjX7QIgooMRoc6ua2ejS4Itw\nSa97AZGJc/X/Rd6eY5F+U6HLBtHO7R+mdJoN2nweGYb6vnYV9efAFxYkMxrV\no4YpkcbX5P/Kc/OrOw5frtqU6FJdnCMAdiCDUT/31ngW7M6z3LjZJyPAj3bf\n/UkrQJmH37VvWCqdZB5JAmo4NFydfwvISYv1jpv+67sOYGvbCe7vJQEBkwjT\n4+K68wmRDrb4QSTZOoojwn0OG4gnM7nycmNVcmcYNUcxqGApYvDhwCcBbo3o\nlpZThx/h4SWI4CTxwiF9hZTIn0v54NqVFOWZT7BvAVhGYoCxCCfoF6vMVNYG\naQsAkxPtkYM58vuMP4NHt2zJiCi7Nz6DX5oV+DcDy0yjzfy+kIvqNY5Qb33s\nz4XriLsg8pzt0DYuYpoDtCM8N4TNLuuDrhunND8mCGjGKXFkZrlzXygPzr8J\n2Zmp\r\n=HtuX\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGTET1QCZ3jlZJDKHDYATdcFxaiGLO5pYy0ZOkEXxUwjAiA0x1H+X0KxLUgUVK3Ba1KHQMnNtk1/fBddHsiGiZrrjw=="}]},"_npmUser":{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},"directories":{},"maintainers":[{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},{"name":"mikenikles","email":"mike@esladvice.com"},{"name":"arian.hosseinzadeh","email":"aryan.hosseinzadeh@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-react_1.4.6_1631789439972_0.05089577859884664"},"_hasShrinkwrap":false},"1.4.7":{"name":"html-to-react","version":"1.4.7","description":"A lightweight library that converts raw HTML to a React DOM structure.","main":"index.js","scripts":{"test":"eslint . && ./node_modules/mocha/bin/mocha","test-coverage":"eslint . && nyc npm test && nyc report --reporter=text-lcov | coveralls","test-html-coverage":"eslint . && nyc --reporter=html npm test; open coverage/index.html"},"repository":{"type":"git","url":"git+https://github.com/aknuds1/html-to-react.git"},"keywords":["react","react-component","html"],"author":{"name":"Arve Knudsen, Mike Nikles"},"license":"MIT","bugs":{"url":"https://github.com/aknuds1/html-to-react/issues"},"homepage":"https://github.com/aknuds1/html-to-react","config":{"blanket":{"pattern":[""],"data-cover-never":["node_modules","test"]}},"dependencies":{"domhandler":"^4.0","htmlparser2":"^7.0","lodash.camelcase":"^4.3.0","ramda":"^0.27.1"},"peerDependencies":{"react":"^16.0 || ^17.0"},"devDependencies":{"coveralls":"^3.1.0","eslint":"^7.11.0","mocha":"^9.1.0","mocha-lcov-reporter":"^1.2.0","nyc":"^15.1.0","react":"^17.0.1","react-dom":"^17.0.1"},"volta":{"node":"16.9.1"},"gitHead":"7969f3de7417eebbcdc3b4aba24320850cdeca05","_id":"html-to-react@1.4.7","_nodeVersion":"16.9.1","_npmVersion":"7.21.1","dist":{"integrity":"sha512-adtKiee5AtnuUhdB8bxbASRP2bW/A0OrlwysEuqZxXdURb0/1XR0m/woE1V5cJA1U5nyzAvk/PdFNO9S73DE/g==","shasum":"a58129c1b77c6d4e047a647372bd194e25420b89","tarball":"https://registry.npmjs.org/html-to-react/-/html-to-react-1.4.7.tgz","fileCount":21,"unpackedSize":59101,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhQzzwCRA9TVsSAnZWagAAN5QP/3VFwUk59/kNitUKwpvH\ncuJD/s0M1y+qz/4N2SMLNLmDQK/fERd6NzXOfo8Y+ThJbfoHFRoKFrXGm4/X\nJD3a0vfe1DdhftCGAAUrsVKkme6uJrpmaRglWwZmhc5nL3RikuslKCzqtgDL\njJyAUDVrgTY3aRDxEUdaUVoDAVoH9FPpGINYkXLErb2VW3cfuKotMkRzQeuI\nDHZGrj7pi83+/XXccUS71YnGy6WZdi5xqb3jJLMH7tKfv/VQMNQn6yYIFCWq\nk4LNV2m56QsGMgm3h77GNo75VqcDFqL7msORkbdvv2ppcoVSVocBZMn6K095\nY01yuA8t8gb44XymE+Zt8RCN4NaO5j8bQRCIqrQ0dGJZ9M2AirzLrzwOndNC\npmQGjI8tiDuQKDV+RPaQ5Nflq3yTXyhbqBTSwdDcc2v99mVMuOy2H2uvI4v4\nFtpYleUYZAPwMp6HspBr4aCcMm2f9+xpbwhe9/wSoZXZkNm/iNEhxrX5pGGa\nFEPWtADML1i4bLG5CQxqSVzvJzFmgRQqNabLVEOFxaheyq6YyVWHIeSGFxwV\naRGTxCXZriqFo6Toq7Yc164I3bMRLqJKAZ3n+odQSZG9yscvYu5lrDdG7LtC\ndTwRpJfW7rW8+/waLrnVesqpap3mOjik0okbl0l+NAXd7rJpnIJ/whwLmbyZ\nobzB\r\n=QMSO\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCk7NGLxv7lIxf3b4rvPZmRO4qXhlr0A1Mo/rGHF52BwgIhALn95sawG/oILUqGzVVD2ckuAZZJqR7GDGYEu4O0UKdA"}]},"_npmUser":{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},"directories":{},"maintainers":[{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},{"name":"mikenikles","email":"mike@esladvice.com"},{"name":"arian.hosseinzadeh","email":"aryan.hosseinzadeh@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-react_1.4.7_1631796464584_0.37542485647574053"},"_hasShrinkwrap":false},"1.4.8":{"name":"html-to-react","version":"1.4.8","description":"A lightweight library that converts raw HTML to a React DOM structure.","main":"index.js","scripts":{"test":"eslint . && ./node_modules/mocha/bin/mocha","test-coverage":"eslint . && nyc npm test && nyc report --reporter=lcov","test-html-coverage":"eslint . && nyc --reporter=html npm test; open coverage/index.html"},"repository":{"type":"git","url":"git+https://github.com/aknuds1/html-to-react.git"},"keywords":["react","react-component","html"],"author":{"name":"Arve Knudsen, Mike Nikles"},"license":"MIT","bugs":{"url":"https://github.com/aknuds1/html-to-react/issues"},"homepage":"https://github.com/aknuds1/html-to-react","config":{"blanket":{"pattern":[""],"data-cover-never":["node_modules","test"]}},"dependencies":{"domhandler":"^4.0","htmlparser2":"^7.0","lodash.camelcase":"^4.3.0","ramda":"^0.28.0"},"peerDependencies":{"react":"^16.0 || ^17.0"},"devDependencies":{"coveralls":"^3.1.0","eslint":"^8.1","mocha":"^9.1.0","mocha-lcov-reporter":"^1.2.0","nyc":"^15.1.0","react":"^17.0.1","react-dom":"^17.0.1"},"volta":{"node":"16.13.2"},"gitHead":"71a0b96e25e8d6606c53470b7bc9fc3d71adc470","_id":"html-to-react@1.4.8","_nodeVersion":"16.13.2","_npmVersion":"8.1.2","dist":{"integrity":"sha512-BDOPUYTej5eiOco0V0wxJ5FS+Zckp2O0kb13X1SxQFzyusIeUmnxAK0Cl5M6692bmGBs1WBjh9qF3oQ2AJUZmg==","shasum":"1a78fe0ad50fe30b7e62f4e90fdff2f2c043eb1a","tarball":"https://registry.npmjs.org/html-to-react/-/html-to-react-1.4.8.tgz","fileCount":22,"unpackedSize":59903,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh8C6+CRA9TVsSAnZWagAAVVwQAIWtvnG1Mk1lcln1sxAS\nYY0g3IOaFAGG543u24geYOBCDF395p+Xpoy76mD/MR3XxLqugQ5zA95Hkzz7\nFO0ZxQi96F084hB2HrDY13ARut7ZyEtE9N24NJKXLtZ7F29qIjmp0KtqNtB5\nwPRx0bfbAjBBivoMIgsIhQCTjf0l8TSZ8nIijFRUPQfFaeikfCAKe1txGAcM\noqwRHPdVeSPLFbDC8xx9vQEu9lB3OveqaveFEye87sjM49+JP9KwM+4xodJK\nrHPQthj60GE/iWjwTgZkbc11fXsKdO4wprO7gl7ib1e4vXyY1Dfyc5Ji60b3\ntgU2koZ004BbaK0lpG1dn06EFS4HrTZFIVG4AHoSSGMwFbvsRYPc5D+PEgCk\nJ3Q9VLH+p0mQGEGTOSzLX0yButpO30M2iZm3KTqfWtk+ar2I1ChsRmgbjxoJ\nDVC8kYgiG0u5+tnvkHKfo4dmJi8NmEtI2fdOmeRoT/7GeF44EWNN3phwcBR3\ndK5ZR5p8kzEkYBjeBc2+SkiaCt6e5ENqFsSDTxaJSZO18CvRgvtFEUZFAFru\nAotV2cQt0yO31rdzOXdgNXaflkGJPGLKg13u2oWyRkEYgTOmNQbkYAEKc393\n6/W+RIsmPyCoBjinGAtIfePnLfwE8XVKk1UML1fdSAx9YUD8vBRHvQrJsUwj\nAUJF\r\n=EFFp\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDqPGKKyIVKpYn2JkbXSewQRGQN6XlO1R16Gl/zA5vnAAIhAMSB2FCyMiXsQJWc97xYh00iuq3A/DknRDBkhiZhgWkx"}]},"_npmUser":{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},"directories":{},"maintainers":[{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},{"name":"mikenikles","email":"mikenikles@gmail.com"},{"name":"arian.hosseinzadeh","email":"aryan.hosseinzadeh@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-react_1.4.8_1643130558104_0.9173265160562323"},"_hasShrinkwrap":false},"1.5.0":{"name":"html-to-react","version":"1.5.0","description":"A lightweight library that converts raw HTML to a React DOM structure.","main":"index.js","scripts":{"test":"eslint . && ./node_modules/.bin/mocha","test-coverage":"eslint . && nyc npm test && nyc report --reporter=lcov","test-html-coverage":"eslint . && nyc --reporter=html npm test; open coverage/index.html"},"repository":{"type":"git","url":"git+https://github.com/aknuds1/html-to-react.git"},"keywords":["react","react-component","html"],"author":{"name":"Arve Knudsen, Mike Nikles"},"license":"MIT","bugs":{"url":"https://github.com/aknuds1/html-to-react/issues"},"homepage":"https://github.com/aknuds1/html-to-react","config":{"blanket":{"pattern":[""],"data-cover-never":["node_modules","test"]}},"dependencies":{"domhandler":"^5.0","htmlparser2":"^8.0","lodash.camelcase":"^4.3.0"},"devDependencies":{"coveralls":"^3.1.0","eslint":"^8.1","mocha":"^10.0","mocha-lcov-reporter":"^1.2.0","nyc":"^15.1.0","react":"^18.0","react-dom":"^18.0"},"volta":{"node":"18.4.0"},"gitHead":"ecaea2db7de4f924bbc6533d8e12d60570c2bfaf","_id":"html-to-react@1.5.0","_nodeVersion":"18.4.0","_npmVersion":"8.12.1","dist":{"integrity":"sha512-tjihXBgaJZRRYzmkrJZ/Qf9jFayilFYcb+sJxXXE2BVLk2XsNrGeuNCVvhXmvREULZb9dz6NFTBC96DTR/lQCQ==","shasum":"6e0cf47ae1b091ba2f28a3832389fbce4d199ccc","tarball":"https://registry.npmjs.org/html-to-react/-/html-to-react-1.5.0.tgz","fileCount":21,"unpackedSize":59067,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEWT5ATtjidvCVHcyoeyvA0DMzRh56x2uZk8IBqrIeGzAiAfnMC0HzarR//oJvsfZLbiHpOBqCObTVFV5bdNwgwSbA=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJivqu3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrZBxAAhjy9qGG/xpsFeFnZmrAqLlr2Ev9ePkEypSCFRtQCqqssqmfH\r\nvbx3BVnDobM0OIFsZjk6WJhNx2CwqfMwkFsF+DoDUeEN9UBQOXygyj/BmcAz\r\ny3/qM6+XGvU4fl/7eJ3jrOdcelPOQBVOnf5jwr/B7SN+zSxW8nNodhHOdeZR\r\nDoY69iCaCeyH4DkcdJqK/vHAGqPam0tAO448AV+b23M1LUodvfRI8kGIKtLz\r\na7uc5q+nT4oQDa27nqqwl6XST2Fy9eRWlacg1JOXjZfkJsvRhkHJAlEe9ak7\r\nPUaRLi7XnSv0i+81f07CcQEd1AoxEmP4e0BzUwQ2+LC5oe+Z40/P171VYXuK\r\nnYCVHiiW/uE/X/FzQ3eMw27K19IgeKAgbKWk5PifgC3T1MZPPDCEAwvKZ+P2\r\nhTDDWW+AJ9k1XLR7/3S3rv/vbEA4s3IOIYZDMQO8Jn907k8ITfsJvsiJz/hL\r\nwiHr9gROisFKF6sTSv1BKRXDP1ojXUD8UNDGu80+zA3wiuKlBnWzzwS24HzQ\r\nkJvNiODReERFQ30kvaR97DHuEUlUrjzrSh3mFz04hxBVhWipDZQ38ki16rR9\r\nQAzCDB5bZrjLfBX/lHgSqmP5BcUwY1YmoT/7/sSpG69IKA+DqX7H0BWUU1/T\r\nyTq/r3f4yvlrSy5+ByyxntoKtV+P2XNzdmQ=\r\n=akd9\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},"directories":{},"maintainers":[{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},{"name":"mikenikles","email":"mikenikles@gmail.com"},{"name":"arian.hosseinzadeh","email":"aryan.hosseinzadeh@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-react_1.5.0_1656662967094_0.8177095457535222"},"_hasShrinkwrap":false},"1.5.1":{"name":"html-to-react","version":"1.5.1","description":"A lightweight library that converts raw HTML to a React DOM structure.","main":"index.js","scripts":{"test":"eslint . && ./node_modules/.bin/mocha","test-coverage":"eslint . && nyc npm test && nyc report --reporter=lcov","test-html-coverage":"eslint . && nyc --reporter=html npm test; open coverage/index.html"},"repository":{"type":"git","url":"git+https://github.com/aknuds1/html-to-react.git"},"keywords":["react","react-component","html"],"author":{"name":"Arve Knudsen, Mike Nikles"},"license":"MIT","bugs":{"url":"https://github.com/aknuds1/html-to-react/issues"},"homepage":"https://github.com/aknuds1/html-to-react","config":{"blanket":{"pattern":[""],"data-cover-never":["node_modules","test"]}},"dependencies":{"domhandler":"^5.0","htmlparser2":"^8.0","lodash.camelcase":"^4.3.0","react":"^18.0"},"devDependencies":{"coveralls":"^3.1.0","eslint":"^8.1","mocha":"^10.0","mocha-lcov-reporter":"^1.2.0","nyc":"^15.1.0","react-dom":"^18.0"},"volta":{"node":"18.12.1"},"gitHead":"268e5d50944b0c804277deb160da5c78172d1c96","_id":"html-to-react@1.5.1","_nodeVersion":"19.8.1","_npmVersion":"9.6.4","dist":{"integrity":"sha512-dFLZRBjpMk89Ukwa6Fq7oApinn3TEZD0gGFUkmI9DqNQxTjN7gF9owhyu+t8h+bpEZrX2DMxZLYjEfw0C/iL7A==","shasum":"82ea8e5948ae15778a22888201add49e15bf8888","tarball":"https://registry.npmjs.org/html-to-react/-/html-to-react-1.5.1.tgz","fileCount":21,"unpackedSize":59884,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFgiJfiwSb0bT4vl8r2XeuQwF2zll1l4fYd3jrfM3lb+AiBii4wFHnE2jZvPcIE4+nZMEJDhAkxlL7qUWVWvEzPVyw=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkMDG7ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr87g/9EzRSjKWZ7C5X5jpV7elEPvDY/7Q/TdAw6huHRWudkFevK/IY\r\nuBMo3XCkJsZBUlYnl9wYoZYUtWq5ah5+O09aMw3VJGy7rMvOp9ZtDrlTMa2x\r\ndWQjGSZTrDJV+fyGbv0XTdS6dDK6Id0nLRu1ctC1obNPUyIYUxMfJVkOLivA\r\nmjTilpRoZvzofNF2Q1Rr9vZkixbuoOIm3I4uwFJbjUgR39VTeAfJgXa7GlHs\r\noshsuaafCYcf/2st5mbBVf/CUYShF4rJFwsqOv7wTBYi4hTGr8oQHztnB3HR\r\nrvdWps7ZyrBvkTdQCc7CWrXImDEuOB8Gq++vMDYPlwU/JtjYEw02wWhno1mQ\r\nodypjmpQasTxVId/UMS3zkQLq2STByr26fe2kZ3OM3hgYlKpAjdZX2lZ+N7y\r\nld9KMcQtphi7IMY5qa4TO7hW+9EeFOPrn026yUpetmW/j7tijHjkV6nmtAS0\r\nGRuxuxcSgDE1WE73EM8+NqPpcVHipGZa08GUfjLo/KdBLpXDqQeUk0CjyjNz\r\nRolTrO43XrVWIC11Hm5cRNeGEZudFfoYC3khQDXdS/0zVD9ZWyiWYKmHRN+R\r\nP43EQazY2lJeyt58pe1VOdptYbRkBMDhBKuqm2qLCZfgW796yZ3xQpPKcsPp\r\nsCzFj3IAERyoBcyOEP0foc3Iep0vIT5NX5c=\r\n=1aue\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},"directories":{},"maintainers":[{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},{"name":"mikenikles","email":"mikenikles@gmail.com"},{"name":"arian.hosseinzadeh","email":"aryan.hosseinzadeh@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-react_1.5.1_1680880059085_0.8008862198168303"},"_hasShrinkwrap":false},"1.6.0":{"name":"html-to-react","version":"1.6.0","description":"A lightweight library that converts raw HTML to a React DOM structure.","main":"index.js","types":"types/index.d.ts","scripts":{"test":"eslint . && ./node_modules/.bin/mocha","test-coverage":"eslint . && nyc npm test && nyc report --reporter=lcov","test-html-coverage":"eslint . && nyc --reporter=html npm test; open coverage/index.html"},"repository":{"type":"git","url":"git+https://github.com/aknuds1/html-to-react.git"},"keywords":["react","react-component","html"],"author":{"name":"Arve Knudsen, Mike Nikles"},"license":"MIT","bugs":{"url":"https://github.com/aknuds1/html-to-react/issues"},"homepage":"https://github.com/aknuds1/html-to-react","config":{"blanket":{"pattern":[""],"data-cover-never":["node_modules","test"]}},"peerDependencies":{"react":"^0.13.0 || ^0.14.0 || >=15"},"dependencies":{"domhandler":"^5.0","htmlparser2":"^8.0","lodash.camelcase":"^4.3.0"},"devDependencies":{"@types/mocha":"^10.0.1","@types/react":"^18.0.33","@types/react-dom":"^18.0.11","coveralls":"^3.1.0","eslint":"^8.1","mocha":"^10.0","mocha-lcov-reporter":"^1.2.0","nyc":"^15.1.0","react":"^18.0","react-dom":"^18.0","ts-node":"^10.9.1","typescript":"^5.0.3"},"volta":{"node":"20.2.0"},"gitHead":"efd0bf960824ca0fa2421d02fd6f1b54a8612743","_id":"html-to-react@1.6.0","_nodeVersion":"20.2.0","_npmVersion":"9.6.6","dist":{"integrity":"sha512-W7HvCu2fipgz3F7fpEtIt2Ty6XcqFGQXOorR4+HQAk72y9mTtUH3BmJ43BEvXQHO+bt//z1Hbfe6JzojpSC/9w==","shasum":"568c38b85e81086ed1dedacd031f42dd5616b557","tarball":"https://registry.npmjs.org/html-to-react/-/html-to-react-1.6.0.tgz","fileCount":38,"unpackedSize":63121,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAbdpvObanaUJsSLnj4LO4XyZvgdZT7ii3lf9uApaygSAiEAyGA0XXMp2EuqIfl0aptarP40SJD7PkoUjZRgd6lcTFk="}]},"_npmUser":{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},"directories":{},"maintainers":[{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},{"name":"mikenikles","email":"mikenikles@gmail.com"},{"name":"arian.hosseinzadeh","email":"aryan.hosseinzadeh@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-react_1.6.0_1685888222146_0.5471918557229809"},"_hasShrinkwrap":false},"1.7.0":{"name":"html-to-react","version":"1.7.0","description":"A lightweight library that converts raw HTML to a React DOM structure.","main":"index.js","types":"types/index.d.ts","scripts":{"test":"eslint . && ./node_modules/.bin/mocha","test-coverage":"eslint . && nyc npm test && nyc report --reporter=lcov","test-html-coverage":"eslint . && nyc --reporter=html npm test; open coverage/index.html"},"repository":{"type":"git","url":"git+https://github.com/aknuds1/html-to-react.git"},"keywords":["react","react-component","html"],"author":{"name":"Arve Knudsen, Mike Nikles"},"license":"MIT","bugs":{"url":"https://github.com/aknuds1/html-to-react/issues"},"homepage":"https://github.com/aknuds1/html-to-react","config":{"blanket":{"pattern":[""],"data-cover-never":["node_modules","test"]}},"peerDependencies":{"react":"^0.13.0 || ^0.14.0 || >=15"},"dependencies":{"domhandler":"^5.0","htmlparser2":"^9.0","lodash.camelcase":"^4.3.0"},"devDependencies":{"@types/mocha":"^10.0.1","@types/react":"^18.0.33","@types/react-dom":"^18.0.11","coveralls":"^3.1.0","eslint":"^8.1","mocha":"^10.0","mocha-lcov-reporter":"^1.2.0","nyc":"^15.1.0","react":"^18.0","react-dom":"^18.0","ts-node":"^10.9.1","typescript":"^5.0.3"},"volta":{"node":"20.2.0"},"gitHead":"aa4bd98532ff5d04fa5c6bb99f0adee23f164d77","_id":"html-to-react@1.7.0","_nodeVersion":"20.2.0","_npmVersion":"9.6.6","dist":{"integrity":"sha512-b5HTNaTGyOj5GGIMiWVr1k57egAZ/vGy0GGefnCQ1VW5hu9+eku8AXHtf2/DeD95cj/FKBKYa1J7SWBOX41yUQ==","shasum":"1664a0233a930ab1b12c442ddef0f1b72e7459f4","tarball":"https://registry.npmjs.org/html-to-react/-/html-to-react-1.7.0.tgz","fileCount":38,"unpackedSize":64192,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHEiogxOm1vUxu4b707QiJ+u3WtFTS5HJ54fETXB7P9aAiBNPwLFXfaRtiwlHu6143a1Kk8cRBKmlW4WVHT/kNbjPg=="}]},"_npmUser":{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},"directories":{},"maintainers":[{"name":"arve.knudsen","email":"arve.knudsen@gmail.com"},{"name":"mikenikles","email":"mikenikles@gmail.com"},{"name":"arian.hosseinzadeh","email":"aryan.hosseinzadeh@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-react_1.7.0_1696408102896_0.4460788911837341"},"_hasShrinkwrap":false}},"homepage":"https://github.com/aknuds1/html-to-react","keywords":["react","react-component","html"],"repository":{"type":"git","url":"git+https://github.com/aknuds1/html-to-react.git"},"author":{"name":"Arve Knudsen, Mike Nikles"},"bugs":{"url":"https://github.com/aknuds1/html-to-react/issues"},"license":"MIT","readmeFilename":"README.md","users":{"igsys":true,"cookch10":true,"scronide":true,"alex-cory":true,"outofcoffee":true,"tongjieme":true,"robertpenner":true,"sivan":true,"guzgarcia":true,"majioa":true,"nmccready":true}}