{"maintainers":[{"name":"anonymous","email":"privateomega@protonmail.com"}],"keywords":["html","docx","html-to-docx","html to docx","office","word"],"dist-tags":{"latest":"1.8.0"},"author":{"name":"privateOmega","email":"privateOmega@protonmail.com"},"description":"HTML to DOCX converter","readme":"html-to-docx\n============\n\n[![NPM Version][npm-image]][npm-url]\n\nhtml-to-docx is a js library for converting HTML documents to DOCX format supported by Microsoft Word 2007+, LibreOffice Writer, Google Docs, WPS Writer etc.\n\nIt was inspired by [html-docx-js] project but mitigates the problem of documents generated being non-compatiable with word processors like Google Docs and libreOffice Writer that doesn't support [altchunks] feature.\n\nhtml-to-docx earlier used to use [libtidy] to clean up the html before parsing, but had to remove it since it was causing so many dependency issues due to node-gyp.\n\n### Disclaimer\n\nEven though there is an instance of html-to-docx running in production, please ensure that it covers all the cases that you might be encountering usually, since this is not a complete solution.\n\nCurrently it doesn't work with browser directly, but it was tested against React.\n\n## Installation\n\nUse the npm to install foobar.\n\n```bash\nnpm install html-to-docx\n```\n\n## Usage\n\n```js\nawait HTMLtoDOCX(htmlString, headerHTMLString, documentOptions, footerHTMLString)\n```\n\nfull fledged examples can be found under `example/`\n\n### Parameters\n\n- `htmlString` <[String]> clean html string equivalent of document content.\n- `headerHTMLString` <[String]> clean html string equivalent of header. Defaults to `<p></p>` if header flag is `true`.\n- `documentOptions` <?[Object]>\n  - `orientation` <\"portrait\"|\"landscape\"> defines the general orientation of the document. Defaults to portrait.\n  - `pageSize` <?[Object]> Defaults to U.S. letter portrait orientation.\n    - `width` <[Number]> width of the page for all pages in this section in [TWIP]. Defaults to 12240. Maximum 31680. Supports equivalent measurement in [pixel], [cm] or [inch].\n    - `height` <[Number]> height of the page for all pages in this section in [TWIP]. Defaults to 15840. Maximum 31680. Supports equivalent measurement in [pixel], [cm] or [inch].\n  - `margins` <?[Object]>\n    - `top` <[Number]> distance between the top of the text margins for the main document and the top of the page for all pages in this section in [TWIP]. Defaults to 1440. Supports equivalent measurement in [pixel], [cm] or [inch].\n    - `right` <[Number]> distance between the right edge of the page and the right edge of the text extents for this document in [TWIP]. Defaults to 1800. Supports equivalent measurement in [pixel], [cm] or [inch].\n    - `bottom` <[Number]> distance between the bottom of text margins for the document and the bottom of the page in [TWIP]. Defaults to 1440. Supports equivalent measurement in [pixel], [cm] or [inch].\n    - `left` <[Number]> distance between the left edge of the page and the left edge of the text extents for this document in [TWIP]. Defaults to 1800. Supports equivalent measurement in [pixel], [cm] or [inch].\n    - `header` <[Number]> distance from the top edge of the page to the top edge of the header in [TWIP]. Defaults to 720. Supports equivalent measurement in [pixel], [cm] or [inch].\n    - `footer` <[Number]> distance from the bottom edge of the page to the bottom edge of the footer in [TWIP]. Defaults to 720. Supports equivalent measurement in [pixel], [cm] or [inch].\n    - `gutter` <[Number]> amount of extra space added to the specified margin, above any existing margin values. This setting is typically used when a document is being created for binding in [TWIP]. Defaults to 0. Supports equivalent measurement in [pixel], [cm] or [inch].\n  - `title` <?[String]> title of the document.\n  - `subject` <?[String]> subject of the document.\n  - `creator` <?[String]> creator of the document. Defaults to `html-to-docx`\n  - `keywords` <?[Array]<[String]>> keywords associated with the document. Defaults to ['html-to-docx'].\n  - `description` <?[String]> description of the document.\n  - `lastModifiedBy` <?[String]> last modifier of the document. Defaults to `html-to-docx`.\n  - `revision` <?[Number]> revision of the document. Defaults to `1`.\n  - `createdAt` <?[Date]> time of creation of the document. Defaults to current time.\n  - `modifiedAt` <?[Date]> time of last modification of the document. Defaults to current time.\n  - `headerType` <\"default\"|\"first\"|\"even\"> type of header. Defaults to `default`.\n  - `header` <?[Boolean]> flag to enable header. Defaults to `false`.\n  - `footerType` <\"default\"|\"first\"|\"even\"> type of footer. Defaults to `default`.\n  - `footer` <?[Boolean]> flag to enable footer. Defaults to `false`.\n  - `font` <?[String]> font name to be used. Defaults to `Times New Roman`.\n  - `fontSize` <?[Number]> size of font in HIP(Half of point). Defaults to `22`. Supports equivalent measure in [pt].\n  - `complexScriptFontSize` <?[Number]> size of complex script font in HIP(Half of point). Defaults to `22`. Supports equivalent measure in [pt].\n  - `table` <?[Object]>\n    - `row` <?[Object]>\n      - `cantSplit` <?[Boolean]> flag to allow table row to split across pages. Defaults to `false`.\n  - `pageNumber` <?[Boolean]> flag to enable page number in footer. Defaults to `false`. Page number works only if footer flag is set as `true`.\n  - `skipFirstHeaderFooter` <?[Boolean]> flag to skip first page header and footer. Defaults to `false`.\n  - `lineNumber` <?[Boolean]> flag to enable line numbering. Defaults to `false`.\n  - `lineNumberOptions` <?[Object]>\n    - `start` <[Number]> start of the numbering - 1. Defaults to `0`.\n    - `countBy` <[Number]> skip numbering in how many lines in between + 1. Defaults to `1`.\n    - `restart` <\"continuous\"|\"newPage\"|\"newSection\"> numbering restart strategy. Defaults to `continuous`.\n  - `numbering` <?[Object]>\n    - `defaultOrderedListStyleType` <?[String]> default ordered list style type. Defaults to `decimal`.\n  - `decodeUnicode` <?[Boolean]> flag to enable unicode decoding of header, body and footer. Defaults to `false`.\n  - `lang` <?[String]> language localization code for spell checker to work properly. Defaults to `en-US`.\n- `footerHTMLString` <[String]> clean html string equivalent of footer. Defaults to `<p></p>` if footer flag is `true`.\n\n### Returns\n\n<[Promise]<[Buffer]|[Blob]>>\n\n## Notes\n\nCurrently page break can be implemented by having div with classname \"page-break\" or style \"page-break-after\" despite the values of the \"page-break-after\", and contents inside the div element will be ignored. `<div class=\"page-break\" style=\"page-break-after: always;\"></div>`\n\n\nCSS list-style-type for `<ol>` element are now supported. Just do something like this in the HTML:\n```\n  <ol style=\"list-style-type:lower-alpha;\">\n    <li>List item</li>\n    ...\n  </ol>\n```\nList of supported list-style-types:\n- upper-alpha, will result in `A. List item`\n- lower-alpha, will result in `a. List item`\n- upper-roman, will result in `I. List item`\n- lower-roman, will result in `i. List item`\n- lower-alpha-bracket-end, will result in `a) List item`\n- decimal-bracket-end, will result in `1) List item`\n- decimal-bracket, will result in `(1) List item`\n- decimal, **(the default)** will result in `1. List item`\n\nAlso you could add attribute `data-start=\"n\"` to start the numbering from the n-th.\n\n`<ol data-start=\"2\">` will start the numbering from ( B. b. II. ii. 2. )\n\n\nFont family doesnt work consistently for all word processor softwares\n\n- Word Desktop work as intended\n- LibreOffice ignores the fontTable.xml file, and finds a font by itself\n- Word Online ignores the fontTable.xml file, and finds closest font in their font library\n\n## Contributing\n\nPull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.\n\nPlease make sure to branch new branches off of develop for contribution.\n\n## Support\n\n[![\"Buy Me A Coffee\"](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://www.buymeacoffee.com/privateOmega)\n\n## License\n\nMIT\n\n[npm-image]: https://img.shields.io/npm/v/html-to-docx.svg\n[npm-url]: https://npmjs.org/package/html-to-docx\n[html-docx-js]: https://github.com/evidenceprime/html-docx-js \"html-docx-js\"\n[altchunks]: https://docs.microsoft.com/en-us/dotnet/api/documentformat.openxml.wordprocessing.altchunk?view=openxml-2.8.1 \"altchunks\"\n[libtidy]: https://github.com/jure/node-libtidy \"libtidy\"\n[String]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#String_type \"String\"\n[Object]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object \"Object\"\n[Number]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Number_type \"Number\"\n[TWIP]: https://en.wikipedia.org/wiki/Twip \"TWIP\"\n[Array]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array \"Array\"\n[Date]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date \"Date\"\n[Boolean]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Boolean_type \"Boolean\"\n[Promise]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise \"Promise\"\n[Buffer]: https://nodejs.org/api/buffer.html#buffer_buffer \"Buffer\"\n[Blob]: https://developer.mozilla.org/en-US/docs/Web/API/Blob \"Blob\"\n[pixel]: https://en.wikipedia.org/wiki/Pixel#:~:text=Pixels%2C%20abbreviated%20as%20%22px%22,what%20screen%20resolution%20views%20it. \"pixel\"\n[cm]: https://en.wikipedia.org/wiki/Centimetre \"cm\"\n[inch]: https://en.wikipedia.org/wiki/Inch \"inch\"\n[pt]: https://en.wikipedia.org/wiki/Point_(typography) \"pt\"\n\n## Contributors\n\n<a href=\"https://github.com/privateomega/html-to-docx/graphs/contributors\">\n  <img src=\"https://contrib.rocks/image?repo=privateomega/html-to-docx\" />\n</a>\n\nMade with [contrib.rocks](https://contrib.rocks).","repository":{"type":"git","url":"git+https://github.com/privateOmega/html-to-docx.git"},"bugs":{"url":"https://github.com/privateOmega/html-to-docx/issues"},"license":"MIT","versions":{"1.1.0":{"name":"html-to-docx","version":"1.1.0","description":"HTML to DOCX converter","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","release":"standard-version","lint":"eslint .","prettier:check":"prettier --check '**/*.{js}'","validate":"run-s lint prettier:check"},"repository":{"type":"git","url":"git+https://github.com/privateOmega/html-to-docx.git"},"author":{"name":"privateOmega","email":"privateOmega@protonmail.com"},"license":"MIT","bugs":{"url":"https://github.com/privateOmega/html-to-docx/issues"},"homepage":"https://github.com/privateOmega/html-to-docx#readme","devDependencies":{"@commitlint/cli":"^8.3.5","@commitlint/config-conventional":"^8.3.4","eslint":"^6.8.0","eslint-config-airbnb":"^18.1.0","eslint-config-prettier":"^6.11.0","eslint-plugin-import":"^2.20.2","eslint-plugin-jsx-a11y":"^6.2.3","eslint-plugin-prettier":"^3.1.3","eslint-plugin-react":"^7.19.0","eslint-plugin-react-hooks":"^2.5.0","husky":"^4.2.5","lint-staged":"^10.2.6","npm-run-all":"^4.1.5","prettier":"^2.0.5","standard-version":"^8.0.0"},"dependencies":{"escape-html":"^1.0.3","html-to-vdom":"^0.7.0","jszip":"^3.4.0","virtual-dom":"^2.1.1","xmlbuilder2":"^2.1.2"},"config":{"commitizen":{"path":"cz-conventional-changelog"}},"husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged"}},"lint-staged":{"src/**/*.js":["prettier --write","eslint --fix","git add"]},"gitHead":"0506e56add4579a504777f4fc3b6fcfe3598e18e","_id":"html-to-docx@1.1.0","_nodeVersion":"10.19.0","_npmVersion":"6.13.4","dist":{"integrity":"sha512-t4aR58GN5tDxjswUEZdsilCRWmXy5Zbv0qtO4Gncj1YhKt1rLy0K8otFjmjpMNFVxdYavt3KbJNn9ZHmOOyAlw==","shasum":"f2faa296fed39060c9a342f4bf91034793f90087","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/html-to-docx/-/html-to-docx-1.1.0.tgz","fileCount":25,"unpackedSize":74142,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJez4DYCRA9TVsSAnZWagAAQpUP/2kiMVqJsVRqV9Xqpr9y\nE0wNVcI1jqIX9w6l2Kp4Z3LXPvmygWlRmP7cdYBsL2zcGqG592OKkuw29oDm\nUXRhkDEGA0es7tC2wmQANGm/GoPWAkpPpCR0iSV87hNoWwLnIp0wvSamFj2A\n7dNvzqT8R0/x3+F93pbU0A+BkG2cIHUhTdzWQRSrwP9uvojUkp36p+LWfvOB\nXTZT05UXo4e7wKH4n7kC8NrZGt48cPv9L6BGndSUyRfOuPWmQrVPnvqmYQlF\nZWa/uTxJuK7juFXG1Xq6r9D29ztZJJWpeqxT/zjYAT/EceF/G/Iqrquh3fzh\niIf2C0JBvh/wGRQcdR0+n1peZRylEpNTJahZXhU9IQ+MPSirV1/67phfBm17\nUbeadJwAJzAFB2NJDIk9gYHoKBmjResU+WoxrdEyBuoYbGod01qHxbzjclpg\nvT9GnJfbbbAeVD8svSLxwMynyfnmdNCQJoGc5dgHt/M+15UoJOwD2d2BiJsQ\nPCBXUqgzLL/unLEAHrNJAdA9iXY4KHhbnwaD/lKhGvt4y17BFh+sM9rgvprs\nXY7YfK/RirtuWekt5ysnpMtCYHrP2tEQTpKrpDUo6sCtnT+C4ywO5dodqKkh\nZj14DyN1sba5BqzjqZrfmsqNxYqtXjM03k6Z6vxQ4WBon25kIUoEVT4aBh25\nxoPM\r\n=nCr9\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDBmOwN8a3Zi/d7I5TECpYUkij36zgdCMWETQ9UVwoWYwIgfB5ey3U1JYN1k3Q+a93f3k5lycUi39L7aaKs5QWNyOo="}]},"maintainers":[{"name":"anonymous","email":"privateomega@protonmail.com"}],"_npmUser":{"name":"anonymous","email":"privateomega@protonmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-docx_1.1.0_1590657239927_0.9825010929848006"},"_hasShrinkwrap":false},"1.1.1":{"name":"html-to-docx","version":"1.1.1","description":"HTML to DOCX converter","main":"dist/html-to-docx.cjs.js","module":"dist/html-to-docx.esm.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","release":"standard-version","lint":"eslint .","prettier:check":"prettier --check '**/*.{js}'","validate":"run-s lint prettier:check","build":"rollup -c"},"repository":{"type":"git","url":"git+https://github.com/privateOmega/html-to-docx.git"},"author":{"name":"privateOmega","email":"privateOmega@protonmail.com"},"license":"MIT","bugs":{"url":"https://github.com/privateOmega/html-to-docx/issues"},"homepage":"https://github.com/privateOmega/html-to-docx#readme","devDependencies":{"@commitlint/cli":"^8.3.5","@commitlint/config-conventional":"^8.3.4","@rollup/plugin-commonjs":"^12.0.0","@rollup/plugin-json":"^4.0.3","@rollup/plugin-node-resolve":"^8.0.0","eslint":"^6.8.0","eslint-config-airbnb":"^18.1.0","eslint-config-prettier":"^6.11.0","eslint-plugin-import":"^2.20.2","eslint-plugin-jsx-a11y":"^6.2.3","eslint-plugin-prettier":"^3.1.3","eslint-plugin-react":"^7.19.0","eslint-plugin-react-hooks":"^2.5.0","husky":"^4.2.5","lint-staged":"^10.2.6","npm-run-all":"^4.1.5","prettier":"^2.0.5","rollup":"^2.11.2","rollup-plugin-terser":"^6.1.0","standard-version":"^8.0.0"},"dependencies":{"escape-html":"^1.0.3","html-to-vdom":"^0.7.0","jszip":"^3.4.0","virtual-dom":"^2.1.1","xmlbuilder2":"^2.1.2"},"config":{"commitizen":{"path":"cz-conventional-changelog"}},"husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged"}},"lint-staged":{"src/**/*.js":["prettier --write","eslint --fix","git add"]},"gitHead":"22ae49875b5e76064f2534f7cd06f7af22502130","_id":"html-to-docx@1.1.1","_nodeVersion":"10.19.0","_npmVersion":"6.13.4","dist":{"integrity":"sha512-AcZgZGE+BROTRL/SH6AcKMb3xi4PVwUEOwkIYGq8vVeLwBjUrbbibg4xolG7aA5Non8udtcA+9Vbu72nkzjUvQ==","shasum":"af6af6877c7803011d275967ebc7c983ee14c28d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/html-to-docx/-/html-to-docx-1.1.1.tgz","fileCount":11,"unpackedSize":3929988,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJez7aBCRA9TVsSAnZWagAAtBwP/0TlSIqOM83amIEPefYv\nyinimawKUulsmJDiwAhPC7aL87mse49GOXvjwddLhemHlLDoHydfMEPfzPIj\noYbGbjgt5TKR4dcXUb1pJupGBlmER2Gh/C8frPAG3sgZLsLaH/3bX59DrHrE\nGqqJmcGhGceOmcUGwLIYWYxDMQuv8mNqs7CTZjn2SIlna8Toe4BeSSIJpSwj\nGilJ9WZ5SZWLcdlf4btxxzfhfx2eTEqSfPtCus24sABb3KdINbcHLl11BdK3\nQ26pPS1O4X3IqqJ165iPRbBvhxwUWjPBcP1fUk3vOMxlavw/AySmWz9pW6o7\nFV8FtulF7yu8pC4cwOqiZujYVJNFEAmv+rf1UwlYieYipQIgfqRXz8m0KAl9\n136A78x4EUcLIThc4LRbcvuyiGVtONZA2IufGkDob8kBOTJd5WB1NJ+/EVoR\nCmavLupWoq9mT05cg41NEl5xLATze7fpewOBRs0OaRJmINjT4ePgb3KjfnwU\nzwS8ddBMkGdR94UKPWL70de1vzgYAHjEcVE2t9/f+b39LNbWkixq7nhHuSN/\nS5VuYbtaeaOkGGyiktDXtzk/+POa8P9NCFmyqREuENcLeiqlxipoXiVttWpA\ntXGmaCXO/rRa7fAwAV5NiXh9Xk8T93wE4lBT17Lq0QJTR5uUzMtWCxbjKEKN\nyUcT\r\n=05nm\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD9IAzTObzsCng+SbtwON9yJlyytPjJ8/QKVCA/l6v1GwIhAKJiRs8O5VgEVZ4UHFJ/K8cdzpeG1wkILrsmkONgvo78"}]},"maintainers":[{"name":"anonymous","email":"privateomega@protonmail.com"}],"_npmUser":{"name":"anonymous","email":"privateomega@protonmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-docx_1.1.1_1590670976457_0.21338228667173764"},"_hasShrinkwrap":false},"1.1.2":{"name":"html-to-docx","version":"1.1.2","description":"HTML to DOCX converter","main":"dist/html-to-docx.cjs.js","module":"dist/html-to-docx.esm.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","release":"standard-version","lint":"eslint .","prettier:check":"prettier --check '**/*.{js}'","validate":"run-s lint prettier:check","build":"rollup -c"},"repository":{"type":"git","url":"git+https://github.com/privateOmega/html-to-docx.git"},"author":{"name":"privateOmega","email":"privateOmega@protonmail.com"},"license":"MIT","bugs":{"url":"https://github.com/privateOmega/html-to-docx/issues"},"homepage":"https://github.com/privateOmega/html-to-docx#readme","devDependencies":{"@commitlint/cli":"^8.3.5","@commitlint/config-conventional":"^8.3.4","@rollup/plugin-commonjs":"^12.0.0","@rollup/plugin-json":"^4.0.3","@rollup/plugin-node-resolve":"^8.0.0","eslint":"^6.8.0","eslint-config-airbnb":"^18.1.0","eslint-config-prettier":"^6.11.0","eslint-plugin-import":"^2.20.2","eslint-plugin-jsx-a11y":"^6.2.3","eslint-plugin-prettier":"^3.1.3","eslint-plugin-react":"^7.19.0","eslint-plugin-react-hooks":"^2.5.0","husky":"^4.2.5","lint-staged":"^10.2.6","npm-run-all":"^4.1.5","prettier":"^2.0.5","rollup":"^2.11.2","rollup-plugin-terser":"^6.1.0","standard-version":"^8.0.0"},"dependencies":{"escape-html":"^1.0.3","html-to-vdom":"^0.7.0","jszip":"^3.4.0","virtual-dom":"^2.1.1","xmlbuilder2":"^2.1.2"},"config":{"commitizen":{"path":"cz-conventional-changelog"}},"husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged"}},"lint-staged":{"src/**/*.js":["prettier --write","eslint --fix","git add"]},"gitHead":"1199371d211dc5298e12c5623e3c1b95af2dd64c","_id":"html-to-docx@1.1.2","_nodeVersion":"10.19.0","_npmVersion":"6.13.4","dist":{"integrity":"sha512-xSne4GDcOLTc+aCwXtHYZERPe7HddD6e0E88B72bE+7KV09BYrbKLCqyCb4trHPqiGX2XMCkP9dO5oy/mtpZAw==","shasum":"d813bbea1d0a79a85c45f3e255d621c9eb3c9bd5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/html-to-docx/-/html-to-docx-1.1.2.tgz","fileCount":11,"unpackedSize":514034,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe0SfTCRA9TVsSAnZWagAAlrkP/2M4s6RI3T8HxP0hzjgf\nsx1Bsc52Yme0LLumSFzIygCAdeE0ruC/VBpW0q7IJQ9HTglYynQ0gs+8U44p\nH9FxmxG2kT9HALhvujLIDYvA/o6q3wU3J1SR5Y6wCovsR2gMtYjKVhZ4XH03\nyeMZO0C1CACJpjl5Pj2gkU8XAmkW8kdml0wUo3PNfBl5Ks25MkFGCN6BXn3+\nE4jtTWiJD/8vldpWXNokpTJ2uWn0kOkzGaoYUM7E7+XRYIdVYxcoaNlIU0uf\nYOFxRuz2VvhtaqJKFDayk4EcRKSxiD3jM/spQ49Iplw+tlsPR+NKfaX27mbb\n5J/KS+MQZCfnP0vXFQWe/m/E6xOnn5752ecjpgeEWFVzkUjCLwdcDNSUHDKV\nAj626BAg5RWTbZ+l+zxkwAVN4wNoVaOJz8/zyQzcpKWyJ3NVG86JKLDn3rbn\nIe2KZnR5Vonnfy/xiyq4c6jUl79xY6DaDnEWRTGgovnACV3hlLrvq24yZlLb\naNxyzN/8vuXq9Az8WZJBg04lbF9e07Vdbpdw+6oNcZ42V4f8xLpXde8/5gbB\nmjQQd0YPdpvYPcc1Y8dQqjlzARAC/xpojsHwN7fw0NtUnbvltXYAcYFxraZf\ndmJonItuAx2qcWUsDjlQxt93p3bgaROpqrhOVfdtT2Oz9h8HN8CIF+ILjI45\nQQS0\r\n=jJV1\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAZ15USpYKYstsUEuaRFQMm/qI6VtsxORVjD3wVLSSlhAiBkrNxbxY3SBp4lJrmq/j5pfPi0tcbIaoIsF6nXcChD3Q=="}]},"maintainers":[{"name":"anonymous","email":"privateomega@protonmail.com"}],"_npmUser":{"name":"anonymous","email":"privateomega@protonmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-docx_1.1.2_1590765523371_0.3707048429667603"},"_hasShrinkwrap":false},"1.1.3":{"name":"html-to-docx","version":"1.1.3","description":"HTML to DOCX converter","main":"dist/html-to-docx.cjs.js","module":"dist/html-to-docx.esm.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","release":"standard-version","lint":"eslint .","prettier:check":"prettier --check '**/*.{js}'","validate":"run-s lint prettier:check","build":"rollup -c"},"repository":{"type":"git","url":"git+https://github.com/privateOmega/html-to-docx.git"},"author":{"name":"privateOmega","email":"privateOmega@protonmail.com"},"license":"MIT","bugs":{"url":"https://github.com/privateOmega/html-to-docx/issues"},"homepage":"https://github.com/privateOmega/html-to-docx#readme","devDependencies":{"@commitlint/cli":"^8.3.5","@commitlint/config-conventional":"^8.3.4","@rollup/plugin-commonjs":"^12.0.0","@rollup/plugin-json":"^4.0.3","@rollup/plugin-node-resolve":"^8.0.0","eslint":"^6.8.0","eslint-config-airbnb":"^18.1.0","eslint-config-prettier":"^6.11.0","eslint-plugin-import":"^2.20.2","eslint-plugin-jsx-a11y":"^6.2.3","eslint-plugin-prettier":"^3.1.3","eslint-plugin-react":"^7.19.0","eslint-plugin-react-hooks":"^2.5.0","husky":"^4.2.5","lint-staged":"^10.2.6","npm-run-all":"^4.1.5","prettier":"^2.0.5","rollup":"^2.11.2","rollup-plugin-terser":"^6.1.0","standard-version":"^8.0.0"},"dependencies":{"escape-html":"^1.0.3","html-to-vdom":"^0.7.0","image-size":"^0.8.3","jszip":"^3.4.0","virtual-dom":"^2.1.1","xmlbuilder2":"^2.1.2"},"config":{"commitizen":{"path":"cz-conventional-changelog"}},"husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged"}},"lint-staged":{"src/**/*.js":["prettier --write","eslint --fix","git add"]},"gitHead":"c7cadb8d61abc9a8d2ae834df1700f3be18ad91c","_id":"html-to-docx@1.1.3","_nodeVersion":"10.19.0","_npmVersion":"6.13.4","dist":{"integrity":"sha512-GhI+3E8QfB5zM6b9O6y6rKk1MCBs2ttUWY++amyYI7weKB2kSfYA8UsAlcR9iYrnrBLkDZffg8Ib/S9p1UKcjQ==","shasum":"20cad9ef3b7e529433c1dfe92407ca053b08b3b8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/html-to-docx/-/html-to-docx-1.1.3.tgz","fileCount":11,"unpackedSize":560844,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe1zI0CRA9TVsSAnZWagAADu4P/irEfd8B/RfliEgHbsW8\nv4/ZlZeYpIx1og7IxqkbCfKdclcYGJifp3ERwZHmSjRkY8O3QvQOO7HaE/ik\naL+ouqqT8kaclj9aE1JRaKhc9SfpHuDDV0nUrE9u/YVHjp9ALZFHw2LyXws9\nsBHmimKMNgAfnYHTPjC0pXA5PXDK6aNwYXv1Mt85Vpc+c6WP1B5LitdIj0F6\nMZ9XPKoEoqpn5BOzA/FlAoAanK3IM3Z3W5eWe9l9T7aWN1C+DobAukzNRGkQ\ny+CUdyOw0dkCrLqy1Qbh6cnTYvIS+xCX2ZoPqOlEcTYxQjaOMYo3I8bGV1Ly\nCy3qplDfhsAxpjYSkQOij9wdKd5KOZnpVis4PchNCpf8kypcJQB8M+gTU81h\nHeK2YFQCP8NHwevtw0WW/eeRo1UooSK20nwSg+mUcLhenFPCqkprDlM6WmTz\nRMIFT+x1Q5HbJo58m4NT3X3pCTs/yK7Z4+n9VNIHHu4qfPiIVEj59M4DPc3t\nuwe+M1liwnHsM6+9Qg1t6d32ObHcqJ4WfpyXowyJhn38TVDq+zUbnR9+yYfR\nYGlhyXBvH7DaoOS4nGmuD5W7g8Ykz5jvKNjiPiq9HH48aYCC2BamVaEP/Mvo\nLhpaAaA0QhypPrUbx4Slsk7Izp/qhilpeAOhtFnpSv59Qezl8NlCKIxVLQBh\nWtkN\r\n=Jjvc\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDBksnUQQLnnaeW+5xk6Z7LPifbIz34R4sujc1NxvzVVgIhAKalZNYqEcp9BULRg8u0lValEtMqr4/+nIgHES2CdNgN"}]},"maintainers":[{"name":"anonymous","email":"privateomega@protonmail.com"}],"_npmUser":{"name":"anonymous","email":"privateomega@protonmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-docx_1.1.3_1591161395803_0.022676388151761318"},"_hasShrinkwrap":false},"1.1.4":{"name":"html-to-docx","version":"1.1.4","description":"HTML to DOCX converter","main":"dist/html-to-docx.cjs.js","module":"dist/html-to-docx.esm.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","release":"standard-version","lint":"eslint .","prettier:check":"prettier --check '**/*.{js}'","validate":"run-s lint prettier:check","build":"rollup -c"},"repository":{"type":"git","url":"git+https://github.com/privateOmega/html-to-docx.git"},"author":{"name":"privateOmega","email":"privateOmega@protonmail.com"},"license":"MIT","bugs":{"url":"https://github.com/privateOmega/html-to-docx/issues"},"homepage":"https://github.com/privateOmega/html-to-docx#readme","devDependencies":{"@commitlint/cli":"^8.3.5","@commitlint/config-conventional":"^8.3.4","@rollup/plugin-commonjs":"^12.0.0","@rollup/plugin-json":"^4.0.3","@rollup/plugin-node-resolve":"^8.0.0","eslint":"^6.8.0","eslint-config-airbnb":"^18.1.0","eslint-config-prettier":"^6.11.0","eslint-plugin-import":"^2.20.2","eslint-plugin-jsx-a11y":"^6.2.3","eslint-plugin-prettier":"^3.1.3","eslint-plugin-react":"^7.19.0","eslint-plugin-react-hooks":"^2.5.0","husky":"^4.2.5","lint-staged":"^10.2.6","npm-run-all":"^4.1.5","prettier":"^2.0.5","rollup":"^2.11.2","rollup-plugin-terser":"^6.1.0","standard-version":"^8.0.0"},"dependencies":{"color-name":"^1.1.4","escape-html":"^1.0.3","html-to-vdom":"^0.7.0","image-size":"^0.8.3","jszip":"^3.4.0","virtual-dom":"^2.1.1","xmlbuilder2":"^2.1.2"},"config":{"commitizen":{"path":"cz-conventional-changelog"}},"husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged"}},"lint-staged":{"src/**/*.js":["prettier --write","eslint --fix","git add"]},"gitHead":"0b1712c2353984e457212110d81d8c6bf2815475","_id":"html-to-docx@1.1.4","_nodeVersion":"10.19.0","_npmVersion":"6.13.4","dist":{"integrity":"sha512-Ci5c9Ph7QxSslX1S6xH+HxF+ex2X/1rzQg/WDx80JzyqnsnPZwvdZ1tzuP92rgQq9s1o19ZoAMROo7DlO1uN4Q==","shasum":"96d6d681a8569c556c20479317f725231b3e96e8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/html-to-docx/-/html-to-docx-1.1.4.tgz","fileCount":11,"unpackedSize":570256,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe14LvCRA9TVsSAnZWagAAz2cP/3qXjpIf7ffcbsmNpAXd\n1z/YvGHtAOrY1KNXrbL839VVQC2gj24YSP5qqzdeBL5S/4PZVotfDKWudRoZ\nFcEJQ71xRI5UOtuQ6DP6bVowbXk//irJkcgTQwv0pv1OY8j4DgImxw4z0n7E\nPPdSSAx/QopNE3DVH2i3sOATjh1Tjwp3wMUm8F8+7/BV375jTYtd+OjcQ6YI\nj3K2g255QsNUF7jC16BNO1hT7hSkdRIR5mtg7dZeUvT48A67tO1DQaPiaNxK\nSZpzC+IYeg0rnRTwTaDvWk0tJh0q4dHMuwD8n6ats7FObYOpqnFyI123W/6i\nYYP8eUqr0siwlRTIei+GKTrnY4LwyfAcmecf2fF8bs4OBelCP2eWvTvywtv8\nRYhEf9HKquLAX3aPpLM3gj63KMJkCqP1wwMlA7BXVBLmoXOD9048cxw9ozqv\nqYQZiHZnjDfJJYaxolFU4F0ufT3usKzt1K4FTRxBhz+Xn/Fpb68LTssmstEX\npg7JV2YfpkZ2vj4A0pfP4ou/dBU1BCnzLNz7YMhL0ink0Yuqd8lcfv+3tVxS\nrWW5bAnf8m4mZExg0SxOqPiy+eg6ANhogErvqlhdwW3w+qXtWNwT63hLNcsY\nxmirhcdPcG39MCM1A9N1pM5AIDosiUroSO1QLFKhK30ZjkCI/FkwUmNUmEas\nt6bb\r\n=+Yon\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCuTg1+eKr8eFMShgYv8RJlxiIJXwmh2ZZ1KAMOl/SsHwIgZGA3O5E3s1B1ZLVcHlHVvrcWsaVHVfoP6xSZLo9XMEc="}]},"maintainers":[{"name":"anonymous","email":"privateomega@protonmail.com"}],"_npmUser":{"name":"anonymous","email":"privateomega@protonmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-docx_1.1.4_1591182062484_0.5900525298049801"},"_hasShrinkwrap":false},"1.1.5":{"name":"html-to-docx","version":"1.1.5","description":"HTML to DOCX converter","main":"dist/html-to-docx.cjs.js","module":"dist/html-to-docx.esm.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","release":"standard-version","lint":"eslint .","prettier:check":"prettier --check '**/*.{js}'","validate":"run-s lint prettier:check","build":"rollup -c"},"repository":{"type":"git","url":"git+https://github.com/privateOmega/html-to-docx.git"},"author":{"name":"privateOmega","email":"privateOmega@protonmail.com"},"license":"MIT","bugs":{"url":"https://github.com/privateOmega/html-to-docx/issues"},"homepage":"https://github.com/privateOmega/html-to-docx#readme","devDependencies":{"@commitlint/cli":"^8.3.5","@commitlint/config-conventional":"^8.3.4","@rollup/plugin-commonjs":"^12.0.0","@rollup/plugin-json":"^4.0.3","@rollup/plugin-node-resolve":"^8.0.0","eslint":"^6.8.0","eslint-config-airbnb":"^18.1.0","eslint-config-prettier":"^6.11.0","eslint-plugin-import":"^2.20.2","eslint-plugin-jsx-a11y":"^6.2.3","eslint-plugin-prettier":"^3.1.3","eslint-plugin-react":"^7.19.0","eslint-plugin-react-hooks":"^2.5.0","husky":"^4.2.5","lint-staged":"^10.2.6","npm-run-all":"^4.1.5","prettier":"^2.0.5","rollup":"^2.11.2","rollup-plugin-terser":"^6.1.0","standard-version":"^8.0.0"},"dependencies":{"color-name":"^1.1.4","escape-html":"^1.0.3","html-to-vdom":"^0.7.0","image-size":"^0.8.3","jszip":"^3.4.0","virtual-dom":"^2.1.1","xmlbuilder2":"^2.1.2"},"config":{"commitizen":{"path":"cz-conventional-changelog"}},"husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged"}},"lint-staged":{"src/**/*.js":["prettier --write","eslint --fix","git add"]},"gitHead":"487a1a70fda858c286541714db145e2f72266f4f","_id":"html-to-docx@1.1.5","_nodeVersion":"10.19.0","_npmVersion":"6.13.4","dist":{"integrity":"sha512-l1g5X5nLZqpCRx9GmepCPny7oeShVAOsxmlMHjW3ECdLOr9/f9wf58WJc+/3NokKQh9g93Ic6xLES8e6YoS6mQ==","shasum":"dccb2adffb2841713087cebdcf4bfe5283bcc279","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/html-to-docx/-/html-to-docx-1.1.5.tgz","fileCount":12,"unpackedSize":1045242,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe15tqCRA9TVsSAnZWagAAuo4QAI2yWYHsc+dIuqpmDCCL\nkGP8E/kf83pN/7cOiUoq50zXS9W9r2wpiiR4kFkqWzsKBy9I5TQ87w8lpw3C\nx6H47KjyVh8Msw9c4zOvA4ZbTy4ABRI7s2EIHiL7N8NoxkcchnAzhRHYkraV\neFupHVqE43R0C7IMx79nXMNkT0xqOg9zenb1jpkjTF/R1Y772tpIzUpEYesM\nHU624rqW/cefApVmc9mNpgL4BK3e7Ozh3MRVsll2omjFHO9MSW0okxn/6Nyj\n8BmI8DN383rZZXqxxbrFpWX4/yBPyPkiwYviQpVgAIZeYyFJr+hb3lmuNXkj\nBg9+arRdxHaeT4UnhBX0cpZTUKsfO4Nz1WJ49HIFYAfdQl8mElitwY6qWYbA\naggBcqeVqnW1CPPsEtT4uS3SglwRZKxamcmLKeqtpN8JGeb3XdCrRlI540Cp\n32H27DNjCQYDgCb651Ou1w9InL1RuPhXn/i6ET1P8sCnSZsBRHDfJFSv6ucn\nUd1LeGMD4aFDFQdzJIlAmQO1t3xu1puVh+Tax53yZmZVEQp2oG1bn1Whw3Vx\nnef4wkd53W0N2rKFn+Pz+UELgarHVxNU0y7dBtyQ940OaGCuqJTMPySoK0v8\npHHp7BxqxgygVASf7CGUp+68YRe+TdHxB+Qp/PFs6wXyGzqnTWnH0f9ZeMTa\ng94A\r\n=H+Yp\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC4hAJ3YwMOLBtXVn4RFn1wkIC4+KH1hrkjRCvl7vXGVQIgVaKlSAQMMOdfOAL0t2+7uM9qELaoD87luX7F5v2145o="}]},"maintainers":[{"name":"anonymous","email":"privateomega@protonmail.com"}],"_npmUser":{"name":"anonymous","email":"privateomega@protonmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-docx_1.1.5_1591188330118_0.4018464446296377"},"_hasShrinkwrap":false},"1.1.6":{"name":"html-to-docx","version":"1.1.6","description":"HTML to DOCX converter","main":"dist/html-to-docx.cjs.js","module":"dist/html-to-docx.esm.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","release":"standard-version","lint":"eslint .","prettier:check":"prettier --check '**/*.{js}'","validate":"run-s lint prettier:check","build":"rollup -c"},"repository":{"type":"git","url":"git+https://github.com/privateOmega/html-to-docx.git"},"author":{"name":"privateOmega","email":"privateOmega@protonmail.com"},"license":"MIT","bugs":{"url":"https://github.com/privateOmega/html-to-docx/issues"},"homepage":"https://github.com/privateOmega/html-to-docx#readme","devDependencies":{"@commitlint/cli":"^8.3.5","@commitlint/config-conventional":"^8.3.4","@rollup/plugin-commonjs":"^12.0.0","@rollup/plugin-json":"^4.0.3","@rollup/plugin-node-resolve":"^8.0.0","eslint":"^6.8.0","eslint-config-airbnb":"^18.1.0","eslint-config-prettier":"^6.11.0","eslint-plugin-import":"^2.20.2","eslint-plugin-jsx-a11y":"^6.2.3","eslint-plugin-prettier":"^3.1.3","eslint-plugin-react":"^7.19.0","eslint-plugin-react-hooks":"^2.5.0","husky":"^4.2.5","lint-staged":"^10.2.6","npm-run-all":"^4.1.5","prettier":"^2.0.5","rollup":"^2.11.2","rollup-plugin-terser":"^6.1.0","standard-version":"^8.0.0"},"dependencies":{"color-name":"^1.1.4","escape-html":"^1.0.3","html-to-vdom":"^0.7.0","image-size":"^0.8.3","jszip":"^3.4.0","virtual-dom":"^2.1.1","xmlbuilder2":"^2.1.2"},"config":{"commitizen":{"path":"cz-conventional-changelog"}},"husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged"}},"lint-staged":{"src/**/*.js":["prettier --write","eslint --fix","git add"]},"gitHead":"26e12523cc32517c5cbb92c63bbc7eb5e7c0b23b","_id":"html-to-docx@1.1.6","_nodeVersion":"10.19.0","_npmVersion":"6.13.4","dist":{"integrity":"sha512-+fgYwtAb/q7qi0ccFu16iwCWMlJifoIX8UJPaT5e9ep2PYj6LRtmXIKLAH0r4RbUIfMK8yOfyAJm0wprl9KtGw==","shasum":"d619f302c119b544e9cd66a809759b5f8be3daf5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/html-to-docx/-/html-to-docx-1.1.6.tgz","fileCount":11,"unpackedSize":596267,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe2JP9CRA9TVsSAnZWagAAe6sP/0Nn/wpV1kxdD6cUBeHn\nKJqedMirqcNd6LiUBUlLNfyRP1OHluwhNN5A22VnO7VGzhhL0smzAXIb8RNA\nMwjz0l3lJsa8Wq4LBTxexG0ZEcMHo+dkchAdDOL+PwLCiluLboc0wvc9d41j\n0gEAdrpuX85vmm6MUIaWeVZr6czbBVgin388QEMfBxIpxgBodmJEpzH4x5Qp\nx49OrrETlXvwcB9aaTKKYC7QlPcAC1pGsCfo1PfgdxeHhI1iV+bq8WsIGW0e\nGlX2U0iXIb/SZv8cCBCtUSNLwXS+AfxM/DZ5I0t/ZLry4Yr3RhOLyjwJy7Om\nMR9TEg6eRobt8q7vsMJBtvarrEjgSF2NvojnWVJSnTkPFr0s5Pri+tUh/l5h\nrK3lrHFIC5asXffQfbVG6o3wmAhWCAxt36GWaeFwnu06V+eVlJgYugWLi/Lv\nue5iBovA2PINT/sMYzYpdSC2MDAmgNpEe4temLTxm1adxXkMgmWnqKR+n33k\nkJRSwFzyaAlv+VwnYvGuIbOrhV9/0lfZFgcxHL8LK0nIpMKLBh0s8G1pelH3\nSsk0VUuV6Rr17G4kDg8CiwdqojTVnRNc510PjKsQvQHx8WgSsUDMFWBVmixL\nsf2Ivjq7hqok1MkPsjv7xUjbIibkVW6ByxJYRUOvgc+Zx2wmChMDE1LQlsxL\niakS\r\n=beoE\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD2aMgF8o8dl7cp4ceBFCfZuEbxtnNPGghYNCSdsImL0AIgFy8/k/bhvpdS92mH5WSNMsYlISWnSB3ZOzmUT70EeiY="}]},"maintainers":[{"name":"anonymous","email":"privateomega@protonmail.com"}],"_npmUser":{"name":"anonymous","email":"privateomega@protonmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-docx_1.1.6_1591251964585_0.3818074504717366"},"_hasShrinkwrap":false},"1.1.7":{"name":"html-to-docx","version":"1.1.7","description":"HTML to DOCX converter","main":"dist/html-to-docx.cjs.js","module":"dist/html-to-docx.esm.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","release":"standard-version","lint":"eslint .","prettier:check":"prettier --check '**/*.{js}'","validate":"run-s lint prettier:check","build":"rollup -c"},"repository":{"type":"git","url":"git+https://github.com/privateOmega/html-to-docx.git"},"author":{"name":"privateOmega","email":"privateOmega@protonmail.com"},"license":"MIT","bugs":{"url":"https://github.com/privateOmega/html-to-docx/issues"},"homepage":"https://github.com/privateOmega/html-to-docx#readme","devDependencies":{"@commitlint/cli":"^8.3.5","@commitlint/config-conventional":"^8.3.4","@rollup/plugin-commonjs":"^12.0.0","@rollup/plugin-json":"^4.0.3","@rollup/plugin-node-resolve":"^8.0.0","eslint":"^6.8.0","eslint-config-airbnb":"^18.1.0","eslint-config-prettier":"^6.11.0","eslint-plugin-import":"^2.20.2","eslint-plugin-jsx-a11y":"^6.2.3","eslint-plugin-prettier":"^3.1.3","eslint-plugin-react":"^7.19.0","eslint-plugin-react-hooks":"^2.5.0","husky":"^4.2.5","lint-staged":"^10.2.6","npm-run-all":"^4.1.5","prettier":"^2.0.5","rollup":"^2.11.2","rollup-plugin-terser":"^6.1.0","standard-version":"^8.0.0"},"dependencies":{"color-name":"^1.1.4","escape-html":"^1.0.3","html-to-vdom":"^0.7.0","image-size":"^0.8.3","jszip":"^3.4.0","virtual-dom":"^2.1.1","xmlbuilder2":"^2.1.2"},"config":{"commitizen":{"path":"cz-conventional-changelog"}},"husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged"}},"lint-staged":{"src/**/*.js":["prettier --write","eslint --fix","git add"]},"gitHead":"bb9390da065469afa3e6948d63e7aacdd61570ab","_id":"html-to-docx@1.1.7","_nodeVersion":"10.19.0","_npmVersion":"6.13.4","dist":{"integrity":"sha512-qpfmPeU/l9YJ4os7e/p8a16/mr5gQNFo65DfMtqrSivfTDiHpgxyQ6dWjL3BYUh0Az+p//sMsCgCcOm9EVeEpA==","shasum":"315fbf82ca329ff3a1d780bd6ea708b99aa2b504","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/html-to-docx/-/html-to-docx-1.1.7.tgz","fileCount":11,"unpackedSize":607704,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe2PY1CRA9TVsSAnZWagAAyZwP/0pT7U3GZ3HzRsXetJlJ\nb1GifkHER12xjmCv+ofKr+vGalkYiuPBYNRo46h8eU4a4JFb+GA/FBrXNNO3\nz4a9sBHFFSNNQ6ZC4uXjjbAd3TYWL/8BPqWvkrbMZK9BrsRDbYCS/Gg93S6m\nJMzpKMHYIvApfR1gGsTbcmrJHNDxfK6tIGAHlnRdtXE73/M2KA5UdPeT+ngz\nOn6+qtBj7FJA8F7OciSo4iNSwOSgyfkTD32j25mJfy9/GeVI/R7PtPt121Xe\nV5ShTwX/4a23rY6VQwwYatOWiVQbI5B/UOuPaV2wQXQ6BKZ6lADZlcEz/i3B\n8xCzCTWjAINL5rwMmqInR5seHK8QKoOwkHHhB7Sb/+E0TcXZGCowiZDK7073\nPBGOmOdoxQQNto6t0P+rkl+lQzi4aY1yuTibHFGB5RsKnU2s0r2zHnUnAAJ0\nsKABJvftCTm/enYcV2iRYnBm/w0Rl+HPA7LNjLpGn21cy8KADq1q0E8Bdkqi\nPNzhR/kBfQuFmDLLVgR5HBk07OvVJmSvKz4BHTGx5DVNGaXIXJEemHzsNe7h\nWrKQD72ioJshVWAk4hye7LELBwGVxUgROtZH2n/CgpiVxmSa9BCLTzE24RJB\nBtTLiZXJTWlku6C32CY2xYMi4zGj4PJE+3rdBAedFtHymAXb0WEikL94t1fA\nawUL\r\n=FMha\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBchJiRM/lsxYpjGDyiFCtq7e2KG6oczttqDUlNwTWmrAiEA7dGzvueznkCVFckhcvGve/O+mz6Mqq0yEYkmH3K662g="}]},"maintainers":[{"name":"anonymous","email":"privateomega@protonmail.com"}],"_npmUser":{"name":"anonymous","email":"privateomega@protonmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-docx_1.1.7_1591277108515_0.011143649979504122"},"_hasShrinkwrap":false},"1.1.8":{"name":"html-to-docx","version":"1.1.8","description":"HTML to DOCX converter","main":"dist/html-to-docx.cjs.js","module":"dist/html-to-docx.esm.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","release":"standard-version","lint":"eslint .","prettier:check":"prettier --check '**/*.{js}'","validate":"run-s lint prettier:check","build":"rollup -c"},"repository":{"type":"git","url":"git+https://github.com/privateOmega/html-to-docx.git"},"author":{"name":"privateOmega","email":"privateOmega@protonmail.com"},"license":"MIT","bugs":{"url":"https://github.com/privateOmega/html-to-docx/issues"},"homepage":"https://github.com/privateOmega/html-to-docx#readme","devDependencies":{"@commitlint/cli":"^8.3.5","@commitlint/config-conventional":"^8.3.4","@rollup/plugin-commonjs":"^12.0.0","@rollup/plugin-json":"^4.0.3","@rollup/plugin-node-resolve":"^8.0.0","eslint":"^6.8.0","eslint-config-airbnb":"^18.1.0","eslint-config-prettier":"^6.11.0","eslint-plugin-import":"^2.20.2","eslint-plugin-jsx-a11y":"^6.2.3","eslint-plugin-prettier":"^3.1.3","eslint-plugin-react":"^7.19.0","eslint-plugin-react-hooks":"^2.5.0","husky":"^4.2.5","lint-staged":"^10.2.6","npm-run-all":"^4.1.5","prettier":"^2.0.5","rollup":"^2.11.2","rollup-plugin-terser":"^6.1.0","standard-version":"^8.0.0"},"dependencies":{"color-name":"^1.1.4","escape-html":"^1.0.3","html-to-vdom":"^0.7.0","image-size":"^0.8.3","jszip":"^3.4.0","virtual-dom":"^2.1.1","xmlbuilder2":"^2.1.2"},"config":{"commitizen":{"path":"cz-conventional-changelog"}},"husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged"}},"lint-staged":{"src/**/*.js":["prettier --write","eslint --fix","git add"]},"gitHead":"dc2e75c47b66d3d1cff6aa4808c30fa296627060","_id":"html-to-docx@1.1.8","_nodeVersion":"10.19.0","_npmVersion":"6.13.4","dist":{"integrity":"sha512-Y+yQn8XnU6Nr6XrWX2MIsAHHtmnS9AITrxmr1PA0m357COQuNEaC2D//UKLY5SDTI1G3KQeG4DxZrMrdgwyVjw==","shasum":"374f13261776569754f97bd4f60d0736061ef9d4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/html-to-docx/-/html-to-docx-1.1.8.tgz","fileCount":11,"unpackedSize":622464,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe2kDcCRA9TVsSAnZWagAA8lAP/01E8hGjkJeVeiFmpMDd\neICl4mV6QvGLjIFK1Rj0SV8RRJG95CAfAxGir0Eqli2p8B0/vn08mDYn5/5h\nZt+BWc2hpq1srkIJOkYcQUHIwfOHxRXJmRFbePG4EP+v5rBExEtZLwn54//4\n8Ojr+KQioRN+uHX7KPkgx7uzTJJQR8/W5un2g9DWCRJcwL61SCqZAmdhcEi2\n0ZuAXBx0FmbJnRSgo95bU5c5f/kh33RACzl1t52FN9ndMGO0GzcMbNgW085v\nLL8OsJAmKEmIdMzOnWeNeTrL6yjrCQJimzmLiMKBrDtCVTDT6b0uUt/uP/Ym\nTOjvkpRkiTU+An/DJP7MAKNsn0qiMdfNm5wnbO6Xz4hSvOYXxi1DpyZUd41p\nPU+AXTqA3WdPw1dTwtMw06LQj21A0gIWLTwRPjjUvIcOTlI5TL2Jb/YZKUVU\nYQh/1dNmb6mWyiN7IsxCmlzqZfWfko8OpCHKoOHEb8n1yQkL24Kq09+vU78X\nYqfRm4O82VpfaigsPPS9pvkbBh5vDva+5heoUa90roY/QATaVQn3cAUymyZ4\nUSggPWHAnII4X47D3mTQHm7T9A+kQOiQHPBaL9sBKs6mhlM09mov7a7aYLQ5\nrsIn8f94MVaqcmrsHdL118S8x43P0vB4nHjayvnP9b3N5E2Rl8wjQzEYZ/vh\nmJ6+\r\n=3+Rg\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAUhzjU7AVfPgprbnb5lQPTTBxl3Ff99KlpHW9Hk41TCAiAFj3O9VrctRUsaZNOy61M83msKA7ITmtX14B7OKbF0kg=="}]},"maintainers":[{"name":"anonymous","email":"privateomega@protonmail.com"}],"_npmUser":{"name":"anonymous","email":"privateomega@protonmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-docx_1.1.8_1591361756001_0.492760416139689"},"_hasShrinkwrap":false},"1.1.9":{"name":"html-to-docx","version":"1.1.9","description":"HTML to DOCX converter","main":"dist/html-to-docx.cjs.js","module":"dist/html-to-docx.esm.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","release":"standard-version","lint":"eslint .","prettier:check":"prettier --check '**/*.{js}'","validate":"run-s lint prettier:check","build":"rollup -c"},"repository":{"type":"git","url":"git+https://github.com/privateOmega/html-to-docx.git"},"author":{"name":"privateOmega","email":"privateOmega@protonmail.com"},"license":"MIT","bugs":{"url":"https://github.com/privateOmega/html-to-docx/issues"},"homepage":"https://github.com/privateOmega/html-to-docx#readme","devDependencies":{"@commitlint/cli":"^8.3.5","@commitlint/config-conventional":"^8.3.4","@rollup/plugin-commonjs":"^12.0.0","@rollup/plugin-json":"^4.0.3","@rollup/plugin-node-resolve":"^8.0.0","eslint":"^6.8.0","eslint-config-airbnb":"^18.1.0","eslint-config-prettier":"^6.11.0","eslint-plugin-import":"^2.20.2","eslint-plugin-jsx-a11y":"^6.2.3","eslint-plugin-prettier":"^3.1.3","eslint-plugin-react":"^7.19.0","eslint-plugin-react-hooks":"^2.5.0","husky":"^4.2.5","lint-staged":"^10.2.6","npm-run-all":"^4.1.5","prettier":"^2.0.5","rollup":"^2.11.2","rollup-plugin-terser":"^6.1.0","standard-version":"^8.0.0"},"dependencies":{"color-name":"^1.1.4","escape-html":"^1.0.3","html-to-vdom":"^0.7.0","image-size":"^0.8.3","jszip":"^3.4.0","virtual-dom":"^2.1.1","xmlbuilder2":"^2.1.2"},"config":{"commitizen":{"path":"cz-conventional-changelog"}},"husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged"}},"lint-staged":{"src/**/*.js":["prettier --write","eslint --fix","git add"]},"gitHead":"ac1bd3a6f7b3b6b3751e33133a5f07657d076a5d","_id":"html-to-docx@1.1.9","_nodeVersion":"10.19.0","_npmVersion":"6.13.4","dist":{"integrity":"sha512-rhd2Gxq3GgljPlpUr+KJC35xIBWZpfCXw46R+PCoMM4rzHaf1uT/GnVLTzNYQvVEoE+/x5r1yiKfxkeLeth0ow==","shasum":"eb1e90b1d02b1e3b490dcc8b90db32d18a0ecd60","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/html-to-docx/-/html-to-docx-1.1.9.tgz","fileCount":11,"unpackedSize":637298,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe3cnYCRA9TVsSAnZWagAAqo0P/2kSoLX3NKQKj9D4GPNd\nA0pUVkK9WvxIh/r25oglrxgyQMYglqz6A3C/IaSZxWswSByOvNi1CPA40yUQ\nOwYXnmqFuYobmJio0/DFnzt7tPvQPYBlGm36++OeNVWcOMUpRSwCmCUcgRzc\nn+aSLtgcIHRddrlvtwBSS+dUbq84GllVbGGdip++IJr1Ol8AbgCk5VXVaGn2\nYwcx1bTVImmHi9K6mqlh3sl7k7V1sSv8kzTNEOijdcs7O2Qm917s/yIRzfF0\n4luzLzVYb9qLCDqqangV5zw+SB7Y/eVVJOBbKrRXk90vXrdMqa84fbn0T527\nO3YzAP7A+p2n5iHiliWCpiLTEf+6UsmgCR1IkxB/foJkB0QpXsRKBhK1DOKS\nLBrMH3ubj3HnffKMmPBvpEK4wzvBzXtiLqdT2S4nANeXB9S+crGW19i96TuQ\n5OF9dIE7hrJZ4q6GCzFQk55QJM5IMG55SHzlyUbUDwN9jmFQwk8+VeBN+9oo\n2VmHa6atHyyf3vpuAhe+dU62PGGswibHqkVSqvHPPfUeOWf1XC4/2c/WKaEH\nzQrEzK7gmzBRWvv49ZZZXL8GetAHJcJ6fn7UfCUED/87BZJZBLE7gHrTv0cq\nJMNWdzz5Vz6CaZGpidMlg1G+yGNMeB5M4lOwAhJX0fZQcJxIpMn11lgi7Cdp\nneKv\r\n=eXJG\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC7UBdR+c1aTqPC/6e7QM0Qh0kTVseBwhldEgUa/b1+AwIhAIwSBMLEKEOi7GojzoBBOQABsrLCYdbhOrDrDLprcVOw"}]},"maintainers":[{"name":"anonymous","email":"privateomega@protonmail.com"}],"_npmUser":{"name":"anonymous","email":"privateomega@protonmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-docx_1.1.9_1591593432028_0.5925460709937538"},"_hasShrinkwrap":false},"1.1.10":{"name":"html-to-docx","version":"1.1.10","description":"HTML to DOCX converter","main":"dist/html-to-docx.cjs.js","module":"dist/html-to-docx.esm.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","release":"standard-version","lint":"eslint .","prettier:check":"prettier --check '**/*.{js}'","validate":"run-s lint prettier:check","build":"rollup -c"},"repository":{"type":"git","url":"git+https://github.com/privateOmega/html-to-docx.git"},"author":{"name":"privateOmega","email":"privateOmega@protonmail.com"},"license":"MIT","bugs":{"url":"https://github.com/privateOmega/html-to-docx/issues"},"homepage":"https://github.com/privateOmega/html-to-docx#readme","devDependencies":{"@commitlint/cli":"^8.3.5","@commitlint/config-conventional":"^8.3.4","@rollup/plugin-commonjs":"^12.0.0","@rollup/plugin-json":"^4.0.3","@rollup/plugin-node-resolve":"^8.0.0","eslint":"^6.8.0","eslint-config-airbnb":"^18.1.0","eslint-config-prettier":"^6.11.0","eslint-plugin-import":"^2.20.2","eslint-plugin-jsx-a11y":"^6.2.3","eslint-plugin-prettier":"^3.1.3","eslint-plugin-react":"^7.19.0","eslint-plugin-react-hooks":"^2.5.0","husky":"^4.2.5","lint-staged":"^10.2.6","npm-run-all":"^4.1.5","prettier":"^2.0.5","rollup":"^2.11.2","rollup-plugin-terser":"^6.1.0","standard-version":"^8.0.0"},"dependencies":{"color-name":"^1.1.4","escape-html":"^1.0.3","html-minifier":"^4.0.0","html-to-vdom":"^0.7.0","image-size":"^0.8.3","jszip":"^3.4.0","virtual-dom":"^2.1.1","xmlbuilder2":"^2.1.2"},"config":{"commitizen":{"path":"cz-conventional-changelog"}},"husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged"}},"lint-staged":{"src/**/*.js":["prettier --write","eslint --fix","git add"]},"gitHead":"b177e9fdaf3f93737a99d9b447e9f9cf1c8476c5","_id":"html-to-docx@1.1.10","_nodeVersion":"10.19.0","_npmVersion":"6.13.4","dist":{"integrity":"sha512-kxoBwpfRZrvkr9w6XFhQtCa9ajqj2qncoQ+YtZhO87dxGd9+2yCaxZ3ZtfrAQ0PVYa7LnZniWmfFWYuiqlS2VA==","shasum":"5d5d888980364c6018120548a96909ad6d59fd86","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/html-to-docx/-/html-to-docx-1.1.10.tgz","fileCount":11,"unpackedSize":685122,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe4Me6CRA9TVsSAnZWagAANrAP/18myxUOxEZs/noP1Sog\nTPHHcivFnzc9CTigJcdV8mh7S9KMkrtzkdyHBFgIxzeiN7liLF4s6LLFiDjY\n501LYBQVX4eicBMcKAjM1MB2KiDGt5oczON72ZPzbd0+rTvTnL6aHgxRlyUt\ncdeYANNS0vN/uG86sR/rDnonJMEvgemMRM6ttxQHdkegVs4PVOjTC6AB/ZWC\nMl59VwC/2NkX/fZHkbM+lUNerE56aszKnPwPRIm0APMs1U2G3PI1za6RTvWg\nONQoWP0JyRhjQCEIvApMSobhMNKc5YKtD/+Bc+oEv9PfG1wwWFONFglV3Mb+\nMp13vDLpSo0bdwQpobLwWnjdE4+qcdapp7qjS79SkilcAJ1RSlPuB9UbNz/h\neFHhJHl2e/wTbs5BrMBrXp9AuSL0E09EIUqTBaLTS4jELeKPVLHvlNlrYZez\nyJPFJwcHCYpcnInkZt08wm0ffJtFgvsI8BIUaPKDn26p5a5CTqfbn3CQqd2W\nhi+MtCNpaz6tgDdQWWVBjDXNERtFjJqrEz45kqtrsPYddU7rTocFrXP1FlMG\nxeSuGf2CkA2Dgo1BsJcqpGm4k1DnjcrKqtLmGMfx1x0hzGMocDpF/RFeguQR\nCbQ4zbAPDYs1kr70oYxrJADnrjv6Uu+qw/EHpjeQj46AvWMkMhDcKpIHy3T0\n1kxw\r\n=Syc5\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIB/mxvxbRnd38nrNyc3xFPiXQL2xD3j8pENGDoCDnD6mAiEAryoN6TVHc+hNBEqmk0O2Xgg69y/oqHRhbSi6jjwZVXc="}]},"maintainers":[{"name":"anonymous","email":"privateomega@protonmail.com"}],"_npmUser":{"name":"anonymous","email":"privateomega@protonmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-docx_1.1.10_1591789497775_0.2863059657707916"},"_hasShrinkwrap":false},"1.1.11":{"name":"html-to-docx","version":"1.1.11","description":"HTML to DOCX converter","keywords":["html","docx","html-to-docx","html to docx","office","word"],"main":"dist/html-to-docx.cjs.js","module":"dist/html-to-docx.esm.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","release":"standard-version","lint":"eslint .","prettier:check":"prettier --check '**/*.{js}'","validate":"run-s lint prettier:check","build":"rollup -c"},"repository":{"type":"git","url":"git+https://github.com/privateOmega/html-to-docx.git"},"author":{"name":"privateOmega","email":"privateOmega@protonmail.com"},"license":"MIT","bugs":{"url":"https://github.com/privateOmega/html-to-docx/issues"},"homepage":"https://github.com/privateOmega/html-to-docx#readme","devDependencies":{"@commitlint/cli":"^8.3.5","@commitlint/config-conventional":"^8.3.4","@rollup/plugin-commonjs":"^12.0.0","@rollup/plugin-json":"^4.0.3","@rollup/plugin-node-resolve":"^8.0.0","eslint":"^6.8.0","eslint-config-airbnb":"^18.1.0","eslint-config-prettier":"^6.11.0","eslint-plugin-import":"^2.20.2","eslint-plugin-jsx-a11y":"^6.2.3","eslint-plugin-prettier":"^3.1.3","eslint-plugin-react":"^7.19.0","eslint-plugin-react-hooks":"^2.5.0","husky":"^4.2.5","lint-staged":"^10.2.6","npm-run-all":"^4.1.5","prettier":"^2.0.5","rollup":"^2.11.2","rollup-plugin-terser":"^6.1.0","standard-version":"^8.0.0"},"dependencies":{"color-name":"^1.1.4","escape-html":"^1.0.3","html-minifier":"^4.0.0","html-to-vdom":"^0.7.0","image-size":"^0.8.3","jszip":"^3.4.0","virtual-dom":"^2.1.1","xmlbuilder2":"^2.1.2"},"config":{"commitizen":{"path":"cz-conventional-changelog"}},"husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged"}},"lint-staged":{"src/**/*.js":["prettier --write","eslint --fix","git add"]},"gitHead":"96cef312a01609a7b99606bf1d203d0f82a04b3e","_id":"html-to-docx@1.1.11","_nodeVersion":"10.19.0","_npmVersion":"6.13.4","dist":{"integrity":"sha512-Lgl+wzVj8uhDux5gDgHxFBp8q4hn6RI6qdLB0J4ObzGLyciCIx44E+AS3Nc1KCjNIv5wSfM2vnTfCkh5fEfkrg==","shasum":"403c038931baa81d0785297041dfcdf4c7610b9b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/html-to-docx/-/html-to-docx-1.1.11.tgz","fileCount":11,"unpackedSize":687546,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe4P1TCRA9TVsSAnZWagAAskAQAJnTz3g+TYAQdGoWmjZI\nt+fLRJVoZB9HppoMvyqw+RREmPKKWGV8b+qypYq+JkD3B2H0fuHjXpOhxruC\nLuUdvGttsPyKpk899hsPK17UvuS+VQsYNTdykTu8o/LKIGZg4Ii42lz5mDu3\nZweMc9LPiaFB74YoGl8xLocb3cTGgrvsvhi93kehFUNSNuMXSO/PnMv8waVP\nz8wfiuYii/8es5BRfwr1B6Ppa3q9GZ+5i3ywGeAsZpuVito8cGWoopEUcUIo\ndHTxsc56+OYbFwfzQen1/wwCrlCjTw+i5+SobpX46X9SOnvY/gAlFkl9sCKW\nO5f/Us0JXDNDWweEI9w0pq0WeVA57R9ZCfymDy7+xM/XgbJ42o5vUtZa1KUs\nA6dzrAPf/KRZDD3G+bCQRvl4xfB/8qwkY23zbkpFAzxqRGLAUAaSIZhaR73w\nEYW02TWMt67iSRC5xBna4Qpdc8RS0TlCve260Ywq48A8bSmijMUBFv2HD/ol\n9bvGUL2+6L6PacJ198Awyaig+SYWr6nQA0I23yFh5a++Ci9e2xTYCqqMgySG\nh33zIK+4QUgyHK2oveE1JgWwHqHuGzKIobA2D2BkdvH1mnyxU/Z1fFxbbXY+\n29qcfarkuKAsbTxUA5Pyq/H0l67XmgsdLwwHT4B8t7+fOpcZB6rysiL0x2s+\n7Fv0\r\n=lScz\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCXCvF9y9rgKf8ZlMOCJt1SrS9tEDQ8IgSJOWXqx75XwgIhAJw0qQcE/SHf2zBUg+c8ZpggylZKl+PR5OymPKhzaQz+"}]},"maintainers":[{"name":"anonymous","email":"privateomega@protonmail.com"}],"_npmUser":{"name":"anonymous","email":"privateomega@protonmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-docx_1.1.11_1591803218902_0.360161860719693"},"_hasShrinkwrap":false},"1.1.12":{"name":"html-to-docx","version":"1.1.12","description":"HTML to DOCX converter","keywords":["html","docx","html-to-docx","html to docx","office","word"],"main":"dist/html-to-docx.cjs.js","module":"dist/html-to-docx.esm.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","release":"standard-version","lint":"eslint .","prettier:check":"prettier --check '**/*.{js}'","validate":"run-s lint prettier:check","build":"rollup -c"},"repository":{"type":"git","url":"git+https://github.com/privateOmega/html-to-docx.git"},"author":{"name":"privateOmega","email":"privateOmega@protonmail.com"},"license":"MIT","bugs":{"url":"https://github.com/privateOmega/html-to-docx/issues"},"homepage":"https://github.com/privateOmega/html-to-docx#readme","devDependencies":{"@commitlint/cli":"^8.3.5","@commitlint/config-conventional":"^8.3.4","@rollup/plugin-commonjs":"^12.0.0","@rollup/plugin-json":"^4.0.3","@rollup/plugin-node-resolve":"^8.0.0","eslint":"^6.8.0","eslint-config-airbnb":"^18.1.0","eslint-config-prettier":"^6.11.0","eslint-plugin-import":"^2.20.2","eslint-plugin-jsx-a11y":"^6.2.3","eslint-plugin-prettier":"^3.1.3","eslint-plugin-react":"^7.19.0","eslint-plugin-react-hooks":"^2.5.0","husky":"^4.2.5","lint-staged":"^10.2.6","npm-run-all":"^4.1.5","prettier":"^2.0.5","rollup":"^2.11.2","rollup-plugin-terser":"^6.1.0","standard-version":"^8.0.0"},"dependencies":{"color-name":"^1.1.4","escape-html":"^1.0.3","html-minifier":"^4.0.0","html-to-vdom":"^0.7.0","image-size":"^0.8.3","jszip":"^3.4.0","virtual-dom":"^2.1.1","xmlbuilder2":"^2.1.2"},"config":{"commitizen":{"path":"cz-conventional-changelog"}},"husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged"}},"lint-staged":{"src/**/*.js":["prettier --write","eslint --fix","git add"]},"gitHead":"d6d074ce849026cf550e5698a40ca21b77c77a06","_id":"html-to-docx@1.1.12","_nodeVersion":"10.19.0","_npmVersion":"6.13.4","dist":{"integrity":"sha512-JIuKEhLe56eiNAeUygnSy1dJAmVBREs1bnOCVUAgQKt8/lAn8/Fys/zMl4UlS1EarQ74PLvnPeJnG0FCJDeSZw==","shasum":"74296e2d0867d8b1f36ce92e28e5a8d3138aaddb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/html-to-docx/-/html-to-docx-1.1.12.tgz","fileCount":11,"unpackedSize":689692,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe43ZiCRA9TVsSAnZWagAAg0IQAIHw0GutVzPLkVG8zq8H\nxzoRpbGVriXpDAhZRopBomHFThntLhSo2XxO8YhfjO/5CUot3VEkEmuzDTAx\nBSjOOcEBBlFvPVMw28oY+OX+gpfbVvpccQZi9fOf4WOmh/oSC2snhYfTL8dP\nAVi4AF0aDmU0kJj9XCko2EUq8JeGuuzCXUKqOi2WUgAnEgcfELnhrHpOlIFC\nCbZZ+JCfbcEuge5ZlzrRPqpG55/laW2uTxZylAMhvhQIkU6+4dMDOEkthQpk\nUwrjmeH2i+CzoFIzuoqvh6uCq4bzEPWaR2NZC0X9iHPIC31xPYYTTFEVeIv1\n4ILYa6iEZyge0N/FyDsFQuB7HLzbmRuGUT5y6s7DTqeOloveaN3Z/GmBMIP9\nd31b9B6mpZH3tSVkylOO93/3324AIZmTtY6Z1OsZTMcDARK1b52ncwXslM29\nVfBwYqTUyGGFT8G126uFnOb8WAQZFRoXPCqgyLD0AiFxpIbxiShFlvMBn3Fz\n/M9ccSXp/jW4D8UtQh5V9GTwFjMCg3bJvyTBUwkqBXCt1V46wloAqd4mg+g/\niqRrYIKDKEmurYb+VDcUqjLj1dhsxoXFU+45DEpSVAll4Cx/4UhQOlGHUcHI\nplZQXd7Ie2UVdQh+Mc9nJuXD6UzotjbOUJEgQX0+WCv4i4PfqmZGuyecVYbj\n9Mis\r\n=n+ro\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBS+CSO8NQPo4CJ62F8Y/dS+78R52ZXYHbOci68qAG0xAiEA68Pcku1+57VUJsEStYqjEi0SxPm/X1QzMckh+ahWd+Y="}]},"maintainers":[{"name":"anonymous","email":"privateomega@protonmail.com"}],"_npmUser":{"name":"anonymous","email":"privateomega@protonmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-docx_1.1.12_1591965281623_0.6629568400900114"},"_hasShrinkwrap":false},"1.1.14":{"name":"html-to-docx","version":"1.1.14","description":"HTML to DOCX converter","keywords":["html","docx","html-to-docx","html to docx","office","word"],"main":"dist/html-to-docx.cjs.js","module":"dist/html-to-docx.esm.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","release":"standard-version","lint":"eslint .","prettier:check":"prettier --check '**/*.{js}'","validate":"run-s lint prettier:check","build":"rollup -c"},"repository":{"type":"git","url":"git+https://github.com/privateOmega/html-to-docx.git"},"author":{"name":"privateOmega","email":"privateOmega@protonmail.com"},"license":"MIT","bugs":{"url":"https://github.com/privateOmega/html-to-docx/issues"},"homepage":"https://github.com/privateOmega/html-to-docx#readme","devDependencies":{"@commitlint/cli":"^8.3.5","@commitlint/config-conventional":"^8.3.4","@rollup/plugin-commonjs":"^12.0.0","@rollup/plugin-json":"^4.0.3","@rollup/plugin-node-resolve":"^8.0.0","eslint":"^6.8.0","eslint-config-airbnb":"^18.1.0","eslint-config-prettier":"^6.11.0","eslint-plugin-import":"^2.20.2","eslint-plugin-jsx-a11y":"^6.2.3","eslint-plugin-prettier":"^3.1.3","eslint-plugin-react":"^7.19.0","eslint-plugin-react-hooks":"^2.5.0","husky":"^4.2.5","lint-staged":"^10.2.6","npm-run-all":"^4.1.5","prettier":"^2.0.5","rollup":"^2.11.2","rollup-plugin-terser":"^6.1.0","standard-version":"^8.0.0"},"dependencies":{"color-name":"^1.1.4","escape-html":"^1.0.3","html-minifier":"^4.0.0","html-to-vdom":"^0.7.0","image-size":"^0.8.3","jszip":"^3.4.0","virtual-dom":"^2.1.1","xmlbuilder2":"^2.1.2"},"config":{"commitizen":{"path":"cz-conventional-changelog"}},"husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged"}},"lint-staged":{"src/**/*.js":["prettier --write","eslint --fix","git add"]},"gitHead":"4466c92321ba8fcfc490628afe5aceacd430b9ef","_id":"html-to-docx@1.1.14","_nodeVersion":"10.19.0","_npmVersion":"6.13.4","dist":{"integrity":"sha512-hvts8RQmE/qF/E6KXjOg76rUBxhRUiFQrpmrOpoyHb90fE/AIxDmNn2J4SKcnBdGiYXa9R6Ak4jDwaQV2ku/Xg==","shasum":"6b8e591d968ee07813f7c229078b558a855d6943","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/html-to-docx/-/html-to-docx-1.1.14.tgz","fileCount":11,"unpackedSize":707296,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe44P7CRA9TVsSAnZWagAAYLoP/2Qtu96v3DOp833ptGr/\nj+i6X3Bu08IoFbk8RV/3eIdAZ571GZO8tYr+J5B9poV8+vtiqEyUg/bCdTPg\n1cJgiYXb0N5PMVWrKnuQ40UoYqIidgEqszsNLeK3hUsr+HyZ9EGz/WIC/a1f\nM90F8hMpGUPJ8cduhwAYh8Vmyt0rRQxA3OXyGttVumQK1aWMNh4m/hgum8NY\ngC0dfNkFx+AWEBZcAsQGDJh7H5xHefke5tvOB/RTHO6v4ajXHRAlP/uUIc4A\nH8mRkJ/v5U++GsA8SBLqrn2Q2X3ObCuo/gwde5gZF/r5f5CMjHyI7SRmp/wO\nMtpnZZn/SN3S86NdzMyC9kcbZK+swNl5J5yEuLGREwWsQhVtwCGV1ZotDMAx\nNRsluFTRKj7pGyhQ6a89AuT6zSsm05UQj3uE7G9c650Zlq+8Ay8RslWvRqeh\n8OVpR/rRV+huH/TYoydfWR8aEFq/z11QQf+T+bIH+ZvuHjjtRKW/fe5hgQfP\nj7L4SEOtpu9dyz1WMDJjmiI3eMHRLiihOXuVXy4a4J/Kg7bZRDt+z5o7c5M5\n4FZwDQs1FFzco4LS5SxWAwT//Wyf0wYWJn9g0ht2AT3rsjO8UFsQDOWZkFlx\nzhR/G+wyOZRU2TaCduksa5d55O6SaEZP3MKm0B76y0eHHAoIwFatkcVE/Z9R\ncJ2q\r\n=IqHH\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCXZvAObxUiNm+tH5be6SbzSnsd52V4n8wEjGmV7TtVcgIgUAQ2U2Ew5K5g+XOFCaiiYcvFO9GBehS7IPPb0Lvtfis="}]},"maintainers":[{"name":"anonymous","email":"privateomega@protonmail.com"}],"_npmUser":{"name":"anonymous","email":"privateomega@protonmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-docx_1.1.14_1591968762686_0.3680028346118813"},"_hasShrinkwrap":false},"1.1.15":{"name":"html-to-docx","version":"1.1.15","description":"HTML to DOCX converter","keywords":["html","docx","html-to-docx","html to docx","office","word"],"main":"dist/html-to-docx.cjs.js","module":"dist/html-to-docx.esm.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","release":"standard-version","lint":"eslint .","prettier:check":"prettier --check '**/*.{js}'","validate":"run-s lint prettier:check","build":"rollup -c"},"repository":{"type":"git","url":"git+https://github.com/privateOmega/html-to-docx.git"},"author":{"name":"privateOmega","email":"privateOmega@protonmail.com"},"license":"MIT","bugs":{"url":"https://github.com/privateOmega/html-to-docx/issues"},"homepage":"https://github.com/privateOmega/html-to-docx#readme","devDependencies":{"@commitlint/cli":"^8.3.5","@commitlint/config-conventional":"^8.3.4","@rollup/plugin-commonjs":"^12.0.0","@rollup/plugin-json":"^4.0.3","@rollup/plugin-node-resolve":"^8.0.0","eslint":"^6.8.0","eslint-config-airbnb":"^18.1.0","eslint-config-prettier":"^6.11.0","eslint-plugin-import":"^2.20.2","eslint-plugin-jsx-a11y":"^6.2.3","eslint-plugin-prettier":"^3.1.3","eslint-plugin-react":"^7.19.0","eslint-plugin-react-hooks":"^2.5.0","husky":"^4.2.5","lint-staged":"^10.2.6","npm-run-all":"^4.1.5","prettier":"^2.0.5","rollup":"^2.11.2","rollup-plugin-terser":"^6.1.0","standard-version":"^8.0.0"},"dependencies":{"color-name":"^1.1.4","escape-html":"^1.0.3","html-minifier":"^4.0.0","html-to-vdom":"^0.7.0","image-size":"^0.8.3","jszip":"^3.4.0","virtual-dom":"^2.1.1","xmlbuilder2":"2.1.2"},"config":{"commitizen":{"path":"cz-conventional-changelog"}},"husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged"}},"lint-staged":{"src/**/*.js":["prettier --write","eslint --fix","git add"]},"gitHead":"27b41ae21412e2902d66c017817e2bcc6a0e2d4f","_id":"html-to-docx@1.1.15","_nodeVersion":"10.19.0","_npmVersion":"6.13.4","dist":{"integrity":"sha512-XlBq/2mk9izI5De5UGtp/L4sqyNU+A2rw91OlDdK3CvlXAwXkvkWP4RqaVomRCCCtcNO3rQxr257gAFAX9tkCw==","shasum":"36e73f0b2b9fd3e54ff2ec6f39e0e5bd5aaca85f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/html-to-docx/-/html-to-docx-1.1.15.tgz","fileCount":11,"unpackedSize":707394,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe447TCRA9TVsSAnZWagAAxGgP/RRu4pfk0WOHWOQ1fjgN\n6wtnwmT3YWxPRGvgvEWaYtiL1CamJqKvu5ienw4UyiQsmMe114Z1y194sRQX\n+PdWV6tyNCmyoE2YW1q0D8Zf/rKtfLXRvtSbURFmh71vb94MbP5+02qHxpzp\nJ/Z4RZNGqFPUQPDMl+WFKMfACMh8/l6I9DESPmxmjIZSg3FpT+ghuXdACFad\nfMpvUEvyON0wlASPj7zvRp4+HZ6S8sctWrSeF22o521oueQ61zAgNeaGdUSj\niFDIQIZMG8LNAgz7X+uf/7QFSKKefYGMu030OIpkCSKaWDVXQYEmwRtkDU3h\n/vvCH49SUPSFhfJp2+AJCMFaNls1Ok/DX+jNoFvYPQedSqHCzteP0rbaXHWF\nbZFOc3udjowlvlpIQzumhhYfI4B5rqRgJMZrEU8NL4QHQimQb6wshPQjdsSY\naK/x/j3ztyZw9Id81N8evgRkXY6yzKs8hJfTJ5J0A/uO8/YbbQx+aCOFpeEQ\nQ+Zb4K6z97wLpqcLg8zgmRFdS4w6Xi+knPMKOH5ktxKBHOgKz9oVBojBxLF7\nDkOD24bQtvPlFcvtLhi7I0h/me7nZPd6B40554K8YaAHfABn4GoVGypPcFCS\nPcdoEmG26N0Y02bXu78XAF/glLFDkOCDfwkPT9mzowI4C9KHpnrOuSdRwk6L\nNpFj\r\n=61YI\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEEbV7fd8FytVtMVTKDcFVLXwdaLXR43wciBIQ0mgEvVAiArWMI1I9MGvkCaiVv0e3zttvuaBlZim8A9XOZy6AY3bg=="}]},"maintainers":[{"name":"anonymous","email":"privateomega@protonmail.com"}],"_npmUser":{"name":"anonymous","email":"privateomega@protonmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-docx_1.1.15_1591971538636_0.6383844756448029"},"_hasShrinkwrap":false},"1.1.16":{"name":"html-to-docx","version":"1.1.16","description":"HTML to DOCX converter","keywords":["html","docx","html-to-docx","html to docx","office","word"],"main":"dist/html-to-docx.cjs.js","module":"dist/html-to-docx.esm.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","release":"standard-version","lint":"eslint .","prettier:check":"prettier --check '**/*.{js}'","validate":"run-s lint prettier:check","build":"rollup -c"},"repository":{"type":"git","url":"git+https://github.com/privateOmega/html-to-docx.git"},"author":{"name":"privateOmega","email":"privateOmega@protonmail.com"},"license":"MIT","bugs":{"url":"https://github.com/privateOmega/html-to-docx/issues"},"homepage":"https://github.com/privateOmega/html-to-docx#readme","devDependencies":{"@commitlint/cli":"^8.3.5","@commitlint/config-conventional":"^8.3.4","@rollup/plugin-commonjs":"^12.0.0","@rollup/plugin-json":"^4.0.3","@rollup/plugin-node-resolve":"^8.0.0","eslint":"^6.8.0","eslint-config-airbnb":"^18.1.0","eslint-config-prettier":"^6.11.0","eslint-plugin-import":"^2.20.2","eslint-plugin-jsx-a11y":"^6.2.3","eslint-plugin-prettier":"^3.1.3","eslint-plugin-react":"^7.19.0","eslint-plugin-react-hooks":"^2.5.0","husky":"^4.2.5","lint-staged":"^10.2.6","npm-run-all":"^4.1.5","prettier":"^2.0.5","rollup":"^2.11.2","rollup-plugin-terser":"^6.1.0","standard-version":"^8.0.0"},"dependencies":{"color-name":"^1.1.4","escape-html":"^1.0.3","html-minifier":"^4.0.0","html-to-vdom":"^0.7.0","image-size":"^0.8.3","jszip":"^3.4.0","virtual-dom":"^2.1.1","xmlbuilder2":"2.1.2"},"config":{"commitizen":{"path":"cz-conventional-changelog"}},"husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged"}},"lint-staged":{"src/**/*.js":["prettier --write","eslint --fix","git add"]},"gitHead":"07de0cfeece1ff73d24c9419667286250cd39ea5","_id":"html-to-docx@1.1.16","_nodeVersion":"10.19.0","_npmVersion":"6.13.4","dist":{"integrity":"sha512-nK7nhV92c0erL+6GpJ1PdwJt6qEvhMbpJqk36ZWW3GsjdGFAtUSm129+J8zkoC+RzhG+4eX2VcO6XvIxA75yqA==","shasum":"aa96afe86f7dbf97a182f41dd033af374366bd09","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/html-to-docx/-/html-to-docx-1.1.16.tgz","fileCount":11,"unpackedSize":710902,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe46X9CRA9TVsSAnZWagAA/6cQAJgkiKyv2DUziUamrVFv\nFddCnRVoHMOwFPcS5/WyXQUqrPIWVN/puxyYsskhDtOg0aK/BSxjAUpEybO/\nGGKVtIDH0haNVK0UrKjxvE/r+ZVD6kEGto13UlqFFG7PjAegsF0ycfi/f9II\n67sWG07BRnzOqsYf30J1QenxwMlSJj8BSp2P324wqGN1bx6XPGvd4BwvTuKF\n6xiNTyyAhFdm6qFih42YR0EUebtPugv3i8BepDMJoNvi8LSe1CdJ75SHjr2s\ncTj85Kv3tzp8oPSKQPio4fAD4qU3CGgDmmBbfh60Rq3XvCYDt8DpWq/Z+ngP\nK+f6AIDwZk2qSm2wm87OJTLWM267FPxeYXyQu1rCSkyqEUJX/80fT0b+Sun0\ntxObzy4mnZLcTB8xtoVeNxYKqxdyiie+9a4pMxFMJbtzHOeRgw2peHEfRa4P\nrfu0woXhmpUm34xSB7pv0dkiFuNUJ/rEgYjwn1C7KWjeOaLSN8oB/4hAuXpq\nLqyGtwIlk2C+oVjFPB9MuXaNuFIR040yzIOoh80uTev/yaEGT40B80kxQfKr\nkQxDKntCXQC2KcaiBLqgFtGVGJEEFc1fSaiwIiU6eJKHYK81KrxylB+Fkcbd\n52zZPljO1eGSAj6yxNwG5RGldQA13yrpicxFbqUEvyiHIIta/2WflJTPpVxL\nWyqK\r\n=qZye\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEefPoOAqnhZITAOa19hxJxJbS3YIic2jTWe6+NNg9S9AiEA9B324+l8qPFS+tWbULzMMyz59kmx5FAzfaTbG+YdXs0="}]},"maintainers":[{"name":"anonymous","email":"privateomega@protonmail.com"}],"_npmUser":{"name":"anonymous","email":"privateomega@protonmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-docx_1.1.16_1591977468692_0.20131964520056256"},"_hasShrinkwrap":false},"1.1.17":{"name":"html-to-docx","version":"1.1.17","description":"HTML to DOCX converter","keywords":["html","docx","html-to-docx","html to docx","office","word"],"main":"dist/html-to-docx.cjs.js","module":"dist/html-to-docx.esm.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","release":"standard-version","lint":"eslint .","prettier:check":"prettier --check '**/*.{js}'","validate":"run-s lint prettier:check","build":"rollup -c"},"repository":{"type":"git","url":"git+https://github.com/privateOmega/html-to-docx.git"},"author":{"name":"privateOmega","email":"privateOmega@protonmail.com"},"license":"MIT","bugs":{"url":"https://github.com/privateOmega/html-to-docx/issues"},"homepage":"https://github.com/privateOmega/html-to-docx#readme","devDependencies":{"@commitlint/cli":"^8.3.5","@commitlint/config-conventional":"^8.3.4","@rollup/plugin-commonjs":"^12.0.0","@rollup/plugin-json":"^4.0.3","@rollup/plugin-node-resolve":"^8.0.0","eslint":"^6.8.0","eslint-config-airbnb":"^18.1.0","eslint-config-prettier":"^6.11.0","eslint-plugin-import":"^2.20.2","eslint-plugin-jsx-a11y":"^6.2.3","eslint-plugin-prettier":"^3.1.3","eslint-plugin-react":"^7.19.0","eslint-plugin-react-hooks":"^2.5.0","husky":"^4.2.5","lint-staged":"^10.2.6","npm-run-all":"^4.1.5","prettier":"^2.0.5","rollup":"^2.11.2","rollup-plugin-terser":"^6.1.0","standard-version":"^8.0.0"},"dependencies":{"color-name":"^1.1.4","escape-html":"^1.0.3","html-minifier":"^4.0.0","html-to-vdom":"^0.7.0","image-size":"^0.8.3","jszip":"^3.4.0","virtual-dom":"^2.1.1","xmlbuilder2":"2.1.2"},"config":{"commitizen":{"path":"cz-conventional-changelog"}},"husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged"}},"lint-staged":{"src/**/*.js":["prettier --write","eslint --fix","git add"]},"gitHead":"021e63af80c372fe30271a57b54caad576e323ce","_id":"html-to-docx@1.1.17","_nodeVersion":"10.19.0","_npmVersion":"6.13.4","dist":{"integrity":"sha512-PFRtmfMLOLHHDbUD+NHIirq/o61ui6BIUyKd1ln/Y43xVWZlG01raacFd3JUsI5jwp7Fr4dDaFHnIiBFYCkyUA==","shasum":"c54a1bd2a1adb759ca5afaa1521b4acc1fda78e2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/html-to-docx/-/html-to-docx-1.1.17.tgz","fileCount":11,"unpackedSize":712895,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe51zqCRA9TVsSAnZWagAAvJoP/juCqcrP9agHuxkUgkjO\n06tghVLGZxNX7DOhFtv3PirWNFkj0f0+5Wne6+Jgx51KaoYcPt42CSMqQzAE\nDxG2XJ0WIqlHhbmmS0AU4aO96vTM4Gxl56UMxO17VO5nior2phh8BnhyVWSs\nv7PUutLY08SGqOJIFxTtXCRRdA7XS6MXe05B3Q6hxjX2Bb9EWHGzTnJD7VHj\nhwfQaXTsGvYv6p3c5JMHtpiokGUAUTIbJYQlReMbXyqE8fapezmYBfRe1DZP\naCpxS3yrP1O/bOG+A20Q2atPjUGLAEQ/n7prPeDfP3Z0ySJxJS4MuXAbwyv9\ntoACHp44wNFS5BgYn+ZQ0GxCvLT+UT4SQqt/f3LNIWMdQJRVrCZvJLclvtuY\nSGKGdY2uX+Dv7cE2xe/FtzJoArY/+DpFYjfouPem9xSkkjPvR3M0P+yNi6E5\ntEyOgHG12dUTzC/whMcOK+MIagKkGBjwk7h2e89UVr6RjlcYGOTwH93x6e97\nbu5NrI4nZYGAS9yPpK0WFH32b9XvJJk2tQhzok4HiJ3ytn8x5+KdJQ+Bozy4\nvDj/sVOqTuPzS8v6ijYxtNR5S1hT74s5N4BLS/DNCIEmMQ3ApowClIWj+GSZ\njbZIVY7YHQIosIhZ+utVWn8aoV8sWw+Xy3FCsfozK6zV8N4vquH7PrOcoSqZ\n8MIQ\r\n=beEA\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCzTT7rwsl2H1QKAmfYSs4xRv75yEemPQTLacwhiftuEQIhAPZpf11V64n7lxb90mZZ2uV1/REO3kwXAYaMGjEk84AU"}]},"maintainers":[{"name":"anonymous","email":"privateomega@protonmail.com"}],"_npmUser":{"name":"anonymous","email":"privateomega@protonmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-docx_1.1.17_1592220905652_0.4211061406241252"},"_hasShrinkwrap":false},"1.1.18":{"name":"html-to-docx","version":"1.1.18","description":"HTML to DOCX converter","keywords":["html","docx","html-to-docx","html to docx","office","word"],"main":"dist/html-to-docx.cjs.js","module":"dist/html-to-docx.esm.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","release":"standard-version","lint":"eslint .","prettier:check":"prettier --check '**/*.{js}'","validate":"run-s lint prettier:check","build":"rollup -c"},"repository":{"type":"git","url":"git+https://github.com/privateOmega/html-to-docx.git"},"author":{"name":"privateOmega","email":"privateOmega@protonmail.com"},"license":"MIT","bugs":{"url":"https://github.com/privateOmega/html-to-docx/issues"},"homepage":"https://github.com/privateOmega/html-to-docx#readme","devDependencies":{"@commitlint/cli":"^8.3.5","@commitlint/config-conventional":"^8.3.4","@rollup/plugin-commonjs":"^12.0.0","@rollup/plugin-json":"^4.0.3","@rollup/plugin-node-resolve":"^8.0.0","eslint":"^6.8.0","eslint-config-airbnb":"^18.1.0","eslint-config-prettier":"^6.11.0","eslint-plugin-import":"^2.20.2","eslint-plugin-jsx-a11y":"^6.2.3","eslint-plugin-prettier":"^3.1.3","eslint-plugin-react":"^7.19.0","eslint-plugin-react-hooks":"^2.5.0","husky":"^4.2.5","lint-staged":"^10.2.6","npm-run-all":"^4.1.5","prettier":"^2.0.5","rollup":"^2.11.2","rollup-plugin-terser":"^6.1.0","standard-version":"^8.0.0"},"dependencies":{"color-name":"^1.1.4","escape-html":"^1.0.3","html-minifier":"^4.0.0","html-to-vdom":"^0.7.0","image-size":"^0.8.3","jszip":"^3.4.0","virtual-dom":"^2.1.1","xmlbuilder2":"2.1.2"},"config":{"commitizen":{"path":"cz-conventional-changelog"}},"husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged"}},"lint-staged":{"src/**/*.js":["prettier --write","eslint --fix","git add"]},"gitHead":"157276e9a250f04bc477a2f56d2ccec2aff65f01","_id":"html-to-docx@1.1.18","_nodeVersion":"14.4.0","_npmVersion":"6.14.5","dist":{"integrity":"sha512-xnTaCSsuqrlOM5mEOToJ5bPVV+n0q5P08C1kHJhRqzkpGraWR+edT1Hxu091K7x9JF0Ih9VwHpMzkcN9XMSZ3w==","shasum":"bb1661069d91abb299d2ab8bd00f5b829e3bcd88","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/html-to-docx/-/html-to-docx-1.1.18.tgz","fileCount":11,"unpackedSize":718103,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe8bULCRA9TVsSAnZWagAASb8QAIMmB7n7I34wmkbNKIPs\nHq7IT14Mxgb/5qNn7Qn3fCef338FMTiFc4B48TmybzSSatJBoa7vqK2O06S7\nbgVaQ3+UMfZu0ke46B1uVOLndV8Q5d1dQ/u16YSI5BKNjOCibuIi/lPJrJvj\nZLogZJEV5q2Ex778l2snaLmYHv/0vakCl18LYM7N14oJQpxnMYNZbMgETa6t\nxixf1a6FMrSRNpsRYGqA2BG4alaLFoWZU25xx/cLFmxiT3S4NbIeB4/M8Xpe\nAEmOhownCUklLz8+/wgqgymzOO05UJQz80gg2eiFgXnw4It4CCHzFxrwcWrP\n2UWgW8lq/kEU1zNbcdEGMLfx3nMJzDeg1exvQWFsSfHhE4vFf8Nn5QiTe/tC\nB8lEtVLmeZ+wQARExXw7PHxqN8EkRPZcdnWY2K90Utwu3bz4D6Y18ExM9QdZ\ngvLlSGGhBG5iQsTWv98nt9F+wFv73EvGVXu+S1aIIEjHH5OnrfOMWx0odvZx\nr7qaxgsZSlJVgt35DFKSY0Fid2C4J2KVLeCVLt7yRg1hYMMQxobHDA6rPS4y\nLc494t9Kccpw920yFeaJ7BTf03flcQPmsRXVEpttP7CGqKPUUJJL8krfxIXd\nVdUBLRW8669B0jMRQ4keO/LLbByI1AJ0R4xxQFZ75L9ksIOYcH65vWxh5PH6\n9ntR\r\n=juD4\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCa1X6QYhNacPDx0rlscZRgXkp8f5aX1GLzSoyf7VhDcAIgMoXfiNRWeBnx2sek+rTM6H6ZZJ0qtlf/nH2qtsVwh6o="}]},"maintainers":[{"name":"anonymous","email":"privateomega@protonmail.com"}],"_npmUser":{"name":"anonymous","email":"privateomega@protonmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-docx_1.1.18_1592898827211_0.6353619736298568"},"_hasShrinkwrap":false},"1.1.19":{"name":"html-to-docx","version":"1.1.19","description":"HTML to DOCX converter","keywords":["html","docx","html-to-docx","html to docx","office","word"],"main":"dist/html-to-docx.cjs.js","module":"dist/html-to-docx.esm.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","release":"standard-version","lint":"eslint .","prettier:check":"prettier --check '**/*.{js}'","validate":"run-s lint prettier:check","build":"rollup -c"},"repository":{"type":"git","url":"git+https://github.com/privateOmega/html-to-docx.git"},"author":{"name":"privateOmega","email":"privateOmega@protonmail.com"},"license":"MIT","bugs":{"url":"https://github.com/privateOmega/html-to-docx/issues"},"homepage":"https://github.com/privateOmega/html-to-docx#readme","devDependencies":{"@commitlint/cli":"^8.3.5","@commitlint/config-conventional":"^8.3.4","@rollup/plugin-commonjs":"^12.0.0","@rollup/plugin-json":"^4.0.3","@rollup/plugin-node-resolve":"^8.0.0","eslint":"^6.8.0","eslint-config-airbnb":"^18.1.0","eslint-config-prettier":"^6.11.0","eslint-plugin-import":"^2.20.2","eslint-plugin-jsx-a11y":"^6.2.3","eslint-plugin-prettier":"^3.1.3","eslint-plugin-react":"^7.19.0","eslint-plugin-react-hooks":"^2.5.0","husky":"^4.2.5","lint-staged":"^10.2.6","npm-run-all":"^4.1.5","prettier":"^2.0.5","rollup":"^2.11.2","rollup-plugin-terser":"^6.1.0","standard-version":"^8.0.0"},"dependencies":{"color-name":"^1.1.4","escape-html":"^1.0.3","html-minifier":"^4.0.0","html-to-vdom":"^0.7.0","image-size":"^0.8.3","jszip":"^3.4.0","virtual-dom":"^2.1.1","xmlbuilder2":"2.1.2"},"config":{"commitizen":{"path":"cz-conventional-changelog"}},"husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged"}},"lint-staged":{"src/**/*.js":["prettier --write","eslint --fix","git add"]},"gitHead":"a19b8c73db17d7b47969714b12e78874fe09af49","_id":"html-to-docx@1.1.19","_nodeVersion":"10.19.0","_npmVersion":"6.13.4","dist":{"integrity":"sha512-hi93jcc0SPiVuTxQ2/zHTumlKgs6mKBUeOBKtLrI8PfcnzGbjpbooCZb+on0LmvWhiHidkSxG0DgnlKpMs8B/Q==","shasum":"f72dbdb23fbf656ae666caa951318692f26d7ea2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/html-to-docx/-/html-to-docx-1.1.19.tgz","fileCount":13,"unpackedSize":909180,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe/FwxCRA9TVsSAnZWagAADkMP/1qAcpcUuI634svx2wJg\n4nwIFXQ3QNrcbBkp6tbfwn5ll95mfrcDr9Zwpp0FNU4TAkbUQgdTc016S9fs\npFEj0K7jLecPxz3yRH17LR+jaAhJYFfhoXIU+NWZsAEeAhJ7wYPpuEX6dwg5\nXViLlrID9Kx5YwMyWz4vdawxZRT7JCm6XbcElHYyZ/GK+VJcLUss+PHHG2Pi\nuzcSXWLkL5nOzbFI7L/e4xuDQGmqb01lODknyT1dbo0FKQt5PbArijOr9YBz\nrrNGvgWrjfV8IOaFIZrgy+DjZ7KLT+tsDNaT23PLzjWQfU/yA94U8qprxZ9G\niTjfdPAtyZWHyDgtrEv8/2Py5ZfyvtisAJunHlmfBTX2ky5wxah7w+O95dmx\niZycsO9DpZBWCAqvB3wDrl4eAaproCTeaPLME51r1tojTMYrtifFwGVtmAIk\n3Z4lkG1H61qV1GyrGYuaxxudgJwonFMfptoreN2Bvr+Wnqr3ArG7hY+WlE4/\nZcDUM5S/Wlaw8fk9WDd7rDmlHyuEASkTYaUHbDcC65n6kJeP2IEqYwQIbjKG\nMc4Tjc8rvDsPXGAWofUfPO/NfQzCcB0N9JamQOElKxK2xT5/b8SeMq9ggwoG\nERiZ2suin2JG56sIFQc8lRKHN0YbvvS2XbGajlyJlVXYTljDb1tnRPaHuZZq\nyHxG\r\n=c6z2\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC7MhMghTBqma2O8YN9M56jQH6bDp02/TErUxd8kIx8ugIhAMXWym9UMhKsT61Qv2TogGd2XyO7V3CeXE6rfvBaGOzn"}]},"maintainers":[{"name":"anonymous","email":"privateomega@protonmail.com"}],"_npmUser":{"name":"anonymous","email":"privateomega@protonmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-docx_1.1.19_1593596976758_0.03625332203061138"},"_hasShrinkwrap":false},"1.1.20":{"name":"html-to-docx","version":"1.1.20","description":"HTML to DOCX converter","keywords":["html","docx","html-to-docx","html to docx","office","word"],"main":"dist/html-to-docx.cjs.js","module":"dist/html-to-docx.esm.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","release":"standard-version","lint":"eslint .","prettier:check":"prettier --check '**/*.{js}'","validate":"run-s lint prettier:check","build":"rollup -c"},"repository":{"type":"git","url":"git+https://github.com/privateOmega/html-to-docx.git"},"author":{"name":"privateOmega","email":"privateOmega@protonmail.com"},"license":"MIT","bugs":{"url":"https://github.com/privateOmega/html-to-docx/issues"},"homepage":"https://github.com/privateOmega/html-to-docx#readme","devDependencies":{"@commitlint/cli":"^8.3.5","@commitlint/config-conventional":"^8.3.4","@rollup/plugin-commonjs":"^12.0.0","@rollup/plugin-json":"^4.0.3","@rollup/plugin-node-resolve":"^8.0.0","eslint":"^6.8.0","eslint-config-airbnb":"^18.1.0","eslint-config-prettier":"^6.11.0","eslint-plugin-import":"^2.20.2","eslint-plugin-jsx-a11y":"^6.2.3","eslint-plugin-prettier":"^3.1.3","eslint-plugin-react":"^7.19.0","eslint-plugin-react-hooks":"^2.5.0","husky":"^4.2.5","lint-staged":"^10.2.6","npm-run-all":"^4.1.5","prettier":"^2.0.5","rollup":"^2.11.2","rollup-plugin-cleaner":"^1.0.0","rollup-plugin-terser":"^6.1.0","standard-version":"^8.0.0"},"dependencies":{"color-name":"^1.1.4","escape-html":"^1.0.3","html-minifier":"^4.0.0","html-to-vdom":"^0.7.0","image-size":"^0.8.3","jszip":"^3.4.0","virtual-dom":"^2.1.1","xmlbuilder2":"2.1.2"},"config":{"commitizen":{"path":"cz-conventional-changelog"}},"husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged"}},"lint-staged":{"src/**/*.js":["prettier --write","eslint --fix","git add"]},"gitHead":"bfa2ae8c8149be0d6e70c08e2ea869a3e4aa5beb","_id":"html-to-docx@1.1.20","_nodeVersion":"10.19.0","_npmVersion":"6.13.4","dist":{"integrity":"sha512-J0KV8Z3rVAPa6HZlSPugii6PvzuDVsYL8+KNEAoqX4A8kEZ+PUzd0cySBbq0owSk5JlmeNsZhDuoR4f/uh5jbg==","shasum":"9501db5e347943dc3d91012374b77f5ed8a62764","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/html-to-docx/-/html-to-docx-1.1.20.tgz","fileCount":11,"unpackedSize":719126,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe/GHzCRA9TVsSAnZWagAAJqoP/iBUwG74RvFWM7RL0VQu\n3HlnCjM9h9fotbq82R1tv/oxIlekUk8Cnd07SY0rhyqyzdkqfcvOZpDRu+Tp\naPWh1kcISgn/OLiwGbe7zdzTLQDl1OxvWo01QeRuibQLcJBbLICqZM6teElk\ndj2KQ2r/7dxdpoyG7RMzQmVTVOs+X5ldoSv4q3zgRmb3IYqDRedHf74nJZcN\na95gt4sgmoX0RHGEmaZ1G23hEAZ7ST4JaTuLqnsE8wQnjcJdF+KiUsOHvJUz\nwc4M9smQOnfcYXs6nwZISKHGpcy3vm3KLELFjm/PWemdtPmf9km3FNBEZ1I8\ngJn+ozmyXBdM3rcZ0iZVM4irLuHUPZIYq7LkFwefzvLZOLGyhAoUxI3bRnWX\nWYI22R+Jnv0lrk9AwszscQ5BpwHedy/b2ZrItdqwrTXY8k+S2vi+Du/+/Nda\nfjAAT5kGClamAQfrg0AITTxvhSOx38usIoAHO9IehdjQUSRZZ+u3P31EwhLj\nELVviTOy3QN/woU7sZnDvVnAfPWYPgapL0qPIzmAaiotGbA3LHW/YTxibkEU\n+5D+fP6ihNcC0bEGZDJgk+b7gdJHj9KMheVwiZER8AHSX1/wnedrT2bd2KlW\nJpyHaYLenW7Fu58mePg2cUZijSVj2r0UJsOnTApsgl6Z6tWbQMvBd3Exlnm0\ncQKy\r\n=lsV2\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDCyxlUCypEHEpkL+C3a/OcjA0FUuXPhHEdICrvwSBg/AiBLqXA8w2vpkmY5SMaufz7PTcd74Pgx6RSaEEOcO7Fmow=="}]},"maintainers":[{"name":"anonymous","email":"privateomega@protonmail.com"}],"_npmUser":{"name":"anonymous","email":"privateomega@protonmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-docx_1.1.20_1593598450943_0.15534600687631261"},"_hasShrinkwrap":false},"1.1.21":{"name":"html-to-docx","version":"1.1.21","description":"HTML to DOCX converter","keywords":["html","docx","html-to-docx","html to docx","office","word"],"main":"dist/html-to-docx.cjs.js","module":"dist/html-to-docx.esm.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","release":"standard-version","lint":"eslint .","prettier:check":"prettier --check '**/*.{js}'","validate":"run-s lint prettier:check","build":"rollup -c"},"repository":{"type":"git","url":"git+https://github.com/privateOmega/html-to-docx.git"},"author":{"name":"privateOmega","email":"privateOmega@protonmail.com"},"license":"MIT","bugs":{"url":"https://github.com/privateOmega/html-to-docx/issues"},"homepage":"https://github.com/privateOmega/html-to-docx#readme","devDependencies":{"@commitlint/cli":"^8.3.5","@commitlint/config-conventional":"^8.3.4","@rollup/plugin-commonjs":"^12.0.0","@rollup/plugin-json":"^4.0.3","@rollup/plugin-node-resolve":"^8.0.0","eslint":"^6.8.0","eslint-config-airbnb":"^18.1.0","eslint-config-prettier":"^6.11.0","eslint-plugin-import":"^2.20.2","eslint-plugin-jsx-a11y":"^6.2.3","eslint-plugin-prettier":"^3.1.3","eslint-plugin-react":"^7.19.0","eslint-plugin-react-hooks":"^2.5.0","husky":"^4.2.5","lint-staged":"^10.2.6","npm-run-all":"^4.1.5","prettier":"^2.0.5","rollup":"^2.11.2","rollup-plugin-cleaner":"^1.0.0","rollup-plugin-terser":"^6.1.0","standard-version":"^8.0.0"},"dependencies":{"color-name":"^1.1.4","escape-html":"^1.0.3","html-minifier":"^4.0.0","html-to-vdom":"^0.7.0","image-size":"^0.8.3","jszip":"^3.4.0","virtual-dom":"^2.1.1","xmlbuilder2":"2.1.2"},"config":{"commitizen":{"path":"cz-conventional-changelog"}},"husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged"}},"lint-staged":{"src/**/*.js":["prettier --write","eslint --fix","git add"]},"gitHead":"25cf3af4f2b78d2b71c4e48da998cc416aaf1c05","_id":"html-to-docx@1.1.21","_nodeVersion":"10.19.0","_npmVersion":"6.13.4","dist":{"integrity":"sha512-ClM3gZEEy5yCG9uY4Q2QPKkhr5VCdqGfj+3KozF43p+M8Cx9nHAjMYVQt0WArqAsF4UYYUhJLSUl6vAnx0EOfw==","shasum":"21092d52985271c43c6d779a4e7f93bb4581e5d0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/html-to-docx/-/html-to-docx-1.1.21.tgz","fileCount":11,"unpackedSize":719382,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe/bXPCRA9TVsSAnZWagAAe3QP/16ZOiLpOkmd5lmwkwyo\nPtwzsyRiN93e0dGUkcpZUcuP/gyG/FtKUkdjsvrYhKlmD/P1MEnO/qmCtDB7\nSQ/hTxI2ux1WSU5UjthfEObmXM28bSSO6RG/K0W+Tt3lR89BBX/5JDRTP9Wz\nJDXgdG2TmRjIIkq/6VDYpwlckwyO1PZa3OmrJH1yPbkg8L++xQ9MPxYJ8i4W\nra6pvQVWg14QVs/1q+ETDdOsVURrHuzTByTJEFSbYx5ODnBoS1ysNoUYz3vw\n9AuvWS8Bua7sw3FE4DKWsgQUeatza1eEvGsjrARCX82NAaHFVdpdOpUy0M0W\n4zbJL3apBZSWtE9Gz3SOwj7azfHqFHTBPh2cL+XWWt+RqmD9sWJOm9eYYOMC\nWq8xFdmFAwmHMH+fQjB0Q0uXGqbOq2E7kvkkphKCbpRKQB7u2xiXPRkgTgo4\npyAdw7eexbkpLM6c9XrMO2PnrVcn2U2+DAjtiq0ZhmVFdVScZMUyybND0U/K\nLs5H/+n/iC4RfMn5IXgzzPp0xXRmjy4+ltWdHFsu4jBKfcbAgNhnN+W89JOc\nkmnfQQEZDula/y4ve+rcpwq0lkb4yGxF6PJ0RE7QCB6dM9aD0bkA1Eeh+1gr\n+oF5gT5YsH9QoVE3DVdtK387QspCSWbbpcDoLi1t6CVPb+mJVYSdqRZFRbJY\n75Rl\r\n=k0PJ\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICIu/IWdZf2jE4RuJd6k7Jsrkzu4rS+YUE/DHA6zFVF7AiEA4ZFi9qi4QcQo9shxUD6jlpdsrHhpXabiZ5leCDSTMqc="}]},"maintainers":[{"name":"anonymous","email":"privateomega@protonmail.com"}],"_npmUser":{"name":"anonymous","email":"privateomega@protonmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-docx_1.1.21_1593685454531_0.39781475280108425"},"_hasShrinkwrap":false},"1.1.22":{"name":"html-to-docx","version":"1.1.22","description":"HTML to DOCX converter","keywords":["html","docx","html-to-docx","html to docx","office","word"],"main":"dist/html-to-docx.cjs.js","module":"dist/html-to-docx.esm.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","release":"standard-version","lint":"eslint .","prettier:check":"prettier --check '**/*.{js}'","validate":"run-s lint prettier:check","build":"rollup -c"},"repository":{"type":"git","url":"git+https://github.com/privateOmega/html-to-docx.git"},"author":{"name":"privateOmega","email":"privateOmega@protonmail.com"},"license":"MIT","bugs":{"url":"https://github.com/privateOmega/html-to-docx/issues"},"homepage":"https://github.com/privateOmega/html-to-docx#readme","devDependencies":{"@commitlint/cli":"^8.3.5","@commitlint/config-conventional":"^8.3.4","@rollup/plugin-commonjs":"^12.0.0","@rollup/plugin-json":"^4.0.3","@rollup/plugin-node-resolve":"^8.0.0","eslint":"^6.8.0","eslint-config-airbnb":"^18.1.0","eslint-config-prettier":"^6.11.0","eslint-plugin-import":"^2.20.2","eslint-plugin-jsx-a11y":"^6.2.3","eslint-plugin-prettier":"^3.1.3","eslint-plugin-react":"^7.19.0","eslint-plugin-react-hooks":"^2.5.0","husky":"^4.2.5","lint-staged":"^10.2.6","npm-run-all":"^4.1.5","prettier":"^2.0.5","rollup":"^2.11.2","rollup-plugin-cleaner":"^1.0.0","rollup-plugin-terser":"^6.1.0","standard-version":"^8.0.0"},"dependencies":{"color-name":"^1.1.4","escape-html":"^1.0.3","html-minifier":"^4.0.0","html-to-vdom":"^0.7.0","image-size":"^0.8.3","jszip":"^3.4.0","libtidy-updated":"^0.4.1","virtual-dom":"^2.1.1","xmlbuilder2":"2.1.2"},"config":{"commitizen":{"path":"cz-conventional-changelog"}},"husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged"}},"lint-staged":{"src/**/*.js":["prettier --write","eslint --fix","git add"]},"gitHead":"c38f0d4b200e7d889bffba7e9f3f500c68a53c45","_id":"html-to-docx@1.1.22","_nodeVersion":"10.21.0","_npmVersion":"6.14.4","dist":{"integrity":"sha512-cEYnvvwPb/qj5H+UDPMfX7lFYcnaAHqD+BqRAN3sWyExGSM/KL2i7tf0ciYIke4aNWeXCWdCrKfedZAPjaRWEw==","shasum":"a22db1397ad8c446d6f1cee5ae15fa33b216cc19","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/html-to-docx/-/html-to-docx-1.1.22.tgz","fileCount":11,"unpackedSize":810879,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfBvaICRA9TVsSAnZWagAA9HsP/Rmd+mhsoaB5YYKkM3tC\n9SN6OFgeVaSFg1voYeYI0CTU/vglKGTSPmzCrp3Rx+p3adK2kxMn27a52eZ1\n02r90Zol2tu+6Qodf+xYqTh8uwUzeVwh0LnxbhKUsu26MKHZoCjL3F7yYEB8\nFLeHlA4YCmWqP8RwideC883V8HRaX8AHKTlOO3nAJKuVplBYYeeaBfK20CLr\nlMX6GALtj5DH0guqjFfMXostpKWnXIAZiquERRREtWr4D1VS3lEM0kBUeu2U\nlcm7dMjNDeqbs8HnQL25B8usChoi+85OGUiNu7K1XbBebvrSctzpAwPgqlHL\nVtxLjBgIOptKHX65t/nKJbs2LhJPGADeb9cdB6CEpePkyjjR8iLK/vCmg6kJ\n6WJxufov+nRzmDN/oZ0bIL0V4N6ntBv5tKiH+Rx4ESA3KxfvXB/KK4GCCa+z\n5vHAdKSQZajWgYzzHOXagqNQe4gTL6b7PwYDZQvhNy9b2lFnWWYUKjnOcot1\nIAOnYRYHewUOw0uF/PEsdVwLPF4/nVLVKXB78ZoA/uCKbsEmOULNX5YLywM2\nzTFSDOwa+fMAG53guFa6C5wZXE5yeNPRCvgHUGH/ktFTe/ztOZG6QEF7I1E1\nvLZh8BfWUDOEnj7bkDSzKNa2cn3Bn879wFUy59LmocFGqpmGyaV0pwoLtJU8\nRJgi\r\n=CqGR\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCS//aX6N9ofG+1I/GI9oM6FpXi8t6EByN2Rci9wMRVVgIgPjf52aTqLE/ZD14MI/HiIsaoXzw3b4gk5SRNnINA7J4="}]},"maintainers":[{"name":"anonymous","email":"privateomega@protonmail.com"}],"_npmUser":{"name":"anonymous","email":"privateomega@protonmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-docx_1.1.22_1594291848123_0.7854204885621947"},"_hasShrinkwrap":false},"1.1.23":{"name":"html-to-docx","version":"1.1.23","description":"HTML to DOCX converter","keywords":["html","docx","html-to-docx","html to docx","office","word"],"main":"dist/html-to-docx.cjs.js","module":"dist/html-to-docx.esm.js","scripts":{"test":"npm run build && node example/example-node.js","release":"standard-version","lint":"eslint --fix .","prettier:check":"prettier --check '**/*.{js}'","validate":"run-s lint prettier:check","build":"rollup -c"},"repository":{"type":"git","url":"git+https://github.com/privateOmega/html-to-docx.git"},"author":{"name":"privateOmega","email":"privateOmega@protonmail.com"},"license":"MIT","bugs":{"url":"https://github.com/privateOmega/html-to-docx/issues"},"homepage":"https://github.com/privateOmega/html-to-docx#readme","devDependencies":{"@commitlint/cli":"^8.3.5","@commitlint/config-conventional":"^8.3.4","@rollup/plugin-commonjs":"^12.0.0","@rollup/plugin-json":"^4.1.0","@rollup/plugin-node-resolve":"^8.1.0","eslint":"^6.8.0","eslint-config-airbnb":"^18.2.0","eslint-config-prettier":"^6.11.0","eslint-plugin-import":"^2.22.0","eslint-plugin-jsx-a11y":"^6.3.1","eslint-plugin-prettier":"^3.1.4","eslint-plugin-react":"^7.20.3","eslint-plugin-react-hooks":"^2.5.1","husky":"^4.2.5","lint-staged":"^10.2.11","npm-run-all":"^4.1.5","prettier":"^2.0.5","rollup":"^2.18.2","rollup-plugin-cleaner":"^1.0.0","rollup-plugin-terser":"^6.1.0","standard-version":"^8.0.0"},"dependencies":{"color-name":"^1.1.4","escape-html":"^1.0.3","html-minifier":"^4.0.0","html-to-vdom":"^0.7.0","image-size":"^0.8.3","jszip":"^3.5.0","libtidy-updated":"^0.4.1","virtual-dom":"^2.1.1","xmlbuilder2":"2.1.2"},"config":{"commitizen":{"path":"cz-conventional-changelog"}},"husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged"}},"lint-staged":{"src/**/*.js":["prettier --write","eslint --fix","git add"]},"gitHead":"2720952ef5c0f73796003704863b0d30e375560f","_id":"html-to-docx@1.1.23","_nodeVersion":"10.21.0","_npmVersion":"6.14.4","dist":{"integrity":"sha512-Gb8Va9i2oh7yRMfW6oK7DRlJzNX9QK4DUtsVHwx1bRlxM1ORkenpVsYeU23cm+fIXAltLIifqxOeRoTLBm75pQ==","shasum":"8098ab3fe7b435be3947c114be530a80cbd70096","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/html-to-docx/-/html-to-docx-1.1.23.tgz","fileCount":11,"unpackedSize":812176,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfFrR6CRA9TVsSAnZWagAA6eoP/26IoMAbpL2ccSFnfeDH\nl5u301haTKJY6sdX9Y5TkhwbUWgKfiDByTtBp5fU0YkQm6XY+kzr8NpA7sAi\nd5wNZ7P6TuFCmUI8UU65NDut68LgVdaKqg52JVVv5/CHOVYtae9sOsoDDw9i\nnVgzF++g2cwk4fXB63yRA+xfOirAg6wFgtr3eo8U7gSq+455J3BRPI+UZx0W\nF8JENkwZ8jDtZAWbK1uhQmsVqemml4Hmwhxm6TujXqFhVH+F/vQd49BPdcRC\n/90VTIaNiZL8C3exeHYQlVaOTDtJqGxCw62AS6nTg6wrYgGN/G0YpMr38ngd\nksJgoPxzrC69lMnaYoVI3AaVvhLjEn7EWRndqtySrmjKCOqrymU4PBcRP7ih\nYv+wrw3sS1peaMxgTdWRZGvlssdGOzhB6irt391StWMXRX+1tF3bqEYlv5Ig\nx18rYT+iYLXalQL4m0lhwIBGBV/Brc+PTal509mwXoYsXYgIWmjpnRmReNw7\nj1M7KJ5hcF6rZK0vpbV3/dhg4csDvVJy6aXHYe4tR7kwqsM0dleS6rQHslpR\nmqeMyO5gYT9LlRqgUqBSQLUHhVXhsBSQVBs9DPpoLeYZnYvSL9X/xuFH1U/3\nIdC3MDn1KrYj7mBQLcSz9PStH68M6itbgo1x0EaHg35CRV+fb2DmM0rc6WUy\n4BuL\r\n=5YoM\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDtOzndtJgs88xwxgfli61my25n6axSmf5e5bWgkkyUJgIhAIfcuMzC5V2A9NQqve3lbTLoXf9qe9qaLbiIm47WU+Fg"}]},"maintainers":[{"name":"anonymous","email":"privateomega@protonmail.com"}],"_npmUser":{"name":"anonymous","email":"privateomega@protonmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-docx_1.1.23_1595323514191_0.24504355709062686"},"_hasShrinkwrap":false},"1.1.24":{"name":"html-to-docx","version":"1.1.24","description":"HTML to DOCX converter","keywords":["html","docx","html-to-docx","html to docx","office","word"],"main":"dist/html-to-docx.cjs.js","module":"dist/html-to-docx.esm.js","scripts":{"test":"npm run build && node example/example-node.js","release":"standard-version","lint":"eslint --fix .","prettier:check":"prettier --check '**/*.{js}'","validate":"run-s lint prettier:check","build":"rollup -c"},"repository":{"type":"git","url":"git+https://github.com/privateOmega/html-to-docx.git"},"author":{"name":"privateOmega","email":"privateOmega@protonmail.com"},"license":"MIT","bugs":{"url":"https://github.com/privateOmega/html-to-docx/issues"},"homepage":"https://github.com/privateOmega/html-to-docx#readme","devDependencies":{"@commitlint/cli":"^8.3.5","@commitlint/config-conventional":"^8.3.4","@rollup/plugin-commonjs":"^12.0.0","@rollup/plugin-json":"^4.1.0","@rollup/plugin-node-resolve":"^8.1.0","eslint":"^6.8.0","eslint-config-airbnb":"^18.2.0","eslint-config-prettier":"^6.11.0","eslint-plugin-import":"^2.22.0","eslint-plugin-jsx-a11y":"^6.3.1","eslint-plugin-prettier":"^3.1.4","eslint-plugin-react":"^7.20.3","eslint-plugin-react-hooks":"^2.5.1","husky":"^4.2.5","lint-staged":"^10.2.11","npm-run-all":"^4.1.5","prettier":"^2.0.5","rollup":"^2.18.2","rollup-plugin-cleaner":"^1.0.0","rollup-plugin-terser":"^6.1.0","standard-version":"^8.0.0"},"dependencies":{"color-name":"^1.1.4","escape-html":"^1.0.3","html-minifier":"^4.0.0","html-to-vdom":"^0.7.0","image-size":"^0.8.3","jszip":"^3.5.0","libtidy-updated":"^0.4.1","virtual-dom":"^2.1.1","xmlbuilder2":"2.1.2"},"config":{"commitizen":{"path":"cz-conventional-changelog"}},"husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged"}},"lint-staged":{"src/**/*.js":["prettier --write","eslint --fix","git add"]},"gitHead":"369602292bcba66f166ae140dc47bb4c508e7278","_id":"html-to-docx@1.1.24","_nodeVersion":"10.21.0","_npmVersion":"6.14.4","dist":{"integrity":"sha512-SQNiZZdac0QpsO575T94LsmXXx+HRqpAxZuAHHmlXZo+8YR9YF86Az1liisSsQUMzlw6a8gbD5mswOwy0JEC9g==","shasum":"19294063731479934c7a9ad975cc2d217db21013","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/html-to-docx/-/html-to-docx-1.1.24.tgz","fileCount":11,"unpackedSize":817653,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfF9dyCRA9TVsSAnZWagAAtb8QAJP+jTyM0CQCTMURE59h\nqttMrV1OMi7gsv6v0NQADCdz03z5RH2bC7PyQXW4Apfq6zsGhzfLeU11/iTp\nbhe1PEtVNvC+H0lFz8akACJ7Te3y4BxKEbLkNbg6Rv3C3Q8GOUQJPLMreh63\nq+lSaEFhkxGYOzPpoB1/JVkbKYHhIDb7G4Es4JSopCRQOtQQ7Zo55alvu/xl\nbKlVCyGKiDijvcuwlA9HSah7KnEzddpiBRuidiYdTR66MQ2NFWNM3bZMv30B\nupUlBobvNf2H7m5xSW+PtIQwNfOKXJVX6VCEmv+OkdM3J+U+duCqkUu4RGya\nOml6VOvf7FQ4e7YYcy9m2ekUhN23XEu91dhczIw2aDgNn1SXQcYLopnqvtwW\n51PlWzqAOAsNR7CIlN9jFznVWfEkxzIyPHAx/uwThnPHbyMihW5SdNwKOc+B\ncfv9DrWo05w0xDX8GJZvcFVPG6lg47HjtTBf4I0FUP1NFrSpa1W7143tfNuv\nxehd0AxrygWplnLdpstB3iNNfOOND7/zxzGvjXASe1SZRcBJkrlQZ0/maCJn\nxx/U5dUGv5ssQRVW6kyZuJOoEB7QvNFrbDZr4zCoZiVfU3jdJSPed5622TS+\nxA3eo1xOOrWj3dzWyVWedTx2HILcSE7pMnjW6OsieJDnHQUkTSOxKEml4MJg\nJEFA\r\n=c2m1\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC7zNI2IxGIA9jBxHhOfRSTLOx5h8EpYBUc+KlBtOo+tAIgUwOLajGQIkewB2Ycrs3bN5gvPiBttFQUFM8kvCl7qsM="}]},"maintainers":[{"name":"anonymous","email":"privateomega@protonmail.com"}],"_npmUser":{"name":"anonymous","email":"privateomega@protonmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-docx_1.1.24_1595398001629_0.827588763466782"},"_hasShrinkwrap":false},"1.1.25":{"name":"html-to-docx","version":"1.1.25","description":"HTML to DOCX converter","keywords":["html","docx","html-to-docx","html to docx","office","word"],"main":"dist/html-to-docx.cjs.js","module":"dist/html-to-docx.esm.js","scripts":{"test":"npm run build && node example/example-node.js","release":"standard-version","lint":"eslint --fix .","prettier:check":"prettier --check '**/*.{js}'","validate":"run-s lint prettier:check","build":"rollup -c"},"repository":{"type":"git","url":"git+https://github.com/privateOmega/html-to-docx.git"},"author":{"name":"privateOmega","email":"privateOmega@protonmail.com"},"contributors":[{"name":"amrita-syn","email":"amrita.yadav@synapsica.com"},{"name":"charuthaB","email":"charutha.bhaskar@synapsica.com"}],"license":"MIT","bugs":{"url":"https://github.com/privateOmega/html-to-docx/issues"},"homepage":"https://github.com/privateOmega/html-to-docx#readme","devDependencies":{"@commitlint/cli":"^8.3.5","@commitlint/config-conventional":"^8.3.4","@rollup/plugin-commonjs":"^12.0.0","@rollup/plugin-json":"^4.1.0","@rollup/plugin-node-resolve":"^8.1.0","eslint":"^6.8.0","eslint-config-airbnb":"^18.2.0","eslint-config-prettier":"^6.11.0","eslint-plugin-import":"^2.22.0","eslint-plugin-jsx-a11y":"^6.3.1","eslint-plugin-prettier":"^3.1.4","eslint-plugin-react":"^7.20.3","eslint-plugin-react-hooks":"^2.5.1","husky":"^4.2.5","lint-staged":"^10.2.11","npm-run-all":"^4.1.5","prettier":"^2.0.5","rollup":"^2.18.2","rollup-plugin-cleaner":"^1.0.0","rollup-plugin-terser":"^6.1.0","standard-version":"^8.0.0"},"dependencies":{"color-name":"^1.1.4","escape-html":"^1.0.3","html-minifier":"^4.0.0","html-to-vdom":"^0.7.0","image-size":"^0.8.3","jszip":"^3.5.0","libtidy-updated":"^0.4.1","virtual-dom":"^2.1.1","xmlbuilder2":"2.1.2"},"config":{"commitizen":{"path":"cz-conventional-changelog"}},"husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged"}},"lint-staged":{"src/**/*.js":["prettier --write","eslint --fix","git add"]},"gitHead":"47cbcd41db3baff903899d4d0924f34ed14cbf4e","_id":"html-to-docx@1.1.25","_nodeVersion":"10.21.0","_npmVersion":"6.14.4","dist":{"integrity":"sha512-kdKovyS6Y1v+WSMXFe/XFfW7tLc5w4x8za0h6zKqNBZqGUpJhgMpsxqNyruSg6wgy5Jrf5EHwp/+aGsIcl92eA==","shasum":"2b94f6f91cba94ed83c4253a846a3bf822dd2aec","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/html-to-docx/-/html-to-docx-1.1.25.tgz","fileCount":11,"unpackedSize":827672,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfGr30CRA9TVsSAnZWagAAusUQAJo/28jNszm8yRBFKSS2\nQ/oDJFm6orDWxkD1DqGCkZr5z4YI0BwflmIlJgwS1nYMOY9EudSh+Fh2azAI\nJQsjNetIIX2WprcZKMNT/xDdTYuKeBDQDvKinF//Zz2M0agUt9yDGnMy4YXT\nMi15rguGIrx97BoxvPnQXkkaEEJ0zH8XiZLoEZZ1JBaeCixKeg2gQ82Foq54\nsELETj6jxzAN76r58QfHz38LB4r8iEf7SRtkrfIInOpdNiwaIzl4k3eMGZ6z\n+zlhwRSLjiKJDxsR//ui+3jYgbpolCMRlz6pG1Mg3c8+S80+3Dzed77TAWsZ\nw95pq1JRjBM6VMmM2Kmm8TGeL6280Ei7udaCK7G68TZcvydCOg6EHGW64Yzi\nrtHde99othev6nueIgvaXFio6qLEQDGBqq+rtzzo/Zh9QIA/dRf0Vliy7WnU\nYzUK6j1PYfzut10kGCiT/XHxDMOgk4n4IJpkJ8ta1deFUQ/G1m9prNxyC3dA\nlzcpt3jl1yEpY3dwN3tV0evfYpD/p52j9NatLMyofS06YbDN4VK2MHveCCDQ\nia7zr6BvPy2c36cfiTjquFfKCCDccGrh/bLQ+je+I4Hd+2eO+WP1/1c0pn1Y\n9QeCNCa6X50W3u5QaxKN7UmwUb4s7bj1dsOat2Jcews4pQlKFEay26od09+h\nnr4S\r\n=+5cM\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCDkqydeQNX3AUBGEy9rlIYcBTa3oDP0tQyTJJmmun9oQIgJZRtYID7RUwuiNSl2m6ziEJ2YCeuhiJ03wIqfCowelI="}]},"maintainers":[{"name":"anonymous","email":"privateomega@protonmail.com"}],"_npmUser":{"name":"anonymous","email":"privateomega@protonmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-docx_1.1.25_1595588084023_0.03746858166882894"},"_hasShrinkwrap":false},"1.1.26":{"name":"html-to-docx","version":"1.1.26","description":"HTML to DOCX converter","keywords":["html","docx","html-to-docx","html to docx","office","word"],"main":"dist/html-to-docx.cjs.js","module":"dist/html-to-docx.esm.js","scripts":{"test":"npm run build && node example/example-node.js","release":"standard-version","lint":"eslint --fix .","prettier:check":"prettier --check '**/*.{js}'","validate":"run-s lint prettier:check","build":"rollup -c"},"repository":{"type":"git","url":"git+https://github.com/privateOmega/html-to-docx.git"},"author":{"name":"privateOmega","email":"privateOmega@protonmail.com"},"contributors":[{"name":"amrita-syn","email":"amrita.yadav@synapsica.com"},{"name":"charuthaB","email":"charutha.bhaskar@synapsica.com"}],"license":"MIT","bugs":{"url":"https://github.com/privateOmega/html-to-docx/issues"},"homepage":"https://github.com/privateOmega/html-to-docx#readme","devDependencies":{"@commitlint/cli":"^8.3.5","@commitlint/config-conventional":"^8.3.4","@rollup/plugin-commonjs":"^12.0.0","@rollup/plugin-json":"^4.1.0","@rollup/plugin-node-resolve":"^8.1.0","eslint":"^6.8.0","eslint-config-airbnb":"^18.2.0","eslint-config-prettier":"^6.11.0","eslint-plugin-import":"^2.22.0","eslint-plugin-jsx-a11y":"^6.3.1","eslint-plugin-prettier":"^3.1.4","eslint-plugin-react":"^7.20.3","eslint-plugin-react-hooks":"^2.5.1","husky":"^4.2.5","lint-staged":"^10.2.11","npm-run-all":"^4.1.5","prettier":"^2.0.5","rollup":"^2.18.2","rollup-plugin-cleaner":"^1.0.0","rollup-plugin-terser":"^6.1.0","standard-version":"^8.0.0"},"dependencies":{"color-name":"^1.1.4","escape-html":"^1.0.3","html-minifier":"^4.0.0","html-to-vdom":"^0.7.0","image-size":"^0.8.3","jszip":"^3.5.0","libtidy-updated":"^0.4.1","virtual-dom":"^2.1.1","xmlbuilder2":"2.1.2"},"config":{"commitizen":{"path":"cz-conventional-changelog"}},"husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged"}},"lint-staged":{"src/**/*.js":["prettier --write","eslint --fix","git add"]},"gitHead":"cbb9ffc47377479ba64a51e94509b9ec0a020f9e","_id":"html-to-docx@1.1.26","_nodeVersion":"10.21.0","_npmVersion":"6.14.4","dist":{"integrity":"sha512-hz4U3ThG+S2ooSMYc1ibp5+5EBD/FAo3A92PoWRQ2CcZcFhw/jOnAeG7VsnMAhlqI2c85HObFGUshZ6sza2fGA==","shasum":"8237faf92a22c081211223beb30875599fafe833","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/html-to-docx/-/html-to-docx-1.1.26.tgz","fileCount":11,"unpackedSize":833061,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfKTLPCRA9TVsSAnZWagAAwhMP/3c0z0QrU1F2zxF3YEPj\nSXb/JRhjZ93u2cSxTIRS3I/2sZ1RqkDwUmkUosHwag61kCy8bxOO4cVQNyt9\nRuXVUq5IgWPw8mh9VTD0OE9QwnyTIM6NJaq50/8veBwvyYlw2uz+ko9/hxqG\nrif9G+W2rBKd5Oz2K8zSd/u4wsoYUvBaB/zoB6eRuPCF9qbB3rns4/uHlEN1\nbeuxE0B7VLBBlYlsEPgeyvsYn1WZv7lyt1qGKCm+tNllwzjFlHTumMcJvXYS\npK8jeih4KFWiAuE4o4bwL9s0RxW3u+NkVk0FvvYw1AAhJsk28lWR2EBbwpKf\ntWUEzK0j3gEK6QGoCgpfWI/Xilm//gbPRUhjuIRe5sbFsuwD3JlWKqHS0OoH\nWf/oXisptmk7g+Uf87gBbZms8TcwCCXPaRuZ2fJhrDK8rWe1IX2F5zP8MvKt\nKzI2Xr66DGblKJnjx+XDnTxRmBx9lPa1LMj7Af2JK9zMvauWZk5mSN55CXIy\n8ICdfYGYamt5V+JYGtM9W6irr1Fkk0j0UGsS2G+rUCgwbgOszSeNvPOEF4X0\nL3c+ayWLvxJI9ekaipm1FjXYAFrIZbE5WDMlfrksNBTjQFUt5uFql09Le4AA\nNuOyJv4uoo3peBz22BQIgRZdQbyyVRWKN5VRNQnar+nkmGm2lt+cMtLvEHy0\nOLw9\r\n=IRPC\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCSfAv15AZDKQqTaPYVT3dhdJb78wN7vENBsvoT3qxJ0gIhAIYL6cZ5Z1IRUnq3ciJqkHpxq1YBZIk3Sri6NvU1R/AT"}]},"maintainers":[{"name":"anonymous","email":"privateomega@protonmail.com"}],"_npmUser":{"name":"anonymous","email":"privateomega@protonmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-docx_1.1.26_1596535502796_0.15977018843363688"},"_hasShrinkwrap":false},"1.1.27":{"name":"html-to-docx","version":"1.1.27","description":"HTML to DOCX converter","keywords":["html","docx","html-to-docx","html to docx","office","word"],"main":"dist/html-to-docx.cjs.js","module":"dist/html-to-docx.esm.js","scripts":{"test":"npm run build && node example/example-node.js","release":"standard-version","lint":"eslint --fix .","prettier:check":"prettier --check '**/*.{js}'","validate":"run-s lint prettier:check","build":"rollup -c"},"repository":{"type":"git","url":"git+https://github.com/privateOmega/html-to-docx.git"},"author":{"name":"privateOmega","email":"privateOmega@protonmail.com"},"contributors":[{"name":"amrita-syn","email":"amrita.yadav@synapsica.com"},{"name":"charuthaB","email":"charutha.bhaskar@synapsica.com"}],"license":"MIT","bugs":{"url":"https://github.com/privateOmega/html-to-docx/issues"},"homepage":"https://github.com/privateOmega/html-to-docx#readme","devDependencies":{"@commitlint/cli":"^8.3.5","@commitlint/config-conventional":"^8.3.4","@rollup/plugin-commonjs":"^12.0.0","@rollup/plugin-json":"^4.1.0","@rollup/plugin-node-resolve":"^8.1.0","eslint":"^6.8.0","eslint-config-airbnb":"^18.2.0","eslint-config-prettier":"^6.11.0","eslint-plugin-import":"^2.22.0","eslint-plugin-jsx-a11y":"^6.3.1","eslint-plugin-prettier":"^3.1.4","eslint-plugin-react":"^7.20.3","eslint-plugin-react-hooks":"^2.5.1","husky":"^4.2.5","lint-staged":"^10.2.11","npm-run-all":"^4.1.5","prettier":"^2.0.5","rollup":"^2.18.2","rollup-plugin-cleaner":"^1.0.0","rollup-plugin-terser":"^6.1.0","standard-version":"^8.0.0"},"dependencies":{"color-name":"^1.1.4","escape-html":"^1.0.3","html-minifier":"^4.0.0","html-to-vdom":"^0.7.0","image-size":"^0.8.3","jszip":"^3.5.0","libtidy-updated":"^0.4.1","virtual-dom":"^2.1.1","xmlbuilder2":"2.1.2"},"config":{"commitizen":{"path":"cz-conventional-changelog"}},"husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged"}},"lint-staged":{"src/**/*.js":["prettier --write","eslint --fix","git add"]},"gitHead":"fdc24d8e2e1b7d0f58355803bd3c7d683bcc956b","_id":"html-to-docx@1.1.27","_nodeVersion":"10.21.0","_npmVersion":"6.14.4","dist":{"integrity":"sha512-NGeooVWTK7oneGHIdskcI0ZMPAYYqNd+FR6U3X/ToOpxg48sOYnKZ1M/byYQ8QMHn5aUaxe6aRLF03yhibl9jA==","shasum":"c59ce889b145a419fe34c383419e296492679e3e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/html-to-docx/-/html-to-docx-1.1.27.tgz","fileCount":11,"unpackedSize":833667,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfKWH4CRA9TVsSAnZWagAAZwMP/1t7mz8MepCfX2pnLEt+\n5Ubp0JPAJkShjvyfXxWEsprNjw/eIu/LnEESQTfMGeWyWXW536Wu/byiG2BE\nZJ2kS6Ov0xH0kfp5Jl0ZIbl1VmvVzjO0PeLB7dlNZD2L1RD7vFLSczvq378P\n+npqmN6pbLVenPpHd3bp4epNS/6SYv+lzdlk3dFNM89Iim/kYBv7i5GPblK+\nVwq7311jigtODrBMUNfbzf07hBpVtr4GuxbrMry0o9wZPCconH5zy17b3xA2\nYOgPW/pD6Xpr0uIDdG5qCmIwcq+KL2VT0g7oRIBsddWw6Ybnz4wjHDrLIccc\n7HsOXwa4ifpIwcOWeZYERc7Mj1DSHVn+JznsbL6zTxiQZZiEepcbSZqu8nfh\nM4bnWCIFG4WdmAcysj6HwZbmZ1Yb4zc5R2RZsrq7EpjL/uAyQWPRXdY265jY\nCPSp4wByldHXBm3QVMiuJfmvqzoiS13Cg1aM+qGg8Jj07RlUV1jjvXLEOF94\nnHyTHKKmSW01PiVGgTRbK/njtqLRwQBEsAJV7P8x7/CW05jEp/kDHsJNpjhd\nO3W/aVZAwFmr/UxM/cQPBBNMPdDZhC7/oYNCb+jbLmryrCVDJjGdgL0bGPr0\nHYXLz3fKXkIuw9+0tW5boBj6RbrG0v6OHMQCuTLz4Wvnkzsi2S1xNVHDLSvg\nw6ph\r\n=vAes\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHxQEVLZxir1ATKvr/rRj7wGkXUljkoTzGb6m4+Q/eCEAiEA7Jn+J/W3WVnkKomnIb7JDF1pSH2gWmZth+Q5wwi+t04="}]},"maintainers":[{"name":"anonymous","email":"privateomega@protonmail.com"}],"_npmUser":{"name":"anonymous","email":"privateomega@protonmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-docx_1.1.27_1596547575869_0.8869890689344357"},"_hasShrinkwrap":false},"1.1.28":{"name":"html-to-docx","version":"1.1.28","description":"HTML to DOCX converter","keywords":["html","docx","html-to-docx","html to docx","office","word"],"main":"dist/html-to-docx.cjs.js","module":"dist/html-to-docx.esm.js","scripts":{"test":"npm run build && node example/example-node.js","release":"standard-version","lint":"eslint --fix .","prettier:check":"prettier --check '**/*.{js}'","validate":"run-s lint prettier:check","build":"rollup -c"},"repository":{"type":"git","url":"git+https://github.com/privateOmega/html-to-docx.git"},"author":{"name":"privateOmega","email":"privateOmega@protonmail.com"},"contributors":[{"name":"amrita-syn","email":"amrita.yadav@synapsica.com"},{"name":"charuthaB","email":"charutha.bhaskar@synapsica.com"}],"license":"MIT","bugs":{"url":"https://github.com/privateOmega/html-to-docx/issues"},"homepage":"https://github.com/privateOmega/html-to-docx#readme","devDependencies":{"@commitlint/cli":"^8.3.5","@commitlint/config-conventional":"^8.3.4","@rollup/plugin-commonjs":"^12.0.0","@rollup/plugin-json":"^4.1.0","@rollup/plugin-node-resolve":"^8.1.0","eslint":"^6.8.0","eslint-config-airbnb":"^18.2.0","eslint-config-prettier":"^6.11.0","eslint-plugin-import":"^2.22.0","eslint-plugin-jsx-a11y":"^6.3.1","eslint-plugin-prettier":"^3.1.4","eslint-plugin-react":"^7.20.3","eslint-plugin-react-hooks":"^2.5.1","husky":"^4.2.5","lint-staged":"^10.2.11","npm-run-all":"^4.1.5","prettier":"^2.0.5","rollup":"^2.18.2","rollup-plugin-cleaner":"^1.0.0","rollup-plugin-terser":"^6.1.0","standard-version":"^8.0.0"},"dependencies":{"color-name":"^1.1.4","escape-html":"^1.0.3","html-minifier":"^4.0.0","html-to-vdom":"^0.7.0","image-size":"^0.8.3","jszip":"^3.5.0","libtidy-updated":"^0.4.1","virtual-dom":"^2.1.1","xmlbuilder2":"2.1.2"},"config":{"commitizen":{"path":"cz-conventional-changelog"}},"husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged"}},"lint-staged":{"src/**/*.js":["prettier --write","eslint --fix","git add"]},"gitHead":"0f60a21e537346517da67d3afdd0e8406d3bad07","_id":"html-to-docx@1.1.28","_nodeVersion":"10.21.0","_npmVersion":"6.14.4","dist":{"integrity":"sha512-CK5kZXA8yzfNy5ypUsNKlHQhNQVik7hOPsv+2ShCAjetUTiIWGuwEpaqVf90AxHj+A6Vqc5sP24Z9AGaPZrYpA==","shasum":"ee563d1858b27048b367720e2cdeffaf506f913d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/html-to-docx/-/html-to-docx-1.1.28.tgz","fileCount":11,"unpackedSize":840513,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfK7KGCRA9TVsSAnZWagAAtSgP+gI2A9EK10+MpfhhswZ2\n8Xcpkpn8tFgdqISldF0vWOC4JQHfsSwAftJyu8Cb/H1cSt7I/mITBIQa/BR+\nM6qv0CB27kc5X3CAZwNB34GLRkkZGQtUF/wup9dVrwOheGgNVJbc52/si73A\niJwBUfLJ4ZmbZFKTz1L4CjvNnrJj9qZ321BSApGzCP/au9Z8h2Mg1Mb6BNUU\ntkG5FaQGMNV6jbz/ZcWpLcT7jkG3uN9PQHFlACM5pyrd3bf6GnE1P++xCL+d\nfdDB/Moem1c4eKaEe/6Jbsvrg9degspMiBWk+/i+SItbF0LcPsHExcA/GHbz\nrqdw2COV0HdWFLz2cwu2p4hdwiIdmvkiHGvN9dWGR31TDg0+97TBbM+qVLUn\n7pmiRA8JZr0uo44ulgwWRxmljKoNSZTQDxfoPMr+ZK3aJnUnePylWwITIDh2\neQn5ay0gO6WwYFamOLICJK/xcqo0XxkWXNtXI9NCzZpGWDFSeeYQjtHXmsHj\nvxhdNWqdhdg5PFUA714Z+OCBLgP+ujyquTTusiMKWAWzZ6nivqGI1IihQFfq\nhSnU3nKNfcxO7AfWU+OlDUEceYlyhFnLmhqs9Lc+ZBFPdmJXoe+SyT+Kna7U\nxlHUfjAGtkLhnqiWl1nKUyLLQS5fKwzIVnxjhEtW8CspowC9IVb7W3sGZOHQ\nSdWU\r\n=ChgJ\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCQkkhhRyeMvNILVaouHBDp3cK67FSFlRV8eJmEdVoEjgIhAIIktdwE0daHLGoC+WtHSTwSoZ+ySV6T0v9cfJTEGtJ+"}]},"maintainers":[{"name":"anonymous","email":"privateomega@protonmail.com"}],"_npmUser":{"name":"anonymous","email":"privateomega@protonmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-docx_1.1.28_1596699270036_0.48145277000465203"},"_hasShrinkwrap":false},"1.1.29":{"name":"html-to-docx","version":"1.1.29","description":"HTML to DOCX converter","keywords":["html","docx","html-to-docx","html to docx","office","word"],"main":"dist/html-to-docx.cjs.js","module":"dist/html-to-docx.esm.js","scripts":{"test":"npm run build && node example/example-node.js","release":"standard-version","lint":"eslint --fix .","prettier:check":"prettier --check '**/*.{js}'","validate":"run-s lint prettier:check","build":"rollup -c"},"repository":{"type":"git","url":"git+https://github.com/privateOmega/html-to-docx.git"},"author":{"name":"privateOmega","email":"privateOmega@protonmail.com"},"contributors":[{"name":"amrita-syn","email":"amrita.yadav@synapsica.com"},{"name":"charuthaB","email":"charutha.bhaskar@synapsica.com"}],"license":"MIT","bugs":{"url":"https://github.com/privateOmega/html-to-docx/issues"},"homepage":"https://github.com/privateOmega/html-to-docx#readme","devDependencies":{"@commitlint/cli":"^8.3.5","@commitlint/config-conventional":"^8.3.4","@rollup/plugin-commonjs":"^12.0.0","@rollup/plugin-json":"^4.1.0","@rollup/plugin-node-resolve":"^8.1.0","eslint":"^6.8.0","eslint-config-airbnb":"^18.2.0","eslint-config-prettier":"^6.11.0","eslint-plugin-import":"^2.22.0","eslint-plugin-jsx-a11y":"^6.3.1","eslint-plugin-prettier":"^3.1.4","eslint-plugin-react":"^7.20.3","eslint-plugin-react-hooks":"^2.5.1","husky":"^4.2.5","lint-staged":"^10.2.11","npm-run-all":"^4.1.5","prettier":"^2.0.5","rollup":"^2.18.2","rollup-plugin-cleaner":"^1.0.0","rollup-plugin-terser":"^6.1.0","standard-version":"^8.0.0"},"dependencies":{"color-name":"^1.1.4","escape-html":"^1.0.3","html-minifier":"^4.0.0","html-to-vdom":"^0.7.0","image-size":"^0.8.3","jszip":"^3.5.0","libtidy-updated":"^0.4.1","virtual-dom":"^2.1.1","xmlbuilder2":"2.1.2"},"config":{"commitizen":{"path":"cz-conventional-changelog"}},"husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged"}},"lint-staged":{"src/**/*.js":["prettier --write","eslint --fix","git add"]},"gitHead":"af7df967ee7fd21200f5b860f69e324e17e44d64","_id":"html-to-docx@1.1.29","_nodeVersion":"10.21.0","_npmVersion":"6.14.4","dist":{"integrity":"sha512-OGnzSm0F7p3xiw/CKfe8Cse2l6MJ4b7kM6qNy9zu0hoKf2xNlp5ZcJEkPFGJr8Mw+nEQ5hWyw7bS53G3GT5pOQ==","shasum":"b7eee605974db324d895e464dae301f05e5aceb1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/html-to-docx/-/html-to-docx-1.1.29.tgz","fileCount":11,"unpackedSize":841326,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfMkWhCRA9TVsSAnZWagAAcG0QAIl3AGY931cnSDJVIsTB\nsBdvqh6Zf9B7Go/El2WUTu3/A+RGkfa0Nsf6ZMPHfXdsR8SIhjzKTohVED1Z\n4xOuiZtmKzL+0kPqvbIte0+t/lNFO7t7ICqh2ZnrEeORRgsb2j7RMalmm4YL\noUYCb0BlXN63CUugXbeZS4fJhgnrZA6qmdfRfCctQsOqZYP78Na5l1DS8KXm\nKucU4VR35DvjkO29fDTV3uidVe08Up7xVvs67lPfS3Ti1mcm9fl5T0oMyjX8\npUsqiQj5TkdWrwDREbDdnLwozKA0IKzWXU1tp0ImtFidnO7Y9eda2gjL23pO\nMUb4qkCxQ8KRZUUOI1DGW/972VX4TLVG4qx2/rc/utRS83G7z9+H6ayqtufJ\neB4XdforLitw9TpbUE7Xi5v7VO7/bFSanN9YIT7RqS5atplLQrJP9dBhBq5n\n2i+Y3e1Yrz+F1ximzL0T8Ar77VRj+v+WD0/iCWx3GyMzXX5JEhC9ODSsnR3w\nYKxPBoYfWhkQLxUbWgI821TRvDrbfSt68ZdFbCoDNHfyAbIiAklvvyha21SQ\nOiFLAErA0Jqph3PoXLuSNol8mW9ITPxOodawEoQ/GH1fPNblgYIe7Uf8JpCe\nWzH6EnhD5Apo7dngrpb40KKHrsZlisfDkIehIHDEpieJlqULGpund4wMLPgR\nL9Rb\r\n=Blld\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEc4zWkD95JkBsGhrNrv+AUUy6mfcxCeFKUWDspxTi8TAiEA4rTMQrWskvq+poQMnUpXNYOQ2/wWYR9LEnBvKn3/ScM="}]},"maintainers":[{"name":"anonymous","email":"privateomega@protonmail.com"}],"_npmUser":{"name":"anonymous","email":"privateomega@protonmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-docx_1.1.29_1597130145274_0.7890402866220734"},"_hasShrinkwrap":false},"1.1.30":{"name":"html-to-docx","version":"1.1.30","description":"HTML to DOCX converter","keywords":["html","docx","html-to-docx","html to docx","office","word"],"main":"dist/html-to-docx.cjs.js","module":"dist/html-to-docx.esm.js","scripts":{"test":"npm run build && node example/example-node.js","release":"standard-version","lint":"eslint --fix .","prettier:check":"prettier --check '**/*.{js}'","validate":"run-s lint prettier:check","build":"rollup -c"},"repository":{"type":"git","url":"git+https://github.com/privateOmega/html-to-docx.git"},"author":{"name":"privateOmega","email":"privateOmega@protonmail.com"},"contributors":[{"name":"amrita-syn","email":"amrita.yadav@synapsica.com"},{"name":"charuthaB","email":"charutha.bhaskar@synapsica.com"}],"license":"MIT","bugs":{"url":"https://github.com/privateOmega/html-to-docx/issues"},"homepage":"https://github.com/privateOmega/html-to-docx#readme","devDependencies":{"@commitlint/cli":"^8.3.5","@commitlint/config-conventional":"^8.3.4","@rollup/plugin-commonjs":"^12.0.0","@rollup/plugin-json":"^4.1.0","@rollup/plugin-node-resolve":"^8.1.0","eslint":"^6.8.0","eslint-config-airbnb":"^18.2.0","eslint-config-prettier":"^6.11.0","eslint-plugin-import":"^2.22.0","eslint-plugin-jsx-a11y":"^6.3.1","eslint-plugin-prettier":"^3.1.4","eslint-plugin-react":"^7.20.3","eslint-plugin-react-hooks":"^2.5.1","husky":"^4.2.5","lint-staged":"^10.2.11","npm-run-all":"^4.1.5","prettier":"^2.0.5","rollup":"^2.18.2","rollup-plugin-cleaner":"^1.0.0","rollup-plugin-terser":"^6.1.0","standard-version":"^8.0.0"},"dependencies":{"color-name":"^1.1.4","escape-html":"^1.0.3","html-minifier":"^4.0.0","html-to-vdom":"^0.7.0","image-size":"^0.8.3","jszip":"^3.5.0","libtidy-updated":"^0.4.1","virtual-dom":"^2.1.1","xmlbuilder2":"2.1.2"},"config":{"commitizen":{"path":"cz-conventional-changelog"}},"husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged"}},"lint-staged":{"src/**/*.js":["prettier --write","eslint --fix","git add"]},"gitHead":"7e191508a531b8f75417423cbad3ffb801d5334c","_id":"html-to-docx@1.1.30","_nodeVersion":"10.21.0","_npmVersion":"6.14.4","dist":{"integrity":"sha512-qw0mhKcHSCXBWNitktvcF9Fb4tAcYnX9mnU1Hvc0G1Wky1Qb25ilUGYIiZQ3Dl7hMht7TaCh6NeXxt6+bQWv4Q==","shasum":"2749666b34c9199b5ebc6d32a8fb9931c146b033","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/html-to-docx/-/html-to-docx-1.1.30.tgz","fileCount":11,"unpackedSize":849170,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfaJk4CRA9TVsSAnZWagAA1OoQAI02Q60zI67M1AaUm+Dc\n7KjFflXG4tjrDDqCkyinsYKYiHoDIAD+tLO6kHMyZpc9vSJw/8G6+w6RMOGU\nWsH9EPyYAeD3FUWD1d5QzZ8WV/h7PaYxAIbv1/g0dJwtikUUT/zznYgNlo2f\ncZ+eBl/fXOmrddo3g2qjXQ4sQxIO/EWZvOKYuvD57/3Hs66P+mGp1KSRlyuk\nkXiw2zGAE8kKlN0/b/uds3rws2IGa0IFMXpGVJLZCl4PeuI+YKMzC8AAO/3w\nWRa2/ys+ehQLl+RNK1NuL2GtqUoUug9Bjer1NHvqkmnd7Oea4DMWrN8uhbiI\nnT4+Uo7D/L0VSDFISPJEdx5s2lTAws5d+lqRfDZ9mOElyPE/aALKzez6F8HC\nOsB+mOh4rgPW3JF9M99If4MJB5wpZFTst3MM7GtViHDJK30fj5eAgO7buznY\nuftkwLa7GPuchQjxVz/HvSOuhJOBkw2Av9P3/NWv4N9ESE2kDUSD6dDD1us6\nbZtTEDbsvxIfKHwJDZS6efZT6YSV4ovim/6HNPrzvfcn2HzqU56XVYF38qn1\nDvhwi7tRSzA+Wna/Va/fyF7E6jAPHxW/WaHVzj3P7Hh1BrLMT7QhbuG2nX/l\nua9+KAam+KJFeYrCyd9V1fH7NaKGpDuG30Bv4opI4gFA2rc/W7KEyO6GP7Kz\nofi5\r\n=2qXf\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHhLVAGPkGeDtZpE5IyjX6YLqNRj+14KGWCPIbnXX1eOAiEA5PazH7WDl9p50/FOVBSaZkeZ2P4CXu4wsi1IoH9umOM="}]},"maintainers":[{"name":"anonymous","email":"privateomega@protonmail.com"}],"_npmUser":{"name":"anonymous","email":"privateomega@protonmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-docx_1.1.30_1600690488246_0.46346149070410436"},"_hasShrinkwrap":false},"1.1.31":{"name":"html-to-docx","version":"1.1.31","description":"HTML to DOCX converter","keywords":["html","docx","html-to-docx","html to docx","office","word"],"main":"dist/html-to-docx.cjs.js","module":"dist/html-to-docx.esm.js","scripts":{"test":"npm run build && node example/example-node.js","release":"standard-version","lint":"eslint --fix .","prettier:check":"prettier --check '**/*.{js}'","validate":"run-s lint prettier:check","build":"rollup -c"},"repository":{"type":"git","url":"git+https://github.com/privateOmega/html-to-docx.git"},"author":{"name":"privateOmega","email":"privateOmega@protonmail.com"},"contributors":[{"name":"amrita-syn","email":"amrita.yadav@synapsica.com"},{"name":"charuthaB","email":"charutha.bhaskar@synapsica.com"}],"license":"MIT","bugs":{"url":"https://github.com/privateOmega/html-to-docx/issues"},"homepage":"https://github.com/privateOmega/html-to-docx#readme","devDependencies":{"@commitlint/cli":"^8.3.5","@commitlint/config-conventional":"^8.3.4","@rollup/plugin-commonjs":"^12.0.0","@rollup/plugin-json":"^4.1.0","@rollup/plugin-node-resolve":"^8.1.0","eslint":"^6.8.0","eslint-config-airbnb":"^18.2.0","eslint-config-prettier":"^6.11.0","eslint-plugin-import":"^2.22.0","eslint-plugin-jsx-a11y":"^6.3.1","eslint-plugin-prettier":"^3.1.4","eslint-plugin-react":"^7.20.3","eslint-plugin-react-hooks":"^2.5.1","husky":"^4.2.5","lint-staged":"^10.2.11","npm-run-all":"^4.1.5","prettier":"^2.0.5","rollup":"^2.18.2","rollup-plugin-cleaner":"^1.0.0","rollup-plugin-terser":"^6.1.0","standard-version":"^8.0.0"},"dependencies":{"color-name":"^1.1.4","escape-html":"^1.0.3","html-minifier":"^4.0.0","html-to-vdom":"^0.7.0","image-size":"^0.8.3","jszip":"^3.5.0","virtual-dom":"^2.1.1","xmlbuilder2":"2.1.2"},"config":{"commitizen":{"path":"cz-conventional-changelog"}},"husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged"}},"lint-staged":{"src/**/*.js":["prettier --write","eslint --fix","git add"]},"gitHead":"b1ee09f697c713e05f8a1d360d99c249f2e93f83","_id":"html-to-docx@1.1.31","_nodeVersion":"10.21.0","_npmVersion":"6.14.4","dist":{"integrity":"sha512-jg4q7YAvMeBqtppuc+fHkaI55bDQ/eI3DMPJRHhVw57bnsHhW4iIx9krkUnxs83mClYbOdukGANFnw9ZgIV+3w==","shasum":"3ce3e5b7469d44c1c155198373dce48e78855357","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/html-to-docx/-/html-to-docx-1.1.31.tgz","fileCount":11,"unpackedSize":841980,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJffALCCRA9TVsSAnZWagAAHvEP/3N2iFBP4QnQF2IRFNkA\nBWz2s/nEV7zgV8HAnQvKpRCCzHaj8m4MbhYqIqQOWXm5MYYA8OyGBWW7KPUw\nlJ8BUoDkh2Zi7pK2CN4Is5DUCZ4n1lxwiL0oHTHyae1YI7qbUrdvF5aIX0iu\nlE5ciWZRziVrl762ZTlv+75cFm5KyCYZE5ypdLfR1W/OltPsYVnSvEycFPrm\n3T0EH+z5J6vDfS0q1OF4tiJmSGcqD5YGmojUSBB9zX6nRuVGdS2qe/qd6FWA\nq+DxA2QjthkNFLu2LxMuUzxyQ+7gNtcYhbR8gF3V/MSB1EnghixGivM40guS\nMsL6DMrKz4SOpHt2psur3f7OWOIemuEayxkHfUqR+tHXtUqyjsr4vvE6xgOh\nTWGiA7+6U+DvCNK6hWy8iGUTBrq56frjtl/JFt+UEz99pbjWHUGh3Av+d2Hy\nUIR8bwdDKynruX1XN+f2t0b1HzqITWki039028CDR3EEoQIaeQ1g0/SKue5p\ngUf0WettW4VSt53YS+YIiJAJ805EQ8oNirN6VnaCW9Pdr6h67lYe/lbJLREx\n3x/vTN7L+a/BZ6K8UXoprEE/Dnp/kKrKHdSL+SFiQWjyumcLoxrvPpIJM1bH\nwIDl0xY7C7QMaAyz5HNmrmMvwsEI5UavxGoEl7qyQ7QkCYCuyb6kPYrN8PXM\n9p2v\r\n=gDNN\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBmSEYn8+QEA7XkQ0CzgHtH43+xeR9/JY9cGAxPDj7OuAiEA6DsGwJlWmAejDcpkpsZikcGpTp/YXHsVvwsiXPoQlU8="}]},"maintainers":[{"name":"anonymous","email":"privateomega@protonmail.com"}],"_npmUser":{"name":"anonymous","email":"privateomega@protonmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-docx_1.1.31_1601962689909_0.40869082601634577"},"_hasShrinkwrap":false},"1.1.32":{"name":"html-to-docx","version":"1.1.32","description":"HTML to DOCX converter","keywords":["html","docx","html-to-docx","html to docx","office","word"],"main":"dist/html-to-docx.cjs.js","module":"dist/html-to-docx.esm.js","scripts":{"test":"npm run build && node example/example-node.js","release":"standard-version","lint":"eslint --fix .","prettier:check":"prettier --check '**/*.{js}'","validate":"run-s lint prettier:check","build":"rollup -c"},"repository":{"type":"git","url":"git+https://github.com/privateOmega/html-to-docx.git"},"author":{"name":"privateOmega","email":"privateOmega@protonmail.com"},"contributors":[{"name":"amrita-syn","email":"amrita.yadav@synapsica.com"},{"name":"charuthaB","email":"charutha.bhaskar@synapsica.com"}],"license":"MIT","bugs":{"url":"https://github.com/privateOmega/html-to-docx/issues"},"homepage":"https://github.com/privateOmega/html-to-docx#readme","devDependencies":{"@commitlint/cli":"^8.3.5","@commitlint/config-conventional":"^8.3.4","@rollup/plugin-commonjs":"^12.0.0","@rollup/plugin-json":"^4.1.0","@rollup/plugin-node-resolve":"^8.1.0","eslint":"^6.8.0","eslint-config-airbnb":"^18.2.0","eslint-config-prettier":"^6.11.0","eslint-plugin-import":"^2.22.0","eslint-plugin-jsx-a11y":"^6.3.1","eslint-plugin-prettier":"^3.1.4","eslint-plugin-react":"^7.20.3","eslint-plugin-react-hooks":"^2.5.1","husky":"^4.2.5","lint-staged":"^10.2.11","npm-run-all":"^4.1.5","prettier":"^2.0.5","rollup":"^2.18.2","rollup-plugin-cleaner":"^1.0.0","rollup-plugin-terser":"^6.1.0","standard-version":"^8.0.0"},"dependencies":{"color-name":"^1.1.4","escape-html":"^1.0.3","html-minifier":"^4.0.0","html-to-vdom":"^0.7.0","image-size":"^0.8.3","jszip":"^3.5.0","virtual-dom":"^2.1.1","xmlbuilder2":"2.1.2"},"config":{"commitizen":{"path":"cz-conventional-changelog"}},"husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged"}},"lint-staged":{"src/**/*.js":["prettier --write","eslint --fix","git add"]},"gitHead":"21354f9459004ac128d463c8a1e44944b5db2bdf","_id":"html-to-docx@1.1.32","_nodeVersion":"10.23.0","_npmVersion":"6.14.8","dist":{"integrity":"sha512-JpSlQnYnxaMmuAlO+3469kc387Z0XQ8LxULTgxo2PbqD7mW27iuGzcWMf0DqFS8a57BcIo7tsWxw1zdu6VeLng==","shasum":"fae19bb4de841f3259d36943482540269255459d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/html-to-docx/-/html-to-docx-1.1.32.tgz","fileCount":11,"unpackedSize":889141,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfyeA3CRA9TVsSAnZWagAA2PIP/2s8e5O/ZPVld3bFaNUg\nsQtCKyqDAKVhzNb+LZ7ZCLAi8HPkywaeHFtIFJNXbyAQiIHFxWc/H0hKPpiO\n2kRJdcmswgnE1i9u8OhtYz6sQlIQckSABTfW6soNumGWy/RZanIcpepGCbkM\nN6ex9rfZuWTH3ULUQo2uzQdXGOu/8z3UgeNaD++EgBp4aIF+KjYqVu6i8ZKj\n3IEkmDGGO0EMkrGJiJpVMylGdfFbLs59xT5xbxbQYhfYgMKB0T5Y3xCYWAbm\nEgjtmgGrEDOzEz2872lO8wW71S3Sw2btp5nzrBjmcuNpJG4r9aS7TyC9HfRD\nj9DucfS1CLIuyFwXfh+sK9dmwoKdmDtuq+heSgkK1av7BPunOfuedRW2yWU3\nJ0P6Wj0l7wc4DLubKy3cHYxs22RE8IelWGlZk6DHuZ6apashHNRJyxvACU7b\nhkSvpqWmjV75knvmr+22ULkf4bb8cn5bWhaghLJjTebyglH3EoMNaWKyss6e\nzvcMgdpn+vFxeqUd4uVp+u95hQOFQFmEKlx0PZM4H6bk1zQZy2Ax2mAjZVzX\nJcy1D2iPls403tclUhpQg4oM+BfRDXTXKxgdHahqeu+/f/iRTe/2WWpRjZZs\nxxl7WQaTHssTN6g3ul0XJDWjRDVNB7hMsCbclzYZZFo+Vgp17gQSyCJxMivz\nVTXc\r\n=nc1u\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAh4TFv1WF3FoQh5FDAVxrBQZ6AJp5b/0xHbWYxgQUsBAiAy7wNvwYsbgzVnuCwzZ5BKzX0OUym1BFm/B6yg75PdTw=="}]},"_npmUser":{"name":"anonymous","email":"privateomega@protonmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"privateomega@protonmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-docx_1.1.32_1607065655358_0.27836606533384667"},"_hasShrinkwrap":false},"1.1.33":{"name":"html-to-docx","version":"1.1.33","description":"HTML to DOCX converter","keywords":["html","docx","html-to-docx","html to docx","office","word"],"main":"dist/html-to-docx.cjs.js","module":"dist/html-to-docx.esm.js","scripts":{"test":"npm run build && node example/example-node.js","release":"standard-version","lint":"eslint --fix .","prettier:check":"prettier --check '**/*.{js}'","validate":"run-s lint prettier:check","build":"rollup -c"},"repository":{"type":"git","url":"git+https://github.com/privateOmega/html-to-docx.git"},"author":{"name":"privateOmega","email":"privateOmega@protonmail.com"},"contributors":[{"name":"amrita-syn","email":"amrita.yadav@synapsica.com"},{"name":"charuthaB","email":"charutha.bhaskar@synapsica.com"}],"license":"MIT","bugs":{"url":"https://github.com/privateOmega/html-to-docx/issues"},"homepage":"https://github.com/privateOmega/html-to-docx#readme","devDependencies":{"@commitlint/cli":"^8.3.5","@commitlint/config-conventional":"^8.3.4","@rollup/plugin-commonjs":"^12.0.0","@rollup/plugin-json":"^4.1.0","@rollup/plugin-node-resolve":"^8.1.0","eslint":"^6.8.0","eslint-config-airbnb":"^18.2.0","eslint-config-prettier":"^6.11.0","eslint-plugin-import":"^2.22.0","eslint-plugin-jsx-a11y":"^6.3.1","eslint-plugin-prettier":"^3.1.4","eslint-plugin-react":"^7.20.3","eslint-plugin-react-hooks":"^2.5.1","husky":"^4.2.5","lint-staged":"^10.2.11","npm-run-all":"^4.1.5","prettier":"^2.0.5","rollup":"^2.18.2","rollup-plugin-cleaner":"^1.0.0","rollup-plugin-terser":"^6.1.0","standard-version":"^8.0.0"},"dependencies":{"color-name":"^1.1.4","escape-html":"^1.0.3","html-minifier":"^4.0.0","html-to-vdom":"^0.7.0","image-size":"^0.8.3","jszip":"^3.5.0","virtual-dom":"^2.1.1","xmlbuilder2":"2.1.2"},"config":{"commitizen":{"path":"cz-conventional-changelog"}},"husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged"}},"lint-staged":{"src/**/*.js":["prettier --write","eslint --fix","git add"]},"gitHead":"4d5d03434e6369da4a752288a5c3eace3ecb94c6","_id":"html-to-docx@1.1.33","_nodeVersion":"10.23.0","_npmVersion":"6.14.8","dist":{"integrity":"sha512-3FRmx3Aun0zgUAdSeSKH0O5EuLqdQwyK6jKtITdbbuqWlv9HwohxCtDufOrrj/7/TK5KipymrWlHPm8aEJbRrw==","shasum":"ddbf1bc82492c3294584584bcc33cdd9c86f1d67","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/html-to-docx/-/html-to-docx-1.1.33.tgz","fileCount":11,"unpackedSize":896984,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgB/KYCRA9TVsSAnZWagAAJuUP/2z1HkawnzXaIA371+4N\nEphZ2R2vixsfjEIa56lJMua4GeHGgofEbPqZiyTI6LDnjD4QIb37I7YuILQI\no3+7ASVmtG+S05GP7Mm/ix+/wQv6SifNSvFGON/CoSiX/4cZQlCs2kpdAO21\nIeqM+KDWWMWHa/D+zW4UDm6bhuDsaV8WDydhgWuqgoVJ2vf+WgBEbEdHX7IC\nuRxX7GTkVukSRxhbnP8t6AXPTt/sB7VaKNHuelk6SvvPIRefdpaGlc+7m9Tf\ntOtjENRZ23ZgneyUc4sIXDX0RFubGjMSsNFT6g8GLZ2DDv12gbJcueZUCTA9\nlUCG8mx9Q84s1NtdnrUtu93yA5ShVwTyBgmY6+DEiBwQYFaE+SvhvTtx2xai\nP2mAoAQa4MctiiCG4YmBoiVR9ffaqXSyvfu23qGGqeoZx3PWQ34B539xiIcQ\n2xH8KdTyV4i6x01uXsDcuWKHp8CKPC58Kll6o4fk9SRBqUf6cnz+eCLwrG+H\npkg7iqatPV5sneeDr8omwHgfFNC+M5FUplDrnrW2xxIRP+B31g0FtouDebEF\nTyr+qymTNem5pJMDoHe+gxhGwpZOk/kS6V3qm4ypekfRNwvccnIhkshmQBTk\nlm1py+VUae1OGX8DCX2QJpqHufnl4oEf11zh4bm8185yKvJuGwnYOwT+Kpxt\nQY5s\r\n=Ybcp\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEMCID3MrM1hGcpgfgpfUpqB3hYiYW0Tw7ODKUc2xSuxZByCAh8CC4Rne30pNMvwbSJoFZcYft1acwMLQv0g9mp9BXf3"}]},"_npmUser":{"name":"anonymous","email":"privateomega@protonmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"privateomega@protonmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-docx_1.1.33_1611133592142_0.03182466748936763"},"_hasShrinkwrap":false},"1.1.34":{"name":"html-to-docx","version":"1.1.34","description":"HTML to DOCX converter","keywords":["html","docx","html-to-docx","html to docx","office","word"],"main":"dist/html-to-docx.cjs.js","module":"dist/html-to-docx.esm.js","scripts":{"test":"npm run build && node example/example-node.js","release":"standard-version","lint":"eslint --fix .","prettier:check":"prettier --check '**/*.{js}'","validate":"run-s lint prettier:check","build":"rollup -c"},"repository":{"type":"git","url":"git+https://github.com/privateOmega/html-to-docx.git"},"author":{"name":"privateOmega","email":"privateOmega@protonmail.com"},"contributors":[{"name":"amrita-syn","email":"amrita.yadav@synapsica.com"},{"name":"charuthaB","email":"charutha.bhaskar@synapsica.com"}],"license":"MIT","bugs":{"url":"https://github.com/privateOmega/html-to-docx/issues"},"homepage":"https://github.com/privateOmega/html-to-docx#readme","devDependencies":{"@commitlint/cli":"^8.3.5","@commitlint/config-conventional":"^8.3.4","@rollup/plugin-commonjs":"^12.0.0","@rollup/plugin-json":"^4.1.0","@rollup/plugin-node-resolve":"^8.1.0","eslint":"^6.8.0","eslint-config-airbnb":"^18.2.0","eslint-config-prettier":"^6.11.0","eslint-plugin-import":"^2.22.0","eslint-plugin-jsx-a11y":"^6.3.1","eslint-plugin-prettier":"^3.1.4","eslint-plugin-react":"^7.20.3","eslint-plugin-react-hooks":"^2.5.1","husky":"^4.2.5","lint-staged":"^10.2.11","npm-run-all":"^4.1.5","prettier":"^2.0.5","rollup":"^2.18.2","rollup-plugin-cleaner":"^1.0.0","rollup-plugin-terser":"^6.1.0","standard-version":"^8.0.0"},"dependencies":{"color-name":"^1.1.4","escape-html":"^1.0.3","html-minifier":"^4.0.0","html-to-vdom":"^0.7.0","image-size":"^0.8.3","jszip":"^3.5.0","virtual-dom":"^2.1.1","xmlbuilder2":"2.1.2"},"config":{"commitizen":{"path":"cz-conventional-changelog"}},"husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged"}},"lint-staged":{"src/**/*.js":["prettier --write","eslint --fix","git add"]},"gitHead":"f1e84dddad0f77e3e5430efec91ce9c5d0b8b751","_id":"html-to-docx@1.1.34","_nodeVersion":"10.23.0","_npmVersion":"6.14.8","dist":{"integrity":"sha512-3x5k+zJhnr4zXtjVqxTd1jvVJiNqdlur4XVNJNiGwuJrkMNHuFYhEpeu4e1mZNeLppiY5BX+uqcDB+Mi6+j+/g==","shasum":"35f5b6c2c10be5f23d6ef2c593c97ecd19953497","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/html-to-docx/-/html-to-docx-1.1.34.tgz","fileCount":11,"unpackedSize":897220,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgH45PCRA9TVsSAnZWagAA3X4P/0ME1WgIBOTDoJbzzvOT\nsNg6/yixwaOXqXp+B7zX6VfUBWIL5TOLiStIBUneZ/JaRmXk+m/hSTA4Zv1G\nw5BN9Z61jRYQFGYj+2ht9EFlR+6ssY3fcNmiSoEMfEGUi0trUneEDyLRkDue\n8ai9lhv35QEaj7SAyxmem2mblCNDXoZE7or5I/wq33B7G1pdvte2foca9T0l\nv85+snqMMQFEc93Xo/LAH3B68UkWdIjnJEZGov9GGKDZh7m/G8jvOupzhJ4u\nl4S+hmcW3bpjvcUHKbQPolOBT6pYojIWhBvcxUnQWGhv9x829y/Cz6WNpyF8\ni7XRquNQ8kRbxCtQewecxosowls4G3n131HTqPpVuaxIlCIXgjW+CEdBnOSQ\nVn6hyJMQPB8fXoKbJ25fnxNh3FsCtkjRvV4D4iFAiUbdoz77TcRauqEO8oQF\nDUUCe/Ku9I6gKCE0zH7s/gzTcARATkHSKVTxCWzXcp0vk/b7pvoCmOo2J3mB\nLkRt6PECzkst3kp+u3CJU91lQiqzU4m7Q080ZD4Y0iaU+u63s/DR+NyaOzlO\niAzPKL9Wng38uRm19FPpLf1eLH+6vGP8LcpCllcfMKc6OzC6eE73UjtkLpfr\n4Fun3Ye1wq45Gbed5UDWMr52R80H8Are7vcmhFguZ6jYdzsInCSI09Fr/+C6\n/yJb\r\n=nCCe\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICP3jajpRyL/wpO4s2Uf8CN7124kphsJUwGGrSkfuZzEAiBUIRboxHvphnk745s1Qq9xVgGNYVCwfWDqX1AhjGYRVQ=="}]},"_npmUser":{"name":"anonymous","email":"privateomega@protonmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"privateomega@protonmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-docx_1.1.34_1612680782496_0.8411084080373594"},"_hasShrinkwrap":false},"1.2.1":{"name":"html-to-docx","version":"1.2.1","description":"HTML to DOCX converter","keywords":["html","docx","html-to-docx","html to docx","office","word"],"main":"dist/html-to-docx.umd.js","module":"dist/html-to-docx.esm.js","scripts":{"test":"npm run build && node example/example-node.js","release":"standard-version","lint":"eslint --fix .","prettier:check":"prettier --check '**/*.{js}'","validate":"run-s lint prettier:check","build":"rollup -c"},"repository":{"type":"git","url":"git+https://github.com/privateOmega/html-to-docx.git"},"author":{"name":"privateOmega","email":"privateOmega@protonmail.com"},"contributors":[{"name":"amrita-syn","email":"amrita.yadav@synapsica.com"},{"name":"charuthaB","email":"charutha.bhaskar@synapsica.com"}],"license":"MIT","bugs":{"url":"https://github.com/privateOmega/html-to-docx/issues"},"homepage":"https://github.com/privateOmega/html-to-docx#readme","devDependencies":{"@commitlint/cli":"^8.3.5","@commitlint/config-conventional":"^8.3.4","@rollup/plugin-commonjs":"^12.0.0","@rollup/plugin-json":"^4.1.0","@rollup/plugin-node-resolve":"^8.1.0","eslint":"^6.8.0","eslint-config-airbnb":"^18.2.0","eslint-config-prettier":"^6.11.0","eslint-plugin-import":"^2.22.0","eslint-plugin-jsx-a11y":"^6.3.1","eslint-plugin-prettier":"^3.1.4","eslint-plugin-react":"^7.20.3","eslint-plugin-react-hooks":"^2.5.1","husky":"^4.2.5","lint-staged":"^10.2.11","npm-run-all":"^4.1.5","prettier":"^2.0.5","rollup":"^2.18.2","rollup-plugin-cleaner":"^1.0.0","rollup-plugin-node-builtins":"^2.1.2","rollup-plugin-terser":"^6.1.0","standard-version":"^8.0.0"},"dependencies":{"color-name":"^1.1.4","escape-html":"^1.0.3","html-to-vdom":"^0.7.0","image-size":"^0.8.3","jszip":"^3.5.0","shortid":"^2.2.15","virtual-dom":"^2.1.1","xmlbuilder2":"2.1.2"},"config":{"commitizen":{"path":"cz-conventional-changelog"}},"husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged"}},"lint-staged":{"src/**/*.js":["prettier --write","eslint --fix","git add"]},"gitHead":"e2d350da98c24f986d64ca55ab83926831def29c","_id":"html-to-docx@1.2.1","_nodeVersion":"10.23.0","_npmVersion":"6.14.8","dist":{"integrity":"sha512-AmPQ74lSRmpMeHJ/VrMP+O1bcGFutHYJVzPBzTE5ntX5KwJ2GXS1jp0J3523KLo4HUdpphH8cNVUO2A0HHzxKA==","shasum":"b7050d8f41d4c262337c3465abac63c6ee6b4022","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/html-to-docx/-/html-to-docx-1.2.1.tgz","fileCount":11,"unpackedSize":1262523,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgu2q+CRA9TVsSAnZWagAACr4P/jZL/7uVUZx1+eXphld5\n1/zGptIzV8chByeTjm7V9CtKsmqn20y6EtRmH4kbYQR9FyhOvQsh6/wugevA\nGfyGRcFiAzzHJThPowbLdsUjpDDplSgnhZh3MRMGnnb8D/c86u9TLpLisrgO\nsA2A8DY2h7hN85tTWTMeBHkM9EUPhQ7dc1j4wIsK9oCRcAx7zBHwWLiZzNJL\nQBC1SER552e6OxjHGpXhU0gcGnp1U2Ib+t2oxw6jG7gGNjpZRqiu2RuLu/Kd\n+qhJYpOEyx+NhQlyhI6+DeVsx9To4uDlgide3aGxPQ/vBtGxEZcBRPAkTTOZ\nWScFxCPJjEI0WmLkmlihnWHY5iHbGiL9uVwsF3Ut5yAnxpKq0O7qfa+I7EXD\nqSk0aesISpajmzmGab8Ss3Q9uOr6+4+ur4S3ACN71bHxOGmeBeGg8HTAg3JU\nUuvsGNEcK6AHLcmeD3FqC69i3pb5kWovmBe4Surb9k00iEYeiO1ZlkNoJPwk\n15cxRsYmFIyi62Lcqvoq84f7pNx4BTsQxLmgsuhNVSrn6Y/S5mUDMnf3yq4X\n1PAu/f6xwzPwu5VGjQ5p7gkYDxQat4LlgDgucI05E/5ZOY16Jzwv9JvHxpqV\nsNzvH8fEJNq2WdjjfnZb6R+z8aFcXU7q6wQ89eeYE8h+UEBeQR5NLpEM5ebz\nwPyo\r\n=7Pk3\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBHYMhmh3OAxxQiPSECYaCqqV4znG9eeOT/eAEHNEIkTAiBBqspva5YI7IDc4/bnhQE1bMCMl411X54puLuW1au97g=="}]},"_npmUser":{"name":"anonymous","email":"privateomega@protonmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"privateomega@protonmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-docx_1.2.1_1622895294257_0.48200870051702926"},"_hasShrinkwrap":false},"1.2.2":{"name":"html-to-docx","version":"1.2.2","description":"HTML to DOCX converter","keywords":["html","docx","html-to-docx","html to docx","office","word"],"main":"dist/html-to-docx.umd.js","module":"dist/html-to-docx.esm.js","scripts":{"test":"npm run build && node example/example-node.js","release":"standard-version","lint":"eslint --fix .","prettier:check":"prettier --check '**/*.{js}'","validate":"run-s lint prettier:check","build":"rollup -c"},"repository":{"type":"git","url":"git+https://github.com/privateOmega/html-to-docx.git"},"author":{"name":"privateOmega","email":"privateOmega@protonmail.com"},"contributors":[{"name":"amrita-syn","email":"amrita.yadav@synapsica.com"},{"name":"charuthaB","email":"charutha.bhaskar@synapsica.com"}],"license":"MIT","bugs":{"url":"https://github.com/privateOmega/html-to-docx/issues"},"homepage":"https://github.com/privateOmega/html-to-docx#readme","devDependencies":{"@commitlint/cli":"^8.3.5","@commitlint/config-conventional":"^8.3.4","@rollup/plugin-commonjs":"^12.0.0","@rollup/plugin-json":"^4.1.0","@rollup/plugin-node-resolve":"^8.1.0","eslint":"^6.8.0","eslint-config-airbnb":"^18.2.0","eslint-config-prettier":"^6.11.0","eslint-plugin-import":"^2.22.0","eslint-plugin-jsx-a11y":"^6.3.1","eslint-plugin-prettier":"^3.1.4","eslint-plugin-react":"^7.20.3","eslint-plugin-react-hooks":"^2.5.1","husky":"^4.2.5","lint-staged":"^10.2.11","npm-run-all":"^4.1.5","prettier":"^2.0.5","rollup":"^2.18.2","rollup-plugin-cleaner":"^1.0.0","rollup-plugin-node-builtins":"^2.1.2","rollup-plugin-terser":"^6.1.0","standard-version":"^8.0.0"},"dependencies":{"color-name":"^1.1.4","escape-html":"^1.0.3","html-to-vdom":"^0.7.0","image-size":"^0.8.3","jszip":"^3.5.0","shortid":"^2.2.15","virtual-dom":"^2.1.1","xmlbuilder2":"2.1.2"},"config":{"commitizen":{"path":"cz-conventional-changelog"}},"husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged"}},"lint-staged":{"src/**/*.js":["prettier --write","eslint --fix","git add"]},"gitHead":"765dc4dce1c6de1be04e1ed0b5186f70c16c7480","_id":"html-to-docx@1.2.2","_nodeVersion":"10.23.0","_npmVersion":"6.14.8","dist":{"integrity":"sha512-B/tos2gd74V1rxq5723N3gZ+aBXiWankYbwhcQgd9r5/8Hlowa2U4CqPcQ6+JTnYmqxTtj3TBDSw9qzUGhaVow==","shasum":"c5d4ae77513f3ea1b53543956ae1cb0695ac0afd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/html-to-docx/-/html-to-docx-1.2.2.tgz","fileCount":11,"unpackedSize":1296885,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg8zJZCRA9TVsSAnZWagAACcQP/Rab6MP+og3M/mP/mIyJ\nghSkXpirc4+pThUQPjabkoFV9HpELLvjXDJc2OpBvWjD/GdjGpB9PcZ0hw0r\nQ1pnr8Y+Rvp03OASz0nNWB4/8MhBWx2VU3yxplVAKqXXhJl/umfwJtjsw6Fg\ncHr6Vv1RNFPN++0Xgic3ZMY1jKV26DpPcrIYU61KtfdMDs02z58L2uKYmYkK\neCY29YhklF3gFrXJ0tNxhL3ZfmwXC+88S8gdGEyU3g+7pwezMTF8v++CMWpD\njFjn41gS+bg86AoW0AojeAotjgtduFT2C4AxvZo3OkZPsGc8hbzzUEZupzkZ\nR6hcUdmffRcLCy8NahCAFZihiVE9NhcIf5mgcPf7bxkiTMFvbytFWCyAUsaP\nKZ+CFEf90vlvNSIFVyLDu8odyYfjvUAsIpnenpa4C+xyF2m+2nN/ZUoq60Ys\nSdae6Tu4PMyhgSjgcY/e+j6DGf7rCFJ6/d9o1aqL83ssqCSNYpBWWdg24p9L\niZrvEYpcLEeRCroYbGcEEGMlt52PV/po9N3TgjddzsygAsz29rsavjJyCYIq\nVFCRKIqCTDqrIn7ywXmOuWdAx6HPk+WUJJponAJvhhx+N3O9zaMyy9ZR6Dhl\n7xH32D7fAiBSkDfnWMKe6o6Qz6w2brDeTozIzUYUJ6ltEFvbThj5UwLAPbhH\nQIwi\r\n=L/nH\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCXod/DCyD7AIDQ2YLQsNQMgX+PVkBUZ5kczODmD5syCwIgcntjfDJ5gxS1eISDEeCeUqBw+s0VxuFO/biZPqhQdd0="}]},"_npmUser":{"name":"anonymous","email":"privateomega@protonmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"privateomega@protonmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-docx_1.2.2_1626550873696_0.015345211776463641"},"_hasShrinkwrap":false},"1.2.3":{"name":"html-to-docx","version":"1.2.3","description":"HTML to DOCX converter","keywords":["html","docx","html-to-docx","html to docx","office","word"],"main":"dist/html-to-docx.umd.js","module":"dist/html-to-docx.esm.js","scripts":{"test":"npm run build && node example/example-node.js","release":"standard-version","lint":"eslint --fix .","prettier:check":"prettier --check '**/*.{js}'","validate":"run-s lint prettier:check","build":"rollup -c"},"repository":{"type":"git","url":"git+https://github.com/privateOmega/html-to-docx.git"},"author":{"name":"privateOmega","email":"privateOmega@protonmail.com"},"contributors":[{"name":"amrita-syn","email":"amrita.yadav@synapsica.com"},{"name":"charuthaB","email":"charutha.bhaskar@synapsica.com"}],"license":"MIT","bugs":{"url":"https://github.com/privateOmega/html-to-docx/issues"},"homepage":"https://github.com/privateOmega/html-to-docx#readme","devDependencies":{"@commitlint/cli":"^8.3.5","@commitlint/config-conventional":"^8.3.4","@rollup/plugin-commonjs":"^12.0.0","@rollup/plugin-json":"^4.1.0","@rollup/plugin-node-resolve":"^8.1.0","eslint":"^6.8.0","eslint-config-airbnb":"^18.2.0","eslint-config-prettier":"^6.11.0","eslint-plugin-import":"^2.22.0","eslint-plugin-jsx-a11y":"^6.3.1","eslint-plugin-prettier":"^3.1.4","eslint-plugin-react":"^7.20.3","eslint-plugin-react-hooks":"^2.5.1","husky":"^4.2.5","lint-staged":"^10.2.11","npm-run-all":"^4.1.5","prettier":"^2.0.5","rollup":"^2.18.2","rollup-plugin-cleaner":"^1.0.0","rollup-plugin-node-builtins":"^2.1.2","rollup-plugin-terser":"^6.1.0","standard-version":"^8.0.0"},"dependencies":{"color-name":"^1.1.4","escape-html":"^1.0.3","html-to-vdom":"^0.7.0","image-size":"^0.8.3","jszip":"^3.5.0","shortid":"^2.2.15","virtual-dom":"^2.1.1","xmlbuilder2":"2.1.2"},"config":{"commitizen":{"path":"cz-conventional-changelog"}},"husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged"}},"lint-staged":{"src/**/*.js":["prettier --write","eslint --fix","git add"]},"gitHead":"5e15d93fa5ae8fce0e63753244441ce552878642","_id":"html-to-docx@1.2.3","_nodeVersion":"14.15.1","_npmVersion":"6.14.15","dist":{"integrity":"sha512-/bykUhVk9xoSkLSQWoIF8K4u8eSpWEDO3h+GUEkQ16AzOFZuTvmNPsFZ5ynY05MI9rlNUeUQ7/L3IVvVIinLEA==","shasum":"be2fc2da6cdaba3467779a6117cb54b8f4be23dc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/html-to-docx/-/html-to-docx-1.2.3.tgz","fileCount":11,"unpackedSize":1303028,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhQlffCRA9TVsSAnZWagAA/okQAIo5n2hHEN5TfqEcpPGS\nwTVRZPJfwbBTQACk1B0D0sK31uD3v6Q02h0/u8oeofQ60QduVDjGbOEhVxe0\nNDC8FqDIyuqkHYxgw94ms5oPkBCmkuXhUiFiW3SjukoTbnjTVUVEHYlqUhyu\nbx9rW6INO2Jl2J2yxAgQjhxRJRE2+AHcqDXJSdHCpniNH1TNU+YkTuYipdgT\nnkgg118ptMQkRcs9zu+FoyShMC3qRXZIAAZrpCEziBjd7lduB6f4SkzeLnBv\n6LVPduPa31pXQhAiJuOlLdbfs6X+RM2ykGqLKOG6SpEHp7wrRbA0EWfjYtcu\ngz/1XppkEqHAOSNSSyDJo7NWwWwVCUUIXFWj48Qv7ewXFpClz62DZwMA3jEq\nOpXewsgKKFbahOTodfeBLtGNuTrg1ClNVzDFTYtbp2uigPnqtvhen2NiAtJa\n+dk8NTN8WVBYPZ5xjJNCxNrLpY/4t91sp3ZE+GeilM1E2BTIyTPSpU7aoDF8\noGp/3h+dxiBuaPbYceDXKuxYA+rgX4P5aMELfPCZ8jAS3Rl75ktwnyAYGd73\noOxrg56o16t38uomMYgAigAEmUP7A98084uMymczd6Kxl99dpTDkpT0Xcd9C\n1mHFvj6bAnFGW1IUCNDeQzCR9wNeWivHeqTxEAUKdwFB66wm5bff+I2uYXL1\nxk3m\r\n=k0XM\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBHNDC9Jt/IwZUFgAXAvt9dgFV4j9Mv5NwxIa+t3EoIwAiEArfOe1lHcb4EVy5mgQIn3xIwJGmYrvVk4OKpkfd5I8GE="}]},"_npmUser":{"name":"anonymous","email":"privateomega@protonmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"privateomega@protonmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-docx_1.2.3_1631737823348_0.24573232570779657"},"_hasShrinkwrap":false},"1.2.4":{"name":"html-to-docx","version":"1.2.4","description":"HTML to DOCX converter","keywords":["html","docx","html-to-docx","html to docx","office","word"],"main":"dist/html-to-docx.umd.js","module":"dist/html-to-docx.esm.js","scripts":{"test":"npm run build && node example/example-node.js","release":"standard-version","lint":"eslint --fix .","prettier:check":"prettier --check '**/*.{js}'","validate":"run-s lint prettier:check","build":"rollup -c"},"repository":{"type":"git","url":"git+https://github.com/privateOmega/html-to-docx.git"},"author":{"name":"privateOmega","email":"privateOmega@protonmail.com"},"contributors":[{"name":"amrita-syn","email":"amrita.yadav@synapsica.com"},{"name":"charuthaB","email":"charutha.bhaskar@synapsica.com"}],"license":"MIT","bugs":{"url":"https://github.com/privateOmega/html-to-docx/issues"},"homepage":"https://github.com/privateOmega/html-to-docx#readme","devDependencies":{"@commitlint/cli":"^8.3.5","@commitlint/config-conventional":"^8.3.4","@rollup/plugin-commonjs":"^12.0.0","@rollup/plugin-json":"^4.1.0","@rollup/plugin-node-resolve":"^8.1.0","eslint":"^6.8.0","eslint-config-airbnb":"^18.2.0","eslint-config-prettier":"^6.11.0","eslint-plugin-import":"^2.22.0","eslint-plugin-jsx-a11y":"^6.3.1","eslint-plugin-prettier":"^3.1.4","eslint-plugin-react":"^7.20.3","eslint-plugin-react-hooks":"^2.5.1","husky":"^4.2.5","lint-staged":"^10.2.11","npm-run-all":"^4.1.5","prettier":"^2.0.5","rollup":"^2.18.2","rollup-plugin-cleaner":"^1.0.0","rollup-plugin-node-builtins":"^2.1.2","rollup-plugin-terser":"^6.1.0","standard-version":"^8.0.0"},"dependencies":{"color-name":"^1.1.4","escape-html":"^1.0.3","html-to-vdom":"^0.7.0","image-size":"^0.8.3","jszip":"^3.5.0","shortid":"^2.2.15","virtual-dom":"^2.1.1","xmlbuilder2":"2.1.2"},"config":{"commitizen":{"path":"cz-conventional-changelog"}},"husky":{"hooks":{"commit-msg":"commitlint -E HUSKY_GIT_PARAMS","pre-commit":"lint-staged"}},"lint-staged":{"src/**/*.js":["prettier --write","eslint --fix","git add"]},"gitHead":"6ec50142b08ddcc4c084dc9a3f53050a2475c482","_id":"html-to-docx@1.2.4","_nodeVersion":"14.15.1","_npmVersion":"6.14.15","dist":{"integrity":"sha512-Xr1tAFHkGpAgq+u+WTNBHhq3amKtPVKlbQFEi/W0fLbRjUvyVrX3PTQsQvlDBbA5ADCR9oOUEeAPzl7NguM85g==","shasum":"1d84b90d3d105142351b5c7a79326914791711cb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/html-to-docx/-/html-to-docx-1.2.4.tgz","fileCount":11,"unpackedSize":1303582,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCK32Lq5AF8IUlZY+06i64+9+NJmAt6xa28G508+Sm1IAIgArSEw9pWbZH1+DlOLkkSyG4ywlN0bk67PplNz9g1vt8="}]},"_npmUser":{"name":"anonymous","email":"privateomega@protonmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"privateomega@protonmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-docx_1.2.4_1632136891674_0.8221105838323504"},"_hasShrinkwrap":false},"1.3.1":{"name":"html-to-docx","version":"1.3.1","description":"HTML to DOCX converter","keywords":["html","docx","html-to-docx","html to docx","office","word"],"main":"dist/html-to-docx.umd.js","module":"dist/html-to-docx.esm.js","scripts":{"test":"npm run build && node example/example-node.js","release":"standard-version","lint":"eslint --fix .","prettier:check":"prettier --check '**/*.{js}'","validate":"run-s lint prettier:check","build":"rollup -c","prepare":"husky install"},"repository":{"type":"git","url":"git+https://github.com/privateOmega/html-to-docx.git"},"author":{"name":"privateOmega","email":"privateOmega@protonmail.com"},"contributors":[{"name":"amrita-syn","email":"amrita.yadav@synapsica.com"},{"name":"charuthaB","email":"charutha.bhaskar@synapsica.com"},{"name":"hanagejet"}],"license":"MIT","bugs":{"url":"https://github.com/privateOmega/html-to-docx/issues"},"homepage":"https://github.com/privateOmega/html-to-docx#readme","devDependencies":{"@commitlint/cli":"^13.1.0","@commitlint/config-conventional":"^13.1.0","@rollup/plugin-commonjs":"^20.0.0","@rollup/plugin-json":"^4.1.0","@rollup/plugin-node-resolve":"^13.0.4","eslint":"^7.32.0","eslint-config-airbnb-base":"^14.2.1","eslint-config-prettier":"^8.3.0","eslint-plugin-import":"^2.24.2","eslint-plugin-prettier":"^4.0.0","husky":"^7.0.0","lint-staged":"^11.1.2","prettier":"^2.4.1","rollup":"^2.56.3","rollup-plugin-cleaner":"^1.0.0","rollup-plugin-node-builtins":"^2.1.2","rollup-plugin-terser":"^7.0.2","standard-version":"^9.3.1"},"dependencies":{"color-name":"^1.1.4","escape-html":"^1.0.3","html-to-vdom":"^0.7.0","image-size":"^1.0.0","jszip":"^3.7.1","lodash":"^4.17.21","nanoid":"^3.1.25","virtual-dom":"^2.1.1","xmlbuilder2":"2.1.2"},"lint-staged":{"src/**/*.js":["prettier --write","eslint --fix"]},"gitHead":"9b8930fd3e0c5ccce8622ee37d9f63ad1ab796c3","_id":"html-to-docx@1.3.1","_nodeVersion":"14.15.1","_npmVersion":"6.14.15","dist":{"integrity":"sha512-vDQIBc9kyxoxGoVbo712qWQtxHjLAQ20d9yrwhYaCYBvt2NfWTQAbTx3UqNoHbPOBGEFpVlw2mH9tecZYmOYOw==","shasum":"93df5bc6d7e966649b958c16193e555985cd896d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/html-to-docx/-/html-to-docx-1.3.1.tgz","fileCount":14,"unpackedSize":3744108,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhygYaCRA9TVsSAnZWagAADUIP/0TTVUhkzu7tU2Eb45/+\nYIV0svAOs2MkLM49IOcnzjH+5tv+DAL8FVpzgHUsSl05DRFWUAALqSGnbkcJ\ny2WxuhSFovZTiMCvlmmw5GHIOyv/nS7GgFL2gTlgV4GMx8iIgtbyIH5ByBcV\n7Ay61DqGGeEqn/EU6BIV+u3IrTxkmArxjWO/KATn9/Guprztzd52TcyXep/n\ncOLH7yt67xR5U0djP2/fRfAev1Eb+48+fJ/PDSgWjT2dl7WwmfxJpoWTXh4f\nYFnQgEtCpiX3rieOJtYW+ZT703ZEa25FikFm3SKg2TRx7Z/XgO/znW1ttKgL\nWNdfYcTQhRLQzxAQeNAmgZkHkyyJYDmsdML8YWnBFQzGT6zw7ZHCwTTEDVUA\nmNAHOfj3N3uJ/1uzvddrbL1yJideMnrQlir6R/JCxjgCDCJiNFgpMLUCE+Wp\n4ffUh8e31o3MsGWG7Cf13GQQVVHNRsMFyWUibG8OzcWBV4/0Nd1PdFqrKydM\nF0HP8fUx7SYHrjW0lBouhldYEW+dGHMwa1jUbMJPS3DASrtHm/7kLba8HXeO\nH1dzXPHTR9e3ryY4oUEa1e90QGejJWwSGubizpWPCavUJAW8faXuyTXXB+Bn\nxzjYAItNX2cTqjLjNIx9GQo+aSKyJjueozvg4YW9fABRVylGgU9ItRL3x1rb\nPD9G\r\n=/pcA\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDjjRYxHva+7dwY+TgB8w2rCBhNmOGsOE6sOTVnwKHz1wIhANB37cB0Ezf3rKD4dNQHLC+2D2xSmxkcGQ0/Z45hrxRi"}]},"_npmUser":{"name":"anonymous","email":"privateomega@protonmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"privateomega@protonmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-docx_1.3.1_1640629786190_0.8574971965902725"},"_hasShrinkwrap":false},"1.3.2":{"name":"html-to-docx","version":"1.3.2","description":"HTML to DOCX converter","keywords":["html","docx","html-to-docx","html to docx","office","word"],"main":"dist/html-to-docx.umd.js","module":"dist/html-to-docx.esm.js","scripts":{"test":"npm run build && node example/example-node.js","release":"standard-version","lint":"eslint --fix .","prettier:check":"prettier --check '**/*.{js}'","validate":"run-s lint prettier:check","build":"rollup -c","prepare":"husky install"},"repository":{"type":"git","url":"git+https://github.com/privateOmega/html-to-docx.git"},"author":{"name":"privateOmega","email":"privateOmega@protonmail.com"},"contributors":[{"name":"amrita-syn","email":"amrita.yadav@synapsica.com"},{"name":"charuthaB","email":"charutha.bhaskar@synapsica.com"},{"name":"hanagejet"},{"name":"kurukururuu","email":"apriansyah.fajar94@gmail.com"},{"name":"erenard"}],"license":"MIT","bugs":{"url":"https://github.com/privateOmega/html-to-docx/issues"},"homepage":"https://github.com/privateOmega/html-to-docx#readme","devDependencies":{"@commitlint/cli":"^13.1.0","@commitlint/config-conventional":"^13.1.0","@rollup/plugin-commonjs":"^12.0.0","@rollup/plugin-json":"^4.1.0","@rollup/plugin-node-resolve":"^13.1.1","eslint":"^7.32.0","eslint-config-airbnb-base":"^14.2.1","eslint-config-prettier":"^8.3.0","eslint-plugin-import":"^2.24.2","eslint-plugin-prettier":"^4.0.0","husky":"^7.0.0","lint-staged":"^11.1.2","prettier":"^2.4.1","rollup":"^2.62.0","rollup-plugin-cleaner":"^1.0.0","rollup-plugin-node-builtins":"^2.1.2","rollup-plugin-terser":"^7.0.2","standard-version":"^9.3.1"},"dependencies":{"color-name":"^1.1.4","escape-html":"^1.0.3","html-to-vdom":"^0.7.0","image-size":"^1.0.0","jszip":"^3.7.1","lodash":"^4.17.21","nanoid":"^3.1.25","virtual-dom":"^2.1.1","xmlbuilder2":"2.1.2"},"lint-staged":{"src/**/*.js":["prettier --write","eslint --fix"]},"gitHead":"22a418e3c1e4c504ec2ba999ba27793179798e75","_id":"html-to-docx@1.3.2","_nodeVersion":"14.15.1","_npmVersion":"6.14.15","dist":{"integrity":"sha512-HPmdYVm/+viF0DwZ1wIvDbo0Kt3umc88WFqlXGjiE9lB7GuqVOH+HVm5TwVdjrE2wi3/ZnhLJ2JcVTYuxHh2/g==","shasum":"c15a9ecbd8ad8b94de2c36744b906714ea59af96","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/html-to-docx/-/html-to-docx-1.3.2.tgz","fileCount":15,"unpackedSize":3816509,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh7JrKCRA9TVsSAnZWagAA8EEP/1PbKnUqaimx3L4x8taW\nCox7Pq2qYPp5xUvqdLVjW8Nk20FQAi+IDx2ghlIPPXMqOcGCFRmjzKIxMCC8\nEYucVI2F1VkOnYVdnn8kINSZwTv7GiFM1NEFS4O6LuU1pG+qn2cQ9b0HyVqC\nrjXf8vfqMg3m/PUf5Qzz3g17eVIcwI27kWRJtGYbqZOXZb/T8mAWKbU49eJ+\nx5wuwKwDv143UUfRP/TwQyY3U6ICwjUjGaiFZ+ItceQh2xRgpTTLiVibvcjP\nktLRajV6TZiVz+LL+MO4Nde+QNPLCMNYoelfQDTijkaUqUYyloJJQM99j0qC\nl96wGK0tiKAgPH9R0ch3uzpQmrDymB40kaHthxUm1au3a+VYjGboYyJ71LxM\nE0zwvlaxSJQlG627Vt9xuFYx5v3sKCSfNgk8HLD7jxe0c0f67k4xDkvDMTpP\n3/IZbuagiJZr4BNn9N+Wc7N3/P6DV3OLkng/+gT6MFs3wzwSNgiTSyZH7prw\nl621RAX2sqr4G8pL9Cq5rgmyqdzCl9DNLgyB5Lbr6UhwBX8ew2rMy3TnZCcO\nEu+HEjszIarhYBO8Z9O2OhkYDe3I7Mctlg+8iBYR+JJIbB7VSTUmAop2j2o6\nk/Sd8VWRIs8lxhGbuTDJf7xz5cJZzvMX6iBzWYrZUNti0ee8MhqnNLEZ7h8J\ns3HB\r\n=CIXy\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDC9Bc+an23Q4CrOE8fMIfrQa0+ERqO5gUA1lqEvhXrxQIhANuRpG8qYXrptGyeypSuiOUHYI9pwvRv3EurAMxFt1na"}]},"_npmUser":{"name":"anonymous","email":"privateomega@protonmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"privateomega@protonmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-docx_1.3.2_1642896074674_0.9969283077972704"},"_hasShrinkwrap":false},"1.4.0":{"name":"html-to-docx","version":"1.4.0","description":"HTML to DOCX converter","keywords":["html","docx","html-to-docx","html to docx","office","word"],"main":"dist/html-to-docx.umd.js","module":"dist/html-to-docx.esm.js","scripts":{"test":"npm run build && node example/example-node.js","release":"standard-version","lint":"eslint --fix .","prettier:check":"prettier --check '**/*.{js}'","validate":"run-s lint prettier:check","build":"rollup -c","prepare":"husky install"},"repository":{"type":"git","url":"git+https://github.com/privateOmega/html-to-docx.git"},"author":{"name":"privateOmega","email":"privateOmega@protonmail.com"},"contributors":[{"name":"amrita-syn","email":"amrita.yadav@synapsica.com"},{"name":"charuthaB","email":"charutha.bhaskar@synapsica.com"},{"name":"hanagejet"},{"name":"kurukururuu","email":"apriansyah.fajar94@gmail.com"},{"name":"erenard"}],"license":"MIT","bugs":{"url":"https://github.com/privateOmega/html-to-docx/issues"},"homepage":"https://github.com/privateOmega/html-to-docx#readme","devDependencies":{"@commitlint/cli":"^13.1.0","@commitlint/config-conventional":"^13.1.0","@rollup/plugin-commonjs":"^12.0.0","@rollup/plugin-json":"^4.1.0","@rollup/plugin-node-resolve":"^13.1.1","eslint":"^7.32.0","eslint-config-airbnb-base":"^14.2.1","eslint-config-prettier":"^8.3.0","eslint-plugin-import":"^2.24.2","eslint-plugin-prettier":"^4.0.0","husky":"^7.0.0","lint-staged":"^11.1.2","prettier":"^2.4.1","rollup":"^2.62.0","rollup-plugin-cleaner":"^1.0.0","rollup-plugin-node-builtins":"^2.1.2","rollup-plugin-terser":"^7.0.2","standard-version":"^9.3.1"},"dependencies":{"color-name":"^1.1.4","escape-html":"^1.0.3","html-to-vdom":"^0.7.0","image-size":"^1.0.0","jszip":"^3.7.1","lodash":"^4.17.21","nanoid":"^3.1.25","virtual-dom":"^2.1.1","xmlbuilder2":"2.1.2"},"lint-staged":{"src/**/*.js":["prettier --write","eslint --fix"]},"gitHead":"37e5168c9d33f166e645c202c28006bfefb2b715","_id":"html-to-docx@1.4.0","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-VEbwMb5lwQZiJcnRZLofhziNtQ9UbVE7MQGICZKp896gC6P0ikfU6XRc8g4Z5qmYRBqLBXnY7b6iFYJ72yqNrw==","shasum":"5eed2575b3961e8f065c180b98556db0c408be95","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/html-to-docx/-/html-to-docx-1.4.0.tgz","fileCount":14,"unpackedSize":3761291,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD8+g7Z44NwR3xv4/1yf8EMj4ntRU8EXjj2asM9zK1NMQIhAL8Kuh9NiaFxVIzOEWqATLgOfEdlEW7fUewyKYnu0VqG"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJilz7KACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqJvg//StZou/4SHBCVVqsU3v6od4LQpNLgwuncdUQLAVpr74EULL+b\r\nuxcqKmwUIg1lAyFdSAJ9Ze2tIncn2yjN8dq6/zFdI7D83VhgE1xf7PKTL183\r\nsyrc90WFwt2wcuFc+vfME6yFYQc3kyxA5k+NCx10jN1BFp/yh7Wz0yB3nEsZ\r\nh7crKYA+edXpvdy1w9yH366uQb59BRFg6AP/cC3D+Uk4rtC0e+0IwyN3Ev3w\r\na6pBkRfQ8VUM5d1hGkJ6TFyYvROHGt1o6GlKC9LSdpZ/yGPLy/v5nK9w2LxU\r\nGABWGOMHgpEsYEfmdDSsYm0muFjTKermi6G9mnneAh7acd7ZdP79jpmWDUry\r\nI8plTVpyOqgXHAby5tr4fcXKbmaEBsV2VuygD1au3Q+s8nsYBJggfDdEN2j0\r\nxhax373s1dlG1iqJqHoUhI+c3sA5o7ZtKV/Pum06+e4LRBVXTPV1puvLE5XH\r\n39QPaaRKDkabXKZPWW85w0Ys4CBgWPff/wYc7fuGrvSj6/tOPNl28NpPPUp6\r\n5qdP8PLkrvWztV+S1cSn/9c09YWwqo7bFfV/MP5+ZZV0ZEDBsAxKrdrSxQKO\r\nlz1bFot4mpb3k63NTr87RQKv/gZX1JYxFJSfwY4wzLscyF0BIQE4EapE4whG\r\n4Aen7OBBWs4pFN20Awgt+CfzVB+EzecTkRM=\r\n=0mQl\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"anonymous","email":"privateomega@protonmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"privateomega@protonmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-docx_1.4.0_1654079178481_0.46435804460507324"},"_hasShrinkwrap":false},"1.5.0":{"name":"html-to-docx","version":"1.5.0","description":"HTML to DOCX converter","keywords":["html","docx","html-to-docx","html to docx","office","word"],"main":"dist/html-to-docx.umd.js","module":"dist/html-to-docx.esm.js","scripts":{"test":"npm run build && node example/example-node.js","release":"standard-version","lint":"eslint --fix .","prettier:check":"prettier --check '**/*.{js}'","validate":"run-s lint prettier:check","build":"rollup -c","prepare":"husky install"},"repository":{"type":"git","url":"git+https://github.com/privateOmega/html-to-docx.git"},"author":{"name":"privateOmega","email":"privateOmega@protonmail.com"},"contributors":[{"name":"amrita-syn","email":"amrita.yadav@synapsica.com"},{"name":"charuthaB","email":"charutha.bhaskar@synapsica.com"},{"name":"hanagejet"},{"name":"kurukururuu","email":"apriansyah.fajar94@gmail.com"},{"name":"erenard"}],"license":"MIT","bugs":{"url":"https://github.com/privateOmega/html-to-docx/issues"},"homepage":"https://github.com/privateOmega/html-to-docx#readme","devDependencies":{"@commitlint/cli":"^13.1.0","@commitlint/config-conventional":"^13.1.0","@rollup/plugin-commonjs":"^12.0.0","@rollup/plugin-json":"^4.1.0","@rollup/plugin-node-resolve":"^13.1.1","eslint":"^7.32.0","eslint-config-airbnb-base":"^14.2.1","eslint-config-prettier":"^8.3.0","eslint-plugin-import":"^2.24.2","eslint-plugin-prettier":"^4.0.0","husky":"^7.0.0","lint-staged":"^11.1.2","prettier":"^2.4.1","rollup":"^2.62.0","rollup-plugin-cleaner":"^1.0.0","rollup-plugin-node-builtins":"^2.1.2","rollup-plugin-terser":"^7.0.2","standard-version":"^9.3.1"},"dependencies":{"color-name":"^1.1.4","escape-html":"^1.0.3","html-to-vdom":"^0.7.0","image-size":"^1.0.0","image-to-base64":"^2.2.0","jszip":"^3.7.1","lodash":"^4.17.21","mime-types":"^2.1.35","nanoid":"^3.1.25","virtual-dom":"^2.1.1","xmlbuilder2":"2.1.2"},"lint-staged":{"src/**/*.js":["prettier --write","eslint --fix"]},"gitHead":"48713ab40c59c37f640942be5bae4f688ac2b7ee","_id":"html-to-docx@1.5.0","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-C9PWO3BP8i9CS/3o9LSr5hDOCWLAStZ/g+dTmm5iGuPELz8z4VEkq7ajXgVXa2y1aiGynr5SAhdneFKjiuuhig==","shasum":"f8b4a029fbb451802a11eaa676f75bf8233644e9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/html-to-docx/-/html-to-docx-1.5.0.tgz","fileCount":14,"unpackedSize":5068630,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCID/Q9m8ADW+/tzwFbZIaaIEol+gZxkP6gorJ46/TgIqzAiEArtAHCnhtvorBFl6iw3CMB5qmohf/tFmSJCmL9qScFtU="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjV7JVACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrKYg/9HfrfmVM88DDxD/hNm7vSUewoDI3lbWfF60MJX0k+Gt3GV0+b\r\nxEsS65GbCHAhFN5K0LjlfLsIm4kE8cdLVmblGGoW61Rq4b7i/mi+Gr3h8JoH\r\nDxTg6NNezvxoeYYucI979HM0in/kwLBnDkfdGI+uqyGVuoh/d45Lj5Ewh6fS\r\nTeuYNEvazp9tSqUJXqCXdVLdHGSPbKQiFXSKGRNIfRYYreOZSmg6Vk1BeTMP\r\ngvMildNC6oHwbojzDejhx3Apr9DBro9WzClnBsJ9/RjFXXS0i0P4w7cbDE97\r\nqe5NrDfDMxqGuOcDt3w0iqkWmO2mfFwe11vXgNSz3TZB8E0n+J1zBLwwmz+3\r\nGNKEd2zych1ks2jqOFdgnOm/aIsZcQNUpaI9JWWg7998Ha8vFUQu9iqU9GhS\r\nRG3Tqj53sYFoAV0g1Fix7LIlHsIqpTPVtb6YEzO7hTW9wxl79BsoyL0gnIXe\r\nxVywYhk/ycRnw7EtXiyObyt5YhGEHNhzyO1PM2obfM8+v2H5Ld3vEHdgh0rg\r\n4s5z0fZYUiKSjcBeITFDXk9O3jXPEGy1Y6SCr7kGg2YXzE+PdeUprBGYFEAA\r\ntZ0J5M166rxgy2buLFV1RxIsHl4yt8jJjGLgPw9DPZmzBq/q32c1paDCFJv0\r\nLUymqFDsHuSRFa32SwHoqkYneWjnyzAUMMs=\r\n=Zvg2\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"anonymous","email":"privateomega@protonmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"privateomega@protonmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-docx_1.5.0_1666691669158_0.9304397758249403"},"_hasShrinkwrap":false},"1.6.0":{"name":"html-to-docx","version":"1.6.0","description":"HTML to DOCX converter","keywords":["html","docx","html-to-docx","html to docx","office","word"],"main":"dist/html-to-docx.umd.js","module":"dist/html-to-docx.esm.js","scripts":{"test":"npm run build && node example/example-node.js","release":"standard-version","lint":"eslint --fix .","prettier:check":"prettier --check '**/*.{js}'","validate":"run-s lint prettier:check","build":"rollup -c","prepare":"husky install"},"repository":{"type":"git","url":"git+https://github.com/privateOmega/html-to-docx.git"},"author":{"name":"privateOmega","email":"privateOmega@protonmail.com"},"contributors":[{"name":"amrita-syn","email":"amrita.yadav@synapsica.com"},{"name":"charuthaB","email":"charutha.bhaskar@synapsica.com"},{"name":"hanagejet"},{"name":"kurukururuu","email":"apriansyah.fajar94@gmail.com"},{"name":"erenard"},{"name":"KeithGillette"},{"name":"juralio-james"},{"name":"nicolasiscoding","email":"nicolascoding@gmail.com"}],"license":"MIT","bugs":{"url":"https://github.com/privateOmega/html-to-docx/issues"},"homepage":"https://github.com/privateOmega/html-to-docx#readme","devDependencies":{"@commitlint/cli":"^13.1.0","@commitlint/config-conventional":"^13.1.0","@rollup/plugin-commonjs":"^12.0.0","@rollup/plugin-json":"^4.1.0","@rollup/plugin-node-resolve":"^13.1.1","eslint":"^7.32.0","eslint-config-airbnb-base":"^14.2.1","eslint-config-prettier":"^8.3.0","eslint-plugin-import":"^2.24.2","eslint-plugin-prettier":"^4.0.0","husky":"^7.0.0","lint-staged":"^11.1.2","prettier":"^2.4.1","rollup":"^2.62.0","rollup-plugin-cleaner":"^1.0.0","rollup-plugin-node-builtins":"^2.1.2","rollup-plugin-terser":"^7.0.2","standard-version":"^9.3.1"},"dependencies":{"color-name":"^1.1.4","escape-html":"^1.0.3","html-to-vdom":"^0.7.0","image-size":"^1.0.0","image-to-base64":"^2.2.0","jszip":"^3.7.1","lodash":"^4.17.21","mime-types":"^2.1.35","nanoid":"^3.1.25","virtual-dom":"^2.1.1","xmlbuilder2":"2.1.2"},"lint-staged":{"src/**/*.js":["prettier --write","eslint --fix"]},"gitHead":"dadfe57111589acae8408066ac436128142042d0","_id":"html-to-docx@1.6.0","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-evbDksCQToSe+c/kbMeqpM2d1IcyEV7KG7Dl1loq+y9GsFknZcsOotuAn9r3ixL1WtbUiyIoodERccKjTud6Pw==","shasum":"283dbc10bc845a58543988830de610ae7e33a488","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/html-to-docx/-/html-to-docx-1.6.0.tgz","fileCount":14,"unpackedSize":5089730,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDh0oksiCNV9necvFI7Lfw3GK3kFdLLKM6X4/UdsRWREwIgJve06audP+zRLYrPFs5eyAQEetpxFU7ESvluXeSAHXQ="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjdI1cACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqwUhAAiHuCx4Tno9jr5T/PscO4sVAzfkK7TTuS4NcOv/XKNtXPLWd3\r\nFAuGVKVhi0d/VcXPP3vJl6NKPfgnK4bKddZ4Ck4+tFV9ZdIQgfEvAYogN0Wx\r\nzC7sNJNStJ5Mpzo2bq1WY46ZveEF7a+AKmUP4d9ier+BKcq055Ej3PoXn3l5\r\n0MvOjjQxMRVUbaT69ajnJoJiXC+Ph3d75mwveCmZcergsLS8LmRKsXx55qk7\r\n6P4Qfvrg67WsBbJEbN/fiGawXlNR4NGiCLtzPHo1+4Okw1vQG1eaN+/Zj+Rv\r\nq0yNKrStdqu3KfmJfUm9Nv1bkVnlKMdDDtktN5+YLRgcmIdr45UJ+GuHRdtJ\r\nQJmyDe8QyVomFaggssNT0PBnRgFGlOhMoXcnzrrCIwGjuJ5sg3XxAlTyeRT+\r\nFfz7JYJLYHRTC67p5Kfcp56UTOzGHTyFwmsMkEt3godtHfJlD5oYecy6fDJf\r\nOBdDrqKpPwCArHimoRyjUgIWuoK1bspoHWvGeG1CfDwhcmpFKWZ/EPgYP5LH\r\nDQ5L+ppDozMERGeEMZ7B0dmQ5otXRDXRpJCTHvMkvkD/X0I25/zIgpG7W5hj\r\n9VEY/SLPUqboy5cakeAGRH7V8qUvF/A6UzceRbZih/Vf6E4PAUSKBBCzURXQ\r\nHEZ416BjLyyTWIkkTwbi9CqyQvgoK6dEY4E=\r\n=srFV\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"anonymous","email":"privateomega@protonmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"privateomega@protonmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-docx_1.6.0_1668582748407_0.7004978459101097"},"_hasShrinkwrap":false,"deprecated":"this package has been deprecated"},"1.6.1":{"name":"html-to-docx","version":"1.6.1","description":"HTML to DOCX converter","keywords":["html","docx","html-to-docx","html to docx","office","word"],"main":"dist/html-to-docx.umd.js","module":"dist/html-to-docx.esm.js","scripts":{"test":"npm run build && node example/example-node.js","release":"standard-version","lint":"eslint --fix .","prettier:check":"prettier --check '**/*.{js}'","validate":"run-s lint prettier:check","build":"rollup -c","prepare":"husky install"},"repository":{"type":"git","url":"git+https://github.com/privateOmega/html-to-docx.git"},"author":{"name":"privateOmega","email":"privateOmega@protonmail.com"},"contributors":[{"name":"amrita-syn","email":"amrita.yadav@synapsica.com"},{"name":"charuthaB","email":"charutha.bhaskar@synapsica.com"},{"name":"hanagejet"},{"name":"kurukururuu","email":"apriansyah.fajar94@gmail.com"},{"name":"erenard"},{"name":"KeithGillette"},{"name":"juralio-james"},{"name":"nicolasiscoding","email":"nicolascoding@gmail.com"}],"license":"MIT","bugs":{"url":"https://github.com/privateOmega/html-to-docx/issues"},"homepage":"https://github.com/privateOmega/html-to-docx#readme","devDependencies":{"@commitlint/cli":"^13.1.0","@commitlint/config-conventional":"^13.1.0","@rollup/plugin-commonjs":"^12.0.0","@rollup/plugin-json":"^4.1.0","@rollup/plugin-node-resolve":"^13.1.1","eslint":"^7.32.0","eslint-config-airbnb-base":"^14.2.1","eslint-config-prettier":"^8.3.0","eslint-plugin-import":"^2.24.2","eslint-plugin-prettier":"^4.0.0","husky":"^7.0.0","lint-staged":"^11.1.2","prettier":"^2.4.1","rollup":"^2.62.0","rollup-plugin-cleaner":"^1.0.0","rollup-plugin-node-builtins":"^2.1.2","rollup-plugin-terser":"^7.0.2","standard-version":"^9.3.1"},"dependencies":{"color-name":"^1.1.4","escape-html":"^1.0.3","html-to-vdom":"^0.7.0","image-size":"^1.0.0","image-to-base64":"^2.2.0","jszip":"^3.7.1","lodash":"^4.17.21","mime-types":"^2.1.35","nanoid":"^3.1.25","virtual-dom":"^2.1.1","xmlbuilder2":"2.1.2"},"lint-staged":{"src/**/*.js":["prettier --write","eslint --fix"]},"gitHead":"7576752db7ff2c6c799423591e7247ae749802ba","_id":"html-to-docx@1.6.1","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-2q4lMVAEFdBqMa8vHRjfgCAgr3sLHtc8XbmAmiNhKSR2JUCUqVmGLB+YB1g9xpom/KVentUqmY3HJpmEziexJQ==","shasum":"1f76df773228b103ffe578f4cbc062d4c7bbb578","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/html-to-docx/-/html-to-docx-1.6.1.tgz","fileCount":14,"unpackedSize":5099859,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGIkfl2H87BrvctnVTtipV1B/OhLWBrSqoZ3zKHvUofhAiEApocn/CnrQEfQ8fNoP2X9VOTQfAuOn9cbK3zh17fJVJo="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjdI58ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmpl6hAAhq85eCM2lVYGS3EKAPsXT9K48UMdEj4YVelyCvk4F2gv4L7H\r\n/QpU8ZjwV8KkYl6mV465vSIsklEG5RVXx+45RLtoj/wIcjCZwKGTB3XMUNd7\r\n1KZiwaRVo6WPxIbXCmtG3zwRXIu95lTXAnXItkmRJPh1slIKZt0wP560iv0z\r\n3rhXbwto8hSqHvQ2nAIA8ae78mE4NQtC8ddHwq1wMua79L61394WNuqLv//a\r\n8Z/fPube84NpPpvHNpYsympAjYKPyt9HJRPEDXqJR2YrlT/R97/3VUadnbSa\r\nf8jjQkB5JeshiA/AW1WREbDksbS+USTcYUlI1DOXf0f6ivwiLu6cvPDBcjU8\r\noYc59EGmNRe+cwsLR3IW58oKNaF8JVLJt01tg72IJlrQr5Jy7TpdS1bjFtBJ\r\nGODxqXGqlvR+HGoudhjtDPpzqZZA/HqpPdL4Dj6eSf1WmEkTEEdwuwEMWbXL\r\nba7tzEZ5G/xSGyMzuAjerw1xMcOAvBhqRxAxcRoZLLWhMvSoPvUnXOJ1rbU0\r\nrDBasBYHIZEzRHJJvPgUSXuQaIEWm+Bb19tu6rjiD1bM5ML6kBVMS/bhlyp+\r\nLPuLCHidghaeRbdBr0JWKQ96Yio9p5Z/bfjaE+jUpZYR6AkwtbcGUON9t9MP\r\nR0zwgqFOuouCq5Cpjvr7g6X7L+aAbPgV9zE=\r\n=pupV\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"anonymous","email":"privateomega@protonmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"privateomega@protonmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-docx_1.6.1_1668583036394_0.3016292432751373"},"_hasShrinkwrap":false},"1.6.2":{"name":"html-to-docx","version":"1.6.2","description":"HTML to DOCX converter","keywords":["html","docx","html-to-docx","html to docx","office","word"],"main":"dist/html-to-docx.umd.js","module":"dist/html-to-docx.esm.js","scripts":{"test":"npm run build && node example/example-node.js","release":"standard-version","lint":"eslint --fix .","prettier:check":"prettier --check '**/*.{js}'","validate":"run-s lint prettier:check","build":"rollup -c","prepare":"husky install"},"repository":{"type":"git","url":"git+https://github.com/privateOmega/html-to-docx.git"},"author":{"name":"privateOmega","email":"privateOmega@protonmail.com"},"contributors":[{"name":"amrita-syn","email":"amrita.yadav@synapsica.com"},{"name":"charuthaB","email":"charutha.bhaskar@synapsica.com"},{"name":"hanagejet"},{"name":"kurukururuu","email":"apriansyah.fajar94@gmail.com"},{"name":"erenard"},{"name":"KeithGillette"},{"name":"juralio-james"},{"name":"nicolasiscoding","email":"nicolascoding@gmail.com"}],"license":"MIT","bugs":{"url":"https://github.com/privateOmega/html-to-docx/issues"},"homepage":"https://github.com/privateOmega/html-to-docx#readme","devDependencies":{"@commitlint/cli":"^13.1.0","@commitlint/config-conventional":"^13.1.0","@rollup/plugin-commonjs":"^12.0.0","@rollup/plugin-json":"^4.1.0","@rollup/plugin-node-resolve":"^13.1.1","eslint":"^7.32.0","eslint-config-airbnb-base":"^14.2.1","eslint-config-prettier":"^8.3.0","eslint-plugin-import":"^2.24.2","eslint-plugin-prettier":"^4.0.0","husky":"^7.0.0","lint-staged":"^11.1.2","prettier":"^2.4.1","rollup":"^2.62.0","rollup-plugin-cleaner":"^1.0.0","rollup-plugin-node-builtins":"^2.1.2","rollup-plugin-terser":"^7.0.2","standard-version":"^9.3.1"},"dependencies":{"color-name":"^1.1.4","escape-html":"^1.0.3","html-to-vdom":"^0.7.0","image-size":"^1.0.0","image-to-base64":"^2.2.0","jszip":"^3.7.1","lodash":"^4.17.21","mime-types":"^2.1.35","nanoid":"^3.1.25","virtual-dom":"^2.1.1","xmlbuilder2":"2.1.2"},"lint-staged":{"src/**/*.js":["prettier --write","eslint --fix"]},"gitHead":"032e57e671f44f1f43feda92a291625030ab6ed7","_id":"html-to-docx@1.6.2","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-gswD887Lkmd6WfEecyTvJRRAXHPAqxpm19RPPmUATzY4L+Tf24aINxKEDODiRpU8C244J9kY97qTAQQ8R7PllA==","shasum":"c1697cf21f9ce12d9ca937db2c3f28e68e2e419f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/html-to-docx/-/html-to-docx-1.6.2.tgz","fileCount":14,"unpackedSize":5120108,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBjtsdcqSV26itkZJX8NECtf1qawQcuZm5erQWZdxkNeAiEAzWpECKv9tPoNrZptmpdfOh6JyIAQffkkt4NOvLZQPCA="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjdcpXACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqYEA/9HSTBZw+UdaiJZQew9eX5aB1aBBFaznFVap6qh9WWsvKAJXau\r\nl1VNjkqY6YjFcWQojsbn65zgX82blkI/SHG8DPxfeO+6sXb6INM1cVVGiTEo\r\no8sjPQCRgNXXb8aj1+BfCSuz3prsFuw8ui2dpnwx2EC1pfuG9fH4qmaGltMu\r\n3hKseUY49AvD5pf2csPNleK32fHRvXsb/4GQ0A9EKIc/qK6gCPd3X+WrIBNW\r\nMZy8v0ZiNh17BkXibDy1Khy0TCoJeswYUkXK1UI1F9n4e8qBks9iYMOiJbzk\r\nm9LxQq7lN6E0FUhJjH0RnSltFPJeLYrvtHJkwJUXym413GKIcF5c2l9QX/85\r\n7gAK3OwBoAWIcfN+Nae6Hczn4sGboL49Hdgb4yEYhjfPb5NTWcr3QvoY5tsO\r\nns5fkyY+f8rBMxVf2zCWKQ8u+kWIZFbChj1STcUT5NeHU2beE+ZfEaJ/rcK9\r\nFNrwIbErljToUOUgIlH5kQkrfi+2R3BcMgiYnDoRk5fQq+SfiMcaRl+pI27i\r\ndf5X1R8vMwqYeX73wsrO3CjvsFhb6LXnQa5LlBMQCkMEfPxXQvuM/IE6PABs\r\nLz2Vnmjg1zv3YgzAJHcgJA3OSBHLkrg7+63v7J08konCa/X6is8akZ7GbXup\r\nX6B3Gr777dOTCLhfdSxEeemkndhd+JsQTD8=\r\n=bbV/\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"anonymous","email":"privateomega@protonmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"privateomega@protonmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-docx_1.6.2_1668663894805_0.5604732598715789"},"_hasShrinkwrap":false},"1.6.3":{"name":"html-to-docx","version":"1.6.3","description":"HTML to DOCX converter","keywords":["html","docx","html-to-docx","html to docx","office","word"],"main":"dist/html-to-docx.umd.js","module":"dist/html-to-docx.esm.js","scripts":{"preinstall":"npx npm-force-resolutions","test":"npm run build && node example/example-node.js","prerelease":"rollup -c","release":"standard-version","lint":"eslint --fix .","prettier:check":"prettier --check '**/*.{js}'","validate":"run-s lint prettier:check","build":"rollup -c","prepare":"husky install"},"repository":{"type":"git","url":"git+https://github.com/privateOmega/html-to-docx.git"},"author":{"name":"privateOmega","email":"privateOmega@protonmail.com"},"contributors":[{"name":"amrita-syn","email":"amrita.yadav@synapsica.com"},{"name":"charuthaB","email":"charutha.bhaskar@synapsica.com"},{"name":"hanagejet"},{"name":"kurukururuu","email":"apriansyah.fajar94@gmail.com"},{"name":"erenard"},{"name":"KeithGillette"},{"name":"juralio-james"},{"name":"nicolasiscoding","email":"nicolascoding@gmail.com"}],"license":"MIT","bugs":{"url":"https://github.com/privateOmega/html-to-docx/issues"},"homepage":"https://github.com/privateOmega/html-to-docx#readme","devDependencies":{"@commitlint/cli":"^13.1.0","@commitlint/config-conventional":"^13.1.0","@rollup/plugin-commonjs":"^12.0.0","@rollup/plugin-json":"^4.1.0","@rollup/plugin-node-resolve":"^13.1.1","eslint":"^7.32.0","eslint-config-airbnb-base":"^14.2.1","eslint-config-prettier":"^8.3.0","eslint-plugin-import":"^2.24.2","eslint-plugin-prettier":"^4.0.0","husky":"^7.0.0","lint-staged":"^11.1.2","prettier":"^2.4.1","rollup":"^2.62.0","rollup-plugin-cleaner":"^1.0.0","rollup-plugin-node-builtins":"^2.1.2","rollup-plugin-terser":"^7.0.2","standard-version":"^9.3.1"},"dependencies":{"color-name":"^1.1.4","escape-html":"^1.0.3","html-to-vdom":"^0.7.0","image-size":"^1.0.0","image-to-base64":"^2.2.0","jszip":"^3.7.1","lodash":"^4.17.21","mime-types":"^2.1.35","nanoid":"^3.1.25","virtual-dom":"^2.1.1","xmlbuilder2":"2.1.2"},"lint-staged":{"src/**/*.js":["prettier --write","eslint --fix"]},"resolutions":{"@oozcitak/util":"8.3.4","@oozcitak/dom":"1.15.6"},"gitHead":"c8bbfa4d3e6777dab131d1d90559effcb4973975","_id":"html-to-docx@1.6.3","_nodeVersion":"16.14.0","_npmVersion":"8.3.1","dist":{"integrity":"sha512-M1rzFOG+PcbhFmEbP/ountnzT2VuMmDv2nJsTCEr2CvDhfV6RoqVZ/qsrFctiyvXdRzt2u6Q16sd1QcaK2pzAA==","shasum":"4d7e8f9cc124b42dda69b1af07910a724acb5227","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/html-to-docx/-/html-to-docx-1.6.3.tgz","fileCount":12,"unpackedSize":4775936,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIH84rOt1d9AH8UErTwJyck297CLsAaj4c0DghlEKvjmMAiEAtEGdb0Harg+NNfxrbjHdAP2urg2zm3CjCC6l9yuXAGA="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjdobIACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrteg//cG7N0q11vnBDiJWB/eNjxzDt9hZh5pe3XK6K0ZgCs8iv7J2A\r\nNOzUmonQD9JaNHgETEBktAD8Tf2bw+mCyOf5cT1dyhRy+aBssHjrw4/QgDks\r\n/UFxOw2wwje4mZITb4Pnac5gwvYsZPncTaBleWGwsEgru6tc/Am5LaA/Ib/3\r\n5r2J00IaGO+OAcB9tG72+Oz2uKaIjdm/4UvQCyxAKit6Lf30tqasJYqPsVxY\r\nBJgD456DQ1vCGyEs8J/1Fj1s6KdfKyY1+QOPBA8YuWHnm2XRk5VG9PTyLkln\r\nKB+Zz6J875eARJBA0pkDjP4vTsT92TwNgfyqW8miPnnzoMnE2VQ/INnGPeaI\r\n0THNhHqELirI0HHgRkolN+IUNDUtwOKKm+l7imf0qNw4ZGjYopZJgT5wdkeB\r\nWDu/vMAxY11hvtmbkdqlgg66gMX23sC8YIDTZR9nmEJYL81WSy/8aByp7od+\r\nfLKnk7Haw4a3S844MwKNnoQujvQKnbCov2BgreNH6L0hDwXcGe7Zy00yQQ/L\r\nSRTs+rQwtqeTQUtuyi17jlrMNwblEj3NThtSF0xhWACj0z8haLD4mDQDV4cX\r\nl4Y6QDQ3usvM9n/JCZ10DEfVrv+SubaxDdHsM6fikOgMdvSs5DoXX7SmDucC\r\nkakiAFBIcYSvM+KIs82RAOsPgUp8eTXe0BU=\r\n=WMgP\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"anonymous","email":"privateomega@protonmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"privateomega@protonmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-docx_1.6.3_1668712136605_0.5830791353505311"},"_hasShrinkwrap":false},"1.6.4":{"name":"html-to-docx","version":"1.6.4","description":"HTML to DOCX converter","keywords":["html","docx","html-to-docx","html to docx","office","word"],"main":"dist/html-to-docx.umd.js","module":"dist/html-to-docx.esm.js","scripts":{"test":"npm run build && node example/example-node.js","prerelease":"rollup -c","release":"standard-version","lint":"eslint --fix .","prettier:check":"prettier --check '**/*.{js}'","validate":"run-s lint prettier:check","build":"rollup -c","prepare":"husky install"},"repository":{"type":"git","url":"git+https://github.com/privateOmega/html-to-docx.git"},"author":{"name":"privateOmega","email":"privateOmega@protonmail.com"},"contributors":[{"name":"amrita-syn","email":"amrita.yadav@synapsica.com"},{"name":"charuthaB","email":"charutha.bhaskar@synapsica.com"},{"name":"hanagejet"},{"name":"kurukururuu","email":"apriansyah.fajar94@gmail.com"},{"name":"erenard"},{"name":"KeithGillette"},{"name":"juralio-james"},{"name":"nicolasiscoding","email":"nicolascoding@gmail.com"}],"license":"MIT","bugs":{"url":"https://github.com/privateOmega/html-to-docx/issues"},"homepage":"https://github.com/privateOmega/html-to-docx#readme","devDependencies":{"@commitlint/cli":"^13.1.0","@commitlint/config-conventional":"^13.1.0","@rollup/plugin-commonjs":"^12.0.0","@rollup/plugin-json":"^4.1.0","@rollup/plugin-node-resolve":"^13.1.1","eslint":"^7.32.0","eslint-config-airbnb-base":"^14.2.1","eslint-config-prettier":"^8.3.0","eslint-plugin-import":"^2.24.2","eslint-plugin-prettier":"^4.0.0","husky":"^7.0.0","lint-staged":"^11.1.2","prettier":"^2.4.1","rollup":"^2.62.0","rollup-plugin-cleaner":"^1.0.0","rollup-plugin-node-builtins":"^2.1.2","rollup-plugin-terser":"^7.0.2","standard-version":"^9.3.1"},"dependencies":{"@oozcitak/util":"8.3.4","@oozcitak/dom":"1.15.6","color-name":"^1.1.4","escape-html":"^1.0.3","html-to-vdom":"^0.7.0","image-size":"^1.0.0","image-to-base64":"^2.2.0","jszip":"^3.7.1","lodash":"^4.17.21","mime-types":"^2.1.35","nanoid":"^3.1.25","virtual-dom":"^2.1.1","xmlbuilder2":"2.1.2"},"lint-staged":{"src/**/*.js":["prettier --write","eslint --fix"]},"resolutions":{"@oozcitak/util":"8.3.4","@oozcitak/dom":"1.15.6"},"overrides":{"@oozcitak/util":"8.3.4","@oozcitak/dom":"1.15.6"},"gitHead":"fb3e663011c7f4ba355cb16f28a38f67dcfd6c82","_id":"html-to-docx@1.6.4","_nodeVersion":"16.15.1","_npmVersion":"8.11.0","dist":{"integrity":"sha512-bo/nL47GcBXxsephyC9HpIjd8VZoOKKZHxOLENxFwsM29RU1vpgEEFbrtI6OeJemSVUWKHys0avOGZlGv1cH6Q==","shasum":"aa99f8e216d31b5b23e8f95c4823e348b4a64ccd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/html-to-docx/-/html-to-docx-1.6.4.tgz","fileCount":12,"unpackedSize":4776034,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHiKRWL/wYqV6VRLZHsQJrWxNcDmJONuPVxMm4B273zxAiEAp4v+nrYhFesgMfSxH4YOi03cG2QgmK3r+Q1NgkXqCbg="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjdy7xACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqeGw//amOKuMGc3RVQ6WM81HUGYRWpOk1kSQHRMLQ6zKCSTz1P442e\r\n1PjqRaz2z1sqRS9+Pc0NDeUNmEiVI0ocTrzXeM6CuLxnWM4BGnDFKTCgv9z4\r\nY3np6fiZ9D/Abb3Z7cBUWq5WK97u6l+K/UCRBZajNt5Wr0r6qxoWpwGg883g\r\nidOgSFzNb1BJ+17W2uqcmYWz/e1uxEQTcdeM5UVTnG6tQj+tI6dwFrMB9Tdh\r\nOtXigcZ4WFuZZLqA+PmdF9AXTpg0R1afAB3CES6v4NSQlPIIpvzdMI4762PJ\r\nVFjiF6O7Ol94+SzMxuCdYVoOoSu+r3IKbhJkJ3IkBdP0a6V6m8IA9YEA+wSb\r\nq9qP672UVjKQha/pnDdPa5SOBYg3VjCcrWmrgYljbiAADhA4l35yMla1d8SI\r\nCqXboPZa+LZBcmszT2gLyO/ehqN4pEuYRll25ZRm1lywiUuMiJADKUfbbt3Z\r\nDa9XzrydtUaP1/NQwtm5R+4tbq/p3n/Ifu5OUlqU/CagoQjg5AddVDHqkKEF\r\ngrddsUjorMJVGt5FtKCOwJYfLLvLSaRt8P3yrs30110O4moK5u3eo0EX+4WW\r\nzlFez6ea/ryREqaI61wTBtGjMTu2+r9j+23okaCZlZbw5f6VlPBc644OR2JU\r\nGF1KxRWiWOqzJF/lXMQZP5l4E0mPcorAesA=\r\n=+neK\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"anonymous","email":"privateomega@protonmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"privateomega@protonmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-docx_1.6.4_1668755184927_0.969420544703798"},"_hasShrinkwrap":false},"1.6.5":{"name":"html-to-docx","version":"1.6.5","description":"HTML to DOCX converter","keywords":["html","docx","html-to-docx","html to docx","office","word"],"main":"dist/html-to-docx.umd.js","module":"dist/html-to-docx.esm.js","scripts":{"test":"npm run build && node example/example-node.js","prerelease":"rollup -c","release":"standard-version","lint":"eslint --fix .","prettier:check":"prettier --check '**/*.{js}'","validate":"run-s lint prettier:check","build":"rollup -c","prepare":"husky install"},"repository":{"type":"git","url":"git+https://github.com/privateOmega/html-to-docx.git"},"author":{"name":"privateOmega","email":"privateOmega@protonmail.com"},"contributors":[{"name":"amrita-syn","email":"amrita.yadav@synapsica.com"},{"name":"charuthaB","email":"charutha.bhaskar@synapsica.com"},{"name":"hanagejet"},{"name":"kurukururuu","email":"apriansyah.fajar94@gmail.com"},{"name":"erenard"},{"name":"KeithGillette"},{"name":"juralio-james"},{"name":"nicolasiscoding","email":"nicolascoding@gmail.com"}],"license":"MIT","bugs":{"url":"https://github.com/privateOmega/html-to-docx/issues"},"homepage":"https://github.com/privateOmega/html-to-docx#readme","devDependencies":{"@commitlint/cli":"^13.1.0","@commitlint/config-conventional":"^13.1.0","@rollup/plugin-commonjs":"^12.0.0","@rollup/plugin-json":"^4.1.0","@rollup/plugin-node-resolve":"^13.1.1","eslint":"^7.32.0","eslint-config-airbnb-base":"^14.2.1","eslint-config-prettier":"^8.3.0","eslint-plugin-import":"^2.24.2","eslint-plugin-prettier":"^4.0.0","husky":"^7.0.0","lint-staged":"^11.1.2","prettier":"^2.4.1","rollup":"^2.62.0","rollup-plugin-cleaner":"^1.0.0","rollup-plugin-node-builtins":"^2.1.2","rollup-plugin-terser":"^7.0.2","standard-version":"^9.3.1"},"dependencies":{"@oozcitak/util":"8.3.4","@oozcitak/dom":"1.15.6","color-name":"^1.1.4","escape-html":"^1.0.3","html-to-vdom":"^0.7.0","image-size":"^1.0.0","image-to-base64":"^2.2.0","jszip":"^3.7.1","lodash":"^4.17.21","mime-types":"^2.1.35","nanoid":"^3.1.25","virtual-dom":"^2.1.1","xmlbuilder2":"2.1.2"},"lint-staged":{"src/**/*.js":["prettier --write","eslint --fix"]},"resolutions":{"@oozcitak/util":"8.3.4","@oozcitak/dom":"1.15.6"},"overrides":{"@oozcitak/util":"8.3.4","@oozcitak/dom":"1.15.6"},"gitHead":"992fea47f84b5c3f3375e8e94f80d05ade85072e","_id":"html-to-docx@1.6.5","_nodeVersion":"16.14.0","_npmVersion":"8.3.1","dist":{"integrity":"sha512-YPXsZlz78Pw0BHhIaFVQ/9HTs93lkFEfsFesHakp2rl9qfPoPalzrcKV0ulUXBB00r6qch4fgAA6pcoM4/gRgg==","shasum":"99bd6e04a53ed018600fb3704a9aed95afbfe755","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/html-to-docx/-/html-to-docx-1.6.5.tgz","fileCount":12,"unpackedSize":4776183,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCSwYpSgvgge4eZIM0yKp+Qib9pxgvXZTwaVZ4KdlSX2QIhAOTobdI0n3oQR2LT7ufJhBHLL51/+JV1TaF7VwN6cD3C"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjxumAACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrtVg//f8HJ/YDd7TmVgnlb+MlMMge6/6uHjg+ZIyw5R4gD/EGA5T4c\r\nyaLyCReRakuHQHi60e+2exRzkuFK2j2Mc32x6XJWfTWqMRYVWRyVaQWTef6Z\r\ndQhKgmpgK4nYhqDCNBMGBDp9GkDvh3lTFFonZ5cIdB4nQzVnG5XE0OFM+Wp7\r\nqPyVaGphpZxr1np1VOu19XjYBun2aSSMUqR2hf7tdBnmAKPZKXY5v4F4OQVA\r\noa2kHE6ZGaNqVDwCTCtkRac4EtinxHd9pk8YhSmiBDrFG7DAuQAaY43C2O9d\r\nMQbs5AVXQzX5ZDYxZYmECvcNY4D7cdVJsC9OXih8Ji2E3ish3/IXNBOdxrWE\r\nGYVEWudp2qhczFgtzlcJx/sgb3t8tFsESIykVNWaIkzlP+Dx8HVKtMmEXsZK\r\n16BcLJHiyuYXZzKY8JOyOpCxjQ8aEqR8ZqJmUvewMm0Fms6adJYjcCP1MsV8\r\naiwJ2HaiVEK79PxGgYuHi8efypGKAqPAIIIGR+/469OTI3ikUktyU1Py8wgz\r\n7Rmb/38uSnKjKikOVXNPNhHIeaXllwajBeQqsfUI3ZOUHiTXpq3gl0TgtjpD\r\n5/k9WBEQn9+gTsDJlCrZiunBGvV0pBsSV/PPZfjMiSfnCrdUYBeXt0iNAAX1\r\n0XG8Ql7S/bVUSrEZN0H4tuxjgY34BcRJMgk=\r\n=zH3h\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"anonymous","email":"privateomega@protonmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"privateomega@protonmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-docx_1.6.5_1673980288658_0.7006096679267104"},"_hasShrinkwrap":false},"1.7.0":{"name":"html-to-docx","version":"1.7.0","description":"HTML to DOCX converter","keywords":["html","docx","html-to-docx","html to docx","office","word"],"main":"dist/html-to-docx.umd.js","module":"dist/html-to-docx.esm.js","scripts":{"test":"npm run build && node example/example-node.js","prerelease":"rollup -c","release":"standard-version","lint":"eslint --fix .","prettier:check":"prettier --check '**/*.{js}'","validate":"run-s lint prettier:check","build":"rollup -c","prepare":"husky install"},"repository":{"type":"git","url":"git+https://github.com/privateOmega/html-to-docx.git"},"author":{"name":"privateOmega","email":"privateOmega@protonmail.com"},"contributors":[{"name":"amrita-syn","email":"amrita.yadav@synapsica.com"},{"name":"charuthaB","email":"charutha.bhaskar@synapsica.com"},{"name":"hanagejet"},{"name":"kurukururuu","email":"apriansyah.fajar94@gmail.com"},{"name":"erenard"},{"name":"KeithGillette"},{"name":"juralio-james"},{"name":"nicolasiscoding","email":"nicolascoding@gmail.com"},{"name":"zedtux","email":"zedtux@zedroot.org"},{"name":"hlerebours"},{"name":"hakjeri"},{"name":"tasola"}],"license":"MIT","bugs":{"url":"https://github.com/privateOmega/html-to-docx/issues"},"homepage":"https://github.com/privateOmega/html-to-docx#readme","devDependencies":{"@commitlint/cli":"^13.1.0","@commitlint/config-conventional":"^13.1.0","@rollup/plugin-commonjs":"^12.0.0","@rollup/plugin-json":"^4.1.0","@rollup/plugin-node-resolve":"^13.1.1","eslint":"^7.32.0","eslint-config-airbnb-base":"^14.2.1","eslint-config-prettier":"^8.3.0","eslint-plugin-import":"^2.24.2","eslint-plugin-prettier":"^4.0.0","husky":"^7.0.0","lint-staged":"^11.1.2","prettier":"^2.4.1","rollup":"^2.62.0","rollup-plugin-cleaner":"^1.0.0","rollup-plugin-node-builtins":"^2.1.2","rollup-plugin-terser":"^7.0.2","standard-version":"^9.3.1"},"dependencies":{"@oozcitak/util":"8.3.4","@oozcitak/dom":"1.15.6","color-name":"^1.1.4","html-entities":"^2.3.3","html-to-vdom":"^0.7.0","image-size":"^1.0.0","image-to-base64":"^2.2.0","jszip":"^3.7.1","lodash":"^4.17.21","mime-types":"^2.1.35","nanoid":"^3.1.25","virtual-dom":"^2.1.1","xmlbuilder2":"2.1.2"},"lint-staged":{"src/**/*.js":["prettier --write","eslint --fix"]},"resolutions":{"@oozcitak/util":"8.3.4","@oozcitak/dom":"1.15.6"},"overrides":{"@oozcitak/util":"8.3.4","@oozcitak/dom":"1.15.6"},"gitHead":"23e0d3e839cc2fa428aa169733ead0bb0e46ade4","_id":"html-to-docx@1.7.0","_nodeVersion":"16.14.0","_npmVersion":"8.3.1","dist":{"integrity":"sha512-e4IfUnclAhPyuYwqVTXo+rUbgurxxhgNVA60PWEfm8o24PH/HDap1tymsjubsp/+ugEeRy0UjBSu4V4Mpen6vA==","shasum":"5ccb38bf0f2f5ba82d5510eb712d1a416764d07f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/html-to-docx/-/html-to-docx-1.7.0.tgz","fileCount":12,"unpackedSize":4778373,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHFWM+t5nCp8fxJgqtlRpNfKkdhm2Meri5tETjUmFQgzAiEAm1oyfH9mcdogX1k9jk8pMqGK9hE3i0EK0ushz28ldAo="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkFqkQACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrN0Q//YvXq/s//0QoIyy3ZqfhPFKUOmjEW0KBcit6JtvHZ5YzhtS0w\r\nCnTGDMbUXji+UdgMPmcQbKW6lCSnokevTT+ImOxyPHwNTVlOE6EX2T2FpJbs\r\nDKGcAsvhcQxZlLa+rtFi7+vcUt10dhxJKlR0whzP6TzzRN7Wd1mO8xlKKu+U\r\n3Frp0v0BUM2fGgT0FQ0S03g1VLB/Ua6JPLNwEgfd7q+OEtPdcS0WGSVOaegx\r\nTOsh8dCPugB3LmV7MHcHwTFO9dsGunFKtO+1jVNQK5LKYhrz/mJHQssaJOYO\r\n6Z6lLqV6kIBaeFJ3FWNb2l/DQ0TvSaHwoxw/3aQjri3bp9/Z09f/PQHM76G5\r\npeYDTvFz/DW3uYEkaHQ26uV+OsSB4UU0VfAycQ3txIShMwxBBxtoDpsGA8XH\r\nrMdN8G2Nzcy1/8CHBJzLMPUWt31znOEV4K8OprhgUHedtZ/OIXF8eYBtyI8E\r\nY+XVFQXR4I9HVb/cNV1cC1LBctrzRdERO7pn/WkKVo7t1W3tbdqgMpdpbHS+\r\nV3drlpKt7/sGPGpQv/sPIoxQBSqrfUNNrwWCAyFr/wPQcbFA2QgVymLCmXkP\r\nqnL7btkWGOxLF4FsqXJp8x2EUuIt7YAUz0FNhrp6CIw9riCeuxbE/WvBmtTu\r\ncipkkM0OOjyq7tJ7Av0MEgs9UYJC2dINei4=\r\n=UoRz\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"anonymous","email":"privateomega@protonmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"privateomega@protonmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-docx_1.7.0_1679206672517_0.2870227765896376"},"_hasShrinkwrap":false},"1.8.0":{"name":"html-to-docx","version":"1.8.0","description":"HTML to DOCX converter","keywords":["html","docx","html-to-docx","html to docx","office","word"],"main":"dist/html-to-docx.umd.js","module":"dist/html-to-docx.esm.js","scripts":{"test":"npm run build && node example/example-node.js","prerelease":"rollup -c","release":"standard-version","lint":"eslint --fix .","prettier:check":"prettier --check '**/*.{js}'","validate":"run-s lint prettier:check","build":"rollup -c","prepare":"husky install"},"repository":{"type":"git","url":"git+https://github.com/privateOmega/html-to-docx.git"},"author":{"name":"privateOmega","email":"privateOmega@protonmail.com"},"contributors":[{"name":"amrita-syn","email":"amrita.yadav@synapsica.com"},{"name":"charuthaB","email":"charutha.bhaskar@synapsica.com"},{"name":"hanagejet"},{"name":"kurukururuu","email":"apriansyah.fajar94@gmail.com"},{"name":"erenard"},{"name":"KeithGillette"},{"name":"juralio-james"},{"name":"nicolasiscoding","email":"nicolascoding@gmail.com"},{"name":"zedtux","email":"zedtux@zedroot.org"},{"name":"hlerebours"},{"name":"hakjeri"},{"name":"tasola"}],"license":"MIT","bugs":{"url":"https://github.com/privateOmega/html-to-docx/issues"},"homepage":"https://github.com/privateOmega/html-to-docx#readme","devDependencies":{"@commitlint/cli":"^13.1.0","@commitlint/config-conventional":"^13.1.0","@rollup/plugin-commonjs":"^12.0.0","@rollup/plugin-json":"^4.1.0","@rollup/plugin-node-resolve":"^13.1.1","eslint":"^7.32.0","eslint-config-airbnb-base":"^14.2.1","eslint-config-prettier":"^8.3.0","eslint-plugin-import":"^2.24.2","eslint-plugin-prettier":"^4.0.0","husky":"^7.0.0","lint-staged":"^11.1.2","prettier":"^2.4.1","rollup":"^2.62.0","rollup-plugin-cleaner":"^1.0.0","rollup-plugin-node-builtins":"^2.1.2","rollup-plugin-terser":"^7.0.2","standard-version":"^9.3.1"},"dependencies":{"@oozcitak/util":"8.3.4","@oozcitak/dom":"1.15.6","color-name":"^1.1.4","html-entities":"^2.3.3","html-to-vdom":"^0.7.0","image-size":"^1.0.0","image-to-base64":"^2.2.0","jszip":"^3.7.1","lodash":"^4.17.21","mime-types":"^2.1.35","nanoid":"^3.1.25","virtual-dom":"^2.1.1","xmlbuilder2":"2.1.2"},"lint-staged":{"src/**/*.js":["prettier --write","eslint --fix"]},"resolutions":{"@oozcitak/util":"8.3.4","@oozcitak/dom":"1.15.6"},"overrides":{"@oozcitak/util":"8.3.4","@oozcitak/dom":"1.15.6"},"gitHead":"2ae805da708e2b3c332cacfe63d0fc55b1c06c89","_id":"html-to-docx@1.8.0","_nodeVersion":"16.14.0","_npmVersion":"8.3.1","dist":{"integrity":"sha512-IiMBWIqXM4+cEsW//RKoonWV7DlXAJBmmKI73XJSVWTIXjGUaxSr2ck1jqzVRZknpvO8xsFnVicldKVAWrBYBA==","shasum":"f41e23353c58ed2908f4630845dd5899addf10d4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/html-to-docx/-/html-to-docx-1.8.0.tgz","fileCount":12,"unpackedSize":4797630,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCL6fJNxggK6jr9b9Jdm0egho4dZONUwPZfwpmKnj4/MQIgaFonAbYGnoh9aovNoorJV2XCZJltofVQa1XY0vXraoY="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkIA2EACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr+ExAApIc/cXRWGUy35Dx9JV2QfAs7KKnQHB1zKKbU/evzGsqGCt+k\r\n++M1S+xLksANF5tExCi43MIkVLkc0lXv0oYSW5v02NMTpMjHFFYStIUgwaCk\r\nsCfDP2E6iQRVUvJNSyJRIby7eb5OeHrRxIIL6pK4zvAIWLJTA4AqzMeIogzr\r\nPXdJkEB9e8x2Ei/htm0DUjbxLEbOi1TKzicjhfOuu1yd4SusbbN6Mq+ly9OV\r\nTJHko0jrHnghhx1W4sdaUO7syVcKbNNu/mJjAAUM0UrVXMSpwxv8fJuBtDtB\r\n2ugwTIjHx7pIsfoYDO/b/oq0TN+fzesNteSMR0s4Uzh/2ow9UQQsbORMi+uJ\r\nfpYZKW+tDsar64d9tLZXcm1pbuaeveRmYQLSDxvWTcFgFstK9TrZfwtef+hb\r\nUF0G7o4jTL99SqDg/bD6LVuSYa7qR4ORSDfoJmV9Cq1mGrfhBeQjUCgC677h\r\n4xe3/yJjhiT19r8jnclW1wztcNUN+EJza0eFoEImXFjZ8jnP0SZaWju7zFL7\r\n8C1aOO1m8BnrQOcO7gF6udmGuWynOr7JSxSearZbS5xrOHUh86mBC+8TaLt0\r\nON6H1nd/8BW18Rv5Q/akJhut86+cQ+rHvqdqsRhHDYvGieGqYrMZ8cCXo9xM\r\nu6/lUwWKaz9jy117zvA8prV3q6iIgrb0vWk=\r\n=IEiY\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"anonymous","email":"privateomega@protonmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"privateomega@protonmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/html-to-docx_1.8.0_1679822212044_0.055755424412471166"},"_hasShrinkwrap":false}},"name":"html-to-docx","time":{"created":"2020-05-28T09:13:59.926Z","1.1.0":"2020-05-28T09:14:00.050Z","modified":"2023-03-26T09:16:52.388Z","1.1.1":"2020-05-28T13:02:56.810Z","1.2.0":"2020-05-29T13:33:07.181Z","1.3.0":"2020-05-29T14:38:31.438Z","1.1.2":"2020-05-29T15:18:43.503Z","1.1.3":"2020-06-03T05:16:35.948Z","1.1.4":"2020-06-03T11:01:02.776Z","1.1.5":"2020-06-03T12:45:30.301Z","1.1.6":"2020-06-04T06:26:04.780Z","1.1.7":"2020-06-04T13:25:08.647Z","1.1.8":"2020-06-05T12:55:56.172Z","1.1.9":"2020-06-08T05:17:12.264Z","1.1.10":"2020-06-10T11:44:57.965Z","1.1.11":"2020-06-10T15:33:39.203Z","1.1.12":"2020-06-12T12:34:41.873Z","1.1.14":"2020-06-12T13:32:42.932Z","1.1.15":"2020-06-12T14:18:58.850Z","1.1.16":"2020-06-12T15:57:48.998Z","1.1.17":"2020-06-15T11:35:05.838Z","1.1.18":"2020-06-23T07:53:47.333Z","1.1.19":"2020-07-01T09:49:36.973Z","1.1.20":"2020-07-01T10:14:11.145Z","1.1.21":"2020-07-02T10:24:14.692Z","1.1.22":"2020-07-09T10:50:48.281Z","1.1.23":"2020-07-21T09:25:14.507Z","1.1.24":"2020-07-22T06:06:41.831Z","1.1.25":"2020-07-24T10:54:44.192Z","1.1.26":"2020-08-04T10:05:02.981Z","1.1.27":"2020-08-04T13:26:16.029Z","1.1.28":"2020-08-06T07:34:30.204Z","1.1.29":"2020-08-11T07:15:45.442Z","1.1.30":"2020-09-21T12:14:48.385Z","1.1.31":"2020-10-06T05:38:10.180Z","1.1.32":"2020-12-04T07:07:35.568Z","1.1.33":"2021-01-20T09:06:32.409Z","1.1.34":"2021-02-07T06:53:02.676Z","1.2.1":"2021-06-05T12:14:54.446Z","1.2.2":"2021-07-17T19:41:13.852Z","1.2.3":"2021-09-15T20:30:23.731Z","1.2.4":"2021-09-20T11:21:31.847Z","1.3.1":"2021-12-27T18:29:46.479Z","1.3.2":"2022-01-23T00:01:14.911Z","1.4.0":"2022-06-01T10:26:18.746Z","1.5.0":"2022-10-25T09:54:29.406Z","1.6.0":"2022-11-16T07:12:28.712Z","1.6.1":"2022-11-16T07:17:16.635Z","1.6.2":"2022-11-17T05:44:55.030Z","1.6.3":"2022-11-17T19:08:56.859Z","1.6.4":"2022-11-18T07:06:25.199Z","1.6.5":"2023-01-17T18:31:28.929Z","1.7.0":"2023-03-19T06:17:52.773Z","1.8.0":"2023-03-26T09:16:52.261Z"},"readmeFilename":"README.md","contributors":[{"name":"amrita-syn","email":"amrita.yadav@synapsica.com"},{"name":"charuthaB","email":"charutha.bhaskar@synapsica.com"},{"name":"hanagejet"},{"name":"kurukururuu","email":"apriansyah.fajar94@gmail.com"},{"name":"erenard"},{"name":"KeithGillette"},{"name":"juralio-james"},{"name":"nicolasiscoding","email":"nicolascoding@gmail.com"},{"name":"zedtux","email":"zedtux@zedroot.org"},{"name":"hlerebours"},{"name":"hakjeri"},{"name":"tasola"}],"homepage":"https://github.com/privateOmega/html-to-docx#readme"}