{"maintainers":[{"name":"anonymous","email":"tituswormer@gmail.com"},{"name":"anonymous","email":"keith@mcknig.ht"}],"keywords":["unist","hast","hast-util","util","utility","html","parse5","ast","tree"],"dist-tags":{"latest":"8.0.1"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},"description":"hast utility to transform to a `parse5` AST","readme":"# hast-util-to-parse5\n\n[![Build][build-badge]][build]\n[![Coverage][coverage-badge]][coverage]\n[![Downloads][downloads-badge]][downloads]\n[![Size][size-badge]][size]\n[![Sponsors][sponsors-badge]][collective]\n[![Backers][backers-badge]][collective]\n[![Chat][chat-badge]][chat]\n\n[hast][] utility to transform to a [`parse5`][parse5] [AST][parse5-node].\n\n## Contents\n\n* [What is this?](#what-is-this)\n* [When should I use this?](#when-should-i-use-this)\n* [Install](#install)\n* [Use](#use)\n* [API](#api)\n  * [`toParse5(tree[, options])`](#toparse5tree-options)\n  * [`Options`](#options)\n  * [`Space`](#space)\n* [Types](#types)\n* [Compatibility](#compatibility)\n* [Security](#security)\n* [Related](#related)\n* [Contribute](#contribute)\n* [License](#license)\n\n## What is this?\n\nThis package is a utility that can turn a hast syntax tree into a `parse5` AST.\nWhy not use a Parse5 adapter, you might ask?\nWell, because it’s more code weight to use adapters, and more fragile.\n\n## When should I use this?\n\nThis package is useful when working with `parse5`, and for some reason want to\ngenerate its AST again.\nThe inverse utility, [`hast-util-from-parse5`][hast-util-from-parse5], is more\nlikely what you want.\n\n## Install\n\nThis package is [ESM only][esm].\nIn Node.js (version 16+), install with [npm][]:\n\n```sh\nnpm install hast-util-to-parse5\n```\n\nIn Deno with [`esm.sh`][esmsh]:\n\n```js\nimport {toParse5} from 'https://esm.sh/hast-util-to-parse5@8'\n```\n\nIn browsers with [`esm.sh`][esmsh]:\n\n```html\n<script type=\"module\">\n  import {toParse5} from 'https://esm.sh/hast-util-to-parse5@8?bundle'\n</script>\n```\n\n## Use\n\n```js\nimport {toParse5} from 'hast-util-to-parse5'\n\nconst tree = toParse5({\n  type: 'element',\n  tagName: 'h1',\n  properties: {},\n  children: [{type: 'text', value: 'World!'}]\n})\n\nconsole.log(tree)\n```\n\nYields:\n\n```js\n{ nodeName: 'h1',\n  tagName: 'h1',\n  attrs: [],\n  namespaceURI: 'http://www.w3.org/1999/xhtml',\n  childNodes: [ { nodeName: '#text', value: 'World!', parentNode: [Circular] } ] }\n```\n\n## API\n\nThis package exports the identifier [`toParse5`][api-to-parse5].\nThere is no default export.\n\n### `toParse5(tree[, options])`\n\nTransform a hast tree to a `parse5` AST.\n\n###### Parameters\n\n* `tree` ([`HastNode`][hast-node])\n  — tree to transform\n* `options` ([`Options`][api-options], optional)\n  — configuration\n\n###### Returns\n\n`parse5` node ([`Parse5Node`][parse5-node]).\n\n### `Options`\n\nConfiguration (TypeScript type).\n\n###### Fields\n\n* `space` ([`Space`][api-space], optional)\n  — which space the document is in\n\n### `Space`\n\nNamespace (TypeScript type).\n\n###### Type\n\n```ts\ntype Space = 'html' | 'svg'\n```\n\n## Types\n\nThis package is fully typed with [TypeScript][].\nIt exports the additional types [`Options`][api-options] and\n[`Space`][api-space].\n\n## Compatibility\n\nProjects maintained by the unified collective are compatible with maintained\nversions of Node.js.\n\nWhen we cut a new major release, we drop support for unmaintained versions of\nNode.\nThis means we try to keep the current release line, `hast-util-to-parse5@^8`,\ncompatible with Node.js 16.\n\n## Security\n\nUse of `hast-util-to-parse5` can open you up to a\n[cross-site scripting (XSS)][xss] attack if the hast tree is unsafe.\n\n## Related\n\n* [`hast-util-from-parse5`](https://github.com/syntax-tree/hast-util-from-parse5)\n  — transform from Parse5’s AST to hast\n* [`hast-util-to-nlcst`](https://github.com/syntax-tree/hast-util-to-nlcst)\n  — transform hast to nlcst\n* [`hast-util-to-mdast`](https://github.com/syntax-tree/hast-util-to-mdast)\n  — transform hast to mdast\n* [`hast-util-to-xast`](https://github.com/syntax-tree/hast-util-to-xast)\n  — transform hast to xast\n* [`mdast-util-to-hast`](https://github.com/syntax-tree/mdast-util-to-hast)\n  — transform mdast to hast\n* [`mdast-util-to-nlcst`](https://github.com/syntax-tree/mdast-util-to-nlcst)\n  — transform mdast to nlcst\n\n## Contribute\n\nSee [`contributing.md`][contributing] in [`syntax-tree/.github`][health] for\nways to get started.\nSee [`support.md`][support] for ways to get help.\n\nThis project has a [code of conduct][coc].\nBy interacting with this repository, organization, or community you agree to\nabide by its terms.\n\n## License\n\n[MIT][license] © [Titus Wormer][author]\n\n<!-- Definitions -->\n\n[build-badge]: https://github.com/syntax-tree/hast-util-to-parse5/workflows/main/badge.svg\n\n[build]: https://github.com/syntax-tree/hast-util-to-parse5/actions\n\n[coverage-badge]: https://img.shields.io/codecov/c/github/syntax-tree/hast-util-to-parse5.svg\n\n[coverage]: https://codecov.io/github/syntax-tree/hast-util-to-parse5\n\n[downloads-badge]: https://img.shields.io/npm/dm/hast-util-to-parse5.svg\n\n[downloads]: https://www.npmjs.com/package/hast-util-to-parse5\n\n[size-badge]: https://img.shields.io/badge/dynamic/json?label=minzipped%20size&query=$.size.compressedSize&url=https://deno.bundlejs.com/?q=hast-util-to-parse5\n\n[size]: https://bundlejs.com/?q=hast-util-to-parse5\n\n[sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg\n\n[backers-badge]: https://opencollective.com/unified/backers/badge.svg\n\n[collective]: https://opencollective.com/unified\n\n[chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg\n\n[chat]: https://github.com/syntax-tree/unist/discussions\n\n[npm]: https://docs.npmjs.com/cli/install\n\n[esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c\n\n[esmsh]: https://esm.sh\n\n[typescript]: https://www.typescriptlang.org\n\n[license]: license\n\n[author]: https://wooorm.com\n\n[health]: https://github.com/syntax-tree/.github\n\n[contributing]: https://github.com/syntax-tree/.github/blob/main/contributing.md\n\n[support]: https://github.com/syntax-tree/.github/blob/main/support.md\n\n[coc]: https://github.com/syntax-tree/.github/blob/main/code-of-conduct.md\n\n[xss]: https://en.wikipedia.org/wiki/Cross-site_scripting\n\n[hast]: https://github.com/syntax-tree/hast\n\n[hast-node]: https://github.com/syntax-tree/hast#nodes\n\n[parse5]: https://github.com/inikulin/parse5\n\n[parse5-node]: https://github.com/inikulin/parse5/blob/master/packages/parse5/lib/tree-adapters/default.ts\n\n[hast-util-from-parse5]: https://github.com/syntax-tree/hast-util-from-parse5\n\n[api-to-parse5]: #toparse5tree-options\n\n[api-options]: #options\n\n[api-space]: #space\n","repository":{"type":"git","url":"git+https://github.com/syntax-tree/hast-util-to-parse5.git"},"users":{"flumpus-dev":true},"bugs":{"url":"https://github.com/syntax-tree/hast-util-to-parse5/issues"},"license":"MIT","versions":{"1.0.0":{"name":"hast-util-to-parse5","version":"1.0.0","keywords":["hast","parse5","ast","utility"],"author":{"url":"http://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"hast-util-to-parse5@1.0.0","maintainers":[{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://github.com/wooorm/hast-util-to-parse5#readme","bugs":{"url":"https://github.com/wooorm/hast-util-to-parse5/issues"},"xo":{"rules":{"guard-for-in":"off"},"space":true,"ignores":["hast-util-to-parse5.js","hast-util-to-parse5.min.js"]},"nyc":{"lines":100,"branches":100,"functions":100,"check-coverage":true},"dist":{"shasum":"f875f848f5cd637fae109f1ca14a8878b09e1144","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/hast-util-to-parse5/-/hast-util-to-parse5-1.0.0.tgz","integrity":"sha512-a6deHEcb01q2luAqdv7wUB98ee04HlhWJ6Y4mpVpsRvDPj4VSxICN8njL2ekeqk+0rBx625Yqr6FKoqj4eizBA==","signatures":[{"sig":"MEQCICala01EODgEi75rLbptKidnx6HoLp8q6GYMA+o4SPXZAiAJ89xhzOKgJ0epnkqo/G+EV7cpCUPjxNATHMdtVm2/tQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"f875f848f5cd637fae109f1ca14a8878b09e1144","gitHead":"694bb0dbb1a44d210b52231b84122f350bbda4ed","scripts":{"lint":"xo","test":"npm run build && npm run lint && npm run test-coverage","build":"npm run build-md && npm run build-bundle && npm run build-mangle","build-md":"remark . --quiet --frail","test-api":"node test","build-bundle":"browserify index.js --bare -s hastUtilToParse5 > hast-util-to-parse5.js","build-mangle":"esmangle hast-util-to-parse5.js > hast-util-to-parse5.min.js","test-coverage":"nyc --reporter lcov tape test"},"_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"repository":{"url":"git+https://github.com/wooorm/hast-util-to-parse5.git","type":"git"},"_npmVersion":"3.3.6","description":"Transform HAST to Parse5’s AST","directories":{},"_nodeVersion":"5.0.0","dependencies":{"has":"^1.0.1","mapz":"^1.0.0","xtend":"^4.0.1","zwitch":"^1.0.0","web-namespaces":"^1.0.0","hast-to-hyperscript":"^2.0.3"},"remarkConfig":{"output":true,"plugins":{"lint":null,"usage":null,"github":null,"comment-config":null,"validate-links":null},"settings":{"bullet":"*"}},"devDependencies":{"xo":"^0.16.0","nyc":"^7.0.0","tape":"^4.0.0","parse5":"^2.1.5","esmangle":"^1.0.1","browserify":"^13.0.1","remark-cli":"^1.0.0","remark-lint":"^4.0.0","remark-usage":"^4.0.0","remark-github":"^5.0.0","remark-comment-config":"^4.0.0","remark-validate-links":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hast-util-to-parse5-1.0.0.tgz_1469537587218_0.7031656643375754","host":"packages-12-west.internal.npmjs.com"}},"2.0.0":{"name":"hast-util-to-parse5","version":"2.0.0","keywords":["hast","parse5","ast","utility"],"author":{"url":"http://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"hast-util-to-parse5@2.0.0","maintainers":[{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://github.com/wooorm/hast-util-to-parse5#readme","bugs":{"url":"https://github.com/wooorm/hast-util-to-parse5/issues"},"xo":{"rules":{"guard-for-in":"off"},"space":true,"ignores":["hast-util-to-parse5.js","hast-util-to-parse5.min.js"]},"nyc":{"lines":100,"branches":100,"functions":100,"check-coverage":true},"dist":{"shasum":"e2a87b27ced09afb5c97ee2a5077412bdae5ef79","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/hast-util-to-parse5/-/hast-util-to-parse5-2.0.0.tgz","integrity":"sha512-+h1460wuG+DCMwCGCOuprfclxge7N5j/d6l5Qt0fCrw00SAKz7zdCf7JpjyPI6v/lPgGivgywNqcLOVXOJFB3A==","signatures":[{"sig":"MEUCIQDeEdN8TDXOb2J1ryRusqMW31JDJzlnfkwTuy7Q95UEegIgLNvko29G+WbVGDqPntAllrO9Pq5Z39WjW6RyQzVf5+0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"e2a87b27ced09afb5c97ee2a5077412bdae5ef79","gitHead":"2e36a0186b5f332effb260311194109c1b425d9d","scripts":{"lint":"xo","test":"npm run build && npm run lint && npm run test-coverage","build":"npm run build-md && npm run build-bundle && npm run build-mangle","build-md":"remark . --quiet --frail --output","test-api":"node test","build-bundle":"browserify index.js --bare -s hastUtilToParse5 > hast-util-to-parse5.js","build-mangle":"esmangle hast-util-to-parse5.js > hast-util-to-parse5.min.js","test-coverage":"nyc --reporter lcov tape test"},"_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"repository":{"url":"git+https://github.com/wooorm/hast-util-to-parse5.git","type":"git"},"_npmVersion":"2.14.2","description":"Transform HAST to Parse5’s AST","directories":{},"_nodeVersion":"4.0.0","dependencies":{"has":"^1.0.1","mapz":"^1.0.0","xtend":"^4.0.1","zwitch":"^1.0.0","web-namespaces":"^1.0.0","hast-to-hyperscript":"^2.0.3"},"remarkConfig":{"presets":"wooorm"},"devDependencies":{"xo":"^0.17.0","nyc":"^10.0.0","tape":"^4.0.0","parse5":"^3.0.0","esmangle":"^1.0.1","browserify":"^13.0.1","remark-cli":"^2.1.0","remark-preset-wooorm":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hast-util-to-parse5-2.0.0.tgz_1480953352377_0.5918945169541985","host":"packages-18-east.internal.npmjs.com"}},"2.1.0":{"name":"hast-util-to-parse5","version":"2.1.0","keywords":["hast","parse5","ast","utility"],"author":{"url":"http://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"hast-util-to-parse5@2.1.0","maintainers":[{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://github.com/syntax-tree/hast-util-to-parse5#readme","bugs":{"url":"https://github.com/syntax-tree/hast-util-to-parse5/issues"},"xo":{"rules":{"guard-for-in":"off"},"space":true,"esnext":false,"ignores":["hast-util-to-parse5.js"]},"nyc":{"lines":100,"branches":100,"functions":100,"check-coverage":true},"dist":{"shasum":"cb4a9bf20b56269c8cf012af40b68c8b7e23ec77","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/hast-util-to-parse5/-/hast-util-to-parse5-2.1.0.tgz","integrity":"sha512-dT6fG5U2031pyLMB2sOSJN9+a162l5RpV1F5K1MUPah/8IibFWKPxjyVVfnIn3ncQTQ1gaegNWPw+zOs+gsQ+g==","signatures":[{"sig":"MEUCIH1oBTyOTAxOjE5mxjJceyiu3KU1u6OT0JWgjdvr/4FWAiEA9ZlAsP5VbFHk1Lhkaq/aA7vGu1FeFmq/aG4kx9WEgYw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"cb4a9bf20b56269c8cf012af40b68c8b7e23ec77","gitHead":"184117748985afdc99b46897df20d7105658ccbe","scripts":{"lint":"xo","test":"npm run build && npm run lint && npm run test-coverage","build":"npm run build-md && npm run build-bundle && npm run build-mangle","build-md":"remark . --quiet --frail --output","test-api":"node test","build-bundle":"browserify index.js --bare -s hastUtilToParse5 > hast-util-to-parse5.js","build-mangle":"esmangle hast-util-to-parse5.js > hast-util-to-parse5.min.js","test-coverage":"nyc --reporter lcov tape test"},"_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"repository":{"url":"git+https://github.com/syntax-tree/hast-util-to-parse5.git","type":"git"},"_npmVersion":"2.14.2","description":"Transform HAST to Parse5’s AST","directories":{},"_nodeVersion":"4.0.0","dependencies":{"has":"^1.0.1","mapz":"^1.0.0","xtend":"^4.0.1","zwitch":"^1.0.0","web-namespaces":"^1.0.0","hast-to-hyperscript":"^3.0.0"},"remarkConfig":{"plugins":["preset-wooorm"]},"devDependencies":{"xo":"^0.18.0","nyc":"^10.0.0","tape":"^4.0.0","parse5":"^3.0.0","esmangle":"^1.0.1","browserify":"^14.0.0","remark-cli":"^3.0.0","remark-preset-wooorm":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hast-util-to-parse5-2.1.0.tgz_1494670987620_0.6771233521867543","host":"packages-12-west.internal.npmjs.com"}},"2.2.0":{"name":"hast-util-to-parse5","version":"2.2.0","keywords":["hast","parse5","ast","utility"],"author":{"url":"http://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"hast-util-to-parse5@2.2.0","maintainers":[{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://github.com/syntax-tree/hast-util-to-parse5#readme","bugs":{"url":"https://github.com/syntax-tree/hast-util-to-parse5/issues"},"xo":{"rules":{"guard-for-in":"off"},"space":true,"esnext":false,"ignores":["hast-util-to-parse5.js"]},"nyc":{"lines":100,"branches":100,"functions":100,"check-coverage":true},"dist":{"shasum":"48c8f7f783020c04c3625db06109d02017033cbc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/hast-util-to-parse5/-/hast-util-to-parse5-2.2.0.tgz","integrity":"sha512-Eg1mrf0VTT/PipFN5z1+mVi+4GNhinKk/i/HKeX1h17IYiMdm3G8vgA0FU04XCuD1cWV58f5zziFKcBkr+WuKw==","signatures":[{"sig":"MEYCIQClTYfcM7mD3BteCuDdC3wixeqNkXSkN/jiXpPM7kO/PAIhAKfkAhR6x1dhbWUg+eEjygLMPkqRugwlos126I+UFH4h","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"files":["index.js"],"gitHead":"881a64dccac652a792b0bce52f73d023a1a37676","scripts":{"lint":"xo","test":"npm run build && npm run lint && npm run test-coverage","build":"npm run build-md && npm run build-bundle && npm run build-mangle","build-md":"remark . --quiet --frail --output","test-api":"node test","build-bundle":"browserify index.js --bare -s hastUtilToParse5 > hast-util-to-parse5.js","build-mangle":"esmangle hast-util-to-parse5.js > hast-util-to-parse5.min.js","test-coverage":"nyc --reporter lcov tape test"},"_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"repository":{"url":"git+https://github.com/syntax-tree/hast-util-to-parse5.git","type":"git"},"_npmVersion":"5.0.0","description":"Transform HAST to Parse5’s AST","directories":{},"_nodeVersion":"8.0.0","dependencies":{"mapz":"^1.0.0","xtend":"^4.0.1","zwitch":"^1.0.0","web-namespaces":"^1.0.0","hast-to-hyperscript":"^3.0.0"},"remarkConfig":{"plugins":["preset-wooorm"]},"devDependencies":{"xo":"^0.18.0","nyc":"^11.0.0","tape":"^4.0.0","parse5":"^3.0.0","esmangle":"^1.0.1","browserify":"^14.0.0","remark-cli":"^4.0.0","remark-preset-wooorm":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hast-util-to-parse5-2.2.0.tgz_1500913398813_0.28654744126833975","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"hast-util-to-parse5","version":"3.0.0","keywords":["hast","parse5","ast","utility"],"author":{"url":"http://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"hast-util-to-parse5@3.0.0","maintainers":[{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://github.com/syntax-tree/hast-util-to-parse5#readme","bugs":{"url":"https://github.com/syntax-tree/hast-util-to-parse5/issues"},"xo":{"rules":{"guard-for-in":"off"},"esnext":false,"ignores":["hast-util-to-parse5.js"],"prettier":true},"nyc":{"lines":100,"branches":100,"functions":100,"check-coverage":true},"dist":{"shasum":"6cd97dbbbfe34b81e99526d967fd1caa207cbda4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/hast-util-to-parse5/-/hast-util-to-parse5-3.0.0.tgz","fileCount":4,"integrity":"sha512-S0txFWVmQ0tXzk8CGqxKzgb7L7swWR5ani50j390mnBFkrXtCB4ewSyrya6SKrdnXqcqW+iWEgEnuTUiUiIrLQ==","signatures":[{"sig":"MEQCIDCSEmahjbkzr+ctH3NFmRnuJ2eTLr3CbRkG292dASWAAiBSKUQBEa14cNCZOpIzjzJprE6Qe2XaZJPaJrJN/2QoVQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":9448,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbHkZ0CRA9TVsSAnZWagAAducQAIaMMD3KN4zdHwABGQlU\nQjmNZXVdC8x3jrxPa4+wzdZZfvBzVutbxHsLnZK+QZhT7yI1VXO2rXwdbC5T\nn1dS1oQ8pMcpcAwtIdYdP0gG0rKwUMQ5cSFTAPiBSRcUQPHjxDuv17q9ozap\nMZVXokCLCNEQRhunVe/03rKqsr18NYinAf9zoc1OWpcB5w6j8wE4CnLtx68V\n2zucPd6gwguH3Bj/h3bxIRFqUyJDPVQULxWVnwd5I39J8EjQhvCL9HlFxiXr\ny6q/uu2aQsMhcmel9r3d/C93cxY4CEozec4vey4J1CItTf3OsQvtSpLnsAPT\ngU4Tip5LdWd/P0ghvLFuvCVFRHhBCGdwI0uS/JFTXksr8k2il3JcwDk6xi8c\nRs7a1f62Ixs3dRewgmsdaz+mq2PwvoUTcOI6SER7V5nLpn4jqX1BqWm8ny+y\nRanIl1+r0jMG4VHFGVLRJuL8YtEngW3Q1FaAXfnFso624Jhs7KyPDVaHvxnQ\nsbJDZApYJ+Z39PKEnXSNMGi8PWUx2DB1zgvIQ9aPe3AvEbPnxNNEcHN4iOz6\nEleXg2wRXgptonbkNxVw/f4C/gXusU8zzanas6DuuikVQxdU/+0KwwjA44pC\nMPlyvZj0Xt4eZQwi2MjbeYhorewha9ApGbgZ4fmcW4Q5gVMLxvVidtRGk2DN\nL469\r\n=oy17\r\n-----END PGP SIGNATURE-----\r\n"},"files":["index.js"],"gitHead":"aa79bdf50a79cda91e2afecca4348302c699ba22","scripts":{"test":"npm run format && npm run build && npm run test-coverage","build":"npm run build-bundle && npm run build-mangle","format":"remark . -qfo && prettier --write '**/*.js' && xo --fix","test-api":"node test","build-bundle":"browserify index.js --bare -s hastUtilToParse5 > hast-util-to-parse5.js","build-mangle":"esmangle hast-util-to-parse5.js > hast-util-to-parse5.min.js","test-coverage":"nyc --reporter lcov tape test"},"_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"prettier":{"semi":false,"useTabs":false,"tabWidth":2,"singleQuote":true,"trailingComma":"none","bracketSpacing":false},"repository":{"url":"git+https://github.com/syntax-tree/hast-util-to-parse5.git","type":"git"},"_npmVersion":"6.1.0","description":"Transform HAST to Parse5’s AST","directories":{},"_nodeVersion":"10.0.0","dependencies":{"mapz":"^1.0.0","xtend":"^4.0.1","zwitch":"^1.0.0","web-namespaces":"^1.0.0","hast-to-hyperscript":"^4.0.0"},"remarkConfig":{"plugins":["preset-wooorm"]},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.21.0","nyc":"^12.0.0","tape":"^4.0.0","parse5":"^5.0.0","esmangle":"^1.0.1","prettier":"^1.13.5","browserify":"^16.0.0","remark-cli":"^5.0.0","remark-preset-wooorm":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hast-util-to-parse5_3.0.0_1528710771565_0.6698904819699829","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"hast-util-to-parse5","version":"4.0.0","keywords":["hast","parse5","ast","utility"],"author":{"url":"http://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"hast-util-to-parse5@4.0.0","maintainers":[{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://github.com/syntax-tree/hast-util-to-parse5#readme","bugs":{"url":"https://github.com/syntax-tree/hast-util-to-parse5/issues"},"xo":{"rules":{"guard-for-in":"off"},"esnext":false,"ignores":["hast-util-to-parse5.js"],"prettier":true},"nyc":{"lines":100,"branches":100,"functions":100,"check-coverage":true},"dist":{"shasum":"6cb5c55a1d20a5311794eb50794b0e96310c7441","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/hast-util-to-parse5/-/hast-util-to-parse5-4.0.0.tgz","fileCount":4,"integrity":"sha512-EJbzQVuzG70PWCg+G0l/eIpMM4XqWARn7rOje420FjwMyFsaUPC0XqdRWjlKMXg7OB5yYcaFXUTwz7xoiHY+cQ==","signatures":[{"sig":"MEQCIAy59UuGfNMXaf3y1b3usPXGmUpGIt+TX2KI8U9cZKQPAiBQatORlTe6eAQ2SRe3MXDjyTVc3+lMkDpawHidrNvDQQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8238,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbTjOmCRA9TVsSAnZWagAAKgcP/RjdBEuE6va5jVL4FZvb\n58OXqtNGS5d4B279fWeC/xg6I+xFESZxxsc5W1rGfncsAupf6baYbTsBbrR9\nP0h9SIk1KgKi8ws8IYu6TLISQOeUGiUpqrlwR783mCHhMy1kG85NlZcRX228\n62V8VVmpa1mOXpLvR+sd6tyY5ektlXWg1XJGlJY0zD1/LEeELQD49zZ4jfZ7\nVZNykunV8+EymTPJ4wKbCyHsZX9LwoHKZxKn9ypa44YpMECTzil/RcbnY5+X\nqSL9AZ1GPPojBprZ8Qrud3MmkEXe21GesMUQIh7m43NVFv7YX+mQuOw0CKKi\nvkeqT/SBdZQn41ONWMOnT2BritQtCewvws8ftuvfjrhidyoUmS4hnG55eexd\nyYiSMt4tXmad8P0vUKmKiZKD+F9amPIN7pCd+7XdO2G1akySG5JNb/e448Cz\n/Qlrr2w4aM9SqJ9UxpbQETgzdfgEqGWujebBI+S8Bsq8+gy9KLOGvS3T176P\naNLd5Fi2GHNJ2q2C3vGDNQdFEJLcN5NgREaZuMUoWxYStBbI1f8RKD+piPiZ\n3q9244XxqJrVuHcPmb4Ys0iM0tLg3U6iCK5/L2UQjyDA8/+f545MKvM2qhyp\nm7g/4ZEEPgVMYqFb7hScEsD3z6NChEVTHSbtplV2BBXNc/vkUvfJVVEPc+MY\nJwwx\r\n=UPrU\r\n-----END PGP SIGNATURE-----\r\n"},"files":["index.js"],"gitHead":"1477ff7a7ced0bd4911bba5532b4802c3cd225cf","scripts":{"test":"npm run format && npm run build && npm run test-coverage","build":"npm run build-bundle && npm run build-mangle","format":"remark . -qfo && prettier --write '**/*.js' && xo --fix","test-api":"node test","build-bundle":"browserify index.js -s hastUtilToParse5 > hast-util-to-parse5.js","build-mangle":"browserify index.js -p tinyify -s hastUtilToParse5 > hast-util-to-parse5.min.js","test-coverage":"nyc --reporter lcov tape test"},"_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"prettier":{"semi":false,"useTabs":false,"tabWidth":2,"singleQuote":true,"trailingComma":"none","bracketSpacing":false},"repository":{"url":"git+https://github.com/syntax-tree/hast-util-to-parse5.git","type":"git"},"_npmVersion":"6.2.0","description":"Transform HAST to Parse5’s AST","directories":{},"_nodeVersion":"10.0.0","dependencies":{"xtend":"^4.0.1","zwitch":"^1.0.0","web-namespaces":"^1.0.0","hast-to-hyperscript":"^5.0.0","property-information":"^4.0.0"},"remarkConfig":{"plugins":["preset-wooorm"]},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.21.0","nyc":"^12.0.0","tape":"^4.0.0","parse5":"^5.0.0","tinyify":"^2.4.3","prettier":"^1.13.5","browserify":"^16.0.0","remark-cli":"^5.0.0","json-stringify-safe":"^5.0.1","remark-preset-wooorm":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hast-util-to-parse5_4.0.0_1531851686563_0.31286895132742076","host":"s3://npm-registry-packages"}},"4.0.1":{"name":"hast-util-to-parse5","version":"4.0.1","keywords":["hast","parse5","ast","utility"],"author":{"url":"http://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"hast-util-to-parse5@4.0.1","maintainers":[{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://github.com/syntax-tree/hast-util-to-parse5#readme","bugs":{"url":"https://github.com/syntax-tree/hast-util-to-parse5/issues"},"xo":{"rules":{"guard-for-in":"off"},"esnext":false,"ignores":["hast-util-to-parse5.js"],"prettier":true},"nyc":{"lines":100,"branches":100,"functions":100,"check-coverage":true},"dist":{"shasum":"e52534b4bf40dc4e7d0428fcaf6d32bc75c62ee5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/hast-util-to-parse5/-/hast-util-to-parse5-4.0.1.tgz","fileCount":4,"integrity":"sha512-U/61W+fsNfBpCyJBB5Pt3l5ypIfgXqEyW9pyrtxF7XrqDJHzcFrYpnC94d0JDYjvobLpYCzcU9srhMRPEO1YXw==","signatures":[{"sig":"MEUCIQCqZx30PuSizHH9mq5NUxKxY6MCk0BLUZQRO1DpDuZJzQIgcvP4jgqKTLYPSt/RzOQgwkPrcCnpRkELD0jXBNcNAiI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8542,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbTkWRCRA9TVsSAnZWagAAsTIP/RcJjGEa/Wndp3gGDhYA\nn1G4tknPxqikKz1EOXpjC/IORJFUOjvfNF7rUo3pXIgdcVrxjlsluitZUZFg\nxuvZ6p+j9g2sdXIilgUURS1QfcJoBiTlHlWk49HdtG654BJA8ERoVlMcnOH6\n+sG+bdoSCM5VwLoNpZ2sWgFVBJCQndo4KKPkYza1FB6VjgfB/fAi1iZvSl0o\njIf0aBUfTMZBahqKNHtaMrvbq6CL2FIRdwlgxKr7gqDyXJ33C92RP7EM0c7J\nLt6gdHbzLi8GxRRplwLQne/2WpWXO0hWrghbgqv68aeFhbjdcOZCsvegKxjR\nq+Uy+TSViiznIG+8yls34zOyE/tukYTqy3wg1OtK9k25eOtRddsNnn0A2QG5\nNvT4xat2IYOxh3Wnf0EWFxPjTPLW3piOe7Y9GRZPRLJVDTSg/ok5OQZZMuvw\n4f9pCM5FkyOdzfNehoEN5dKZ+Hk1k21yKtoTv+lb27YKnCtoFemw01LBOKAn\n9bg88YRIHJvZpft5aNwR6vbCeIxOO4Jy6F+GyxYG1SAuNoyrt1vc2WYccBWm\n07vjqY41Ew3PKBqc8c4bRpp25/8VfV126eIRDVlade2/ua151f4+wP3NSAQ0\nuqWjda5I7E2kGNtzrs8h6O5MZ7HKDXvc/oL97joeKYwhxgFi9elVY2jWyb0l\nLpR6\r\n=j3lG\r\n-----END PGP SIGNATURE-----\r\n"},"files":["index.js"],"gitHead":"13a8439d1fae4039303ad5cd1ffa0ab61e18391e","scripts":{"test":"npm run format && npm run build && npm run test-coverage","build":"npm run build-bundle && npm run build-mangle","format":"remark . -qfo && prettier --write '**/*.js' && xo --fix","test-api":"node test","build-bundle":"browserify index.js -s hastUtilToParse5 > hast-util-to-parse5.js","build-mangle":"browserify index.js -p tinyify -s hastUtilToParse5 > hast-util-to-parse5.min.js","test-coverage":"nyc --reporter lcov tape test"},"_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"prettier":{"semi":false,"useTabs":false,"tabWidth":2,"singleQuote":true,"trailingComma":"none","bracketSpacing":false},"repository":{"url":"git+https://github.com/syntax-tree/hast-util-to-parse5.git","type":"git"},"_npmVersion":"6.2.0","description":"Transform HAST to Parse5’s AST","directories":{},"_nodeVersion":"10.0.0","dependencies":{"xtend":"^4.0.1","zwitch":"^1.0.0","web-namespaces":"^1.0.0","hast-to-hyperscript":"^5.0.0","property-information":"^4.0.0"},"remarkConfig":{"plugins":["preset-wooorm"]},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.21.0","nyc":"^12.0.0","tape":"^4.0.0","parse5":"^5.0.0","tinyify":"^2.4.3","prettier":"^1.13.5","browserify":"^16.0.0","remark-cli":"^5.0.0","json-stringify-safe":"^5.0.1","remark-preset-wooorm":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hast-util-to-parse5_4.0.1_1531856273494_0.9488844743477689","host":"s3://npm-registry-packages"}},"5.0.0":{"name":"hast-util-to-parse5","version":"5.0.0","keywords":["hast","parse5","ast","utility"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"hast-util-to-parse5@5.0.0","maintainers":[{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://github.com/syntax-tree/hast-util-to-parse5#readme","bugs":{"url":"https://github.com/syntax-tree/hast-util-to-parse5/issues"},"xo":{"rules":{"guard-for-in":"off"},"esnext":false,"ignores":["hast-util-to-parse5.js"],"prettier":true},"nyc":{"lines":100,"branches":100,"functions":100,"check-coverage":true},"dist":{"shasum":"1041df0d57e60210bd3e4b97596397500223399a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/hast-util-to-parse5/-/hast-util-to-parse5-5.0.0.tgz","fileCount":4,"integrity":"sha512-1BG07SLp9RHnAy/A2Fugza5YCo45Ter8csOGbxL7a7f9Rvq9aE64/4hlqc083M8yLLp7J5tYxmiFWYbD0zQJnA==","signatures":[{"sig":"MEUCIFee2CbvFpVVf3ZqpPawFgMo3krorTpsRT0+1ihyEITBAiEAtsoyL5phgol6Fs24FvRRInDF8DYvwsQvsqmeqGHR4Lc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8865,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb4y8+CRA9TVsSAnZWagAAHegP/jYcuVHLTrHuiTu1nvPX\nN1f60oA+spRwg/+fDNzhj1vhcNU2kLX24SBrnkVKBaA6MLOSLwtj772+Ep89\nC/8HPm9kFDa4gj9dUNi+Md/Ws54KrgTJ/6RJjtoaEqiBNKwETqbNyMdj2Oju\nR+2dLbnhiwbrMmzPg4zsZkrMorbfxLWG1KTo8HUbQ2R85WZrcPW9/PKVScb4\nr7pnj0etZrkzpu65zM4u1hH490Ebb73vLhLWSJd5xVg1omsEZgmHhiS4ZiVI\nVQiAW3UxyMHzt2yjPok56+M0na01qabddMyBfChEzax5SZTqvljcsF4zcCla\n6eGDkNlC1T5mzjK2Y9+oMKN6MZBCEeKsR/LaKLtdoEaPgfWrP4TK4rG2GwiK\n4i08mMs+NaTyxvoi6OJKk/w42YRTtVYBv/p8tjotlLUZ1YvWJCsgfXvXoyoL\njv+U61NmlXOWMDzQH018t8BI59J6IFMZDXPsKV5cuATmS62TMZsz6t25flfK\n7joc0OMmlzApYBNq34KsSdfCiE6Qf1udOJcWlh7L6FRXCr4CHvH/a317fM6p\njXnxgJO3Z33D5tRBEBp8YctCOF00cgcg/zZOcqdQukTQVgW/4byxuk/15klC\nWZFegQoW/moGYR/3jATo84/oUbLoD8UO3fmmYOh4QiNc72p2ghP5zHS+HAzi\n0akS\r\n=34c/\r\n-----END PGP SIGNATURE-----\r\n"},"gitHead":"0bdbfb8479aad107f986303de1ad4f0117be2e3e","scripts":{"test":"npm run format && npm run build && npm run test-coverage","build":"npm run build-bundle && npm run build-mangle","format":"remark . -qfo && prettier --write '**/*.js' && xo --fix","test-api":"node test","build-bundle":"browserify . -s hastUtilToParse5 > hast-util-to-parse5.js","build-mangle":"browserify . -s hastUtilToParse5 -p tinyify > hast-util-to-parse5.min.js","test-coverage":"nyc --reporter lcov tape test"},"_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"prettier":{"semi":false,"useTabs":false,"tabWidth":2,"singleQuote":true,"trailingComma":"none","bracketSpacing":false},"repository":{"url":"git+https://github.com/syntax-tree/hast-util-to-parse5.git","type":"git"},"_npmVersion":"6.4.1","description":"Transform HAST to Parse5’s AST","directories":{},"_nodeVersion":"11.0.0","dependencies":{"xtend":"^4.0.1","zwitch":"^1.0.0","web-namespaces":"^1.0.0","hast-to-hyperscript":"^6.0.0","property-information":"^5.0.0"},"remarkConfig":{"plugins":["preset-wooorm"]},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.23.0","nyc":"^13.0.0","tape":"^4.0.0","parse5":"^5.0.0","tinyify":"^2.4.3","prettier":"^1.13.5","browserify":"^16.0.0","remark-cli":"^6.0.0","json-stringify-safe":"^5.0.1","remark-preset-wooorm":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hast-util-to-parse5_5.0.0_1541615421513_0.5697239025036378","host":"s3://npm-registry-packages"}},"5.1.0":{"name":"hast-util-to-parse5","version":"5.1.0","keywords":["hast","parse5","ast","utility"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"hast-util-to-parse5@5.1.0","maintainers":[{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://github.com/syntax-tree/hast-util-to-parse5#readme","bugs":{"url":"https://github.com/syntax-tree/hast-util-to-parse5/issues"},"xo":{"rules":{"guard-for-in":"off"},"esnext":false,"ignores":["hast-util-to-parse5.js"],"prettier":true},"nyc":{"lines":100,"branches":100,"functions":100,"check-coverage":true},"dist":{"shasum":"dfdb467da3f720a0331bd315b5d06d535f1c1ad3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/hast-util-to-parse5/-/hast-util-to-parse5-5.1.0.tgz","fileCount":4,"integrity":"sha512-o08Q+7KNu2mO9060o0TojXOxiZmbU0G+IMDaAahE0vuwr9zSejFRonfnSQLn6pDqSDJyaEkdqtVcwITBIT2jqw==","signatures":[{"sig":"MEYCIQDG1hH8Isz6tDv3y/KQ2/km4lPaeGYwW3JH4h8dDW4OowIhAI3cfzy82gxjcqsqotvLExGCpB3gtivTgbDRw4RcvkJx","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":9008,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcwqwICRA9TVsSAnZWagAAet8P/0S3TEWDJo/1kfa32VbF\nKuYiWg2EY6m0iF+OqS3iOPZBVlWoZA5Bvl9ANoAGfFsEdgeXEAw5sth4UXwQ\nlHg9x0PGm1s5XPsfXX6a3SSWgQ4kVAtnswocWWy4/kO8DM6zJuRcKS4vBzM+\nrmQ4F0MRrPVKppw/Rh8MdmBX6rVtz3V5tMX7i8UOyprVZG065Dw0Vfe+A8xf\n1azD5j38WsZ+2BgcJnX9zANw90SV8zfXCKW5uXfjBfyvRWTofFTqzNFF7wqK\nqGuSDRdMrK0VhQxCp1kHj3F8cCib6nPZhPxiOHswAB6sjmnwpr/EnK3Ul3EE\nKEUNj6aR4Knrlc4ZKgZjRHaKZSnbLrPxrUU9b7GevrYHXMg9/iIpCWGUewTE\nJLnxOqDy6OPRuXQxvZNRRBEELGrswwjqQjgWndS4pW4JUyKU6Im9tgfzYkKi\n6HSKea3WkTRvnUDPSJk9o5z1yx+DeOXsiMdByGNTHHrkCvHmI4A60USspkVF\nlutbShQxGKyFpoD/5K8jRWGbTXtdWFiIH2n3a154Z7jUVTxh5xs4L3luW1IX\nA9CPv6jx6UcbHYPiji/8umEwOS09tCAQdtVedIuorIt48p9qaARy7moIeprF\n2VAqC2fE/oCHDhn+iDrKi8myhRou5Xf+GMVfIRVBGBAfWnkAcpwFkBOvhGzq\nHwKJ\r\n=dq2J\r\n-----END PGP SIGNATURE-----\r\n"},"gitHead":"d1a90057eca4a38986e94c2220b692531d678335","scripts":{"test":"npm run format && npm run build && npm run test-coverage","build":"npm run build-bundle && npm run build-mangle","format":"remark . -qfo && prettier --write '**/*.js' && xo --fix","test-api":"node test","build-bundle":"browserify . -s hastUtilToParse5 > hast-util-to-parse5.js","build-mangle":"browserify . -s hastUtilToParse5 -p tinyify > hast-util-to-parse5.min.js","test-coverage":"nyc --reporter lcov tape test"},"_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"prettier":{"semi":false,"useTabs":false,"tabWidth":2,"singleQuote":true,"trailingComma":"none","bracketSpacing":false},"repository":{"url":"git+https://github.com/syntax-tree/hast-util-to-parse5.git","type":"git"},"_npmVersion":"6.9.0","description":"Transform HAST to Parse5’s AST","directories":{},"_nodeVersion":"11.9.0","dependencies":{"xtend":"^4.0.1","zwitch":"^1.0.0","web-namespaces":"^1.0.0","hast-to-hyperscript":"^7.0.0","property-information":"^5.0.0"},"remarkConfig":{"plugins":["preset-wooorm"]},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.24.0","nyc":"^14.0.0","tape":"^4.0.0","parse5":"^5.0.0","tinyify":"^2.4.3","prettier":"^1.13.5","browserify":"^16.0.0","remark-cli":"^6.0.0","json-stringify-safe":"^5.0.1","remark-preset-wooorm":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hast-util-to-parse5_5.1.0_1556261895931_0.44936037668200757","host":"s3://npm-registry-packages"}},"5.1.1":{"name":"hast-util-to-parse5","version":"5.1.1","keywords":["hast","parse5","ast","utility"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"hast-util-to-parse5@5.1.1","maintainers":[{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://github.com/syntax-tree/hast-util-to-parse5#readme","bugs":{"url":"https://github.com/syntax-tree/hast-util-to-parse5/issues"},"xo":{"rules":{"guard-for-in":"off"},"esnext":false,"ignores":["hast-util-to-parse5.js"],"prettier":true},"nyc":{"lines":100,"branches":100,"functions":100,"check-coverage":true},"dist":{"shasum":"cabf2dbe9ed988a5128fc708457b37cdf535a2e8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/hast-util-to-parse5/-/hast-util-to-parse5-5.1.1.tgz","fileCount":4,"integrity":"sha512-ivCeAd5FCXr7bapJIVsWMnx/EmbjkkW2TU2hd1prq+jGwiaUoK+FcpjyPNwsC5ogzCwWO669tOqIovGeLc/ntg==","signatures":[{"sig":"MEYCIQDVxlqptVc1GyvM+8LWIp/ZFEAfpIqynmVhGQhN6ub6+wIhAKXY0Fcw4bsJtOu/gA5PCqnItod/iaND/crYc2qROBcu","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":9612,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc6mGaCRA9TVsSAnZWagAA1eMP/jt7xs7BI1tyadlnXIwq\nTwXGxBrtb8AYJZBZWJo4PVip+mlzpcs79tVHV6sQPGx91UtqV5/41sYZSco7\ntPGpxa6l7TqeJn/ytMGVJvwqgREp9N6//dTYctJNKVXbn0kvfWGs5LqtAeDI\nPDJJmBGLDtFDM0wMCvUpIebNGai6T5vNBps5O1yOZrNhAqKyhaHHRRG6keWZ\n13Fd2smFtKfhfw1/fJ1cqNYqJRcJkG08JSWbeI5n8o/P8JWfEwXcBeBaxv8/\n9hXEppbaNWpJA1UdMPphzU82AOpPk+kTucxR83NeIa2s/u27cl4hQY+FTFed\n5H8/a3b2jPzR+cKbQrXm45NELORvAkTU3+kfGlrgDEbW/aYJsb51WD9OLgkV\n05c/n3gZ5bVj/7cWNV60PCTDvg6/s+JIhQb4suJ8LSq+JyYaGYmaGJD9mFDG\nA1vowMTlJp28rogBUJ9Dr7iVJfdoaYwXwM4WVcUxr6aBhOO9M5Fi0zi28ZyV\njuSeUkq10ZQCEic4Tlmwbx4BHDowwQfz5hgDUMVIF9+IGpMywMXmu6I0M3Mp\nnJgmX5JujQUx6MzassyhBXT47GUrq5d2ISlYpXpFFfCNDWS3IqG6AxlDQRQI\nj5O+5CFQcYBCOku/62ClRYMeBklWvsQQDSz+HmmUPlTEm3z0aI48rJZnBPBo\nea/h\r\n=BLAn\r\n-----END PGP SIGNATURE-----\r\n"},"gitHead":"06566dda949a85e3ab987b8f7498b320e3266a6d","scripts":{"test":"npm run format && npm run build && npm run test-coverage","build":"npm run build-bundle && npm run build-mangle","format":"remark . -qfo && prettier --write \"**/*.js\" && xo --fix","test-api":"node test","build-bundle":"browserify . -s hastUtilToParse5 > hast-util-to-parse5.js","build-mangle":"browserify . -s hastUtilToParse5 -p tinyify > hast-util-to-parse5.min.js","test-coverage":"nyc --reporter lcov tape test"},"_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"prettier":{"semi":false,"useTabs":false,"tabWidth":2,"singleQuote":true,"trailingComma":"none","bracketSpacing":false},"repository":{"url":"git+https://github.com/syntax-tree/hast-util-to-parse5.git","type":"git"},"_npmVersion":"6.9.0","description":"Transform hast to Parse5’s AST","directories":{},"_nodeVersion":"12.2.0","dependencies":{"xtend":"^4.0.1","zwitch":"^1.0.0","web-namespaces":"^1.0.0","hast-to-hyperscript":"^7.0.0","property-information":"^5.0.0"},"remarkConfig":{"plugins":["preset-wooorm"]},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.24.0","nyc":"^14.0.0","tape":"^4.0.0","parse5":"^5.0.0","tinyify":"^2.0.0","prettier":"^1.0.0","browserify":"^16.0.0","remark-cli":"^6.0.0","json-stringify-safe":"^5.0.0","remark-preset-wooorm":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hast-util-to-parse5_5.1.1_1558864281880_0.4468715288357952","host":"s3://npm-registry-packages"}},"5.1.2":{"name":"hast-util-to-parse5","version":"5.1.2","keywords":["unist","hast","hast-util","util","utility","html","parse5","ast","tree"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"hast-util-to-parse5@5.1.2","maintainers":[{"name":"anonymous","email":"keith@mcknig.ht"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://github.com/syntax-tree/hast-util-to-parse5#readme","bugs":{"url":"https://github.com/syntax-tree/hast-util-to-parse5/issues"},"xo":{"rules":{"guard-for-in":"off","unicorn/prefer-includes":"off"},"esnext":false,"ignores":["hast-util-to-parse5.js"],"prettier":true},"nyc":{"lines":100,"branches":100,"functions":100,"check-coverage":true},"dist":{"shasum":"09d27bee9ba9348ea05a6cfcc44e02f9083969b6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/hast-util-to-parse5/-/hast-util-to-parse5-5.1.2.tgz","fileCount":4,"integrity":"sha512-ZgYLJu9lYknMfsBY0rBV4TJn2xiwF1fXFFjbP6EE7S0s5mS8LIKBVWzhA1MeIs1SWW6GnnE4In6c3kPb+CWhog==","signatures":[{"sig":"MEUCIEZQA9J11McC9uCgVnM4Ey6caz9X7i5IOn6n/Sx4U6jMAiEA2JmwVpym9nsGOfuKrTUGQv2o6x0v19oIZYv2I2UH8Es=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":9999,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeWN8UCRA9TVsSAnZWagAAJS8QAJ5frEyh38ufLItw+P3S\ndF64+9gDoYU4UHrw1b/Jz7AvmwzAeK6h+Zz3Yi9KCOmYZs6iLdVIWYSpye2q\nX1uilClevMY4R2/7IG7bJLW3w1yA/jzxEUk3dmDkdFmRrBg942P7El+4lWA1\nxqEMh9u3m2m230awwTywnkrjTCHs+c+eU0K1f6YsfGjbsi/vTYfQOvS0WPgM\nmxnGKmvf4L6y6ULMylW6lYxyWk5hEKsq9a4VsreU4uQQ2qXwlp1/cs3/AY9u\nlYhobQYNwFh1E0iVeGyclfQ0g6J5lsLm6IXm5GcU9TORmp5suJCLuWo3Vpx3\nTFaMFsc0iOkH/XATl4YPJV/yWyd1Rf/oc3tgBvQsOyDqb5FrSJaa0/7Bsf/O\nAq+u8q4bfOCGULyO4SPiYOUHKPOgbfsh+XkrZft/Ev1LF28MDSjPrjAHMXoB\ncQKpFQA5LG6K24UgjK4J7+ddeJkf19uMP5CKG3ljjAle8lm7X00pfVDPW9KD\n+CIw0qrRsKH0syEo+yq/CauCtmaRhqK9M71O5AbN68ncLhdAnio3R5fAbwE9\nrI/CGMu0UZFC3OVn306r9DBGxK7eb7JyjerScNETrTGkf8Z2/L5lqbB/4Pjw\nmaUo700iyLQHh5dDPlxL5QWScaxiXH2EeomDW5p5RVQykBT9PAMwW5Z3U/z9\n+Rfn\r\n=Tfdb\r\n-----END PGP SIGNATURE-----\r\n"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"10f6ebd293fcb758a52b47961f571cda795deb7c","scripts":{"test":"npm run format && npm run build && npm run test-coverage","build":"npm run build-bundle && npm run build-mangle","format":"remark . -qfo && prettier --write \"**/*.js\" && xo --fix","test-api":"node test","build-bundle":"browserify . -s hastUtilToParse5 > hast-util-to-parse5.js","build-mangle":"browserify . -s hastUtilToParse5 -p tinyify > hast-util-to-parse5.min.js","test-coverage":"nyc --reporter lcov tape test"},"_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"prettier":{"semi":false,"useTabs":false,"tabWidth":2,"singleQuote":true,"trailingComma":"none","bracketSpacing":false},"repository":{"url":"git+https://github.com/syntax-tree/hast-util-to-parse5.git","type":"git"},"_npmVersion":"6.13.7","description":"hast utility to transform hast to Parse5’s AST","directories":{},"_nodeVersion":"13.9.0","dependencies":{"xtend":"^4.0.0","zwitch":"^1.0.0","web-namespaces":"^1.0.0","hast-to-hyperscript":"^7.0.0","property-information":"^5.0.0"},"remarkConfig":{"plugins":["preset-wooorm"]},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.27.0","nyc":"^15.0.0","tape":"^4.0.0","parse5":"^5.0.0","tinyify":"^2.0.0","prettier":"^1.0.0","browserify":"^16.0.0","remark-cli":"^7.0.0","json-stringify-safe":"^5.0.0","remark-preset-wooorm":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hast-util-to-parse5_5.1.2_1582882580277_0.6822761411689657","host":"s3://npm-registry-packages"}},"6.0.0":{"name":"hast-util-to-parse5","version":"6.0.0","keywords":["unist","hast","hast-util","util","utility","html","parse5","ast","tree"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"hast-util-to-parse5@6.0.0","maintainers":[{"name":"anonymous","email":"keith@mcknig.ht"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://github.com/syntax-tree/hast-util-to-parse5#readme","bugs":{"url":"https://github.com/syntax-tree/hast-util-to-parse5/issues"},"xo":{"rules":{"guard-for-in":"off","unicorn/prefer-includes":"off"},"esnext":false,"ignores":["hast-util-to-parse5.js"],"prettier":true},"nyc":{"lines":100,"branches":100,"functions":100,"check-coverage":true},"dist":{"shasum":"1ec44650b631d72952066cea9b1445df699f8479","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/hast-util-to-parse5/-/hast-util-to-parse5-6.0.0.tgz","fileCount":4,"integrity":"sha512-Lu5m6Lgm/fWuz8eWnrKezHtVY83JeRGaNQ2kn9aJgqaxvVkFCZQBEhgodZUDUvoodgyROHDb3r5IxAEdl6suJQ==","signatures":[{"sig":"MEYCIQDzvbP3HTmo+4NThfO5SO/kGxfkGlw5Da687/gbVm0K9QIhAP6aEtPaClF2V1lQqeMlrT/HLB1NQtsK5EgBdBVDGcBC","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":10676,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe6OfLCRA9TVsSAnZWagAAMSMP/iqmUEg3tA454FZc1t6G\nPXlB5YGigDLmxbubMDSiAgo1kP/+M5c6tNvXRbpg0Oq72QFhQf74cDze7B/q\nk6Iz1943FEC7e7dtYxf5kAPRnPMpXr13duvhqg5dNXBZuZNhPr2DbPSJ7OzU\nn0vl4vYcgLfg+QZvxmPoE8ryIGFkMqZj+sw/vket6ZPhxbMNOR3oOEtHbnkS\n90rZXeBOVyC1Y5QVjDJdsUUjgTUnn0N7sgB5TNT7doLEikAA62cyaYG/iK+C\neBoK6o/DNmzVhm32AmgvhYBfeH+Yjsfe+LmdGYGxVSDPramE+NGrIEqhmftB\nYadjQpMiZcDnt4WEAdOGI2Ef4pVQHgNS+DpLyWAMwJ8EemDfS1NcNRYUhZJc\nTMLnJ4uhBgPvHmYosmpKaYxbjHghi0An2vp50wq8kmvDIMY3nn+9cHL4rEWK\nGKrNnqgJT2dzfn9BfuiUG8uYaskKTtYFd4rDnDmh9yfk/UG6ehzbDN/moeD7\nFx0jlK9hFRA+rXxO+rdPVoOrN9LyaVC3TUH2X8ZbTgLoE6il8lFQKUPdbyEP\nF5Wg4V2hth++tjoGY3rtTu4jDpAPVbWq6IXnsaH8TTeesjB+OWvjMprZ1Vzq\nnQrZi8+TWF9DF47bSR526MTe6ZntrnFXztAi/FzgQC8FYMTHVBaQ1POHByjT\n+OdC\r\n=+JLD\r\n-----END PGP SIGNATURE-----\r\n"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"87f3888613909e848e1b4683ebc426871c2219c1","scripts":{"test":"npm run format && npm run build && npm run test-coverage","build":"npm run build-bundle && npm run build-mangle","format":"remark . -qfo && prettier . --write && xo --fix","test-api":"node test","build-bundle":"browserify . -s hastUtilToParse5 > hast-util-to-parse5.js","build-mangle":"browserify . -s hastUtilToParse5 -p tinyify > hast-util-to-parse5.min.js","test-coverage":"nyc --reporter lcov tape test"},"_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"prettier":{"semi":false,"useTabs":false,"tabWidth":2,"singleQuote":true,"trailingComma":"none","bracketSpacing":false},"repository":{"url":"git+https://github.com/syntax-tree/hast-util-to-parse5.git","type":"git"},"_npmVersion":"6.14.5","description":"hast utility to transform hast to Parse5’s AST","directories":{},"_nodeVersion":"14.0.0","dependencies":{"xtend":"^4.0.0","zwitch":"^1.0.0","web-namespaces":"^1.0.0","hast-to-hyperscript":"^9.0.0","property-information":"^5.0.0"},"remarkConfig":{"plugins":["preset-wooorm"]},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.32.0","nyc":"^15.0.0","tape":"^5.0.0","parse5":"^6.0.0","tinyify":"^2.0.0","prettier":"^2.0.0","browserify":"^16.0.0","remark-cli":"^8.0.0","json-stringify-safe":"^5.0.0","remark-preset-wooorm":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hast-util-to-parse5_6.0.0_1592321995298_0.4275297873809343","host":"s3://npm-registry-packages"}},"7.0.0":{"name":"hast-util-to-parse5","version":"7.0.0","keywords":["unist","hast","hast-util","util","utility","html","parse5","ast","tree"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"hast-util-to-parse5@7.0.0","maintainers":[{"name":"anonymous","email":"tituswormer@gmail.com"},{"name":"anonymous","email":"keith@mcknig.ht"}],"contributors":[{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://github.com/syntax-tree/hast-util-to-parse5#readme","bugs":{"url":"https://github.com/syntax-tree/hast-util-to-parse5/issues"},"xo":{"rules":{"no-var":"off","prefer-arrow-callback":"off"},"prettier":true},"dist":{"shasum":"a39808e69005d10afeed1866029a1fb137df3f7c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/hast-util-to-parse5/-/hast-util-to-parse5-7.0.0.tgz","fileCount":7,"integrity":"sha512-YHiS6aTaZ3N0Q3nxaY/Tj98D6kM8QX5Q8xqgg8G45zR7PvWnPGPP0vcKCgb/moIydEJ/QWczVrX0JODCVeoV7A==","signatures":[{"sig":"MEYCIQCvidwIg40xVIiBbURML9BXdkHcFFz/Yf9IyAF5Y/F0UgIhAKoseSXjKk7Fewaj6GckFIHXbc8xSgTNJJN+aEETbB7R","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15011,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgjl21CRA9TVsSAnZWagAA3zEP/0KnGq1GQrBxKdcq/52o\nInzpOrsl4wcXmDbzk+vy+vm1aSMnKQ9cSKnjqNdX75vL9XDCX9U35ccMwcMU\nzWYzf9DNeU70Nl5B3vzS2G0qBcOdAeJkm+kHzrG1T6H4yk78jCm3b5/JACKu\nXcXiiflb92WoGEWMfsuz0uHrGZ6t+5kd7SiytVcCxTJiZ/0Vy7xERWrdyJgr\nXyDjsNmnAKw9hpI0y1WnwiXHSXVT/Jm49PE4C43TeS721cYbm03jDz8rapqD\nSz5ZYOIuDDHINzT1CEHgA0/geDgjsrcEBCsZ+Aa5K+dUP/J4Q79AWxVIH/+6\nt3rE/+CKUO1LjFoDSzo0xjUJar1mqy8XGrE6RMnP08IFvYynwTueuK32kHqV\n05W5dfdFIn/lST/Gb05B+Ya0XeiEcgfALR8loL12FBG0Te+gEXMMjdsIG5rA\n18RieWXTR2I0jRQBAboAMk3MdhivNd0fSIZGHoRPEfq22+VovWNUkxXB+bZH\nOIZULyM0s5lbxn1b1wIRtOYXSVQL63ua7VHpAV6ukFIN5cUfP1TaNbskybKZ\n9Cde2DKmdRDMqoMkdQTbLyKfLDYMYck88T/rAhQYPPjVrwYpMyvwsVdl+C4f\nXnZCCK19ryuPzzOBzOycpJgHJM2up26hYM7RT9b2xPMQLdKHW8GOWrf979zQ\nlxL8\r\n=hCiT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","type":"module","types":"index.d.ts","funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"d0b76f416c2be2e9d8ce6de48620dc5fbe06d8a4","scripts":{"test":"npm run build && npm run format && npm run test-coverage","build":"rimraf \"{test/**,lib/**,}*.d.ts\" && tsc && type-coverage","format":"remark . -qfo && prettier . -w --loglevel warn && xo --fix","prepack":"npm run build && npm run format","test-api":"node test/index.js","test-coverage":"c8 --check-coverage --branches 100 --functions 100 --lines 100 --statements 100 --reporter lcov node test/index.js"},"_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"prettier":{"semi":false,"useTabs":false,"tabWidth":2,"singleQuote":true,"trailingComma":"none","bracketSpacing":false},"repository":{"url":"git+https://github.com/syntax-tree/hast-util-to-parse5.git","type":"git"},"_npmVersion":"7.11.1","description":"hast utility to transform hast to Parse5’s AST","directories":{},"sideEffects":false,"_nodeVersion":"15.11.0","dependencies":{"zwitch":"^2.0.0","@types/hast":"^2.0.0","@types/parse5":"^6.0.0","web-namespaces":"^2.0.0","hast-to-hyperscript":"^10.0.0","property-information":"^6.0.0"},"remarkConfig":{"plugins":["preset-wooorm"]},"typeCoverage":{"detail":true,"strict":true,"atLeast":100},"_hasShrinkwrap":false,"devDependencies":{"c8":"^7.0.0","xo":"^0.39.0","tape":"^5.0.0","parse5":"^6.0.0","rimraf":"^3.0.0","prettier":"^2.0.0","remark-cli":"^9.0.0","typescript":"^4.0.0","@types/tape":"^4.0.0","type-coverage":"^2.0.0","json-stringify-safe":"^5.0.0","remark-preset-wooorm":"^8.0.0","@types/json-stringify-safe":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hast-util-to-parse5_7.0.0_1619942836743_0.25302338523254386","host":"s3://npm-registry-packages"}},"7.1.0":{"name":"hast-util-to-parse5","version":"7.1.0","keywords":["unist","hast","hast-util","util","utility","html","parse5","ast","tree"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"hast-util-to-parse5@7.1.0","maintainers":[{"name":"anonymous","email":"tituswormer@gmail.com"},{"name":"anonymous","email":"keith@mcknig.ht"}],"contributors":[{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://github.com/syntax-tree/hast-util-to-parse5#readme","bugs":{"url":"https://github.com/syntax-tree/hast-util-to-parse5/issues"},"xo":{"prettier":true},"dist":{"shasum":"c49391bf8f151973e0c9adcd116b561e8daf29f3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/hast-util-to-parse5/-/hast-util-to-parse5-7.1.0.tgz","fileCount":7,"integrity":"sha512-YNRgAJkH2Jky5ySkIqFXTQiaqcAtJyVE+D5lkN6CdtOqrnkLfGYYrEcKuHOJZlp+MwjSwuD3fZuawI+sic/RBw==","signatures":[{"sig":"MEUCIQCtRHcUcAEV9wIVBr62rVJH8uJxJ6hvt2tJimSeuaqW7wIgEAcuzR0uvs3ZFijvLuY99iTshOgKT/PONMlAROkPbf0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19366,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjxAaUACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoL2g/9EDTbPo1iZDIbuoK6Jq5ho1DSWuxqOGbpTFuGtMt9tAdzjBUh\r\nVB9g513zPevBYJ9rTFMML8cDfHJM6P8DTu55ScgqvBQUd3mDm1SRq7Ap1/PZ\r\n/11XzNn2VyFeKwpkANqGQ2vCXghgjxRDyZtQYqTLndjwj3e8N+7c33JU8yjQ\r\nyTkAio/RNLLzz6ewAyoa/3mgjYok6pa8zKE0lJAfmfx1LOORulvR9tcrD021\r\n9i4tvsg/5yy0yHosnufwR3HmHnyDpDrw8LPD/pVGmBghb0vDGSKCxAcqPLSy\r\njn4Hs9SwNXGjg7qmiEpdYy2CuZiQU7JgYhMq3Li6vPoFA1pQzpUPIv0VNjLV\r\nmYPcm3AxmDuO3wIjNdnY9nkBP8wYQdAQCvrCNXAzSfAHAjSwv+ZKPXqMx8oV\r\nFkvdPy4ngMbWyXeN8hr2xsFhmrPd628fr8dUvzI/Mh15OU3q4M/XgL1ovNn7\r\nIeNrok05EmZ68Jz4js2N+YC5Oxnoa+Y8XM38ixTv7Ltcip9VlUKvxXtlaUlQ\r\n4UQu/iE7C8Vk3MHWgV3owrkGAenquZ7n2Tm73vJsBmfVGKVEEy+TIZ1KA9FD\r\nngwk3JYhvrrw2OSoeNutyI2H4rbKOqQNmOtIlNcPzuqJ0J6iruup+S3CFuu8\r\nYm7EA+zcSPc4mcQ0sz2cnkaxk2PAfQO19qI=\r\n=j2Ts\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","type":"module","types":"index.d.ts","funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"1b072cccee39527065c2d0ef83702984cfe2f858","scripts":{"test":"npm run build && npm run format && npm run test-coverage","build":"tsc --build --clean && tsc --build && type-coverage","format":"remark . -qfo && prettier . -w --loglevel warn && xo --fix","prepack":"npm run build && npm run format","test-api":"node --conditions development test.js","test-coverage":"c8 --check-coverage --100 --reporter lcov npm run test-api"},"_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"prettier":{"semi":false,"useTabs":false,"tabWidth":2,"singleQuote":true,"trailingComma":"none","bracketSpacing":false},"repository":{"url":"git+https://github.com/syntax-tree/hast-util-to-parse5.git","type":"git"},"_npmVersion":"9.2.0","description":"hast utility to transform hast to Parse5’s AST","directories":{},"sideEffects":false,"_nodeVersion":"19.3.0","dependencies":{"zwitch":"^2.0.0","@types/hast":"^2.0.0","web-namespaces":"^2.0.0","property-information":"^6.0.0","comma-separated-tokens":"^2.0.0","space-separated-tokens":"^2.0.0"},"remarkConfig":{"plugins":["preset-wooorm"]},"typeCoverage":{"detail":true,"strict":true,"atLeast":100},"_hasShrinkwrap":false,"devDependencies":{"c8":"^7.0.0","xo":"^0.53.0","parse5":"^7.0.0","prettier":"^2.0.0","remark-cli":"^11.0.0","typescript":"^4.0.0","@types/node":"^18.0.0","type-coverage":"^2.0.0","json-stringify-safe":"^5.0.0","remark-preset-wooorm":"^9.0.0","@types/json-stringify-safe":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hast-util-to-parse5_7.1.0_1673791124157_0.9327891976164036","host":"s3://npm-registry-packages"}},"8.0.0":{"name":"hast-util-to-parse5","version":"8.0.0","keywords":["unist","hast","hast-util","util","utility","html","parse5","ast","tree"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"hast-util-to-parse5@8.0.0","maintainers":[{"name":"anonymous","email":"tituswormer@gmail.com"},{"name":"anonymous","email":"keith@mcknig.ht"}],"contributors":[{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://github.com/syntax-tree/hast-util-to-parse5#readme","bugs":{"url":"https://github.com/syntax-tree/hast-util-to-parse5/issues"},"xo":{"prettier":true},"dist":{"shasum":"477cd42d278d4f036bc2ea58586130f6f39ee6ed","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/hast-util-to-parse5/-/hast-util-to-parse5-8.0.0.tgz","fileCount":7,"integrity":"sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw==","signatures":[{"sig":"MEUCIQDc7nmpMCHCo5/k+O9jK2FDUDopnzLZX8Jvvxuv+t22GwIgQ6A9di2JrOspzHdtCc3MQsCxhx/PzFrKyRvSMW9ACLk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":20057},"type":"module","types":"./index.d.ts","exports":"./index.js","funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"b92b23d91ce311ac5d81c0eaee94865387e6dcc5","scripts":{"test":"npm run build && npm run format && npm run test-coverage","build":"tsc --build --clean && tsc --build && type-coverage","format":"remark . -qfo && prettier . -w --log-level warn && xo --fix","prepack":"npm run build && npm run format","test-api":"node --conditions development test.js","test-coverage":"c8 --100 --reporter lcov npm run test-api"},"_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"prettier":{"semi":false,"useTabs":false,"tabWidth":2,"singleQuote":true,"trailingComma":"none","bracketSpacing":false},"repository":{"url":"git+https://github.com/syntax-tree/hast-util-to-parse5.git","type":"git"},"_npmVersion":"9.7.2","description":"hast utility to transform to a `parse5` AST","directories":{},"sideEffects":false,"_nodeVersion":"20.0.0","dependencies":{"devlop":"^1.0.0","zwitch":"^2.0.0","@types/hast":"^3.0.0","web-namespaces":"^2.0.0","property-information":"^6.0.0","comma-separated-tokens":"^2.0.0","space-separated-tokens":"^2.0.0"},"remarkConfig":{"plugins":["remark-preset-wooorm"]},"typeCoverage":{"detail":true,"strict":true,"atLeast":100,"ignoreCatch":true},"_hasShrinkwrap":false,"devDependencies":{"c8":"^8.0.0","xo":"^0.55.0","parse5":"^7.0.0","prettier":"^3.0.0","remark-cli":"^11.0.0","typescript":"^5.0.0","@types/node":"^20.0.0","type-coverage":"^2.0.0","json-stringify-safe":"^5.0.0","remark-preset-wooorm":"^9.0.0","@types/json-stringify-safe":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hast-util-to-parse5_8.0.0_1690804649320_0.2619468042756725","host":"s3://npm-registry-packages"}},"8.0.1":{"name":"hast-util-to-parse5","version":"8.0.1","description":"hast utility to transform to a `parse5` AST","license":"MIT","keywords":["unist","hast","hast-util","util","utility","html","parse5","ast","tree"],"repository":{"type":"git","url":"git+https://github.com/syntax-tree/hast-util-to-parse5.git"},"bugs":{"url":"https://github.com/syntax-tree/hast-util-to-parse5/issues"},"funding":{"type":"opencollective","url":"https://opencollective.com/unified"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"}],"sideEffects":false,"type":"module","exports":"./index.js","dependencies":{"@types/hast":"^3.0.0","comma-separated-tokens":"^2.0.0","devlop":"^1.0.0","property-information":"^7.0.0","space-separated-tokens":"^2.0.0","web-namespaces":"^2.0.0","zwitch":"^2.0.0"},"devDependencies":{"@types/json-stringify-safe":"^5.0.0","@types/node":"^24.0.0","c8":"^10.0.0","json-stringify-safe":"^5.0.0","parse5":"^8.0.0","prettier":"^3.0.0","remark-cli":"^12.0.0","remark-preset-wooorm":"^10.0.0","type-coverage":"^2.0.0","typescript":"^5.0.0","xo":"^0.55.0"},"scripts":{"prepack":"npm run build && npm run format","build":"tsc --build --clean && tsc --build && type-coverage","format":"remark . -qfo && prettier . -w --log-level warn && xo --fix","test-api":"node --conditions development test.js","test-coverage":"c8 --100 --reporter lcov npm run test-api","test":"npm run build && npm run format && npm run test-coverage"},"prettier":{"bracketSpacing":false,"semi":false,"singleQuote":true,"tabWidth":2,"trailingComma":"none","useTabs":false},"remarkConfig":{"plugins":["remark-preset-wooorm"]},"typeCoverage":{"atLeast":100,"detail":true,"ignoreCatch":true,"strict":true},"xo":{"prettier":true},"gitHead":"cba581a04ae64a103c53cf651db790cf495ba4d4","types":"./index.d.ts","_id":"hast-util-to-parse5@8.0.1","homepage":"https://github.com/syntax-tree/hast-util-to-parse5#readme","_nodeVersion":"23.9.0","_npmVersion":"11.6.2","dist":{"integrity":"sha512-MlWT6Pjt4CG9lFCjiz4BH7l9wmrMkfkJYCxFwKQic8+RTZgWPuWxwAfjJElsXkex7DJjfSJsQIt931ilUgmwdA==","shasum":"95aa391cc0514b4951418d01c883d1038af42f5d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/hast-util-to-parse5/-/hast-util-to-parse5-8.0.1.tgz","fileCount":9,"unpackedSize":20064,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEYCIQDjd1d89D7ZYulQaWgdNyn6teEeheYhVATwNccvfZfCLAIhANo/mu94nAo89hnBM++5dUqk3ULdlDAVW3bf/wqRgLMt"}]},"_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"tituswormer@gmail.com"},{"name":"anonymous","email":"keith@mcknig.ht"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/hast-util-to-parse5_8.0.1_1764866070771_0.2638334038650325"},"_hasShrinkwrap":false}},"name":"hast-util-to-parse5","time":{"created":"2016-07-26T12:53:08.972Z","modified":"2025-12-04T16:34:31.218Z","1.0.0":"2016-07-26T12:53:08.972Z","2.0.0":"2016-12-05T15:55:53.043Z","2.1.0":"2017-05-13T10:23:09.516Z","2.2.0":"2017-07-24T16:23:19.733Z","3.0.0":"2018-06-11T09:52:51.678Z","4.0.0":"2018-07-17T18:21:26.633Z","4.0.1":"2018-07-17T19:37:53.594Z","5.0.0":"2018-11-07T18:30:21.613Z","5.1.0":"2019-04-26T06:58:16.101Z","5.1.1":"2019-05-26T09:51:22.049Z","5.1.2":"2020-02-28T09:36:20.422Z","6.0.0":"2020-06-16T15:39:55.417Z","7.0.0":"2021-05-02T08:07:16.873Z","7.1.0":"2023-01-15T13:58:44.323Z","8.0.0":"2023-07-31T11:57:29.471Z","8.0.1":"2025-12-04T16:34:30.916Z"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"}],"readmeFilename":"readme.md","homepage":"https://github.com/syntax-tree/hast-util-to-parse5#readme"}