{"maintainers":[{"name":"anonymous","email":"tituswormer@gmail.com"},{"name":"anonymous","email":"keith@mcknig.ht"}],"keywords":["ast","change","hast-util","hast","transform","unist","utility","util"],"dist-tags":{"latest":"8.0.3"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},"description":"hast utility to transform from a `parse5` AST","readme":"# hast-util-from-parse5\n\n[![Build][badge-build-image]][badge-build-url]\n[![Coverage][badge-coverage-image]][badge-coverage-url]\n[![Downloads][badge-downloads-image]][badge-downloads-url]\n[![Size][badge-size-image]][badge-size-url]\n\n[hast][github-hast] utility to transform from the\n[`parse5`][github-parse5] AST.\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  * [`fromParse5(tree[, options])`](#fromparse5tree-options)\n  * [`Options`](#options)\n  * [`Space`](#space-1)\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 parse5 tree into a hast tree.\n\n## When should I use this?\n\nYou can use this package when using `parse5` as an HTML parser and wanting to\nwork with hast.\n\nThe utility [`hast-util-to-parse5`][github-hast-util-to-parse5] does the\ninverse of this utility.\nIt generates `parse5`s AST again.\n\nThe utility [`hast-util-from-html`][github-hast-util-from-html] wraps this\nutility and `parse5` to both parse HTML and generate hast from it.\n\n## Install\n\nThis package is [ESM only][github-gist-esm].\nIn Node.js (version 16+),\ninstall with [npm][npmjs-install]:\n\n```sh\nnpm install hast-util-from-parse5\n```\n\nIn Deno with [`esm.sh`][esmsh]:\n\n```js\nimport {fromParse5} from \"https://esm.sh/hast-util-from-parse5@8\"\n```\n\nIn browsers with [`esm.sh`][esmsh]:\n\n```html\n<script type=\"module\">\n  import {fromParse5} from \"https://esm.sh/hast-util-from-parse5@8?bundle\"\n</script>\n```\n\n## Use\n\nSay our document `example.html` contains:\n\n```html\n<!doctype html><title>Hello!</title><h1 id=\"world\">World!<!--after-->\n```\n\n…and our module `example.js` looks as follows:\n\n```js\nimport {fromParse5} from 'hast-util-from-parse5'\nimport {parse} from 'parse5'\nimport {read} from 'to-vfile'\nimport {inspect} from 'unist-util-inspect'\n\nconst file = await read('example.html')\nconst p5ast = parse(String(file), {sourceCodeLocationInfo: true})\nconst hast = fromParse5(p5ast, {file})\n\nconsole.log(inspect(hast))\n```\n\n…now running `node example.js` yields:\n\n```text\nroot[2] (1:1-2:1, 0-70)\n│ data: {\"quirksMode\":false}\n├─0 doctype (1:1-1:16, 0-15)\n└─1 element<html>[2]\n    │ properties: {}\n    ├─0 element<head>[1]\n    │   │ properties: {}\n    │   └─0 element<title>[1] (1:16-1:37, 15-36)\n    │       │ properties: {}\n    │       └─0 text \"Hello!\" (1:23-1:29, 22-28)\n    └─1 element<body>[1]\n        │ properties: {}\n        └─0 element<h1>[3] (1:37-2:1, 36-70)\n            │ properties: {\"id\":\"world\"}\n            ├─0 text \"World!\" (1:52-1:58, 51-57)\n            ├─1 comment \"after\" (1:58-1:70, 57-69)\n            └─2 text \"\\n\" (1:70-2:1, 69-70)\n```\n\n## API\n\nThis package exports the identifier [`fromParse5`][api-from-parse5].\nThere is no default export.\n\n### `fromParse5(tree[, options])`\n\nTransform a `parse5` AST to hast.\n\n###### Parameters\n\n* `tree`\n  ([`Parse5Node`][github-parse5-node])\n  — `parse5` tree to transform\n* `options`\n  ([`Options`][api-options], optional)\n  — configuration\n\n###### Returns\n\nhast tree ([`HastNode`][github-hast-nodes]).\n\n### `Options`\n\nConfiguration (TypeScript type).\n\n##### Fields\n\n###### `file`\n\nFile used to add positional info to nodes\n([`VFile`][github-vfile], optional).\n\nIf given,\nthe file should represent the original HTML source.\n\n###### `space`\n\nWhich space the document is in\n([`Space`][api-space], default: `'html'`).\n\nWhen an `<svg>` element is found in the HTML space,\nthis package already automatically switches to and from the SVG space when\nentering and exiting it.\n\n###### `verbose`\n\nWhether to add extra positional info about starting tags,\nclosing tags,\nand attributes to elements\n(`boolean`, default: `false`).\n\n> 👉 **Note**:\n> only used when `file` is given.\n\nFor the following HTML:\n\n```html\n<img src=\"http://example.com/fav.ico\" alt=\"foo\" title=\"bar\">\n```\n\nThe verbose info would looks as follows:\n\n```js\n{\n  type: 'element',\n  tagName: 'img',\n  properties: {src: 'http://example.com/fav.ico', alt: 'foo', title: 'bar'},\n  children: [],\n  data: {\n    position: {\n      opening: {\n        start: {line: 1, column: 1, offset: 0},\n        end: {line: 1, column: 61, offset: 60}\n      },\n      closing: null,\n      properties: {\n        src: {\n          start: {line: 1, column: 6, offset: 5},\n          end: {line: 1, column: 38, offset: 37}\n        },\n        alt: {\n          start: {line: 1, column: 39, offset: 38},\n          end: {line: 1, column: 48, offset: 47}\n        },\n        title: {\n          start: {line: 1, column: 49, offset: 48},\n          end: {line: 1, column: 60, offset: 59}\n        }\n      }\n    }\n  },\n  position: {\n    start: {line: 1, column: 1, offset: 0},\n    end: {line: 1, column: 61, offset: 60}\n  }\n}\n```\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,\nwe drop support for unmaintained versions of Node.\nThis means we try to keep the current release line,\n`hast-util-from-parse5@8`,\ncompatible with Node.js 16.\n\n## Security\n\nUse of `hast-util-from-parse5` can open you up to a\n[cross-site scripting (XSS)][wikipedia-xss] attack if Parse5’s AST is unsafe.\n\n## Related\n\n* [`hast-util-to-parse5`][github-hast-util-to-parse5]\n  — transform hast to Parse5’s AST\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`][health-contributing]\nin\n[`syntax-tree/.github`][health]\nfor ways to get started.\nSee [`support.md`][health-support] for ways to get help.\n\nThis project has a [code of conduct][health-coc].\nBy interacting with this repository,\norganization,\nor community you agree to abide by its terms.\n\n## License\n\n[MIT][file-license] © [Titus Wormer][wooorm]\n\n<!-- Definitions -->\n\n[api-from-parse5]: #fromparse5tree-options\n\n[api-options]: #options\n\n[api-space]: #space-1\n\n[badge-build-image]: https://github.com/syntax-tree/hast-util-from-parse5/workflows/main/badge.svg\n\n[badge-build-url]: https://github.com/syntax-tree/hast-util-from-parse5/actions\n\n[badge-coverage-image]: https://img.shields.io/codecov/c/github/syntax-tree/hast-util-from-parse5.svg\n\n[badge-coverage-url]: https://codecov.io/github/syntax-tree/hast-util-from-parse5\n\n[badge-downloads-image]: https://img.shields.io/npm/dm/hast-util-from-parse5.svg\n\n[badge-downloads-url]: https://www.npmjs.com/package/hast-util-from-parse5\n\n[badge-size-image]: https://img.shields.io/bundlejs/size/hast-util-from-parse5\n\n[badge-size-url]: https://bundlejs.com/?q=hast-util-from-parse5\n\n[esmsh]: https://esm.sh\n\n[file-license]: license\n\n[github-gist-esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c\n\n[github-hast]: https://github.com/syntax-tree/hast\n\n[github-hast-nodes]: https://github.com/syntax-tree/hast#nodes\n\n[github-hast-util-from-html]: https://github.com/syntax-tree/hast-util-from-html\n\n[github-hast-util-to-parse5]: https://github.com/syntax-tree/hast-util-to-parse5\n\n[github-parse5]: https://github.com/inikulin/parse5\n\n[github-parse5-node]: https://github.com/inikulin/parse5/blob/master/packages/parse5/lib/tree-adapters/default.ts\n\n[github-vfile]: https://github.com/vfile/vfile\n\n[health]: https://github.com/syntax-tree/.github\n\n[health-coc]: https://github.com/syntax-tree/.github/blob/main/code-of-conduct.md\n\n[health-contributing]: https://github.com/syntax-tree/.github/blob/main/contributing.md\n\n[health-support]: https://github.com/syntax-tree/.github/blob/main/support.md\n\n[npmjs-install]: https://docs.npmjs.com/cli/install\n\n[typescript]: https://www.typescriptlang.org\n\n[wikipedia-xss]: https://en.wikipedia.org/wiki/Cross-site_scripting\n\n[wooorm]: https://wooorm.com\n","repository":{"type":"git","url":"git+https://github.com/syntax-tree/hast-util-from-parse5.git"},"users":{"flumpus-dev":true},"bugs":{"url":"https://github.com/syntax-tree/hast-util-from-parse5/issues"},"license":"MIT","versions":{"1.0.0":{"name":"hast-util-from-parse5","version":"1.0.0","keywords":["parse5","ast","hast","utility"],"author":{"url":"http://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"hast-util-from-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-from-parse5#readme","bugs":{"url":"https://github.com/wooorm/hast-util-from-parse5/issues"},"xo":{"rules":{"guard-for-in":"off"},"space":true,"ignores":["hast-util-from-parse5.js","hast-util-from-parse5.min.js"]},"nyc":{"lines":100,"branches":100,"functions":100,"check-coverage":true},"dist":{"shasum":"94c9bdad8c9757a07c745206178a4ac21844113b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/hast-util-from-parse5/-/hast-util-from-parse5-1.0.0.tgz","integrity":"sha512-osJNuvYBFuAY3D4AEHA/PkEYuXm1B7ZQll0mg1SCBSwn7l54Rbrw7NLHF5KMzbzr8yE0AX5FBul028+BZBYKHA==","signatures":[{"sig":"MEUCIQCdH7hNuoqP/CYWZxMIKuN0H1qVmVdRhujF+NltqzKCFgIgHYJX7FUbkOMgzuArEu1FNr2VXX4PCFEvSNvvU9GZMYk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"94c9bdad8c9757a07c745206178a4ac21844113b","gitHead":"a56a7846aeda9a1c7799f04291ebbf4512fbba63","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 hastUtilFromParse5 > hast-util-from-parse5.js","build-mangle":"esmangle hast-util-from-parse5.js > hast-util-from-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-from-parse5.git","type":"git"},"_npmVersion":"3.3.6","description":"Transform Parse5’s AST to HAST","directories":{},"_nodeVersion":"5.0.0","dependencies":{"has":"^1.0.1","camelcase":"^3.0.0","hastscript":"^3.0.0","vfile-location":"^2.0.0","property-information":"^3.1.0"},"remarkConfig":{"output":true,"plugins":{"lint":{"heading-increment":false,"list-item-spacing":false,"no-duplicate-headings":false,"no-missing-blank-lines":false},"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","vfile":"^1.4.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","unist-util-inspect":"^4.0.0","remark-comment-config":"^4.0.0","remark-validate-links":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hast-util-from-parse5-1.0.0.tgz_1469537830199_0.894205435179174","host":"packages-12-west.internal.npmjs.com"}},"1.1.0":{"name":"hast-util-from-parse5","version":"1.1.0","keywords":["parse5","ast","hast","utility"],"author":{"url":"http://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"hast-util-from-parse5@1.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/wooorm/hast-util-from-parse5#readme","bugs":{"url":"https://github.com/wooorm/hast-util-from-parse5/issues"},"xo":{"rules":{"guard-for-in":"off"},"space":true,"ignores":["hast-util-from-parse5.js"]},"nyc":{"lines":100,"branches":100,"functions":100,"check-coverage":true},"dist":{"shasum":"359cc339dc8ccf1dfaca41915ad63fd546130acd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/hast-util-from-parse5/-/hast-util-from-parse5-1.1.0.tgz","integrity":"sha512-+u6A5C0PbhDQylidsbK3nhRDpsYuRe8Lva/ezMLvfxNpixyq0hzV2NGJHSuC20SqQjYmeBM9JcYjtGLl2jlPsg==","signatures":[{"sig":"MEUCIHBdjibxO81HvsjpgBVfoEcx1lnEMGbsSIDOJUtK6hRsAiEA7St/o/RAtA6JPCo5YcP3g34Tws6867+fSN0NqEWcDFE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"359cc339dc8ccf1dfaca41915ad63fd546130acd","gitHead":"65d596b77264871bc89ef815c2dfed419180187b","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 hastUtilFromParse5 > hast-util-from-parse5.js","build-mangle":"esmangle hast-util-from-parse5.js > hast-util-from-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-from-parse5.git","type":"git"},"_npmVersion":"3.3.6","description":"Transform Parse5’s AST to HAST","directories":{},"_nodeVersion":"5.0.0","dependencies":{"has":"^1.0.1","camelcase":"^3.0.0","hastscript":"^3.0.0","vfile-location":"^2.0.0","property-information":"^3.1.0"},"remarkConfig":{"output":true,"presets":"wooorm"},"devDependencies":{"xo":"^0.17.0","nyc":"^8.3.0","tape":"^4.0.0","vfile":"^2.0.0","parse5":"^2.1.5","esmangle":"^1.0.1","browserify":"^13.0.1","remark-cli":"^2.0.0","remark-preset-wooorm":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hast-util-from-parse5-1.1.0.tgz_1476887902726_0.24525918206200004","host":"packages-16-east.internal.npmjs.com"}},"2.0.0":{"name":"hast-util-from-parse5","version":"2.0.0","keywords":["parse5","ast","hast","utility"],"author":{"url":"http://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"hast-util-from-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-from-parse5#readme","bugs":{"url":"https://github.com/wooorm/hast-util-from-parse5/issues"},"xo":{"rules":{"guard-for-in":"off"},"space":true,"ignores":["hast-util-from-parse5.js"]},"nyc":{"lines":100,"branches":100,"functions":100,"check-coverage":true},"dist":{"shasum":"8cf4870677237302e98d963a3007ef324f2a854b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/hast-util-from-parse5/-/hast-util-from-parse5-2.0.0.tgz","integrity":"sha512-GYACJ/urkScDbRgP3e+cW7r2x6nlqmFJZv4gLrPmxCZsytFoy+kGZTnbwSERiEQdJA7C8ZKf4TEbkKzdRxnHHg==","signatures":[{"sig":"MEUCIAJVn9kIqZGjLFp1J/cEUF0xPPXIn97dXb3+h+YbLdtiAiEA19C9A7VhFI26eKr9oNIJMmZXgC/b6xB0IzlxISLuK7Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"files":["index.js"],"gitHead":"2c66abd17dca5e4053a79eecef0c8ded59af3d12","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 hastUtilFromParse5 > hast-util-from-parse5.js","build-mangle":"esmangle hast-util-from-parse5.js > hast-util-from-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-from-parse5.git","type":"git"},"_npmVersion":"5.0.3","description":"Transform Parse5’s AST to HAST","directories":{},"_nodeVersion":"8.1.2","dependencies":{"has":"^1.0.1","camelcase":"^3.0.0","hastscript":"^3.0.0","vfile-location":"^2.0.0","property-information":"^3.1.0"},"remarkConfig":{"output":true,"presets":"wooorm"},"devDependencies":{"xo":"^0.17.0","nyc":"^10.0.0","tape":"^4.0.0","vfile":"^2.0.0","parse5":"^3.0.0","esmangle":"^1.0.1","browserify":"^13.0.1","remark-cli":"^2.0.0","remark-preset-wooorm":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hast-util-from-parse5-2.0.0.tgz_1497710993234_0.6986091088037938","host":"s3://npm-registry-packages"}},"2.0.1":{"name":"hast-util-from-parse5","version":"2.0.1","keywords":["parse5","ast","hast","utility"],"author":{"url":"http://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"hast-util-from-parse5@2.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-from-parse5#readme","bugs":{"url":"https://github.com/syntax-tree/hast-util-from-parse5/issues"},"xo":{"rules":{"guard-for-in":"off"},"space":true,"esnext":false,"ignores":["hast-util-from-parse5.js"]},"nyc":{"lines":100,"branches":100,"functions":100,"check-coverage":true},"dist":{"shasum":"edb1da1942ca37f9877d1cf1b691a80c0e23b359","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/hast-util-from-parse5/-/hast-util-from-parse5-2.0.1.tgz","integrity":"sha512-xE5IkhzUIJd4fnMxD6/jO9VJPtcQqcOVtLOmVBSU4+3k26jzav+4L6mbrCSeqqh2eN6+tKSXh0RkYANWtqdBqQ==","signatures":[{"sig":"MEUCIQDGAMgaav7WSZvcDku7Jz3w6gpqnO2YllcV931ZwDGL9wIgPURWT1n4BdAv0YOxWwXp19T5QPN7Mrwr3v8Jpq3HCaQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"edb1da1942ca37f9877d1cf1b691a80c0e23b359","gitHead":"223f2e117f33ee29b05adafe95fdee64bfbbe3cd","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 . -qfo","test-api":"node test","build-bundle":"browserify index.js --bare -s hastUtilFromParse5 > hast-util-from-parse5.js","build-mangle":"esmangle hast-util-from-parse5.js > hast-util-from-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-from-parse5.git","type":"git"},"_npmVersion":"2.14.2","description":"Transform Parse5’s AST to HAST","directories":{},"_nodeVersion":"4.0.0","dependencies":{"camelcase":"^3.0.0","hastscript":"^3.0.0","vfile-location":"^2.0.0","property-information":"^3.1.0"},"remarkConfig":{"plugins":["preset-wooorm"]},"devDependencies":{"xo":"^0.18.0","nyc":"^11.0.0","tape":"^4.0.0","vfile":"^2.0.0","parse5":"^3.0.0","esmangle":"^1.0.1","browserify":"^14.0.0","remark-cli":"^3.0.0","remark-preset-wooorm":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hast-util-from-parse5-2.0.1.tgz_1497711725993_0.7346086211036891","host":"s3://npm-registry-packages"}},"2.1.0":{"name":"hast-util-from-parse5","version":"2.1.0","keywords":["parse5","ast","hast","utility"],"author":{"url":"http://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"hast-util-from-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-from-parse5#readme","bugs":{"url":"https://github.com/syntax-tree/hast-util-from-parse5/issues"},"xo":{"rules":{"guard-for-in":"off"},"space":true,"esnext":false,"ignores":["hast-util-from-parse5.js"]},"nyc":{"lines":100,"branches":100,"functions":100,"check-coverage":true},"dist":{"shasum":"f6123d83d3689630b097e13e430d16d9d1bd8884","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/hast-util-from-parse5/-/hast-util-from-parse5-2.1.0.tgz","integrity":"sha512-SVS5RVojGiwCQ61Rc/k5TZg3mqfQ+h0B9jTdrz5qfI1MVNfS1YnoUpROOk6uSUnE74m0206ksGcv7wMiVFV8Pg==","signatures":[{"sig":"MEUCIQCk1eeTxIid/gfSjrX4mNmJjTB/QR2T1dIA5HYnLwQmVQIgFQoM9Hsokd+At3hIJgz2EQYqKN6VjJ9SLca1tRj/WsU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"f6123d83d3689630b097e13e430d16d9d1bd8884","gitHead":"b2629ac230fab8763345f34c079cbc79bf523fda","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 . -qfo","test-api":"node test","build-bundle":"browserify index.js --bare -s hastUtilFromParse5 > hast-util-from-parse5.js","build-mangle":"esmangle hast-util-from-parse5.js > hast-util-from-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-from-parse5.git","type":"git"},"_npmVersion":"2.14.2","description":"Transform Parse5’s AST to HAST","directories":{},"_nodeVersion":"4.0.0","dependencies":{"camelcase":"^3.0.0","hastscript":"^3.0.0","vfile-location":"^2.0.0","property-information":"^3.1.0"},"remarkConfig":{"plugins":["preset-wooorm"]},"devDependencies":{"xo":"^0.18.0","not":"^0.1.0","nyc":"^11.0.0","tape":"^4.0.0","vfile":"^2.0.0","parse5":"^3.0.0","esmangle":"^1.0.1","is-hidden":"^1.1.0","browserify":"^14.0.0","remark-cli":"^3.0.0","unist-util-visit":"^1.1.3","remark-preset-wooorm":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hast-util-from-parse5-2.1.0.tgz_1500480379974_0.32429688703268766","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"hast-util-from-parse5","version":"3.0.0","keywords":["parse5","ast","hast","utility"],"author":{"url":"http://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"hast-util-from-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-from-parse5#readme","bugs":{"url":"https://github.com/syntax-tree/hast-util-from-parse5/issues"},"xo":{"rules":{"guard-for-in":"off"},"esnext":false,"ignores":["hast-util-from-parse5.js"],"prettier":true},"nyc":{"lines":100,"branches":100,"functions":100,"check-coverage":true},"dist":{"shasum":"a8a3ac3dcbca5193dc6ecd3cada7b86b0d98c2b8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/hast-util-from-parse5/-/hast-util-from-parse5-3.0.0.tgz","fileCount":4,"integrity":"sha512-hD03GmRG1lEk7k2DMLpW2uvM7s1n0oKiAsHOLTP1gifKYRDJa0iLKfPwrqjfn3crprWiK+jy6RtllT2n9YosYg==","signatures":[{"sig":"MEQCIEhXWbVEMuI357vPIL5seGnwS8HFTwXDGmcp/kgv3/43AiAQedB1RKL9TSkObw94wl8oQWOegLXedmrWB3pVqkOSRg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":11789,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbHXHtCRA9TVsSAnZWagAAiSwP/iSER+qXoC0SPwPIyqHH\nOfKLFtPd3ZYH6gbs5DLVl8P5Easc/tCD8Aap7TRd7oGlJbswqqSo7eOnI6c0\nmgeV5vtfINZcWowS/wM9737mpG1N7kLzdijQOmPkBAwU04kmBxfmls1COLlh\nY1xatu5ikTRWpErUV3WBlb83rk7KQcHyN39kvANp+35Wm/XQQkudQASyVY2t\nGWkjhElmef1gnB/4QDEtNkHrpwgXXc4In+Glh1grkqeuAhNjRyQNO/gUXhXr\nD21ud5K+uCDj/TZ/85h9nbmwMhqiej5EKfexLnDSv88Jwp+0G/O3Rxfp7oJg\nPZKgVPifqxvS7yI9x1HuuC3ek68YzdNZBq4792d2FiZI57I32p03yCiXxNnQ\n1f7myVqP0E/ouSb6442EQaqG/YCz5MU9InA2sHb86Cl5vZFUnr+4wlCNsGsK\nfQPZBQ08w79bORRKRGILqddgf+JvHl16hvo6DTh/dIGubZEAABGreLMGV01l\nm3FWeN6TcC+aywf7RYprsFkckYEXrHW+2UIv6EIQrnSlbptsCOb3r41P4cDp\n2o+ZNQkge8v/40hjgKrCKFGzL9ZQ8niPTup8X/1Il10aiLBeQp6afc6k3dL1\nJxP5TL3HKdoBD/d4+Cmn57Xv3t0LnzIs/pI9aoZ6VNoCxHLWOkHhufakdenD\nQdBa\r\n=3IHe\r\n-----END PGP SIGNATURE-----\r\n"},"files":["index.js"],"gitHead":"2dcc40429c59807c73f448d673b693d51134a0d6","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 hastUtilFromParse5 -g [ babelify --presets [ \"babel-preset-env\" ] ] > hast-util-from-parse5.js","build-mangle":"esmangle hast-util-from-parse5.js > hast-util-from-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-from-parse5.git","type":"git"},"_npmVersion":"6.1.0","description":"Transform Parse5’s AST to HAST","directories":{},"_nodeVersion":"10.0.0","dependencies":{"xtend":"^4.0.1","ccount":"^1.0.3","camelcase":"^5.0.0","hastscript":"^3.0.0","property-information":"^3.1.0"},"remarkConfig":{"plugins":["preset-wooorm"]},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.21.0","not":"^0.1.0","nyc":"^12.0.0","tape":"^4.0.0","vfile":"^3.0.0","parse5":"^5.0.0","babelify":"^8.0.0","esmangle":"^1.0.1","prettier":"^1.13.5","is-hidden":"^1.1.0","babel-core":"^6.26.3","browserify":"^16.0.0","remark-cli":"^5.0.0","babel-preset-env":"^1.7.0","unist-util-visit":"^1.1.3","remark-preset-wooorm":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hast-util-from-parse5_3.0.0_1528656363977_0.19062198977402245","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"hast-util-from-parse5","version":"4.0.0","keywords":["parse5","ast","hast","utility"],"author":{"url":"http://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"hast-util-from-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-from-parse5#readme","bugs":{"url":"https://github.com/syntax-tree/hast-util-from-parse5/issues"},"xo":{"rules":{"guard-for-in":"off"},"esnext":false,"ignores":["hast-util-from-parse5.js"],"prettier":true},"nyc":{"lines":100,"branches":100,"functions":100,"check-coverage":true},"dist":{"shasum":"ad7a0038e9e013b3cb07bf5b5926b71af20e2fca","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/hast-util-from-parse5/-/hast-util-from-parse5-4.0.0.tgz","fileCount":4,"integrity":"sha512-XA2xnxpmyn8vx5F6SC68AO4ts7SNbgyQetojgs9pftDeIIOEQ8Yex3X4vjZ7E/QfQjLxQednYzcDbAaahzcqfw==","signatures":[{"sig":"MEUCIGkXi5+emiG8bnNchtX+8sID2t09DPzyYZKUnE02jcI7AiEAgvzmRT/BzmCWWY/RCZaCvj9X+jEF07QkGv5tD7IUdgA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12168,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbTil/CRA9TVsSAnZWagAAnD8QAJph8BtyLNnCtYB4MFdH\n9jd9cjjkycAXKgQ4vp8B1306MQeln4J+Jt5cLKxT62hehYziVNyiO1k+BtHh\np5pBRgpLC/N4vMaov3YbjSz/iEwH6Ozt8hzAhbAmRQEgfy0zVJ5lt2KUpy8m\nHToMMuDRKM+1NkAZV5Brs0uBrZfn4iFA4O4f1x8QTgOpyce4Lcd+X8f469NF\nx4Opy2qnfM+1LTbQI6PF6VDdUodBx64lAz0GE5rHf92vK/L1QR6Ei0TWByUF\nG0I80FbVP240/WeBuCWG3BgEx4AjPOXquWCz3t+r/4ZaqTSsL0EaqbFEEV5w\nGtrRRAYnhoESfU0Vas0T2X3+bacRUNJzOkwqDJlHCYXgU6yB4qzMJ+gtBlx+\n5pVRi6D+hrfgR98mPtDzLP8QS+Kildi05n0kGF0Ii22tIJ9tf20Dgp4e2l0O\nt4xOnE3NqcUfDl0sSe/s3Qp/ibEm3etIqDPcaWcPLPtx/lP3abKEKDBrzs/O\n3tGv0+N5ZdjmumHueHwW6IYy4nHC8Awu2a+RkS9n7uQwleQSdUE7fEAWXzUj\nR9brNHDvxc2Va7vilELJ060rFx9Zd7up3Hh/viPAeGYmmagZfAGGVlTCcS+l\ngCiQHNcziHeU3c0Taruj3PmWqQYA8Lbxi7IUDypuRwxTGZsbMNVO4XDroMJz\nD/Jj\r\n=zG7E\r\n-----END PGP SIGNATURE-----\r\n"},"files":["index.js"],"gitHead":"837a2f020b0b80153f99b224d46c1a81e471944d","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 hastUtilFromParse5 -g [ babelify --presets [ \"babel-preset-env\" ] ] > hast-util-from-parse5.js","build-mangle":"esmangle hast-util-from-parse5.js > hast-util-from-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-from-parse5.git","type":"git"},"_npmVersion":"6.2.0","description":"Transform Parse5’s AST to HAST","directories":{},"_nodeVersion":"10.0.0","dependencies":{"xtend":"^4.0.1","ccount":"^1.0.3","hastscript":"^4.0.0","property-information":"^4.0.0"},"remarkConfig":{"plugins":["preset-wooorm"]},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.21.0","not":"^0.1.0","nyc":"^12.0.0","tape":"^4.0.0","parse5":"^5.0.0","babelify":"^8.0.0","esmangle":"^1.0.1","prettier":"^1.13.5","to-vfile":"^5.0.0","is-hidden":"^1.1.0","babel-core":"^6.26.3","browserify":"^16.0.0","remark-cli":"^5.0.0","babel-preset-env":"^1.7.0","unist-util-visit":"^1.1.3","remark-preset-wooorm":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hast-util-from-parse5_4.0.0_1531849087692_0.37653204222060155","host":"s3://npm-registry-packages"}},"4.0.1":{"name":"hast-util-from-parse5","version":"4.0.1","keywords":["parse5","ast","hast","utility"],"author":{"url":"http://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"hast-util-from-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-from-parse5#readme","bugs":{"url":"https://github.com/syntax-tree/hast-util-from-parse5/issues"},"xo":{"rules":{"guard-for-in":"off"},"esnext":false,"ignores":["hast-util-from-parse5.js"],"prettier":true},"nyc":{"lines":100,"branches":100,"functions":100,"check-coverage":true},"dist":{"shasum":"acd36dd9fb179942bf6cf8ba3da0a072fa3fb860","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/hast-util-from-parse5/-/hast-util-from-parse5-4.0.1.tgz","fileCount":4,"integrity":"sha512-ILkuJeEM0y++3V9iGjBjvLAuQsa2HSrkumwOHTcrwVMzNqx2SLPpaT//405h4zPUka/lLqOlz27r9eEiwxuKSQ==","signatures":[{"sig":"MEUCIAkh+4N/MmtFYw0JlziDcfDePCrxNdhIhpswPS7TuwrFAiEA1Fu3HymWqlPfE0301fe0ROW7BGMllhENsLxmBdTmgFQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12368,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbTkSYCRA9TVsSAnZWagAAbuYQAIXRp4wNpYhnNUy2QJuz\nQRcglh8dE4C3TceBxqYyaIVs5L0mMH21gLZIAUQ3ARGERD9ALR+cWcjmumYt\nnsXP70h8oZx5eGZIngPk0mkEHLpuRn2QMmhGdUZUtteHtA0m5vLvVl9UaWwM\niCbV1UuoUsskXTQXCpfU/+FCBx2wcp5kTx0iLDaJDzkk4ktZ4+Uus4aXr8mc\ncEnoaFqu5KqHBVKPIC7WcaLo+vXue9vNN0mKAwHgu6H0XKBoi7DQIvsSNalh\nfsi/MC5wBcHoOlBBE6UQBN0R7U8X8BNtZ+pL8M1vVZHnXJ8zdCqBs/tyDjgw\nuQY3BO/aFgmKufZ8VroCBmXLoAeYxOC43c5FogXuKwdgkA6DRYswWj0lXB4J\nRWmfVCJmp/fTkP5Cnu6p/Bk5HAdOd3fd5vhcig6XTkZcGNOGYnQGrfsA64ZQ\nuJrU9jTmsgj0VVU6G/hpVgoMb94zQwZ2BArKac+JJgscHPJlDn1rT/WjKnim\n1z26bMws/Z9ahUyvfojsGphMX4AnCn+dhZZezlMwE3SsPrK4YeIfk2NxtbKx\nWSMg79uzcQ4Y//vzKrVAVhgXc7Kin/mM/d7yllW7tb0OBmBYfGTNk6ShG3v4\nP2id8bH/svti5W1belfoFVOEj4N3UN1qc6oETzQ8lQBeiFWZv1S+YMjkS2Xv\n4MPe\r\n=F8oP\r\n-----END PGP SIGNATURE-----\r\n"},"files":["index.js"],"gitHead":"2b1a0d62bc66949c1d6f5dc563d761fd12dfbf06","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 hastUtilFromParse5 > hast-util-from-parse5.js","build-mangle":"browserify index.js -p tinyify -s hastUtilFromParse5 > hast-util-from-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-from-parse5.git","type":"git"},"_npmVersion":"6.2.0","description":"Transform Parse5’s AST to HAST","directories":{},"_nodeVersion":"10.0.0","dependencies":{"xtend":"^4.0.1","ccount":"^1.0.3","hastscript":"^4.0.0","property-information":"^4.0.0"},"remarkConfig":{"plugins":["preset-wooorm"]},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.21.0","not":"^0.1.0","nyc":"^12.0.0","tape":"^4.0.0","parse5":"^5.0.0","tinyify":"^2.4.3","esmangle":"^1.0.1","prettier":"^1.13.5","to-vfile":"^5.0.0","is-hidden":"^1.1.0","browserify":"^16.0.0","remark-cli":"^5.0.0","unist-util-visit":"^1.1.3","remark-preset-wooorm":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hast-util-from-parse5_4.0.1_1531856024268_0.5011220810785255","host":"s3://npm-registry-packages"}},"4.0.2":{"name":"hast-util-from-parse5","version":"4.0.2","keywords":["parse5","ast","hast","utility"],"author":{"url":"http://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"hast-util-from-parse5@4.0.2","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-from-parse5#readme","bugs":{"url":"https://github.com/syntax-tree/hast-util-from-parse5/issues"},"xo":{"rules":{"guard-for-in":"off"},"esnext":false,"ignores":["hast-util-from-parse5.js"],"prettier":true},"nyc":{"lines":100,"branches":100,"functions":100,"check-coverage":true},"dist":{"shasum":"b7164a7ffc88da4f751dc7c2f801ff8d7c143bab","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/hast-util-from-parse5/-/hast-util-from-parse5-4.0.2.tgz","fileCount":4,"integrity":"sha512-I6dtjsGtDqz4fmGSiFClFyiXdKhj5bPceS6intta7k/VDuiKz9P61C6hO6WMiNNmEm1b/EtBH8f+juvz4o0uwQ==","signatures":[{"sig":"MEUCIQChdfivMXw/9b3y1x+YI31duBDjXBp1x4F7xi/vmPyZNAIgLweZy9YuEJrjpQDmhAn8DTkUCdPq3LruX9zJRWIIZQc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12518,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbT2AmCRA9TVsSAnZWagAAgooP/3K5yqcvmwCBiBW9oBEd\nagL0Uv/Rr9EgNe6a8Yw0OV+hAcucWSFVscdIQ8W8fH6OpRe7pzwD32e/20Jk\n024ZnyrSLzUoM51j2TgsfEFwUG+G6VOZ8ze3rPxpqpFiSTcqzTNWZDVrQYCF\n2D9XJMhjQxx9XEA3UZs6ffF5JagoRHqp8rUjyLxOvtTPZpGhrXGZzo5D6/gZ\n0yq9GaX66QrkCARHtfFKxFbU82DErXe7QFuoZUlfUu6lkAoQdhyX+OegKOTU\nTT5VXLTx+GVy9+gkaq2mtZVjgdybJAmAbGlljYmNb5pHofxkqCxmCGjo9Ai7\nR5Ct4Vmv4LY4f7xqZR3qa0h2m75r7oDBFxK7Un793bPh6MWKAifyO3i5kOxq\neaK7Eu63JvKedorqPoe9DJIpPE/V9Ps8yybKkemFxpg+AIu1NcGpyVYGQM+r\n3uRBz5956fpolV4x9woU6R53YsXF0/bIPw5F72lBRWZ9U19wScrJ51gnct0B\niEeFAGEiMYQXPDj7L09+ZRSTYDTEHAHbgS3Qih7rePFpg5cvrY47lZB3FeaI\nCGkEdyazZLT2FdjdSw9zC173jbbhx543R8bwF+J++qO3K6D67i6zlQysWv4L\nFkkjHw4d/3VBD3eIegA9dkJu3zwBHzPLUMJWOhabRqtheuBRBkZJDAWDpw3Y\n6qpC\r\n=At6m\r\n-----END PGP SIGNATURE-----\r\n"},"files":["index.js"],"gitHead":"12d090351ce3784f4f4159a5198985437a6d01dc","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 hastUtilFromParse5 > hast-util-from-parse5.js","build-mangle":"browserify index.js -p tinyify -s hastUtilFromParse5 > hast-util-from-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-from-parse5.git","type":"git"},"_npmVersion":"6.2.0","description":"Transform Parse5’s AST to HAST","directories":{},"_nodeVersion":"10.0.0","dependencies":{"xtend":"^4.0.1","ccount":"^1.0.3","hastscript":"^4.0.0","web-namespaces":"^1.1.2","property-information":"^4.0.0"},"remarkConfig":{"plugins":["preset-wooorm"]},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.21.0","not":"^0.1.0","nyc":"^12.0.0","tape":"^4.0.0","parse5":"^5.0.0","tinyify":"^2.4.3","esmangle":"^1.0.1","prettier":"^1.13.5","to-vfile":"^5.0.0","is-hidden":"^1.1.0","browserify":"^16.0.0","remark-cli":"^5.0.0","unist-util-visit":"^1.1.3","remark-preset-wooorm":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hast-util-from-parse5_4.0.2_1531928605735_0.0531651622343714","host":"s3://npm-registry-packages"}},"5.0.0":{"name":"hast-util-from-parse5","version":"5.0.0","keywords":["parse5","ast","hast","utility"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"hast-util-from-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-from-parse5#readme","bugs":{"url":"https://github.com/syntax-tree/hast-util-from-parse5/issues"},"xo":{"rules":{"guard-for-in":"off"},"esnext":false,"ignores":["hast-util-from-parse5.js"],"prettier":true},"nyc":{"lines":100,"branches":100,"functions":100,"check-coverage":true},"dist":{"shasum":"a505a05766e0f96e389bfb0b1dd809eeefcef47b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/hast-util-from-parse5/-/hast-util-from-parse5-5.0.0.tgz","fileCount":4,"integrity":"sha512-A7ev5OseS/J15214cvDdcI62uwovJO2PB60Xhnq7kaxvvQRFDEccuqbkrFXU03GPBGopdPqlpQBRqIcDS/Fjbg==","signatures":[{"sig":"MEUCIQCbRYXbjQk0g5C8+mNu/HXJ3tZphPWBnbn7M9bc8n6k/QIgdjmgBCsCY8oC+4PF3q4JE3kyixDdAwjhNJMfCevxGJ0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12832,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb4zaDCRA9TVsSAnZWagAAYFEP/3d6foI97znQXflt2NaD\nhV17Uzy+nTsezRzLy8bzhaDIkmZIGPvIldWoVUyZRWheAvan1XMNo6KG/n/X\nw2Ms5lVPkI9i+lSHVuK8T+vuBi6Kf+jC/hgWxCny0MoIgIO5IVZ7Txq5169U\nKH1JPqDao8K1dl/5OqRlAwkUu5bpGVJbfsRA3FrmvMTMmtwV/Yalzm9FQSrI\n553dbkK9+OiroDlYvDMAj3nxtfEGNzzB0mSGyuBnSpf1V21ahTd8kHzhdYmv\nvJNe7Yt2KAb2NLbDWyMABEU/soRjfNq4su+UXFT7j1wlnCsUiR1lEUBve7g/\nAZgU9oML18EykAEMEbXsCXQvQ77oAezCpcrHQ75sQhoua/scwOeOs14/zXw+\nkmBf1Vd3ky5SIWlvG3n5VmV0Cpb0mLNUvLzWg1YPYSj0slNTyu0H8jme/l+O\n6zZhfwpTUU6UbqTYHz9AOXXoiF5QTPlyKHdTcsmOQNyftdorEJg2OMDruoao\nr/g5yW/WEJ+uJC01iUWCf+Mhvqkvk4dP1UwO7M45iO/YT6rKk2oLGIdIKxt0\n1M8du7or55Zs0B/I3+PGFxWdjAcWN4LiKfyE/jFoGPaCFaSBp9zTsxpzETj5\nW3QZSolOqfmlL8CDPmpsLbLxoPtGhTGk/rfO/uoZdhsm5ZfWzk0+E5NsykoP\nmIPg\r\n=9Hb9\r\n-----END PGP SIGNATURE-----\r\n"},"gitHead":"4f86a43e102fe61e637bf8f06c77a4e49b1daea6","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 hastUtilFromParse5 > hast-util-from-parse5.js","build-mangle":"browserify index.js -p tinyify -s hastUtilFromParse5 > hast-util-from-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-from-parse5.git","type":"git"},"_npmVersion":"6.4.1","description":"Transform Parse5’s AST to HAST","directories":{},"_nodeVersion":"11.0.0","dependencies":{"xtend":"^4.0.1","ccount":"^1.0.3","hastscript":"^5.0.0","web-namespaces":"^1.1.2","property-information":"^5.0.0"},"remarkConfig":{"plugins":["preset-wooorm"]},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.23.0","not":"^0.1.0","nyc":"^13.0.0","tape":"^4.0.0","parse5":"^5.0.0","tinyify":"^2.4.3","prettier":"^1.13.5","to-vfile":"^5.0.0","is-hidden":"^1.1.0","browserify":"^16.0.0","remark-cli":"^6.0.0","unist-util-visit":"^1.1.3","remark-preset-wooorm":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hast-util-from-parse5_5.0.0_1541617282567_0.23041368719460542","host":"s3://npm-registry-packages"}},"5.0.1":{"name":"hast-util-from-parse5","version":"5.0.1","keywords":["parse5","ast","hast","utility"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"hast-util-from-parse5@5.0.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-from-parse5#readme","bugs":{"url":"https://github.com/syntax-tree/hast-util-from-parse5/issues"},"xo":{"rules":{"guard-for-in":"off"},"esnext":false,"ignores":["hast-util-from-parse5.js"],"prettier":true},"nyc":{"lines":100,"branches":100,"functions":100,"check-coverage":true},"dist":{"shasum":"7da8841d707dcf7be73715f7f3b14e021c4e469a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/hast-util-from-parse5/-/hast-util-from-parse5-5.0.1.tgz","fileCount":4,"integrity":"sha512-UfPzdl6fbxGAxqGYNThRUhRlDYY7sXu6XU9nQeX4fFZtV+IHbyEJtd+DUuwOqNV4z3K05E/1rIkoVr/JHmeWWA==","signatures":[{"sig":"MEYCIQCd+xXSDRxJLdLVo7GHxomuAboaSFr9FS0B1dT3KDHmVgIhAJHzpaxaYTo+WsIIIeQuZ7KfQLIYt7NZ4V1NdPWBWCha","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13788,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc6lsnCRA9TVsSAnZWagAAQgkP/RlEe6qvgw+IwfkBy596\nYIC5IVfCZ2Fsl8i3anmhjQCdQx3VtkN9hTXfCPU45Bk15CjMnV1Cd/cSUhaE\nkroBkaZzzFMiQAmo5O00GkAkpnCJjT/EQRG3lvBZPNn4BNxtSf6koT8Xlt7f\nJcIE942Vprsb7Ta40PuS0NOUXrDbuAiUG6cd4erIpH32WpXhdal03bPojbpY\nfJxLfUmzFkUIqkrtCgMi9R+ImNRP/5c2003DUqZsEuBiP/X5iYvKkz3vHuNb\nfVp4fUokU50zB3AabUvQkhdzDIYV1w+RCpFayMA3b0v8dFMT/FmDWsgyIXX5\nwCLOrvtv4/DwDNsIlQeH6XMJxGxoQqHAdRNKOzTYQwl09htvkvv6RgN0U/Th\n5pPL6N7DLrdp8XZaoU9NXdsH9t2KBzSX2GaaPwIHlZRJPSrjdJe1pA8FwKyV\nYMSsLs1fP4lWFCA8uyOGcGHg7QlUj/SVZezmUf02dWeaQebaCz/D4kVkJxsW\nHMknKynBw7grE/ecOM3ri8bj9N11yxTLr8u1+L+rI/FEUBB8siJNB2AKfBq2\n0BMHVk0j3ESgEGv/XbcI4OM1hTQxQdk9jhmGNaCii5Tr6bwpJq7SuQeX8FSr\nXYIio5MRGF+6MTU6Kr1W9y4kEFCjk0zhbyWR4jv2EB/L0gEuwuksU4Iyg52O\nqKzJ\r\n=vuIl\r\n-----END PGP SIGNATURE-----\r\n"},"gitHead":"e58110a2c548f64c68befd4ae050d1a5e7249bb1","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 hastUtilFromParse5 > hast-util-from-parse5.js","build-mangle":"browserify index.js -p tinyify -s hastUtilFromParse5 > hast-util-from-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-from-parse5.git","type":"git"},"_npmVersion":"6.9.0","description":"Transform Parse5’s AST to hast","directories":{},"_nodeVersion":"12.2.0","dependencies":{"xtend":"^4.0.1","ccount":"^1.0.3","hastscript":"^5.0.0","web-namespaces":"^1.1.2","property-information":"^5.0.0"},"remarkConfig":{"plugins":["preset-wooorm"]},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.24.0","not":"^0.1.0","nyc":"^14.0.0","tape":"^4.0.0","parse5":"^5.0.0","tinyify":"^2.0.0","prettier":"^1.0.0","to-vfile":"^5.0.0","is-hidden":"^1.1.0","browserify":"^16.0.0","remark-cli":"^6.0.0","unist-util-visit":"^1.0.0","remark-preset-wooorm":"^5.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hast-util-from-parse5_5.0.1_1558862630764_0.8490804318802943","host":"s3://npm-registry-packages"}},"5.0.2":{"name":"hast-util-from-parse5","version":"5.0.2","keywords":["parse5","ast","hast","utility"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"hast-util-from-parse5@5.0.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-from-parse5#readme","bugs":{"url":"https://github.com/syntax-tree/hast-util-from-parse5/issues"},"xo":{"rules":{"guard-for-in":"off"},"esnext":false,"ignores":["hast-util-from-parse5.js"],"prettier":true},"nyc":{"lines":100,"branches":100,"functions":100,"check-coverage":true},"dist":{"shasum":"afeadc6aab41e6acfe038645bbefd4005c56a475","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/hast-util-from-parse5/-/hast-util-from-parse5-5.0.2.tgz","fileCount":4,"integrity":"sha512-YXFjoRS7ES7PEoLx6uihtSfKTO1s3z/tzGiV5cVpsUiihduogFXubNRCzTIW3yOOGO1nws9CxPq4MbwD39Uo+w==","signatures":[{"sig":"MEUCIHcroBm/4y4PNk3Diupz3ae7uBYDkYoHxNgeeU648ZkVAiEAhaKd3EttAQU760nW/aD5YGwmYX/JpZ9oNS4LBjO3vhU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":14081,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdx9MaCRA9TVsSAnZWagAA9J0P/2HUHI83nV4ovibxyszT\nBVW/jYxr3yuxescwlNXFcc6pIMqirDoDXYwcuiH/bi9sB6xRPlI4QU5bNOYz\nYrnqq4XQdFPoHn8OV/Mgquqs3n9ePE44u5RZtAtQi/+9thMH/AwvDUIHDywd\npScELNJ+2/kbWcmWozKvHkkbjUz6yk2W7fSufRIlNGqjUm9yNXiQhwcl6iTr\n+gH6GtAWdkVPvT9HWk4kKKF/glmGLWORO7ns29VOwa49O8pinSpdLCs0fUXD\n5Dj5zzEEGoqIZ6qiAQKwFB6wubUmbHPhKPPtMirCKsqd1a+lLkEvzwILPjLE\nt75JAyTdbe+gmdREKRoXyUk8Vo8sIVBriY6OvEceB+ar89Hty+5/yNEBOTsD\nMM9aSJGbodqu5QqO4drlbFLR1rtTv6MtYe+aIY7SSAYVUKK7sCRP7QyTU5nw\nZcoAlTXkhMu970QSiKieqO9kErZ9n6HzXgSOGFf4yX6mbiC9QKmBS7yRnz4Y\nGLzwuAhKJ+HBogsKUC8dyAnKQV+9OGi5AkUgCYJLlZI7x7IXXs8l6J8VpoTs\n6440wZejpXPP9DHSr2LjroPKmbKIQzu3qJUaM2CXyImk2t7Ou84ZOjcKfy7N\nKKzoGBqxvdILE6Ax9t/umSH/pe+zGUYoCk5QC+Kf/Iqxjho6tXviD3o+8wli\naapg\r\n=NCpz\r\n-----END PGP SIGNATURE-----\r\n"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"e464bc0e63a765fee11de4a17bbab3d471cdce00","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 hastUtilFromParse5 > hast-util-from-parse5.js","build-mangle":"browserify index.js -p tinyify -s hastUtilFromParse5 > hast-util-from-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-from-parse5.git","type":"git"},"_npmVersion":"6.13.0","description":"Transform Parse5’s AST to hast","directories":{},"_nodeVersion":"13.0.1","dependencies":{"xtend":"^4.0.1","ccount":"^1.0.3","hastscript":"^5.0.0","web-namespaces":"^1.1.2","property-information":"^5.0.0"},"remarkConfig":{"plugins":["preset-wooorm"]},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.25.0","not":"^0.1.0","nyc":"^14.0.0","tape":"^4.0.0","parse5":"^5.0.0","tinyify":"^2.0.0","prettier":"^1.0.0","to-vfile":"^6.0.0","is-hidden":"^1.0.0","browserify":"^16.0.0","remark-cli":"^7.0.0","unist-util-visit":"^2.0.0","remark-preset-wooorm":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hast-util-from-parse5_5.0.2_1573376793956_0.38789262208687125","host":"s3://npm-registry-packages"}},"5.0.3":{"name":"hast-util-from-parse5","version":"5.0.3","keywords":["unist","hast","hast-util","util","utility","transform","change","ast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"hast-util-from-parse5@5.0.3","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-from-parse5#readme","bugs":{"url":"https://github.com/syntax-tree/hast-util-from-parse5/issues"},"xo":{"rules":{"guard-for-in":"off"},"esnext":false,"ignores":["hast-util-from-parse5.js"],"prettier":true},"nyc":{"lines":100,"branches":100,"functions":100,"check-coverage":true},"dist":{"shasum":"3089dc0ee2ccf6ec8bc416919b51a54a589e097c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/hast-util-from-parse5/-/hast-util-from-parse5-5.0.3.tgz","fileCount":4,"integrity":"sha512-gOc8UB99F6eWVWFtM9jUikjN7QkWxB3nY0df5Z0Zq1/Nkwl5V4hAAsl0tmwlgWl/1shlTF8DnNYLO8X6wRV9pA==","signatures":[{"sig":"MEYCIQC0iix6MHNDi1dHx7vV9sF4OR4T9JWB2d6VYmutW+1PXwIhAJzYz2IQ1u20y1tpZHGwXz9iRmB2W00coTes9WrQ8df4","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":14128,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeWiJ9CRA9TVsSAnZWagAAlosQAInCR9VSdUIxMX5XufeG\n6x246uDgUSwpw+ZJJL+WgcyaiSxkgOiWkthUs3r+O+54Pb3dvqbe2yBRzSSn\nD8Nu7EfpWa+8vObCatuVPB0VC/JxRrp1p1sC6WiG2fmMbtGaKSUl4pyy8A9c\nLS1jv+Ty2sYgIfpivzz0DtVetCI8+SwFmsTIx7Xgbaq3f/fKyFssrbIsea4a\nc4xCbemzR/GZ0/vo+Qx2h8fxHBh1tpkWC8JyRTt44u2Jv5DcUCoebjKI42Vv\n49fGHyDq95Pbf+F6fJ7Kble4wPdnyz9SQ3TFw+b55sFoRjRkxHqi8Y67dNKN\nZ8VsLpxxolKlHIEQExqyqKwaqUlL+s3q3YgblaKEllLTaDoP/0MOR0QzoOLs\n1xFwIl3RRHbZm8ITa2bwM4Ama6sUY8XcPMf3TZEHer0JhqPwo9Xj0eX59z9f\n+d1OovlGjBdrTUCR+LaH6He17aOIPb+doXOUIm8S+iKQhAvtaunqVbLDmS1p\nf7909izGlZDKulwFsVSu0yk82qG41eeCJqFbImxYt+B1u2A7ZyWo6+G7HKwL\nA6ZA1yDPDeJ0gnyI7RYq32Vl0nWmlzfjPNkvwgxwvWTg7tVTqBDz7iFinbJt\nuWY/3pCStHVYiJEDOM+6UFO/33hy+oC6wRjA8nb802vq7/en5FEdciMf4w+6\n4fmc\r\n=RKXo\r\n-----END PGP SIGNATURE-----\r\n"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"8ea1fd773679929b309e1e6ca39213dc60585193","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 hastUtilFromParse5 > hast-util-from-parse5.js","build-mangle":"browserify index.js -p tinyify -s hastUtilFromParse5 > hast-util-from-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-from-parse5.git","type":"git"},"_npmVersion":"6.13.7","description":"hast utility to transform from Parse5’s AST","directories":{},"_nodeVersion":"13.9.0","dependencies":{"xtend":"^4.0.1","ccount":"^1.0.3","hastscript":"^5.0.0","web-namespaces":"^1.1.2","property-information":"^5.0.0"},"remarkConfig":{"plugins":["preset-wooorm"]},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.27.0","not":"^0.1.0","nyc":"^15.0.0","tape":"^4.0.0","parse5":"^5.0.0","tinyify":"^2.0.0","prettier":"^1.0.0","to-vfile":"^6.0.0","is-hidden":"^1.0.0","browserify":"^16.0.0","remark-cli":"^7.0.0","unist-util-visit":"^2.0.0","remark-preset-wooorm":"^6.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hast-util-from-parse5_5.0.3_1582965372869_0.5680944915413726","host":"s3://npm-registry-packages"}},"6.0.0":{"name":"hast-util-from-parse5","version":"6.0.0","keywords":["unist","hast","hast-util","util","utility","transform","change","ast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"hast-util-from-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-from-parse5#readme","bugs":{"url":"https://github.com/syntax-tree/hast-util-from-parse5/issues"},"xo":{"rules":{"guard-for-in":"off","unicorn/no-fn-reference-in-iterator":"off"},"esnext":false,"ignores":["hast-util-from-parse5.js","**/*.ts"],"prettier":true},"nyc":{"lines":100,"branches":100,"functions":100,"check-coverage":true},"dist":{"shasum":"b38793c81e1a99f5fd592a4a88fc2731dccd0f30","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/hast-util-from-parse5/-/hast-util-from-parse5-6.0.0.tgz","fileCount":5,"integrity":"sha512-3ZYnfKenbbkhhNdmOQqgH10vnvPivTdsOJCri+APn0Kty+nRkDHArnaX9Hiaf8H+Ig+vkNptL+SRY/6RwWJk1Q==","signatures":[{"sig":"MEYCIQDpfbxZ6QIWT0+5TJOPgbWvSbBxJxE1N2GrLHR2YMjajwIhALiAN03oE/Kdta1zf1fO/HyLWj3us2ZEcoRIoZraG7SA","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":16856,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJexqdNCRA9TVsSAnZWagAAL9QP/0OsZ5joiYVg02usMXX7\nfiNNIhHqg74SXwgU9VgoV0P3X7ykoMoVU/XroetGP87oRWytDUeiyiydFCL1\nELY1tDgz3SeNUn+pDw+oAu399/ka5jJt3fx9MAebF3zzeVmxoZ2zK9qmPxOB\nUzdQzWsCcqsI1Izv37UOUDC5qm4oMbHMzlRO2wcOv5UY3pfdwQI1Ou67wdLE\n4th0GtSJOpr/Zd9B+uocsAFw0v1mzuLpKKbcmByFW1jL1mFr4UwpFrni/tu/\n1s97GBmjw8QYpWOwnXCiw02VY7gITDMUk+s9u7r0qxU9yQ8TGeBgt8yXgbQn\nv+z3HcO3OUb1UoRkfs9va2/xQ2o3kWG9/+Bi/NNXBgf/AqJb3eSkoFmYAXhN\ny7lqyFMamFQ1s0+Z9VSmq9WHtUjEWWb4QOgKe9ENO3q11Lm4WqX+XDaPlxs9\n/CTf/HJmmQPi4Sk9QiIIDyjRZXxpodrUs4wuz5S0yrTu0YAQPJBBSvr1lD4Y\n1UqUqv1qZ3dsro2tUOeGO59Bnq1agoqil939C/lIA9gNXiMQKmu+N7/SzD5i\nVKZ1MsnCGxScueAlUmv4eHdCkwT8lAFOxf9IkZ6u0O9WHVBNBOGAgcKA1TO+\njWHh4MoP7BMfwu99Lza5eWwU9iJNZazeJLpJuyqp273oj3Vv4jw/cHaD3yiI\nhk/w\r\n=SUlV\r\n-----END PGP SIGNATURE-----\r\n"},"types":"types/index.d.ts","funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"d43f3ef08f713d1b15e0cbc1dad54112d241c2a8","scripts":{"test":"npm run format && npm run build && npm run test-coverage && npm run test-types","build":"npm run build-bundle && npm run build-mangle","format":"remark . -qfo && prettier --write . && xo --fix","test-api":"node test","test-types":"dtslint types","build-bundle":"browserify index.js -s hastUtilFromParse5 > hast-util-from-parse5.js","build-mangle":"browserify index.js -p tinyify -s hastUtilFromParse5 > hast-util-from-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-from-parse5.git","type":"git"},"_npmVersion":"6.14.5","description":"hast utility to transform from Parse5’s AST","directories":{},"_nodeVersion":"14.0.0","dependencies":{"vfile":"^4.0.0","ccount":"^1.0.0","hastscript":"^5.0.0","@types/parse5":"^5.0.0","web-namespaces":"^1.0.0","property-information":"^5.0.0"},"remarkConfig":{"plugins":["preset-wooorm"]},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.30.0","not":"^0.1.0","nyc":"^15.0.0","tape":"^5.0.0","parse5":"^6.0.0","dtslint":"^3.0.0","tinyify":"^2.0.0","prettier":"^2.0.0","to-vfile":"^6.0.0","is-hidden":"^1.0.0","browserify":"^16.0.0","remark-cli":"^8.0.0","unist-util-visit":"^2.0.0","remark-preset-wooorm":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hast-util-from-parse5_6.0.0_1590077260674_0.8845762002026936","host":"s3://npm-registry-packages"}},"6.0.1":{"name":"hast-util-from-parse5","version":"6.0.1","keywords":["unist","hast","hast-util","util","utility","transform","change","ast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"hast-util-from-parse5@6.0.1","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-from-parse5#readme","bugs":{"url":"https://github.com/syntax-tree/hast-util-from-parse5/issues"},"xo":{"rules":{"guard-for-in":"off","unicorn/no-fn-reference-in-iterator":"off","unicorn/prefer-optional-catch-binding":"off"},"esnext":false,"ignores":["hast-util-from-parse5.js","**/*.ts"],"prettier":true},"nyc":{"lines":100,"branches":100,"functions":100,"check-coverage":true},"dist":{"shasum":"554e34abdeea25ac76f5bd950a1f0180e0b3bc2a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/hast-util-from-parse5/-/hast-util-from-parse5-6.0.1.tgz","fileCount":5,"integrity":"sha512-jeJUWiN5pSxW12Rh01smtVkZgZr33wBokLzKLwinYOUfSzm1Nl/c3GUGebDyOKjdsRgMvoVbV0VpAcpjF4NrJA==","signatures":[{"sig":"MEQCIGw7LibIrqbzDZxbiacsN/PUIcigA17e7UGa/9jeA4t3AiAgZqYP7rd1qw1XADyuHNXrtYtKgo7z2G3TqeFeynyN8A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":16759,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfnowGCRA9TVsSAnZWagAAo3MP/2CWW23kbTHFOoIfYd7i\n4Bg3+/8QapBk6HAIpxP3NgLGvIVzfUACdeRUpjhrNeuiELbxN6hmxlvisnmP\nWryLgP8M3n+CXwbFq1C5IaXMjYieZhkGPfLl+OhM9lWuqUx88AxkT30Nvduu\nETDYZn0fMt0vI0Ppd56Vh6CRw9ti790oHQdSnMbBrNfOclLCXw3QbZWlMnU7\n5ZcPxAHf64E9WulnzflQKHSS4+UJAU/jMyeMaK3UsUjMvtD/XT1iilnd1qJ1\nThHO5VyLwDkBt87ytMzKDfvDuldmk4Mf93khasaJtIsrGRxxV3stXKJ8lNAz\nZVR2Lg2vs7gbop4+kX2hoVykuMiAO5aJna3tBKxqwAiyL1MdVeQoP9gfZrcL\nEAfAmyVwA89c0K6sBz/e1n5Ht65Jp1YyBwo+sCEH4zXEtqmvgksb4JicCfMx\nZeEhXWYUKiwF5nGLK249uIGzUfIhbRMQXHVTOisFf612WrNdFjqIxUtM30Pp\nv+2ElrBmxDbVm5bnNzJOwyQyngXJEKlu1wSHRdjsxwfnsy/kFZMEXYNf6ve2\noshe+xLUVbuH0Mkf8Z9RU054BV34XjgFb8k5LejmxVsg0Ts4/hs2i2kyy/VB\nlwa8usnsX5mJl2Fz394K6UEMtqMdwzMcIbbJrhnga2eWrK/YizUaFsGgVOs5\nexf+\r\n=N+yi\r\n-----END PGP SIGNATURE-----\r\n"},"types":"types/index.d.ts","funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"cea54a639842865c55f7234cc4eb4963ba18e459","scripts":{"test":"npm run format && npm run build && npm run test-coverage && npm run test-types","build":"npm run build-bundle && npm run build-mangle","format":"remark . -qfo && prettier . -w --loglevel warn && xo --fix","test-api":"node test","test-types":"dtslint types","build-bundle":"browserify index.js -s hastUtilFromParse5 > hast-util-from-parse5.js","build-mangle":"browserify index.js -p tinyify -s hastUtilFromParse5 > hast-util-from-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-from-parse5.git","type":"git"},"_npmVersion":"6.14.8","description":"hast utility to transform from Parse5’s AST","directories":{},"_nodeVersion":"14.13.1","dependencies":{"vfile":"^4.0.0","hastscript":"^6.0.0","@types/parse5":"^5.0.0","vfile-location":"^3.2.0","web-namespaces":"^1.0.0","property-information":"^5.0.0"},"remarkConfig":{"plugins":["preset-wooorm"]},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.34.0","not":"^0.1.0","nyc":"^15.0.0","tape":"^5.0.0","parse5":"^6.0.0","dtslint":"^4.0.0","tinyify":"^3.0.0","prettier":"^2.0.0","to-vfile":"^6.0.0","is-hidden":"^1.0.0","browserify":"^17.0.0","remark-cli":"^9.0.0","unist-util-visit":"^2.0.0","remark-preset-wooorm":"^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hast-util-from-parse5_6.0.1_1604226054443_0.23712870211414083","host":"s3://npm-registry-packages"}},"7.0.0":{"name":"hast-util-from-parse5","version":"7.0.0","keywords":["unist","hast","hast-util","util","utility","transform","change","ast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"hast-util-from-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-from-parse5#readme","bugs":{"url":"https://github.com/syntax-tree/hast-util-from-parse5/issues"},"xo":{"rules":{"no-var":"off","prefer-arrow-callback":"off"},"prettier":true},"dist":{"shasum":"710e639257bd486eeddfc965582e03a73ed0b89d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/hast-util-from-parse5/-/hast-util-from-parse5-7.0.0.tgz","fileCount":7,"integrity":"sha512-ixvf0Ykz0cOgyGRD6VlBLap1wB0T1M7r7V9QbLlfTM3GSSBSVAYuDbi1Ob4K9+AE5mdeu47hq518cFM40o/T2A==","signatures":[{"sig":"MEQCIH3/xFdgt/rDx67jaWu0irLhuyHJVFSPUQtym+i7UH/oAiARfcObdpErFd5396tUDplIBrai4071+7+VeIhhbi4Cjg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21042,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgjZrjCRA9TVsSAnZWagAAHigP/3midc64hPEjKMAqQqU6\nNInSKyr8xIOXmINzaDsT5BpPBw4ajRmUAewbb5MTWXjHl2IB99gkWbt+8pyG\nqlJXMvG+c1NZRII/3/XHZU2FKyOrcvxFaOpEDckKIyQCJBdrEjgVgumPkvCN\njL0weAb6gPhWkPeg4xFfwuldZBKuYX8PjeZV8eCdzd7wpd6kqtOSlRt/sq5c\nel8EoW7JIobW7rMhibn/wSY51SMRvJHG5wQD06Re3/0YZI7mjZT+WNKtlSdm\neXsPKcLvNLjkMnsObXPsota3RAIGgZtzW3t4Ie60/PTvHvCefsunHprDxzwd\n3TiQcSydKNlemum7D2/fFUX2TmDUtOh/hBTlZ5h7heZpb0DIZ6SWadW/mvMy\nZSaz7jYDdML7TLB5SWdxUXqKFa6cQkc5LnFuoSB4hKpE22zHlZyiRs8z8V8/\n2xrlPKuZYIOkuqxYGaUfluyhOnqhtMu/FR5J7uoqfyFzMuHvCqp0kCcsOdNe\nA6Rg3VKKLVBe3Tqadt5OeQSX7/jQrZsbBedO4MRwwg6JKkGkXmMAdkahqF0d\nD3wktEPpHSuqG80Lwz9SUh/thcNpuyPo41mcryzyHo8TFFDthzKZOzbb7x87\nUUVqRXvY8XRUr+TVe4Ky9hNi6VWvTbBMSXNYsG0TtzNxAddd7nNauunCKlpw\nN1oC\r\n=H3JR\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":"1584594fe46a367e1e4ff69e3b14c6fe76eb0431","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-from-parse5.git","type":"git"},"_npmVersion":"7.11.1","description":"hast utility to transform from Parse5’s AST","directories":{},"sideEffects":false,"_nodeVersion":"15.11.0","dependencies":{"vfile":"^4.0.0","hastscript":"^7.0.0","@types/hast":"^2.0.0","@types/unist":"^2.0.0","@types/parse5":"^6.0.0","vfile-location":"^3.2.0","web-namespaces":"^2.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","to-vfile":"^6.0.0","is-hidden":"^2.0.0","remark-cli":"^9.0.0","typescript":"^4.0.0","@types/tape":"^4.0.0","type-coverage":"^2.0.0","unist-util-visit":"^3.0.0","remark-preset-wooorm":"^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hast-util-from-parse5_7.0.0_1619892963035_0.4545854880932554","host":"s3://npm-registry-packages"}},"7.1.0":{"name":"hast-util-from-parse5","version":"7.1.0","keywords":["unist","hast","hast-util","util","utility","transform","change","ast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"hast-util-from-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-from-parse5#readme","bugs":{"url":"https://github.com/syntax-tree/hast-util-from-parse5/issues"},"xo":{"prettier":true},"dist":{"shasum":"c129dd3a24dd8a867ab8a029ca47e27aa54864b7","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/hast-util-from-parse5/-/hast-util-from-parse5-7.1.0.tgz","fileCount":7,"integrity":"sha512-m8yhANIAccpU4K6+121KpPP55sSl9/samzQSQGpb0mTExcNh2WlvjtMwSWFhg6uqD4Rr6Nfa8N6TMypQM51rzQ==","signatures":[{"sig":"MEUCIQDerOsMbgkNkUYXHY4hYizBeYBODPNq827Fju90tRm3yAIgdPN0xtmkgm7HEcOisMOMrp0DEDr69Bs1pBTRnAgQyZk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21023,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg+omyCRA9TVsSAnZWagAAchwP/i6OGNGc1dbLztCvCN3d\nUKRiYQTuj2y6tjqMmqyZZHq9xF2Lbov3x2XVuomFil7H0Kw27NeNiRbfDzab\nz4Kepv8CTQ6sWfEtu2Tq757RWvjv4Ztl+iWAnVr7+2Om/ypBQ7thGdeqFIQH\npDAwBq1dKAhiarWoTTb+5nQruiSDFZDHc6hNQOlmc9JEx2ARJen3uted2b66\n65FpDqMM7e5Oo4f+RCbNcwlhSOOG9JY0EefDzXfeFsESYZ0l8Quby/AF/U24\nISnkEbLtM8MiNM1v3mV8Dr7UryLCJHbYQSiwX+gzvofFvv+baeGFMBguciAJ\n1hle53hiOPjwALbo3ZPxXe2ifSKVZpRyls4f0/1N9XeDYClJH3iyVWG+hzSA\nFt34CDK9+ab2t4XKb4gNdfD2ec3Y6PUKQRHyD1Rz5MX7vGJtfw8knFb70XF7\nPhUCyXGUm1zk8CrrpE3m0Rlh31xCfLRV+oTXgoT8HHEyPV7T8UBke5jHjFVO\nqF0N9NowDEvVm9WqOGyoCNkCWmBMd3T70W3UsVW2KgSMr8gaapRq7lZ6DqYR\nZ5HQw8Rj5fxdi/G3JtuXBHTFlI0hG8Q3yEzqizKgOP4ibawy+moVQ7QE2B6q\nhMQU+EXR7I7iq34F2mo/jTa2xvQaijzGa/IotV1aYA+Vd7AaZEDEGXCBFTnG\nxXJy\r\n=6ckx\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":"c5c68193659eab2da4be085766e8d28727f1d041","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-from-parse5.git","type":"git"},"_npmVersion":"7.18.1","description":"hast utility to transform from Parse5’s AST","directories":{},"sideEffects":false,"_nodeVersion":"16.2.0","dependencies":{"vfile":"^5.0.0","hastscript":"^7.0.0","@types/hast":"^2.0.0","@types/unist":"^2.0.0","@types/parse5":"^6.0.0","vfile-location":"^4.0.0","web-namespaces":"^2.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.42.0","tape":"^5.0.0","parse5":"^6.0.0","rimraf":"^3.0.0","prettier":"^2.0.0","to-vfile":"^7.0.0","is-hidden":"^2.0.0","remark-cli":"^9.0.0","typescript":"^4.0.0","@types/tape":"^4.0.0","type-coverage":"^2.0.0","unist-util-visit":"^3.0.0","remark-preset-wooorm":"^8.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hast-util-from-parse5_7.1.0_1627031986103_0.8126750516792276","host":"s3://npm-registry-packages"}},"7.1.1":{"name":"hast-util-from-parse5","version":"7.1.1","keywords":["unist","hast","hast-util","util","utility","transform","change","ast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"hast-util-from-parse5@7.1.1","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-from-parse5#readme","bugs":{"url":"https://github.com/syntax-tree/hast-util-from-parse5/issues"},"xo":{"rules":{"max-depth":"off"},"prettier":true,"overrides":[{"files":"test/**/*.js","rules":{"no-await-in-loop":0}}]},"dist":{"shasum":"1887b4dd4e19f29d9c48c2e1c8bfeaac13a1f3a0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/hast-util-from-parse5/-/hast-util-from-parse5-7.1.1.tgz","fileCount":7,"integrity":"sha512-R6PoNcUs89ZxLJmMWsVbwSWuz95/9OriyQZ3e2ybwqGsRXzhA6gv49rgGmQvLbZuSNDv9fCg7vV7gXUsvtUFaA==","signatures":[{"sig":"MEUCIDfSInLsRwjHwmAU0xCzIZqkKUp3qqTEClyU55u6EingAiEA8LetST+Ji9laawmTJX/7wdQZtBh4+bCygyN09IIiSDY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":24478,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjwED8ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrtBw/+MTzKiiDy5pJu4yedF4haOo33+ljrQ2f/t5sggOICkyMj924+\r\nwlt7deyY4k2C+Me5C5PnNo6zuJsof3DGezSR8bVHnJeh8fSepl6dBKvfK/Ap\r\n0waUcuXeuRhbnkklfaTr6giLf6pcw9G/qf713O6ja0ZDzTjQ8BvpGQ8C/Wkb\r\nlzVOTenteQnjRycFzfqS31Rfw97EJA/lk3jKSHvcsc26Qw1GkPrj7UAs15rO\r\n27ItS68akmk4TAKi/bOvqEWJJ+3isJx1h/RkqoLX/+/c7KmVZJHOxceZ+Nzf\r\npbpzEL8irMONiKHzQwol/lMKYD8ZOT1QVY2oqw/AhR6Rz9zPEsDQYqejl4YS\r\n5DI0z3lz3UAIEr4JCKfPa+sYs3fuZI2/0DLkribKLRqMxzJrEtg+eTOA1CKu\r\n2N5YcmY3ytkFe3/zn5wtjeFdgMl0Up2uljqwXbdnPI7I9t5z+OHJCXCFHPnG\r\nj1w4qi1VDUEwMPnCOUjmKqIGH2tRj1TzZKMQceE4RIFrb30UKZl3kb2KBKcI\r\nYvCcOaUAab0lKCqW/fEmq7YS1X1ayIG0golyiRnb+rX+btWCKFuAGTht3IWJ\r\nSejPRAN9SjWapDtaYNIfYoYSWijcAmm2lskBdS0Ihry7gFPT+Gi56eJCkn8a\r\nEIWt1rlh9IQEH9ou3fSRlhF+P2rHd4IqWpA=\r\n=uZIb\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":"5b70c189f0802b1cc2686411097f56c6ffa170c2","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/index.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-from-parse5.git","type":"git"},"_npmVersion":"9.2.0","description":"hast utility to transform from Parse5’s AST","directories":{},"sideEffects":false,"_nodeVersion":"19.3.0","dependencies":{"vfile":"^5.0.0","hastscript":"^7.0.0","@types/hast":"^2.0.0","@types/unist":"^2.0.0","vfile-location":"^4.0.0","web-namespaces":"^2.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.53.0","parse5":"^7.0.0","prettier":"^2.0.0","to-vfile":"^7.0.0","is-hidden":"^2.0.0","remark-cli":"^11.0.0","typescript":"^4.0.0","@types/node":"^18.0.0","type-coverage":"^2.0.0","unist-util-visit":"^4.0.0","remark-preset-wooorm":"^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hast-util-from-parse5_7.1.1_1673543931856_0.0780117900361339","host":"s3://npm-registry-packages"}},"7.1.2":{"name":"hast-util-from-parse5","version":"7.1.2","keywords":["unist","hast","hast-util","util","utility","transform","change","ast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"hast-util-from-parse5@7.1.2","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-from-parse5#readme","bugs":{"url":"https://github.com/syntax-tree/hast-util-from-parse5/issues"},"xo":{"rules":{"max-depth":"off"},"prettier":true,"overrides":[{"files":"test/**/*.js","rules":{"no-await-in-loop":0}}]},"dist":{"shasum":"aecfef73e3ceafdfa4550716443e4eb7b02e22b0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/hast-util-from-parse5/-/hast-util-from-parse5-7.1.2.tgz","fileCount":7,"integrity":"sha512-Nz7FfPBuljzsN3tCQ4kCBKqdNhQE2l0Tn+X1ubgKBPRoiDIu1mL08Cfw4k7q71+Duyaw7DXDN+VTAp4Vh3oCOw==","signatures":[{"sig":"MEQCIF8ZJNozs7JZCxGRTWXGxmK91yQfTMfKHxXfVCA1IDYcAiBULMWpEA2MWLBcesk0plojWFqRJjq5FKq/Xr7DJac9GQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":24841,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj7faQACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoGEA//UVApxxMPho3kwFVrH0z8/UBGOnXAIQQbyOGrgybADH/DDVTU\r\nupjIy37NqMcmUFoV7b1n+RDITXxdfNXb+3cPwlabGQ3oEUK5yZ418xnl9Qgt\r\nD4k5XKSJc4C9O2WbeCTLWFSyRsPqYw/zTzCkfOB2FQcucdIkhAEpOTURkNQ4\r\nbq5Pc6GTMUXKDOci1j8u9HmsdBbbMsXlxOyD/SirHA1FvhSroTEnyKwIIrU5\r\n5mvLKsfNuWkhk6y33V8j7bmheYVU2/Fnr2FMAAF+Vs/z4gaFXfLPhBlKx/4K\r\nh+5Pkv0j3ebYPLMFvLRMXhYwO1FxxDxk9ZmC96KXvarY9/oK9AYYLziLSnIX\r\nbE8c1EdtbFJ6kAsI61Gr9LLCmJ5GiQ0z3RiTnlbcZAn+29JlOg6QIDG/1zs9\r\nkXB9hETgoraWJv7xm1m2QG0NEqJZT6w9+SlIAgXInB86C8Jhwjw3DsrGIgMC\r\nWA+HgMwfQ8oWD1mZVFK6OfWH9d2kZrjp4zmrC6HlYQLjVHdN9gLddgeaXGUM\r\nnkTTTv9hQeonUPrZS7ydMpZoJCox2ply5wGawoYALNe3xbGFxgNGZwxe/Ral\r\ndhTeKMjCC5JbYr6h74enGTBhdBQQ8p2iUw3hsq3j2Yb1+5ggee5CAnlzXXfJ\r\nc/HW6OxhwNcQV1yVbAVLNlL+ia7gELbbjPE=\r\n=mCgW\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":"9b0f577173d96e5d41b45e09e98230922361e8e5","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/index.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-from-parse5.git","type":"git"},"_npmVersion":"9.2.0","description":"hast utility to transform from Parse5’s AST","directories":{},"sideEffects":false,"_nodeVersion":"19.3.0","dependencies":{"vfile":"^5.0.0","hastscript":"^7.0.0","@types/hast":"^2.0.0","@types/unist":"^2.0.0","vfile-location":"^4.0.0","web-namespaces":"^2.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.53.0","parse5":"^7.0.0","prettier":"^2.0.0","to-vfile":"^7.0.0","is-hidden":"^2.0.0","remark-cli":"^11.0.0","typescript":"^4.0.0","@types/node":"^18.0.0","type-coverage":"^2.0.0","unist-util-visit":"^4.0.0","remark-preset-wooorm":"^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hast-util-from-parse5_7.1.2_1676539536777_0.9694923328863374","host":"s3://npm-registry-packages"}},"8.0.0":{"name":"hast-util-from-parse5","version":"8.0.0","keywords":["unist","hast","hast-util","util","utility","transform","change","ast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"hast-util-from-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-from-parse5#readme","bugs":{"url":"https://github.com/syntax-tree/hast-util-from-parse5/issues"},"xo":{"rules":{"max-depth":"off","unicorn/prefer-at":"off"},"prettier":true,"overrides":[{"files":"**/*.ts","rules":{"@typescript-eslint/consistent-type-definitions":"off"}},{"files":"test/**/*.js","rules":{"no-await-in-loop":"off"}}]},"dist":{"shasum":"8e3aeb3602658d53edd270830ffe89049d5fa0e5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/hast-util-from-parse5/-/hast-util-from-parse5-8.0.0.tgz","fileCount":7,"integrity":"sha512-sFjedEbYjBTM8XEkcdWiiH7ueWBD7+51qD+Y10YYXhyRMvrkaMDC1a6IFVlSzuVr3gtKNjOOaCCi7IgNUjmiMQ==","signatures":[{"sig":"MEYCIQC4EWztnQFVP0EPCtpARCOyeFq99sGUs0e290e+Lz9rMAIhAMwEl6zRsoGs2/71ZsPeIVXzTYoP+QldnG0fBagEnrGY","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":26271},"type":"module","types":"./index.d.ts","exports":"./index.js","funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"abb5a9af478fd5da49535e1fecad270203460ae0","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/index.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-from-parse5.git","type":"git"},"_npmVersion":"9.7.2","description":"hast utility to transform from Parse5’s AST","directories":{},"sideEffects":false,"_nodeVersion":"20.0.0","dependencies":{"vfile":"^6.0.0","devlop":"^1.0.0","hastscript":"^8.0.0","@types/hast":"^3.0.0","@types/unist":"^3.0.0","vfile-location":"^5.0.0","web-namespaces":"^2.0.0","property-information":"^6.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","to-vfile":"^8.0.0","is-hidden":"^2.0.0","remark-cli":"^11.0.0","typescript":"^5.0.0","@types/node":"^20.0.0","type-coverage":"^2.0.0","unist-util-visit":"^5.0.0","remark-preset-wooorm":"^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hast-util-from-parse5_8.0.0_1691222669114_0.5613697954559334","host":"s3://npm-registry-packages"}},"8.0.1":{"name":"hast-util-from-parse5","version":"8.0.1","keywords":["unist","hast","hast-util","util","utility","transform","change","ast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"hast-util-from-parse5@8.0.1","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-from-parse5#readme","bugs":{"url":"https://github.com/syntax-tree/hast-util-from-parse5/issues"},"xo":{"rules":{"max-depth":"off","unicorn/prefer-at":"off"},"prettier":true,"overrides":[{"files":"**/*.ts","rules":{"@typescript-eslint/consistent-type-definitions":"off"}},{"files":"test/**/*.js","rules":{"no-await-in-loop":"off"}}]},"dist":{"shasum":"654a5676a41211e14ee80d1b1758c399a0327651","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/hast-util-from-parse5/-/hast-util-from-parse5-8.0.1.tgz","fileCount":7,"integrity":"sha512-Er/Iixbc7IEa7r/XLtuG52zoqn/b3Xng/w6aZQ0xGVxzhw5xUFxcRqdPzP6yFi/4HBYRaifaI5fQ1RH8n0ZeOQ==","signatures":[{"sig":"MEYCIQCu+EBVXgWnHAWKvyFSV+LAclZe37RTfNiQgoLpwom4sgIhAP10ftSkvhUsAX4sGEHU44q6YEG1Dx9Os3lyr8ryHjZe","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":26318},"type":"module","types":"./index.d.ts","exports":"./index.js","funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"d33d275c2c31426215bfb8fed01a0760733b8796","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/index.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-from-parse5.git","type":"git"},"_npmVersion":"9.7.2","description":"hast utility to transform from Parse5’s AST","directories":{},"sideEffects":false,"_nodeVersion":"20.0.0","dependencies":{"vfile":"^6.0.0","devlop":"^1.0.0","hastscript":"^8.0.0","@types/hast":"^3.0.0","@types/unist":"^3.0.0","vfile-location":"^5.0.0","web-namespaces":"^2.0.0","property-information":"^6.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","to-vfile":"^8.0.0","is-hidden":"^2.0.0","remark-cli":"^11.0.0","typescript":"^5.0.0","@types/node":"^20.0.0","type-coverage":"^2.0.0","unist-util-visit":"^5.0.0","remark-preset-wooorm":"^9.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hast-util-from-parse5_8.0.1_1691494224284_0.7539415656377881","host":"s3://npm-registry-packages"}},"8.0.2":{"name":"hast-util-from-parse5","version":"8.0.2","keywords":["ast","change","hast-util","hast","transform","unist","utility","util"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"hast-util-from-parse5@8.0.2","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-from-parse5#readme","bugs":{"url":"https://github.com/syntax-tree/hast-util-from-parse5/issues"},"xo":{"rules":{"max-depth":"off","unicorn/prefer-at":"off"},"prettier":true,"overrides":[{"files":["**/*.d.ts"],"rules":{"@typescript-eslint/ban-types":["error",{"extendDefaults":true}],"@typescript-eslint/array-type":["error",{"default":"generic"}],"@typescript-eslint/consistent-type-definitions":["error","interface"]}},{"files":"test/**/*.js","rules":{"no-await-in-loop":"off"}}]},"dist":{"shasum":"29b42758ba96535fd6021f0f533c000886c0f00f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/hast-util-from-parse5/-/hast-util-from-parse5-8.0.2.tgz","fileCount":8,"integrity":"sha512-SfMzfdAi/zAoZ1KkFEyyeXBn7u/ShQrfd675ZEE9M3qj+PMFX05xubzRyF76CCSJu8au9jgVxDV1+okFvgZU4A==","signatures":[{"sig":"MEUCICoyeYPvBmeGvff9N4wJl5ndn7UOy8y3X+MCSU4kWTkZAiEA4grVL+KF4VB9+jpqUK+oqLEW5NePjXgSxe85BBKIJBI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":24777},"type":"module","types":"./index.d.ts","exports":"./index.js","funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"3cff4a63fe824109bdee6b09a097d3d770e05a16","scripts":{"test":"npm run build && npm run format && npm run test-coverage","build":"tsc --build --clean && tsc --build && type-coverage","format":"remark --frail --quiet --output -- . && prettier --log-level warn --write -- . && xo --fix","test-api":"node --conditions development test/index.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-from-parse5.git","type":"git"},"_npmVersion":"10.9.0","description":"hast utility to transform from a `parse5` AST","directories":{},"sideEffects":false,"_nodeVersion":"23.1.0","dependencies":{"vfile":"^6.0.0","devlop":"^1.0.0","hastscript":"^9.0.0","@types/hast":"^3.0.0","@types/unist":"^3.0.0","vfile-location":"^5.0.0","web-namespaces":"^2.0.0","property-information":"^6.0.0"},"remarkConfig":{"plugins":["remark-preset-wooorm"]},"typeCoverage":{"strict":true,"atLeast":100},"_hasShrinkwrap":false,"devDependencies":{"c8":"^10.0.0","xo":"^0.59.0","parse5":"^7.0.0","prettier":"^3.0.0","to-vfile":"^8.0.0","is-hidden":"^2.0.0","remark-cli":"^12.0.0","typescript":"^5.0.0","@types/node":"^22.0.0","type-coverage":"^2.0.0","unist-util-visit":"^5.0.0","remark-preset-wooorm":"^10.0.0"},"_npmOperationalInternal":{"tmp":"tmp/hast-util-from-parse5_8.0.2_1732005888131_0.9415634299628173","host":"s3://npm-registry-packages"}},"8.0.3":{"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},"bugs":{"url":"https://github.com/syntax-tree/hast-util-from-parse5/issues"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"}],"dependencies":{"@types/hast":"^3.0.0","@types/unist":"^3.0.0","devlop":"^1.0.0","hastscript":"^9.0.0","property-information":"^7.0.0","vfile":"^6.0.0","vfile-location":"^5.0.0","web-namespaces":"^2.0.0"},"description":"hast utility to transform from a `parse5` AST","devDependencies":{"@types/node":"^22.0.0","c8":"^10.0.0","is-hidden":"^2.0.0","parse5":"^7.0.0","prettier":"^3.0.0","remark-cli":"^12.0.0","remark-preset-wooorm":"^11.0.0","to-vfile":"^8.0.0","type-coverage":"^2.0.0","typescript":"^5.0.0","unist-util-visit":"^5.0.0","xo":"^0.60.0"},"exports":"./index.js","funding":{"type":"opencollective","url":"https://opencollective.com/unified"},"keywords":["ast","change","hast-util","hast","transform","unist","utility","util"],"license":"MIT","name":"hast-util-from-parse5","prettier":{"bracketSpacing":false,"semi":false,"singleQuote":true,"tabWidth":2,"trailingComma":"none","useTabs":false},"remarkConfig":{"plugins":["remark-preset-wooorm"]},"repository":{"type":"git","url":"git+https://github.com/syntax-tree/hast-util-from-parse5.git"},"scripts":{"build":"tsc --build --clean && tsc --build && type-coverage","format":"remark --frail --quiet --output -- . && prettier --log-level warn --write -- . && xo --fix","test-api":"node --conditions development test/index.js","test-coverage":"c8 --100 --reporter lcov -- npm run test-api","test":"npm run build && npm run format && npm run test-coverage"},"sideEffects":false,"typeCoverage":{"atLeast":100,"strict":true},"type":"module","version":"8.0.3","xo":{"overrides":[{"files":["**/*.d.ts"],"rules":{"@typescript-eslint/array-type":["error",{"default":"generic"}],"@typescript-eslint/ban-types":["error",{"extendDefaults":true}],"@typescript-eslint/consistent-type-definitions":["error","interface"]}},{"files":"test/**/*.js","rules":{"no-await-in-loop":"off"}}],"prettier":true,"rules":{"max-depth":"off","unicorn/prefer-at":"off"}},"_id":"hast-util-from-parse5@8.0.3","gitHead":"6fd23c9a4b53a6bce106ebc842de6f1727792954","types":"./index.d.ts","homepage":"https://github.com/syntax-tree/hast-util-from-parse5#readme","_nodeVersion":"23.1.0","_npmVersion":"11.1.0","dist":{"integrity":"sha512-3kxEVkEKt0zvcZ3hCRYI8rqrgwtlIOFMWkbclACvjlDw8Li9S2hk/d51OI0nr/gIpdMHNepwgOKqZ/sy0Clpyg==","shasum":"830a35022fff28c3fea3697a98c2f4cc6b835a2e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/hast-util-from-parse5/-/hast-util-from-parse5-8.0.3.tgz","fileCount":8,"unpackedSize":24588,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEYCIQC3v3mwcBQ45tVY1Hka5Sj97a/Ns8OuAXkTdSoSfIOFHwIhAKTtC/mC4SBdxWDEdIovLy0e4Somn9MQPaiaznqfs8Da"}]},"_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-from-parse5_8.0.3_1739976165475_0.7449299203985165"},"_hasShrinkwrap":false}},"name":"hast-util-from-parse5","time":{"created":"2016-07-26T12:57:11.840Z","modified":"2025-02-19T14:42:46.004Z","1.0.0":"2016-07-26T12:57:11.840Z","1.1.0":"2016-10-19T14:38:23.240Z","2.0.0":"2017-06-17T14:49:54.639Z","2.0.1":"2017-06-17T15:02:06.932Z","2.1.0":"2017-07-19T16:06:20.873Z","3.0.0":"2018-06-10T18:46:04.052Z","4.0.0":"2018-07-17T17:38:07.753Z","4.0.1":"2018-07-17T19:33:44.352Z","4.0.2":"2018-07-18T15:43:34.079Z","5.0.0":"2018-11-07T19:01:22.782Z","5.0.1":"2019-05-26T09:23:50.900Z","5.0.2":"2019-11-10T09:06:34.098Z","5.0.3":"2020-02-29T08:36:13.042Z","6.0.0":"2020-05-21T16:07:40.784Z","6.0.1":"2020-11-01T10:20:54.598Z","7.0.0":"2021-05-01T18:16:03.223Z","7.1.0":"2021-07-23T09:19:46.217Z","7.1.1":"2023-01-12T17:18:51.996Z","7.1.2":"2023-02-16T09:25:36.935Z","8.0.0":"2023-08-05T08:04:29.478Z","8.0.1":"2023-08-08T11:30:24.432Z","8.0.2":"2024-11-19T08:44:48.306Z","8.0.3":"2025-02-19T14:42:45.779Z"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"}],"readmeFilename":"readme.md","homepage":"https://github.com/syntax-tree/hast-util-from-parse5#readme"}