{"maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"timneutkens@icloud.com"},{"name":"anonymous","email":"tituswormer@gmail.com"},{"name":"anonymous","email":"remcohaszing@gmail.com"}],"keywords":["javascript","jsx","markdown","mdast","mdx","plugin","remark","remark-plugin","unified","xml"],"dist-tags":{"ci":"2.0.0-ci.50","next":"2.0.0-rc.2","latest":"3.1.1"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},"description":"remark plugin to support MDX syntax","readme":"# remark-mdx\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\nremark plugin to support the MDX syntax (JSX, export/import, expressions).\n\n<!-- more -->\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  * [`unified().use(remarkMdx[, options])`](#unifieduseremarkmdx-options)\n  * [`Options`](#options)\n* [Authoring](#authoring)\n* [HTML](#html)\n* [Syntax](#syntax)\n* [Syntax tree](#syntax-tree)\n* [Errors](#errors)\n* [Types](#types)\n* [Compatibility](#compatibility)\n* [Security](#security)\n* [Contribute](#contribute)\n* [License](#license)\n\n## What is this?\n\nThis package is a [unified][] ([remark][]) plugin to enable the extensions to\nmarkdown that MDX adds: JSX (`<x/>`), export/import (`export x from 'y'`), and\nexpression {`{1 + 1}`}.\nYou can use this plugin to add support for parsing and serializing them.\n\nThis plugin does not handle how MDX is compiled to JavaScript or evaluated and\nrendered to HTML.\nThat’s done by [`@mdx-js/mdx`][mdx].\n\n## When should I use this?\n\nThis plugin is useful if you’re dealing with the MDX syntax and integrating\nwith remark, rehype, and the rest of unified.\nSome example use cases are when you want to lint the syntax or compile it to\nsomething other that JavaScript.\n\nIf you don’t use plugins and want to access the syntax tree, you can use\n[`mdast-util-from-markdown`][mdast-util-from-markdown] with\n[`mdast-util-mdx`][mdast-util-mdx].\n\nTypically though, you’d want to move a layer up: `@mdx-js/mdx`.\nThat package is the core compiler for turning MDX into JavaScript which\ngives you the most control.\nOr even higher: if you’re using a bundler (Rollup, esbuild, webpack), or a site\nbuilder (Next.js) or build system (Vite) which comes with a bundler, you’re\nbetter off using an integration: see [§ Integrations][integrations].\n\n## Install\n\nThis package is [ESM only][esm].\nIn Node.js (version 16+), install with [npm][]:\n\n```sh\nnpm install remark-mdx\n```\n\nIn Deno with [`esm.sh`][esmsh]:\n\n```tsx\nimport remarkMdx from 'https://esm.sh/remark-mdx@3'\n```\n\nIn browsers with [`esm.sh`][esmsh]:\n\n```html\n<script type=\"module\">\n  import remarkMdx from 'https://esm.sh/remark-mdx@3?bundle'\n</script>\n```\n\n## Use\n\n```tsx\nimport {remark} from 'remark'\nimport remarkMdx from 'remark-mdx'\n\nconst file = await remark()\n  .use(remarkMdx)\n  .process('import a from \"b\"\\n\\na <b /> c {1 + 1} d')\n\nconsole.log(String(file))\n```\n\nYields:\n\n```mdx\nimport a from \"b\"\n\na <b/> c {1 + 1} d\n```\n\n## API\n\nThis package exports no identifiers.\nThe default export is [`remarkMdx`][api-remark-mdx].\n\n### `unified().use(remarkMdx[, options])`\n\nAdd support for MDX (JSX: `<Video id={123} />`, export/imports: `export {x}\nfrom 'y'`; and expressions: `{1 + 1}`).\n\n###### Parameters\n\n* `options` ([`Options`][api-options], optional)\n  — configuration\n\n###### Returns\n\nNothing (`undefined`).\n\n### `Options`\n\nConfiguration (TypeScript type).\n\n###### Fields\n\n* `acornOptions` ([`AcornOptions`][acorn-options], default:\n  `{ecmaVersion: 2024, locations: true, sourceType: 'module'}`)\n  — configuration for acorn; all fields except `locations` can be set\n* `printWidth` (`number`, default: `Infinity`)\n  — try and wrap syntax at this width;\n  when set to a finite number (say, `80`), the formatter will print\n  attributes on separate lines when a tag doesn’t fit on one line;\n  the normal behavior is to print attributes with spaces between them instead\n  of line endings\n* `quote` (`'\"'` or `\"'\"`, default: `'\"'`)\n  — preferred quote to use around attribute values\n* `quoteSmart` (`boolean`, default: `false`)\n  — use the other quote if that results in less bytes\n* `tightSelfClosing` (`boolean`, default: `false`)\n  — do not use an extra space when closing self-closing elements: `<img/>`\n  instead of `<img />`\n\n<!-- Note: `acorn`, `addResult`, `allowEmpty`, and `spread` are intentionally not documented. -->\n\n## Authoring\n\nFor recommendations on how to author MDX, see each corresponding readme:\n\n* [ESM](https://github.com/micromark/micromark-extension-mdxjs-esm#authoring)\n* [JSX](https://github.com/micromark/micromark-extension-mdx-jsx#authoring)\n* [expressions](https://github.com/micromark/micromark-extension-mdx-expression/tree/main/packages/micromark-extension-mdx-expression#authoring)\n* [CommonMark features not in MDX](https://github.com/micromark/micromark-extension-mdx-md#authoring)\n\n## HTML\n\nMDX has no representation in HTML.\nThough, when you are dealing with MDX, you will likely go *through* hast.\nYou can enable passing MDX through to hast by configuring\n[`remark-rehype`][remark-rehype] with `passThrough: ['mdxjsEsm',\n'mdxFlowExpression', 'mdxJsxFlowElement', 'mdxJsxTextElement', 'mdxTextExpression']`.\n\n## Syntax\n\nFor info on the syntax of these features, see each corresponding readme:\n\n* [ESM](https://github.com/micromark/micromark-extension-mdxjs-esm#syntax)\n* [JSX](https://github.com/micromark/micromark-extension-mdx-jsx#syntax)\n* [expressions](https://github.com/micromark/micromark-extension-mdx-expression/tree/main/packages/micromark-extension-mdx-expression#syntax)\n* CommonMark features not in MDX: n/a\n\n## Syntax tree\n\nFor info on the syntax tree of these features, see each corresponding readme:\n\n* [ESM](https://github.com/syntax-tree/mdast-util-mdxjs-esm#syntax-tree)\n* [JSX](https://github.com/syntax-tree/mdast-util-mdx-jsx#syntax-tree)\n* [expressions](https://github.com/syntax-tree/mdast-util-mdx-expression#syntax-tree)\n* CommonMark features not in MDX: n/a\n\n## Errors\n\nFor info on what errors are thrown, see each corresponding readme:\n\n* [ESM](https://github.com/micromark/micromark-extension-mdxjs-esm#errors)\n* [JSX](https://github.com/micromark/micromark-extension-mdx-jsx#errors)\n* [expressions](https://github.com/micromark/micromark-extension-mdx-expression/tree/main/packages/micromark-extension-mdx-expression#errors)\n* CommonMark features not in MDX: n/a\n\n## Types\n\nThis package is fully typed with [TypeScript][].\nIt exports the additional type [`Options`][api-options].\n\nIf you’re working with the syntax tree, you can register the new node types\nwith `@types/mdast` by adding a reference:\n\n```tsx\n// Register MDX nodes in mdast:\n/// <reference types=\"remark-mdx\" />\n\n/**\n * @import {Root} from 'mdast'\n */\n\nimport {visit} from 'unist-util-visit'\n\nfunction myRemarkPlugin() {\n  /**\n   * @param {Root} tree\n   *   Tree.\n   * @returns {undefined}\n   *   Nothing.\n   */\n  return function (tree) {\n    visit(tree, function (node) {\n      console.log(node) // `node` can now be one of the MDX nodes.\n    })\n  }\n}\n```\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, `remark-mdx@^3`, compatible\nwith Node.js 16.\n\n## Security\n\nSee [§ Security][security] on our website for information.\n\n## Contribute\n\nSee [§ Contribute][contribute] on our website for ways to get started.\nSee [§ Support][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][] © [Titus Wormer][author]\n\n[acorn-options]: https://github.com/acornjs/acorn/blob/520547b/acorn/src/acorn.d.ts#L578\n\n[api-options]: #options\n\n[api-remark-mdx]: #unifieduseremarkmdx-options\n\n[author]: https://wooorm.com\n\n[backers-badge]: https://opencollective.com/unified/backers/badge.svg\n\n[build]: https://github.com/mdx-js/mdx/actions\n\n[build-badge]: https://github.com/mdx-js/mdx/workflows/main/badge.svg\n\n[chat]: https://github.com/mdx-js/mdx/discussions\n\n[chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg\n\n[coc]: https://github.com/mdx-js/.github/blob/main/code-of-conduct.md\n\n[collective]: https://opencollective.com/unified\n\n[contribute]: https://mdxjs.com/community/contribute/\n\n[coverage]: https://codecov.io/github/mdx-js/mdx\n\n[coverage-badge]: https://img.shields.io/codecov/c/github/mdx-js/mdx/main.svg\n\n[downloads]: https://www.npmjs.com/package/remark-mdx\n\n[downloads-badge]: https://img.shields.io/npm/dm/remark-mdx.svg\n\n[esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c\n\n[esmsh]: https://esm.sh\n\n[integrations]: https://mdxjs.com/getting-started/#integrations\n\n[mdast-util-from-markdown]: https://github.com/syntax-tree/mdast-util-from-markdown\n\n[mdast-util-mdx]: https://github.com/syntax-tree/mdast-util-mdx\n\n[mdx]: https://mdxjs.com/packages/mdx/\n\n[mit]: https://github.com/mdx-js/mdx/blob/main/packages/remark-mdx/license\n\n[npm]: https://docs.npmjs.com/cli/install\n\n[remark]: https://github.com/remarkjs/remark\n\n[remark-rehype]: https://github.com/remarkjs/remark-rehype\n\n[security]: https://mdxjs.com/getting-started/#security\n\n[size]: https://bundlephobia.com/result?p=remark-mdx\n\n[size-badge]: https://img.shields.io/bundlephobia/minzip/remark-mdx.svg\n\n[sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg\n\n[support]: https://mdxjs.com/community/support/\n\n[typescript]: https://www.typescriptlang.org\n\n[unified]: https://github.com/unifiedjs/unified\n","repository":{"type":"git","url":"git+https://github.com/mdx-js/mdx.git","directory":"packages/remark-mdx/"},"users":{"flumpus-dev":true},"bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"license":"MIT","versions":{"0.17.0":{"name":"remark-mdx","version":"0.17.0","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@0.17.0","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://mdxjs.com/","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"8797ed84e0df532d3f3ed372ea76eee700b57397","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-0.17.0.tgz","fileCount":4,"integrity":"sha512-e6YwKomZuxKANyMuoMvUa7oGcui+qm+aj7GxithOPc5+ksA7Zu9PjgHcMewSXZ0Z5Z5eHr5p1MW21B3wzQsxHQ==","signatures":[{"sig":"MEQCIF7howqweG1Oq8FOYG9AT7ME92yUw8F4KHHlvI66ToNCAiAsbAp/8vFxei8cdt0KBDUJtHlUXDn5if9s0kqs9yzbTw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6202,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcYbBHCRA9TVsSAnZWagAAJ4kP/2Xj6O+AdBIH3wWSdSiD\nl9KQW6PxyOtvEKhCkg3AjbAe9xHwjJmMztydnx2qA/8psVtto6PY+gp/AVyp\nzZvduXWv/qBmHZ3rsComrCU7bPCPQZoMIx9LhzaTr5RILnKQPwjc7xjhOk/t\nt/Y279lxp7W37A1+xfw9Jgce0H2dZaiZEtRCle015TRa0QBbC2t3YyYxmPnZ\nBsU7Oy9p4spQXfOIHg26zLK7p51OTfSaN/Gl5N+Xh4BmwnOsyc8/W3RwI/XO\nG4+cNd02+yrbXETd3CvMHUAPQiLXJ1WzWXD+3HgjjuVoUCmBhOjZxeXyRiMH\n9NilCNL24HcAT6N6/cigiT8VADkHiOjNlTARlpehSRBrNzqDBfPebl1zbaTx\nSTp8OxjDvBaN+H1HBCGyK9ec0C54MIg/r1X4LLpZq9DsEEuFtOzIxg2VgH7y\nWz9BHISSG89ddyQ5zhpXDC+jG5JLP84js1A8nXQmRJtddiEeQ0evppAX5C3e\nI/ElB5xvWOWCXdzltT+pZuAkpYPtBnyp5rwxCtKuutK0mqKhy7rw14Dwy7ED\ntMJwTrjkYeqtfjL7BaEzaX/fTfcV9RyYcjwYQKGoId1JN/VDXiUwOFpvrwoX\n8zGBsgX3QyJdfyk6PEtopBYrrdexN6MopR9uqofeNQVo65cOMO0h8sYZ4oLG\nnUoG\r\n=ASFa\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"74d9d3e231645a466272b0621260932e66777069","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"https://github.com/mdx-js/mdx.git","type":"git"},"description":"Support import, export, and JSX in markdown","directories":{},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2018 Titus Wormer and John Otander.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n","dependencies":{"unified":"^7.0.0","remark-parse":"^6.0.0","is-alphabetical":"^1.0.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^23.6.0","remark-stringify":"^6.0.4"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_0.17.0_1549905990517_0.3092702641672931","host":"s3://npm-registry-packages"}},"0.17.1":{"name":"remark-mdx","version":"0.17.1","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@0.17.1","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://mdxjs.com/","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"d31b05e8b49417fe2c84be6443c69c77ceb20321","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-0.17.1.tgz","fileCount":4,"integrity":"sha512-5Ufp941iPF5xxquz5qbGI2b/tEOyarbsw/Z0eb4q8DLY3XDUFzusmpdI8UpAFNVdphGl//vrmAp6qJ8/xTFBHw==","signatures":[{"sig":"MEUCIQD36+xNFUkmyGPg+j6Y+ktY9dVTHwah+A+tb9zVNE+wFgIgGCA91kSlpW3LgUmMiy7RGeZo2UApnGUfZo8wQx0nl+w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6211,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcYhp9CRA9TVsSAnZWagAAezkQAIzs62ndXTDk8HgYcYNd\nkjN7ApqtzkU5Zc6LVMv2BkldR2q+sE8id3NCBMpPsMRn/N9xvsPNvXX3WAqW\ngRqgWRROPEzjuImAiHQ/7wfCQKyNtcGr639si/fKKuEavYQa+2VBZZEGsyJq\nuMIBoWCC8Cnj7Ni64TIQorQtrnpYvE2U7F5nja7ze+5YnxMYFL92ZJejjHS4\nP++65gSb8mHKbYZryh8jo84S+U5CMuEOb42Wl7a6DcnDg3A4OfMkk4Eond5m\nlaD6R9+3IUxfqgRh42KaradNPuO/PpdcH1TY0uhjySrelxPhNta2aBCoP2TW\nWvV1j8H+9985rzEeO7NTZtlQcf9dLtqI2PX9r6Xn1TK+ej2tOvo/QDj5fC3j\nfsc1FOrbds0ZL5gdZ4vJ9ixrd1KrtdO6L+pxpAUKhJDJZDI1P8CdCqQ3KLBD\ns+KsiFLYkv/FriMGZNRQp6hF4AVcvHSZc9x8AFnLmXCZntJSIF2nyZ1sOMZz\nTajW/0XSF1BUNViYyL86BEGefDvRYO82EFGCUtA5SEp42XYsbAiVcM8Jnzcy\niJISPpr/D1byp6YCEUSryzrYePelGRw8lVNSH32YRL0MsxU31ILcb+19MfAP\nQu3T/+A9aBr8kGJLvEa30Paf1wbJzn9UZeBFykbu04H4dmV49ANsyMpQmSYN\nlWhS\r\n=5jQA\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"fac2cf91f27431c3084d8ef77215b7cf617f6a5e","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"https://github.com/mdx-js/mdx.git","type":"git"},"description":"Support import, export, and JSX in markdown","directories":{},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2018-2019 Titus Wormer and John Otander\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n","dependencies":{"unified":"^7.0.0","remark-parse":"^6.0.0","is-alphabetical":"^1.0.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^23.6.0","remark-stringify":"^6.0.4"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_0.17.1_1549933180424_0.6402504872898183","host":"s3://npm-registry-packages"}},"0.17.2":{"name":"remark-mdx","version":"0.17.2","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@0.17.2","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://mdxjs.com/","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"cc4ee44f472bfa4fbb0dee13ea821fc25581e033","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-0.17.2.tgz","fileCount":5,"integrity":"sha512-BM/viQ6UHGG/C5XyA7b038wEv691G6Di9F4gHrVcJggjV2dBpePUXHoYNfCQYzFU2mf2Z8zAraJHSRrKlRjSkQ==","signatures":[{"sig":"MEUCIAqV5+DRsKz0HVQqc5/46WCPC2tP3OlJvwaiR6c1eT6IAiEAgn85TSNBO6YkCp6vNmoXGDRSX0ytwSHbEsCh+ub1Xes=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":7397,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcYtmvCRA9TVsSAnZWagAAER8P/15y/CEmVl+rCumgPTBD\n/9N86AH1oGAzU8ScDjuTerASksWItWxH/BN6yatMGS7b65zxJU1lZnRflngF\n1K9/ZeJg1woQvLNUaAJwVdAGKWVmYGzpNTCioDzoIMVI8FHoHNWUwmtpEi+e\nMrTKfw1JQw71mGaY1crUZIkBdN5z5fPU/e5X9SZkTIGyUfkm6Oqe1V5RH45Y\nUOK7fZG1aWu8yqOJzOXlepNw35dQpO/gxasyaxBqY34VAeuKtYeXqvvDqDmS\n/AZkiRbKOKnTyZZNjIvgKDd2/4i0411Y0IsuGv7O6H8Ovgc9aAKUhCoTk70N\nkfeinrubIV2BNXGKXyUUVP07Voo0/56MVJoC2ajC+vasC1y5rbPfy+tDGDWg\nANmNG7SwL31pyqyFOTNOdU7IaNjkfNQ3HAUo38GNEQ8LVGfLbyBDu4nd3soG\nHYQJFEiYNIIDZEuJVYTD66sC1LyOlOUFoBMWTksvWBxXqbNaqa0khxvlDV+l\nptUf8H+oKtOVhl8sI16JHrxpbvPDknZlr4O0rEcLoRElKaeD2ILbp1a3EfyB\nkG5UJ6Qu7otoRVMczAOqa+PjuG2uNMLXm2BB8Flf+YRi2V3cK/TovCkksfSY\nt1I1teTURzuKWfqdNfy2bh+2UoT2izdcZZ3puJ7Tc+qqPUNJrGPIdo5q39Xv\nfYYh\r\n=788b\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"14d9b19a8998cf39c0e09acceadfc03041a9a128","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"https://github.com/mdx-js/mdx.git","type":"git"},"description":"Support import, export, and JSX in markdown","directories":{},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2018-2019 Titus Wormer and John Otander\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n","dependencies":{"unified":"^7.0.0","remark-parse":"^6.0.0","is-alphabetical":"^1.0.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^23.6.0","remark-stringify":"^6.0.4"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_0.17.2_1549982126860_0.9650362383842963","host":"s3://npm-registry-packages"}},"0.17.3":{"name":"remark-mdx","version":"0.17.3","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@0.17.3","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://mdxjs.com/","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"bfe5e46bfba837a4fc67067f18b19e7fb1f5d906","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-0.17.3.tgz","fileCount":6,"integrity":"sha512-iT+V7ESyqo60XtwRxAvegF+Kx/QSu4jRke6mTdLATKeIzJduj/OBlM+qPdcrRM3Vji3rLKw9txLVcRdGtILQRQ==","signatures":[{"sig":"MEQCIH11ueszCJ1hZGDmQ9GbnQ1Fok3Uqz/O5OqezBj5qT9NAiAcLbtLjFtGnIZrUMzZJmuYadk6/+4u0xpRNAxmVn9fwQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8901,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcZcHGCRA9TVsSAnZWagAAcx0P/1Y4zbaHR3wap97GmoWa\naeQbkxIXZ46REAVF+/BDyicBKKwzjDYVPlfZdSMUKbVuhV68yDJVQ5I3airx\nc9gLIxsirwUUX0FCdG/B4ZMsyJZbnjXLQfd02Jfjp+1qhmOLMTtF/pI+OOwA\nvZdQ1cbAtYmcMpdxQPF699GqkkqgdHbSmNsqAilHms+B1rcOkri0LMRPb7xh\nLzhrFoGXzeW0EQ7+7JWCfutuAzS35sGIL3hEveTLsUcLCzg2nya4TA/6qrME\nnBgnWhmfQ5JHlV9fKO2VDNB+p9esxHbxDkyQipKFoGPTKCG8gGTZrE9Vz7Ml\nXxE2X2bbMzRGDZIzLN/oaa/ct3sFqPctRV4ZseE9j8FSrHqp+Oy5mkNG2YVy\nxkC+SYoDJxcbc1SAzcZ94f4a8YNVu54eKB2pNAQtDw0IkeVVgScxZiPjDrY3\nuo0hfbUTd5m2+vbp/En9Dp3Hp/0KiW/O0NIjE2IBuv59hfxTbSytH8wzFCvL\nXrDxhswCsJHpWIHWbrx3kLaeueiboIfRzbtb8uUzAFMxBoFX78xKs8PyO8qN\nGqgomqtYSPKKDhG2/c7zD/HVCpHAB3EktSmOOhE4KsGRb7u1IqeaDezzAQkp\nZbfo4z/80LpNoKc0ziFUk0sWQTOCBnRhri643cZP/HuRgUiMqg+GKT/utwqT\nmLSh\r\n=n+i8\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"d987df9b31447eae1aed5431c7ac8129fffa4e3a","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"https://github.com/mdx-js/mdx.git","type":"git"},"description":"Support import, export, and JSX in markdown","directories":{},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2018-2019 Titus Wormer and John Otander\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n","dependencies":{"unified":"^7.0.0","@babel/core":"^7.2.2","remark-parse":"^6.0.0","is-alphabetical":"^1.0.2","@babel/plugin-syntax-jsx":"^7.2.0","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^23.6.0","remark-stringify":"^6.0.4"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_0.17.3_1550172613081_0.6222432123901935","host":"s3://npm-registry-packages"}},"0.17.4":{"name":"remark-mdx","version":"0.17.4","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@0.17.4","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://mdxjs.com/","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"0f68afea37c371743bdb37ebd9dcbadb014e460c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-0.17.4.tgz","fileCount":6,"integrity":"sha512-4C9qmcZdM6oEamR6arbTmxV1oeYqPgBfGeDVRZSetbKIS7nu7DcGWO+SH/7eXKpQLLlYCtMrlz4zKMbZE6YKBg==","signatures":[{"sig":"MEYCIQDa3Mr2zDSOo8tOr7JVC6nEULHFu6hE6GhbuePn8DiofAIhAMuzItnZJt/e/UMI7UkZRu4YltEGEv/GWcLCcpQ6lJEa","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8901,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcZupMCRA9TVsSAnZWagAAseoP+QADC7tP8ua4mp1C9WhF\nYpjSrUpWeCFm8VAxE1+247DVCpUgL1qHh+F2UVsiWQnE/CZrAzmVFtKK0/UX\nHscy7ofHz0/rK1keuJ0aSPNAfcWBzV375IQbKXxikxsfGMFgr0n0UBqmd0Kv\nzNUw5ZkqRFZrPf1/DDCZE0xL/Suzr4QRQWE9bvaD49xbPrzJQ6YrJxNV7fuV\nqljdNq6vrrraGtS8IR4l3OEJRsqYZ1A1g24774ckRxAykv9wpAHfbmyvpLv2\nlqNyFPjIz9KMPUsp2IbnHB8lmGYRrgtJFVMZHZ+5qwUHEArE1AdV+aAITiFQ\n9BMTpviauyFE+nTKKhTasX7Yne+y4Br4K8ZskSzL+F7VdovjcQXr5oXreseH\naWhT27TLg1uRNZMOSU+C4R8UjmKiy2h8RHV/xFVLYaNUFCMlHX9lAqp09GTx\nHU3X3u/Bf8/LtVplZR+MiXbDmbsJWtWknkBOQjiv5t0mKyX7bbcm43/mtXSN\n/OkLOY8ICYXLH+hqYH15p2TmWD1GPFWIm+CVCBD+daF4rxsUNHeY8R/bc3ue\nMb04gfSsXMF/xFKkrQYhlDgSaB1fWQCIDwHPDyR28GpQSWt9AK1hTrytPrfZ\nG5AIEX6fTU1laK+tWMzg0BkCzxQqZOI9UQZ8vtFWR2FnZRLtLvBaIUGhh+K1\nR3ug\r\n=ZBeS\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"f4ffb8222080032891a8b30346c9f8bbcf15be39","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"https://github.com/mdx-js/mdx.git","type":"git"},"description":"Support import, export, and JSX in markdown","directories":{},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2018-2019 Titus Wormer and John Otander\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n","dependencies":{"unified":"^7.0.0","@babel/core":"^7.2.2","remark-parse":"^6.0.0","is-alphabetical":"^1.0.2","@babel/plugin-syntax-jsx":"^7.2.0","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^23.6.0","remark-stringify":"^6.0.4"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_0.17.4_1550248524050_0.4554007911337159","host":"s3://npm-registry-packages"}},"0.17.5":{"name":"remark-mdx","version":"0.17.5","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@0.17.5","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://mdxjs.com/","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"96fcacd30b04c717dbfa67f62b38d146ef360a07","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-0.17.5.tgz","fileCount":6,"integrity":"sha512-J6+UvPKUvJhSGF12JWiJ5uyAEjX2FQDfwkX3YPuQNTbhZfSl1rdzkFL5+itAJsVQ7bQTvkAn62EdUNwyf+9YbQ==","signatures":[{"sig":"MEQCIDdBakHpNH7IQEoKUi5ep7nQmu8v68OaGns/vFBj8JKPAiBQdY16e8xr2hC72uN6ySWyTE14xU9rOHF/qWtOEPqugg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8904,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcZy0+CRA9TVsSAnZWagAAx7YP/3FykYi9bAeGQZl89r4o\n4pdVO8Axt1EG7btgnqGw+20z6+4cpVU4oJrU5TYehR7jUsDsvNWnU/kAAwdn\nijvsakaTVBmKiIyqkg7bcSbJZGuraiGs2KrFRQIdM1ZljYdPkP7yx/fgBDk7\npEJmFpCEPR/pvVf7hcbPNuBe01F75uAuVB+rDdqPTDemwO37Ma/g9K5/Xk27\nEBs16+/y8SK2uX6pt7neCAnNzT029K0wsQE8xKMirjKQSiHxZ5p07tqMA0Jn\nFX5wZOHqhqjiGvLDbZoSvs/TshtArOtZco5mAmFz/YJAM+21psaIF2hzm04A\n/cdk2vFVkARlPLMGUTs0M0RQpYLir8p0pS+8ViU2BZIzAKTtmQTlwdLIjOaC\n6FwOL6K3LqsIFr5/+SYL4Rh2wSUGpbvdvx/ergl9VGnck/284Svb5jPqvbuS\nvu23QOOJwyDi4RSCjpjs5w+8Tsr9lik/A5fpyFKTAZ/h22FKRJioCAH7Tp1j\nf3BDEysVIMUO6BIv88bdunHE4oCa0Z3cpDxmqCXDibX5ok20ZGL4lxE7ZWu8\nPFuntJ3OpjR28xqgguSELGK2fw/msetj3pLPL5yrQkC0Ajp8XEp7it2KCti6\nKNLNZdwj0KSSXrvzGOQxb3DuCW8MnUHggp20q+y1NUvmmQxPf0GvzL+4PGgo\nXRpB\r\n=yJHq\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"6137b50f5c34bd8a76391a5140872123efe04358","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"https://github.com/mdx-js/mdx.git","type":"git"},"description":"Support import, export, and JSX in markdown","directories":{},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2018-2019 Titus Wormer and John Otander\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n","dependencies":{"unified":"^7.0.0","@babel/core":"^7.2.2","remark-parse":"^6.0.0","is-alphabetical":"^1.0.2","@babel/plugin-syntax-jsx":"^7.2.0","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^23.6.0","remark-stringify":"^6.0.4"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_0.17.5_1550265661934_0.4941533460369325","host":"s3://npm-registry-packages"}},"0.18.0":{"name":"remark-mdx","version":"0.18.0","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@0.18.0","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://mdxjs.com/","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"0f3331e24df0e0ed5dd4dd5cc11ddfdecf7e8654","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-0.18.0.tgz","fileCount":6,"integrity":"sha512-vWT/mrJSZSwYbdlPWPe+3WsqDfEoxYioWGhZnPYVvEzJlH+fLJe2jp8fA57dVKhZifJ3Jo1Wwb7lTxdYHD7uSg==","signatures":[{"sig":"MEUCIQCWBTg6pYM/7IcmHp83jZLjY83QxhkkjAQkTnCJgrhcswIgE/BxEKi1vhTuf08aMikOxO5tB/hkhskxnHMMfJLHr54=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8904,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcdBTNCRA9TVsSAnZWagAAXPAP/3U2RUpSCL5StIL5Ljv0\nSVni4a72lhydKo6aXrU19HOS/Gxf9xFmZvquhQnaCOwj2iKWC7HXIsdjiN1U\nebcvCpuD9922Xq/cL1uD8iKjiegspObHJPQKDlViLdOSvHv6aANci5i4tqCL\nflDc+CJE0f+2xVGYs7/d1VMXPjR+sPjb+z/tzAWdq01IzWHYB67sZE8DtWIZ\nBBhqsXoVBF2YyNLjyQtEjW09T38YdJoGNn6XcBz63+iCHaYHSDRHVImCJ9zA\nAQ+iTrKA1OXR/Bi8mROY/pqUiSYrWegenEfm/UZvorYeAwGyIreXEWcwZd4q\n8owFokXD2zSEVTi60K9ytgRkTluBTu/IRob02GTiQPv8VeN2VxGPCuCWrUYu\nAnAMptP3tW2hfdetzADJ7mjCZj2f5FWrPdaeGUkFG46fd3i9gLzo6rG4jeb9\nCXew4RfVCVY0DqcnPXQw03qremyiWwluOdJhb4JoJXnucpvZAhlR8EwYKB2P\n95AlyYyyxOM3dIhZ+TLjYEtYP4PrUWtAL2rbz9S+YX8G4n0MehHwo1a4DlgB\nQ60/myr/er3nRrLumvzcn2jRpwo9kjzAYlA8Bw9hzFMIpiPskxWxejqRHh2d\nbo5j3o8R6G9s+YnsMK0Jr2oz6R1s/3j9HI7RlrNZkDQr1KpOUxQzmJoz5tDW\nazsK\r\n=y3ss\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"0c63b85f7b0ae6f5328bf97d692592ebaeeeb114","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"https://github.com/mdx-js/mdx.git","type":"git"},"description":"Support import, export, and JSX in markdown","directories":{},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2018-2019 Titus Wormer and John Otander\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n","dependencies":{"unified":"^7.0.0","@babel/core":"^7.2.2","remark-parse":"^6.0.0","is-alphabetical":"^1.0.2","@babel/plugin-syntax-jsx":"^7.2.0","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^23.6.0","remark-stringify":"^6.0.4"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_0.18.0_1551111372709_0.600584036102449","host":"s3://npm-registry-packages"}},"0.18.2":{"name":"remark-mdx","version":"0.18.2","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@0.18.2","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://mdxjs.com/","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"f93d30a1e13c2039ba969447c22a5ca59acf89d1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-0.18.2.tgz","fileCount":7,"integrity":"sha512-pYY00xzeiTaqpJckSEUx+BGkLMEamvYM/22qmXDRXIiHOwgi7jAsWhQY5oUWM1+aMuT9HYg25Lpjw/UJMAn5Yg==","signatures":[{"sig":"MEUCIFh0IG3JBFB8MzCh2fo1KOWryEK0V6kATUwvFi8rGJ6FAiEA+07J97GlVlohrpMVCHg+iWhsK+pJGpGrIjiQ0KLXuFc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":11676,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcd0EMCRA9TVsSAnZWagAAruEP+waP0gqBY9BXkTCXTuMb\ncexhjlcE57RrhXKAxo8zgyLpz3AeaxmiH1z4IkpWBfZIEn5IHEgbXJM5PuyY\nexSFbai9nIQtNhShVp0/MSOUcwgGcvvoqjyCnuqiH6AXBlI6/gKQfFPoM44h\nIHqzGbhkRU2+HxT17+DF1RLASo/x8cnVgLpafSAcd8Bdt2CBzjDiYDO/LDk0\nEBjZpP96hyM8YZQOQacI/EmKsBOQcomwVM/PdfrDutXWjjLKqH2iqreUG71K\nIgJGu+Q5/+WS1aa9nuOaXUZfxO6Uiv3bhw7DGUyfivUPZQYtxI0X52ididxH\nPOuMlDcrhVf9Qk6OCIthNNHBpY+9vQ1oo+t5UQq2+6SQxxMErlB4VvXtBjKt\nfP8syHumUkww2DY8ycZ5UXN1oeAKSFTCifVzSYAqXDSwgjcE6h4webbqOR0i\nIv4I+SI9GnA9WZDmmeLeai7HC4bGK7yPVGC/ze/6J7a+zjHdrLDj+SNun/2p\ndQn3OdwHuOs+SFPtLwOVQQbmRP/i8zXU7a9tUKG0zEJZrmEL+OsTE9hBkuTW\nRFJcOA7lZsbP0yddvamiROQ6YwCCik2ihR4fJmPytaDIfG3IxHc+mSCdCinO\n71mEVoaeNGWLBnirCYwOJO3lINB0EqMcMxwtnftUWLA5hXpZYyO3JQuqOV+Q\nJ83o\r\n=FzGV\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"5938d62f831141a98eff52ddafca7d302ce9b78a","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"https://github.com/mdx-js/mdx.git","type":"git"},"description":"Support import, export, and JSX in markdown","directories":{},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2018-2019 Titus Wormer and John Otander\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n","dependencies":{"unified":"^7.0.0","@babel/core":"^7.2.2","remark-parse":"^6.0.0","is-alphabetical":"^1.0.2","@babel/plugin-syntax-jsx":"^7.2.0","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^23.6.0","remark-stringify":"^6.0.4"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_0.18.2_1551319307435_0.33306527758639626","host":"s3://npm-registry-packages"}},"1.0.0-alpha.0":{"name":"remark-mdx","version":"1.0.0-alpha.0","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.0.0-alpha.0","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"538dccd831a658a7c5cc855bb0643f98dc522158","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.0.0-alpha.0.tgz","fileCount":7,"integrity":"sha512-A70xsCvKomRoNmih9sdjrmfrIeAAwPgteGfr9ep+RNnH7Yf52SWRR7To/dGDtdtcpBHgXObaSARDARhUX95iLQ==","signatures":[{"sig":"MEUCIQCXNKWbPjC0QN6WscDZTwZp6Wm1mthVEDZAEGVoDXlIZQIgb2xYXp7KVS+Wj5c9/VJ9kIN9eyUYZeiU2UKP8r5H3lQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":11683,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcf0g8CRA9TVsSAnZWagAAn0IP/3QADUXs8YG6f2t4U8Wi\n2uCdBQDnfDXwHIqsLqkN+lx5uGZCVGWh8CWzcFG95VqrL3vHilnClkWnBKwy\nkKuNyOpXmBkj2YjtxuYL/zRu43DZT6KTWSLJHX/1irYIerL2cQuRoQ5kyb0t\nmwVYUcaeKj1QB8g+BgU0XjZJDAn0mu9MejM8ZIbsEeqyB3urEjx2XZhhWxHs\nqfDgQLJdDeFbHkoMFMBJWTRlVprb382Ih+DWFvssJHBjFz6W1xkt5zG4ELFL\n2/4B1tVeDR2sEtxXeZNMf70ISlGDOZpynq4E6BWX2ninEOBxzngIAiCKeSDM\nvjJyVbxYUjES4BqK21lOiMh3W3PnbXNE5hWt+581hgmNJEHP4JN1Rt1Xpzye\nAMhXPv8BPdPAErEWZKSFbNI/IaFtOI6psa/45TuocpNLGMoAL4DEOZ3r5YIC\nZw7Y8rSVb6LEgHn5ctYdWJ9PaanJ2EnRaq2lQx8LeFxURNFeT+ZFuUGUmYW3\noEDZCvFQgl21g8OOVjPctO2vB5lX5ZiPyLSaaX9v86d82RwtNsetLGeZgwS5\nzPlLrJ0VtnLnUSIsfMgtmzryN05u1Ehr5IZMUI8pFjCgrx7oIOUy5PsiTQPy\nXD7Ww+mU5pKGPPcXjMAjrM9hMruYWoRuMeJ2n5E+HDCQBfjQqsrqVvX86Rfz\nZ0x5\r\n=btrV\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"1f71e1603ea65b65c51ffdbfe85304bae5c95587","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.13.1/node@v11.6.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"11.6.0","dependencies":{"unified":"^7.0.0","@babel/core":"^7.2.2","remark-parse":"^6.0.0","is-alphabetical":"^1.0.2","@babel/plugin-syntax-jsx":"^7.2.0","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"jest":"^23.6.0","remark-stringify":"^6.0.4"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.0.0-alpha.0_1551845436292_0.643374874708063","host":"s3://npm-registry-packages"}},"0.20.3":{"name":"remark-mdx","version":"0.20.3","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@0.20.3","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://mdxjs.com/","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"d3fbe9fce7f5219bc9346f6f22fee7043e174a11","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-0.20.3.tgz","fileCount":7,"integrity":"sha512-jliqMzu0N06LBrTCReRutwwZmMuGwGSha6b3JZ9/SrjY2glH01rOGsUPeZ3ABAUFR8rbYuTOVFUriIt8O1MrRw==","signatures":[{"sig":"MEUCIQC8zrKdfhHSYf5FMwegQuOLSDXrJlPXh1ZpiQF5ksrn4AIgJDqwYkv9oW7Ebzm+q8SogFjALt2j3g6S4hWBod4+5oA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12631,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcgAHsCRA9TVsSAnZWagAAN4UQAIetwCXs7h5kcIE+dP4j\nPK/qR5bl7YjwvkSlvwBsAetW+n4K01DPMZTWaFEX4BiM8NYhabCmT31GG6ZB\n4VohacdVOv/42MEWvjo2NI5yQ54jSloPQ96K63pTYdR9X+TBjG+rgSocbkyA\nKOnqhzg9LZFDSvbZmVo311Wk9k/2zilCS5B7alIB5duD2VN4+o0PFi2lHoa0\nsCQtEr6KE5qNY1a5LOwrUqvd31/WyTzmIdbOuyvbRQZTVGJDtcMSjb65UuNF\nFd/Z549QliFP3LGx7riRFftHIgkWehVcOknUGhkg0Hx2CSghUSUL9iG8l8WF\n+IroE0tvEK+RuifzGZARTMEgvg8Ia4bwRzFAf5yiNBCzt/V0BEKYbjNz6ZfR\nV2gVsLZTuRFZjmidsf1zMSgbq+GZXq5xB8inUVgCneA2gPnwXDSOp2UxAFjd\nNyOi6+JDEBsOLCiufyO6RELYL2VQx+gWJQQrLmRwVieBpwNYLTDJx6A8LMWr\nXt3WInJRKw+4pR/g5KK1jbW4ics5TNCkdiRoZVLQmt6WOmMc0I2Bn7qs4fsV\nvP5flWtS28lgO2ob5IW4BKTiGS/DJfBRluekeLy9WdTkf+Zt5cOZ7dXat9Fl\nd+uj6C/HGWAN10/MIrgJCcO/miwqR0UrHvWft0ww4VdMYnzYdkUR3z7J0f4J\n+sN7\r\n=usKm\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"f7a232c19a6f35f347a4bfbceecde6ef362d36ba","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"https://github.com/mdx-js/mdx.git","type":"git"},"description":"Support import, export, and JSX in markdown","directories":{},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2018-2019 Titus Wormer and John Otander\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n","dependencies":{"unified":"^7.0.0","@babel/core":"^7.2.2","remark-parse":"^6.0.0","is-alphabetical":"^1.0.2","@babel/plugin-syntax-jsx":"^7.2.0","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^23.6.0","remark-stringify":"^6.0.4"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_0.20.3_1551892971837_0.8178916010496573","host":"s3://npm-registry-packages"}},"1.0.0-alpha.1":{"name":"remark-mdx","version":"1.0.0-alpha.1","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.0.0-alpha.1","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"101a68bc9f21c4cf9e99f999fdce3ca00b0d068e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.0.0-alpha.1.tgz","fileCount":7,"integrity":"sha512-jVAavMyM5wFCMSAzMqQDj+zvggnyV6TVRneoXE8aGf+/OpwdRXaQq6zYPhVtTpHvvrlTI0OyqPE/ewICwtyJuw==","signatures":[{"sig":"MEYCIQCn+vKrIWt9UI6oj2SL7ylHiKfFYXKapZIdAGQqogE9QwIhAMW2qVYNGc0AjZaTABLlIuiJm1g1xbj5QDbqfSQ1HAPA","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12638,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcgEoMCRA9TVsSAnZWagAAaNIP/RXgfBN2ISp8doFXIqNV\nTFUTLoIVs9lSv9gDMAqm+VGFkO6GIUHSMQutaXUo9nR2EDUxZ5TMYDHQwgsw\nZ0qynd9iqJGAotrMsQuXlLYxqguhhZfDY7wE5xMBQBrTxR9uNrGsZWEuIYg1\ny7sQjeVCJY2kGuBJ7xYE1cOsZM5/n2+oRUPymasivoht2wzqYZP7eciJihEI\nUyhGZRNEa4haB8bOb+Gs3oBvE0il+5YiOxzVdnTDWpEf7PhOsji6AoykBCsi\n9efemP67HwYP8/rn3gDS5VWc8Uia4UhuppzW3dj1J+Eoa3tFawYu18hnXH27\nBIXnFm9TGOuWLlFMHD712TxljXf1LVP1L5u3NyXoJaVCck+AZtUJyIXdNA27\nJ+zlQFFSxIk3HHo/ffWXuZ3ikpfTFMiTfMO7e6Plyfa60IsDMUGBZQd90WRp\nzkWtVmS6aticWMyO2CFPr5oo87rbAHVOLzxlIzYYtWRnlO1Qr43bezf+z9kr\nLk9c6DT6DiU8KP1J8uznrJAzPvfdGhZR7+AHnHRH/pO6351E4WYYAViTCCcW\n/i47insAWhyH17/qrhvjBkUff+Th0zBH/x1gSOCB5hP5Kzn3P/HeBZPIyAOJ\nt5yB0KGRAQ5H5F8VPbw5yYv/rtn5LZVKLrQ2HTmI/FslNlw1g3H8gFXJikft\nYnwM\r\n=ciDd\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"ef167bf0c27575789b06f531e75dfd69e1467f8c","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.13.1/node@v11.6.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"11.6.0","dependencies":{"unified":"^7.0.0","@babel/core":"^7.2.2","remark-parse":"^6.0.0","is-alphabetical":"^1.0.2","@babel/plugin-syntax-jsx":"^7.2.0","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"jest":"^23.6.0","remark-stringify":"^6.0.4"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.0.0-alpha.1_1551911435633_0.7812589532580165","host":"s3://npm-registry-packages"}},"1.0.0-alpha.2":{"name":"remark-mdx","version":"1.0.0-alpha.2","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.0.0-alpha.2","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"b4aae0b72736b297ddd350c5fde6122d78e1685d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.0.0-alpha.2.tgz","fileCount":7,"integrity":"sha512-Ex2hZvS9F/9cYP1yEE/MzfBi5s6sfVWGVwa4f9S5wW9kt4fz0YC9K+LVDMAIDxfnSPca7WmB7J9EdiHbyNHq9g==","signatures":[{"sig":"MEUCIQDEZIk19/WTz2H5FGiBOIFWvbyCSxeb+r9gO+agevlBHQIgSOGTcRVgO5sKPQhnyLT6tAmkunXuTGEguYdHLHE6C7k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12638,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcgfKeCRA9TVsSAnZWagAALl4P/i2fiU/j0cwbvja8Ytwx\nWSmL2QtCSvNVsxiy9E9r4h0qPiYfT9YMBbKd+t4vxqxck64pktyMODuwp8Jj\nN/oJhnF+pT91RiyDi/Lk2PTKboQ8DEFzxAADgWSQbQHlucJujklbn06YuijZ\nfR7fTTYKlg8lwDqZE4rkKapKc//MgAchQLT0SVc/OSvoKiT0LuDFo2HjCiEY\nJPooT/px+tKe1YGVcdWrDnTSyQmBhc4K7tVin+nzVE3K/003P0XjB3f+evM5\n0nnxeZ/3K9P95nHIZ9108RT2BJ+IEAmvL77p01oWsMeh8t/lZGptxoTXpN4n\neCrk9oSU6WcdddTNnN9qz5NnGdAIXu6gGKJgDMP430JLDt3dQgzuqYM4CXzC\n6X2H8JBIsHJsZi6UpgEWbO67TQ9YR/jJWda34e5TUQ9y9wLVx511ASUDixkE\n3jxVvUsy6fYkrsnM4EQPPW7GrN7CNGElD+1AByGkB98za4dZEK7BwGwk2aQ9\nrlCuClW50t/QBhz2Tb2GQLaWstKPMPKWA2jlDyma7nOyD1syDEXpwuzTS+mP\ngcq7kppJIjGW0GWS/tfab/XmiuFp2HeyeuXC/5WEe/XZK7DOB3bgb3Hlpb0n\n76fc2lWt+KzCIlJSFaNXsj7JMAe2DhVdhPU6n4PGuBanExMY6bhoD8KRV3Ob\nDUDD\r\n=mXlp\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"86bc33ac88158109fffd8e04274e3f3dff4fa6d7","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.13.1/node@v11.6.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"11.6.0","dependencies":{"unified":"^7.0.0","@babel/core":"^7.2.2","remark-parse":"^6.0.0","is-alphabetical":"^1.0.2","@babel/plugin-syntax-jsx":"^7.2.0","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"jest":"^23.6.0","remark-stringify":"^6.0.4"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.0.0-alpha.2_1552020125960_0.9237489961760628","host":"s3://npm-registry-packages"}},"1.0.0-alpha.5":{"name":"remark-mdx","version":"1.0.0-alpha.5","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.0.0-alpha.5","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"662c6ca60138e69f23a008653b4fc9a508cd2bbe","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.0.0-alpha.5.tgz","fileCount":7,"integrity":"sha512-r2BP1ugi883gc87WUKZ2GMt7R7kMoNd9rk2v4+j3ztBcTYkcsw4idG+zvEmpqesE75jioynZTzhWreFfBOUaDg==","signatures":[{"sig":"MEUCIAIM7XLvbgoiKm6YGC8HbL/oKyBpl9JntOtfLUgJPsfnAiEA4ikYJhj4rruFH6QLcezySVYoyWAOmytMetNildA+SFc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12638,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcgr8LCRA9TVsSAnZWagAABMQP/jAn+Impt1EQZJ4huWck\n43K1obPO5WwKm8m6qeVrVn9MA/hIy8O0aCV59oLCwvbsm+RC5goiK4J2ZAFj\nr3i0kQbBDaMWGIBW961fMDHnFtauM/BofMtzTg1HGtyodei2No9cEez7bx74\n89Zfkh75puHEhQnTe8nT8zfRR7gySfqTE02UE1nopb4+sPNQQ+8+ecehtcN2\nrjiVU71WxDfuwAD+C32sE9rQoarPZKLR/DbWLXSwBki5TLE7FQSc2FxHDl0d\nopClcFoKaIUs7mF01vlDGcGnOmCsxpmuSmFBTPPAYisC7R3d7m9owHDJE2yj\nfZF+FedXMJN4rByRJGvCpmUyIueiuzSb+kicxVkM31o+GO6SNsDMRuegz5AJ\nnurkPRWKj79XWG/8Sc699BfGdrEYBJ88Piv5hvBB7xBuX3jQ5uZzYR6BPgEb\ngDD6a4tyBGVKNby/uqZoPMWOD7elD1Q01Nlu6mCOrIAP6TeR9gPZ7OST+jZV\nkw6vi3lWRWKUGYLTkxW566Q8ZD3zxZ/cCWGZqaB4o1MFaBNDGzoTs7XYay+t\nUwjRLXCPrFSOKDERTEugsOxQjPZa7HOodf4V65xLV2KdqV0WxOF3kQ2/5NA5\nEQPUL8JIHTzEGcBwnwACICXc9p7TYJEruWNVc63ecu2hPDYZVACzlrCAajJb\nlDWe\r\n=MkNx\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"2d6b7eed79928112910e073cfb953e8eaf55a989","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.13.1/node@v11.6.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"11.6.0","dependencies":{"unified":"^7.0.0","@babel/core":"^7.2.2","remark-parse":"^6.0.0","is-alphabetical":"^1.0.2","@babel/plugin-syntax-jsx":"^7.2.0","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"jest":"^23.6.0","remark-stringify":"^6.0.4"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.0.0-alpha.5_1552072459097_0.9387603208344351","host":"s3://npm-registry-packages"}},"1.0.0-alpha.6":{"name":"remark-mdx","version":"1.0.0-alpha.6","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.0.0-alpha.6","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://mdxjs.com/","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"bc1d2843b18c5c050a9140f1d3a52fe49c5a78ee","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.0.0-alpha.6.tgz","fileCount":7,"integrity":"sha512-I5yxu8FQFBufPPx6Nm5oPGWomAdAksTTbfsdLNkiB0l8zBMVtgyB4TaTQ4MkgTtlJzptfUpcOXACeJRFi4CKzg==","signatures":[{"sig":"MEYCIQDn/t/R48Fo1labdjjgL9hPj7JDLbm1nNbZ336tUY5/pwIhAOvnTx8iY+jkiQfGeAhpJepdT8fbgSpVSEsfIepa5yQe","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12932,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJchpFmCRA9TVsSAnZWagAA84kP/2FSP73vhxKU51Pn7trj\ncms1p8pg6gOU1ffDWvxbHycpsFH/qQ9nOWUPN1b6zg72pOWoDkMOJfrCoqJN\nn5yHseT1JoAor5WDi5FCkpFwX2UUiESEM4r70ruWL2NhJWKLUstlCITM8hGz\nW8wINvTITD9i1gyJFF8Q7H67coygjcSkMzzH1ABM2RqLNk7aqj3mhLPjCmfe\ngQoiqoIaYZO8nkTNWzwOsoRVn96QIugDt8PYM/XyXlPNsEhk5FSQT4IUfBG8\n55vxnVDDDeiOz1P81auI46agaTYRDNXmQrCiQGOO7K7cAhU3aReonbOQDk9B\nohCsbiMtDO0YoKChKGpL4nNsgj19RXHyb3LPrlW5uLXoLTLX1kq28C1qnS+m\nY/oALoefNxJmGID9p6z99Lyywg0Tc1WJYQDozLkJjxHa59OyDEdpsvh3w1n+\nRQYi+Lo4DvwfwhOVXSXnOn1hRawJTJo2qsfIW01ORCH2H9Pm+xwgo99UbnTc\nLbXgfftFOYxzx0LctflinQ+M8Y5BHVePuKxdlIWzG2iw9OVanWdJ3/yx1PCy\n0VT4iEJ6zkxohvUiifdukkXSprFF1Qo2FWWCLP1wR+SviXPzuaiUoBJJQQLi\nL5Xiyc5XfHGbqhTW6SX6NRecpbldcmqASmEXpcUyvWjM74aD2jNikXpWu8os\n0B2C\r\n=puVM\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"126e0b7aef1e6fbf12527d70fdbd1ebb9206e334","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"https://github.com/mdx-js/mdx.git","type":"git"},"description":"Support import, export, and JSX in markdown","directories":{},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2018-2019 Titus Wormer and John Otander\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n","dependencies":{"unified":"^7.0.0","@babel/core":"^7.2.2","remark-parse":"^6.0.0","is-alphabetical":"^1.0.2","@babel/plugin-syntax-jsx":"^7.2.0","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"jest":"^23.6.0","remark-stringify":"^6.0.4"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.0.0-alpha.6_1552322916305_0.817610132929383","host":"s3://npm-registry-packages"}},"1.0.0-alpha.8":{"name":"remark-mdx","version":"1.0.0-alpha.8","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.0.0-alpha.8","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"650ac6490520c6c4c4bdde833ff0fa4f58f1226c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.0.0-alpha.8.tgz","fileCount":7,"integrity":"sha512-pO2lw8kL+sGRv9d924IId+2l8pOV3o6IKANXqrzH6in6sDNAka38giEWhUrkf2yqO50kOs3hhiikm534Zx867Q==","signatures":[{"sig":"MEQCIFkRoMmxdxEoeJdYjwyls7PmeBd0DQPSYqYWeImoVyzsAiBZfS7lpMgZcW3QAE4Ip3M1CJ/CKsqRbIcYnUO6fTXjrA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12930,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJck6fkCRA9TVsSAnZWagAAAdIP/2NJ4DZ04l+gjVqcOtPU\nEti4+PsCk7GDWvn69JVDexmkfoEpLZXpzhetxe0VaGih3foVmwNL3WW7oX/R\nSr1/lSFc3sIsmljHUjv2gK6/jLD7lGMoSGjik0iN1Z1UrChFeTTCLmYNcif/\npHnfXpUnBxWTG74y8tZVmdbwpQIWh1xeZmCdnLGOrqKzYNJB113Pg+6KXruJ\nJ0Y/y9cQXqenZvoLRin8qXQYJjSVSUDvixUikE5l1b/KPT945BAHGzmNn9It\nIdALyDWqW7WQfcpLK/83ICFTuPxlv6Uf1hHx6wI+eFF/YYC8tee7Gduhk1vO\nnSH4OTRvBQflXuxNhZ5h6fwEhnuGfvsx6zPXrQoIGhJfp5QU0dyiYWOMYfAS\njhmoq7OieYeBgilczrwKWRb4Woxbj5SkfA3H6v8nqgymelIyvMBS0LcjGq8S\npESDJUfwhLIDSZeKC2p462Rl18ltqK5N4mcY/5wO2HtGQByQgG6oR9VRqmZp\n7zhOkU7tvht71Cx5pUiIVKJLVOq6obb5ZR4jSGLVwPQcsBmn/6wJswTxv/PQ\n7Nwt7vsVWtCYR3pb/IXt3ot/5V+xTeE+ezyGJFR5PzNWgy1Nuwg6eChLHd4O\nZbfDs2l957EILsR5UDGGKw4iM6Iy54YuGLKzQXzhT4bKj9CgD48pweyQM3pY\n0EQJ\r\n=YIrv\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"a96f0fdbad6b791558816d0bf00cb25d6a35750c","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.13.1/node@v11.6.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"11.6.0","dependencies":{"unified":"^7.0.0","@babel/core":"^7.2.2","remark-parse":"^6.0.0","is-alphabetical":"^1.0.2","@babel/plugin-syntax-jsx":"^7.2.0","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"jest":"^23.6.0","remark-stringify":"^6.0.4"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.0.0-alpha.8_1553180643872_0.9707692673103858","host":"s3://npm-registry-packages"}},"1.0.0-alpha.10":{"name":"remark-mdx","version":"1.0.0-alpha.10","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.0.0-alpha.10","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"a822c2a01c4b8f5798bf3316215c4d4c42479cea","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.0.0-alpha.10.tgz","fileCount":7,"integrity":"sha512-WVSIEMqEjyuY2e3VoKSaISr99d9TrpLTovPRCVQba93p+4YJcjseQUt5SFmqpWwtevRh6SpOX7+t7FuS0BLPlA==","signatures":[{"sig":"MEYCIQDtXSSplvBPkSoqC5ZS6kr8tPKfkQHim5WItKb1FGGkTQIhAL/cqQWI4YTOnjRrUWKlMPPOJxW6C/b3ZNimTz4amyqP","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13000,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcm94xCRA9TVsSAnZWagAAf2AP/jjtr3XZqducTMg7JCXR\nIL/41PX/ssW+JA1SvWwJs0hmnH60rIEq+ypWOlKkGoTPGedLtm3EA733cwiF\nVMzmLw+TczQFjXZllyJE54p2ZIbSN4ybxxrT7OwVjcmZXBa2Kih+f6zKsM/Z\nz/Y+GgKXp++YoEASAQEO5kbAmkM5ln8Wyj68P+6Dvh0XxtFVRnhL7WD2lYKq\nWAyGdOUt3kjy7Ioci7XkZ3leEAdQTaIlupy4SqTR1IwgBMj/gu3HtqowjQIy\nbDJitKLaB5Tm9eu0aPrNV3ZXTNKcJQuygMZT384/tALYnSSyAEIhJp4Od7P8\nxL0Tta0mgJXw3nSu/gvAjCTqNfs5Hsq3Uquxe7x/AHl9VkCFI84afMzfdIuW\nQDl+LhmfOl2X94Bgd11PLG1dbffZ2uowD2LNUMaO1vu72IsgNPu3jq8ju5cu\ngtBgkwSjdCHlkybeWKGxxe6bVDzztue0DWnxanUupCN/ycL2H5wNKG7EB8sr\n2cmKKM4XUsz4d1F2jx+C9m2zhwj73HL+oMAjDedoH9savu+aZVJIsgWiWiuu\nrRG7BkUy48aThCq1FpKbaeqLKKZDnCaY9vFzoFoGBslk0WlfQ9o98bXW/h/H\nqTXuPYnK4KZk6hMquPFj5HIlAAwhaLYJ9BNbl+mVcpWCi84N6IOYIj4lJP2x\nrkeC\r\n=1URF\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"136542161bb24532db2fa9fd66bb95f6c3158fba","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.13.1/node@v11.6.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"11.6.0","dependencies":{"unified":"^7.0.0","@babel/core":"^7.2.2","remark-parse":"^6.0.0","is-alphabetical":"^1.0.2","@babel/plugin-syntax-jsx":"^7.2.0","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"jest":"^23.6.0","vfile":"^4.0.0","remark-stringify":"^6.0.4"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.0.0-alpha.10_1553718831052_0.03520898753236712","host":"s3://npm-registry-packages"}},"1.0.0-alpha.11":{"name":"remark-mdx","version":"1.0.0-alpha.11","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.0.0-alpha.11","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"82f591486ae8b640639c480aca312ec9b4085edd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.0.0-alpha.11.tgz","fileCount":7,"integrity":"sha512-w63IwixGAa9mnO8sZcmPkJXKKbHGfGyGNCKc9yAbbUiRlD1FBnCGUSvkjsXgKN7EPqyC9I6xy2Nyy8GYGUqf7Q==","signatures":[{"sig":"MEUCIGWd868d5VMV6uEzKZYpbAZdxSTkZ+44f93akdHBlRZzAiEA/YcJLQgga658rmKF9G4cvPBx+KBI7Xfuikr7GcWmelc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13000,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcnR3RCRA9TVsSAnZWagAAQ/gP/j/K5Fmf4KFOH0KG3O5Q\njdI6c5ggqq03BW/HgMM3sHs+6xZJpebcXjWDWS26Gov4ZsfB+nxaxG82oPmF\nb6lVSasnyoMFKZc15ub7QB2F0pFBJ5AYQOMXegsscq224SyIkcC+knHJc7Ss\nt6Oh5hMfrcNLc/XLY49nZTkmh6EEyWAS0LeYoix2FZSzKi/OxRp2O3c08mam\ni5nQ6VVoVbop4rvNMCeCcjI0jXswCyg84cbO2siHCPjgsLnyLfGraBlU5wkY\nK5Kzx1KIzJ7h2c2CeCEc2AV8hvwQX6rfHGwatwCnfi76YRWibIrIlQlscIwi\nbrN3MOuZrxmY30suRaWVQhpghZ0Qm3dys+hQu4qHLTjP12dqcyyviNZs8qrW\nu9OHAtTbzMoMvvXeNlZOSHS3dw/oic+pQ5OmPLePSFZd5NpwnoOhC9jE7MJp\nsT9jSZNrqABdlVhVHP0JCichyeDoVTGaA6RXIeWe8V5jhilnP/kIC+WrJW+d\nvMODlfMNjxJxa5LyjK72SBccVO46i+FcvRziBv/jOO/c0ewA4yPlhcNr+B8W\nx9bf4t9q9HZXL0UZHAODmQ4FGiv/xeUaozUEilRjMy0VamVxbj9nds8yY0zh\nmgqPjpyzd6kPba1aVlQNi/rOJjyBwvD8rjXgX9C8xqRT+fSWEqtpoz+D3c4V\nRnzl\r\n=kuGA\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"0e36efe107cbf891f55740bd9cb8c9e045876922","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.13.1/node@v11.6.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"11.6.0","dependencies":{"unified":"^7.0.0","@babel/core":"^7.2.2","remark-parse":"^6.0.0","is-alphabetical":"^1.0.2","@babel/plugin-syntax-jsx":"^7.2.0","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"jest":"^23.6.0","vfile":"^4.0.0","remark-stringify":"^6.0.4"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.0.0-alpha.11_1553800656278_0.9762787473410823","host":"s3://npm-registry-packages"}},"1.0.0-alpha.13":{"name":"remark-mdx","version":"1.0.0-alpha.13","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.0.0-alpha.13","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"39f1fa55996d9a55d8d83418d046926ef8fd7a88","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.0.0-alpha.13.tgz","fileCount":7,"integrity":"sha512-XgSCbCejpv6IDem9iyTLXgsVJ1X9UW/IeQU0Yi/k9Eqwynlare2t1/z989s2yD1kTdG+KTmjKsysvlrDnvvQcw==","signatures":[{"sig":"MEUCIQC9kSKFqoX1I/4+YsEN/8+Q9H3e7KCLe/boThk+SzJvggIgfRgqKQcxv8o8gleBqmmNYsSEsDp4YZdIImA9q6YrkzI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13000,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcnTszCRA9TVsSAnZWagAAea0QAKIcUyamZXNhx/fIw4YC\nYi+Xhe2XqnqmTd9vT1TcST5PbOR4ULAzin7CY0uwKY7T0b7U68Krmf5OgocP\n2joJbXImjNa5dkqHuZ50pzmZ9+t2xlQEZ9WUBYELan8ymPT+UoI1m8+fbS/U\nXqhrgX+pr+WUFq6Mg5Fi5EPlzJdJ7mRlf6iFzGWewucwYLL8tbnMhWAaz4j8\nJwjxCajeZezAAU1YmcU1ypqs4vPWwB6t7nnIuPNVqSr+1XZ0HgaklCwvc6Pp\nNyt0mX0PeGf1fes36bUcxEr/g1ei+yS0xNQoR8qy87L9w47M126g2Pzxk2lK\nuEyckEeVJo3qwO0BhuN7oL8J9yJOrFSzWSg8PRypMJFXGpsDBug0hJyVSgcJ\nwThkZNi70Hu5fWg4BJtfB7PWP/6Ezfe/M7jDlzkcRqJFyw7SzBdTgvN+fg3Q\nyi0doOdD2tg/b4gOw1Ea//ccgdlG943ANSq0vXpVZGpa2jTrE485tKije1Ri\n51j72VOcCdOo2TUrf2vBS2TpeWJoqQzozb0kckwv1xX/CU96bVql8dnlODVh\nDA0zpbJRMP/muRQJvkhi3X36z6I0YPHizyDo4k4Lsx6sbd8Eu7X0+nVcYCjo\nCFnvLgZViHcQmzGSBQ2bEwYXusSocYFI/fv5gZc6SriKU/0dlJiQRxijEcs/\ntXjV\r\n=gQnU\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"0fa7625c0938eddfa8d011d64ebd8f2b80431c36","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.13.1/node@v11.6.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"11.6.0","dependencies":{"unified":"^7.0.0","@babel/core":"^7.2.2","remark-parse":"^6.0.0","is-alphabetical":"^1.0.2","@babel/plugin-syntax-jsx":"^7.2.0","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"jest":"^23.6.0","vfile":"^4.0.0","remark-stringify":"^6.0.4"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.0.0-alpha.13_1553808178636_0.4061522268404991","host":"s3://npm-registry-packages"}},"1.0.0-rc.0":{"name":"remark-mdx","version":"1.0.0-rc.0","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.0.0-rc.0","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"c6886f208bf7ca06368fd10a123106af7284dbac","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.0.0-rc.0.tgz","fileCount":7,"integrity":"sha512-hCh7/HV8aSGGWRudqThCXsxuu6j3FaXh5x2nfqLysm+50la2evldzXWxZmBU15WoNwTP5W4akXKFad+tMt1Eig==","signatures":[{"sig":"MEUCIQDj+ZLzqK9xf9+ogCjqDO9Gd0rSgkQTlO97WP7bU5v5lgIgD7kmtdxUmkijDOEnCEawLDpxorba2UCjUEZ/My6QToI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12996,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcpjM7CRA9TVsSAnZWagAA+FcP/2FFz2DqoB05p7YWDwnE\n695W0NKSvKCEXUZ6YhWK1rsHMLJNd3b2UiPeLMtgMUrcT58EldG5dKlfTb3G\n28Iom4IMWNqQkTAwcViFqM/N3GScoEFATHxh02+gkrDB6PRFGKAFGbwqoz7b\nhZElNAcC9yF5bfdH3amW/KCCuk04uvaMRwCn45nHSaMJXew2uiWOtVWD58fM\nzizwsIFSXSZYeB+VJmd2HRDhZwN3JCUTLIcfNe7YDL9GRsUhnUB67A8SedKD\nexpHGy8YU1LduOZj+AukKZPCb9i5gxlYdsDwqNuDJnIA0bLbJBv3wffsEKHB\nXTvc6A8kw0oISav3Zm7AuEU0pKoJA2hTiNgRuZpbku+LVgcKSqHIlKzf4SZF\nXHM3TBJg+LRXlwB8D/eN6Llifm8W/CJ6NtZJavsPbxZmsha1O0ccbCRY+rJd\nJ6iY3XyjFcxsyQDjEO4CSci+f5xSfzoa0ZbraHPQ4IUROGzXIEfIMDPR0BCO\n/KU880YWj6AUFZU1Vlo8RDQtlP89IVW2pT9A19DN47Plt6AkMQ8CFD+RobBE\n/RekCTrL+MxX8Zswf7mQ/SMSHUGtCNJhNARkxQL//VVOsDBQmhl3LrPkXt0o\n249UpSUJOepKaG56ZujLkE6wgj/r0gQ/WPNWD8HXeGsfwdzbJI/orDY3bKPf\nPHni\r\n=FXWy\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"7e3aca092e6f3ab21ea1d0ad772d2f48963536c2","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.13.1/node@v11.6.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"11.6.0","dependencies":{"unified":"^7.0.0","@babel/core":"^7.2.2","remark-parse":"^6.0.0","is-alphabetical":"^1.0.2","@babel/plugin-syntax-jsx":"^7.2.0","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"jest":"^24.0.0","vfile":"^4.0.0","remark-stringify":"^6.0.4"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.0.0-rc.0_1554395963042_0.9359771447556562","host":"s3://npm-registry-packages"}},"1.0.0-rc.2":{"name":"remark-mdx","version":"1.0.0-rc.2","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.0.0-rc.2","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"df134a2c4a224063b74c5860497b71c397a786eb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.0.0-rc.2.tgz","fileCount":7,"integrity":"sha512-njmq+RCGDEh17Murp+fvaB+mM62zLcKe6QwGXe4iZHraUMoVJYBUhLVgkyE7/RUEs+hHhq91BIeKX0jBiaNOmA==","signatures":[{"sig":"MEUCIEFaVqlVZt8zsBs/BP2B1MS9nDSk9p2oWr2NJXfbodwAAiEAkzkcKxdMRP+r4KsQ2jF5Usl753xsgAuohwO8tLuPNrc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12996,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcr5aDCRA9TVsSAnZWagAA0hQP/1luPgNwaG5J64OIqDOb\nU4bevmh70C+xnl2418oHdSQwku2iVrnbJGcXCiu6ZpznLwJtEN0QWCHY98RO\nta+bh16qTq1/v/uw4G5VwEzCSIhGiJIvl4js3fWch2lAuXx1PSVH593Aqewl\nfaAPQI/8+OwbvXJUoZ5vV0KY0BvkYlzaztK5lngj4bvUr/htvCQ4plMixppG\nmLREkGj3dngZjcPL2gT/tOr8vg8XmUKxz0wE7vpCufRt3wfGZTeh35LcfnMn\nqeYuvtJLhWg3un9LCJ/N+WtbLAeIjV15qJPxVHxj36Q6TOjAoDtEQ0yEUMYj\nBgOhRDXyIDyjl+WBG8L2q3paZEsfbG0FdLb4GSdXKIuVK0WOa1pNdZk/6SgU\nal2BRXMY/22xJs0BjPQoeY0LHXfTjCS43rCeWS/foTbfpljABnk0JInZKFxh\noziA8JpFjvpifU85OMB/IqxOVNutOgdqWb16pqc1vNjURqdjp2QvaYU7g8ye\nV12V7IBgvltgBXJ6awDITEtZzOqQn5BeerJgM4zPl6Fkx8/gRrEFyoHKSk7R\nhj1rJv+aRYvAfnoSH2OXXqQCq3zUFsBuLjC/SmxKwasVE5jC4tNxgpwV9iU6\nqKbuhtDFDIDsbPnRD7/IwlORxObjm75b+/blnRCmmqMAuL/la3cPq96r/A3t\n5Iva\r\n=M4+A\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"08910268015df0ff1ebe8a66acc1f10cc790d363","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.13.1/node@v11.6.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"11.6.0","dependencies":{"unified":"^7.0.0","@babel/core":"^7.2.2","remark-parse":"^6.0.0","is-alphabetical":"^1.0.2","@babel/plugin-syntax-jsx":"^7.2.0","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"jest":"^24.0.0","vfile":"^4.0.0","remark-stringify":"^6.0.4"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.0.0-rc.2_1555011202705_0.7854826356789657","host":"s3://npm-registry-packages"}},"1.0.0-rc.3":{"name":"remark-mdx","version":"1.0.0-rc.3","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.0.0-rc.3","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"1a3dd4b8723d7366247c8103e0261a026ad14074","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.0.0-rc.3.tgz","fileCount":7,"integrity":"sha512-4LnoewdVQshiGBtNJSdhdRprtKHL/O9vrXdTnkUFUKnKlOdAkOiwXOnXp6QtiXV251gO5b+l7TTkyJiXjru/ag==","signatures":[{"sig":"MEQCIDor3nJ4cQudYfFjqEX4aSgMONxZWebI7ARYMf5MiGrTAiAPzL91FsOTbaPQ/gZd9ZIHApup4yVKGJri3EOaaCDpRQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12996,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcr6H9CRA9TVsSAnZWagAAOSgP/ij1X0M70Q1XdT7zZv6k\na0Tlua9p8g+TqT1lXsmUGmVylkfFm8vbsgM2DlRt3y0xNY5a7AfBzn9AcNwQ\n9wS1LZF5TS2LDW0qmWoMH/AnT1o249PEnotvYa+ZLrexBuPeQGSbsRNvq1nz\nLLws+o3MG/lsmuqAOR1G9p2SURa4ZpX0kR3x0obq3BdVEbym9DABA3BZksMA\nU1l1oJUncPSRNHy/yyXbL9cSTygxscyXIbBko8NiE7vrgO37bdLdTWGjAxNy\nqeqYPtBENeghl0Wyvqzv/boFuS0INgo6xu+OJ/99lMlTBYgIzjaBLR0KpZVR\njzc73PT4NKpO1Bhm+F7WY5l0hMqXTmVt+ROv3kSeHnL5MkMOySteNKyiP/gD\ny62A6Q7omz/xF+yaNJJkXRcfssWul2smYn7p1sqNJBRAHnhA3em/SGRD7/11\n9lAjWitk+zUUG4gmI0dDqxMxBkCNlwIgMH5bejlS4rq4kNbqhFVObJArLZTv\nCuRyEQ559VpJVOB9NVcUwowjoF/ro1lObL1gbBl6Yj+9ClpbSGpR1y8Qbr/s\nQc1whAroeZt5UUixmKh3uMh4ZqM+Mcas3YRA8UY3cSQBQMoeFK/hvRCdkZmb\naAVXgEHcRIKlfMlOQ413Y7I3J2FpVMK2KUpu8/oMw2PxdQnKxhhx/NshBfn4\no43v\r\n=m1gT\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"0ad5fff9cea6e147048ca6b70bdf0960080ad144","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.13.1/node@v11.6.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"11.6.0","dependencies":{"unified":"^7.0.0","@babel/core":"^7.2.2","remark-parse":"^6.0.0","is-alphabetical":"^1.0.2","@babel/plugin-syntax-jsx":"^7.2.0","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"jest":"^24.0.0","vfile":"^4.0.0","remark-stringify":"^6.0.4"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.0.0-rc.3_1555014140914_0.04692997233105478","host":"s3://npm-registry-packages"}},"1.0.0-rc.4":{"name":"remark-mdx","version":"1.0.0-rc.4","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.0.0-rc.4","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"a18b1903f007b626ee14ff61a2392cecb8506912","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.0.0-rc.4.tgz","fileCount":7,"integrity":"sha512-3F+2jq90VQDNGBLcLt6HoBqDXileXYYAzTsmRsohHFSAetwfB5ypjSFlsRE7lpmaLXItTK+2cKBsQuax66TGyw==","signatures":[{"sig":"MEUCIQCQvnNpLCdHcCzeYOp7ejqVHmcsvgB+JlI0bGVnrKPgrwIgWsRq4qmvKwnPhua9CvluNImg6WL56GH19AXLxdkkFTI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12996,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcr708CRA9TVsSAnZWagAA9SYP/jQdBqUSRjNmW4HQPx4V\n5Z/tm3HmMIEEvYeggSLRfYTQvztt3fuMjp+sW97pJiggL9BdSdjPf4/Mqis+\nSk91l67BzMCdlM0UFDzWKMI6x5ad+0GgkuP7+u8gsvhKl/L/KLaNWETaScEZ\ncVL1YMLhWLG1Kur+dhm7lpbvN33n+7upXFn9yEz23k8UwWz0d2B4G4MMMe4U\n2XAN/B5WZkUNt1W5rFpzWWjZfwjiNPzW/XdXLLujWtLJkzFE/FAntAUKAV+q\nmKFjEHf78q1OejQ9FCdPRNh6r2ZMpW3DPQu+erCLO1HGQve/RgUUcs0K1Vaj\nEh9S+SzSJ1jUyySvtYS7v5LZbS27A10P/tMrSy0+C9mPyQVpU7D5lcxpfJ5X\nxetZHThT1zU/gIVazBMN4xDjfZoohu23tIvJZzFSC91hwJY8CDY1qojV+EGa\nKjwjle3wuORgHqUEErtEikOFE/+Yp6yOY6cK242BIQMj9n6LPMaD/kb5tCgS\nvNYQioGWDXnt+5aubCjubb+L49nfveS8MGu+WP+5xsX1+YPvphwZVhv1YdyY\nFQvk7yqa7+BNHeYkJFfilfZrQn/EylRrKyatSSTgAv7e/IZAyDakWGOof0ol\nZid6s1rqCs+bOP0UrnddpkJGXgObCIFbvxfiqmMXiE+hCFhjgMYTyJ7q8qtA\nwE/x\r\n=pTv0\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"dfaaaefdda8bc2278e0a78530f1485684be9e6c6","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.13.1/node@v11.6.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"11.6.0","dependencies":{"unified":"^7.0.0","@babel/core":"^7.2.2","remark-parse":"^6.0.0","is-alphabetical":"^1.0.2","@babel/plugin-syntax-jsx":"^7.2.0","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"jest":"^24.0.0","vfile":"^4.0.0","remark-stringify":"^6.0.4"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.0.0-rc.4_1555021116003_0.22656489474031538","host":"s3://npm-registry-packages"}},"1.0.1":{"name":"remark-mdx","version":"1.0.1","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.0.1","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"fbfca84a5d1c92aea92410cd6d701d352e142bd1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.0.1.tgz","fileCount":7,"integrity":"sha512-PS+sfmHqMjrkHPqgTaOxtGF+gKOfzezQCvqv/RlqK9vabOVNKOBnP1wzM2jaoYSZ70KunXVTboRyKYpnT81tjQ==","signatures":[{"sig":"MEYCIQDIiPp/j84Zc7heFAjyb0k9c9nG0joPdPxvswLRlZEtvwIhAJilzKldiXmU16CgPwHm2S0EUTAwZknYjswqictWA9oc","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12991,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcr+sQCRA9TVsSAnZWagAA78YP/3n25V6F85SZlAcSfDA0\nV/WZt24o6xEKW1X7DQHG3qfBfuM+Kzrm/feIZFkjG/KLPesdPNsi3yLjGLge\n7YcCLwPuSrJ+eaZM3GofPs1YQEmuonRZ02IKQL9xccGIIwWamuMu0wXsI8hQ\nInSAcZsHZqlTtkP/VYDwMz1lYcoE41YWAutQeJthKEkCnE/vy2k7cG8gHQwd\nTCM84vAHH/W8VbBoXv1D48+0y03cd4KSc26lImvaAAEE/sV+jTA2eIKtkGOV\nl8tuRsgZqY+zky0tCXrK6nV2DUCzQNDQyrA1uFuxk/RjCbXmXHPtDId9OcAg\nQ3mpxgl7Q42RipdoTfWitgxeJkGYjRN0RUpceTpdV3ufrhmDvQ4f58UsM9oQ\n1afZu3nkmyr/jZMFu0yx6SA5+KbGYfdpWh7+DSD8/FDzry0xj1ol72L0E6wy\nMMIp6rWq7wWj+OE8R/r4AQzdsZDvCoZTZmw4DYCMSQ83I8NJf94ZV8NwSwjF\nRgJv8KQvoOYFMqkjgD2RYQ1MBrvbfZUtlpwUgLwtBD+T167lcMMNddR6Cklf\n64FlbnSJgZscNX268R/LveSkxZ6XTqa7DfKaTB7xPjczmYUUIcnvAayjOSkl\nHJ/K0wRFr29RPBuPBlJzYzaw+kWQJ70tTpcjKunlS3lmQuHWtDzrkBqXLpZU\nf0Yc\r\n=VxN1\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"426524fa07a2a258c9f7aa8818ca353335d799f6","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.13.2/node@v11.6.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"11.6.0","dependencies":{"unified":"^7.0.0","@babel/core":"^7.2.2","remark-parse":"^6.0.0","is-alphabetical":"^1.0.2","@babel/plugin-syntax-jsx":"^7.2.0","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.0.0","vfile":"^4.0.0","remark-stringify":"^6.0.4"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.0.1_1555032847222_0.9946152132477424","host":"s3://npm-registry-packages"}},"1.0.2":{"name":"remark-mdx","version":"1.0.2","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.0.2","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"858b2a0109f9b56e30b79fb4eba41be71ec3ec34","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.0.2.tgz","fileCount":7,"integrity":"sha512-j4jj0RvTQKRNqSeGEHHaPGVc3QX9fBwb+Y8pwRJopeUvy/44iaLpZObHjtg766CZPe2cPVOGu9gsnYFRg2CRwA==","signatures":[{"sig":"MEQCICFjxzWl5OTZZlm2VF91ufkdh7QRgtvMs526agRvBak7AiA0MENSy34Xpgmf7mOuBPTnKL0c9CLIUHzpeV3ebc5FNg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12991,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcsDToCRA9TVsSAnZWagAA/OAQAJhQnCYH6TeAJeBiMrut\nf3WMB4Dvo+zIxOzyoGlRBPdW0CVH4dCbZTQYGh3u0saUYXPbkiVbWKZ+PEzx\nRg1pTSNSfni0eEOxSgZz92adaSfo2cbwCOXnOOWIwwZcdYSk2N8/1v1QROFZ\nlzwJSxBIj2GaWu8cNI66nNq8rb7rZRXNEZGJC82GiVIusUECjirm9rYeg8v6\nLaqAbcfDTbuAkna2ufJUy4fb+TnGRywO3nmqnpFoK7B81gD6NKc6Yjlz5cuY\n/LH7t/4CG8IbKi1luLhNP7M/ZD9PP2uwYq8cYGV3bppq7b5bS15iItw46cGD\nRFGP9pUGWH8WLdR5BuCWqk5ueXP46b98xSHxVMTmLvsRsm0wHhkBxZG4UJvV\nEZYPLFCcvDTgSp+/nCGHNT7kONgM9DTkcFMQrEwt1WNMBeRpEJ3UbCSMqN6n\nA4mUVVlA5ja84uVxwDdH6DWzv/rUezGd2/gAt2sreld2Ur5upvgs8gqKQ0OL\nW+VpD7zmxTcW7sh24vNpCy/q3Y9xMXOC/rMKIG9ZrhrNgZFvrB2GyWHjwZIa\nUisg/AqoEv4S3zzm+hEWTgYkRHIMfWC0Y0OdCj7tJon3oAPi8+Fi8PkmSCVx\nVC3wSaMkl67mXl5jmrA3yzPyyrQpTFq7IFFZxBrCphMx/EF/psTIYWydvBHq\nZDLx\r\n=YzZO\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"0506708bed0ac787f605b0a97ef77d1954fa1275","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.13.2/node@v11.6.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"11.6.0","dependencies":{"unified":"^7.0.0","@babel/core":"^7.2.2","remark-parse":"^6.0.0","is-alphabetical":"^1.0.2","@babel/plugin-syntax-jsx":"^7.2.0","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.0.0","vfile":"^4.0.0","remark-stringify":"^6.0.4"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.0.2_1555051751683_0.4739196295005006","host":"s3://npm-registry-packages"}},"1.0.8":{"name":"remark-mdx","version":"1.0.8","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.0.8","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"ff76b6a543f525d7bd40a4268c8e4034ed708e3f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.0.8.tgz","fileCount":7,"integrity":"sha512-6MSDXzbkPW4PVGTdhDZzv+MOdESc3xhzOvIq0aDEokkiTpr6VtUNrLGiV+tdYBaxpMymsP3ZO4zNBvfb7HqFIw==","signatures":[{"sig":"MEQCIDYmI99OojMhoF50GV2fjQHm+czNQcQNJIpKKEnNzqWQAiAlZCjJFGNomCj8GKH1QrfuyhrhX71UnXJ2pHbbXn1AiQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13271,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJctjf3CRA9TVsSAnZWagAA0ToP/RRO9LLqPIEWaFADJ96i\n082/X1Uh/4ql1sAnMuhrNZhdVeK2vjZ3eo2LW7MhBXmZr+g7ui4yCpdGET4y\nnRqe8/g+qHEIF8mosnGsP+FHY0xVxAw4xe2YlnuWTsBnXTLCvDaUSxXc77wC\nhY7D7Cx21g3Z3Th0lZNYzw4kxxdCrDtSr+ASuhJYAPoKL/N5iLVQKCS0R/m3\nC2Thpf/Vw2ogTIao60V9ruDlvTqns8mHarOB4f1nhe/fSlEwxY0JeNxDN+Gs\nYUgNURLOZH3nwiy4XLs9TXaGDYd3pxRhgzfqcp5rpJQaQI7Fh7QCswcLGCEi\nvDlOrW3JpCXfTokbvAAKjlybwAqKwi6u39XTK4aZbk4thxcTvDCCIMd/euEb\nvW6zKHftvbZAx4n4I64aj8Clp+uqdB5e0BsZ0u7pv7r3/vcGyDruRCNfuuvK\nPzplL6heTOBdyChF8kE8YBJybKZ5dLKOSgKZCiW6dLsW5fZPQWhkMIvIQu85\n10AE2jVwi7/xD9Q/xhfFGUgsOdn6mv5rgKkwnVwhyssJrmpBKfxWG5VcQbr7\ni/BK1ouxFoO8nFZ4PvbTrcvCLwHlk8JF/UzeNHtGQlcOtDXXx/7+rVNigng5\nbw7SIMww/3ziRDl8A35l0dgUh8WbJ3s+95nZ5a/CeMfYa5H9g8CWMv6FHRHr\neK67\r\n=uzUk\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"aad59f60092dcdb5c562e4a55b821dff5abd0131","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.13.2/node@v11.6.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"11.6.0","dependencies":{"unified":"^7.0.0","@babel/core":"^7.2.2","remark-parse":"^6.0.0","is-alphabetical":"^1.0.2","@babel/plugin-syntax-jsx":"^7.2.0","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.0.0","vfile":"^4.0.0","remark-stringify":"^6.0.4"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.0.8_1555445750597_0.6329483635791311","host":"s3://npm-registry-packages"}},"1.0.14":{"name":"remark-mdx","version":"1.0.14","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.0.14","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"6c32995d4b8ad0623bd6099a7e02a50fbe79c252","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.0.14.tgz","fileCount":7,"integrity":"sha512-JMTp43LnFAPAEHBye+89pZQTYNuFX8YjOl19LUCtMaP6PcnK51aRLxbX0OikA/dvuI7KFQbIQMs2WscB4L57Gw==","signatures":[{"sig":"MEUCIQDGWEwU3EQ1/ZndcrC4SUjEJpedt5vqBAHjcqdETTQGlgIgbAxEgTQOH+S2uzDOSdJ+plfeo14a1KC93x7+lq+AXtc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13274,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcvcVtCRA9TVsSAnZWagAAohoP/RwSpH0c8VTI+f+M+NcO\nn6y18tkc2779BiFxDcK8o4sUv3SfDDVJQGZooWFFzovJe4SUj/jvDx9fh0Nb\nkucEJTa+2lBJZOkXbg4BFFqOGuT1LpTDOgtK4QtlpGTGvi5bAJGGTufdRHwQ\nipJNRNQPxym1QRpWN2Q5Z+qmX9L9YKbFSqYZVmGMKWhEtBnSNU/7Bkg7QXjw\nkb+2ovS68ZrF2xes8bz+Z1+jE0Ku3WjCXG8JUqWjYp6A+GvgpCoAWsfzDV3g\nd8p7lUOEvOuL6d0M+igru8H6hPbl9S9R/YsRBp/V/Mc+Cyw+f/BaDjUxqzuK\nDOSiFUWcgRbX0yocLlSt+gQPmZe/4JiqAtg8+IrcONEa+BVZwH+zHC1XYcZz\nHUhvokOafADkbPKuZDG2RvxGa0X5VfPZg2Ruh/kvz/Ee/vqd3akMThA2o324\nW7BO34dZHs7fH0nV2Houzb/pW15MJzviWw0urtWtvSJ3Q6mCk2ICnbEiifKM\n1dqBoHTeQIxkpYGpYFsFP/IxMSV7o0ViUNnSeYxSA4ziYSN62kKpKEYmV+qQ\nFey2t/Qx27Vjqxv+FN/+l8I/bGF8tl72LC50oP/PjGXuOZS+NFnA9kI3URtm\nlkutjcDaaET1uINmKKC1bL1+rXpFP2KtvhQpS3C0BPBtTNF1Tk3JVGneUuKn\nWCip\r\n=S6RY\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"ab28741e51e9fd30c919435c7b35ecca8b6c91c5","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.13.3/node@v11.14.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"11.14.0","dependencies":{"unified":"^7.0.0","@babel/core":"^7.2.2","remark-parse":"^6.0.0","is-alphabetical":"^1.0.2","@babel/plugin-syntax-jsx":"^7.2.0","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.0.0","vfile":"^4.0.0","remark-stringify":"^6.0.4"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.0.14_1555940716174_0.719409032335238","host":"s3://npm-registry-packages"}},"1.0.15":{"name":"remark-mdx","version":"1.0.15","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.0.15","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"6f2de2dcf3b94d5ed027d4140e1bd9c748c26a73","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.0.15.tgz","fileCount":7,"integrity":"sha512-X9nQjfHLettXJ+DqIzHwLU6sIVFCjseJlCyaNsLVrIIRqxRcwm4MKifw1jcHa1Rb+uBf1CxJX2B/+qI9X2QAmA==","signatures":[{"sig":"MEUCIQC0c5bcCumlZpD4qRo8JB3ZSTnC46y8NpbqibvIkfUNKwIgY/H1zc4w3Mxgsgje3sE8g6joyJb5jdvgA2mmAHgDrdI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13486,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcwcqbCRA9TVsSAnZWagAAoj0P/01wKXF5Rx26p8//KCz8\nLj/DPEAb8aqWZiJ/yWryoh4J/RaOeri5MRQFE769aN/jshpKys5Fy+AdZ1uj\nGzUiblT7/Bfn4myM2V67pH/JIOz82uApHW5GoBGZhgOvT+Oa4LclWpbz86mw\nHc/iuoRmqxO4P0eWBIp5I3sxmY3eyKwlctiJcCBfJtp8pojs7crYIbTAA0+j\nVn4OY/4VT/x/928kS82kzgZiCrwyTLuLg6DXo05lOlCNipCoEMsWKumO7aie\nBWCUy+JEjLQn4T9kCy12LBk7eQWDlwJZ796603RSHU/dBhsq8YobPWHqI6pl\n2QlOyakwyEeZMd0Hi4PSSxTp8yS9varUQFw6sKmbaBbvFOmqAu0yAhpCoUur\ncJjlDY7TmHzczX1SjXfv/iUPK6Gjf6+zkh++cIA/aTfHx3Cba81tcaVJzaeU\nB7ES9RmgjbLxD1c2yFoUmFsokUTdtGEKWlDar4Fn0pGaiK995C7oVNijnG0E\ni68JPyj7rRRV9VoZ0WY4rBWyuWK6mMgEIYBNs2tnEwIMXuENU7PyM9Bcypt0\nhj6J5vfKyoqnkr29AwucE/aWgKaLQMWPYWIlgZQ0z5b5F/CitR4sgXFlB9Nf\nz5fAZp3K5r7jPd+EjB+6o/aNqzQMHI3LONffZbyh+VMsvlozM9q35yaLETrb\nYs5u\r\n=FoZ5\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"670c77a4feab531f94143e0c54437a9965560c29","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.13.3/node@v11.14.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"11.14.0","dependencies":{"unified":"^7.0.0","@babel/core":"^7.2.2","remark-parse":"^6.0.0","is-alphabetical":"^1.0.2","@babel/plugin-syntax-jsx":"^7.2.0","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.0.0","vfile":"^4.0.0","remark-stringify":"^6.0.4"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.0.15_1556204186718_0.907871702985108","host":"s3://npm-registry-packages"}},"1.0.18":{"name":"remark-mdx","version":"1.0.18","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.0.18","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"a686bcb1166ae673bc77d9e459dbd576443bf854","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.0.18.tgz","fileCount":7,"integrity":"sha512-PLsY2LNXuJ8YHaxjuOpRk+hDviB7jBFwLmLN4m4P5/Ev+NlmG8uXisAkP4P4Al47CPmJyKHQRJMjA8mWu4exVw==","signatures":[{"sig":"MEUCIHqWMXXVUb0yaPNen/QFQva8sl1MNT7Wlefkv9fh1P3wAiEAni22HNWpa7dqTQzugItlqnDolGF25RsRziazr2xsYpY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13529,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc0cRjCRA9TVsSAnZWagAATWsP/1PNCen7oTs6ht4lOVso\n1b+TrMSbpLN3R/NFnxORbZz3iqDzp+DKznfLcCHaCl0w0SNVzmve7h6b1iOB\nGPNpvD4LAeQfWdQCxg08+qV07yH3NxzTV6DT+Ys4rBuRZf54X7uRDt92sACG\nZHXYlGHrpBTraS1seFZMPEAZAWRNFms+E+IFr9Zkjtm+f067b8jg+ls7CRaJ\nDP3cmVW7U0SJ6QKHeXP/f5YnFDdJQL/X5YkGZVvXKJRGzGxwJ1EnVYPgFMVR\naL7W+/zATIQcJJLpwYhUdaBWGCsnhobZCp6VLfQ9Tb74JGTmxcHk/qTe0h/9\n4eVQnvCNDaRwyvjN/WKE1lE75nUxLpGrlUETmu+1sd0CFaD22JZRZR23p4uO\nDDGkehzPJf0MkKo1syGLGy0H5ubWinGZiRfjU3WZTkhm1k+yg0dmf2WUBRk0\nLph6ttC0BzkbZ88PTsIIDwAF7h7NJ+X0ItCDSvekad1Knvfl9MxClwH82Rdf\n+Z0By/Hh15aTJRVxmUvEJN+4e+QTd6oEHZXXdQiXx0gvvZsxAbLu9m1CWs5G\ntkGWABtOTbf+lnKU6uMy1UPeuDZSco5qsu1LNS9jghyMv7a0/nRh/+4PUfS/\noeGndV1CCoyq/X6fo+7zFdxYX33F4Gnwuu9FL42Khqq22DBXLCqRJKKF7FTd\nwQw3\r\n=GlHM\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"cff42d6e5dedc8d3205dd728fff1c49c2193161b","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.13.3/node@v11.14.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"11.14.0","dependencies":{"unified":"^7.0.0","@babel/core":"^7.2.2","remark-parse":"^6.0.0","is-alphabetical":"^1.0.2","@babel/plugin-syntax-jsx":"^7.2.0","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.0.0","vfile":"^4.0.0","remark-stringify":"^6.0.4"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.0.18_1557251170508_0.8084545528004996","host":"s3://npm-registry-packages"}},"1.0.20":{"name":"remark-mdx","version":"1.0.20","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.0.20","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"580e57c035bd1658beeacffc30f81ca56e8447e4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.0.20.tgz","fileCount":7,"integrity":"sha512-yUDI87lzeYsTL3LyArD2DWxzYMxdJuJuvVAjteWcJQvY6ZgYNcVPnVzDXiD80SRQOf3/tXW5P2E/EsnBlNW8lw==","signatures":[{"sig":"MEYCIQCxv7PrO7jWY6iEZmNkc2g4068W+0JVKkbuauKAatldHwIhAMmmTdf74+pp/PKTeIdXa4JAMKAD1QaCZZI6ZCYUZ5eX","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13529,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc6URNCRA9TVsSAnZWagAAJ2YP/i+VqHLUrBvbGpcMeSN0\ntaA31kGpah0J8QYzAPvGttvdFP44UWLmb63Vp4r/KF322wrhJuiml+ZryKwW\nqR0bycevQ0jyyUSNpUxNgU8G3hHadAPSu/mI5U3Si/WlsquQBsPMlf/94mJN\nqcAVMWzmamfj/8Rz+m6fqmVY/kAgdvnvxq3+tZZJsXhOgZ/uCHFqUO2lbU54\nsqFSIkdczol+J0EOmJ13svtAjMzvkeS8sQ0/66lcBUir1ICKTitPpAJMDif7\nIs01+HHl0t22d9Le0q5BJZa2bJU8eu1rPLE1fS1pAlY/AVk4f0LEjaL1QEIl\nQ/CXCzuPqViQXSsAt4UQ1GdjEdpEb2SC/X6L2KSlP/Q1yGVvtHaxARGyKvAp\nP3+qcDxL5qklRYrAO+7AhIJOXoUBmjxBJdPQoFyoipyFrsz446w8B3atEd3D\n6bDQCwpaBkz98jhvo1OLaMI9fImoWjo3TawfjP7cxOi9EtAv1NA8sx6MMDM8\n2MnC7rWiDeALND2vNsmURuZjh4D0c2XzORyJC109iWxvkzwHvwUIu6rq1KZt\njineVoLjHxW7HdvSjYxY0R2sYS66pR5OBF0ilKD4RqPkyiMqp4xooAKCdLzS\nCX8kwhKG0fP7B4TjGfozZCh2mc7wJjWsa8RM3DWrc+6fn55mbQGydLwKcgrD\nbMQM\r\n=ruvh\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"631b0b08f469692d7a0b12b3aa2ccb4d202ddb18","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.13.3/node@v11.14.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"11.14.0","dependencies":{"unified":"^7.0.0","@babel/core":"^7.2.2","remark-parse":"^6.0.0","is-alphabetical":"^1.0.2","@babel/plugin-syntax-jsx":"^7.2.0","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.0.0","vfile":"^4.0.0","remark-stringify":"^6.0.4"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.0.20_1558791244744_0.9761172592761418","host":"s3://npm-registry-packages"}},"1.0.21":{"name":"remark-mdx","version":"1.0.21","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.0.21","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"cf5a59ad68cce6c1f687953dcf504212fbd32555","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.0.21.tgz","fileCount":7,"integrity":"sha512-paYs43yHPkxEuhyWXvRGJdupdurua1ttmGeu5GLqU/qc17BaZklCdNSEjCNXRa2LM0pOFRv0KVJigfA2vfaDEQ==","signatures":[{"sig":"MEUCIQDhblQbBLWsY2+YrcKnHGudEbYbjvmwRRCl5xjD+7cYSQIgM4QGhBn3MXW2KJQBGIUWfSLLdN5lBBJcVi8xtBdFlC8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13529,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdCPj7CRA9TVsSAnZWagAABKwQAKIXcq1WNhBmx74u6O5O\nhRG0eEKLmrcJMjAfic819g1+PwNv2FT9ujHcvS4Tf9Qdxp5mdRDUCVop9VjJ\nV+vtYZ9esELjpigVUZWb+WYv4RrRrtugK9HP8U12tvsUge8hzE/4zaP7pEMx\n8Hy1kJR3i6wkCYgcY91Sel0tpKuXjjTZdv6ajUr3P0nYHhrl6OaN37ikqDWw\njbnU9B8Dq62heyRX+vkEMw/dZwSe3z6pQ3AqpKD8yvIX7Plz05/dhwFMbXzu\nN6hxLzo8D11q9uQdLOQ82jv240NVf0A8yOebFa915r/kev5L17MKRhTftY7v\nX9bhjfwiJpA30Cn94BU7qmCmOARX71/JLDH2gmnsnCkejcgZftgBNf8j+gRu\nUBVPqn2us4JIdPuVvNG1xs0bnfmKrzD6gNBk0ap1Lhu9YOXPS+ETZ7QoFx+i\n4HJLKz3ETY0HZ2eRSZY+4hAMke653LzAGlP+692/pPnBoMu7PeXGj4P7n1aW\n9t08dQcV70Il+McmWFTPToOwAoRMZSV2/NlASJMhZnw7t0NDm7nA/zWYo6jH\nd/i/atR+G+HNPSULPUPb4YSY2IX5bM60ZXo6ag43IAWIgcmti6ATtkj2412E\nW0p1lZgPSRUVyF7NLOCVo1+37hxSZbRnBgMI6Zy6xxul1CMCRkmB9M4hrUts\n3KoR\r\n=VjLG\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"5d1a353eb430070654b272187abff384159bf066","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.15.0/node@v11.14.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"11.14.0","dependencies":{"unified":"^7.0.0","@babel/core":"^7.2.2","remark-parse":"^6.0.0","is-alphabetical":"^1.0.2","@babel/plugin-syntax-jsx":"^7.2.0","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.0.0","vfile":"^4.0.0","remark-stringify":"^6.0.4"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.0.21_1560869114622_0.8942828129494613","host":"s3://npm-registry-packages"}},"1.0.22":{"name":"remark-mdx","version":"1.0.22","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.0.22","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"ee603ede8202e983b30b9c1c771209f675f67818","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.0.22.tgz","fileCount":7,"integrity":"sha512-NHn7HXJkeCiI/Jv5oyQWSMcB2LOrHUxKWpWLxB+f7FTvvPDP4guNSnCi33xzuSgN51f9jS9YyepD2U8H8paDmQ==","signatures":[{"sig":"MEQCIHCwAHSfKM6Zi31rAexA7AXltkKfht49gmxFXr0gN159AiAd9tXYf5MK447r0nWy2xWcCaOdSl1WxTM4R7oAcLgDkQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13555,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdJOsCCRA9TVsSAnZWagAAuSAQAJhg75NBlhEGdLbOeQdG\nnN2B1Tzlrne7J2nmbpJfjJktkQFODLdzHB0ML0ViR8lxJonrp9qZ//TjjXJu\nnT2at7M/dsx/fu7d2bPpg6Ly4/x9RE5Ufr1QeFbVXJezc7heAMrrKh3LtOLp\nHqH8pbI/BLMpksKMFoWr3y4eFcuAGfKxhgcnf384hijeKsLyeRsBUTYNU8PD\nQw7rOS7/EHOXu0zIpDmc3TFsZzAwQGfZJhKM55ZrT6DGXKHYod24iupXYwp7\n76MduzOdsq7c8mOdc1aTnv9+bJxGlGVlr1pLdeoN/ONNCW6Rq80Tgpqs/3Sk\nyJICv51+JdzXIaLW8/Css+7WFgQxv8UyGq2mRjFmIZ3HXlVcx/tep7Vlhlpk\nDOsrqoYlz1eAXhTY0QjVUNUsU+nno61aZna9Qft/MyK+Edd6M3dRJFTeTW8V\nF6a9eSZFCkF6C3nDjnPN2JgmZAY5HlIpmEbWhlrAgmqlIbUIVkQagXMZz/9I\nElZ4oGfYj1cBoCR/Kw+hpLadO2TbbwWogOWemSDtiClP1XWq+i1AdwzqmVwp\nXlHvuIeF94o8+tcW2ICP/xG1yQdjLBoORyGaOjVO4/izHokcT+uOMURFHSr0\nt/3beLg/tvHLLBFGvsfx8alXJ69CcO5R+tHIcwEcMrAre4y4+QdW58x6s3Cw\nXrOj\r\n=8UDs\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"3686c8dee70addecfb9730726f42e6ce20a5ce35","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.15.0/node@v12.6.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"12.6.0","dependencies":{"unified":"^7.0.0","@babel/core":"^7.2.2","remark-parse":"^6.0.0","is-alphabetical":"^1.0.2","@babel/plugin-syntax-jsx":"^7.2.0","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.0.0","vfile":"^4.0.0","remark-stringify":"^6.0.4"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.0.22_1562700545945_0.5348287749211531","host":"s3://npm-registry-packages"}},"1.0.23":{"name":"remark-mdx","version":"1.0.23","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.0.23","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"14b538855bd0576ba83d1c05635001ee7a0c64fc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.0.23.tgz","fileCount":7,"integrity":"sha512-9Mvk3izfpnHoQ8XqPOVXH6YvUXgp+4hw7OmcaSIYjSvzalND7/4/cYqvKo7d4AYIXJL9LeVvnDq0f2GlCaeEsg==","signatures":[{"sig":"MEYCIQDmwGQSmYrEtACXF3yxqSBkBhckHsuf/VzqLB+5ZcPCKwIhAMGyAiimuCzH9Y/amLUC4DuOYCfMi61INSFFtEI0RbJb","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13555,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdJOv8CRA9TVsSAnZWagAAUssQAIBZJG+fVDpmoHC4l5Mh\nnW+AKsHTmFyoNiIx8IyFiLyFVjWLDpJpMvmtvTohKOlQm25Ua8FExbx4tche\nX9XmaiZLAxo3G/yywwPEmQOTm6f5viPIFFC9QLV0xv8lXRCJec6MEHB4wdER\nLJ2iRRFu6J7t+IMHXCyEYLdN09cfajjUDtB/T+rS1pWh6ioq16e21kVNfmq1\nVrZdJav4BHyqSJUD31VukK0YFbMcOpzi68v5eXt8j5E5+gtCSew96YONL9PT\nsgxnIWaWAvD7DdEAWLLROpNvY3+yf2XOg1nGhY40AOi/ISOQ6+mlbw7sfUma\nPGHgQ0raw7648//1Pj970NBVXnT9yD/jnocBYI0RZxuF+PF7G5DYNnHXQHf1\nWzbAU9DUQf5Os79Y8itO5K+Yo8cbFt4Fg5FtBPKv+mXZ5uHwgYqn+dWjrHOu\nsMEeg/Pu8Pw1LxjykACAI06aUJ+d+dxHYaAKzpI+OEopTlGYjJ6v5Akmfm3n\n25ePv5GToRlhpyxgZhR9HgHCO139gfCk2Wu+6XjmbU8iUG8OC217ZtCg7m5s\nEnIjzNBH8VHsV+HsEbCHm40qGyHGy1AAwkYeiDiOUsEemeCYUCJ9/tB9doK5\nnWZGn0Lz2Bpq9/PpK1O+Yua2Hkod64ypm1DK3/9YqUY1AaWKk4RmcJLZ028F\nj71l\r\n=vurR\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"e49ab7d87373a489c6e020fd15a490a7d2d44782","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.15.0/node@v12.6.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"12.6.0","dependencies":{"unified":"^7.0.0","@babel/core":"^7.2.2","remark-parse":"^6.0.0","is-alphabetical":"^1.0.2","@babel/plugin-syntax-jsx":"^7.2.0","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.0.0","vfile":"^4.0.0","remark-stringify":"^6.0.4"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.0.23_1562700795725_0.1189757959818154","host":"s3://npm-registry-packages"}},"1.0.25":{"name":"remark-mdx","version":"1.0.25","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.0.25","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"67c56a63df7cd850153c263d1478982bd8731a0c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.0.25.tgz","fileCount":7,"integrity":"sha512-xu6aarbPuD+if9CgxL2685mzmwHcj76pseSL5Vogrv0rB83gQSKFitD+Hm62AFwgAx9bYFtQZqSToyNGqqWIQw==","signatures":[{"sig":"MEYCIQD9S2AqhXQdzDPDpRzn5/WhKXQsUb2upMT3ejZXyTVk1wIhAI8XUlQzH01bqbjN15bjpfCuP0TrQfLnT9SXsrmvBLWx","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13662,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdKLBFCRA9TVsSAnZWagAA8vgQAKLFVUHGTbncptems0uR\nWSiesFnUdKU8RW8mPf1y30X6Blwz1R6qj8IuIl4bIGXHM8sA4UgvGss9iJuF\nfwe7SdoVhhOkp7ESxmktFGk0hk4Uc52EsyNa3CtppwUNHTGfIac0Wa1xfsC2\n0hVNX3p0SUIlnE7X4ehWtHqgnnwBJg9XQn57l8S2jNnAZb9Ai8UuHbw0HF0a\n5gMm6v7f2nnHP8eIj1+xcJ9ggF9TQcOEZfwhMYNRE9TOPqDt1FP5SZVOhxXi\narI7KvM8r+BW4AiOHgQlNB1dZwf0cQWZuWRXM+C/MZ7O8BzfaD5xLkZt6Rd4\nNHbzCmmxN7+gPcfdQJ1wduZmdCIy29xqgzbdiZyV+Gw0h+HJVbHN2bXhEuOE\njqY2bqnDWBfQHKHWx5Tuez4gc/2aA2OmtWUzN0ya/2k6wWHwHaqpB3of5y+2\nNQeHsTe6uwANoevGicXvRGJHJvYcD0rlH+cfhkThd7MHfnhVRoR7osjsXLlC\naH+rMJHRQJZEUVA0vbybigNODGy19tBpXDzaA6NJSnmqRS4HUOApHLDxtuWv\nVoDF3QCEeOXP43HBN4XhCOzm/lH3K53w7xwyzRKxx9EY3hWFd8uCoW4CcF5a\n7irk703gqusB8tFyLwhzcv4v9C00Vcd04TXv9GHJqmQd80HjgY808ftDxf9j\nyE+9\r\n=Kj6y\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"534012cfe08f85342b4709936496c85be1d56e85","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.15.0/node@v12.6.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"12.6.0","dependencies":{"unified":"^7.0.0","@babel/core":"^7.2.2","remark-parse":"^6.0.0","is-alphabetical":"^1.0.2","@babel/plugin-syntax-jsx":"^7.2.0","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.0.0","vfile":"^4.0.0","remark-stringify":"^6.0.4"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.0.25_1562947652734_0.127852101942731","host":"s3://npm-registry-packages"}},"1.0.26":{"name":"remark-mdx","version":"1.0.26","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.0.26","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"b2081fbe072850eb4d9544df21c90d7dd92e4a7b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.0.26.tgz","fileCount":7,"integrity":"sha512-yiXSljhvq5Jt6LUZsQ8YoIB+ut0YBKLMGNM9aHmmWsWrAK3s+CW9lCtClSu1KxgRcWpgsEVvAok9z4mIgUI6cA==","signatures":[{"sig":"MEQCIDkbQHgCzcdb06TY/tSfXnhtv91DoXp3/dr/Rt+v4z/KAiBJq79iUqWs7w62vBed/B5z1VIWSBHrljwnvd7d74b5nA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13662,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdKOjtCRA9TVsSAnZWagAABU0P/2pWGdWmInuu0WAWw89K\n2BpRz5h/R6OcJ7ayC1vckfo9ZxAZ5/STC11NGaLTTfr7nmFRi7Pu/tcgBjLC\nCXWJAK8rI9AiQXfj0E2odd9I8egaBVw8ZFLzNVTOTiEbc7HNNMnH2RE93zON\nVVXctzNlNTfzEMDJfztjCft5cKMncDX0VueIU5zHxmYbzcfIvMszRFZZcfEB\nOJXMBBFMo4PkMzFC7gL6SfFShvqrJDDjKvCLdSwmHnP0EzQwTgbWf9BJjNS+\nppad6oYAIadZGWoK24OfJl1/pp3yilFonlwbgiLVf3+YZPyyQFn9RRoXYyq+\nYB7gwvpis+HubGV8Limdea5Ggtx967D2c2GtEDaD6IiBdwp20XF90Wz2EScT\nT0o6t6dRizA/F4RllafSAjFXf0q8V9GArtv0sb/9LnWbiPWTNkomy+tg6ECL\nRZR+axtUyg3gB26xmJdOI4yDPUm7gOKPiXRoxB6++DjYP6aH8OgFK0kPrBLa\nuO3DQOn37/SDngmGgpxl7rHyWYM84H/CiauL2M3YHdJOO+NOAlQ+uewO/y4I\nGX94YzrBXBDv5ddKosMHxPbvqEKTk+F3nCHR8tiVdv21GLzYOq3IlC7QP28O\nUKPlsgOT63T6juApsI+R9OLF6u6mLKSJEShANhKAJpq4+YSRMexGA6rzIpSz\npFVK\r\n=yvAb\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"1b8b9bc750aba555de655876a923252397fe7a54","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.15.0/node@v12.6.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"12.6.0","dependencies":{"unified":"^7.0.0","@babel/core":"^7.2.2","remark-parse":"^6.0.0","is-alphabetical":"^1.0.2","@babel/plugin-syntax-jsx":"^7.2.0","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.0.0","vfile":"^4.0.0","remark-stringify":"^6.0.4"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.0.26_1562962156843_0.41020111363537004","host":"s3://npm-registry-packages"}},"1.1.0":{"name":"remark-mdx","version":"1.1.0","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.1.0","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"35fde951866411ff1dde2a243f43ec7e90bc25e5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.1.0.tgz","fileCount":7,"integrity":"sha512-WW5WNg0NZnvCaXnrIMGwKG5HLwzCUkOtIMFLwTjB0vRE8QJRvhJUYykX3LrfS2EVIxVFTspZx9YzzV0BY/gfaQ==","signatures":[{"sig":"MEUCIQCEb+Y+lORESFqOojV+MRHrnK3S9I2v0bf4sv5P6JOLvQIgbMoD53tI6SBCjBEk0IrHkKR3LVIrbdMt6e7AxwUqUOA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13661,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdLKgiCRA9TVsSAnZWagAAOFYQAJLzLDCxe6K78Py3/yed\nC2iIEjhZjnnetK7Uw06SZaqyI9t3YtPy342XVne8CllC/4MfwSEb4dszXG9L\nxc5GeDwUGa3VQTgoIi61LlQr9I3bWQTMnH31mjIyoJ6eSShhDIezmc7iOTBP\nemah09e4oJ5mzg/ep9asMQ5Eppg6ovxOXXGHcCYcy7ldHLUZEd+8Tie46bIC\ngregGBcWYVU9bHEk+0Mvq8VlqB2gUOkPR0Ch388uCemlME/1zBEhLDRzoZ3c\nSlv4YHeU55K0fD6M0K1ZHYrRPrRJdlrHjsL0eFkUPZ6q2xaTpjXQQJp+K0z0\n4HmIOzKGhhBaDXw4i6AI4sFcOvFi9gO6ZiC+xkixqAyCrzD20XN6UO12PoGV\nxEryb9OdoWp6mro0I/+X6OeaCLSvNa20HWufpD2NOZ2Al1b86rQhLfwUKs6F\nU4g2zr2Yp7PdJ3PbcJDBl87N55tfItwS7p/xC0KdoLI7ZMzrZp7C4HZmF26K\nrEf1O/o1YsXAMd3dzon0UnJtqXZZ3uBB32ZFqotMg4gG8ajOA7w/b6VtumMc\nQNna2bJ0Se37yIsLePZ/vyT7aNbaggEIa/i6RF7xaChfPI82bFJGRk317MHu\nLMPaWWNMy4LICufpOB0v6/z3sDiQ/VWBL0kElmylGDZfi8Z0e36liDL9jR7l\nnMdf\r\n=HHec\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"22b9aa82a9d1397bdf762469cfb0268d5396542e","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.15.0/node@v12.6.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"12.6.0","dependencies":{"unified":"^8.2.0","@babel/core":"^7.2.2","remark-parse":"^6.0.0","is-alphabetical":"^1.0.2","@babel/plugin-syntax-jsx":"^7.2.0","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.0.0","vfile":"^4.0.0","remark-stringify":"^6.0.4"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.1.0_1563207714401_0.7110641846344306","host":"s3://npm-registry-packages"}},"1.1.1":{"name":"remark-mdx","version":"1.1.1","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.1.1","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"3f076c22e3704588113f702d34663e74677924ee","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.1.1.tgz","fileCount":7,"integrity":"sha512-te7Gpg8fVgMTbCLP9ji6BGCgpdgdVV+KvMKpMmMshdwk/Z0RZYoGHi2AqVHK3ZCAKg/s1ncg/L1YLP5TXucIAg==","signatures":[{"sig":"MEQCIELEmX6GD1eIRKJ8/cyTVD1fCUKJYoojvAc/15zZvnUvAiBqZOVg4+Sai+tI8bGKL3gju0e4/QE3llwv8t1+lBMdxw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13651,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdQEQZCRA9TVsSAnZWagAAixMP/jwtr/OLPHkFclmt5WCi\nlXjQ5nqUdYO0urJrVCDfg+QYsBW2aMHujYlcOaTvyAA1djYn6T8PnkECyq8w\ncXWoGXUEOrfxQMten6gikXUh9NeCNcyuqXA+ZSPfWOE9Wv6HuuQSPpjBKb/f\nQ1/yzTsrRIKbKsJF8jdVkpNu/jfjw41q3bDmCjKVYrCyAMkBcAqmOgSTYP2Y\nShDlNDVJpu/qVgY2uEm9R6utJderUrwFcW8B7QoXmXsehhc2fajI3/fIUKo6\nrFRq2wQtGnx2dxeaqUYAhs1Udp3hlrRJdVvN0Rs8y3tg1FKntYzqQlSk9LSu\nrHWa1H56SH5a1gRiaY8lattRj2bwg1h1TtNen3ZEd/+aZn4kN9un1NIj0VYs\ndBRJPyGxrqqC3j92FatnrLSQRgNfjVDGskUBkz/1nMcxybCi8PcqeMKzbzIY\nMT8YTeihsBUqshHqHiSx12DBp5WfL9c+h72h/9jJ6aJ9qEhZu76nuSPSjQXc\nxZk6uK4of+QQJ4LxQeLl0J4wRlCtmtwxj8hZl6AyUv8qTYMLwFeif9kqfHNH\nxqNMHjtT26RUNx53HjiFH9BOtIXLHVU2FkD+97z8UpsVb87g48LKaHIplz1J\npU5BZqgiNXJSP5ZMlbEIASiPvG665UEIIhQI8o1Zar4Kqx4majMZE2Wq8HS+\n33Iv\r\n=aInF\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"dd68ff9f8a03cc24f2f2d30be861c41a5ee4e333","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.16.2/node@v12.6.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"12.6.0","dependencies":{"unified":"8.3.2","@babel/core":"7.5.5","remark-parse":"7.0.0","is-alphabetical":"1.0.3","@babel/plugin-syntax-jsx":"7.2.0","@babel/helper-plugin-utils":"7.0.0","@babel/plugin-proposal-object-rest-spread":"7.5.5"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.8.0","vfile":"4.0.1","remark-stringify":"7.0.1"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.1.1_1564492824924_0.7914440943639656","host":"s3://npm-registry-packages"}},"1.1.2":{"name":"remark-mdx","version":"1.1.2","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.1.2","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"6c1652ea04e1adf4f15b1d906e27adf42c643e8a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.1.2.tgz","fileCount":7,"integrity":"sha512-aCm/ZkAt1dDaWfx7gMgrpHdA2d5wwJxY3Cu8qHAN4eXbkLy1r1yjAuIK1cIZ4+z5vopTNw7FXlXhsWN0oCT3Ng==","signatures":[{"sig":"MEQCIEGjlMdWesEvzORiwpxvzSoBGqeGVKcgTcgEzpXS/dTgAiAo6225pGqtUzl+TnjfM3wYZb0lCqePhiVg6LAbvxn3/Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13651,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdQeB0CRA9TVsSAnZWagAAI/QQAKMrNo9PgzP8J4v2EPKu\nOSuyyyYvtuO1fEpsfMnD41U7tYgqKxqmKUWnDH6CLEVbfuZZKPiou+rzeH5z\nb/ewfKhB7Xy6nQcSmn/oamxXAkded5m5HUg9ueD60DJVs2mwQs3cZ2KQOanq\nav6sCfwQnGMsn9HU0WP89b+jzmUovvgNLb0EhbH3o1BePUMLy58p36cFhBvi\no4QlVvcYcSQFoJn6HptL0hKLuWHAh9OolNT0tmptJze/LCqp8iImWAY2l166\ncHO7Zz9KQEhWo8JV7V8i5B+v5a2q+SutSAijHs3O55RqqLP7u1Qu3phWUrJR\nKjNAL+rIVj9wQ1fKjbFRM1WLHp7OSvWRkGocotNLf7Zra2VI0co1ouNgduhh\nmWfbkZwfQ4MKYhHKc9CHd+pqumWNPa9L8rQZkx2XFHnCE3gzPdsOylIDjol+\nlW4XeBj1dcyW5Q2h1Fkk3XO02wB1XvD5Al4D2TlbV33oG6xCWCRsPYpQlba9\nTS7VfDa5NFtPdEDZwDuDTTlgXbr9iLGYlmrq17Vrl/nancjG/eESkCwKzdRv\nLaRyUOaS3NoV9QbzC8YxFPDOr2dHLWrhuoxAwbrIoCZAFYEvloqqgN6X9AAJ\nEJMxTqr4fDZRAVtr78ami6usw/ZZ5x09o94xWWV45nOkMDnagc0zrhjUtlFJ\nkgIE\r\n=oZX7\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"3360ec6ee364c328d019ccf5fb8f62022bab7151","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.16.4/node@v12.6.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"12.6.0","dependencies":{"unified":"8.3.2","@babel/core":"7.5.5","remark-parse":"7.0.0","is-alphabetical":"1.0.3","@babel/plugin-syntax-jsx":"7.2.0","@babel/helper-plugin-utils":"7.0.0","@babel/plugin-proposal-object-rest-spread":"7.5.5"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.8.0","vfile":"4.0.1","remark-stringify":"7.0.1"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.1.2_1564598387563_0.9914609108224843","host":"s3://npm-registry-packages"}},"1.1.4":{"name":"remark-mdx","version":"1.1.4","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.1.4","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"0110d6b705b6cda237e92466c2f7534d00b1e96c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.1.4.tgz","fileCount":7,"integrity":"sha512-pMmLvEyhNYcGd9qe8KNR9StAH35HUTgLobfRFpU4V8vyrWT+mNsd7+pTPKQbxGat5+PZ9IgmTjf760k3abdE6A==","signatures":[{"sig":"MEYCIQDHizzx57dQPDceepbzTYPNvRvf0yrDuAdenfgyLYymswIhAOzVxMoUDyDP/jF1SDwUskvttENyXS+5+26SCN5PNJW8","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13651,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdQeEjCRA9TVsSAnZWagAAy8QP/jTbDiRPx/gZmD6crfcA\niTXaMv2NkLJzCqKfT3Nraml1Tu7cheKSBok/ZT/Ga+yrIjkHOVI/4lNXvl8v\n9+jYiYxOAL8rn7JzzzCfYJedigz585CB9j276oBPK7OGFbrd/EpYjZMH9Tdu\n2d06U1+kKSuR6zjIY7RW/AbM14nZzi5CjLhc9appOQ6KSZ0oDSwgQS01aYkC\ndY2VR5dPOHZbiLhBRsdoUioi7+zbniO/tYe6DvDiSodoAqS9Q5faqkkiQ0dl\nqv7gt/7hwJ8IDu2ZQ9RtpKAZrkI3SiL5/PCiSYWXzuedu74QC9wtZMbfSzsw\nfB72Oda8woqJpPFbKzOQmekNqIgTV0Z55hb5zoHYw1soYNLHr7vGymo921LH\nWRBOnPtc0cHCwhV4iDJdUykP9bYt+FhJN6RHRlDrezhIn0+9NK8X3MJKMxE+\nojjbcJKiWNgYNEgsG+vsgySLWeQxxisa/lVWofwc0sCMGU8oGdyazb49h+lE\nSyZwFEgICjt0P1SUcjLY3gQ+X6vw15wBnx/UMqGi+cL72re/u5fEztfAh9eg\nel+vC99tcG2PZHx4Lbc0GlYR0blgmZ0qMfjAHS2FT6Z930nump5vPOe3Sdi2\nmqDJiw3s3j7l2MC6ZaiKwR5dokhEl1RoQ8ri2J0vp2MN6phy1MsHYcjs96+k\nzQUQ\r\n=YwTJ\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"c6baf713ba14ad7050d4d3005ccc733593ba4bf1","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.16.4/node@v12.6.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"12.6.0","dependencies":{"unified":"8.3.2","@babel/core":"7.5.5","remark-parse":"7.0.0","is-alphabetical":"1.0.3","@babel/plugin-syntax-jsx":"7.2.0","@babel/helper-plugin-utils":"7.0.0","@babel/plugin-proposal-object-rest-spread":"7.5.5"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.8.0","vfile":"4.0.1","remark-stringify":"7.0.1"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.1.4_1564598563233_0.707349282873063","host":"s3://npm-registry-packages"}},"1.1.5":{"name":"remark-mdx","version":"1.1.5","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.1.5","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"d189d363393f01f9743d505656cf6ea295ad9969","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.1.5.tgz","fileCount":7,"integrity":"sha512-bTA5vthYYkOg5Mf0z1o+FYQb5pCYfqOmJ1wuyefNluAJmlFv/sIV0PPz9CpYTlUoNaC8b0VGgDY6Bb1MA6//UQ==","signatures":[{"sig":"MEUCIAC2CeRJMBnAKqvvQ8sVGGXfvkGExLCusp+URbPlEWtbAiEA20O16IEGSH0n9nexaQs0gOrvyGhX+WCgiaWjwDlcF7U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13651,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdRKg1CRA9TVsSAnZWagAAmuUP/1bNUvQDTUoewaspDCFp\nCM5tZSi+6R4AT7SgR0cX6aSRCXdkj6O5YnuHfi6PkD7t8Nr9gA0rPhlloJQe\ngu0UPchiI4dvZspo7yhPhCTXBDqQ6GNEGVjpKMcoxngADnKH+QcU2yepStZ2\neAjQ+OLtMkB3TMVyVzK+u3z0O2L5dyqZih4rgOtYAFBBG9l5Ne1+5JjFddc1\nv7H68JoxzID/vUbcfE2XMKPk+AvkrXupvJxUjMcI75ehq0h7FefFtwq0Iojb\n71lKIgCkYyvNaConnNXjtXyc7B/+xdasygJB5Yi0EelyVcXbklqdJNMBC3E/\n6HX2szBnnnp6Nf5ajhsxvFSUprjSSA3iCozHl7X1M01rsWrSfNvR348NP3o8\nBgpl6kFihlyad6e7Wo0QlFNL7wQfxt2LZfAIBtQsQozdS/wxGmkyOcDJs/2y\nrclJS22Dzzo6F1aeX/UvIsltGKMwWbQwvyZp6g3RWAlCZ89pJX3xtgXeMjOa\ni3yQjRRBo7GWUa8hLkWjT40uIZeYocF/ry3fOk+Om50m2Zs2SJAMUrApwh7K\nL6WsxaYaT5KJgZCRfOP8t8VtMCkOs3oAGC3jIVTzLLPHGUqvv37WiYyXQg1A\ns237rLXBIc7lVUtKtJ7I9RoYgUXVOv3+HxaLW63/XcWbibprpgBjsQoMoSsN\nk5mf\r\n=SVUm\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"f632d6073709880f6f7c207daab617755a817f60","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.16.4/node@v12.6.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"12.6.0","dependencies":{"unified":"8.3.2","@babel/core":"7.5.5","remark-parse":"7.0.0","is-alphabetical":"1.0.3","@babel/plugin-syntax-jsx":"7.2.0","@babel/helper-plugin-utils":"7.0.0","@babel/plugin-proposal-object-rest-spread":"7.5.5"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.8.0","vfile":"4.0.1","remark-stringify":"7.0.1"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.1.5_1564780596207_0.29437363804624983","host":"s3://npm-registry-packages"}},"1.1.6":{"name":"remark-mdx","version":"1.1.6","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.1.6","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"691c4972be1d95fed908baf9d84141078fab3b7a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.1.6.tgz","fileCount":7,"integrity":"sha512-asKqUQbXgWvc8AUSGl/Pjlfv9wrVlItaWodeemVGp7xmC87QL9PdbiRpEerJrPQpEujG9iFEw4A4J1GVT12GiA==","signatures":[{"sig":"MEQCIHjghVcJvSUOM3Oa+bgCTYUuF5AhOJzoqp/GiqU4kie0AiAbNvv7s9Ke1CZsXweSDAk1andFiHSKqLfq7UVfsFY6YA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13651,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdSa+bCRA9TVsSAnZWagAATCMQAJ8tW+l1OHtjULYyOsjq\nwOk4Ckrlpsgd0mkRhKnWjFfsf3rFrDO2j8u9juANCRjk+CXIzKFArbD1V7Xf\nYGocdU3+MOmaTVT5LAY+2KS4eaPVu2sYD7i2wkpmNQuNMiygM4B3pQgMXg+4\nXKUmTFil+YPdIuCwS4M8LKk50BZvuWAoQ9sRZIoB6ejrfaVMgwclgjJz0yqc\npC385sMmFLlUJ1EQJBjSaOTelIxPDFjLWYpxD5uJaOM9mq2rKVwyEMsCsRfw\nklHoXB3L+3/a+xpJhJmDHd7oR6FdtTu/c3scGKFk+e1sM7qteD5h/UrCNV9h\nb4KTb8+qyZgFXEtSqsMnGwcax6HUtg5J+KVt0N4dMyNxZRfR+xVywbj7HjkY\n+XRB5AOMhdLjEKAnyKpC9K38ialmDdCImE5aCq3qhcLum6GwBdFU+7z7GXqT\noVOqDNcQ8U0nlmuIPagyFdUVwfVKVQIw/f7lSaIv4Y8/suojaIQ7er9WUWZ9\nTlRmr5yAjbd8F86zR8kibnD8WRRHQ6esfqzM8/bYFf6Db1/MstARJ+5KgKtt\nRlAA3A5/55/MJ6AmUbi2phIgFUSdgIAZvUbbJMH/AzrqHSyDDMw6xjk4xcbv\njgeUpQY82Hn3JAix6NBF6Rl8W5aXkW9IxwOOMoCq6FICBmwrtmHnhSLTj02S\ncIZl\r\n=U5+u\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"2c118127aa2b502cafd1f9e1c4f3876e05c66395","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.16.4/node@v12.6.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"12.6.0","dependencies":{"unified":"8.3.2","@babel/core":"7.5.5","remark-parse":"7.0.0","is-alphabetical":"1.0.3","@babel/plugin-syntax-jsx":"7.2.0","@babel/helper-plugin-utils":"7.0.0","@babel/plugin-proposal-object-rest-spread":"7.5.5"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.8.0","vfile":"4.0.1","remark-stringify":"7.0.1"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.1.6_1565110170451_0.8662731233818777","host":"s3://npm-registry-packages"}},"1.2.1":{"name":"remark-mdx","version":"1.2.1","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.2.1","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"6fef56347096a7d432712e417d571415f08e0210","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.2.1.tgz","fileCount":7,"integrity":"sha512-k2QO5OBCH6+5Ix87Yw73QUk+rrCyFCwRlM2hNx1sXdV4KKhqaRG7M10a61pyyzK0nvRbLvZhvZTQO9+Ww4GS5A==","signatures":[{"sig":"MEYCIQCy4pJ6M1TcZUyEXF/JENXhnqrASMkIykoFdAEbPQoJ4AIhAIY370a3iDkZkxg+wkg0FShq5liGEZlSA4nxan0SEGwy","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13425,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdTKgFCRA9TVsSAnZWagAAkswP/03iZVeqYyR1djCxFOSc\nTdGZeVj9KL5iwcLKOrTMalhhtFjTSyKMdevYMFZ8VkGklTpEm6HqR5I01E4D\nk75ixlbPNIEiENvKT5RivJCPmH+UvsB1hOluCnsOmj2b0QAKLyMa9nyYTiUW\npW/Pje5fTxeiGdMr79lX9R4xkogxeT7/4QimSOEv0PPRrjJmQWYOOxPVQey6\nMXqxcYkGUYuc2a9b3NPm8Ap6l525/RMW0KZA5itxa/VA7bgJ3kHukF5uP214\nE+upR+Xu33J+ULcXYQNz0l3zrSozkOg78xNwhryujjtbrNVMX1+uWWc5GKSs\nVO5I9wLJuwAo5B8ku65XRKmQSxhqu21OApmkv/CN/C0oyraa6CPDQFKNXYhN\nqlDEHip9qyhjp4ETUTO0Xw0TMvFKWLdBeQLG2mD5DXFaVOBXVX9Lfg97x3dl\nQ9Kwma9IixZGrzsnNKw3d0lg91tH2mOlNIDyvf6wPBd0tR3U9kpE3agrGKDq\nLH3mp10PAfEeEHIbgo0KCycKfSeztgA4I00yndWk9CHMfI20NbmRfxUFiHNY\n/ewXxJNnfcxXcDgqVy4TyFBKUjM/UnkvJk58mew0z29pLCar8VmGSAJBOz+/\nP4EFvwfUHdBe8mv/LijyTPdMfLrpSrZC2wsdYlZkbEqN1d3hRsC4i3TzzPwQ\ntgUM\r\n=2zbz\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"950291fcf3243348d2c82a549bb72ada45951eb0","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.16.4/node@v12.6.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"12.6.0","dependencies":{"unified":"8.3.2","@babel/core":"7.5.5","@mdx-js/util":"^1.2.1","remark-parse":"7.0.1","is-alphabetical":"1.0.3","@babel/plugin-syntax-jsx":"7.2.0","@babel/helper-plugin-utils":"7.0.0","@babel/plugin-proposal-object-rest-spread":"7.5.5"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.8.0","vfile":"4.0.1","remark-stringify":"7.0.2"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.2.1_1565304836650_0.3400524426860909","host":"s3://npm-registry-packages"}},"1.2.2":{"name":"remark-mdx","version":"1.2.2","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.2.2","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"2e7efc76405999f7d3937b9011c2310326cfc74f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.2.2.tgz","fileCount":7,"integrity":"sha512-jkDKV2FMmIzRftMFL6YDKijr12JxsgXWgG8Slb/IKV58F6846W8WuJRonQDCOQ5QL2+1GChB7hZ4QbnNvn4ktg==","signatures":[{"sig":"MEQCID3g7YNVBIbQd4ZgHhz9gMUwpv6PzmF41TmNc+pLyRNeAiBuIq+BELaAIfjByeXCeSJ8ix2wDE78YL5dVrpfhXKDVQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13425,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdTKkCCRA9TVsSAnZWagAAb5AP/jRkG1EHnod+H6+k/1ML\nN0+KXPyTB7QO6Jj3RnKvIfSaT7SHl0PkQ84J74WOMncI/SoYT9W5qMt03O0u\nc840ze1JYIE5qyfR8f+3hpjb9zlIubOyHFG4ygNuYAyaCs0RpstR59TMfcfl\nWgvKG3rB8unEwGqk57CF5DtARtbYENYftjIcbHHSyFJYHlboD1LOYmTaswzK\n6xTUZ6IY7j53SDngHiu0UW9U81V/3/dFeDb8e2q5ELgO5ZMhlgDFOaiHUguq\npJ4qUuFG2KbAoNbVPPnsEARuus6doENAV5Z3AU4XFhJlvhbeZ+joefsgD2FW\nrOceHVxXEV1xfkiSkwom6uILXHndOeUrdOHMRvwCpASv/XCnzGyQ9vu2uYi/\nTZWj5g4hi71R09fy0A9ywuiySECWakBT8+IYxU/lXON8qW+Lrolv/msL34Ii\n/RpXzQq3jZOkmHY42G4n7sC5nP5PA3+8XjBsT16TPhwAMz2kJNde3EYWW3cc\nNkSunri47eZuu9mW28wcu8pA/ri81jndL6V/vVoE0HlvTkjEO+YVKsgScZ16\nyGlp+OJq1wqwF2PURZJkAaHrdFFdKs875WDFqsHuTNKQWZ/k9v6dsexqrv5R\nySC8TBVq5HCLzjYFGb/k9ooa0ULcFEe+ySw67EyQC5DIgMY2r3lzju7z6wla\nuzTv\r\n=837x\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"3b0b715759103462809a265524825f6a846e0de7","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.16.4/node@v12.6.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"12.6.0","dependencies":{"unified":"8.3.2","@babel/core":"7.5.5","@mdx-js/util":"^1.2.2","remark-parse":"7.0.1","is-alphabetical":"1.0.3","@babel/plugin-syntax-jsx":"7.2.0","@babel/helper-plugin-utils":"7.0.0","@babel/plugin-proposal-object-rest-spread":"7.5.5"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.8.0","vfile":"4.0.1","remark-stringify":"7.0.2"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.2.2_1565305090171_0.6456224631047218","host":"s3://npm-registry-packages"}},"1.3.0":{"name":"remark-mdx","version":"1.3.0","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.3.0","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"1443c87637bb21911c0bdda01c4f2cb43dc341f8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.3.0.tgz","fileCount":7,"integrity":"sha512-K038V6Xz1rrcTygb3wlaDatTTdH9vPcjema+WugoZWiGBh3P7fsLcTx5idbNDXhHJLx3RnUIiYy/XgNP7RHJHQ==","signatures":[{"sig":"MEQCIEy7oNuDrepMOEjhz0AY28fqJpwIDlSpjQvDPTanfzeaAiBMxTOC4YPQ6UCtpfozQzucwZGfjfh0OQ6NidZ0f64DvA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13425,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdU0DsCRA9TVsSAnZWagAArhcP/22i3LHAwLkALP+ATniS\n7atXJHGTvdYq+wMHG3XR6PjvSsw7el2a4IekYxsoM3LXLHEsaLuZ7jc8QfkN\nqKvQ2rngjrQTc6coqzfvuRpQOjOklwSbQO4c6XUVWNQ88YlTX2b+2T6N/8WP\n9HggLhLRMgSVLfIJ4z3rmtR1CUdy6aCIA2qEMJ1xcVDO0qy96u+NWYMb4LEX\nxLcEtL1uUbQfRY79uiIibwopCKXuwBvsFQ7sy5fhKxb+3PSnu1UP785EJ2Wp\nQMbtJT+pXhu4cn2+oG7h+Mawg2TYYv+hAQKzLVKCiud4MELAimyow4NO/k9y\nw50o9nBzCmZgJIwMhVoNiMrgZjIeRymHC+n72QLQrs4+q4J5QT2lWfjE8s1g\nAXB6xiu1GgT5jarUUkexcXqN4Hw6ptgSjmzuKSRGiDy/TPNSBwQN6BBOs+n3\nP11rBjaBTKfBks2DnMv9NYs6xdRbWnIP+jDRQ/hO535V4Nhp/zlnRfdGAnh1\nCQq5r2tUT68LmjyZXku3isT9KIUb2Ys9gjijFt+z0qfQM67Rd/BHME9dJqN3\n3zOovN27Z3+9bQFj6lvN34+rC7owpOvkpmdQEjXLySIwMQWVj/qhiid3S+jU\n9Cl/LbEJeN4JWdDsPz5qf+GSKNFt4ucIpXsvYR1/k1vxauHQpwMTVPN/Wu/l\noZvA\r\n=KRCA\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"00723c98540a867faaf45630a66d9827c8880855","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.16.4/node@v12.6.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"12.6.0","dependencies":{"unified":"8.3.2","@babel/core":"7.5.5","@mdx-js/util":"^1.3.0","remark-parse":"7.0.1","is-alphabetical":"1.0.3","@babel/plugin-syntax-jsx":"7.2.0","@babel/helper-plugin-utils":"7.0.0","@babel/plugin-proposal-object-rest-spread":"7.5.5"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.8.0","vfile":"4.0.1","remark-stringify":"7.0.2"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.3.0_1565737196155_0.18752199761749822","host":"s3://npm-registry-packages"}},"1.3.1":{"name":"remark-mdx","version":"1.3.1","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.3.1","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"6cb9e904714893fb5d7c63dfac629a9742f4e3f5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.3.1.tgz","fileCount":7,"integrity":"sha512-meOzRZRatApALyx8uPugc+O97e7CsMUOCMC8mJq4agdRG2J1Upg7+PAQiTiDJnT2TRok4EbLoz7OXWjDDDHIRw==","signatures":[{"sig":"MEYCIQC0JOZ1pYhpfv0uUMNkBHF8kqjajbZR3TdRb1D876uVngIhAJbHOwB1y9pqpUeuUNeEmUg7n/l3ZoLqT3KQBaSzqQzq","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13425,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdWXQZCRA9TVsSAnZWagAANLMP/37o62CHG3hlEQxoZWY4\nhPhh/2Ygf/GrLVSxMAbGl89MnPLlHhWpRFuCt77n1y9kPny0IFYwWc4ffQ9J\nwcsKLSloVRyTOFP3kXHu5VYIT03bC6vkezk+E3satpPc9zHbhuS+BPvaeSGN\nC4ZO4C/T0ReSF5XSeveXXio6wNtyP4BAPVpuAcXCEVNFKBHu+Iw/8L/9zPWE\ne/eDJ+hsFdMMGBUxxQ3CwsxNx/70oigJL8PQBHHz0WKQAnEmFALd+v/bICvR\nwgvbOSJau/+jwR8kvye5LT3AA98NFERAi7WtFJKxaboyKt1c4V0+r+qHEdw3\n7sHPHXDFJMCyx5ntKMtDv+1i/S8C2OGqm0F4efNgMoOS1GVUovqTwrCdFn35\n9O+09qx5rO75p4kcv8dfmpTaXuGK5eUJ8KD6nyVpJPePxFGxhpr53foBjN0c\nSp3IXtGxLdwke4tzRgpIXlfMsbNDuck3N2AjOalFQhzvteyWgIo+CTpKxKO1\nBntAZO9yJJkB9JIwmSzqhaZRWWISE7rvS8qJ3trqBAR2cfiCnSWsEj04Kud+\nbAsug950lPj/CNehccEniYJ3PBrJ38pA9fgKhmxxEVXCWwJsv0rl2vZSjrFV\ns6yxXPIqkXwg3MOz7lFk5Xb5DPI/QbIh7MxoiHyitUEdWR8gLugwC9L/+cVJ\na6fO\r\n=SdiN\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"7e525401ea757692c37ad412a0cba532397e0340","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.16.4/node@v12.6.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"12.6.0","dependencies":{"unified":"8.3.2","@babel/core":"7.5.5","@mdx-js/util":"^1.3.1","remark-parse":"7.0.1","is-alphabetical":"1.0.3","@babel/plugin-syntax-jsx":"7.2.0","@babel/helper-plugin-utils":"7.0.0","@babel/plugin-proposal-object-rest-spread":"7.5.5"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.8.0","vfile":"4.0.1","remark-stringify":"7.0.2"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.3.1_1566143512951_0.959342994226017","host":"s3://npm-registry-packages"}},"1.3.2":{"name":"remark-mdx","version":"1.3.2","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.3.2","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"efe97272eacffd9cd8c7407e093fe2f5e4214fcd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.3.2.tgz","fileCount":7,"integrity":"sha512-yQVqiVseX2bTohbaaLI7l0G4W23X8X03D0bfVkOF4LYxzZYZr/ExML7RrcWEYjDAccHgxWOMWFrsynbKfTydqA==","signatures":[{"sig":"MEUCIQD3Su6p2BZC/zjqK1zpRrsINgDwJ0InmkJG2Fl4ZtS/bwIgFl8LCVMj+EYTVikJa1LpzKfpqwMH0rLyw9T6VlrVs/c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13425,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdYtnNCRA9TVsSAnZWagAAcbwP/j9KkJwENogODaFvBZwA\n2pJ9/fSrwE1UVal5y0xHT0tZjgeJOYxo9CSd4gyOWfnlbFQKAtdQGGlq2YSm\nBNsW+9xyaxjw/ViMCb9iBQRdALoExDyv833mKt0gDaTKp5o3Mf5Wx4qGPq55\n/H4ymzLqa5oBOcVFDeKpSlZ/fwv/5KuG91/5AqbWaBPaL+6IlzjUgk3QG1MF\n9aBdpTGLDzK49iJ2hSczFPDf12K98Jjp9h/3CCR5bOlSHVmX1FFpwrLIpqUH\nSVQWihaPhFkKHBvR6ovkIvQlJESQo+h2n+HczhlGLHG1kbh60ng6bagMEmGo\n6ZTfb/U5eRdvE8hGOdvGGnkC5lhx5cv1bRrph3rBaPfWD9nxjofXe2tRsUT4\n1gH4pLG0x9i0jANvLFc5zcPvRMIk1t9f34vS76FRY/bKNDPJufbyP5fkg1e9\njDqVXwb3RdQLkkpSvS7z1xD+AabX253Dg73PdlKimDTdoKSzvT3HvO7eUbV8\nXroFqbbTsCNPurEWo7ICsSoSmPWPzU3Ek+kyYv4RyX0Bu5je4SBPG/8CHGih\nznbJ7Lhg9v1ivNbKCDOmYxysOftrgZsnr+Gt/40e4mYzz/21TVx0J24bNUIm\n+pl0PZV1Rr9OKkv76JX3B+4Q+XtR2ADDX8X2cF+hUmRcaFPTTXviFBt5rszJ\nJzc3\r\n=snKB\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"c9118da7f36a71b2fd0edd88bad332b33708c933","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.16.4/node@v12.6.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"12.6.0","dependencies":{"unified":"8.3.2","@babel/core":"7.5.5","@mdx-js/util":"^1.3.2","remark-parse":"7.0.1","is-alphabetical":"1.0.3","@babel/plugin-syntax-jsx":"7.2.0","@babel/helper-plugin-utils":"7.0.0","@babel/plugin-proposal-object-rest-spread":"7.5.5"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.8.0","vfile":"4.0.1","remark-stringify":"7.0.2"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.3.2_1566759373000_0.9802219424992662","host":"s3://npm-registry-packages"}},"1.4.0":{"name":"remark-mdx","version":"1.4.0","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.4.0","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"f50c2b47bdb61e71aa0e15e976277e568ae0d486","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.4.0.tgz","fileCount":7,"integrity":"sha512-wheABifW7zegJ9ASCbHJ6SlKp5ZF2YgWB62kU9zLR6SE2wSfipk3yK1tgXKmBTpXLrRuxPY/VEaV7YcO8dLLgg==","signatures":[{"sig":"MEUCIQDb4te6n4CZF/tbJuoJM/aYTmB1LP7P8zuQvItFNRpItAIge/W6aMsOPS/ZEggESebUjHf9H5hw7RIqmMgsvzHOac4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13425,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdY+ZICRA9TVsSAnZWagAAkPgQAIteghjHoeAclNBxHdO6\nzsLeV9jNm6E2iQZkmb64yV35lu5VK1hpZ/cJ84k1yVLxPKEqotx+1/hQEdfg\n4CvZsvsebkssUYH5lJ6b0H8Fx24rg0VjVnhoJKHTPFuSipL1ytKzP36qDd6N\nfCYELKPHtdvjAQyke8WGcxdNQmVKDRlO4FfA0egRfaPrdjliZ7GRWKw/l1dc\nn6ygDaGTqLdFIKsDTwwrWNgs6lyeOQaHKgtyubZuKSfU8vBsDFyP5ZN2inG8\nIJGQp7K9m6sokVLveBsfjX9eEQGY66MldnmW4fa/8V2J5YsunjVSRvDsxYVl\nzAvYMR2IzhxzjQT3l+IQ+rsO/nhjsKyOD5q+H80jQiK5ilxMqWN9anMubdMk\nuc9H55wayf8AyHT8HSHIWnGTWkGy0b50TWsx7JIKc5g6le4kKNiTchdww9lt\nGDCF4c5WB+xtLymI4ExrZ/M7Ys6gP5JcqGkIouvn7jWcERHc6PkgjWprPxY/\nYlnRyODG+uA17LqPM50UGlMcDbmz/JwTrkNaZQdYrxuQUElIyZIX+AySVTNs\nqzUr25Y0lTqpLun9MnJaPyUjroOVySG8OuZh3DYJGG2n9iSIR/ptei+4Qy3X\n1F99c/xSfuug1LpiCZYuOGlh8Fve0R3AjF+YXriXtEueMlp/mXgAumqHRZtV\nKAhT\r\n=SeaL\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"a868bbc2643febfa09b71fed75b88e23e14616a9","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.16.4/node@v12.6.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"12.6.0","dependencies":{"unified":"8.3.2","@babel/core":"7.5.5","@mdx-js/util":"^1.4.0","remark-parse":"7.0.1","is-alphabetical":"1.0.3","@babel/plugin-syntax-jsx":"7.2.0","@babel/helper-plugin-utils":"7.0.0","@babel/plugin-proposal-object-rest-spread":"7.5.5"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.8.0","vfile":"4.0.1","remark-stringify":"7.0.2"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.4.0_1566828103458_0.9876045877581634","host":"s3://npm-registry-packages"}},"1.4.1":{"name":"remark-mdx","version":"1.4.1","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.4.1","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"88bc01c80e3278145e918d30f4f88c085cd5b988","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.4.1.tgz","fileCount":7,"integrity":"sha512-R+qp7RJG+V8bPeE5PidU3gwHNimL+VKMCJe1NnjEnQTiFbI8//YxB6KYQOn/E0GiyRLVwYnQWKgRJ4DEkdrRaA==","signatures":[{"sig":"MEYCIQD+4eMYupKYbJeZUzUO6qFLeDiuSDLziG6l8fWAusEwiQIhAKXYVG08pxoX+/LzAsSmEHUg0Hn5Bycj+uFPxUGyW8wC","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13496,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdbptjCRA9TVsSAnZWagAAkY8P/0+R0nj00H0/BMQFaWtx\n9bCrBsJGuAhaD+aTx1PcKhdDoMg/zmnAPpMuqg5+hsgUTEHuL3hHVDubpPOV\ngX8s9T3E6eSbY9bv0D2vtpQgO6gLHTSWU5VislZ3kj3EQLpEdh84zQraXOzg\nI2r0r5c1oQbziX8C7A/QnZAAzGEWko1AUiBao70PnNT3FFKi6lMOxWPPHtd0\nD8RdyuVX22m2ooHyv9PqvUiY3tqBrGgA026jyUtMgZ7ZXaM7M0QJ0rJpc9tr\nPIgMbGst248NpPk0bwpkVIGSnYdKy/LaOPYjTGiDtUZ0Q9otLJXNn71WWY/N\nM9Smn3VkfroaDgMqVPnOUUL6LBcUYV17jiugSQHKGRzb/GDxIA66XvPOH4e1\nhGy+UhO2nTU4JzC9gm8w23ItdozDLq86YqCB02w6byOjfo3LxliO7vtynYMq\nWGzWFSo0seGKow+tPn5di9QaFMfStSRUgoYrKZLX1pSKYgLtdujxkLOEKCyV\nQDlTVk8+MoANgasD/M7gT4SpFmVt4r+EbyFmUzzNo/gv9kpmq4W6DyP5/EZ/\nWpK3lI1PaNxI7IGSg7wwmOgM+rqMf2MKlU/sCCFzM5MnLxmmHjG08A7jWgLz\niQUMLdhiGADBAz6dwWUB/bRnEgE1tRbKIhNt2V4PzPWIuDxf3hxpzld3kABr\n1rd6\r\n=HbAA\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"cb7facfbc842001db55fe11f12a3c562cd7f3728","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.16.4/node@v12.6.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"12.6.0","dependencies":{"unified":"8.3.2","@babel/core":"7.5.5","@mdx-js/util":"^1.4.1","remark-parse":"7.0.1","is-alphabetical":"1.0.3","@babel/plugin-syntax-jsx":"7.2.0","@babel/helper-plugin-utils":"7.0.0","@babel/plugin-proposal-object-rest-spread":"7.5.5"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.8.0","vfile":"4.0.1","remark-stringify":"7.0.2"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.4.1_1567529826521_0.8470771891380866","host":"s3://npm-registry-packages"}},"1.4.2":{"name":"remark-mdx","version":"1.4.2","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.4.2","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"1f7ef12629876a78983c3ea3e3d0af21874f0f43","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.4.2.tgz","fileCount":7,"integrity":"sha512-hLqbAm90iIYQz6f48TNPRQop5lhjsr8U0+duKkhSyqUbPW1LC4f+NixFnKdsb//ugh9nxZUBpqbJYwyDaDTTCw==","signatures":[{"sig":"MEQCIBp8Nb+nZrmLkafR9ucJ8SAasfPUwDxpwKXHKCpi/9fVAiAEN18vHRCEmSvITpq1pw0rOVbH7Y4uRNjBc+VKoN+ERw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13496,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdbrXbCRA9TVsSAnZWagAAqpQQAJv5MfKLmTp7hNWZQjgy\ne7/ep9hmVVV+WbSDmZ7g/UhaPEZhSd3AzQHnwCcuOlTulxMfXfPQz4ekt3o0\nrSBUf7CCPJWx/ObxRC7uqueQhp58dTpWvYwt86zNjky2t/nEucjPo6YuVGIh\ntHF/hn+EuWuGVAlEXxuDLElE40V8iNW8SQ0xCiuxDIDzsHOqpmtestiFZKfG\nc807It4r2y5BMM9+R2CCvDxrzEiZei/tU5w03ZtupE6XHNAZavb6zA/Cz11G\n7pbXNifv4zij+BZlA0/mnshCFdrICFwlSVK5U447hP6vZR0AHPuPiuhBehjr\n8Rau+UcErsch6sdl5nU9TEGgrD/TWEgE9JPMtwm8I9PfGHfTT+BTQA1aJHaY\nKMzJQCENNWU8lJ2KbDesEIe8EA+hBBBJ7ePO4NqfKk71AZP9SZqjfLXsvRDA\nc7oy/X1nQZHlLXUoHmF/bPevedqp26NxqbGdaytpZI2wfJfzZS9M+qI9H8k9\nwZDHAilDOpVrnv76T5YJOhog6HxM8HO7hbaGBzplk4A40lQPBx8XyBFPNsN8\na+lQkxG2Uco0+jeZGcC2rbGpwXsdfetnh5mML2s4HLcyCTII//smAJWbSF2G\nU9P7xNJK/IsivcTHx7DdQQxf1GXbIGsHM2hSpSz8CJMkEDNezxUHct3AER67\nIBbW\r\n=Kkx8\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"aec0aa5e3ad8a4216a3dea688234903ba495cac2","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.16.4/node@v12.6.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"12.6.0","dependencies":{"unified":"8.3.2","@babel/core":"7.5.5","@mdx-js/util":"^1.4.2","remark-parse":"7.0.1","is-alphabetical":"1.0.3","@babel/plugin-syntax-jsx":"7.2.0","@babel/helper-plugin-utils":"7.0.0","@babel/plugin-proposal-object-rest-spread":"7.5.5"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.8.0","vfile":"4.0.1","remark-stringify":"7.0.2"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.4.2_1567536602526_0.518848540372999","host":"s3://npm-registry-packages"}},"1.4.3":{"name":"remark-mdx","version":"1.4.3","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.4.3","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"53daefb0617d9535b85ce2b0cffe4a3afe18f7d3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.4.3.tgz","fileCount":7,"integrity":"sha512-y2VptrmhvptbK3UTA5h6r2OilA/ohuUNyEULKaGAAtc+J2Mt40YN1D2zEECHsMGzkka7j63rOmpiZSTndY6nMQ==","signatures":[{"sig":"MEYCIQDlLgMVFvozGMCLuBpCuHbQzSiQZSTrrwX03TaUbtXcJgIhAKJbsGTzg8A805NvBV4iE3a+zZCbswGXrbZWf9Bavs9G","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13463,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdb+ZhCRA9TVsSAnZWagAAa3YP/34ZhQebHhN69pHAKtzg\nGZeUbA5deWLBZiq4qHudkavksqTXHzqkI2whctfok0NTauc97Gcyz39BqmzK\nU3IZYx6ZPfeFUvFzpgUujKOu46qKjKLbXsosNoelNSCv3XlYGBir3Cik7519\nF3YZ27Mf1alGlTjh3+KZtfk+RowPmC0k4OzZnypjImx8whwizkpJ1MdRkeXi\nEY5rm9x8JjftpYVv2ABxzchq/jhvHBkoWrwz1D00sdyeKL7v+kh8UT7GQK/R\n41Py2Dcf7IDFT+oBAyR/C5ZFioKaNl0Gq1X7u8goPTdY73tes2DR85tZfBKT\n86LIKN5KWZ74dUosopHfVmyvizIrc7x+ifTUQiWUmXe025ExeY6ikB2AaQNc\nNhHXKbqMPqd1HVW73hy3clyimPiQP46noBSPbHlD2F+K1k51EHHzURgCbaFF\nxfMUE78Hhp+kNg3n7aJEGysV359KRk6j4T9cyoES8lJBZjUEPVYdff3f0QNh\nh3GpxWPs0L//QK9yLFSKXqBOXZWbM34mrlxR1sh/v9uZjuIL2rUGhDTtXipZ\nmSvawOU0ICBFmPVB7RpDS2IL6/wrwlkzSQ1dPDCQAf3TnXqFYtXG6HrDb7Df\nq1n6Ohd+PRYizNhOWejp+bYPoFtticJrsOYo7rhSsoMPxobOtO3uMIMA47GQ\ny1oF\r\n=npOf\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"5a05c7164676054c90e1e072bd259d9c1d197597","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.16.4/node@v12.6.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"12.6.0","dependencies":{"unified":"8.3.2","@babel/core":"7.5.5","@mdx-js/util":"^1.4.3","remark-parse":"7.0.1","is-alphabetical":"1.0.3","@babel/plugin-syntax-jsx":"7.2.0","@babel/helper-plugin-utils":"7.0.0","@babel/plugin-proposal-object-rest-spread":"7.5.5"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.8.0","vfile":"4.0.1","remark-stringify":"7.0.2"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.4.3_1567614560727_0.5426341103979977","host":"s3://npm-registry-packages"}},"1.4.4":{"name":"remark-mdx","version":"1.4.4","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.4.4","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"0e6d3c5ecbdfe4b133a85310fd19e76b1ee3ea82","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.4.4.tgz","fileCount":7,"integrity":"sha512-yz/kvkczimzJ3AT1ZbDPBw2V2TQd9D+0RM30kUi2NMW1CElYcMey1DtmAb0V2xJzjHtAIdh6qi2+uXyBH7lBJw==","signatures":[{"sig":"MEYCIQCPF1LVbaCKXUfHmUG/i08yTnVigz+6QRGocAHpV7DRAwIhALaGjc1WTi+qChLMYIaftYE5quC/rBEVkxK/rPHZq890","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13463,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdcRhMCRA9TVsSAnZWagAA4SAQAKHAGcfofiY32Hmo81bj\n/BlmTWJUr+572ZdEmlZTdhdF+VL7R3zvNWOwzPyIBfu6Agb716RQ0NhWKBIB\neKl5wemNsWEMW97Idi5fBtcd9Vh5bNh3mzT43MOeWoqbi6Z3CwkqxlT3bz8X\nZ3UmP2nk1woDPkAdjTSZKnXbI4zwHK1HJ4fkBrkufYg7QCyJEAeW4m2wJaZl\nfkADoU8CkqfE72L85ADFhrUb6m75ajSGvDfiTf/q3g5UdnIwb8BoDAUW04RU\nu7NFPueO2uGMx+5UJjMo6ymIW7VYFvp3eZJsLkUN8WbjLN+pzHRUfvQrlR6w\nl0GpLzAgoRRBOqQipuyUqnXi87cDdXuTDSuOd5/nQASRKt8fCJAMxezK+TZ0\nAqQRvcobzAxbGEvHNQpDSkaTHD+qPmzyUeYY/WIU3dVfQcnsK5G8l49v5YKT\nHOw3vDV54WnVFVu7Z7pH/0WwGAqrHU2IuOZV6BUNIigYUc8rVamRUb3M2n3y\nSXDDt4nIT7mKx0KeFlefKCpg5ZtuzqAZFHwHj19XRGKA6BbbaDwSEfdtLjgx\ndju/Oi6xLwehETCMv8F4Bk6+/1J6Oayo47IZ6Ew6Gd1YfbpFJyk0VB+N011+\nncJzh/S9PHtAhxq5Tk/ZjOxVasz6Z6+U80m7zAPsuMqEEWEy/l0sC3e1S6J0\nFvpH\r\n=dIAK\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"dec55ec92f9ff42b0ae3617f0168a387e56f7ff8","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.16.4/node@v12.6.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"12.6.0","dependencies":{"unified":"8.3.2","@babel/core":"7.5.5","@mdx-js/util":"^1.4.4","remark-parse":"7.0.1","is-alphabetical":"1.0.3","@babel/plugin-syntax-jsx":"7.2.0","@babel/helper-plugin-utils":"7.0.0","@babel/plugin-proposal-object-rest-spread":"7.5.5"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.8.0","vfile":"4.0.1","remark-stringify":"7.0.2"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.4.4_1567692875777_0.2819307377276956","host":"s3://npm-registry-packages"}},"1.4.5":{"name":"remark-mdx","version":"1.4.5","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.4.5","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"4701cad33c6a4a0465514f39a7dbe9ee7715139f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.4.5.tgz","fileCount":7,"integrity":"sha512-Njjly0I6l7WAe+ob2qQ3K393rtkyJLjbaZOn84CE2P6nQRzei5PlNRn6DH5SfCzdzP7llHZbW+CVsj989kd/Wg==","signatures":[{"sig":"MEUCIDPLQ3xfVQRLfBUJPPDc/3el0h+FueK/1ZlObIr7VuL2AiEApFVPGxtD6joRhsT+zN4JkqNDv9p2kfK8W/u4rcwhgyI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13463,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJddmszCRA9TVsSAnZWagAAC8kP/3xOwSuY4efVrxYBnDfN\n+veA+WhR+Hc52EI4BJ91H75DoScnqEn80AvR9WeT5JscO33O8IqfY+xtjtMW\nV/7lYXcMULcYuQKzSiacHBE2MN5FnFQuangb/kLw9HMK0Q4FLnYG9XUTNORv\ngowmPyGFQRIuPID8nxBY48oVlNppAb+rddltW+eCmWdk+u51znLx4pA4EnS1\nL3Q/XHoKNwAGJgq64jbct+Yb8SnDJCdTTi98VSsK2LiF53AMHM4PvOgSXKrm\nTdYqZLjp4cad67+d0UUrMY7woFZ0HtqKYNS5XwnbJyBH35cyYhXkoiBuSCdv\nCr6pglWKY8tYyabBgRlJnBWVd9FLs+bzIZic8+oPXb0MwN6X8Svlb75MA7B/\n+fbBQO9Q0xQ+Qlbul6TN1meAK0ug/BB9t+YlQ/sn0i/e57LBoOfBBD1OGRRI\n8C1xHVM02iIzvvY+DAGRfsfo7ThS55uqfhexATKc3loYG/6J+tVymXoE7AMw\nK2MmMEbvntlLOaQfzvppeL4oAUJ2sN+KkzzJoq74eC13Xt4Wf3fhoHy52ZkU\nSsBfPEi+doBjOLfH6rlNlV2ZRbYsqNs7L2sAJcPkiDDHWKL8xSHHAd//EsLn\n/cqhlJMNGF+ybtB2RO5w45IwvwYgMH9LL/vUGKuTk087hMeviaeWNFU+I4zF\nDxNK\r\n=qdHa\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"aecd7f57352ec413a91056ab21a4d74a4ca056a9","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.16.4/node@v12.6.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"12.6.0","dependencies":{"unified":"8.3.2","@babel/core":"7.6.0","@mdx-js/util":"^1.4.5","remark-parse":"7.0.1","is-alphabetical":"1.0.3","@babel/plugin-syntax-jsx":"7.2.0","@babel/helper-plugin-utils":"7.0.0","@babel/plugin-proposal-object-rest-spread":"7.5.5"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.9.0","vfile":"4.0.1","remark-stringify":"7.0.2"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.4.5_1568041779306_0.035341982770948466","host":"s3://npm-registry-packages"}},"1.5.0":{"name":"remark-mdx","version":"1.5.0","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.5.0","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"780541b0455ab7432dbb8501be32aa7734b1f441","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.5.0.tgz","fileCount":7,"integrity":"sha512-eeYUHFAkfsX+zGDQ8iMjsIGWRvco9x//P6OOemYTnXhqlcnn3Xo2kcxsMX9ibvBtX+/qwZ/i+juDnMe5Buu0Xw==","signatures":[{"sig":"MEUCIQDNA77Ar1/XI63S3tJ1AJEqnyfvjMVLbps7X2Uo4lzABgIgea9JqOx+g3Io/Z668kcGYo/SrpBzOJKTvZAp/5FIQxA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13463,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdiR9lCRA9TVsSAnZWagAA08MP/3rVIhw0trsqrwYrZW6w\n/sgvctZnfyrh1iLkc5tf8lCc5XF4jro+F3iamVWZ4AUNVMagN5jVqJdG40Tn\nB/BlFJADwAkFif5WfPaQoBm+zRz89uYDLwWy8eyuJINUFJtLDQshKulHyobk\nYcmFUTR5+HAUnq2kbnOuwv7DFkLFZ5DSun1jrIVK3RGgDVJTs12uZQWZbfrO\n1pl6btDXMHDv6xS/gh+TDPDI//gqma6em1r86NHWQOq899BrF14MBEzEduSp\n2vlOeTpFK4KRiI5Kw5CxKlW2xHsWV61bHBcChvpaol8ktcBzt7xc07U7QkKY\ngjHvevjQnk2V7cXwJmyI0G469uiv8vAJ2fAVZZa7DHrjwm0sa2lmVjtqjtRs\nYuaPe9GwrUnkeGU85C4+avXLTN2nD3XcLJr363a8wKkPD+Q7Uod5cPg7DsCU\n/jDCQhtl7WT0cfHp7UHssVBZA8eTkTI++GcJcpVDb9NQt40KihKe0rGvQ2Ca\nqioNVee/XudgZbZcOHydJB1LbgxzT8YQKdpucUJx+/n5y5TY/szKgilOrPrB\nzDq48+9RhV7qFKTPyVY8Fk2KDlv3RIvGOPq9xeHV0IHv0HP8WoXNgkWxFzCM\n7wka2GXjuGkTm8Oy5bV++i4cmy3AGDpBbLP1nJb0SlQA5MEigCbd+mqCW7Ql\nvclr\r\n=e1R9\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"f61a1be0c5c408a18c7e2d38c0ca0761f8e80e41","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.16.4/node@v12.6.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"12.6.0","dependencies":{"unified":"8.3.2","@babel/core":"7.6.0","@mdx-js/util":"^1.5.0","remark-parse":"7.0.1","is-alphabetical":"1.0.3","@babel/plugin-syntax-jsx":"7.2.0","@babel/helper-plugin-utils":"7.0.0","@babel/plugin-proposal-object-rest-spread":"7.5.5"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.9.0","vfile":"4.0.1","remark-stringify":"7.0.3"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.5.0_1569267557123_0.5299880175388088","host":"s3://npm-registry-packages"}},"1.5.1":{"name":"remark-mdx","version":"1.5.1","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.5.1","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"df176c69b0d22fca890812cb828a100d5c14ae60","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.5.1.tgz","fileCount":7,"integrity":"sha512-emKP/F1VV/k7iKGOfSChTIGocKHXbiDtdn4icefpJUedxLXlNYXe+jiSDSqlBhkv/mmN4poDTTHvFEIV6vpd4w==","signatures":[{"sig":"MEUCIQDCu7Q2yAzfx5KJ4JhhLnOqe3QitNhY5S69jH9M2e5guQIgRWnAaCr9YNb5bGx3cPkVQSizxEUelio8InsKK+6tnco=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13463,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdm1NpCRA9TVsSAnZWagAAZSAQAKUoT2HQUnJrAXe8a7bh\nkbITBYDbqp54XWOCWCEoR1P8AjeWs2wy3XOxZm0JNELHJ6vq6oHn3mR5EFCv\nHDcowNyECTPWBWIbrjk0suPQi7SxavXrIjJTTmQnw47Dor2H4PLI/uY6/hep\n0/f2Wmh7rHLHoM0b9yHHLzDm5WgN35HToTDnMYMoQMDMyhhsww2bp5Jn9M0T\nNDY+zTsagycD7/VgeoQpWPicqgAZgJrWBn7Xe4nwQM6BeyAUXDc4y0ggpdaT\nwNwk9xVwJKbHALOf828/JAkjeX1HQ+DEeA8lQjqmCg8KGXWUD+9LNCgALJ2M\nVTJ5JYqANo6kGEZmst0y569Iisxa33R4bd6cE/T+36vbHkGzKaCqCo6duNAQ\nhdLaDE3pMr3lPPpAAC7P5prE0TU1sCrwcbOFp1P4xZ9oysDTlWUHGVG0RCuH\nrS74jHgijoXODUL6tr4yZQ+61vd8DNC3OeoIr0AJ3lpQGqnhSbPvnN1eW4z7\nGHFh6Rnzv/g+3kC3JCz6CDGtCaR5RfLfqeOjldAa+OSQFmiAMz9YSx06C6uW\nJz2OLk5CFW6kNuY+cdNTmlX7xcTMN48Mj5pf2qNjD+Ro7MHhPcGk5RF8zyFX\nOFr7BOycYCV4zpylkWcBLEy0QmGjOI3Rj7kv/l/dLjtmdNwUuFiiIhjJfSE+\nQMHk\r\n=wcXN\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"4ee999cbe3e82bb4a56e43df14151835f14da400","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.16.4/node@v12.6.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"12.6.0","dependencies":{"unified":"8.3.2","@babel/core":"7.6.2","@mdx-js/util":"^1.5.1","remark-parse":"7.0.1","is-alphabetical":"1.0.3","@babel/plugin-syntax-jsx":"7.2.0","@babel/helper-plugin-utils":"7.0.0","@babel/plugin-proposal-object-rest-spread":"7.6.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.9.0","vfile":"4.0.1","remark-stringify":"7.0.3"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.5.1_1570460520564_0.9998894713427557","host":"s3://npm-registry-packages"}},"1.5.2":{"name":"remark-mdx","version":"1.5.2","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.5.2","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"url":"https://www.1stg.me","name":"JounQin","email":"admin@1stg.me"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"4e65ef820bdd2cee1f7352febd8df143a934594b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.5.2.tgz","fileCount":7,"integrity":"sha512-nKa65qs/ra41ovl+eLd6aww7+M9ch77GTYjsm/PblvBDhI9hOJeo2NaurDB7R5Z5uNr0TtgWp5nps5OeH+WYYw==","signatures":[{"sig":"MEYCIQD+AykyvegGyRTcJ5ucCu9ZRRwD4if3UwXEvUt56EbgtgIhAK3GZHH8/Ghs5Vy6z1gDNREf9TWhYwmgN/0zOjSal1pN","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13424,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd958LCRA9TVsSAnZWagAA23QQAJQ5p080YFv64vYQkOAQ\nmUrvYsw8350u1paTy2jvTBzIAXPRo9wDycxByAV5Lkgw7epSGWD+sEY8YBeb\nndtrv6fcdi4Kf3IRqrvVEsYMd4c93qWgB6jUH7KeS+l45jOcVxI24n5kG6ci\nXoffb+65Xg5mT4DidRouk7pSO4HpBfBM5uvDoOy0lo4RI4wEzfEwCrfNCG+S\nM3LTQD9QrPOquS5f8ku+fvCMDP4LXuG9tQZsuM6M+LZCgdRY8zgJJwVY7lC2\n3gIm38PZ/YB0C3dZF367mGAmCWmUh/8vJOjDoyp0w+fg0KYYrAIrSCjmkxRw\nd5GjQ3tcopkfw20v7J2ACLHbnHLQ5EQ5ffyDahQqnMIxcsWCXf8jZs+5V0d7\n1uRi0e8k3OcGqwbbu1kIGIbM888hQzjIiVsh6XUtuTvqc71hv+mmGgRW7BAu\njgoYS3E2Bhdnw+YhuDfAYe1DGLSHgiKhPsiugl8CJmx0LoTyxnC2oRnFIShr\nVRWo6wsP79PYTalY1eKl2DhMpOMP2OEndwh2CJ7EhzDthr3wVUKkCTD9wMj5\n/Ycoibd6DUVQr6ygJ/8futTla34DyjzkFu0yKe7TgN81gKpVvMmE9pl08zXy\nyv6diYFLPzKMS9l+3Ga7R8cVIYIN9v5oqzvHqX/VHbMyYJxI94zQen5KP4HJ\n9qiL\r\n=SxFr\r\n-----END PGP SIGNATURE-----\r\n"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"442c11da0dbdbd001b7ba80b7070bd32751b2171","_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.17.0/node@v12.13.1+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"12.13.1","dependencies":{"unified":"8.4.2","@babel/core":"7.7.4","@mdx-js/util":"^1.5.2","remark-parse":"7.0.2","is-alphabetical":"1.0.3","@babel/plugin-syntax-jsx":"7.7.4","@babel/helper-plugin-utils":"7.0.0","@babel/plugin-proposal-object-rest-spread":"7.7.4"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.5.2_1576509195445_0.8225642658964136","host":"s3://npm-registry-packages"}},"1.5.3":{"name":"remark-mdx","version":"1.5.3","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.5.3","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"url":"https://www.1stg.me","name":"JounQin","email":"admin@1stg.me"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"adeb26ce7a7b13f3dbed29ac690d7856315e7ac7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.5.3.tgz","fileCount":7,"integrity":"sha512-7WqfwdyER3k0gNiikzw9y+AQskAm6PX2qEF97vhuZ9y8/MatVKoWGCPX4VCYAN0qlM1X6ty761rbMWMy5OmgyA==","signatures":[{"sig":"MEUCIB0iboV1RGrnUPu6gcgT9TruSg2gMgExMTkKXm2pvTZwAiEAhSkXIqAP8NBK/SYnMllhcLDXycKC6Zae93dN2ybx854=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13424,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd/RX6CRA9TVsSAnZWagAAuIIQAJ4QyZCobC0vYpSLYT8r\nccbFur3794LkPmuvPqKSYpTphEYFBuYsYM97HMbRUQiTxffhwpa5GAcsETcB\nD4jhpM9Ry8m2O4e0jNhLA4FHnsKk7QVj9m7gY9QBUDzdglBsZGZEWeQY+849\n+u1+O3FpYu/GkI+CGQVimRPbgCgVwjD6M6Ppwc4+qROekIC9Dvty9RvtpjH8\n7V60xCyQxzflpo1lvNZbcRNicUJBZVC+NtzLlUsZxgiG53WPlAy7+4WV+CUz\nFpo1p8VNoAfBtOsQ9gDAPje13VwK3E4P68X087h4cS0hQ1l1QdKzXXP3KRCH\nxAVss2yTNEKPL3/7XEx2+Mj2RzTh0o/a2e+NYVNXGPDavQHxa0b8N7kftr0U\n8JElI9JiD2iHl0BFo97pBSxuMzbroFOiZhsJYKk9Dm1gItGgOr6G2BNMOPyA\nfrwrECtB2XwJJ1z8+yU02ueXrJ/E4pz8+EK+EdPRpvpWaJGZnQ2foPyVhYWF\nlPQXreyXO2DSXbBjlSoP8wOmkb6fk4sPkGAPOGvzNdf6Trrqx/yGqO/5xEqL\nCBbFEXnmb5pLdCBk9caW8N4ZGS1pEZlVwey/3810WB5U1xpeZSI093QfmU54\ndGmkHq/AyP8hAJOykkBtXOgjIKC6pMe0kZdR5y9qq7ydMEPWuEj/rbn2NiCm\nA9iB\r\n=ef0j\r\n-----END PGP SIGNATURE-----\r\n"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"7b429a1a767c5078b7c4be82a2dcfdf070da2e24","_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.17.0/node@v12.13.1+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"12.13.1","dependencies":{"unified":"8.4.2","@babel/core":"7.7.4","@mdx-js/util":"^1.5.3","remark-parse":"7.0.2","is-alphabetical":"1.0.3","@babel/plugin-syntax-jsx":"7.7.4","@babel/helper-plugin-utils":"7.0.0","@babel/plugin-proposal-object-rest-spread":"7.7.4"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.5.3_1576867321530_0.6474219869930435","host":"s3://npm-registry-packages"}},"1.5.4":{"name":"remark-mdx","version":"1.5.4","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.5.4","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"url":"https://www.1stg.me","name":"JounQin","email":"admin@1stg.me"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"eccaaa40beec0d595cead304613d525249798f14","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.5.4.tgz","fileCount":7,"integrity":"sha512-iWo5qQ7ZOZoYSJO5Ae7gXiH6Nm+TJ4UDafqoWpVKL4OvRzGeuzLgOA1z+asl4EKUH0BDygsn8q83IdZe0hQIsA==","signatures":[{"sig":"MEUCIQDhTWmUiP5k98F1DnBphXF/zb0qOZ2vhJoiRlHj6VkorwIgXYL8B5SHqVf/gb1UBhlNB4EIYCUpRwMq/9OmaB8Yu7U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13562,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeHyhKCRA9TVsSAnZWagAAKlsP/i5pEXdkKBWcxx5tKe1k\nJnk64liscaj/D06n7OfR4f7WmtWS6OB22Rx4C8IvueNniuT7vOpyT9v1HYTt\nYruschE+DRDKIOGeZvulBp8TMtFQTHruOOj0M/G2uQ/5gu+X/nhIj+eHh5Tu\nuc8r8VQYC2ZfCc/XxpmT5MBbEj0vX0bGFVheB/YnkFnmDyKHrWPGZ5EpqwbL\nVuts6WZM0R1XG8Y3bwkfqBf9ZQbYxjxJI3QfzAlK8Zx0CoiBOJCM5m4P/kNj\nCAq4E5PmBgq1RM9Ku6WFxDK9ljv3GuetqZjqqtrR0VrrkBVuLfMK/ibvkuM2\nH2WfACxMwik1hbacA69OSW2jQ6f9YEUg2fNhP1nrFhCDWqhdzo+rDJeZK560\nfm+tFPNhcZpfSkC7dEmWpONhlscxfNDW0p9R16yLywwlC8cV1oQmXquKG4mn\nhRH0SMj7J8Ks479XC6q8NZlI5saELbf+rN9KCSR4msVTbIcktRJRV8/Cam3m\niaKYNdV7UQCnSNaS9L2sYSjWkYmnQwSsZOwhdNA8MKVuMnQpzWe8wdBp6P+A\nlEiOy4mpUUAv/aOs/a0uSCaTbmfTEEFLFc+9jYv+ezs86G6GZ24eXN3b9Irh\n3nGQBEbGakPtwUjpmOIBltQcVUWQoNlCihwEoZFEVtDfdApez0zAXpdaQgw1\n0WVE\r\n=Mt8n\r\n-----END PGP SIGNATURE-----\r\n"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"7456d36d78be627a4bdc0dab1dc2419b5fe81ba2","_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.20.2/node@v12.14.1+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"12.14.1","dependencies":{"unified":"8.4.2","@babel/core":"7.8.0","@mdx-js/util":"^1.5.4","remark-parse":"7.0.2","is-alphabetical":"1.0.3","@babel/plugin-syntax-jsx":"7.8.0","@babel/helper-plugin-utils":"7.8.0","@babel/plugin-proposal-object-rest-spread":"7.8.0"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.5.4_1579100234389_0.9608834877677785","host":"s3://npm-registry-packages"}},"1.5.5":{"name":"remark-mdx","version":"1.5.5","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.5.5","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"url":"https://www.1stg.me","name":"JounQin","email":"admin@1stg.me"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"7def5f778c8454b6ef7747ecb2f01376b994b884","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.5.5.tgz","fileCount":7,"integrity":"sha512-w1XW9UzsQ6XAecV59dP8LJWn4tMftaXGwH5LEvUU5uIEJEJvHDE1jkKiPr3ow2IuhjuRfWs3b079Jtnk5qlUgQ==","signatures":[{"sig":"MEUCIAYxumDoyFYoESQgu1JP1MEh2rF3P4tjxCyIsVUwMYFsAiEA+ivT730EwwmVb/31gFMu3Wv7lmVYtwdteUhtTeRCxsw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13562,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeIMSpCRA9TVsSAnZWagAAYagP/jhEXohHLYNSordOj/U0\nIGS4WbhRpg8vGSwhnn/2oUcxs240kyfNggUWSdt5ORB/yunQRNBbQF42IdPS\nxSB1c69o4/ykzcrtOk4GmUD1M0sc1YYOtz3qosP498ifxK92ypzufY/A8Cme\nKL1haQys9/FCPGkhqmO8H+HhkvzYC8ByKJ5u1gNtdQUSyW5ZVpYh+m/1L6YS\nhKdx+WAEVYcQkQA9o3S2mzaaOsSzbuapVONjy3csT9GLciVxHdluMpPjW9Yh\nVS3o9S10miqQF2Bw/LzI0taAe4c2afohCmdbKeVjVBGgygm2HIpkXjSLw1x8\nCtnx606yHt56hhFaZWMrktVd9GJThMpvOVqnfIZm17sxJXoPVrnLnZHCjtRS\nldQt/lmDTDYo1XxCpHMRabT9c9hqO+SCZanMA5kvt0YY/wPs/MgJFiFmweHY\nCCoKazsl9nz5vOcTPB34mTnF9DoAvqSjogfF8yut7frK1zwmjOCt1Vsx3Z+v\nLLCgCXG047/bhFETmx+oKjCRgdesJA78++89765HGnn6nDBCdldWLr7k6BJA\n02xfG5AM1UQ5tAuUgfQ3V3CCPYEIBbQVig9mmYDQyDmOvh4aHLpMQOQykpeZ\nqfQ9tg8cWc/PuG5kXPdQt0xQSOU6C2H1M6PlhixQRd6wCLoJDY31eKYc8XY7\nT3zU\r\n=A33t\r\n-----END PGP SIGNATURE-----\r\n"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"7d428e2cee605db8e7642e3af0df91e0d96c3684","_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.20.2/node@v12.14.1+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"12.14.1","dependencies":{"unified":"8.4.2","@babel/core":"7.8.0","@mdx-js/util":"^1.5.5","remark-parse":"7.0.2","is-alphabetical":"1.0.3","@babel/plugin-syntax-jsx":"7.8.0","@babel/helper-plugin-utils":"7.8.0","@babel/plugin-proposal-object-rest-spread":"7.8.0"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.5.5_1579205801485_0.9533620802506453","host":"s3://npm-registry-packages"}},"1.5.6-ci.0":{"name":"remark-mdx","version":"1.5.6-ci.0","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.5.6-ci.0","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"url":"https://www.1stg.me","name":"JounQin","email":"admin@1stg.me"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"4f9018956c21327606a82eac7d805d56fd9556c3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.5.6-ci.0.tgz","fileCount":7,"integrity":"sha512-HYnSAEhbhecjAeywpgXRDBTajNeIHGvhdpv5SMOESMDn6/FetTS2CwTT271Eud5sUdLEHKzYPGRG9eDy8LGZsg==","signatures":[{"sig":"MEUCIQCJGowUzsRyl7480SVzX5vPwMC2Z0MCEv+hwRAZTIDQzgIgFnLVhDMLOM0+cvGdyE0iQZzVFlN2haUI7cpJt9rvEOg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13559,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeNEARCRA9TVsSAnZWagAAgiMP/iT/GMP+bSLDMNsqKHd3\n4n79qi3XshJDGWNchbdsHMDcxzY8nl1FdvRSqPmS70PG062/Ihrn2bbL/paT\nRvC321m0KRGo9VNAbUU1SB0o51KW0PG34qNv3VVGGdogZ4Uw7veBgeybcnQY\nPCK89V48RLopqYZLYmX74vmZbp7eaTJTo4qlNr0mphcjwwDm3DzmCCgP0KZ1\nkL+V/IzjVdbsJNkqUAoPtPBZtUc5Yqe4SL5t1ppWDJtk39oXm/is4MBkJWhM\nVYSVzqKxa51T5d/FzD3UAFfqRtBM4EIWSX1dVo3uWf8uQfHu2EOmm+K+tiWW\nwCLKvWmN23jb58YhOd2zW+Y6AIssy0E0fSxkBXL6BT46LAALdn/PfKfMDHWm\nK56IQE5cUgZLiYScwW0OrsnsgAz3MV7ydU0LJV/NqtOkFC6Iw2X9y7p+7dO8\nuvBvqMsQP9uWO/9M2xLFHY9u/UzMiDv9RgzksPF30dLgUlApRHd/v8iBd5jZ\nen4vxKVh6Y9bRrcHQWohTwXJSD9o1RIA6MXRoQcuW9fL9/uhmtKhwqbZORea\nWRjA/h1rlU1EVRkk02/A+4IuKOeQ6GLiBjOsnY5BIgQhYzSqhZRUv8sS2DE0\nn2h08ORojRquekSo47dR7fJv1nm8Wy50fLFf0z54b82eFwg72J7FtLWxPG97\noWkY\r\n=MoI7\r\n-----END PGP SIGNATURE-----\r\n"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"468970d6aba96aa14b861de805b64e03ae1161d2","_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.20.2/node@v12.14.1+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"12.14.1","dependencies":{"unified":"8.4.2","@babel/core":"7.8.3","@mdx-js/util":"^1.5.6-ci.0","remark-parse":"7.0.2","is-alphabetical":"1.0.4","@babel/plugin-syntax-jsx":"7.8.3","@babel/helper-plugin-utils":"7.8.3","@babel/plugin-proposal-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.5.6-ci.0_1580482576701_0.49520518994402596","host":"s3://npm-registry-packages"}},"1.5.6-alpha.0":{"name":"remark-mdx","version":"1.5.6-alpha.0","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.5.6-alpha.0","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"url":"https://www.1stg.me","name":"JounQin","email":"admin@1stg.me"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"949f323a4caa4ef563b78b7dd8059904876d73aa","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.5.6-alpha.0.tgz","fileCount":7,"integrity":"sha512-praZet/mSk/IfrhixQLxzCj6CpzMxsjMxo+JV04m0q4m05Z5w4t1aUXe8kWQkbztFj+JoyewQMWYmYQWXOKJCQ==","signatures":[{"sig":"MEYCIQDD3ySPCu5y/1w+Jgu2QjB0dphd8keZRXMqBocJKADmawIhAO8999yUVyRLpQ9MKDfqtZDXvqCNRhBQVG8wywVCPp0F","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13565,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeONsRCRA9TVsSAnZWagAA550P/i3xvgnINFrXNy3yosc8\nWjt87tCLU7NcFjvdqYs+H/YaOK1jixyzdspfgbXl/dyqtKBipWAkzH07734u\npfj8l7FhcSJrG/wHZ6MWvT9u/edLKodvDHOjsG5c00gYsapnTel1ANFV2hcc\nBMeH/74br5B0ivGwLT+fLa1VNtvCAUZBDpQDQ+pV3uF8JUczfgx4Hbm8k+eu\nfgViRuW8/pn+WMJX4zIlpMqtbCglWg2tmWI+b8NHCVSZKgapo45I+SLiSOsi\nRtpVaPtB4ELiOYSk/XzIXmEPgzlnOjfGrUHEa8QwHHzUBTOWxOOm7TVjohjv\nxl0jUJzWDZJnyTWxCcgEZo9+rdOM56pgUxeQ9dOwt4Ukk7C1roxPEhF260z9\n/ANBxnjTXsFv7AHc4MyzoM6yKkuszBTQWBcFlKTH6cYt1mIc4Kowlh8kuSJK\nEhPmvVmrhLyfnC6E1JJK7k8E3bg+xX6MPG12/FY/gwC+GEW3cs7MAbGj3a4y\nSeaAcb7wqVsqSrZtELjBfYOCrD6cYORnYkbe3I8YDhl5J9P+2O4oupK/djVn\n6sadKmZWPtefQSMl5c6sZz9GIuprZdkyXPMb+8BisQfwk1W7e+AtqZx9s/F6\nfBwwFCmIsAH9yADcq2MFlLgndrEx0syNwN3VhW3UwR/Rbps69/4kaY60j0jQ\nUCdq\r\n=scgl\r\n-----END PGP SIGNATURE-----\r\n"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"cafc84048636ebfc3e261383b10a40a64b88f972","_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.20.2/node@v12.14.1+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"12.14.1","dependencies":{"unified":"8.4.2","@babel/core":"7.8.3","@mdx-js/util":"^1.5.6-alpha.0","remark-parse":"7.0.2","is-alphabetical":"1.0.4","@babel/plugin-syntax-jsx":"7.8.3","@babel/helper-plugin-utils":"7.8.3","@babel/plugin-proposal-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.5.6-alpha.0_1580784401383_0.04634496243829611","host":"s3://npm-registry-packages"}},"1.5.6":{"name":"remark-mdx","version":"1.5.6","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.5.6","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"url":"https://www.1stg.me","name":"JounQin","email":"admin@1stg.me"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"ffc989bffbd10fddefc4161a6f8d68fe2cb10bdb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.5.6.tgz","fileCount":7,"integrity":"sha512-1YANzXW5HglN0vO3+l0Nf0q+Qvdbvk0Qgsqz4N54G302PS6HqnYMcRsBFAKrf4i1payVJhSfK7PYwYbG3BUGdA==","signatures":[{"sig":"MEQCICevAgCMZjS2aNFR232hhPrAnPJlnPPa0fbUI8/KZyGHAiB/HgWiWkfQOQJAxdvbg5zAP3QJa+PmN+1H+9K5wZY1bQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13549,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeTuJUCRA9TVsSAnZWagAAORkP/RZOiYxcgKD+QrtpGSsY\nOhehn7oCooUl+lSwFPWPf7AX5ztOvr/ANCsUcVnZ9LJ4XHQtvmS/0H6DcZ/V\nx9LuokFTDxhcBccm0SrgiUdbZr+KAe307d8isiJYU/F9rxcVsMw2LxrdH50/\ncyXMSUdAq7rYV4ATsDOZA3js/iArT1BMHT6w2IWHeTaPLvz4B1PDB0zSH5IA\ncgaPPyMtDK0Czq0umJQQksYwzQV5Fw1VvzUgmAy6nwMRBCU2byDxEeBxD2Od\nhUXtKJ99PmoOKuO7VhCtQgFtCSItwzwK6/f+mOEnSCBF9k7MNHDY9aVVS16T\nCSwoW3nlPDV7oERqhW17Q4jSOy+p30iwJA/7rSqL3Uvs9EY2y5jk71fmcfea\nqFa2h5O6yyLsTaBlpWOEcSOMnnO03UWmLyovO8cpJCeg/1XJWT24MpjSlvg/\nk1wEpmqrvhlHVXclbVvOiuZpSpBRq1BDoeLPjhMGawTkQ4vZ49NoLa30oNYu\nngpJoB90P6dFDZyt5771HGROtvNzyzvT+5jErITHdcvDSxzPlu5lkP2c/Tsu\nHrDdvtZvW/5lZ5buBPN5u+Uzfla8F3ox95uiBmRGS0G5RMliK7mhe/5vUTXg\noW3bPGu4PzK9wYtBExD73oN8eB355G39XBZJ0Il0r6hOdVUhBVMI3g6Tkj65\naEHD\r\n=ni3R\r\n-----END PGP SIGNATURE-----\r\n"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"995b9c991b26274d3fecc7cca810562fc4a1a4b6","_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.20.2/node@v12.14.1+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"12.14.1","dependencies":{"unified":"8.4.2","@babel/core":"7.8.4","@mdx-js/util":"^1.5.6","remark-parse":"7.0.2","is-alphabetical":"1.0.4","@babel/plugin-syntax-jsx":"7.8.3","@babel/helper-plugin-utils":"7.8.3","@babel/plugin-proposal-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.5.6_1582228051867_0.9088655452945396","host":"s3://npm-registry-packages"}},"1.5.7-alpha.0":{"name":"remark-mdx","version":"1.5.7-alpha.0","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.5.7-alpha.0","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"url":"https://www.1stg.me","name":"JounQin","email":"admin@1stg.me"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"e767f8089ed7670660deefb93a117e97175b9527","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.5.7-alpha.0.tgz","fileCount":7,"integrity":"sha512-smRmAp0yQAOM+WPTTCn2oYhf7oav7AcPYEKAvm77EMMDqCM6Hq1xC1y9iX+mfdz342mA4gECj7vb8C+y9A7IFQ==","signatures":[{"sig":"MEYCIQCFV2SsBIJEEQIg+nclE9cJpsYA9FagwsW//eTVh4ZjbgIhAJgABMHoZqpHHG6PnTfLPjHihJHutC+s2RCCYdrdxwm4","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13565,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeTuhVCRA9TVsSAnZWagAA68kP/0HubLtvj42C2xlhUCVw\nLhXTAo9oT4BA34H7tLms+oTtRXvvFQOPJixPmG5RZ5JUVrk5wNBtDLxEECyj\ny0kYpSNL6pppPSLb1579nXYTn20csgAV5km9xSVAwR1gmQUU5j8azCvXaC9n\n0bkcVM8Q/4Vum4zpAer2thCkgtbAMqfoRti5rZumEbl+y3w4OWYRvcVUzHL8\nYu3AtRnRJ8goHQVf+vXYOcICKjIcce9VcufJjfWIbDpiccf70g+JL4UbtPEX\nWNaj8Lz0f/SRr+svX+39AdmttzdORKF/grttLTgQslyaEnoqFVx/fS9jPZRw\nPvVeGRigd23xqgPetTLuvVL+0C2eQ4Q2wR6WK4EZ+2pV8Uhe606bVbQ4AKGI\nZOadANnE3/Ym1n/lRgVXsnZm7KnA/ShKHv0UGYAzckcq9VfGMfVjLh6LXdKT\nfJQPzQiSMtTqb3WtZ89KNvUpV7m8ACAA8RQ1h0J/+lfMpnY8B3Hle0zxfiZt\n2q2jcV6EGYZXnzKKOCd+G+ADJuGbsiZe50cyU1dSTMmbsun5Y0JUe1OVOBhr\na6tO4IAk0V6NJTGQFHhoq7NcglPntZU5UczEyN/3yYGIIRnaD70zG5wfquMO\nXyJuJiH0E8JaH2f9+S9qWmM+p/D8yD3PwegCGxT56yIRhW59dOZatTelr+E/\n6JCN\r\n=TPNi\r\n-----END PGP SIGNATURE-----\r\n"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"995b9c991b26274d3fecc7cca810562fc4a1a4b6","_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.20.2/node@v12.16.1+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"12.16.1","dependencies":{"unified":"8.4.2","@babel/core":"7.8.4","@mdx-js/util":"^1.5.7-alpha.0","remark-parse":"7.0.2","is-alphabetical":"1.0.4","@babel/plugin-syntax-jsx":"7.8.3","@babel/helper-plugin-utils":"7.8.3","@babel/plugin-proposal-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.5.7-alpha.0_1582229589341_0.41312623131832815","host":"s3://npm-registry-packages"}},"1.5.7":{"name":"remark-mdx","version":"1.5.7","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.5.7","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"url":"https://www.1stg.me","name":"JounQin","email":"admin@1stg.me"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"bdeb83e7e625a8e1e446c233c6cb30dd5f0cfd98","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.5.7.tgz","fileCount":7,"integrity":"sha512-f13ot+zaByDXYuOC4FWTpQCGP/rNbaxdhs2mLlW7ZBipm3JYR2ASFSL7RC3R7ytzm3n8v6hhcFxDKU+CwC2f4g==","signatures":[{"sig":"MEUCIQCky5sYZIViOJNQ3g/rtf07G19VBY2EAyGo1t1cO5kQxQIgBxWFIWHw+czNEZAm54DHJpNHFRfoLrJLYKfn7tcLjXg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13549,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeUFgJCRA9TVsSAnZWagAA5sMQAIQuVa1VDQIfjUtk0mw/\naNB4NNLoL5vunqkfam7GfOikzUsITiKWEdCeHoh30X6GId25sqBrwWUjovOy\nZHO4RznagHqcQlUFU/kT/11auYQTeXSWzSTFsL2Rya7eTG6DlfCrt3E144O7\neSZivqwXrsPX+tnHUTSSPkKCqn+s0ufTzu0ySlPnxclqoUZ2aGOACxMoHR8q\nWbkfz0hlb/T5XpvYo58xIG7in8UN3Mxi2HDknroPTWikUQB7z36sZSvFS8Im\nh9luQl7vs4kGV6kkAnSX69w+t7OX12bWn5pJ4Wa9qmVXS0iU+3FobUwNj3Py\nyjXSvphh3JFHVR/fgvcFIcfQf/olOVMOwNUIphKdG9Xa5iZolmBYrr8lyfkR\nmLygQvKm25Ds/rFwV33oqVgofJAkd9Yl5pm684m2PvpnxrTR7SdGFG1n7jbn\n4qPq4hpaELGIAXtSmKZdDlZd18z8a5DOvYHcTTsCWjMXnnD+j2NfpfswpGj5\nZomWn2ijYnMIQH/V/lhh14tL8KUmNSeu1NYvTPGUxlTHzUflX6yn7Ti+NKPf\nUfxk7PoRUqryn444wjaiwZVXmj7sdPbW6phMx8C5XFpxyYFyrCu/3ZMl3iFN\n0v21JpUqGlVbZqFCQXrW3rhsJiZOq7FJNQOPCosoliFOn8E4zR/vuix1GuZ/\nAMuC\r\n=DvRS\r\n-----END PGP SIGNATURE-----\r\n"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"c79c1336ffcd7df8cca618cf15a01c107e1a92bb","_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.20.2/node@v12.14.1+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"12.14.1","dependencies":{"unified":"8.4.2","@babel/core":"7.8.4","@mdx-js/util":"^1.5.7","remark-parse":"7.0.2","is-alphabetical":"1.0.4","@babel/plugin-syntax-jsx":"7.8.3","@babel/helper-plugin-utils":"7.8.3","@babel/plugin-proposal-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.5.7_1582323721028_0.6970831273303539","host":"s3://npm-registry-packages"}},"1.5.8-alpha.0":{"name":"remark-mdx","version":"1.5.8-alpha.0","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.5.8-alpha.0","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"url":"https://www.1stg.me","name":"JounQin","email":"admin@1stg.me"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"f28af16689e43614e31dc7e3227deeb8dd0f518e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.5.8-alpha.0.tgz","fileCount":7,"integrity":"sha512-LY5FcYY2LZIxr+z7iuXWueWHoaBWofjbR9Am/Ji4C6/CfTMOtMrFtvv6+b5GAb9s2dff1Z8RbGkr6xUzDmr78Q==","signatures":[{"sig":"MEYCIQCuR4ita0XAHqoWukBYHt/HwxhL8wQK1a2WSuJEUrpIYgIhANmhajMtnInKqKBgFcqABBHjlZGTwPfzqUghbL5ZTP/H","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13565,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeUFoJCRA9TVsSAnZWagAAiN8P/jut5zQ6/JKaelxMVvT9\ne2rOqXoDuVtGPGLq8cTVixu2/OoQTHAGrKBTmehPGg2EhOpJKsJxsGx+SnKL\n7kvR99zXae1yNGQbY7t2nZxcy0546VNRK91aIHuvTWl7x73Hb2qQ78d0r/l0\nPrkUXxo1tYwUmaRKMI4nrMGVXciQ6bUNHSKNWZo0EGc5utMSsaSw2emhciO0\n2KA314IItvN7W1oCqMbMG48Dod+lu0jVOI+c9grHsh36PJgnnsxiyTEiJ4e7\ncPhA3+WkU7AydvUomftEZB4T+5ngRqafwlJGVIoRRVYad5Q6yHja/vtHFo3q\nV+Wk5DEk1qMKBPHzVhnnlWavkNQ3PefgCqE9G9veAuJWxPskavZ3xyQ/+ts5\n1UewHdVE7JIv8eTbXryIpdzI12ScPn5Qa4GZTHvrCI26L94aAnr0+c1yRZDj\nr/XNF1Oyd9ykqFPko4Xic30OA/P9VRnOqX2+dVqSYZM8XMAewcMddTb2WGvu\nuS9WBJSr15mI1OvmK4I2PLAN3aYsMHPalW1yKom1lCU/xx1rOHv6qiAHSSRi\nJIreoet9M6eDqv8mP7rxLTP8Fyjh951cijmo3ozxbiNUDja4WhFauRd1ni29\n3T6ZFGvZqgcAJ7mUWACT/a9FOVHBQ9HGi/vX/ZF6Pu2u5m7tV9WCMcYu0KZR\nCQfC\r\n=Krbi\r\n-----END PGP SIGNATURE-----\r\n"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"c79c1336ffcd7df8cca618cf15a01c107e1a92bb","_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.20.2/node@v12.16.1+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"12.16.1","dependencies":{"unified":"8.4.2","@babel/core":"7.8.4","@mdx-js/util":"^1.5.8-alpha.0","remark-parse":"7.0.2","is-alphabetical":"1.0.4","@babel/plugin-syntax-jsx":"7.8.3","@babel/helper-plugin-utils":"7.8.3","@babel/plugin-proposal-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.5.8-alpha.0_1582324232869_0.8791354659278807","host":"s3://npm-registry-packages"}},"1.5.8-ci.13":{"name":"remark-mdx","version":"1.5.8-ci.13","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.5.8-ci.13","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"url":"https://www.1stg.me","name":"JounQin","email":"admin@1stg.me"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"59cd269f3aed3861c49c7b2d2b4178257ff2ff84","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.5.8-ci.13.tgz","fileCount":7,"integrity":"sha512-FhGudFw9+GcLx/Uwwq72YYE/OfJ6u0aiznG//UUkMyTPGUdApjlf8cm8RcjFKoTszPLP4fosjzkOYpmoE6QfLA==","signatures":[{"sig":"MEUCID4QL8v3L/Z5k55YoqzNOYV3FGVathdhwvN4kbumI7soAiEAwrNtH4OlNoRRLSAQwV0/rXGu+E3H6S4Mmdo9JXGD/EY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13577,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJefP7XCRA9TVsSAnZWagAAJFUP/3TV+zGFv32p0hcR4wdn\nV74Lyy9v9+HHau0QgUxTjHUHZrNfJgo+LSWUfh/dOXFNOQ0iN0iIEWrtMVVv\n6sXEwX1fFQcWX81JxKife+veCaVLY2jF6xbRM8pQIX4niz4Wk5GQcw4vajPb\nrKdzJIa2bL9DoJ4uNGWpfZeR1I+fbqZmv4wS3McAH9yTpeRInBqfi/uWvNXN\nr2EXgO0Y737B+Riui4vnzlHzhxmAFaoEvPah0Fwfe7SFe7vSHU/upLTu9ENU\nhGQ0qV0fpDeT2dGD+7cwMma7lg7cpXQPe5H9lhz3G9bBEYQT8DPsHtGLw0rM\nrkdDFqOKJxIjIVqtg8MYXtNcTLVVT5HqG9ay6nR0u4WM/SjxK/7nhtUYJ278\n6D1/OIyo5ybWrs8B7hpLra7uOKKewkJUj1rgEaQ4kxSFlRCOODn8QLVY6DqJ\n/D/uglK0QMMy8hI6zXZ6XDxsnKISXwqMlkV92/1MtzYYuUpQnH6L2n2jqok5\n57OXNW0LAz9tjWCemiACuUnqe3SCO1sXbPjjvfMw/YMrbOrrsXQJPk6lzvZV\nAKfts0jzbU5Tn92ezOk6YC/04zzol/zYC0GUyE4zTtMDjY+RwXXPxu4Vamsr\n2Kjnbsne4c2WuqBCbFAQzBR9RiAHWt1M6wcno0pct72pSfJ7QbiA3K5goEiu\nFUqx\r\n=xWvt\r\n-----END PGP SIGNATURE-----\r\n"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"f460b7e553832a9dc1f23dc4674d6fd5e9b9cc90","_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.20.2/node@v12.16.1+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"12.16.1","dependencies":{"unified":"8.4.2","@babel/core":"7.8.4","@mdx-js/util":"^1.5.8-ci.13+f460b7e","remark-parse":"7.0.2","is-alphabetical":"1.0.4","@babel/plugin-syntax-jsx":"7.8.3","@babel/helper-plugin-utils":"7.8.3","@babel/plugin-proposal-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.5.8-ci.13_1585250006665_0.36754350650595535","host":"s3://npm-registry-packages"}},"1.5.8":{"name":"remark-mdx","version":"1.5.8","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.5.8","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"url":"https://www.1stg.me","name":"JounQin","email":"admin@1stg.me"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"81fd9085e56ea534b977d08d6f170899138b3f38","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.5.8.tgz","fileCount":7,"integrity":"sha512-wtqqsDuO/mU/ucEo/CDp0L8SPdS2oOE6PRsMm+lQ9TLmqgep4MBmyH8bLpoc8Wf7yjNmae/5yBzUN1YUvR/SsQ==","signatures":[{"sig":"MEYCIQCNItPn4vBLW1cj3w35MPYGBaK3gCKHBr7Xh3yck1ShHwIhANuU/fpr1kzsdxyuhq8HiWLTcBv1yIh67VsjzvZj+hH/","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13549,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJefQCpCRA9TVsSAnZWagAAWCgQAIVfiCX6szbAGvq9ZgHB\nXMcIyL5i+X33n6/aAM5RrWtqP5ovQZHY9BEJHkP5v6g+GhR5bVuJ4wWzZd+q\n1IzASjUk0JXhq1ic5CCxkF0fl4ryAenZs9Rk41XbgJnwkAnaiifeEYoyoy4U\n2yXL9gXFUZkrXHXDCTzxFxk0ZTt/dRIfEAamQWmKaqKL0ifurCUrTinJUFct\nSya7nzyKKwDSgFABDiXsJSy0qGmfjYzjE7mhHxiSZrTzKV/wrNqzKCc7X5XY\nBdqCsL/eD2LY0K4Nt3SCqFyUqpIrGCtpnfXCpNGAJHlVdc6vWVA+WyTvHiJs\n7QsR34sVea6ewkhf97mJ326npKm2nkvdFe8BFlV/8GmoJW8zK0kF0/CiBCJa\nyZA9k2LOnO1/h7UDxF5vOLeoKcCvchTEb5djRJT0edbKFja63UbCuCfP+uas\n9GS42jqx1Ga+upNUhJPzT+9RJpg7NqMW/q+/ze9MyovBSbl3T1+zQqP6wEmC\nq6IpBjs8lLuyLfgb//nKRO0U8QLi+/OKYin88iG9S3HF5Dr9u+WsrO4iVKoM\n7GTVEBR8XXbu3VG+ZOX/LBLloOM5aQQc9b+asoa5H1o3rsnPuh2gwTCIS0Mh\nuSx8m0YQPUhXwDG8pBZIhjcSP9EKNfwD/DWye/3OTxjidXISYHud8ahyV0mk\n1sNC\r\n=3eRY\r\n-----END PGP SIGNATURE-----\r\n"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"e030ddc98360a8a3e19a3140d936d94cf1911bf9","_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.20.2/node@v12.14.1+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"12.14.1","dependencies":{"unified":"8.4.2","@babel/core":"7.8.4","@mdx-js/util":"^1.5.8","remark-parse":"7.0.2","is-alphabetical":"1.0.4","@babel/plugin-syntax-jsx":"7.8.3","@babel/helper-plugin-utils":"7.8.3","@babel/plugin-proposal-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.5.8_1585250472855_0.8900427163632132","host":"s3://npm-registry-packages"}},"1.5.9-ci.5":{"name":"remark-mdx","version":"1.5.9-ci.5","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.5.9-ci.5","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"url":"https://www.1stg.me","name":"JounQin","email":"admin@1stg.me"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"d4666d0e5095f8d99addfae632974c4cfd6e31a7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.5.9-ci.5.tgz","fileCount":7,"integrity":"sha512-awBBWu5lj2iu1wesEhJw+zEJPHLgCDcT6idwh2Xgn098izmuyyZC4SA/x0t0lu0Ekw/so4zNBvFd8dO8Ks9AQw==","signatures":[{"sig":"MEUCIQDzszlWMpK3wHpiRtv34yKfUo+OLwurKghp1kRtMzyQrQIgf0fhYvPCj3NgAzEgkzRpQzQ9nNMTnMnxWIAOOJ4gg/8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13562,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeoI7aCRA9TVsSAnZWagAAOOoP/j+izjWrZV37mRAElrDR\nTsl0Zi77hNU0+KwapiFxTJ7yZ8LwJpKLkjLM1FEXcXGKj31YNl3Ros5LDfU2\nsIWT1+/72DFq41YUZD0H/Dzcoko3VGXwxWTUqBME3qzJrAt91Hl/sFVHNYNX\njsvoUPaNbkjPdbV2RFe82z6uO+1EkixU77zXjJKPQfZFGK6k7f8O8zMzxvpG\nE45ajm6/zu8wki4WdKUue9je9WXOk3ARqX+OhgeG/MecnYD5XQ7ILls8EpJU\nowEkkae8/lu6HbDKfmHrCmpcHEwhqohU7D9saQP0qE241iv7Rc2n/KMYYu/e\nMoIophMgDfDUUCQnui7ggNeEWIzOtdAhZzon9FR2Pj1ZApXrDInSRXEWn6Ew\nMrMa+M4sKS9rpvjFIvFOnoZ9JVIC4UuE7Yro/9oUUTzFjTRJdt6WCWK9BNyT\n/mAJsXFCvLToZa9Sw1//YQQ09OLyoEEcdjfZOa98SclBwqQ+IKOJsFYNxtQ4\n/pfvZyN/IzmOBFj9WL094eCtlmkcyAxV2SkDiBC+sRdLAyw7L8/JOKGiZn9n\nVwaCNw+q+28aHHDm5tonXJ2HUj//pJV5h8BshQqNDNg2MSXmtMm17CxZvGzy\nOTB+gSjIg1vOfbBS5oSSeC+hu35SZpYJ2Ao7m99DbqVaIyTLgWJYHDLSDDMP\nIq14\r\n=JBa3\r\n-----END PGP SIGNATURE-----\r\n"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"4cd76addcf0779957ee9c4320a5fd1329d4f0512","_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.20.2/node@v12.16.2+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"12.16.2","dependencies":{"unified":"9.0.0","@babel/core":"7.9.0","@mdx-js/util":"^1.5.8","remark-parse":"8.0.1","is-alphabetical":"1.0.4","@babel/plugin-syntax-jsx":"7.8.3","@babel/helper-plugin-utils":"7.8.3","@babel/plugin-proposal-object-rest-spread":"7.9.5"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.5.9-ci.5_1587580634125_0.6774793242940209","host":"s3://npm-registry-packages"}},"1.5.9":{"name":"remark-mdx","version":"1.5.9","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.5.9","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@zeit.co"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"url":"https://www.1stg.me","name":"JounQin","email":"admin@1stg.me"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"844311a162ad1a555f57914b3514069d0d47745d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.5.9.tgz","fileCount":7,"integrity":"sha512-HFr/VOVoJ2lnZsN090wttFTcqXIker49S5JT3Tem8SKMeQoRA9Pl+iIlEOZau+C9w6ISZj79l6nwzrflAa5VDA==","signatures":[{"sig":"MEUCIQDodYpqT1E8jitCWBEAKa7aZRfqbKPNUTHYpVreyvhWPAIgUCjFbjzHqrhJqCt0JNgySxiMUkAa+Cz9pBy9yEdxWqY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13549,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeoI83CRA9TVsSAnZWagAAbooP/i05kmv8iApbeD60kad8\n0FA6fqujRKP7KyUB6DsjKmp28dgaIltUQMjJXrnZ7u3nn1wfgnY5WLMRVgfo\nSHMMN1KrqAJdvuigrPK75/Qh8MNCq3ZHE+A9mQVn8u2NEkdIjtBhkB2U7UVD\nIlt3UOaXoPSDi0cmR1oIQhsIKmrGDm1HZGKnTD7zh3/rz5v7wM/ayB6FU/Mg\nBRQYR7LtyZio5mVTe3V0W0HA+xy3vQqM0gSm9DTwd2eJ1zyAe/jgJG6VsDon\neqSCtj0o8eVpgj13NFAnfl/OsaBKcHT2CWf5NSis1KdHXALg/+p/FowyxEYv\nih/Q+8Lw+CuzHVGk8uLnrUIYTmmSU9JDBMTHwoSCg7YwiQ+a8GKfGyy4ncEn\nrxSRJKuKjU0TlLKMgort+P0kSpektYvYiCXqZ9EvJ6sxlr2LQdIeaLxREqKh\nDzKXBhtFIkhw9eTJLrEPApwAXgFohyL9p3EfgpV3XxmD8N5GSCjn4iax8atg\nSW4tbT21TdkXpAwWRmE0MWAjD5OlSo7DjTBZ7NcpUsj+gL6uz4309FHXcKUT\n+bmvqGHrt/zxeEnuTO2XHQ47rWsxFHzH0bvuDyYQt+cXrtKV2FGWmAtJgPJg\n71IY2ZuUp0McnDQ0VlWdQLE2uVLkVjnDlV5F5M3L/yI99RhPl70F4z5cEQyl\ni67X\r\n=1Qpb\r\n-----END PGP SIGNATURE-----\r\n"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"df5b5947282c7f48d0d95bbdf06a877350e0983b","_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.20.2/node@v12.10.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"12.10.0","dependencies":{"unified":"9.0.0","@babel/core":"7.9.0","@mdx-js/util":"^1.5.9","remark-parse":"8.0.1","is-alphabetical":"1.0.4","@babel/plugin-syntax-jsx":"7.8.3","@babel/helper-plugin-utils":"7.8.3","@babel/plugin-proposal-object-rest-spread":"7.9.5"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.5.9_1587580727155_0.17428185520059514","host":"s3://npm-registry-packages"}},"1.6.0":{"name":"remark-mdx","version":"1.6.0","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.6.0","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@vercel.com"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"url":"https://www.1stg.me","name":"JounQin","email":"admin@1stg.me"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"9c9d7e4b55c0e81210ed7a8094bf53388fa618a5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.6.0.tgz","fileCount":7,"integrity":"sha512-L8cHfD44yM07iPTZzLSY9q2MYdOnVdiR+Q41ntPq+CMvWjPoTqDqSAJjYrt+q9GrV+sn6HYXCgShnUxlAOV//A==","signatures":[{"sig":"MEUCIQDnC4ryX5X+w9nzoSuDPiKkygEGHC2kiD4ahuI3DpMbcgIgQqnwR1nLCWS3CHH+wwvdFleKl0R6OFdoRUpFI/BYFRc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13552,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJepzphCRA9TVsSAnZWagAArloQAJR0lDqQI6Nwu/14wA7l\nzMEqRRbocbK5UW/NWpc9/vOkw0POKlBowaIL9IdNge0zwUmzshYFR1o6wAS0\nBB2g13VgKnLZCRK2tZVgjAR+9ppfBFrpZKoI5xxfBva2msoCLGFceIgV93BT\nfBg1TqCGyhIRMlKljZkHCm1C+7DBwu76+eqY9ZfcCBpQV+CFpLMePsen1RKp\nlrqbrC1EMsvs657qd1ig7do+HBu6ApjjgloWCUfdSxi/W1qp+/gyFJ/eSwoE\npCjJi8+QI8w2JZgugNjTdeYedqBKJ73HGk0Nqv2Ep1H9XLQaLhw+67tJzxHr\n2jGPBhAvHSWE0Zca95SHUhu10yaYPs/A9I/Nxd88mbeXOdT/SzhaF9Rf++GP\nvHItkAOjsYGL/P17j25sZUe2gx85wlK6fuH2FWLJACTI7im8EzzZa4LtpLVD\ncxOyD83k4HU49YMK9M7nJ4lExx1KnjmN5l2IWWO6X+xIEydqdX1sWCbSIQpk\nd9SWozZV6YVmMzAC/sTeL055duSeZuy1gwktc9rToVDxTLzq6ZthpI4n84g8\nTPLL7AtWiJ/ha9m5upMmjehfYC2pu8zsQ0iC+L2MExg6DNxq2cSZZq2xXCf7\ntZ9m7VaCpxxFdtrNHyMrxgMY6do3C3oM4AcC2CHLyjuPt14Ve0OrkVTQ2H8X\nuVXU\r\n=hLvW\r\n-----END PGP SIGNATURE-----\r\n"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"addb28a01cb234de29d353b6b782a15614e325d7","_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.20.2/node@v12.10.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"12.10.0","dependencies":{"unified":"9.0.0","@babel/core":"7.9.0","@mdx-js/util":"^1.6.0","remark-parse":"8.0.1","is-alphabetical":"1.0.4","@babel/plugin-syntax-jsx":"7.8.3","@babel/helper-plugin-utils":"7.8.3","@babel/plugin-proposal-object-rest-spread":"7.9.5"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.6.0_1588017761024_0.8926922660737784","host":"s3://npm-registry-packages"}},"1.6.1":{"name":"remark-mdx","version":"1.6.1","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.6.1","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@vercel.com"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"url":"https://www.1stg.me","name":"JounQin","email":"admin@1stg.me"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"693aa40d0c98afdd556e7e50f2ca263d0a845e19","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.6.1.tgz","fileCount":7,"integrity":"sha512-UyCqqYFv9l5dstX29QpdqMprBHyUYUEQHOUe0MdFUIm1XATxfVGHbRPtVBFz4ccd5NV1UL/rmsruo9WOswwmpQ==","signatures":[{"sig":"MEUCIQCdm/+A51WgiH5INxBIrdLtNQ6oSBm/xqtmm4sO/xXGBQIgfzuCAJ9Ta+H33woAKVLopZ7e/dFViyF/FZj+55oCUmY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13552,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJerGoaCRA9TVsSAnZWagAAqzQP/A5yPU+B4Rf3WV/9Hv2m\nRGJAjzaN58vSF2p4kzzGLNW6tu06mJ/usXKH3TJivL+V2dFSbpO0GPK6dZBU\nj2GlWNg67nzPF+NDLU3eGecc6tX29GwCOXo7bRoMqy9CwLap2iDYuJz4/mxw\nSf3aiar2HwyCfYPbKIdW3lqisteDhWy7P3XLEqialL48QC5rlCVigj0A8rnM\ncSj7o3mtfuBV8ML9rNb86Gsf/CsHkw7c18yy7jQzUtn42kDma8yblLsgXg4w\nZCvyt9u3bIXF3IXP1w9yiupPeT2gUXHcoxRNZeqaweEHcxL/+Vfh5Aj3nzSL\nTMY07yeC90Sr5PwtItRprvh8DQiPSWL1zg+sMLWSk6X/+dLTjyQW0wNLXc7v\nsIgiA0De5scFPc2KBrV6IzHq4hOaaOEmiV1yWlGc9IVyvhiapDaWqjjOl8QJ\nGOtKglm8z3rBdZBYV22ucfKlwrwDKGnivEmMhD5aeiCN6m1q+5HQ2wUHK11j\nen4GcA/lBJZGiJISxyPNilzHxD05QjltHZSTmTXMoKSD+pRhp7DP9jB19sLP\n4CMz4itEy/ycEK29LjWk2/hCAC+PMH5iHqYGSNIjXgO4x3zb3gTNlqPuWwj4\ndGbpMWdxQP+wcyL8sVCcTTd9CLl0QlmHSFsdxs1+CupJSZ3rA6NQfOighfkL\ntJnZ\r\n=uVdJ\r\n-----END PGP SIGNATURE-----\r\n"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"5c4dca3b25c90ae58fb9c867c3f97738736bd07f","_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.20.2/node@v12.14.1+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"12.14.1","dependencies":{"unified":"9.0.0","@babel/core":"7.9.0","@mdx-js/util":"^1.6.1","remark-parse":"8.0.2","is-alphabetical":"1.0.4","@babel/plugin-syntax-jsx":"7.8.3","@babel/helper-plugin-utils":"7.8.3","@babel/plugin-proposal-object-rest-spread":"7.9.5"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.6.1_1588357658415_0.2274969521410133","host":"s3://npm-registry-packages"}},"1.6.2":{"name":"remark-mdx","version":"1.6.2","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.6.2","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@vercel.com"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"url":"https://www.1stg.me","name":"JounQin","email":"admin@1stg.me"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"19100ee784a3f0cec5ff1ecd5827ec625a77f1e6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.6.2.tgz","fileCount":7,"integrity":"sha512-15OuD/VAhManmlssTjh9jMbln0uVu4Bc50DE+nfYUWX7ih1yk7Tztanw2lFNbzgGBVEGDNhohF14D0GTu4O2iw==","signatures":[{"sig":"MEUCIFmqSdDaIs8T4iHLkMomw+InUVmo3pjhG/IeBQO3z7iVAiEAyCh2Caw3G47TtG/9VvygY1PPPqTcv2OcffjB7yi22c4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13552,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJexWPsCRA9TVsSAnZWagAA83IQAJk7toXUQIvqwURFgYqM\nxxTDOEjtcorz3FJrwb+PfnLiI4G3GZBojlC00zNLjr9TFMnFNQg70365HVfZ\nQMoA7kklzxSt1+lWFqGGmkvkXKe6QJ4OsRfp2FFdOIfjv9rUqAPZOzMqdDwb\nNwQtyFiSbyM9d+t0wg6kMu83TbTHEAL2TGT3u1yAGzbMM5eFwkmhv3YziQqV\nE0gTVlf23A3DsvvOI7AtizfyXL3ZpjM4V8ZFJM93a3otb/tq0MCIDIEkLOQK\nqo6aN6ycxBkBbMSXkTjM7RmE7LVIvSWsQnDHI0hQc9fm7k+3uQQ28tKJqwrz\nDhcU+h08NKcnjB2CfEczF1fBhYX11vhqwa9XjopkktdeZffZSZQnbTcTFCFr\nBNq9qSYPKgBXF0EbT+AXu2sUvQCBsFpLxUebXh2rZ1vnUZzCtCOX3jhNvP16\nYvB5T/Lm61YopD+7NvvF2h80ktxVaGeNzalqUnW+YFQD3s0kgqoiHBvI7OTW\nKrqzBZOGrrXizUg3EqRRcp2JbCYpLmV0ITx0Of0qVrPdu0N4Yti7Tbv3jP5O\nBkOm3V6xRc2YI8aAiXKMV6WhZq+VU4mmFfm8GV9e0G1HwzkfIvjuEfopDX7X\nktdURmQcY4XBmOKQOZeIUpgpbAzX4CfnkHuL79zb11anYjprrHLnkE6Qtgz5\nOldf\r\n=flL4\r\n-----END PGP SIGNATURE-----\r\n"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"69f01bebbc23548c12cc04c4b2a818fd5ba6e393","_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.20.2/node@v12.16.3+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"12.16.3","dependencies":{"unified":"9.0.0","@babel/core":"7.9.6","@mdx-js/util":"^1.6.2","remark-parse":"8.0.2","is-alphabetical":"1.0.4","@babel/plugin-syntax-jsx":"7.8.3","@babel/helper-plugin-utils":"7.8.3","@babel/plugin-proposal-object-rest-spread":"7.9.6"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.6.2_1589994475778_0.5707672044710788","host":"s3://npm-registry-packages"}},"1.6.3":{"name":"remark-mdx","version":"1.6.3","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.6.3","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@vercel.com"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"url":"https://www.1stg.me","name":"JounQin","email":"admin@1stg.me"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"92222ecd29159a2a08a09dd8255c3c8e39de454b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.6.3.tgz","fileCount":7,"integrity":"sha512-VLVTZgjZnmAAlp9RopHOnhuM0aLl0phmj70k2g8IdYHn+8E+E8hkbSKQJksQDoQU5YwY7iKqJn+uQC5y5BGedw==","signatures":[{"sig":"MEQCIAdz2J4ZQOyZGaSkZSv0kjIL/GRYYyQ6PM/HCatS6H/4AiBrfcfgpFI/jjHyrxIrowYGtI69Fx2B5/vQYczq77tjow==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13552,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJexWhQCRA9TVsSAnZWagAAdnkP/25Ug9GhD+e2HAZY/HXu\n+75fYkuRxxhxe60uP5gN7Bb53w13ACALdaIgRz20oZqUXspb0oP+Qr8axaXv\nfJgbbF1Lf8GMGRm1NSbCJJKIkIUj/26sqQTwzNX6CpOOUkvQIBaGxzv4KHJW\ncIO+o0jxuUUSkwwzxW171sVECJojRQSpph9GbIRSCtcaUmEF9Lp6Pb3R6SFm\nJVXRbFsb+zz2uytzl+t9u41Tp0m6TfczDyjRB0oX4NoGsMamuUI6/BogyUZ3\nopkIfPo8g68QWI2u6JNy9UAjALUw5hiP9/xWJ5J/I5c8DapbM2uqw7oftXe6\n19U1jiPy1L2iCtUCFq1mJqBFe2FAXJ0Jez7hTV1OH4BGgM14vLaYdH3VkP/9\nCQ/+ZRY92cV74GOJYUvWdHEwUDpq+8EhcXHdc57Cmtt93b2gc5QI7taZ/mYT\ndEmmZfbAMFMzm5+zqL/U3kTgKBBnK1PFrVB6kPfI13xExw6vPA8O+iHH66rQ\np0DDM0EVNmLfWcGZu3b6HEJ9AXQx3p8V5A+0cV9igBEl1ErwOdoiOw5xPsmo\n5c++7jknnwDmYO5ahoNsOWz/PPTfadC35F2enjEnKGPpi20diiYIJyLXe04y\nfcnrW5zUZB5Y5rbGJ7G5q/j8RDng1N4TJcYay3sjz2k0wliTgH/s7vp7IvqC\nQefT\r\n=l+i8\r\n-----END PGP SIGNATURE-----\r\n"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"9d71d64e21889087f4d437beaf441d1878b44789","_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.21.0/node@v12.16.3+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"12.16.3","dependencies":{"unified":"9.0.0","@babel/core":"7.9.6","@mdx-js/util":"^1.6.3","remark-parse":"8.0.2","is-alphabetical":"1.0.4","@babel/plugin-syntax-jsx":"7.8.3","@babel/helper-plugin-utils":"7.8.3","@babel/plugin-proposal-object-rest-spread":"7.9.6"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.6.3_1589995600031_0.07326898539026017","host":"s3://npm-registry-packages"}},"2.0.0-next.0":{"name":"remark-mdx","version":"2.0.0-next.0","keywords":["unified","remark","remark-plugin","plugin","mdast","markdown","jsx","javascript","xml","mdx"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@2.0.0-next.0","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"}],"bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"xo":{"rules":{"no-lonely-if":"off","no-self-compare":"off","unicorn/escape-case":"off","unicorn/no-hex-escape":"off","unicorn/no-fn-reference-in-iterator":"off"},"esnext":false,"prettier":true},"nyc":{"lines":100,"branches":100,"functions":100,"check-coverage":true},"dist":{"shasum":"555ad96619e0175889ed68d3d9c8da6dd6b8dfac","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-2.0.0-next.0.tgz","fileCount":17,"integrity":"sha512-uliDOygYHSTC2NzCnfHHGqJM7qg8+w7eQy2h+sOhEaDPugbonPonIcB3q/UdupV+Fcoxxd5365GCA35ftaBbjg==","signatures":[{"sig":"MEUCIQCY7zGCRTi0evzH3Ks48bT6/bnxSMxeE3P/eCyO6QafoAIgEPxix1vvdTQI/b5W845cveHLIrftQopfBACb90HBi9k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57204,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJexYE/CRA9TVsSAnZWagAAdNAP/A4IS5v0MxZmjU66P5t0\nLPnq7ZH4R2sGdbxurywlxYsPrGBw3bcwTlgeK1RVHvZTt9pVn4kPlIYXST95\nJVBrWCpCeh86TYkPUZ10ttOzyi11UL7vBVtjc5K5Q1xLrWsM8svG74SXWE27\nyG99oMrcJyR8xCUR9YcaEXO76ypJu0GO9IrybNH8MFnRxi24GxWPw5jfgi4s\nDMYw8ERKmQC4YqIINivf1s2zB9PdoFDLlt2jU4cGSB4nL+s40fxnH4By6QRd\nZ4AxyuXfXiYQ80RgSHljEsSpLyEDZRW9L9AYWXE3DkFoHWH7RKdwfGFi621y\n5StJWcKlIbYdoI7T7N1D9bMZ69RVsBUaGSSMBJH6X0WBoyAEfxlVECTD92S+\nZ9zXVV5UbfazUeBZAqPOtlXnguMGypZYbJswg0v25ztmZ0G9kMNokxiDJhau\nbecjYzAFNIUt8IU1TVPTOBCSh7EbsfUs5x2wcecjLa0BgeEWs+0JFGuGRTZ6\nmbIoU0rKVEaKKAwU2IC11LPC0z85bS6+hvUTYUbGnu0h51Qz/C89ljDKqkEu\ntFh30PykfZtqfCv3gGeUDftPUDGnnCe3NQbzJNjDDkR6/tP3v8UkiPNnFEc3\nIPBS0nE4Hw7al/zgQoW66wZ/AjvS+fjuVG4W7YzGSpTgsGQ/ljqlwdNsVFsC\ng9c5\r\n=0oYA\r\n-----END PGP SIGNATURE-----\r\n"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"08c809a5cc06307b816e8d99dc2e32304c04dff2","scripts":{"test":"npm run format && npm run test-coverage","format":"remark . -qfo && prettier --write \"**/*.js\" && xo --fix","test-api":"node test","test-coverage":"nyc --reporter lcov tape test/index.js"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"prettier":{"semi":false,"useTabs":false,"tabWidth":2,"singleQuote":true,"trailingComma":"none","bracketSpacing":false},"repository":{"url":"https://github.com/mdx-js/mdx/tree/master/packages/remark-mdx","type":"git"},"_npmVersion":"lerna/3.21.0/node@v12.16.3+x64 (darwin)","description":"remark plugin to add support for mdx","directories":{},"_nodeVersion":"12.16.3","dependencies":{"strip-indent":"^3.0.0","parse-entities":"^2.0.0","stringify-entities":"^3.0.0","unist-util-stringify-position":"^2.0.0"},"remarkConfig":{"plugins":["preset-wooorm"]},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.30.0","nyc":"^15.0.0","tape":"^5.0.0","unified":"^9.0.0","prettier":"^2.0.0","to-vfile":"^6.0.0","remark-cli":"^8.0.0","remark-parse":"^8.0.2","unist-builder":"^2.0.0","remark-stringify":"^8.0.0","remark-preset-wooorm":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_2.0.0-next.0_1590001982344_0.048826481239770514","host":"s3://npm-registry-packages"}},"1.6.4":{"name":"remark-mdx","version":"1.6.4","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.6.4","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@vercel.com"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"url":"https://www.1stg.me","name":"JounQin","email":"admin@1stg.me"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"51c6eba0abb97591f0926c195e088bdb025c0b8a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.6.4.tgz","fileCount":7,"integrity":"sha512-tJ/CGNNLVC8nOm0C3EjDQH4Vl3YhawgR2f3J+RaalrMDrT4s5ZzOqoNesV1cnF/DsoOxKlYkExOpNSOa6rkAtQ==","signatures":[{"sig":"MEUCIFEHqHPQwDTTH9Axqum0KyrcBMjkFWdt6EqXUcOVoXz+AiEAwFoGzXhIJkh2/z4nOto4Wbmgudy7ykPBytVoknLjsy8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13552,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJexYQXCRA9TVsSAnZWagAA3lUQAJtmvVXqpigR9u3+JzA5\neUyCGLK0wCOZ8bS0zzSlQ0t7Z+oPWWlrJPQqyg/3OD1Aj0f9IH95FdLP1iky\nME0GR7f7M9FZqiNIJ8tbc/maUqluWubaMOl0ncWAZlSfL7CX1KD81f36SDQP\n9IFRGG3W/tCkSaD6wBKppvrTME09+lQf1em6Wwdrj40wyTyHsHFDSRbd2B3n\nALzv9QA/WY9/txCiEpUUSoSiW8PtwHjMTFPAiI33odmHUAtMk0zsR89rL9q+\nIoaUn+yXwejx4o1KYuhO/GcBIEvKHDMiITWp+6nUBAM8FH3krxojR/SeRatn\nSzTe9CmHTe0BZcHPiQrDWq7tADrtA3jGHs/0e4jtLGAbwPDKtGqfI1/rYUaJ\ncKKu7s8sgh4LXwuwR6ZYApA+Y0wSzmDrzvPlqAowplqRjP3FlIaYv7e34lRv\ndYwkUpvyQ78h+URkp2cqk7hFfRqerg4jTmTTBBSK0MEUzxfV7cAqVTGbMBCv\nBXAnBZOxZChp++Z2M/zRwXMnxcfew+OnyTeFDReUuUz1vyd1NK6zEHVM/IoU\nMc3QbiALDS8WyJdHA+P538tyn46TwhqE27Y0A2IUbjWOnxscQYhap/OmT3rx\nqlB6MsmWac1LxI8y/C1QCq4Mmiw5DQ3JndPZxjKjWSvDB7LBHd9ePf5+v006\niLm3\r\n=bovD\r\n-----END PGP SIGNATURE-----\r\n"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"9f1d50f8120da9e50e636aa4b775452087e95b61","_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.21.0/node@v12.16.3+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"12.16.3","dependencies":{"unified":"9.0.0","@babel/core":"7.9.6","@mdx-js/util":"^1.6.4","remark-parse":"8.0.2","is-alphabetical":"1.0.4","@babel/plugin-syntax-jsx":"7.8.3","@babel/helper-plugin-utils":"7.8.3","@babel/plugin-proposal-object-rest-spread":"7.9.6"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.6.4_1590002710900_0.41066945271260913","host":"s3://npm-registry-packages"}},"2.0.0-next.1":{"name":"remark-mdx","version":"2.0.0-next.1","keywords":["unified","remark","remark-plugin","plugin","mdast","markdown","jsx","javascript","xml","mdx"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@2.0.0-next.1","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"xo":{"rules":{"no-lonely-if":"off","no-self-compare":"off","unicorn/escape-case":"off","unicorn/no-hex-escape":"off","unicorn/no-fn-reference-in-iterator":"off"},"esnext":false,"prettier":true},"nyc":{"lines":100,"branches":100,"functions":100,"check-coverage":true},"dist":{"shasum":"c7f4335e63bf53d1ec4a9f42b37ca362b90fe8dd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-2.0.0-next.1.tgz","fileCount":18,"integrity":"sha512-ExwMd143dihz4CGw69fyfS2r+pS2vPsRrUxTWHem8T3unDezHcR3AwBJVgT8X7Y+e/gsM3ntgU5G4XmnFi9pSw==","signatures":[{"sig":"MEUCIDHxC6aSDHF1d7D5v98pXb/La6U9xjlM39j+osRqrQ06AiEAyLCvXy1f+S7auzVgSeBJWkqXu8P/nrZVlw+2iKU3b+o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57527,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJexowECRA9TVsSAnZWagAAlz8P/RMTPU0D57c/mr03vOQE\n11v1yJH9xDjvt1E5qH/B4XiRqF6Jy8Iv8NCTI3YaP5izlPk5Q4p8gRN+GA2b\n3uKY6jwrK+nhfJG3zSnHFM2n9jdBbEiavXgzCmHBck0wwNtNk43g7M8J6R4Y\nERhnYGkC0CmHR37IhC7Yiqaz0XRkqX2r5Aq50PQ9b7ItEerL0MpX4kwt6qQk\nQH5mRd/ZZ93o7NrM+6AoYvVFdGjWhlXNVMuSP9tDLN0idr3b5Iz+E39oCV3V\n0DB1HaAEPT5E6kIQE3I/LCdHd2RpKecAu/4CSvgv6h0yxnGmlbX4g+k1joiS\nk3nXduKjngbX19zjQ5oqLY7lEsctedQ4g53K7wJyTA5axTDrUKwcNKSz21Ct\neNFbkguo7UPyUdOFu2D/ey3RK29e/NcigoGZQCP71BnSx4lFXKFs3ZWhg+JG\nAc8WHympkbCL9u4SqO4UcHnnTJvq9Xubz9MJ3bO+DwIz5yf5Rc8jDiekDzoe\nbV5SbRuB/Z8q6w1GanzOQt7A9TESq7yU9/60ovvpDlvrtYKws3bP7zlJ/HeD\nKDwbxEhqYeiX3mvnKS64MERMm7/f1dlHfUFYkLNtyO6Xvvb3equqIiipFbnz\nZmqRsR/bRkwVz9AFkioh441c7PKkh9afuulTJLUjcTUu9jF5Qkf6GWZ0+MUc\n8Fs+\r\n=zyhS\r\n-----END PGP SIGNATURE-----\r\n"},"types":"types/index.d.ts","funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"166fd9d72a05bb6f09bcb1b1dadb150f4c72fbaa","scripts":{"test":"npm run format && npm run test-coverage","format":"remark . -qfo && prettier --write \"**/*.js\" && xo --fix","test-api":"node test","test-types":"dtslint types","test-coverage":"nyc --reporter lcov tape test/index.js"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"prettier":{"semi":false,"useTabs":false,"tabWidth":2,"singleQuote":true,"trailingComma":"none","bracketSpacing":false},"repository":{"url":"https://github.com/mdx-js/mdx/tree/master/packages/remark-mdx","type":"git"},"_npmVersion":"lerna/3.21.0/node@v12.16.3+x64 (darwin)","description":"remark plugin to add support for mdx","directories":{},"_nodeVersion":"12.16.3","dependencies":{"strip-indent":"^3.0.0","parse-entities":"^2.0.0","stringify-entities":"^3.0.0","unist-util-stringify-position":"^2.0.0"},"remarkConfig":{"plugins":["preset-wooorm"]},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"xo":"^0.30.0","nyc":"^15.0.0","tape":"^5.0.0","unified":"^9.0.0","prettier":"^2.0.0","to-vfile":"^6.0.0","remark-cli":"^8.0.0","remark-parse":"^8.0.2","unist-builder":"^2.0.0","remark-stringify":"^8.0.0","remark-preset-wooorm":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_2.0.0-next.1_1590070275826_0.5916505369203102","host":"s3://npm-registry-packages"}},"1.6.5":{"name":"remark-mdx","version":"1.6.5","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.6.5","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@vercel.com"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"url":"https://www.1stg.me","name":"JounQin","email":"admin@1stg.me"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"a268b18fe8dbe23f2b7c8cf572264c7c0398e0d1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.6.5.tgz","fileCount":7,"integrity":"sha512-zItwP3xcVQAEPJTHseFh+KZEyJ31+pbVJMOMzognqTuZ2zfzIR4Xrg0BAx6eo+paV4fHne/5vi2ugWtCeOaBRA==","signatures":[{"sig":"MEYCIQCOSJKlx3dnOvr3w/1DZWoJ5xB+0Y1YUP0xcLoIrE1YVwIhANwr3ORZqbCJEkgdR8Wj+WxTysEk1zJ3XsgCH1DBWKsM","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13552,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe0SL0CRA9TVsSAnZWagAADiMP+waPJgNwTZ2vjxl+yxDg\ngDWgxV4GLYlm/CcnSYg2KWTIbLgcAxELHlKmvvRNdt1+PHv74oX5rOvQv0j1\nC8oKP/M+D929QgDQOuVge1KWdOEgisFNpt1YWAhHrxbvhRzK4jJlZybV2QoV\nc7XwCIL6q1ngmQKBPVLT65Snm1x4XLYV3IPYEJwqlkEHMWCv/RxH3FUsZwGo\njIDpix5jpXvuRINBS8hRAKtt9+mCyD3W4YdZzE3bAIIPiSNk8MnKKwYBkPHb\n6E5MtpnXNzMKKmxICWdV/lgAKDKdDJ4Sr4Fu9CpAjoDdNK3cRbb11M8TA7GI\nIzJMceTxz0lkJzJgrtvdsskJ7qedjTjRrP658uXttn5lOqIrXTAK1ijN9U/V\nu39uE/5tqv9JSnQZ6xZUxTJX13agdOZTwDuf+dZSBrOxJu24b1ZbE/ZiCGjo\nbB9wZw4gdcEpVuq6QVp+2QfSOS8TuZXmFdtC1EcRUziCPShV30NO7BsR+QQY\naQpzIg7XCBtQX45G64NX+vEk6UJc37qrMHWCddmKcRnfMhoeTGKlDT9fIYpe\nzkxl96fmqiFEgCsFPQLb9Zi90epjgge6hv9z2vqCYHKAl91WoAVzu9vT3Jux\n2ZdJ4ZjKbC/mbA3GB+4NxWovjDnSz/YLvE/t0yeODdn8d64XaO3eR7p/e2lx\n+Or/\r\n=Df5J\r\n-----END PGP SIGNATURE-----\r\n"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"5b511baa475c59b7baf449c268e14669862a5cb9","_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.21.0/node@v12.16.3+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"12.16.3","dependencies":{"unified":"9.0.0","@babel/core":"7.9.6","@mdx-js/util":"^1.6.5","remark-parse":"8.0.2","is-alphabetical":"1.0.4","@babel/plugin-syntax-jsx":"7.8.3","@babel/helper-plugin-utils":"7.8.3","@babel/plugin-proposal-object-rest-spread":"7.9.6"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.6.5_1590764276116_0.5372826817075544","host":"s3://npm-registry-packages"}},"1.6.6":{"name":"remark-mdx","version":"1.6.6","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.6.6","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@vercel.com"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"url":"https://www.1stg.me","name":"JounQin","email":"admin@1stg.me"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"6b5e9042ae0821cfa727ea05389d743696ce6996","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.6.6.tgz","fileCount":7,"integrity":"sha512-BkR7SjP+3OvrCsWGlYy1tWEsZ8aQ86x+i7XWbW79g73Ws/cCaeVsEn0ZxAzzoTRH+PJWVU7Mbe64GdejEyKr2g==","signatures":[{"sig":"MEQCIDYkUwgjccKQU+2EQORpZnR3nNrcp6JcgsgLM8MiigZ+AiADLPTrV9afp/Fmhm7uu0sZpBDoY9RtiyLabLtydWV/1A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13552,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe6qzNCRA9TVsSAnZWagAAKlsP/2DFAibJ9amPxDrNScWj\n9IJQelr669JRlJ1T4ZJado5ByyIUsDrqJipuvDDkHqZsRMCRaBtaeeiMlWwI\nB5znwBzTK3ldug8Qlkl+cGbUebVp1NwDofX13MDo1hTWsalh5abr+OPFBn/s\nMrPofQoXpVGJ1G/PWtn0UOMQGNoSQtrpVhRRyXjK7S5rQY/aBIlRdfwTmf1q\nKfIgTL0l8YCWYAim9VW1PvofabhrXgC/V5Adtpe2W9Qapk0JKcSe+0QFEDtr\nWPhmzlcbniZEx3UrcDipz7LKHiiyXgeOvLJ5NUyjQOzyK3FZXRemCTH5kKNT\nc/2DLOQPnHY6n0bb4iI+m7zhfEJ7MST6iB+uUudZlwsi1rtppoe3QYplEATv\n+be9XHop0R7Rk2JlzxLTkCQHHfaG9+2tzwA6ZS9FRJewuyLav6N5GDU5Xlj4\nfgHDW88RmN518mn5i/JQ1qi+IqOG+83WITlJxFCj9QsTYSvRRDbpe9xZDGgr\nOmbkovV++yHpGttFMEsD5ARLJGxGlLbsiatTJHkVRVfEiQdAsWCXmUKrzQ/q\nHj/rppbNyOImYeHuQYXYbJaHjNFmTKJFa+O0lGrqa6g7KbymccZDLda5xw+R\nB0UFukzhVEAft6rhALLp8Sf3Lskz3g9krwEvvQf1L6WfeJGAqojdQEkAYcAl\nLA3R\r\n=GE4u\r\n-----END PGP SIGNATURE-----\r\n"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"5ac1dc93e0c2229adf2cd61b3dd8d7221cbf3083","_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.22.1/node@v14.4.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"14.4.0","dependencies":{"unified":"9.0.0","@babel/core":"7.9.6","@mdx-js/util":"^1.6.6","remark-parse":"8.0.2","is-alphabetical":"1.0.4","@babel/plugin-syntax-jsx":"7.8.3","@babel/helper-plugin-utils":"7.8.3","@babel/plugin-proposal-object-rest-spread":"7.9.6"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.6.6_1592437965531_0.27579134415468043","host":"s3://npm-registry-packages"}},"1.6.7-ci.4":{"name":"remark-mdx","version":"1.6.7-ci.4","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.6.7-ci.4","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@vercel.com"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"url":"https://www.1stg.me","name":"JounQin","email":"admin@1stg.me"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"c0304e1ec840b8b9bf8b623d9257a3c19066aa1c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.6.7-ci.4.tgz","fileCount":7,"integrity":"sha512-KHxBBzX5ZD/3bUu6QScCRQufhW13dUIoS8HUCB+bihd/K4OK43kWLE+rFzzvUnsm28VTPJR7RZ9TdIKZgvHjaw==","signatures":[{"sig":"MEYCIQCZXExnPQvwfRGd+QXA9YWbgLYStoGfPvg7Sh+ibzvDEwIhAITNsi4voolSRuABydeDYHx5EGDfvaE2OAzbXzQTEhjV","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13566,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfB+zPCRA9TVsSAnZWagAAw40P/iKZJhg4CDUfpC6oktMo\nwEqCMpOaATQEpxY8RUWZ6KLsYzWjydsV2IjU3SmMdoYS0C2SHBEZaVcf+rUZ\nuS4VlSzo/o2qr8K0QaVcAOJmgzgaAjtU3sPM0uUEFDfxVORXE3N8Vew7yqrx\nhpxQWRr4qQ3rXYrlZatUUMu6afsxYcap6UjuHyr94+WrHsG6fIUQEuk0M1LX\nkrAqE1o1J6HgIZgQstAVHbvVeFuWgLIKE76mttGx6xPuWW5OJ59LZ5yKnonV\nOkk7Y3AgHgjyHq2P6Op+sAUGKudJgpGtuVtuuSvMD7cf5V8a6eixdOuEq7MS\nzemN99t56tUfwNbgCz/+wHDztW/oe+SliN2hrUIEoo8xRVgy9KSsUu8nlLDb\nly/BVEn+DPNbs48IDC5IEvnw2a4TNIXX80U8pteajdIPubB+6MIJpuWGspDi\nh9ybUqrVJYAlk4Rmzih4qtlyyZPg1TNHBKIwVDBjpVyRWTQgdc9ZfviufEBG\nJnHt2vzF7KI3g6hExrsRKc+X3KoD3TDTxY0muNRmbleK3QfwSgGWARigTk3n\nhEffRs5KZrEXTbeAzzJN2hFWzxNDfWANk6521FVvKbKAbPRsAWZrYShYX5Vf\nf5ATsPr+Qb8e45USCi12lnpMiK71FBreImvsPFbSrt4L5DwCcbVLG7Dokq4V\ng+It\r\n=S5h6\r\n-----END PGP SIGNATURE-----\r\n"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"262cb37b0817b9f804d7f7f73b5f86836e7df521","_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.22.1/node@v12.18.1+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"12.18.1","dependencies":{"unified":"9.0.0","@babel/core":"7.10.4","@mdx-js/util":"^1.6.6","remark-parse":"8.0.2","is-alphabetical":"1.0.4","@babel/plugin-syntax-jsx":"7.8.3","@babel/helper-plugin-utils":"7.8.3","@babel/plugin-proposal-object-rest-spread":"7.9.6"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.6.7-ci.4_1594354895263_0.14402002038388972","host":"s3://npm-registry-packages"}},"1.6.7":{"name":"remark-mdx","version":"1.6.7","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.6.7","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@vercel.com"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"url":"https://www.1stg.me","name":"JounQin","email":"admin@1stg.me"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"ed4251ca10480b4730044e8bddf9b96b68e63f4f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.6.7.tgz","fileCount":7,"integrity":"sha512-sq9y5g/UC2cuF7LGAmTfn8RfLWH7QAM8imexqOoCsxsOrVo8aU/iZ9HQpFj2eUJfoTljRGE/VLk6XYlUfDLGGg==","signatures":[{"sig":"MEYCIQDoD3xGEmnv4p9HgW9o86QWoPvCpFFcAh5J7N8G1qTR2wIhAICIivUv+Ozreb+KX1K46wyMVHVomKJQv7Zy1tdtlEYo","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13553,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfD1vfCRA9TVsSAnZWagAAEN0QAJ54+CxrtZy9E5nJJ0z6\ngN5yevSG7RBXYk9/0YwxTmuYrvvVJqs7wIn4ws8P8P6hgpTwZ/KmasETM2t4\nWaEH1SNtak5kYaWXTa3inq9HnNZCSaE8C6Hi/0/OXUR+qNg17tZFI/DR1Kbg\nuUxTjxJkYVdwWXh+DAcda7NTRqgd/iVub9VBy5rye9UWgHG8PLnfbJ/lKAug\nbjqemMaCIMXgh7FNCIYbsnkJ/BLHpSq+Cg46u0ldyzv/2Qes3bnKL5KeVx9o\n419wphRQ/NauGXOT3nqco8nNgRGIVigImNQu7AVDO8C8nmMIR1PJ9N8mP0wU\nBggWPS1kePBUAIPwJLtx0jiyBe7lkJxjfaGw6kUK4Fxs/JepyQoRr77IFu9Q\nhJg1Iax5UIYEw3M/V77p/GkB5eu7icQPeKlP/ewRKMm1/boyT51T5sfefjxu\nflwhMSXd8P2SOT/dPEvtXT8cBMqUkdfqOJtq7olZnlR6YAtkeXSd21wV4jpx\nW1u3i8yKDUeTO7Ta5QmOqpuJ2K069Y9WB+Pp4dHHAS09SyP2Rhdtend46iYA\nYnPWHgNVg6n7rTIdF7VMoJjy9G4QCEw1a9Mr3npdU3JWAqjIsgqhtZG1QpcU\n1lO0YTSaSOPs3K67kZ4AS99E5OLmBoNL+3HkJGWZeP5N5R1Aa++X7tan2VvB\nF5ao\r\n=e6La\r\n-----END PGP SIGNATURE-----\r\n"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"f1f4aa1c1da1b7f2a635ec413b20683d6e0c4b1a","_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.22.1/node@v14.4.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"14.4.0","dependencies":{"unified":"9.0.0","@babel/core":"7.10.4","@mdx-js/util":"^1.6.7","remark-parse":"8.0.2","is-alphabetical":"1.0.4","@babel/plugin-syntax-jsx":"7.8.3","@babel/helper-plugin-utils":"7.8.3","@babel/plugin-proposal-object-rest-spread":"7.9.6"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.6.7_1594842079557_0.16649458395524674","host":"s3://npm-registry-packages"}},"1.6.8-ci.4":{"name":"remark-mdx","version":"1.6.8-ci.4","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.6.8-ci.4","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@vercel.com"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"url":"https://www.1stg.me","name":"JounQin","email":"admin@1stg.me"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"be07deceb5b2f996cc71a655902a0a2548a97930","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.6.8-ci.4.tgz","fileCount":7,"integrity":"sha512-atMNIhNG1PRwbNmI3foaWLxlaVOx0M6qzF5LjNcLbb4dBSmuHLw4VKLZci8Wu4hjUBLbiwHQ5frTQvupigu4nw==","signatures":[{"sig":"MEUCIAmuscX0cYujK9pBkfQTMSB8gI1nI1696dtzum7aCmIaAiEAk0WXe8kRY5YIwxwDvjKtebgp4o6yNZbfvc8RSNvxlH8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13569,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfEJ3NCRA9TVsSAnZWagAAVoUP+QDNOIum6yGs1Bng0MZE\nNeebIW6ex5XX74rZiZc3EZJpnDNXbPIUnE7+LKfNU+dZJAMg+e+UupGpgQJQ\nBihjbChIOPRFDvhxz5jG/ZWsgREZ3xnT2IcLn/w9ccB2S6chITEAu39T6WJ8\nqKEmjILzlLZvePfEi9pz7twnXG7CxcvN3VVl0jPLk7gaShXHOOcVy97AwuGF\n+Gzwc9z4ne+mvMlHFwVrtuiB6sh3o47mSS4S21ksa5qyf8UJtDD+PIFTfWqj\n2ORzgOpNR5J548p7YG+UsKg6pMm6Xvq4RSlAKIoQNdLH7QKBvRJB0jgSNAvK\nxja/vutgh1tYaJGC1kxxF7VHo90md29DWwv1c9Vw6gU2lmRJ+nzDkHwxahAS\nzHmA8Td4tjFCqiMvpppMJBiy/xTWqquHsr/b0ir4GagB35SwRnqPCOHyOcPB\nbT7pUU7jTnE0n7uMSrJ29ftkUsDHqz/f31/82CF1VfS2/2agehbAce103UEX\nYuvhQiDn52IJZ/BbdiTYdU+LiwhmYwdM/ghD7QB+/cvmNRPX8J/rYe5wN+VV\n7HLtIK5RvWDBUmLBF+7/EE1XEmrYowV3HMe9zHt5UXokuO9M8GlPsfbAe3qM\nEXJG/HQiEhOa/FMsiaKX3VVOy6eyPFE2Nr4VYJieUVscRAKi/3Hkthm9U5Ap\nmSt2\r\n=VZtI\r\n-----END PGP SIGNATURE-----\r\n"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"e24ab3b668eae4c39c9b2ea71a7d471942e640de","_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.22.1/node@v12.18.2+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"12.18.2","dependencies":{"unified":"9.0.0","@babel/core":"7.10.5","@mdx-js/util":"^1.6.7","remark-parse":"8.0.2","is-alphabetical":"1.0.4","@babel/plugin-syntax-jsx":"7.10.4","@babel/helper-plugin-utils":"7.10.4","@babel/plugin-proposal-object-rest-spread":"7.10.4"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.6.8-ci.4_1594924492548_0.9997271592958474","host":"s3://npm-registry-packages"}},"1.6.8":{"name":"remark-mdx","version":"1.6.8","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.6.8","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@vercel.com"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"url":"https://www.1stg.me","name":"JounQin","email":"admin@1stg.me"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"05774111ff17823b893f5f4f180d9c55a5617549","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.6.8.tgz","fileCount":7,"integrity":"sha512-E0PpW5QYdSiZzJ1Y6BhNZp1ONOr66HfUGIBn96ENyV/7y0gY1KELVvpPGBAej+wxguHGbfPiPQBQCbOG/roRaw==","signatures":[{"sig":"MEYCIQDctqHAcR3b8EGa29sOkqGr/vrs5stQAJ4Nj2OMTTd6AAIhALv2h+6Naq23iBdbxPd6mDGTF/E+7dOuGJvSxymysvXB","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13556,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfEKHhCRA9TVsSAnZWagAAgpAP/RzUutRm58g2w2n0XOU0\nYaSUhS5uS+/FhJjje3Hbu5BOis/TD05rz6LRR4cPh1qpCCXmixiVp/SkZhP0\nb0XDkJqBjwLB+b2K1FQZsvhLjW5bOtNFuyj6tR5VYYZziORW0T5sW9aNz2lP\nRhxpEh+mGk9rXiGWru3lvOrvhmQkFwY1QqsHtjGDMHsviQ2qHzzGKelrB3GK\n4AWMV2RUpPweCr5U3VRusAOPJd13EiW9NZqaz3WBKywUwQjuIL4L/F48RF/f\npVT+rEU7g5G1wAu3NleLxHnALF5zephuY0C51XM50rlKmN4Y+lEl1Sgp5/m3\nsUMAFEPp2GHpOHP7Z8RCgY///i5H8VWgyXYCsdcxvtKb/xsCkIojR4CPpJHv\neK2xMxlZeORWng8LH0WFaS8ee7u9aH083qdQ3x9OTFg72AAaaTv8w5cZi+6t\nUjZswCmjhz8gSbO/8a0s7ZL90aLtrKR4LqIfg22ndOffK/ZorKosgTgkWr69\nkL7jVYfeUqEKh4pCg8ZC2RbpKYA8eX3Sq3XAxYayHPPiumxTiJlUWIbRiQNb\nTwEpcNUuaP1dQlgAeSK8sB+1/x9jp0zaYq+Bb9nN/WMS2cT7YO4mSLAXnQHk\nhk/P1zNo+FkAjF/RvH8S0os/b5xX+PA9d3jo7MRMQOGksk5u5VzkFdV6tN5c\neu3N\r\n=gDvk\r\n-----END PGP SIGNATURE-----\r\n"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"2771a52d912991d0d82ba6edfd618557073dc5f7","_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.22.1/node@v14.4.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"14.4.0","dependencies":{"unified":"9.0.0","@babel/core":"7.10.5","@mdx-js/util":"^1.6.8","remark-parse":"8.0.2","is-alphabetical":"1.0.4","@babel/plugin-syntax-jsx":"7.10.4","@babel/helper-plugin-utils":"7.10.4","@babel/plugin-proposal-object-rest-spread":"7.10.4"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.6.8_1594925536561_0.08524232504254514","host":"s3://npm-registry-packages"}},"1.6.9":{"name":"remark-mdx","version":"1.6.9","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.6.9","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@vercel.com"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"url":"https://www.1stg.me","name":"JounQin","email":"admin@1stg.me"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"9aa3218b62a8b03816ae0499d50fe34b277bc80a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.6.9.tgz","fileCount":7,"integrity":"sha512-0JaTzHGgHhizjY4fH4j26G8E6UEcTPL8cou/90lckUOPRhuwIEK8eyOEf+pINIRhMRKiaQ7GQnQpKaz5vYAQ2g==","signatures":[{"sig":"MEQCIAYl6AATvl51T+3o88G5+N1BwHqhB2E0rChGb2AtAlirAiA0MFziQd6smw7IFasaNKGHqGgSRTDeM5egeHdM6IJQAg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13556,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfEN01CRA9TVsSAnZWagAAGPoP/0NfVVjdBanszruYs66j\nKF0ONyrdhYRt4XWvjS0dSQAIDqGYIs+XWcjQB44hRPGQ0lrn3GZlxwLjTWpm\nRjXu+yR2ZcTgvLqvTfAC4U88drSc7gcMyN5iRexw+y0shLwbnVU3EVuUSigW\nRQln5Q2VAKH8lpWveQTJJGPvnC26kSHfSLzNhGC2Ihpg6K+jC0/3S4hbI2tP\nzvQf259jAXdeQWd3qpikWCITiJacev7D6QDt3LMA3/fUpLK4Lycw4wzeUfuY\nCiQjxxTNZHUbZDIe/dl/rfeQu6XbQZTpKecV3Knu9WjDVHxKngQPgKVwWbHu\n4R5XstdSeqCGXxFIwTcq0Y8R+s0kxFfC/s31Tpf6hteqhSSO1QB86kEh1aC9\n/FLw7cMkewpS8bra14wJ1ZYgVVfqO5alJoHXUZcAldvI+4I7FIWIo/+f901M\nJZIliXZIgqHCEwicKCM+BOe1F0NwN/nWMT80lwgvUb2mCdGMcwa86XY99Qn6\nv0BO3lY55S580YP2wnaKuaQFC7jMGbCaPYy2nmnFKyyvaP9pzm65CZHkdJ0e\nMAnPqRgJIGUkABkXG9ziCRTGyApQKDfEUoX0hj/M+0P82fCc1VqmA4rIZs2s\nl4WqVuTvyFaTHDTcIjQNhO0gwJFUqwiBcEUp7JpuWscWcq7oJXAf1H390MTm\nxtsY\r\n=WYX8\r\n-----END PGP SIGNATURE-----\r\n"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"5dab75ad754854143faa90181c86a1e7dab5a39b","_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.22.1/node@v14.4.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"14.4.0","dependencies":{"unified":"9.0.0","@babel/core":"7.10.5","@mdx-js/util":"^1.6.9","remark-parse":"8.0.2","is-alphabetical":"1.0.4","@babel/plugin-syntax-jsx":"7.10.4","@babel/helper-plugin-utils":"7.10.4","@babel/plugin-proposal-object-rest-spread":"7.10.4"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.6.9_1594940725152_0.029776762742113272","host":"s3://npm-registry-packages"}},"1.6.10":{"name":"remark-mdx","version":"1.6.10","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.6.10","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@vercel.com"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"url":"https://www.1stg.me","name":"JounQin","email":"admin@1stg.me"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"5cb99b91e6ccfbaee6e7a6532910db896a026cc2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.6.10.tgz","fileCount":7,"integrity":"sha512-u4RVLtPevMnZA7z31bYfUjOwgBBzOgZfwUOB77LqJdxSNhSURz9oFRJSfEhgwijllT9HykoCcUC5pYUfkIzSOQ==","signatures":[{"sig":"MEUCIQCyLMM+y0Zc+JOqwj1ZDxIecTbxJxhg+TkWAr441MlHpgIgO3tx1LcSxkPQbkTUuE9jR8GuwZNYz26UUSUGOrKa5Wk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13558,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfEO8JCRA9TVsSAnZWagAAX7kP/j6FdJjQeVhOjcsK5EEc\nPNUBdg2qYrmna044vP/DbUGQ2bXz5dHDBQvYUMrdo45X5EvLxaXU2sxdcQR3\nC59hk4bXDuGjkERngn0C5o4zJLr58LpHHfzZqaq2R1TKPNiAMcpaS3p2LXpZ\nHNbl5YNwHN5nl8/ODVyz81uXSwggBUq2D72PQaEURkvPbiiRp/5bf/siFCld\n3lIypBPCaVCkC7PAuR0yUTr/7Qyft9p2R56Ye/FMPN+hHq9Nku0M7P4+PCRm\n3joZz90SBnAQPcGiNLTwZ5KbX0N2SWd3V+qFnXcCNyXKr6Ef1qIJ7Mp0n+xa\ny7rYoq04GZZMH2jaxFao5mAU0/Rsw6Y/8hLyKIGUaQevHrt0CqbKEjl367zq\nd/btTkfRumTf6srlHWKc/pIbcJoeHM3NcFPaYrZDJh96+AI0xzZQreF12p7Z\ngMt3lYnNr0h429kbSn7mC0iPEwlqR5KChUovLTWj7wyxonVvDw1TPki3g9x3\nmc9YDsZ7mLEGc5KSQmHqxuqcg/Y/OW2eiU4HOlhZkwKjRYTbxy41tIUFlFJ3\nXh/AwKKuae3rgPkHiHiZvvckmOkuA3d8RAIS+hF4vpiZjDjz8C5EhkSe927A\nICn0KryG4VPn9d5br/EMqEZBPiBWbEc9YVQ26GHSHWKeVeynFccCQXTzQH04\naA3H\r\n=kBmG\r\n-----END PGP SIGNATURE-----\r\n"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"dbe0293c0657f2a3fe276a9a83addd116e2101da","_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.22.1/node@v14.4.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"14.4.0","dependencies":{"unified":"9.0.0","@babel/core":"7.10.5","@mdx-js/util":"^1.6.10","remark-parse":"8.0.2","is-alphabetical":"1.0.4","@babel/plugin-syntax-jsx":"7.10.4","@babel/helper-plugin-utils":"7.10.4","@babel/plugin-proposal-object-rest-spread":"7.10.4"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.6.10_1594945289383_0.38176920737148623","host":"s3://npm-registry-packages"}},"1.6.11":{"name":"remark-mdx","version":"1.6.11","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.6.11","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@vercel.com"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"url":"https://www.1stg.me","name":"JounQin","email":"admin@1stg.me"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"36028636d27e7c14c70eb415c21f99eb36691d0c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.6.11.tgz","fileCount":7,"integrity":"sha512-nijtvQqyv2B6vBAcyi1GEWQl6VKepL2TX8b/vxcAKee6ZBd5AZKJDpIB2V5BbU015iReU/hs6UjYPXSt/d8bvg==","signatures":[{"sig":"MEYCIQDs1oxac1b1jbOILjrq91uQy6IS69AfYOxKhk+r3KJ0ZgIhALc3F5bv4wYMtzze4oWD13gpiDXGjQ8pxhxrUkXcD6ww","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13558,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfEaezCRA9TVsSAnZWagAANlUP/2cfcF/NcDwXSdVCRxwf\nm8/WLNxY0SVAIreMfAYg1r7y3Yoan4qaamMfcMLWHyrXRpA9f58vxV2mEYGm\nmkAaqaStRN5H7F7LcPa4Vi9qbml+11o7GQqHgjsOckZk56OXn/CIx/DGSirp\nksquDHIRHJcHjpVMEtHg8S6x5bCuIVXogtISyHDn2tqNMIVhl1noHf1wJs41\nHOCyX5o2Kut3bUTBi+GawXmYaeqtFpvw2YV7gK/dBIlPCR/U2uE4JbzCy2ep\nK9rm8Sf5brhW6nzDCv3uYnVGLs3VhZuc9kUiuIweKSoTQxF8iGbHJlzx8qb4\nRt5I5UHqruJROU6Es4KZez8GJU+tfsM3LR6qoP/ioqXVZmwSH9wSlQrqrQe7\nlt9xaa9a5KmvoOu3fRQsQJ3ygGz1j3fgM+qlAz8fPukf1gVvE5oIumfjKQio\n3XDAUGAeaDIEe+EFjbqFCQIwQNyAEKN1Sb6tqF7Ixg030YkqUkEUFer6KVUy\nMKtzIYH4L7wpS8wg7MxMaqZiibYnpNvdjf2j2dlt0x4YrhNOUFITz+g6Gd7f\n5AHzE3Nh+4+Pqebrqi7C4XjJlWYvQgHGKsypFZcTBuV7IvCf2WJgkMf0oGz8\nY3tWJztMt4Jpjmt4wtkIRoCrentWnb40d9+qyBFXNvyXWucn1RA3TeU63Hc7\nV0y1\r\n=jfYC\r\n-----END PGP SIGNATURE-----\r\n"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"b06447411959415bd260a83381059b6309ae12d2","_npmUser":{"name":"anonymous","email":"matija.marohnic@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.22.1/node@v14.4.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"14.4.0","dependencies":{"unified":"9.0.0","@babel/core":"7.10.5","@mdx-js/util":"^1.6.11","remark-parse":"8.0.2","is-alphabetical":"1.0.4","@babel/plugin-syntax-jsx":"7.10.4","@babel/helper-plugin-utils":"7.10.4","@babel/plugin-proposal-object-rest-spread":"7.10.4"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.6.11_1594992563364_0.27512907950208265","host":"s3://npm-registry-packages"}},"2.0.0-next.3":{"name":"remark-mdx","version":"2.0.0-next.3","keywords":["unified","remark","remark-plugin","plugin","mdast","markdown","jsx","javascript","xml","mdx"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@2.0.0-next.3","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"xo":{"rules":{"no-lonely-if":"off","no-self-compare":"off","unicorn/escape-case":"off","unicorn/no-hex-escape":"off","unicorn/no-fn-reference-in-iterator":"off"},"esnext":false,"prettier":true},"nyc":{"lines":100,"branches":100,"functions":100,"check-coverage":true},"dist":{"shasum":"c58951bd865de2025d7d47aa7e39cdf354bd72c6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-2.0.0-next.3.tgz","fileCount":18,"integrity":"sha512-ZBIXnToavX602PM+3FPxZpVaAQz8Gkcg3ftGKoowIIVSWvg68Kvn593AJUd5D6h6nnD1qM2RuAtkyVr12c9Vxw==","signatures":[{"sig":"MEQCICRvU6dJwzkK0sm+4I810P2GTTSUUfvmzcTlzIJhkua9AiAl3e2IXcdLniVNSwPfCrSM6FlmqMRFUopiL/w8q4+m/A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57527,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfEhtcCRA9TVsSAnZWagAAh6oP+wRr46DS2WHkDKDToNAf\nM2wRi20Sbp1W51KRdaq3taTxwurdkro59ZxeSN0RIyhoQOT+Dn2AwP4vTVpu\nUPb+TjcJlnQ6DWpTuBErNtId8LKvGz1zJoiOYBTBJdm79l9ByAsCiTKR1urB\nyXukzYeurF3MhYlFA3kUIlC0Uq5BIWlD5XZVQ3uVxlyN+qOgL68ls162nrl2\n9RVouLwQ5zjBanxr9ZJ65tKDCnbE4AEpgZpr2GAQgJDDx//l48CDou2seiTm\nobxcjJXeGmpSEIUfIV0+Ng6XpprA/MoYY+03WvrGw8VP6AuIlqhDuY7E6iEr\n9i8JfrOGOuKjtCa4dSDgE/WK5gcmfDHIQ5J8MZimwWumEMmBD0u0amnqxTuy\nWfZ+Gn0unnXHFIbOgwDO/UhLhK31/OK0oLN2PYR9GW29kb87SG4zCijr9oVd\nsXMKfFUKCgxB81hnh3ZaEAX8kabiwymEq109cTKHi4LPqOtQhHeF44quNga4\nd6IezOqR/MvL0R1TLC8V8yX/0U/5BhAYYp1l7UCHFIVQyO7EQe6aejBVJXA0\nXYrHpDIZ2kWHqGvTHDF0Wy0OwzU/mE23sD3CvZraxXCRbSAJuuJ5uVwYW3md\nzE3WqOhwWQ2vqw++Td1tJvz6gx1cBSukgBtZDcJcSnRTkGUPUXkD4dwGgOkn\nZxUh\r\n=NlT4\r\n-----END PGP SIGNATURE-----\r\n"},"types":"types/index.d.ts","funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"d0059c8cf5147281c096e28be81d3914ad2e14e8","scripts":{"test":"npm run format && npm run test-coverage","format":"remark . -qfo && prettier --write \"**/*.js\" && xo --fix","test-api":"node test","test-types":"dtslint types","test-coverage":"nyc --reporter lcov tape test/index.js"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"prettier":{"semi":false,"useTabs":false,"tabWidth":2,"singleQuote":true,"trailingComma":"none","bracketSpacing":false},"repository":{"url":"https://github.com/mdx-js/mdx/tree/master/packages/remark-mdx","type":"git"},"_npmVersion":"lerna/3.22.1/node@v14.4.0+x64 (darwin)","description":"remark plugin to add support for mdx","directories":{},"_nodeVersion":"14.4.0","dependencies":{"strip-indent":"^3.0.0","parse-entities":"^2.0.0","stringify-entities":"^3.0.1","unist-util-stringify-position":"^2.0.3"},"remarkConfig":{"plugins":["preset-wooorm"]},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"xo":"^0.32.1","nyc":"^15.1.0","tape":"^5.0.1","unified":"^9.0.0","prettier":"^2.0.5","to-vfile":"^6.1.0","remark-cli":"^8.0.0","remark-parse":"^8.0.2","unist-builder":"^2.0.3","remark-stringify":"^8.1.0","remark-preset-wooorm":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_2.0.0-next.3_1595022164981_0.4444559737913576","host":"s3://npm-registry-packages"}},"1.6.12":{"name":"remark-mdx","version":"1.6.12","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.6.12","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@vercel.com"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"url":"https://www.1stg.me","name":"JounQin","email":"admin@1stg.me"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"60bc44a3cfee4efc6d2c5bb407f426e36533d6da","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.6.12.tgz","fileCount":7,"integrity":"sha512-TIuS4Jcj9JeKtTVUKlSURYu/2TrLmMtMcgkWY8j/noLOY9sHqrbCXeCf/lpTQyMjo3LSNV86JhOoV3aPbeR0YA==","signatures":[{"sig":"MEUCIClmeePY9/wN02a/lWfv1ELSHVUsHOT9pxUsev47YSuBAiEAtYgcGZJ75eAnro+u0oXwx5HSZNLmq5AQ8njXvBV07D8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13558,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfFZ/bCRA9TVsSAnZWagAApfwP/iR+5gu8IhVLdb69NQxf\nldncdGTRwH3LqTZ6P5JLNmoQGgSU26e1l5StnhE0yHQf7NkAG0NSC9vJhJib\n4Bq/1dP7RK8cUACASWwT8hiKFpeKiB3Zgsm/TgtmXHfYxxYiMNhBnKHhktKZ\nioU59Z0c/242fJMuC2M8lxKd80gbNiUzgu+BVM4NYgQMoNr86H1dvdsF2Xjv\nGXoAGleuer0aH1PAJeEtZNDLrrp6MEkWsuD6Yc/WLFZaWlK8WqO72w+nL6z4\nICNJDwVj0xGH/Vm7Jxbv976/CfGroodETMmwB8+4c5qt35b6QT89Zoq+IT1X\nk0Viv8RJWef2qJiJAiglZ39Iw3xwdT7RuhV3RGDjGZGTR8vGYuoPC1Nd4BnR\nArGlNdHmauTNnNcgOLKq/aXpcJT4gkF8IDsIirEKRJn3NCb+p684jA+/qx72\ndcZcVRMyJE+2eH+0BvbhlZzCi2nrjbX+AikhOmXY2srA6haHZSimZWUjO8+7\nBXpYxC3vfXb88HaF9H7Ed3w5fP1Xg5qMRjnojjJipSWd27w6DuWH2EDN5Jlg\nXob3fXAtqBgAALgsBEv9BILMiQdo2WA8OFzivGPASbIl69wmSQnUNatHCJz1\nmTkL9iRFe1ABB+TkNjLMzrhziO9n0LGOe7LuNOZpOgcCi41KLRs5ZuSI6iPw\nsBry\r\n=eJ+b\r\n-----END PGP SIGNATURE-----\r\n"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"16c21cfacb770b73bfbd68b384d32895a8bc0d86","_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.22.1/node@v14.4.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"14.4.0","dependencies":{"unified":"9.0.0","@babel/core":"7.10.5","@mdx-js/util":"^1.6.12","remark-parse":"8.0.2","is-alphabetical":"1.0.4","@babel/plugin-syntax-jsx":"7.10.4","@babel/helper-plugin-utils":"7.10.4","@babel/plugin-proposal-object-rest-spread":"7.10.4"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.6.12_1595252699228_0.9479048030560133","host":"s3://npm-registry-packages"}},"1.6.12-ci.2":{"name":"remark-mdx","version":"1.6.12-ci.2","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.6.12-ci.2","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@vercel.com"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"url":"https://www.1stg.me","name":"JounQin","email":"admin@1stg.me"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"2e4199f5366ea80d3c2a24ab2169878b26620d1c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.6.12-ci.2.tgz","fileCount":7,"integrity":"sha512-9XUpA1ZrzFgp2G7ViMHqazafLUkQMo/XqpO13ipkf9wlHsbPIHUM6MiG14PxBBesc1jad0xFXoZEbhjv0UaB/A==","signatures":[{"sig":"MEUCIQDzBdt9vMOpEGYwS4gxNXTEVVNNYulLXD0oS62o7XtnnAIgC77EZpryVRFUGtF3jnwoRksbJ0yFWyyN5vGPnw+uvH0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13571,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfFaBeCRA9TVsSAnZWagAAm+cP/At35TC2/kPNBtPVkHWD\ndjrKNViQYx+kwbUbgphiAoEZUdaPmZwCEp3cLezvYg2VywJVcfzyscbZjR0H\n66UYY8ckmkahxcyngOTIMZ0N9N93peUg5c+W4DONEgQHS95j69iO7Dm1tEaU\nz3t2XMJ/GzOZj5rhQJMSOuQA7qR4PkvR/+LK12tey8XgoihawSi4A9s1F0VT\nQfLa8GskyK04pWPy2OjyWhZt3rjPidRo1psWVErco0PnDuXxwAGONetn1irp\nZPO+UT9kG9yl8mrKPkTgozchQhKgv15n5R2SJS71xpd+USanw4dVv0BXSLDD\nrtuyFpRH9bCylzKqeuWiL3FQo456OSPjaJR0loAcVY5l1CwQIoIwyHk12kIM\nZmSQfV9taqLX8i96/qg7XzKllKRT970wtYgB2rNRC07qYqrAe5VMYKLaP2/j\nvJytpqVNCXeP7XI8uobQtGsLqy5BX5+06KPbkLO/BOZxDc6ulH2W5DJnvhzW\nddd1aO3Tuyf2AIQmbYUUy7OnxictuXAzUOtNJ5eeNoMApWWb173Np/bRbUcB\nMZXaZfRZpupRFzYI2Q7Jnd4llFBCkYdbx9yIzWY2f6JM8hutqZ7tjaiM9905\n2S+olbXH5OR9wUAnHroCle0+hxxA0UlW61XODMq96aT2yxT4Q1e7UmitkZi8\nZNC0\r\n=ckYy\r\n-----END PGP SIGNATURE-----\r\n"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"a65739bf6653435fbe577e650e35052d3fdc47b0","_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.22.1/node@v12.18.2+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"12.18.2","dependencies":{"unified":"9.0.0","@babel/core":"7.10.5","@mdx-js/util":"^1.6.11","remark-parse":"8.0.2","is-alphabetical":"1.0.4","@babel/plugin-syntax-jsx":"7.10.4","@babel/helper-plugin-utils":"7.10.4","@babel/plugin-proposal-object-rest-spread":"7.10.4"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.6.12-ci.2_1595252830097_0.4465950406689996","host":"s3://npm-registry-packages"}},"1.6.13":{"name":"remark-mdx","version":"1.6.13","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.6.13","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@vercel.com"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"url":"https://www.1stg.me","name":"JounQin","email":"admin@1stg.me"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"e85c98bb2256f4e6436aaeaa5703799f77ef9565","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.6.13.tgz","fileCount":7,"integrity":"sha512-LlaW2PpGl13THFHajl0EEpAnMkrZO2vmn4PPGJzy7vKfKf2UMioKa7zszfV3cEwKu1aHqqnjH5ZwuZj1hexHJw==","signatures":[{"sig":"MEYCIQCvddVuknNA8RLJvawZgM8zxwhik7WioTIqFsS+YuM15AIhAK++49Ex0RnsJvqP2Xjbwjed5VbCsBrnaCZqflp4nCnH","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13557,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfFbEACRA9TVsSAnZWagAA1IAP/3q/TVye85+g5yf7G/mU\nDoFQu8Y0+5cDgohHOGuPq/oW7b4/Tddi83qK2dEnFPNFvFS6/w+/0QYFlRDB\n7Q/iUFcxW99Tdf+7uV6l/XgmBx6pWZVZMtZV95jhul7PKWSKYXXF/6Hqf75U\nk9BRfpOhA/BdGbBswVod+/r3+JGouALFuqHKzz8e9Q5nIvxxHG3S7lGE1LJx\nFY6r7BeE/wi0FXT6b+6EateOmGFeL16em/raA0pXBArqeKqn73RYTanpHXrm\nBI4u0jYEteEFaqL6Mef3JVumMYt7Mi2RH9danPTOpF18tVJ734Td//9FgRjG\nA4q48JD4S8AKGDK4IM1MDhEBd/JQlt2vqJVvy2TVDkoW8+r6l9yBPkBF5nfs\noeye2Bnwi4ZoLTTnHxRiuoR0us//rd2UnBI67nqBehXlEX0h8ofHCapz80mV\nnXI+Qw8d7mRGjwhlDm72EJqgBGTpHW6bSm6QuwBjcqClrWPEAosKvTV6xEIg\nVMFb7gY1DY3QqhNkvoVFdz/NGn8Oy9sGk+EO9wA6vw3UjqEmlIgBf325P/M2\nIkNb26CqFk+inO3RpIgZvBw+D3dy0w/cqg6oT6A9NwcL8d0re8xqYYcJxWKX\n4gGR99xp8/fWLD9wuVAOlUcRPdwz+Xqgw1xkFb8nWrExgDuoaMvL4m3un9uk\nlRgc\r\n=bJmT\r\n-----END PGP SIGNATURE-----\r\n"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"098e7d433b603ff0ea9fc947f1adc686fc7846c3","_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.22.1/node@v14.4.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"14.4.0","dependencies":{"unified":"9.0.0","@babel/core":"7.10.5","@mdx-js/util":"1.6.13","remark-parse":"8.0.2","is-alphabetical":"1.0.4","@babel/plugin-syntax-jsx":"7.10.4","@babel/helper-plugin-utils":"7.10.4","@babel/plugin-proposal-object-rest-spread":"7.10.4"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.6.13_1595257088385_0.9304269569149861","host":"s3://npm-registry-packages"}},"1.6.13-ci.1":{"name":"remark-mdx","version":"1.6.13-ci.1","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.6.13-ci.1","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@vercel.com"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"url":"https://www.1stg.me","name":"JounQin","email":"admin@1stg.me"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"df827d03d7f89745c7272a5bcb6c78f4be550d48","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.6.13-ci.1.tgz","fileCount":7,"integrity":"sha512-qm/iAFXRhvBnXiT8c4Etqcx7GQhv9a9CnjDM2DfXXlPvBf+N6fpLwqjX09Qy/23UUbXT+YXizB1UccCOZSYmog==","signatures":[{"sig":"MEQCIAFPu/Xa42R0FcLQ1tRAxJ/KFI//R+s/d3PV+6SMWGS+AiAprkfQ4yNJQoTwYmKZLUdi06aiuaxgejh30ACW/ni6pA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13570,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfFbO+CRA9TVsSAnZWagAA7C4QAJc4x+WT8KlFtNfwT9jU\nR/gNqnWKSQr3yhdnmv+FpbWbQvUc0Yiruhl7G/JJWMoYtmYgOvh8Nd92WMFM\nOjggebIezaIjCWdVb9R2GtFvlvHK8QX2LS9bTarr25MbxRpEth+nb3hTwzIb\n+7HHfqVVSMJH/n3mQnPM7C4A0VpBngkAMIeekwyy4Bcoreg2JxGSUny7quyC\n9T9vrSLD2lbAA0LrAZ4mDdhj0UNayd4R3Eh76nW5KN8iuzRt+c445nzhvTi9\nRgQ/Id4foeG9SHiJRKceffYJ577/0a7d5YbSGbHo14vL2gI1tpuWRw1OpFHR\nE3ZntYAo3k+8+khFXDUszGSaIClPl/LCidTRgvEZBKhzP+YhiUYqvY1GOUYM\nyrM6mn+0APxQYu6lyLvOpX1VxM2QfY8g54AUpJz24h/IKFH0QC1DWDtSeMaU\n0bMfLEMGEZgf8oGiYj6lGSOoabUXYI0RoHQUY/Nu6QQJ25e7+mc9xQ+RJJOH\nH1kzdAu/YuUPdwe686cBdzTB+acd389KoNPBC/ath/VAN8V3q/Uv5wRShRYO\nxUoTC8/a9U7Orq7VzwMcGEXIKVb1KtSP6buel6xwuVxQTmr/zLEYsbm49kvv\nyCp1DrWUa8//xx1Q1Z2ov9WxY2VnHOGt1kKSS/S0hPa+vD4ekdGF5PO4Kp9b\n1YUc\r\n=CyDN\r\n-----END PGP SIGNATURE-----\r\n"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"33e6df2574154964d0fee2cca29ff707285cfefc","_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.22.1/node@v12.18.2+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"12.18.2","dependencies":{"unified":"9.0.0","@babel/core":"7.10.5","@mdx-js/util":"1.6.12","remark-parse":"8.0.2","is-alphabetical":"1.0.4","@babel/plugin-syntax-jsx":"7.10.4","@babel/helper-plugin-utils":"7.10.4","@babel/plugin-proposal-object-rest-spread":"7.10.4"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.6.13-ci.1_1595257789649_0.6268060096027159","host":"s3://npm-registry-packages"}},"2.0.0-next.4":{"name":"remark-mdx","version":"2.0.0-next.4","keywords":["unified","remark","remark-plugin","plugin","mdast","markdown","jsx","javascript","xml","mdx"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@2.0.0-next.4","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"xo":{"rules":{"no-lonely-if":"off","no-self-compare":"off","unicorn/escape-case":"off","unicorn/no-hex-escape":"off","unicorn/no-fn-reference-in-iterator":"off"},"esnext":false,"prettier":true},"nyc":{"lines":100,"branches":100,"functions":100,"check-coverage":true},"dist":{"shasum":"af31466bab76506753127843a8cff673672cdd72","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-2.0.0-next.4.tgz","fileCount":19,"integrity":"sha512-CXC43m9RZe/lXxoQkE4LMJL61g4S8MKobzRxrY/uacBeh3KHfKXpSnBWzixsD5h/nLEcQuMesjcAY3WjVLUWjA==","signatures":[{"sig":"MEUCIECl60832M1gyycRwDCeqlYQ+ie7UeFl55JtkQuCCzPlAiEAnLfPrw60rLUWp9ELjki8EfeVHXazbv5gyI+gGUVyshU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59407,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfGJBFCRA9TVsSAnZWagAAn2UP/1Vu5+RyBpjctN+/MIuC\n+zbBtYWdnhG6vIOu5rSmU/d6ZemKfAwLHyMbQ4GmO7Bmhblp4hk/OpEKG5aH\nHk+2wViQGWHH/OXHuvK9ZHjFJaByBg72jBKAYVltdqwyAt8yeHGyFrSancy+\n1UjNh5ykCxz5Iv6/opPQbJPxnmiDXb36SLyog9nzDNHliiRyY1iiiJ3KTxK1\nJ2bAo5dW3EHJ1iWvLwN+G0rGi/+5zN2OBCdXWV+ToHr+qjSUB/8uTQJ5P5OA\n8zCu65RNgspXBnxuGLeuoLk6v9nf2Rfpvvhkvl736W+c3Trnwtz3DwW5jTGD\nbUF4yBbqvL86fC5vlDC3Y4xzZNwQiE2bZetX1JVFOGZh7eAC0f1Ja3GY4bLS\nqb0V/s2fZmzjAVEJzPGnXFyHwXGWBLAH11N8BqQaiV+BqLpnLByrBaUn32GZ\nsk0EN+SKmR58WjZe4rWy5HJCMC9gtYXF1yBuFesDMhA3PgWRidTM4MfR0dxm\nUi40hVPq+uAGV628uMY/rGL98LdkAVYkxptG+s4d7MTemrMjJIuv7tBmMWAr\nAV/MtQbmbn5Mvn0AwgAZQU8d2ABghHwh+STJw8HVrTbvcxgIgUzZBbArBWnK\nFmt+7HOijGz+SXa/DtGD3fQ7X6EASJjnrwJM6OsFDrn4cujghSecHlr1UgWs\nzUl7\r\n=T/+9\r\n-----END PGP SIGNATURE-----\r\n"},"types":"types/index.d.ts","funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"e1b45e365a1c3e13c680674a617ec0a17a1dc0df","scripts":{"test":"npm run format && npm run test-coverage","format":"remark . -qfo && prettier --write \"**/*.js\" && xo --fix","test-api":"node test","test-types":"dtslint types","test-coverage":"nyc --reporter lcov tape test/index.js"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"prettier":{"semi":false,"useTabs":false,"tabWidth":2,"singleQuote":true,"trailingComma":"none","bracketSpacing":false},"repository":{"url":"https://github.com/mdx-js/mdx/tree/master/packages/remark-mdx","type":"git"},"_npmVersion":"lerna/3.22.1/node@v14.4.0+x64 (darwin)","description":"remark plugin to add support for mdx","directories":{},"_nodeVersion":"14.4.0","dependencies":{"strip-indent":"^3.0.0","parse-entities":"^2.0.0","stringify-entities":"^3.0.1","unist-util-stringify-position":"^2.0.3"},"remarkConfig":{"plugins":["preset-wooorm"]},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"xo":"^0.32.1","nyc":"^15.1.0","tape":"^5.0.1","unified":"^9.0.0","prettier":"^2.0.5","to-vfile":"^6.1.0","remark-cli":"^8.0.0","remark-parse":"^8.0.2","unist-builder":"^2.0.3","remark-stringify":"^8.1.0","remark-preset-wooorm":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_2.0.0-next.4_1595445317364_0.48068720017920774","host":"s3://npm-registry-packages"}},"1.6.14":{"name":"remark-mdx","version":"1.6.14","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.6.14","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@vercel.com"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"url":"https://www.1stg.me","name":"JounQin","email":"admin@1stg.me"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"a38676804cec2d045afe54e3d366caf8cf46f339","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.6.14.tgz","fileCount":7,"integrity":"sha512-90nKwpyhrTPD9tJoOFYhspcG3jinNp5Gwck14jcNuAzqS8e2cyOkIt11+KIsbC9M4KJQ/n3wTtb6xMh3dFgKuA==","signatures":[{"sig":"MEUCIQDmytNwqBzuTtk53isvgY1ByNS7wuWeVjYBO6YII3TMpQIgMcqlO9BArtdFIIjVeoFkbzEYlZmPTTudR8QEguR9m34=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13557,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfGNFqCRA9TVsSAnZWagAAlHkP/RehAOo159/5p+7yV/L+\nwhi08TIptICQOQzc2lRNvxmuZ/rCGYx2Ilil2RhHZz9XiCUSQXV7jaYObHAd\navzOHm/stzMKR+K1F64rp70fC6hhTE43rjcFuMRdUUt67Xh3kV7E1NNz4+2w\n0YWtANEDqVH0pbu4k+x8kyA8WxLcqoicL5PowKJnl0314vATZ/lTeUxm7QoQ\nmvAByTG7a/WU24At++YCGf/2JXCnDjFEOMKopWRcEq0KMY82BqLLq0kZmLbv\njLr/m0AHdunQgAGNMLNfZxYkU0RTzYe7UXLbnHG89y36Z5rVyJj4M8SbDoGl\nRm5s5q7QyS+QnJaAQzC+1G9URyNriXM6WFrv2+zzAMGlZYR/PSskGSw5J/Yz\nwhQ0eYRZTZPVto6C9wIQAsPfeEJHFGNXQI1r0MxjR2C0rIeYxUXkeUyyXuDq\nyxrm75kZ0+vWlpcEUUCxUHFciFV7g+U2PeUIjf6bxJ10EOKx5qHFN8w0Nsbq\nIGXedKVsdGRcCXq3eXH7VbCi8TGSfbrTyrEVDqNBEueNLL8ZLEFAVJdwdRNP\nGTOt0VXLfkx7HA16L89ZwpBXv4BwXMOgBYP8q6jEn2qOggicFAiHuBBQlVbW\nJyd6jzG6e+82niQyLO+33nehYMCIqDyzWaarkYInDaT2p+ED0F4EKTUwVWra\nlLQs\r\n=b7pM\r\n-----END PGP SIGNATURE-----\r\n"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"8c9e6b1cf88cd348b607917a8ff058ea665e7373","_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.22.1/node@v14.4.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"14.4.0","dependencies":{"unified":"9.0.0","@babel/core":"7.10.5","@mdx-js/util":"1.6.14","remark-parse":"8.0.3","is-alphabetical":"1.0.4","@babel/plugin-syntax-jsx":"7.10.4","@babel/helper-plugin-utils":"7.10.4","@babel/plugin-proposal-object-rest-spread":"7.10.4"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.6.14_1595461993920_0.06603630717506515","host":"s3://npm-registry-packages"}},"2.0.0-next.5":{"name":"remark-mdx","version":"2.0.0-next.5","keywords":["unified","remark","remark-plugin","plugin","mdast","markdown","jsx","javascript","xml","mdx"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@2.0.0-next.5","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"xo":{"rules":{"no-lonely-if":"off","no-self-compare":"off","unicorn/escape-case":"off","unicorn/no-hex-escape":"off","unicorn/no-fn-reference-in-iterator":"off"},"esnext":false,"prettier":true},"nyc":{"lines":100,"branches":100,"functions":100,"check-coverage":true},"dist":{"shasum":"2d06d2c143569684d700bf61a50a538a9a00ea5e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-2.0.0-next.5.tgz","fileCount":19,"integrity":"sha512-OKxyUgREw+TwSFgVX+V81nCNbkSTBCCFTZscHD6h0riwFQuoxrpWPwjkro3JXrJ2rKYNgK65MB8CrtGGv+8YUA==","signatures":[{"sig":"MEQCIAnaPPTEKxRQYhH/WauQ5sYmCmoiJckuBSG4VcgKcdwhAiB6Dkp8xJHr9SYYtR/lPKinLZbJKGkS5DC4fnf6SI1wCw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59407,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfHzSmCRA9TVsSAnZWagAAeW0P/1UzNj4n9WIWcPAgfAqO\nKMsbd8uXxQotoOJAcVIojzoNpjw7FUaWGP6Jh+yxMofqpHMHqnGm6Xb4jof6\neT6cae5k+bPg6UwKJHd6E5e+/6Dem4Bmr3m0IR/KLZs9R2IOlwqmzc+JR+OT\n9+4qt7ma1kFzw4USrtnmlDEoxB+XyzDx3Xzz3HrlOrWbtAyqvLdk7us/hQns\nfk41AhUsEuiK2Zfqb/rWKo/XqTAnHLX8yRuEuP6JMlV0N+gCnMS5Xw3xMKCJ\nC7bYzleIavZU3Ndu21rKaQavtQTqdt1jDgUewKnomirXcfgE6GGkkNW2fMmB\nF1oR56hjcKLi6+hsclIt5knx+m9C9PCRo5clhrWTh8EXy0/Nb6rvUX/oHVXJ\nG1jk/yQCd6+Fno4Vk2adgSWTEBPnDwh0LfSbXvJoFoSIGvj5i5wf/QxcmLZP\nxFvNWktPnv0Y2q+8l+3nOS/Uf94Qzmz4rJORee4oH6kSEqdl6g/59LNMA5GU\nXdka/6baBQM59jC3TkGoyK+Cf3U1wGMLMtzIsn8DeBYcRW03f4iISDAOHj85\nJuxuVLBnqstcZG37vkHH08TB+qqmTlvk0UqEdWncPN6u09AyPreTOaXzu4Cq\nbg6KXkBFiJgVdwh4RRHg9h+l0+qaewykT29ne7PLeU8jgyYccCCC7cJecLNC\nD1Ix\r\n=cP2x\r\n-----END PGP SIGNATURE-----\r\n"},"types":"types/index.d.ts","funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"bf7deab69996449cb99c2217dff75e65855eb2c1","scripts":{"test":"npm run format && npm run test-coverage","format":"remark . -qfo && prettier --write \"**/*.js\" && xo --fix","test-api":"node test","test-types":"dtslint types","test-coverage":"nyc --reporter lcov tape test/index.js"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"prettier":{"semi":false,"useTabs":false,"tabWidth":2,"singleQuote":true,"trailingComma":"none","bracketSpacing":false},"repository":{"url":"https://github.com/mdx-js/mdx/tree/master/packages/remark-mdx","type":"git"},"_npmVersion":"lerna/3.22.1/node@v14.4.0+x64 (darwin)","description":"remark plugin to add support for mdx","directories":{},"_nodeVersion":"14.4.0","dependencies":{"strip-indent":"^3.0.0","parse-entities":"^2.0.0","remark-stringify":"^8.1.0","stringify-entities":"^3.0.1","unist-util-stringify-position":"^2.0.3"},"remarkConfig":{"plugins":["preset-wooorm"]},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"xo":"^0.32.1","nyc":"^15.1.0","tape":"^5.0.1","unified":"^9.0.0","prettier":"^2.0.5","to-vfile":"^6.1.0","remark-cli":"^8.0.0","remark-parse":"^8.0.2","unist-builder":"^2.0.3","remark-preset-wooorm":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_2.0.0-next.5_1595880613478_0.08687816487120759","host":"s3://npm-registry-packages"}},"2.0.0-next.6":{"name":"remark-mdx","version":"2.0.0-next.6","keywords":["unified","remark","remark-plugin","plugin","mdast","markdown","jsx","javascript","xml","mdx"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@2.0.0-next.6","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"xo":{"rules":{"no-lonely-if":"off","no-self-compare":"off","unicorn/escape-case":"off","unicorn/no-hex-escape":"off","unicorn/no-fn-reference-in-iterator":"off"},"esnext":false,"prettier":true},"nyc":{"lines":100,"branches":100,"functions":100,"check-coverage":true},"dist":{"shasum":"b4edbb4adf64667d14bf9f7f4eb2896df51a016b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-2.0.0-next.6.tgz","fileCount":19,"integrity":"sha512-Pz5mlOlpdujROqHcYFoPIGbzQmsLnBp+JUbu/ncRTVr5Srudp0UYQBtgcPLlfPd3kZ3DTlg/loM3huWL4mKaXg==","signatures":[{"sig":"MEYCIQCy5oq/t/Fuw8M0/CEcjGB9VYKwYbl/zQhJ1+3IXbidwAIhAOSGV15aCWUlYacKXs7uk7akYmlNs1hXAmsQsT//s6cf","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59407,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfHzUUCRA9TVsSAnZWagAAov4P/2QXCYNZnR2bW5nm3/f+\nXpQPilPyvP9hB047izgcx+khlXsNFWtR2+mt+VnUoGJ4yqUNxqJn/DOvbG8M\nHXjwPsTFidwazSMBckv5IK/0oz9kW8+G70Rhp93rOkiY0/Qiga9+Lir2GTgs\nQDi7JIiCWYwlQMAl04k0tLcThMD8p2aH6Mm1tzMiIF/kYQrJ/4+LsRQIbI5u\n6cBkehPdpUWsRUBDCbOH3yCJIjpcW2VxfKUf3NMCgv+NTyJMEAubO4T3528W\n9s5Mf4kbBoa+YCiThGYFWvndESR1j1vbPLg9AeAsfK7CUZmL4jwYacoJgZ0f\n2a0yLgjmJmZIXz3f3TD6Sf6PIZGEa3VpnCgUv29HeohhBrg9tvSc0CJbI2v6\nM0lKaIvROQoMWOiDYAjQnjjkiZ4XZhrO3P8jpgQ6dJoAnTzcSWecEbRttFLe\nvwrHJmrNGAXJDn436K+OMAk7OMVYAGKXl/Uuf+fGh1AuyEedJhIZLFPAg6XC\nema6MdppjydfJHmU2DcAYrGbRHWJpuzfjkMADZoKCK03Arr3Kg/p4SJtXGxy\nCpqQonns75llbOvzOF+/etm/iX9VMQGuBgJaeyNoLzPZm8BTuMJInYwXDjaE\nD31/FoQwsy6REyAm1LYtVyzmJRAdD0IwtfYrfGdFV6LAFWGQe+fufOt+muYP\nLbrx\r\n=cYOa\r\n-----END PGP SIGNATURE-----\r\n"},"types":"types/index.d.ts","funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"cbfeb8bbbfc830fc91717e098aacb2b2776abc68","scripts":{"test":"npm run format && npm run test-coverage","format":"remark . -qfo && prettier --write \"**/*.js\" && xo --fix","test-api":"node test","test-types":"dtslint types","test-coverage":"nyc --reporter lcov tape test/index.js"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"prettier":{"semi":false,"useTabs":false,"tabWidth":2,"singleQuote":true,"trailingComma":"none","bracketSpacing":false},"repository":{"url":"https://github.com/mdx-js/mdx/tree/master/packages/remark-mdx","type":"git"},"_npmVersion":"lerna/3.22.1/node@v14.4.0+x64 (darwin)","description":"remark plugin to add support for mdx","directories":{},"_nodeVersion":"14.4.0","dependencies":{"strip-indent":"^3.0.0","parse-entities":"^2.0.0","remark-stringify":"^8.1.0","stringify-entities":"^3.0.1","unist-util-stringify-position":"^2.0.3"},"remarkConfig":{"plugins":["preset-wooorm"]},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"xo":"^0.32.1","nyc":"^15.1.0","tape":"^5.0.1","unified":"^9.0.0","prettier":"^2.0.5","to-vfile":"^6.1.0","remark-cli":"^8.0.0","remark-parse":"^8.0.2","unist-builder":"^2.0.3","remark-preset-wooorm":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_2.0.0-next.6_1595880723735_0.6994104388951448","host":"s3://npm-registry-packages"}},"1.6.15":{"name":"remark-mdx","version":"1.6.15","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.6.15","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@vercel.com"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"url":"https://www.1stg.me","name":"JounQin","email":"admin@1stg.me"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"8762b8ebda06d8d775908aed342852fa641df414","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.6.15.tgz","fileCount":7,"integrity":"sha512-YrEB0Qm8/rkL9rverXuHq5kGgobFQnSKwiQy9SH8S9AXu592O+UnoMaw+TRLiycBIbLUM3wf9dxtg/2sRjc68Q==","signatures":[{"sig":"MEYCIQDMXShYn9EsorWTs41Q0UktmJoq+vBZBA/JKa/FNWg6wwIhAK9g72q8SE4V2sib9Gn3Md73k5konwuzMyLQ5mmXPjpq","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13557,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfIYihCRA9TVsSAnZWagAAM30P/j6JrPGz/D9p069LkFtC\nbUjI1Rli9yjEzdQQz4jfpgs+uobDR3X7luUqqJj2plGKi+RLs21kQ8OEATvb\ni3oBSGvMcwtJ1QCrP4xrfW62Y1KiOnjbyF0A27/yWwdeEqy446qiVS+e0ix7\nIthdjBoqU3vLb1cI9eJM+InZKpGHoeBF4+VHfeZnPgobtBtqy2s40VBNpXk5\nm4eKQ7deOK+DShIbtSNBZxPeUwQ3zXoUwxHPtp8GzNmPLNQtuV2/BDgZ+FKM\nXd4bIn0JglXCMm02EUDVt5s9kpqU4VqHsyYgXpGu7VF5Y7saE67K0aN2xqDu\nUvp4ikGqFHKYxE7BvCzffJrKiHf7pwXNQ70YrgsMztOnGZQh30BoR4GuNFAm\nmFC03ETjpTkq9JvES5odl9GZUKDfcM+ZNSLOlzCDXOGCa/omU46v+9nqCCn1\n3sJXvpDmeK5d4b+gFPWYsKHQuxwsbqEZL1WgiGeCb9UZpmi1HjwmNbKbSl0y\ngru7oiGUA2sSLs9jXwnFCbgnfLxBdsXnnE/ATM33SEzrehqjYGcdRwViouup\n7LxT6l5Roj2DWecwXf/hpXC4hhm/CT7On5m6FD9Omeykp6+7EcLg0G8Dtg98\nrpKbNgui2l7R3D1cfubVOuBwRgjpEmMG58SOKkZnogm0gQgDB5D+Pn5ltHmQ\n2hGV\r\n=Omyh\r\n-----END PGP SIGNATURE-----\r\n"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"d7aff710e689ecc9656f3bd1d5406e60f8c1031d","_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.22.1/node@v14.4.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"14.4.0","dependencies":{"unified":"9.1.0","@babel/core":"7.10.5","@mdx-js/util":"1.6.15","remark-parse":"8.0.3","is-alphabetical":"1.0.4","@babel/plugin-syntax-jsx":"7.10.4","@babel/helper-plugin-utils":"7.10.4","@babel/plugin-proposal-object-rest-spread":"7.10.4"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.6.15_1596033184891_0.1431258109539526","host":"s3://npm-registry-packages"}},"1.6.16":{"name":"remark-mdx","version":"1.6.16","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.6.16","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@vercel.com"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"url":"https://www.1stg.me","name":"JounQin","email":"admin@1stg.me"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"13ee40ad0614a1cc179aca3604d7f1b79e498a2f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.6.16.tgz","fileCount":7,"integrity":"sha512-xqZhBQ4TonFiSFpVt6SnTLRnxstu7M6pcaOibKZhqzk4zMRVacVenD7iECjfESK+72LkPm/NW+0r5ahJAg7zlQ==","signatures":[{"sig":"MEUCIQCKA9WxG+dd/T3FDSEUHB7l8fSPKCy+WbXCUXm9uzmWAAIgF72iMOtwy9Gj8VycI3dRsNsC0ZfZsL3GermYDOQD6cc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13557,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfIe5SCRA9TVsSAnZWagAAGJMP/3opxONAcAqCoeoKvONE\nKaF3ZFsXT3vFBGg4uLXHcfARUwnDSpiM6ODqUPjPRDfaNM9dwu7eK+PP9lwN\noa0J+C4Ug3RhIIuqn7H7S1HDGUVnrx/D++4WMtPphFXTxjmsa7DJlkmcfOTJ\n94CLS42KecwhXneB7+xqJ8mtmli4PIQ0CPNHlP9Ixv+fnqSsFPUWehyDL864\nJ786NySJ5dF4Jelfk2dVG1aaJqObkBWvnuzgykmapMpnZHH28cW7GwMB6bxl\nDy7zCHoPWekfE6/DTO+xauulXRbj5XJIBNDCIGjzUV3BjqnXSn2qukteL1XA\nBRX1UsTvChhBLDMPPV8xaOdaGghx2JTjBw6S70/YwDtootmiSGZKR6b2mVYc\nah/wf7JvbWuJarYaA0HeIxXmiR3xETwh/9BWp401TaMAiJAXCkf2Pk1U3Nri\nobxqXb993HZBRjfyPoUycAXsE5v4uT6fN1CptjxZx2SafNZEuYXDlOCGkhTL\nuhxdaHMH8lEEP4NsD889Tr3djvvQG3qpkQ0n/7u/uCvCtqXFQ1NeOqYM4T9g\n5GcXQPPJVCveVQAi/iFl+FgkcxIQKJtoCL0hr4WIAejqUTkn5DaUKBdh7vnH\n0Il4BILvAMUBvK8+RJoS8WoNrk/9CENSJy+uTe24f8J5QANwmm3hbjzExHZY\nsj6k\r\n=g2kc\r\n-----END PGP SIGNATURE-----\r\n"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"f8960836b09429738e658634eb51c4a8a1a883ef","_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.22.1/node@v14.4.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"14.4.0","dependencies":{"unified":"9.1.0","@babel/core":"7.10.5","@mdx-js/util":"1.6.16","remark-parse":"8.0.3","is-alphabetical":"1.0.4","@babel/plugin-syntax-jsx":"7.10.4","@babel/helper-plugin-utils":"7.10.4","@babel/plugin-proposal-object-rest-spread":"7.10.4"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.6.16_1596059218166_0.5137506877316951","host":"s3://npm-registry-packages"}},"2.0.0-next.7":{"name":"remark-mdx","version":"2.0.0-next.7","keywords":["unified","remark","remark-plugin","plugin","mdast","markdown","jsx","javascript","xml","mdx"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@2.0.0-next.7","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"xo":{"rules":{"no-lonely-if":"off","no-self-compare":"off","unicorn/escape-case":"off","unicorn/no-hex-escape":"off","unicorn/no-fn-reference-in-iterator":"off"},"esnext":false,"prettier":true},"nyc":{"lines":100,"branches":100,"functions":100,"check-coverage":true},"dist":{"shasum":"e8d4e4fe2c2a98bb34e10304c6e6f2823ba56dfb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-2.0.0-next.7.tgz","fileCount":19,"integrity":"sha512-JHYCfxJzvjTw8h5y10f+mCvbfIt5klAkWlULqPu1nM/r6ghF3tzJl0AFQFj5b/m/7U553+yYb/y4n0julMERYA==","signatures":[{"sig":"MEUCIQCIn20ILUCrx6XS24jJeVtmlekVdULvWPlowx5kCJVFuQIgBlW8s5fEbbvAyHHrU6yl0hgmTx2DV6ZWZ4T7LXRXyQQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59407,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfI0AICRA9TVsSAnZWagAA498P/RKrFbB+4dHq1Ws/qbDo\nuwVbX9aCQT5IaU5K7y9aOlzHqkiuD4my0FJt0wsVbEDlTCK3RMNHjZgC76ls\nXOV4j9N6MaugxxEQOwZxMP4MwYXNZfXKPidQWSXvqfnH5TCRMytRA/Wyue+9\nLTlHbgYzS3GJTSiORIJfi2rNOrmptoxNEbTTRnJx3PodFCoJMiRMtXxXVt7x\npQG5ESIv2PCPrVvt6GHY/6Azi3HHQet8nW9yx+goIAN6kqSq0x3cvXIbEHII\nRAkLqLElbcOflIAboeDcBrvfVRVW7H4q8NFpLXLijYc/FSNjwlDi1ivWk7Yi\nMDGihfzmws5/gQ2dVak/yAQeA/deiFbkcDWesEbojd5E+Ih78NSrrWbepv5m\n7kIwbmArePZ5TyBVbb7YaS4900ZLIirK770Svm4PTxzOIs+rTm0M8APN3qcN\nKEPY7gPOxB0/kxQ/UrhkRF63hQXnwsMSGZrVSu98LPt7yjnpY0IYf+0QJNuy\nC0QuqMbzHOBJPmg85N4gkhLmkelPKP6v5FLAvDV7fAUlZcgvS/5J9hxfE6ST\n6DSXNXskDrqemBmXOKtQ7WHcfR2RMWYcCFkrk5PGj6MDqm9F2pMDKjmk/UCP\nLkEdAsvd94lQs7ERmWyPOzHAJB75RuR00byJogSAMuNZhgfxMIAq5Bv7oeHR\npiHc\r\n=VSD7\r\n-----END PGP SIGNATURE-----\r\n"},"types":"types/index.d.ts","funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"b6f3fdf758ad36434ee586935418497f0041a61e","scripts":{"test":"npm run format && npm run test-coverage","format":"remark . -qfo && prettier --write \"**/*.js\" && xo --fix","test-api":"node test","test-types":"dtslint types","test-coverage":"nyc --reporter lcov tape test/index.js"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"prettier":{"semi":false,"useTabs":false,"tabWidth":2,"singleQuote":true,"trailingComma":"none","bracketSpacing":false},"repository":{"url":"https://github.com/mdx-js/mdx/tree/master/packages/remark-mdx","type":"git"},"_npmVersion":"lerna/3.22.1/node@v14.4.0+x64 (darwin)","description":"remark plugin to add support for mdx","directories":{},"_nodeVersion":"14.4.0","dependencies":{"strip-indent":"^3.0.0","parse-entities":"^2.0.0","remark-stringify":"^8.1.0","stringify-entities":"^3.0.1","unist-util-stringify-position":"^2.0.3"},"remarkConfig":{"plugins":["preset-wooorm"]},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"xo":"^0.32.1","nyc":"^15.1.0","tape":"^5.0.1","unified":"^9.0.0","prettier":"^2.0.5","to-vfile":"^6.1.0","remark-cli":"^8.0.0","remark-parse":"^8.0.2","unist-builder":"^2.0.3","remark-preset-wooorm":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_2.0.0-next.7_1596145671663_0.3250340895300663","host":"s3://npm-registry-packages"}},"1.6.17":{"name":"remark-mdx","version":"1.6.17","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.6.17","maintainers":[{"name":"anonymous","email":"tituswormer@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"johnotander@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@vercel.com"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"url":"https://www.1stg.me","name":"JounQin","email":"admin@1stg.me"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"a1ca0f99a06dc2f8dcffd0e1f29b230e12f568c4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.6.17.tgz","fileCount":7,"integrity":"sha512-/Ldq6nsrtTg5gNLdKofbSLdRtzU2o6QYABGA4NQfvF8uOVW2bResMA5bRsrO0bytCg97ZhNdFvcnrUnVXqYI8g==","signatures":[{"sig":"MEUCIHxaal6rZcWnOhPQu3BthPvx59PIT+7LgSGTEmGxnm/jAiEA1X6C+Oq1Oe+EZJ316K5xS0hnmfDIhqe4AtT1TKlUVDE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13557,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfX7LnCRA9TVsSAnZWagAARIYQAJnd5PgeVap9Wa5gaoRC\nLbdTeZ8gWvdvZXON7a8xypcFb/0LDXh01CP0Ow3g0Iigk+WA06AWZ1o0M8aq\n82IC/VDNozBYNkcahoj8fBiEfsjvDFu/SVBVidK/X3904+4kG4aAHI6qmpTp\nJwJl5j6jN7a4McY0uP/0ZnWqBdoa/SFQbGacZsbvP+vpNALhI6hmll/5bzxP\n7fmhGUvAerTILAQW2MPxKCvLeOQma7yQDOCMOELjurajko8AfklpPJHHLt1Y\nPPT9Ke6yQC5PXjgx0Vz9ra59sAaXI18GYzwHXRIMXiTqhRsQowgaPgo9VI5M\nmsB/QJ+d8pEptUC39x0dKhyUistFqII7Y6R5rBpfLtWeOmsrLYFWAlnsk65e\n/oLrfcelfJnSqNAQojZLXsPB8CXA//8JIdysyoz6oeu9IV56Kt8hb1IGT7i2\nBO2aK1IbkSnZr1K4NqLiRFWxznem2JtRVRXWdi/Mt6HRvLc1pOEWyMUjPz0H\nucoYMf/PA1YXTQxOFioZFvPTnOVCat3RlaSonT5eDonzHPHjE6h4Zqk7pnuc\nSl/zwKqZMFaAPpYK15pQsKYwUG3358zBxM3SqT0VFqjs/u6vFMqe8slsYEcG\nMxvKchq8PPvsqnzzdfC+/pMcz7RRL9IcURU7I04V11e/W/2wTOWOf4neiJrJ\nWgxA\r\n=IJQA\r\n-----END PGP SIGNATURE-----\r\n"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"a0385d505375dd8c1ec259e1285f35c8a2207167","_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.22.1/node@v10.22.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"10.22.0","dependencies":{"unified":"9.1.0","@babel/core":"7.11.1","@mdx-js/util":"1.6.17","remark-parse":"8.0.3","is-alphabetical":"1.0.4","@babel/plugin-syntax-jsx":"7.10.4","@babel/helper-plugin-utils":"7.10.4","@babel/plugin-proposal-object-rest-spread":"7.11.0"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.6.17_1600107239118_0.009932869610274953","host":"s3://npm-registry-packages"}},"1.6.18":{"name":"remark-mdx","version":"1.6.18","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.6.18","maintainers":[{"name":"anonymous","email":"tituswormer@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"johnotander@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@vercel.com"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"url":"https://www.1stg.me","name":"JounQin","email":"admin@1stg.me"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"d8c76017c95824cc7fb853bb2759add8ba0cf319","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.6.18.tgz","fileCount":7,"integrity":"sha512-xNhjv4kJZ8L6RV68yK8fQ6XWlvSIFOE5VPmM7wMKSwkvwBu6tlUJy0gRF2WiZ4fPPOj6jpqlVB9QakipvZuEqg==","signatures":[{"sig":"MEUCIQD8hMX+fL8vFgm/KoD37DxSYRWZnkVhv6U0M4TY17XinQIgNuy9GP9vUcDap54k7jnNAozITbzXkBIG6vOHjhM+R+w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13557,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfY2nmCRA9TVsSAnZWagAAT0YQAIP4qDYyzwV2YhjPKGja\nHg60pvFOPvmQRjNBpY6e5wquEU7ZniV/DniWIBFo0CH3k7CFxW0RscCf+SW0\nXPOP89KXiIgyENRq7bsba33RKwuS0nHkemBiWi7fMy7g5SP9WtkyGxA8sGc5\nSSaETLemZJcZ6YhrixYpv1XZmxJWKeIzUnVLOGatoLb5/oMeMwzj0xFrQenl\nzM6qdFAgDQa0w8HSaLn3qmXJAq3bHH2XFYFrHmhGhVtWu/ukYsW95oMjtR+t\nbZLD2V3VPaCUA9RNZv3Y0Me1+ef++V2qeeV5VUIp5pNip5EzAJOpQi30nk95\n1GrzX4uPjxRZ5rSbjBgTCfsXhYS/0Dxdwa4UJUvHfDyAtKu448lQPlprNAq/\nVpQbPqxOf0C4chgaJz/Ot157V/3pOYmanyyw65V1tO0XjOyvBp9jC9O3hwU8\nQb93QQ3lXJrQnrJhHe5I9gJjyiij5nlqa3NHAdmJLFYXCs8CgvoXXtj9VDRz\nmIHCcWhXBKPDQbdajrWXmT/TpAg+Txh1EKUsmCBMQy4x3/32rihv4+bi+zDZ\nFlIsBFPsGliX+81u79irrgn1ENC5rqpHy84f0TpbTOdkeY3PHL1v3fnBavKv\n/ULxyNsJ0IHScXTyUzmw4QTqcWIlhHQLDPZtd4JmVLkAn555xzRKMnLL9iVT\n+oMC\r\n=DB4c\r\n-----END PGP SIGNATURE-----\r\n"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"4276f9822ee6313b7aee2181f7f27a7cd14c77be","_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.22.1/node@v10.22.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"10.22.0","dependencies":{"unified":"9.2.0","@babel/core":"7.11.6","@mdx-js/util":"1.6.18","remark-parse":"8.0.3","is-alphabetical":"1.0.4","@babel/plugin-syntax-jsx":"7.10.4","@babel/helper-plugin-utils":"7.10.4","@babel/plugin-proposal-object-rest-spread":"7.11.0"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.6.18_1600350693822_0.876447430364935","host":"s3://npm-registry-packages"}},"2.0.0-next.8":{"name":"remark-mdx","version":"2.0.0-next.8","keywords":["unified","remark","remark-plugin","plugin","mdast","markdown","jsx","javascript","xml","mdx"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@2.0.0-next.8","maintainers":[{"name":"anonymous","email":"tituswormer@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"johnotander@gmail.com"}],"contributors":[{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"xo":{"rules":{"no-lonely-if":"off","no-self-compare":"off","unicorn/escape-case":"off","unicorn/no-hex-escape":"off","unicorn/no-fn-reference-in-iterator":"off"},"esnext":false,"prettier":true},"nyc":{"lines":100,"branches":100,"functions":100,"check-coverage":true},"dist":{"shasum":"db1c3cbc606ea0d01526242199bb134d99020363","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-2.0.0-next.8.tgz","fileCount":19,"integrity":"sha512-mjP0yo6BgjYrx5a+gKWYRFWbGnRiWi4Fdf17xGCr9VkSMnG4Dyo06spqbaLfHwl0KkQ/RQZlR2sn1mKnYduJdw==","signatures":[{"sig":"MEYCIQDWgr/xZnuyIQ3LKJJHNh2Lz0qHmjBcWFsyyqbjpR8DqwIhAKtT9jEYEutMwIQ+9Jbhkh5/MU8/a67JSrId60pYwBEy","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59407,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfZSqDCRA9TVsSAnZWagAAjXkP/R0+Xtx9XOMcloaMF1vY\nmn+XjKWviLMrVKyUWIQFt/idYaxtj4jP2mIIRWgFgUWO8zTr2A2wO3DuePql\ntoyBidBkZgW5qau4Zde3qrcL9q3rGvjzJR4MWZO0MQ/U2osbZFY5330HInH3\neCU0L0fHTW3JHE2mocwCpjmmTQngTA/Kpj7kXsvOVuqBP68Cnpcgvr7wPwnf\n4qDhI0runEbSkkG3yoGb/q7AYLF/qqQkR9fTvP/ClJJWvNc/64ZDElEFa5al\naf2EgH1+8rVTIipJSPaXVkeZwlS93UXaH9cISP+0osztNB3Ec03j7Gb8xXkV\n7PZp4aKrb/lPLGURB0yncpOiFKzkRvOLSG507g70cWqWL5q+/DAO4v5g9kll\nCRd9o9hBUILz2DRNuT9Y79hlACsjkKljeBdAJX9KYAuGpIR8v+Nsp+cRxpr9\nFL0M2v6COZm9r/IOOIdXpmEFs7i7uvEd7GnA4FfAxTtvsQC1ACZQAtuMmeRF\neBmLeKsMqDvoGyrNZxpc6K7cB1zftDqYY+Wtyjy5AkxllapuunCSv+Hh6ocB\nqqbQ71Db6HqDB+5CyMPpBJh2gmxKik4TkF7Hs5VQPLnn7Ybg73HNePYW9gWU\nAArZpjbVdrZQFPMB7o771QugGLUFBYQMFWCEGFsKQb2KmsTIjNu1V/jy0Yh7\nO6H6\r\n=0bjh\r\n-----END PGP SIGNATURE-----\r\n"},"types":"types/index.d.ts","funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"e194fc1a61715549be10d56055ea4ad25533fcb1","scripts":{"test":"npm run format && npm run test-coverage","format":"remark . -qfo && prettier --write \"**/*.js\" && xo --fix","test-api":"node test","test-types":"dtslint types","test-coverage":"nyc --reporter lcov tape test/index.js"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"prettier":{"semi":false,"useTabs":false,"tabWidth":2,"singleQuote":true,"trailingComma":"none","bracketSpacing":false},"repository":{"url":"https://github.com/mdx-js/mdx/tree/master/packages/remark-mdx","type":"git"},"_npmVersion":"lerna/3.22.1/node@v10.22.0+x64 (darwin)","description":"remark plugin to add support for mdx","directories":{},"_nodeVersion":"10.22.0","dependencies":{"strip-indent":"^3.0.0","parse-entities":"^2.0.0","remark-stringify":"^8.1.0","stringify-entities":"^3.0.1","unist-util-stringify-position":"^2.0.3"},"remarkConfig":{"plugins":["preset-wooorm"]},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"xo":"^0.32.1","nyc":"^15.1.0","tape":"^5.0.1","unified":"^9.0.0","prettier":"^2.0.5","to-vfile":"^6.1.0","remark-cli":"^8.0.0","remark-parse":"^8.0.2","unist-builder":"^2.0.3","remark-preset-wooorm":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_2.0.0-next.8_1600465538175_0.051120592645516716","host":"s3://npm-registry-packages"}},"1.6.19":{"name":"remark-mdx","version":"1.6.19","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.6.19","maintainers":[{"name":"anonymous","email":"tituswormer@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"johnotander@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@vercel.com"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"url":"https://www.1stg.me","name":"JounQin","email":"admin@1stg.me"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"9f5330a6b151c40643ddda81714d45a751b158e0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.6.19.tgz","fileCount":7,"integrity":"sha512-UKK1CFatVPNhgjsIlNQ3GjVl3+6O7x7Hag6oyntFTg8s7sgq+rhWaSfM/6lW5UWU6hzkj520KYBuBlsaSriGtA==","signatures":[{"sig":"MEYCIQDYn1JtJh1wpMMX19XMkw41wXVXwtbZgGg5b9hy+2DvsAIhALagJ+BrLMGco5IkwH6qsZpTlvxnKl6B9BliX3zhSc/3","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13544,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfj1t7CRA9TVsSAnZWagAAoiAP/ieKMwqWFxdSSasAuobn\nT2jlkBaqPCQnqehnZQSwEYmDPsc3mw3RtVqNmq5vNfWzcL/rvkLJLzK4Oob2\n1hOTv9H9u6cR8WB9lbH3oLCwWxqb3wBahTfTOZzgVZF+BcWKVQlvxigiUA5/\nE+pufDF3IAEGCew/XFzSsBItSipTvClBuj+G3dybH8Bgg8VHF46CWsAxOTnn\nOYcmGfMhoS0OR/l+GC2hDkiuR0WmBRDsLutUrsY7glVg6wmaoarHeYKlqnfe\nFu02OM/iwdDRvKDFwosQEfUzyqPawObl90s0BUx+b33Rrk3UIjNcD8svPTv4\n6twreEe9DKDG485W1YJXbkSPHqoO9QJ6xve/VpoIS5GlBxofXoog8gCj2wvD\nC7sL1IzAf5qptdc4sx2+CWwoj1klC9L20gVAX2tYXoGTr8wpftWhsNeF6zL1\nEoP1B84V+WKwJDDWeiFZVW2v518UhT9C11g7G8Ia2IUCcvB73xX2faNkPR49\nTyuF5cTtq1Qucm7/1E6RCqDsllEENIieIGy9Y5KKJD7Fo9KxxL457u5fx37J\nCLYCNZsmeU1Q0zda5+PSGXSnIbDK8wmTrtYx+eox2EvicuIFzgnIpmRu9GkK\nlK8YUwqGqXqzz0lg5lvI4EjrmRyWY57PjtHHqfdM+C58pkPbK0vV4/hvGKHE\nLcvh\r\n=FIi9\r\n-----END PGP SIGNATURE-----\r\n"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"a4fb84aa824b66545eacc60c50beef52f7d848f7","_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.22.1/node@v10.22.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"10.22.0","dependencies":{"unified":"9.2.0","@babel/core":"7.11.6","@mdx-js/util":"1.6.19","remark-parse":"8.0.3","is-alphabetical":"1.0.4","@babel/plugin-syntax-jsx":"7.10.4","@babel/helper-plugin-utils":"7.10.4","@babel/plugin-proposal-object-rest-spread":"7.11.0"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.6.19_1603230586942_0.16278385496526182","host":"s3://npm-registry-packages"}},"1.6.20":{"name":"remark-mdx","version":"1.6.20","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.6.20","maintainers":[{"name":"anonymous","email":"tituswormer@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"johnotander@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@vercel.com"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"url":"https://www.1stg.me","name":"JounQin","email":"admin@1stg.me"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"c418c3f86ce25f04939ae271ff8c863d6bfaad95","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.6.20.tgz","fileCount":7,"integrity":"sha512-PTroZRAbwFEJXT5rHHN7SyYshHjADVudBbkUWtX2nEK+taD5I5GjRxJo0weq1zOjpil7Ku8cRRoKmpsMDP3mEQ==","signatures":[{"sig":"MEQCIEKjCLsu9OIqxJAmGyAvskolrHlVBpEKAPoh2gnaVDr0AiBXX24m8iBlBDrx74HLfMl/OjPLbFlEb6Sova7MGtoh0A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13544,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfprUvCRA9TVsSAnZWagAA5CUP/3mRRPqkR3Lwnlxf0sYk\nLhW7U1UADMG8fOqaNQvPnsDW944WW1whhtIVRFYpfS+GcBDBCXkxf3n5p7lX\nL7PZK8yV8ZpkpZ4D6yoqWfNDzcWwVa0+ig+Rd5OqX7foAsIN1d5JnFU3BjjV\nCr+Nn10mulif3z2Xrb7JV0Q9FBvbc6pVUqHWM6KnDdw/qD00SuIof2VFSZDY\nv1rOwwIj+0sRQCalK8nNlqsu9GmIp+0WFZQpuK1UIdmaVNBdxqzf784sa1Ft\nB7/NXenFpdfV9iQd6ZWfGSuohohlPCdeAX9beZF7rRV6UfpktvEmvfK+bgBy\nFugLYAlKgDWGfsg+xVahp7J5hmlrTbLlyMgYvxYOY8KoiM/zJ4+yx37dTG40\npSnyqD2nwpT1Vkn/7drj7KE+lHpb+IfRurbyKwKHpq6mPMCamiJbWDxO1zvq\nyEw3tdMmNdB+Vc1HWi+oUIS5mtEUBkboqe9GSZw1QJEk9uliEF9wzj0e37uz\naNKFvzhuIkjZbLKYPC1GYlM60lNoht31pxGCt1/5cq9gHz01OkpQFjaOsUyd\nIJ4NYBScBe1Iq49NbCTXpswN268G+PZCQzJYLd/23Y5aU1X8uujP1C6I/NfR\nwteEDqaJ+3U16Zfrr935071dkzAtvkNnkkTjJ1KwG5vc2buK+xhuwi0xTmiY\nbIbr\r\n=bEp0\r\n-----END PGP SIGNATURE-----\r\n"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"45f761dfbf5dc41284177256f21f7b5322fcc5fe","_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.22.1/node@v14.15.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"14.15.0","dependencies":{"unified":"9.2.0","@babel/core":"7.11.6","@mdx-js/util":"1.6.20","remark-parse":"8.0.3","is-alphabetical":"1.0.4","@babel/plugin-syntax-jsx":"7.10.4","@babel/helper-plugin-utils":"7.10.4","@babel/plugin-proposal-object-rest-spread":"7.11.0"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.6.20_1604760878982_0.6982867970203221","host":"s3://npm-registry-packages"}},"1.6.21":{"name":"remark-mdx","version":"1.6.21","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.6.21","maintainers":[{"name":"anonymous","email":"tituswormer@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"johnotander@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@vercel.com"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"url":"https://www.1stg.me","name":"JounQin","email":"admin@1stg.me"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"0c1a7e042e50938ff89ad8dd7e8e219d4b0404ce","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.6.21.tgz","fileCount":7,"integrity":"sha512-IGb3l46a6NFi62egT+WXeTT3T8wYTunmPCEGTfDO6oRAfuss9VAb/3InVCKKGXXoiNi0mTuplI0EFusdCLGk3A==","signatures":[{"sig":"MEQCIDRkuq1GzndNhssUzYijeGN9dUVXVfTL02s4eFxpwZWgAiBIsoCtKk3VBNceu0iKqeZ/W7k5kokz+TBWcCa7pcP0OQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13544,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfpriMCRA9TVsSAnZWagAAH1UP/3XCAzka72cUoByVPnn0\n1iZLSGq4dV6DRCxASE4SFYrk54rgTCJ04aOtmli7kyu6D4/iNPGX31xGwKm+\nsHxWDAGKS0RZL3++Q3YG/Rn2HUFFSQuQ//wlqElUPgvbeVUAwLeaf6gmcMC/\nm6AEIG9XkhHkPNqM/1CGUVEFdH8ccQlukSusVr9Nf31WxCAuXW9i+nM4DKyu\nhwl5tswuhhQESfzzPZvbj3E5/1taMN4eMaZ54qd9okVLp4zve8exC5Sab93L\nhuf+eZs2a5pcu73SS8Eh9zdefU5K/VpFc1TIYoKsdZ7rEsXEyp2A+zxrbhwy\nGEuj43zO/d9dWtwyDapEsAf04/TKfWCWxfLEI/LzsKahJVSMSM3Yi/1RPXf6\nlgt+MG8gj8buxDfNDgnZCczzEgY4vRYW1TTEz6C/JB00xLL+xqu9BFb0rqbF\n8CdOeOzGlRQavCXVOgRgL5XjgGAgbqmJ/DtFGVOOuQdIgamxTCylIBdxtvNp\nFSRZApKa8eF0loHIa8A+qY7YfY/RIsdNt+MHq9WZJOr+tjYjN8VynIP10QdQ\nsbWMxndB7km4oLeErnHpjUWDAEHWuHWeCTVwi8H9REAu4ku7DrpOHqKtt9kF\n4sCWG+9Jtk96yrguAzPrwOUop3gfCWiO9hI4ieII1bMo49ACsKR4+k5EQTvY\nclo3\r\n=PH4w\r\n-----END PGP SIGNATURE-----\r\n"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"97ec1a8436100143c76d2ea1c28ec082c394379f","_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.22.1/node@v14.15.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"14.15.0","dependencies":{"unified":"9.2.0","@babel/core":"7.11.6","@mdx-js/util":"1.6.21","remark-parse":"8.0.3","is-alphabetical":"1.0.4","@babel/plugin-syntax-jsx":"7.10.4","@babel/helper-plugin-utils":"7.10.4","@babel/plugin-proposal-object-rest-spread":"7.11.0"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.6.21_1604761740226_0.605720724987715","host":"s3://npm-registry-packages"}},"1.6.22":{"name":"remark-mdx","version":"1.6.22","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@1.6.22","maintainers":[{"name":"anonymous","email":"tituswormer@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"johnotander@gmail.com"}],"contributors":[{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},{"name":"Tim Neutkens","email":"tim@vercel.com"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"url":"https://www.1stg.me","name":"JounQin","email":"admin@1stg.me"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"06a8dab07dcfdd57f3373af7f86bd0e992108bbd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-1.6.22.tgz","fileCount":7,"integrity":"sha512-phMHBJgeV76uyFkH4rvzCftLfKCr2RZuF+/gmVcaKrpsihyzmhXjA0BEMDaPTXG5y8qZOKPVo83NAOX01LPnOQ==","signatures":[{"sig":"MEUCIQDQbNKrqp56MOizBaISaxsx9L6aE7CVcOE1PahMB6OS7QIgOzQoqbaba2nN3tDgKk+mKeHZ/xDOSb6VYjBDeNgQzEg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13544,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh25ohCRA9TVsSAnZWagAA2YEP/0vWKylak2T/G+NdV2tb\n63nxgXk3IVLIUnKJEfZPdR9hlZUHy31R/A1yDhZOYm4d0kqDcojh5eAR3FId\n79Z+dVVmuo0QyxzTt5LwyHpNVcCY6MMfXPym2hMzBEhvjj8tWYpx1f/CJXYS\nRij1zObHM4ay2N0BA7Hjfn4KH1XtHeVVYCYXaNDw2mp663YAiWZiR5i91/x5\nkVujjp43BCGvP97dDsRqdJXawlqZs0Tup+qhkVUvSBEnBXEFG3aGO7uxsgnx\nYVuloFidl/YCrtlQOpAO/Irjpmj4nAJEYWJ4RUJb/6cz6TOf8n5Q2jJmqbG7\n00eLxi8pCjA7FJ1WFCOUql4LJ3FELc4NcfglixPopqyG+dWYeqcf1et5Qv2P\n/sqyqRfGs5TlhPPer28NaBSuNO6kEaCfG/rFw+hqrslLjnkxqr2IBHhDxN4u\n3xhZIneiiwegeDNdEphT+giAPeQV3A2TNL8ioIm9HPsEE0ZyPKA5jUghy/D+\nFh/eUdRZeuHM9E0sXOLMdhIYqNZxsQ+fU4klP8GdRN0++vjvk2l1IpgEh9ZP\ncLjulwJ/hi8eqgLlRCnwVDqEDOSzbpghF/8Mo279znrkUhxPYDeW9g40dsgy\nrGIbMcHCTxsXgZDy3w6Ag1N+QHMUPl8UK6esbtBluNbRNPtF2fajN5EVtZrl\nyFqz\r\n=AD9d\r\n-----END PGP SIGNATURE-----\r\n"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"510bae2580958598ae29047bf755b1a2ea26cf7e","_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.22.1/node@v14.15.0+x64 (darwin)","description":"Support import, export, and JSX in markdown","directories":{},"_nodeVersion":"14.15.0","dependencies":{"unified":"9.2.0","@babel/core":"7.12.9","@mdx-js/util":"1.6.22","remark-parse":"8.0.3","is-alphabetical":"1.0.4","@babel/plugin-syntax-jsx":"7.12.1","@babel/helper-plugin-utils":"7.10.4","@babel/plugin-proposal-object-rest-spread":"7.12.1"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_1.6.22_1606845237739_0.6100534487382037","host":"s3://npm-registry-packages"}},"2.0.0-next.9":{"name":"remark-mdx","version":"2.0.0-next.9","keywords":["unified","remark","remark-plugin","plugin","mdast","markdown","jsx","javascript","xml","mdx"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@2.0.0-next.9","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"nyc":{"lines":100,"branches":100,"functions":100,"check-coverage":true},"dist":{"shasum":"3e2088550ddd4264ce48bca15fb297569d369e65","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-2.0.0-next.9.tgz","fileCount":5,"integrity":"sha512-I5dCKP5VE18SMd5ycIeeEk8Hl6oaldUY6PIvjrfm65l7d0QRnLqknb62O2g3QEmOxCswcHTtwITtz6rfUIVs+A==","signatures":[{"sig":"MEYCIQCCd8SEKZdpxA1OKqvx+wTci7qpPy7mPnR1uGb3GKC0XgIhAI+mdwGh+6v+l8ZkAS7dOaEfjGjCzg9scxmEq33l70QR","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8137,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgU3FFCRA9TVsSAnZWagAAmiwP/3wC0G0Uz4pQVIUNNFRR\nB0E4wOHNMZT6156D/el+BjaofgU4gBQumK0NpiukYuHQb7ZXoBpMO1j0RJLR\nbSJqW8Xor1FDgmqJkpXdqXjsuODaDluegln5A3vS3TEj2lUJQHyJ6RU1MJRA\nyrxWrO4x7d8y7k3xqDsWIjEmG1LXvB0Vt7YLjXqhAiLFTWV86Ds8qvsIpkhd\nf/gXHOFOvwPrkZ1qRYcP9VWNHHc3cqG8mP1hZmmOQJo6wROlI31mzRng1Yaz\na1iVR5n7ivT/btTjIpWcRO4bQhwV6V0jnkmO11Np+Iqf8zFYB15W+4eUqoB5\nvcsUP4game4d0Tjb9+ml3B9kZj1nd3M0PlPbCnMH8CCXjJiaeUIBW25VAW9W\nfrOeWzstbzJph4Zw4m+dm5QfOgWhtEknBIRumafNUXa49lJyZJ6WJWOa/kd8\nQM0UlyirQ2IsnjaEgXdiQkHGqiw0DHssDbajSDQhiYkkL9f1dvyFTltfO+va\n40sOpJCODK2KNGegElT+Q34LN99Tk1HhvxjsyQJY3OKZcMXjf0UfZZ7zndCk\nSHNJzaZaQD+ZL+Q6jki55qKkYf6E1J8GgbauyGT61axdM4Ag9znwv/9k883v\n/JzfdNGTC1copw5cigkQdapX/TappZSvpHe3kju9mDoN2RSA4EwR+08BXjDu\nrmPu\r\n=k56b\r\n-----END PGP SIGNATURE-----\r\n"},"types":"types/index.d.ts","funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"6fc71ff94c671582b4185a98f87dcdb1d18c831b","scripts":{"test":"yarn format && yarn test-coverage && yarn test-types","test-api":"node test","test-types":"dtslint types","test-coverage":"nyc --reporter lcov tape test/index.js"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"https://github.com/mdx-js/mdx/tree/master/packages/remark-mdx","type":"git"},"_npmVersion":"lerna/3.22.1/node@v15.12.0+x64 (darwin)","description":"remark plugin to add support for mdx","directories":{},"_nodeVersion":"15.12.0","dependencies":{"mdast-util-mdx":"^0.1.1","micromark-extension-mdx":"^0.2.0","micromark-extension-mdxjs":"^0.3.0"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"nyc":"^15.1.0","tape":"^5.0.1","unified":"^9.0.0","to-vfile":"^6.1.0","remark-parse":"^9.0.0","unist-builder":"^2.0.3","remark-stringify":"^9.0.1","unist-util-visit":"^2.0.0","unist-util-remove-position":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_2.0.0-next.9_1616081221255_0.45105217855779167","host":"s3://npm-registry-packages"}},"2.0.0-ci.4":{"name":"remark-mdx","version":"2.0.0-ci.4","keywords":["unified","remark","remark-plugin","plugin","mdast","markdown","jsx","javascript","xml","mdx"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@2.0.0-ci.4","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"nyc":{"lines":100,"branches":100,"functions":100,"check-coverage":true},"dist":{"shasum":"a7af1cb7227888d775ba4294beac79109babb7d7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-2.0.0-ci.4.tgz","fileCount":5,"integrity":"sha512-tTf9l7vbzspOAH3afCuXcXosZhohuOOTpWuRcVqj8uZnTRekaMk83c64UotZOEAy9KK2U5RHVGb7F5fCuGItuA==","signatures":[{"sig":"MEQCIE20fxp+3+D5aVCC0TU3TCzKJbBhirFOeCti33UXk26rAiA0udc83YIC8I+/aZ3gU7IsZnfndXCHVo5i9toWF/AaFg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8103,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgbelVCRA9TVsSAnZWagAAMvcQAIYsPaEk4vU/CYRcDLqY\n8C+ET4YTDEp/VTs+gmqkWy2hy/ewNDaJEOu7Z+daVZL5A2u3NCgINQ31/uW7\nVo49L0CJ4c3jsMbocU9+JKlMuzsCNqnsAnZUWA7GlEAPY1KuyMLIlXwifIvl\nUgZuFN/rCVBiR97St/rF4pP3cbEmxaLtU6yMm8/Dk+2nuUXO8EvskZT21caD\nMe4MhJnR9yqG2y6c4Gpit1K1cBRIalFmBr+u6BndOq/5QZCnVJp/erWhYWKl\n86lTlt63yrdVfLeP/3po47EP/aQGfjl6jihKSqz+ZtmHulbGjoP0d/wRug0L\ngTRfnCMIBi9mLe5bYGe0hvaFCL26k2N2aRToknDpiR5ixOPdZTKrUzOGtaHh\nxw+slmHSkgo93GJlZQs4FBdDEdYPl5grGZMNsleg+fGsNikThRH7z/JNELoA\n3ravcgrBqHb+3sC6bcjRLXKBCBtBnX3MtdrLdWQI2ENWKlZQ/jwQuQXADYZ7\nxccvuAhw6LjsBXy6sP274UMpdVleKjlBt7ayhMQvHxtVSS4nQ0l4D99MfUal\nmhu677+Ff9YxNB1dDbygqFDF/cK676DUqgU43WSnBWqF/yJjnwRds5IJyfby\n/NUxKAG5jDA+C0+EDgw8KSJxp6Vjzvx4/ZCAbAkQtsbdQANiNSxq0l9lm/dW\n1rJ/\r\n=HI85\r\n-----END PGP SIGNATURE-----\r\n"},"types":"types/index.d.ts","funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"09ba5d0415abbfc85a0d01c194ad2ec095af80af","scripts":{"test":"yarn format && yarn test-coverage && yarn test-types","test-api":"node test","test-types":"dtslint types","test-coverage":"nyc --reporter lcov tape test/index.js"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"https://github.com/mdx-js/mdx/tree/master/packages/remark-mdx","type":"git"},"_npmVersion":"lerna/3.22.1/node@v14.16.0+x64 (linux)","description":"remark plugin to add support for mdx","directories":{},"_nodeVersion":"14.16.0","dependencies":{"mdast-util-mdx":"^0.1.1","micromark-extension-mdx":"^0.2.0","micromark-extension-mdxjs":"^0.3.0"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"nyc":"^15.1.0","tape":"^5.0.1","unified":"^9.0.0","to-vfile":"^6.1.0","remark-parse":"^9.0.0","unist-builder":"^2.0.3","remark-stringify":"^9.0.1","unist-util-visit":"^2.0.0","unist-util-remove-position":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_2.0.0-ci.4_1617815892564_0.778796016753746","host":"s3://npm-registry-packages"}},"2.0.0-ci.18":{"name":"remark-mdx","version":"2.0.0-ci.18","keywords":["unified","remark","remark-plugin","plugin","mdast","markdown","jsx","javascript","xml","mdx"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@2.0.0-ci.18","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"nyc":{"lines":100,"branches":100,"functions":100,"check-coverage":true},"dist":{"shasum":"97e25f1db50209ac342a53da59eb7986b86c0894","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-2.0.0-ci.18.tgz","fileCount":5,"integrity":"sha512-FqA+oSD5ADzXtwgNorxHtvXyYDZlnNZilSsNxJ5hQCEF4gvOFdpFixEAPW50yrWhY6m4Kgm1h9BFqcyZKWS6BQ==","signatures":[{"sig":"MEUCIQCyhGuVfQN/x9gTNWEs1hAWU00ADB6c8YlPNUhjvtPb6AIgOwFOOiuVpbykDhl9EdpvCETjSt7sSsh4k7DvVdrGZC8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8193,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhKoLsCRA9TVsSAnZWagAAZmYP/33Mb3G74FezygZFoieW\nZT8jOLF7BUh7WQ8UjqTSPyBEl3SntPyMZF2o2LwsWcn4cKCcxRVq3iGvej8c\nBxdi1ALj9m1CuKrIwovYTsve/oFixg6yew7e22J2qR/z47qrXUhW8tqJZGY5\ncIE1Lh6NqHCgO9bG0SXgKRn46dEasgVK2c9D3dm7//o/s233ZA2x6Ihv/oCx\nf9yB7RyBjxwX7ykrpY87mNXE0C0SEHI56Gw6FXNnV1FTBGn0KOAh2/EoCdD4\nh6fLc2fymVJPZ64H+vzqVM9ZJZ7XS+lgp2gZTUIEkh65kefIp7XekjNBF2os\nwdIrNpUmScpPp2JyAN/oW99UmfrC/BZxnKUR8UjRmudhzLm4fNhGS93iG3bT\nwD706wZ97nEJdOqDiBeEpDDI3t2lU05PF3foIP/zRiphbQhC0FRD5dXy7s7U\nYKBJM04Jf6nOtfGX1sc7OE/pGCzFgxFBZRWah3WussOTz/Ov4Dmj4JeW+/mw\nuTWryEaNDYOtEPKXJl9UML4SR1Lcx8vkgu+ga1AcTA+YHI+IOILfinY6oEoR\nbU9IDOeY8yD16tuRHjvYyzl372kSNhQmF6ERtRD1k2soR528bm30UNOk1iS6\nJFfh24YT7EGGoZxAElHNZRZDJz8jqqCBMA/cCHtx+rtwN4qekbFqstsKPL2W\ncXBV\r\n=/pCA\r\n-----END PGP SIGNATURE-----\r\n"},"types":"types/index.d.ts","funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"3a965dbb51d4baa9fa4a5f9916886cfd4c4309e6","scripts":{"test":"yarn format && yarn test-coverage && yarn test-types","test-api":"node test","test-types":"dtslint types","test-coverage":"nyc --reporter lcov tape test/index.js"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"https://github.com/mdx-js/mdx/tree/master/packages/remark-mdx","type":"git"},"_npmVersion":"lerna/3.22.1/node@v14.17.5+x64 (linux)","description":"remark plugin to add support for mdx","directories":{},"_nodeVersion":"14.17.5","dependencies":{"mdast-util-mdx":"^0.1.1","micromark-extension-mdx":"^0.2.0","micromark-extension-mdxjs":"^0.3.0"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"nyc":"^15.1.0","tape":"^5.0.1","unified":"^9.0.0","to-vfile":"^6.1.0","remark-parse":"^9.0.0","unist-builder":"^2.0.3","remark-stringify":"^9.0.1","unist-util-visit":"^2.0.0","unist-util-remove-position":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_2.0.0-ci.18_1630175980421_0.0287994225534991","host":"s3://npm-registry-packages"}},"2.0.0-ci.35":{"name":"remark-mdx","version":"2.0.0-ci.35","keywords":["unified","remark","remark-plugin","plugin","mdast","markdown","jsx","javascript","xml","mdx"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@2.0.0-ci.35","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"nyc":{"lines":100,"branches":100,"functions":100,"check-coverage":true},"dist":{"shasum":"fd7b8703d71261213b6b05b7148bc6c045b8729d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-2.0.0-ci.35.tgz","fileCount":5,"integrity":"sha512-Tr6rt/aEYFW+DWrkIyGTzlDMxlTb05vGFYPoBRqxKygSveP+ckjqSLBZIrzLwHC4RzXsMVyG3ckkdAi2QrdhDA==","signatures":[{"sig":"MEYCIQC/VWxXgOCpTvtqBlmuWudVEsm3Znm0rGoboXQPSTW9eQIhALWDc45AcY3ulIlDSjY+8Cxji+vspHupx1sE0duH9LLE","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8256,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhN3xaCRA9TVsSAnZWagAAiAAP/2yc9XVrG0yzd0Nzs6MB\n8L/dXQLWEyC5nM9JDjMcxV6G+6eeq1UvB6hubZs1woR5kZ82wNJYrn8i1qRz\nGj9n58WuhvKEPSVbi0CWHQ+tjCjwWRzaX10s5GSlb3Tej5YGdVvmZuiL5ZEn\n/oT0lbCPr7Yx7fel9NajWHAaKRppYSR8H+HKQukFDT7Cis78vY8mkPPKRRHY\nYXU+thOf2RUc7rOsOgwQSMb9Jjwmym+1ALWFgNa970R55XbzTxqzmqPMiVLF\nCssCoDBBD5pnSXmdPOM3NkvOMlHlKeS7w/q8rBdghUI+0w2cOykzYeeZMmwS\nDpFuW11u36OzgZrzZAFpqzeyJKHGJW6UA/wes5eq1nxDtg06y1zIq5b+oaPo\nGbSMHmvqw4HnHfDZNhatpj8Uo8rwtyQ9sshtX4x2qNljOX72amdBoEpk/Rl0\n3HFDPjQxYT0V9Te0D057Ky6OIhWoEvga9dAkBiBXDiLVqiGryKpcjnS38iqp\nUcRPLHDPcXbisHAOCYeFlCUp8JSUm1Z9MjjZid5tW9YjJBelMnD6M0Do1Yi/\nTvPL70yuuDG+PeFsRQ8XU4T8P6dIhHu7bMN1K/rCQ4SOylMeWgiXAeEdV3k8\nSpnBnGrswR1cpo0MXh2hoy6CyaL6YeeW1u/MxISMFBiL2iYy50SnnRiJZ7Fm\nuSN6\r\n=Iswi\r\n-----END PGP SIGNATURE-----\r\n"},"types":"types/index.d.ts","funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"a3ccc0d986cab6022357de32edc15d0ccc57fc4c","scripts":{"test":"yarn format && yarn test-coverage && yarn test-types","test-api":"uvu test \"\\.js$\"","test-types":"dtslint types","test-coverage":"c8 --check-coverage --branches 100 --functions 100 --lines 100 --statements 100 --reporter lcov npm run test-api"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"https://github.com/mdx-js/mdx/tree/master/packages/remark-mdx","type":"git"},"_npmVersion":"lerna/3.22.1/node@v14.17.6+x64 (linux)","description":"remark plugin to add support for mdx","directories":{},"_nodeVersion":"14.17.6","dependencies":{"mdast-util-mdx":"^0.1.1","micromark-extension-mdx":"^0.2.0","micromark-extension-mdxjs":"^0.3.0"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"nyc":"^15.1.0","unified":"^9.0.0","to-vfile":"^6.1.0","remark-parse":"^9.0.0","unist-builder":"^2.0.3","remark-stringify":"^9.0.1","unist-util-visit":"^2.0.0","unist-util-remove-position":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_2.0.0-ci.35_1631026266236_0.02713756506267262","host":"s3://npm-registry-packages"}},"2.0.0-ci.39":{"name":"remark-mdx","version":"2.0.0-ci.39","keywords":["unified","remark","remark-plugin","plugin","mdast","markdown","jsx","javascript","xml","mdx"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@2.0.0-ci.39","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"nyc":{"lines":100,"branches":100,"functions":100,"check-coverage":true},"dist":{"shasum":"ebbc9b1a34adc48de245d607c1ff611484f9aee6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-2.0.0-ci.39.tgz","fileCount":5,"integrity":"sha512-Z7BTnqyDvFFwVJnzz+R9s+A7f1PEwPWl738Ch8Fnue2UF30nwqdwoSt+pVU6/ezMyiSmmb9t98HsD577sbmDKA==","signatures":[{"sig":"MEQCIHifjY3q9KCtqv1Sh62R/4AhU04yso13p+rMPPQvMii3AiAMM4jhvXZYNuXKsykQANXXY/xg4ZYh1chogPyjo2zlgg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8256,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhOGOdCRA9TVsSAnZWagAA6TAQAJ2c+T4zuNHE5trfkVNf\nhLnyvGXtrPmwwefhChkM/MYBTbRc/iLsg1qoguAQcz8G8Liq5Kp2vr28Shhc\nofQUYfo5uYIV/sjeL2naN9Ukrc7ENp9tlRubhREHU7fempoXyU6qQ+alicNI\n61lasCr8JI+feY0OYMBC9uNTZ7uq1250ldnBxdccmnP+CKaWg8xPwl5m0qMd\nRV2zTMKjSvW9sl7lhvPOF/739UyCnT2PwbuWV+9Ysw5TPHyqu1JjLFytHaec\n2k7HxbF1MVrSAF32FsmrE8Kka5O5JNYHooHODAIWSceVax4zz33pyVPaSPdk\n0JEvkilwCuouW5MtOVcLLhh11aYKpmgBhknHr5zFjMWIL+6Z9SrfVkOfDLe5\nZ1i+k828buscTu3O7oRKMbxvLeZMJsHEIvOndxT86gFu6jkOvAjwmlFo3P0N\nzbGeiA0x/WgEkv/T+p3pQ/e6cEZr2NbnPXo5mDu62pg8Nvidn9nB5Xpgp8m4\nhSnWKomIJdV9XZhVh0I8X5ixZg0V+QIayK+MrCkI9PlR5x+kl3t7IeIROkGJ\nANTrrZHLW3U7Mmcn5sbG9YpwXrbOG3kdHjvYkCSZ9VXlSqLEiElwsNGn3XES\nR6aEokBrc5+17HdoFY48+iCSpNET+qf/M/XEWFwaT1aJCHyv5XvRPOXIAO9+\nebcA\r\n=S267\r\n-----END PGP SIGNATURE-----\r\n"},"types":"types/index.d.ts","funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"3dc4af961b107c68c498ac8acaf730a0efd3caf8","scripts":{"test":"yarn format && yarn test-coverage && yarn test-types","test-api":"uvu test \"\\.js$\"","test-types":"dtslint types","test-coverage":"c8 --check-coverage --branches 100 --functions 100 --lines 100 --statements 100 --reporter lcov npm run test-api"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"https://github.com/mdx-js/mdx/tree/master/packages/remark-mdx","type":"git"},"_npmVersion":"lerna/3.22.1/node@v12.9.0+x64 (linux)","description":"remark plugin to add support for mdx","directories":{},"_nodeVersion":"12.9.0","dependencies":{"mdast-util-mdx":"^0.1.0","micromark-extension-mdx":"^0.2.0","micromark-extension-mdxjs":"^0.3.0"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"nyc":"^15.0.0","unified":"^9.0.0","to-vfile":"^6.0.0","remark-parse":"^9.0.0","unist-builder":"^2.0.0","remark-stringify":"^9.0.0","unist-util-visit":"^2.0.0","unist-util-remove-position":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_2.0.0-ci.39_1631085469244_0.6852840943608416","host":"s3://npm-registry-packages"}},"2.0.0-ci.40":{"name":"remark-mdx","version":"2.0.0-ci.40","keywords":["unified","remark","remark-plugin","plugin","mdast","markdown","jsx","javascript","xml","mdx"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@2.0.0-ci.40","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"homepage":"https://github.com/mdx-js/mdx/tree/master#readme","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"143b5802e63208a0ea2b1d8425443bd4791887a9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-2.0.0-ci.40.tgz","fileCount":5,"integrity":"sha512-6sYNpTvFT2lhIS6t5/D41JnJQHFAmhMISMNhmq6nBk4f7kpRm6Tzy5g27SzddxNs6L6vi7SnYHJkgvxXzHMqgg==","signatures":[{"sig":"MEYCIQD6f3cS3oyHrpZP8gPIC6eOW85P8jnGxb6Oa+u7kZLUjwIhALTp/GBGL+fHEa1WkZZ5w4+rpy5FcmE30ew0iBVLo1c3","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8130,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhOJQnCRA9TVsSAnZWagAAQAAQAKAL5MbYYVyNh3A4GsK8\nPXlwP6zQgA9DN/KcOla9VGmocx5O3S/M2ppyNdkS4IpIqIuo189dDRw4W70w\neXTlFFs1eRQvAKi0JjLMNzNC7BqTzIniI6mneqOtaCNJfXK0iCv/FC66n5JV\n1q8q2jjg4Bd6Q7/WX+J1efBAPo2+EaXmaLIckGPkafY7M09fIsvHLMeJdea4\nDs2KZmK15dUJRp6Jfd6ZiEdT57DOiNGpF66WMcUdIQMvuJ2awJViYaCY5N3h\ndBWa5XiNQNtS1tiv2VTc60f0oAzLBjVF4CMqutK/Nq8HFizFmmsEqFzBWYe5\ncdtJZwAJ3AgyvjLRMyPsDOQEL6AbeeSlsnis6526zY2L9CVDd6pr1nt6QZEI\nGWKjyY3w80uZAbXEwUOR84bfmrYUhYYgO5FhN/LnYRq/MO4Xn74vnTeyNrIr\n2I8OVgWIkHEZGy8I0NjXSqIo2ZrYMpoIyYxuQNkHRwV15kvmH3h93j80coiA\nwQ6co5aydX+lwYejST+oemULj3vgyE/WQx/rLK+9Ct12j/7C+J47w70WCdy/\ntfRCuqdFh/4QFyB67oFvQf6TpEMhyZfKdXAOD0v54Oaikog4sT5zp8Ml/6ni\njfdQrUlsrTeA7Ov9xVPTh7M4xGCj2ceV6M/LNwdzpcWY1tZJEGTYtamdHjrW\njfTH\r\n=bAx3\r\n-----END PGP SIGNATURE-----\r\n"},"types":"types/index.d.ts","funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"f6ca5bf6ac6553767eea1981f07d16abef064ce0","scripts":{"test":"yarn format && yarn test-coverage && yarn test-types","test-api":"uvu test \"\\.js$\"","test-types":"dtslint types","test-coverage":"c8 --check-coverage --branches 100 --functions 100 --lines 100 --statements 100 --reporter lcov npm run test-api"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git#master","type":"git"},"_npmVersion":"lerna/4.0.0/node@v12.9.0+x64 (linux)","description":"remark plugin to add support for mdx","directories":{},"_nodeVersion":"12.9.0","dependencies":{"mdast-util-mdx":"^0.1.0","micromark-extension-mdx":"^0.2.0","micromark-extension-mdxjs":"^0.3.0"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"unified":"^9.0.0","to-vfile":"^6.0.0","remark-parse":"^9.0.0","unist-builder":"^2.0.0","remark-stringify":"^9.0.0","unist-util-visit":"^2.0.0","unist-util-remove-position":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_2.0.0-ci.40_1631097895087_0.41649538802770425","host":"s3://npm-registry-packages"}},"2.0.0-ci.42":{"name":"remark-mdx","version":"2.0.0-ci.42","keywords":["unified","remark","remark-plugin","plugin","mdast","markdown","jsx","javascript","xml","mdx"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@2.0.0-ci.42","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"homepage":"https://github.com/mdx-js/mdx/tree/master#readme","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"510c16c0b189aee4d78fe30ad2760c9655626942","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-2.0.0-ci.42.tgz","fileCount":5,"integrity":"sha512-7DPbiKSiMGjws/dOt1CTGGibkqW4xRbpJw+Kcy7VyrUFiVIVu0QBfKsD1Q4zzjJ267gl6y4MaxoZjUvxQzweUQ==","signatures":[{"sig":"MEUCIQDco9jmgXcgO6dr/wu6/AsMLfKMu7CVzQ7WcjtWeNCbGQIgCBi/SE42WpQ6jlE5cHTSjJLPAwmnopzgtC2/OzeZSyE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8130,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhPlSICRA9TVsSAnZWagAA+6gP/RYJ6GN+UwBjKpMhQRJ6\npeOv6PtanArGN8sEdk04FkpD9+Ar1ujDVj2U0uI4Nup+XRwOtX/K0XEdx5ag\nCaezgQAdlougKUQ706GHB7xCzDXwlFXtXe1TXT1ssFhAzosjnU7r+8yIu20L\nN9dERJT17h9baXmpNfjx+nBiC4DKpu2AIVJv8y6PrLffV5vikcstlcWhNKTw\nUWwVznstJ1/USHdbT4jgOc7M6VLHZr4s6CDD44hhQDG4b0sAFdnnQgWebtuB\nUfIU2rO+fpfGTJrlAwPfV5K+n2TF83FILubU1D/GAKFMz9jzndbWeR2LpnIU\nwuxzBS3Tq455Pu9nXPFmrojFXDfXh7dPBjOKk7IRzng1BSRQeyP+K8bfi7ip\nFnm+eu16eU4xAR5YueNIKZzA+5Kimpq+6ZTYwiEWUM035Sa4uNne+RAAxnqV\nFMOW1STqP1Br5MOo/Y/0yh2jo50gVLGbUeCmA6xpzTNQwRAKtO4QAZY980Uk\nYfJBXL8618ydao3F87zi0XhHzBjXSo3ooSna72+jyct/wUtAB7u9vcRpgvF5\nWAB9gRBIkRpRboiqI83oYPAzKDtoFCt4x/QmAypXgRg1ddqALT3v//IdEHmf\nfd3Q0v4Y5JhdtTxaWAidfv9wpcG3EcbybefR5ih/lmohQlBjfawo0GUJcr5F\nJnqG\r\n=EHm6\r\n-----END PGP SIGNATURE-----\r\n"},"types":"types/index.d.ts","funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"6a27dbd6a98962a702c0b6b2894f7b58eefb0de3","scripts":{"test":"yarn format && yarn test-coverage && yarn test-types","test-api":"uvu test \"\\.js$\"","test-types":"dtslint types","test-coverage":"c8 --check-coverage --branches 100 --functions 100 --lines 100 --statements 100 --reporter lcov npm run test-api"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git#master","type":"git"},"_npmVersion":"lerna/4.0.0/node@v12.9.0+x64 (linux)","description":"remark plugin to add support for mdx","directories":{},"_nodeVersion":"12.9.0","dependencies":{"mdast-util-mdx":"^0.1.0","micromark-extension-mdx":"^0.2.0","micromark-extension-mdxjs":"^0.3.0"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"unified":"^9.0.0","to-vfile":"^6.0.0","remark-parse":"^9.0.0","unist-builder":"^2.0.0","remark-stringify":"^9.0.0","unist-util-visit":"^2.0.0","unist-util-remove-position":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_2.0.0-ci.42_1631474824061_0.2963411957235902","host":"s3://npm-registry-packages"}},"2.0.0-ci.43":{"name":"remark-mdx","version":"2.0.0-ci.43","keywords":["unified","remark","remark-plugin","plugin","mdast","markdown","jsx","javascript","xml","mdx"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@2.0.0-ci.43","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"homepage":"https://github.com/mdx-js/mdx/tree/master#readme","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"3360de55e3cf9d6ea5cdf0ae40ce3406686de1e3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-2.0.0-ci.43.tgz","fileCount":5,"integrity":"sha512-mYQgiBmXg82gWbYa/Ru9zvG2JkPVisgOkE2Hp9X9qg4TvlBEnGHYtCx4MvVgHfdDza/qCbfBlWEKX8i5itgfWA==","signatures":[{"sig":"MEUCIHtZYHCmLYpXg13+/h1xO2C6vnYUlQ4+482jdk+41ttxAiEAvqYh5ilsMeEqSiXiwcIIB6AHzv34ZQ3XIEkfasDBLpQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8144,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhPlXMCRA9TVsSAnZWagAAgoAP/jNGUVRhVp+aokUUv/A3\npgSUhkdPodqKYGAlQ3zPYlaA5VLw6oDbGQ60fHY7KfJB8LdScnevwgYwJTvL\n6UeURkmmjJ/wz8uYNZ+xnfXJZZOl9zCYEHk9llt4sKn6xHuFvDvIxsMgV6aD\nkfSvgAPZMnOysnOZdOUi40VfSGAgEH48v2aSuXSXAoftfe5ao1UG0clSWB+u\neF3KohRvtti5IwmFPg/OTr/Ydcvrh7/WLPGjNDqggqioeu+crFGAbQ+R40Ge\n6HYHn4097Hd6FAq9sqoN0xiMCu+Yjty9t8UYbgjKuEFjkp6WixXnrcJmbvZw\nie7EeTWn8yQ/8D7/WejXLqMJimhLcA0hKB5yYIRHIPDaeuAGabQ5xSt67d73\n9t830TOrLU2D1Cek7JAYNt2YncXych8eip9yfjdFIgOvaGl96QBLwe+Bik0Q\nB7LgDMPnFqIqVQwWcg1Bc4i7FLxp0WI79Kfts2O6mBoRrUGKFXaetcmpHbFw\nQ1sd9Ge2eehI4H7vrfE8x45+Aw7Wb8Hl0eVkRf8oi8RlHYGGzDAoTzjOqIIu\n75DEleEwT/RJKJxx+QVxXIsloO+sLRg8ta5t+HDgcqNkhYopAHdaH/eXSRCY\nkSJiLrG0bBDTp/8/HLoYx5Q6gxsfLzD/pqSPOKpKCJF1boowzgkczl8vOqjc\nzwEm\r\n=JUwZ\r\n-----END PGP SIGNATURE-----\r\n"},"types":"types/index.d.ts","funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"e3d94388cf428fdaefeca3fe26abe313de1a87c0","scripts":{"test":"yarn format && yarn test-coverage && yarn test-types","test-api":"uvu test \"\\.js$\"","test-types":"dtslint types","test-coverage":"c8 --check-coverage --branches 100 --functions 100 --lines 100 --statements 100 --reporter lcov npm run test-api"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git#master","type":"git"},"_npmVersion":"lerna/4.0.0/node@v12.9.0+x64 (linux)","description":"remark plugin to add support for mdx","directories":{},"_nodeVersion":"12.9.0","dependencies":{"mdast-util-mdx":"^0.1.0","micromark-extension-mdx":"^0.2.0","micromark-extension-mdxjs":"^0.3.0"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"unified":"^9.0.0","to-vfile":"^6.0.0","remark-parse":"^9.0.0","unist-builder":"^2.0.0","remark-stringify":"^9.0.0","unist-util-visit":"^2.0.0","unist-util-remove-position":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_2.0.0-ci.43_1631475148524_0.0972511419925941","host":"s3://npm-registry-packages"}},"2.0.0-ci.50":{"name":"remark-mdx","version":"2.0.0-ci.50","keywords":["unified","remark","remark-plugin","plugin","mdast","markdown","jsx","javascript","xml","mdx"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@2.0.0-ci.50","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"homepage":"https://github.com/mdx-js/mdx#readme","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"67709eb8e45200a9482f54ac4a8812bd9248b4b0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-2.0.0-ci.50.tgz","fileCount":5,"integrity":"sha512-kuuaRw6eEk+Z4x6pHc193mOufqAv0rCZvX91/RuQKVDCVA7LhAYKL6vCVcb0WYN2awLuwpLnyBFg5vxCXrFSVA==","signatures":[{"sig":"MEYCIQCB+b8i2E32IOemuw0L5vG5S3aTksG0pPT4RZnA4JhNHgIhAOSv22TtFY3NokFEDzSHixjMuY9iY6N0T7xPPvbINS3J","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8188,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhP15FCRA9TVsSAnZWagAAJZ8P/Rumjz9ggONowDEPMFLI\nYq0n9/+G9io9RAcDV7JEz49nsSuZhuR6aB49U10zOSrPtacNXOIs0babwuJ6\nS80wKMFaCwvSDrRRH2L779bOwguXS9QtU68DKIXtn/m7O1LQ8vexS9Ng7tvh\n3BBeedvX0aLQG79qjppnGQ58kPpUwyM0PRCn4tp8iAk8mXI1AsbJivA4fHsP\n/UJRqLEjlRdO4dUNVFG2jRvBYInNn/kwbnM6oMa6NscOZDbQ0MCsuBMThIC7\nb8i/l0LQTcMdr7FbIVN6IIITkOa2PauaxEKnp8SUMA+PCqZYyubcqf04rrhm\n/8SNbu12aGN+dPmosY83vabBd3YrO4Gyayh/6IiTUN/+VXzbhAKVp5MkJgVb\nuhNgCsM04lXF1Nrg2sVwAt8GJBFOFkNHCTBrf7ePyoEe9J9GwwFtaJ2T/kYf\nXtfpSfYEmqEgUGZqfmiIL3xGq5QIklBA5tNl9psEFLB9yKNHxo8LoMEMx0Qb\n/KG700phS6zSgcoDBUqPo1EA+uSQij9IUjNmouZxaWf47NVyvLw8rI0GKob8\nt9x6wK5zKpfwlTZ2VyOpNXBrDghtSJjW5fhyERN7xq3O2c9MkITJTaC9j3bb\nciN8QsLePzixjzpnxOuTOrwP/BUuApmQScS1Y2cJCbB8QvXjp1MyRA30cbwP\nXaQC\r\n=6UEi\r\n-----END PGP SIGNATURE-----\r\n"},"types":"types/index.d.ts","funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"356608478afdf58e76f69d2b9bc1731fa98ac2cd","scripts":{"test":"yarn format && yarn test-coverage && yarn test-types","test-api":"uvu test \"\\.js$\"","test-types":"dtslint types","test-coverage":"c8 --check-coverage --branches 100 --functions 100 --lines 100 --statements 100 --reporter lcov npm run test-api"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git","directory":"packages/remark-mdx"},"_npmVersion":"lerna/4.0.0/node@v12.9.0+x64 (linux)","description":"remark plugin to add support for mdx","directories":{},"_nodeVersion":"12.9.0","dependencies":{"mdast-util-mdx":"^0.1.0","micromark-extension-mdx":"^0.2.0","micromark-extension-mdxjs":"^0.3.0"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"unified":"^9.0.0","to-vfile":"^6.0.0","remark-parse":"^9.0.0","unist-builder":"^2.0.0","remark-stringify":"^9.0.0","unist-util-visit":"^2.0.0","unist-util-remove-position":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_2.0.0-ci.50_1631542853112_0.5554630137186374","host":"s3://npm-registry-packages"}},"2.0.0-rc.1":{"name":"remark-mdx","version":"2.0.0-rc.1","keywords":["unified","remark","remark-plugin","plugin","mdast","markdown","jsx","javascript","xml","mdx"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@2.0.0-rc.1","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"xo":false,"dist":{"shasum":"613c9757fba3b82a409f4f93870a5a9f1ca0eb5d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-2.0.0-rc.1.tgz","fileCount":5,"integrity":"sha512-y3cj3wDwpXTE1boMco/nsquHj2noK0mtnXwBC8FJ/CtU06y66jOBWX1kLknluBl06pYbxtx1ypAOHKvjgT4vsA==","signatures":[{"sig":"MEUCIQCpxMloKXV5/sqWCFw3UlustKtLP/WhnBYgaVYkIt6ijAIgdPlD0KMebSO1NQaALRClOwQ8gvAWatdHU+cSG70l7cU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":11308},"main":"index.js","type":"module","types":"index.d.ts","funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"bf7deab69996449cb99c2217dff75e65855eb2c1","scripts":{"test":"npm run build && npm run test-coverage","build":"rimraf \"test/**/*.d.ts\" \"*.d.ts\" && tsc && type-coverage","prepack":"npm run build","test-api":"uvu test \"\\.jsx?$\"","test-coverage":"c8 --check-coverage --branches 100 --functions 100 --lines 100 --statements 100 --reporter lcov npm run test-api"},"_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git","directory":"packages/remark-mdx"},"_npmVersion":"7.23.0","description":"remark plugin to support MDX syntax","directories":{},"sideEffects":false,"_nodeVersion":"16.9.0","dependencies":{"mdast-util-mdx":"^1.0.0","micromark-extension-mdxjs":"^1.0.0"},"typeCoverage":{"detail":true,"strict":true,"atLeast":100,"ignoreCatch":true},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"unified":"^10.0.0","remark-parse":"^10.0.0","unist-builder":"^3.0.0","remark-stringify":"^10.0.0","unist-util-visit":"^4.0.0","unist-util-remove-position":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_2.0.0-rc.1_1634663944181_0.7961172931817082","host":"s3://npm-registry-packages"}},"2.0.0-rc.2":{"name":"remark-mdx","version":"2.0.0-rc.2","keywords":["unified","remark","remark-plugin","plugin","mdast","markdown","jsx","javascript","xml","mdx"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@2.0.0-rc.2","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"xo":false,"dist":{"shasum":"07676a08f34cd292505414e5440927e1b7d26289","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-2.0.0-rc.2.tgz","fileCount":5,"integrity":"sha512-TMgFSEVx42/YzJWjDY+GKw7CGSbp3XKqBraXPxFS27r8iD9U6zuOZKXH4MoLl9JqiTOmQi0M1zJwT2YhPs32ug==","signatures":[{"sig":"MEQCIFTUoryk7AqNA4XCdPTAqZ31C2nq6YTxEfEalToVMnMjAiA86MV5+8IMcTj/U8ee97MuRC8PAJCRFi0t8rJRhBZtqw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":11326,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhksg+CRA9TVsSAnZWagAAdq8P/RPbE0qlBaiyDBvn4XOr\nRaMfb2IiDwDATGVeAUNc09a4ku15n5ZDYV3hUxfwBBgsSdSRJebRL0PF2KRs\n9GrU7uCbHPn/X5iIKQMSiLMyqzQpdxtTcGnH07JJQQXtnYnU2+GcHoXelV2v\nS8klz1jx40HC6VNbg/zzeC0aTrMVRe2NjY/eNrNHdTVtus7nxaCXDHZYzn0c\n3U+hf7jb2CrdmYgE25XZBOtMftHxdb5elaj+iPEVhDAiBY7HGirvxCYE81hJ\n4nvUTdmD3Vl4h7a06sGDr+cqOA+ci/4CNaSNfhnCXxJQ6yhXnEbeMc5CpQHm\n5PUdRpU0RLBwcD25n0acp86hWNU4FWOq1/I+2LZ5WO3WefS8dRj/GLBIV+Lz\nq3WgOQeyKFEm3dVLK3Zp1NT/MZyIQKEOgZwdKMPjesLrXHA3g4gQOFioG6T1\nNmYDCQvjNHaRy5xVGqOArnqsga8HJXtYqTmwe+yU4pyArJf1Qc1gjlfdYb6Z\nkeaNMHiakvgOvtdguIBVTleGXYPXy/xRNCQgAowIe4EIdfr+IGmRIV0k54uV\nlxAihAeeFySBUfvrJRkRiW50uo7A3dbzClhaXJ1akhg1WCbPOTUZW6J2SXFc\n9VNCJ97uwII1OxP3cXV78dYEWlgNzD1LrLFxLL/wgDLZUbQBU4Nnuns3lgiw\n7VDF\r\n=seWq\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":"bf7deab69996449cb99c2217dff75e65855eb2c1","scripts":{"test":"npm run build && npm run test-coverage","build":"rimraf \"test/**/*.d.ts\" \"*.d.ts\" && tsc && type-coverage","prepack":"npm run build","test-api":"uvu test \"\\.jsx?$\"","test-coverage":"c8 --check-coverage --branches 100 --functions 100 --lines 100 --statements 100 --reporter lcov npm run test-api"},"_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git","directory":"packages/remark-mdx"},"_npmVersion":"7.23.0","description":"remark plugin to support MDX syntax","directories":{},"sideEffects":false,"_nodeVersion":"16.9.0","dependencies":{"mdast-util-mdx":"^1.0.0","micromark-extension-mdxjs":"^1.0.0"},"typeCoverage":{"detail":true,"strict":true,"atLeast":100,"ignoreCatch":true},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"unified":"^10.0.0","remark-parse":"^10.0.0","unist-builder":"^3.0.0","remark-stringify":"^10.0.0","unist-util-visit":"^4.0.0","unist-util-remove-position":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_2.0.0-rc.2_1637009470156_0.9540416345374989","host":"s3://npm-registry-packages"}},"2.0.0":{"name":"remark-mdx","version":"2.0.0","keywords":["unified","remark","remark-plugin","plugin","mdast","markdown","jsx","javascript","xml","mdx"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@2.0.0","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"xo":false,"dist":{"shasum":"bd921780c19ce3e51941e54b1e6388440ed499b3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-2.0.0.tgz","fileCount":5,"integrity":"sha512-TDnjSv77Oynf+K1deGWZPKSwh3/9hykVAxVm9enAw6BmicCGklREET8s19KYnjGsNPms0pNDJLmp+bnHDVItAQ==","signatures":[{"sig":"MEUCIHzHx1N+o86J+iMBNYtawOEhBdkIlB4fj1OoMypVQtB5AiEArMbLD0IFsj0ZLbJPnmh+CXNh+SuwJAFLwXOfRy7tK5c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":11499,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh+Vt1CRA9TVsSAnZWagAAQq8QAJiloG5xKnM76/8EHkgh\nWv72PkOdIPzbEsyrSaR+Y9vaYvPr66G2hDU2ZDNXOYia35ALbsgIj6gUmxH1\njxpbXzYIAwXmxJ7aS1UwPRNz58CQYfzFQEU4LiFcqIEyMD1606Acev1h+ErY\nu6xKqkeFZLcSQURAGN7GZPaz6B85SuzVbWVNfq16wG2eULwPt7ajr5zZcEpu\nLUDBSLl8/2S2D5lSb7uUpmdrWslnNJ5d8SmIfzV7TPQKhqjIjHdzDwzpiBv9\nyiW8BjoqYH522pClneYd7O9NfN8nfkY1zeF7zIFyURLzHF4LROc+H45/KttP\nAfLffnu8qct34hWT3lBqXKMxCTQ9i+cSs0oagGFmmd/TaJNcgDlhrocQaRp6\nYDA1yPp7UnGDGxmF/V22+RDH7r9ZxOmwP+30zetMbl1nIKsckZHdi/YQ434L\n+3nxU8K9/pKdJN3MJkG7n9+Ev5FYKsoTKgS3JhjGsMk5Z8lel83E/4xPaC8j\nwOb7glv4S4v4E355wTGFZ1rixD+DdC7xF2pdHIpmuZv3IOPTantCqwzuaDHX\n01ogkJGXJpSXu1ymYxDY0jIFF/j4LJoHQPmSwjv4OP3KSgsVWsO9IxP31RfL\nZ5vLRmKXceTXoTGK0VcFU6yGRNRNQVqXcgLNBC/18k52DUTy06EwYY4TJZss\nUJvv\r\n=33uY\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":"bf7deab69996449cb99c2217dff75e65855eb2c1","scripts":{"test":"npm run build && npm run test-coverage","build":"rimraf \"test/**/*.d.ts\" \"*.d.ts\" && tsc && type-coverage","prepack":"npm run build","test-api":"uvu test \"\\.jsx?$\"","test-coverage":"c8 --check-coverage --100 --reporter lcov npm run test-api"},"_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git","directory":"packages/remark-mdx"},"_npmVersion":"8.3.1","description":"remark plugin to support MDX syntax","directories":{},"sideEffects":false,"_nodeVersion":"17.4.0","dependencies":{"mdast-util-mdx":"^2.0.0","micromark-extension-mdxjs":"^1.0.0"},"typeCoverage":{"detail":true,"strict":true,"atLeast":100,"ignoreCatch":true},"_hasShrinkwrap":false,"devDependencies":{"unified":"^10.0.0","remark-parse":"^10.0.0","unist-builder":"^3.0.0","remark-stringify":"^10.0.0","unist-util-visit":"^4.0.0","unist-util-remove-position":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_2.0.0_1643731829751_0.8916660958827953","host":"s3://npm-registry-packages"}},"2.1.0":{"name":"remark-mdx","version":"2.1.0","keywords":["unified","remark","remark-plugin","plugin","mdast","markdown","jsx","javascript","xml","mdx"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@2.1.0","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"xo":false,"dist":{"shasum":"ae29ccd4c974a39ca671cd533acf9c7560a8bba4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-2.1.0.tgz","fileCount":5,"integrity":"sha512-J6Yqw566SaEy6A9Neni1JJTaEjbjsM3OsKqL04TtCvZhevRtFi8CG8GIQPzvxIRKRCAOnWw1Vpk1AInB1OpNqA==","signatures":[{"sig":"MEQCIBRFa16GWvcVxewyMcK82WO0UHNmAxth0yRq+cl99GxxAiBwkc0aTR1lImgNw7LSToUZjneViXqlrFJiHnjwv8EpuQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":11499,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiMcAnACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrXwQ/9GWyYw0Tvc+7CWqVXURuSstbPZyv+2v+4lLpNOimz4ab0adAW\r\nnj6JP87Pt3F3T2YUO5FJFxMjMSY5Zi7tSX1Wv6MlirBt42YafhOaeXnc3OnQ\r\nqWIv9769d+AAJeiXR25uOHt61n5BDL4/8c8bN+LEryCZTkJSDKFJ+VmlHHY8\r\nisjgq630YE92kejOqqffDJRI+D5tb42oy96R5PuVbcflyFhRQ/Ey97CeM+tr\r\n1cZLwLactqPd/CijeSAXqa2IYmGWAQmguGij6plGt6E3P0VfEgh4NtGFtdVS\r\nhXhoEf6qHf5gYJ9MepD4EKDhN76S22GCOUN+RLcsdiUR1KkzEMYjpoMcWKlv\r\nycfzN5Nu8MHnVucwBbz8DqavCpXgnJb4JCSnbVODp7vfR3id2ncJYj9mTbBq\r\nDLGrGEvC2GE+9F13jjEY9Lwr8t9SNFoI9qhQVYMWTqFRYjgEX/o3C5JQXHd0\r\nVg9VhjD27odBJWxOJfoOfoFbfinJtR22Ifklq8OR6fG+SoE+2Q+wM7YcE2a9\r\nsfyssajOE5TnKVw1r8GE4zBM7cHM+KRotPPbJ9VLOlxmtP+h+PH50CLSD+25\r\nQNB6zvWVEBuJjrccKKXxB7Eyikj1IA1NZno0vI5xV/2kkcXWIujCS+Q1Nz9O\r\nXKJ4y+/ybEY7cI9+l5cXbG6k2pijTMkRxrA=\r\n=hlQs\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":"bf7deab69996449cb99c2217dff75e65855eb2c1","scripts":{"test":"npm run build && npm run test-coverage","build":"rimraf \"test/**/*.d.ts\" \"*.d.ts\" && tsc && type-coverage","prepack":"npm run build","test-api":"uvu test \"\\.jsx?$\"","test-coverage":"c8 --check-coverage --100 --reporter lcov npm run test-api"},"_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git","directory":"packages/remark-mdx"},"_npmVersion":"8.5.1","description":"remark plugin to support MDX syntax","directories":{},"sideEffects":false,"_nodeVersion":"17.4.0","dependencies":{"mdast-util-mdx":"^2.0.0","micromark-extension-mdxjs":"^1.0.0"},"typeCoverage":{"detail":true,"strict":true,"atLeast":100,"ignoreCatch":true},"_hasShrinkwrap":false,"devDependencies":{"unified":"^10.0.0","remark-parse":"^10.0.0","unist-builder":"^3.0.0","remark-stringify":"^10.0.0","unist-util-visit":"^4.0.0","unist-util-remove-position":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_2.1.0_1647427623278_0.8226341386374059","host":"s3://npm-registry-packages"}},"2.1.1":{"name":"remark-mdx","version":"2.1.1","keywords":["unified","remark","remark-plugin","plugin","mdast","markdown","jsx","javascript","xml","mdx"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@2.1.1","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"xo":false,"dist":{"shasum":"14021be9ecbc9ad0310f4240980221328aa7ed55","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-2.1.1.tgz","fileCount":5,"integrity":"sha512-0wXdEITnFyjLquN3VvACNLzbGzWM5ujzTvfgOkONBZgSFJ7ezLLDaTWqf6H9eUgVITEP8asp6LJ0W/X090dXBg==","signatures":[{"sig":"MEYCIQCgbsRPlP2LFvl/KzrbRtvy/13nBzm5mDrcdQCgqfFJ/QIhAKY/JtILA5Ghj3guoSZLwJAEbICuoa8zwHyyCUL4N/6Q","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":11499,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiRd7SACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqhNA/8C/iz1szafbI8XJV7p7Fkgf5gnUGzZ0kvZi+n/1lyHCs/glM8\r\n7mJL5IuK31qf/Qf6Pr0/ZtRdk5aq6GxQQxfwm091eUE9XE1bBql82zb8vZds\r\npWAife5YbDtb7HGiQEv1O0QIW3yDW/k+IVOWRbWOMHvg38IoZqExa4B7HmbD\r\nuDk1Y2vjFsBBG/qf0F3xNH6/cOwvKaHUV7KuZOPBWGXor51OdXHMOMswf0rT\r\nJWZIDfjpjeSD2tj6U/S8DLFOB+nWy3kZkBberiJiNznbvav/tyymzXgsKh0r\r\nBEzL8q81y1Cohb2t+v2QdhfP9lAcb5UZnTNn9TtnU6jcsw20BKu4xdofp7i5\r\nI8jX7DcSKEVyuYrO44JIS6+RNa4TIUY7ce0yq5etU2Puji+fl/rM6Owm3Pr3\r\nyaMNwCrzrFXkCcGfz5s7Xg/BZxbpj0ReqVQxCiSD+84JTxSZjs+8fUCaRePw\r\nX3nb+frf8bMjVxvskni4zNP6pUiXFLny891Wkf2QPXMu77e5Mj0gR0nXDQwu\r\nWhaeVki70xxIdwiKfbyHcw8G9K+KX3vUlxiAFXfWeWTONEMT2Ay5tao30irL\r\nluXIKQczVoEU5ZEFOlGiJK0bOBxFC0432HxL8IKJv3Veya3ZnEs+fz1onJYW\r\nh6iD2THHCVtMJufuuswsk3Pz8W1OiP8M2Wc=\r\n=LLg2\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":"bf7deab69996449cb99c2217dff75e65855eb2c1","scripts":{"test":"npm run build && npm run test-coverage","build":"rimraf \"test/**/*.d.ts\" \"*.d.ts\" && tsc && type-coverage","prepack":"npm run build","test-api":"uvu test \"\\.jsx?$\"","test-coverage":"c8 --check-coverage --100 --reporter lcov npm run test-api"},"_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git","directory":"packages/remark-mdx"},"_npmVersion":"8.5.5","description":"remark plugin to support MDX syntax","directories":{},"sideEffects":false,"_nodeVersion":"17.4.0","dependencies":{"mdast-util-mdx":"^2.0.0","micromark-extension-mdxjs":"^1.0.0"},"typeCoverage":{"detail":true,"strict":true,"atLeast":100,"ignoreCatch":true},"_hasShrinkwrap":false,"devDependencies":{"unified":"^10.0.0","remark-parse":"^10.0.0","unist-builder":"^3.0.0","remark-stringify":"^10.0.0","unist-util-visit":"^4.0.0","unist-util-remove-position":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_2.1.1_1648746194250_0.9225219298257339","host":"s3://npm-registry-packages"}},"2.1.2":{"name":"remark-mdx","version":"2.1.2","keywords":["unified","remark","remark-plugin","plugin","mdast","markdown","jsx","javascript","xml","mdx"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@2.1.2","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"xo":false,"dist":{"shasum":"eea2784fa5697e14f6e0686700077986b88b8078","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-2.1.2.tgz","fileCount":5,"integrity":"sha512-npQagPdczPAv0xN9F8GSi5hJfAe/z6nBjylyfOfjLOmz086ahWrIjlk4BulRfNhA+asutqWxyuT3DFVsxiTVHA==","signatures":[{"sig":"MEYCIQDzh/UnTciSJjV5nGcnySOMIUehU5vLVWVoUQX/bQ2J7gIhAN+ef1BGC6AvKW4xVjwTtkb8P8XyZpLvUQl60z5DizOm","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":11499,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJircXtACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr/IRAAlMLH7ULxWEc3QSuLkR/ok2rlj4mSpe4rn5p+IIJfDT/Y9ZL5\r\neEFMnhR2rh3N/HqaMvr28i4REVTasvixm0AQAkAH5g0Jdl6cuFeO9oQX8i+p\r\ntgLrfD1KEJDUvw+QBOutKqrCelLmSWIY+ktLnlRjp+ZLsD5RD35C3qFJLZbA\r\nMihA7ufT6DVdZKR7vDon3jaiwo1fu+GHIHEA0OMPN2+uEZEIgCnUckxS1KLp\r\nD0L021KYx+kJt+5lrGvC6rxDXM0QZmfWranEjRcQoNCTVOQwcYSKmMHo9Fvc\r\nqQ/APyyRaKT0sOfPtNYeNmkXAoUDFuFCsApjxKoiIWlMfkK1AIkF7LZjfG+S\r\nGffM+sEG5q00pf+MZTm1Gv8eKY95GEem2+NXl3EjVknAmqmj7x1NigCDBBK0\r\nxxM2+k3XWqFZTjgb1Ci8gHXqPQBVs6/cDQZqr3bGNvtmgPVuUAjoqysOmJbM\r\nEb+c6HtPeN3vfz5RVe3QuU2t7lB9VIdfLyz2ht7ebojL0WbHuNcZxsR5BoIS\r\n2pKmaBmhnmsDgwFL+dNQszw9K5/G2HrnygGBqSfiddswJyKlfrcaHdjXJ+/c\r\nvhdzQbmAn7PmaguvvYU013VHDXfApq4ZazLJst8pEme7QEaLx/vODcH6cOTk\r\nc9imsuYnfWTdMQ0PHE/BvbBm9AbMSpICivY=\r\n=KMjJ\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":"bf7deab69996449cb99c2217dff75e65855eb2c1","scripts":{"test":"npm run build && npm run test-coverage","build":"rimraf \"test/**/*.d.ts\" \"*.d.ts\" && tsc && type-coverage","prepack":"npm run build","test-api":"uvu test \"\\.jsx?$\"","test-coverage":"c8 --check-coverage --100 --reporter lcov npm run test-api"},"_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git","directory":"packages/remark-mdx"},"_npmVersion":"8.9.0","description":"remark plugin to support MDX syntax","directories":{},"sideEffects":false,"_nodeVersion":"18.2.0","dependencies":{"mdast-util-mdx":"^2.0.0","micromark-extension-mdxjs":"^1.0.0"},"typeCoverage":{"detail":true,"strict":true,"atLeast":100,"ignoreCatch":true},"_hasShrinkwrap":false,"devDependencies":{"unified":"^10.0.0","remark-parse":"^10.0.0","unist-builder":"^3.0.0","remark-stringify":"^10.0.0","unist-util-visit":"^4.0.0","unist-util-remove-position":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_2.1.2_1655555565515_0.35147406017391924","host":"s3://npm-registry-packages"}},"2.1.3":{"name":"remark-mdx","version":"2.1.3","keywords":["unified","remark","remark-plugin","plugin","mdast","markdown","jsx","javascript","xml","mdx"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@2.1.3","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"xo":false,"dist":{"shasum":"6273e8b94d27ade35407a63bc8cdd04592f7be9f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-2.1.3.tgz","fileCount":5,"integrity":"sha512-3SmtXOy9+jIaVctL8Cs3VAQInjRLGOwNXfrBB9KCT+EpJpKD3PQiy0x8hUNGyjQmdyOs40BqgPU7kYtH9uoR6w==","signatures":[{"sig":"MEQCIGoSXzOtNeXgrLtvTWO1Op7NiTz036ZZoPSrJ36gdGt0AiAmvTcTA3i7eFlR/9/WDXAUcd5lOKomoFd5ebgT5MjyPQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":11499,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi/TeNACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq2VA/+IyWJ899EK/js0HHptrQatMW25OVyC7/bIsX9O5CN3ec7y8SE\r\nAtsAdFNmXUCL7PHjhUHXyChXJcGR0M5oX1bSfG+y+HKylQcuBNVdpflef6bm\r\nlTSzN78HX+zxCv3oAQhC4vfH3nf2j3paaalaubuABgbeisqT5rldrgEVzzcf\r\nSyv84qdRWzpJl18Zpu7nA6lleLRk9X9SCjeR/ijUV4fBj9zopTT0EZkY5HFU\r\nc8VLHxymPHk/6alQ5rUuRVlDN6sysxS44B9SfChLLNfteR148U+H2/CCBOto\r\n/vh7nOvol8OnRF9spqFn1U1L9K6NZRm8qslpCdRTnWZTjAYDfZjPWtxN0FSS\r\nv7fNlf2MEgdq5u6OAowgwtH6owbPeeHMDzhAz86Q3QaZpXCanrzr8/vkjnt/\r\nr0wmL8gjC6B9dqBtZ3BDzEzKCdPTzqP0Eh1GQV0zborRB1zFfmUkKS2f2Vb/\r\n1c7fsD2AAzaYRlXNcQeo2dJNudn+JvOBn0nBMQyyPl0mO7ND7nyq+EhZ5qlN\r\nJ7Qbb29RLZeL3ReuinDgCCdxWhlvmJspk/uGZBcZtHE5JorF4AautR9+w78d\r\nhqFbeeJ7kW3Pz7xO42k3L9mkRCwT9nR3m6H4D/JLQ9kj/aHPmnLPkzgK7RWK\r\noZt4m40jUqVFOQXyGAES2S9sII7RxrJps0M=\r\n=ecSB\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":"bf7deab69996449cb99c2217dff75e65855eb2c1","scripts":{"test":"npm run build && npm run test-coverage","build":"rimraf \"test/**/*.d.ts\" \"*.d.ts\" && tsc && type-coverage","prepack":"npm run build","test-api":"uvu test \"\\.jsx?$\"","test-coverage":"c8 --check-coverage --100 --reporter lcov npm run test-api"},"_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git","directory":"packages/remark-mdx"},"_npmVersion":"8.13.2","description":"remark plugin to support MDX syntax","directories":{},"sideEffects":false,"_nodeVersion":"18.2.0","dependencies":{"mdast-util-mdx":"^2.0.0","micromark-extension-mdxjs":"^1.0.0"},"typeCoverage":{"detail":true,"strict":true,"atLeast":100,"ignoreCatch":true},"_hasShrinkwrap":false,"devDependencies":{"unified":"^10.0.0","remark-parse":"^10.0.0","unist-builder":"^3.0.0","remark-stringify":"^10.0.0","unist-util-visit":"^4.0.0","unist-util-remove-position":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_2.1.3_1660761997491_0.14102995869031676","host":"s3://npm-registry-packages"}},"2.1.4":{"name":"remark-mdx","version":"2.1.4","keywords":["unified","remark","remark-plugin","plugin","mdast","markdown","jsx","javascript","xml","mdx"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@2.1.4","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"xo":false,"dist":{"shasum":"6a39054c26bfffe890aaa5f3d4487e7eb7ea6844","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-2.1.4.tgz","fileCount":5,"integrity":"sha512-zZxHdd0s8xfMmIKcxhFoUT4x54VOJTUJ+lPys7ZR2Vcgb4xwuAwxvUfkVrsCTdo/lBVxLQv43bXVNu3ZIbahnA==","signatures":[{"sig":"MEUCIQCIbAonSi1pNnBJudxFdadFFoqnd1r8jnZPLDRTfXgO+wIgXDHqxiSye5TcM0Mlqc2S4QHtMCmL7fSt6qNm/nHjjdQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":11499,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjPxloACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpChw/8DvXXbifr0shEnUdyQ9kK9DjxOePKQew47pmW+CnwB3nHubDH\r\nCKjMq7CfNCUehVje5XnxsurVlExkbQ+PDBg4IZLXKvaopET8Dg/Xf3h8s5nB\r\nI0hCmeQQbb8uOQGhm/mGDBS4vXG0j/BYCpgGnSRwGPIjE8CnKwTYjhYWDeDN\r\npG+ZYcH2YYfrbuWrxvoHqKCNR+xC7tljMhmhlX3fMlHrlS5+u33WT/ye1Sxs\r\nWglQTjFl1tUPttGeJYuIWLL0NGHVHV96ePH1HE8yGUCmbIW2KLmr50ZpMyrP\r\nJ1JHxb+CN78bZqHGagNzjaHCGe0hXOIiLU3twMRyefXEZJXnEDxhRBRUeKZu\r\nfJdx8t/VCnX33fatTfEIOkTpW4/eG+cdW9coC3BxR4wMjblPZSMYMap/ArDg\r\nzZn8gAfjNEiCBFNL/JHtsHq1pZNXIxjsCSHXO9EYt5X+oLIw1a9l9T09snWZ\r\nti6LUzIyNDrxteUkBmrXDdwWzalWYK7ggdqI+cYe7LEb1loObq7zHLY6fEJv\r\nlz0Ox+O303+yRLLEcJeCRCA4jGMWKbeM1H4MCFY3xTM68ctbz6L4CpjT8ed/\r\nwlPAf4aCqHf+mMDtAGWvmsgdeYZHzI0IzFcPB70goyY+3FUROWjPLAGZXRfX\r\npwFGzSCwt0hbZh19XztERb7VJXejPpkSciQ=\r\n=Lx5w\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":"bf7deab69996449cb99c2217dff75e65855eb2c1","scripts":{"test":"npm run build && npm run test-coverage","build":"rimraf \"test/**/*.d.ts\" \"*.d.ts\" && tsc && type-coverage","prepack":"npm run build","test-api":"uvu test \"\\.jsx?$\"","test-coverage":"c8 --check-coverage --100 --reporter lcov npm run test-api"},"_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git","directory":"packages/remark-mdx"},"_npmVersion":"8.19.1","description":"remark plugin to support MDX syntax","directories":{},"sideEffects":false,"_nodeVersion":"18.2.0","dependencies":{"mdast-util-mdx":"^2.0.0","micromark-extension-mdxjs":"^1.0.0"},"typeCoverage":{"detail":true,"strict":true,"atLeast":100,"ignoreCatch":true},"_hasShrinkwrap":false,"devDependencies":{"unified":"^10.0.0","remark-parse":"^10.0.0","unist-builder":"^3.0.0","remark-stringify":"^10.0.0","unist-util-visit":"^4.0.0","unist-util-remove-position":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_2.1.4_1665079655886_0.4480152279920293","host":"s3://npm-registry-packages"}},"2.1.5":{"name":"remark-mdx","version":"2.1.5","keywords":["unified","remark","remark-plugin","plugin","mdast","markdown","jsx","javascript","xml","mdx"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@2.1.5","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"xo":false,"dist":{"shasum":"69b19ec42d30a289e0663c3fc7656ebdca0a8d8e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-2.1.5.tgz","fileCount":5,"integrity":"sha512-A8vw5s+BgOa968Irt8BO7DfWJTE0Fe7Ge3hX8zzDB1DnwMZTNdK6qF2IcFao+/7nzk1vSysKcFp+3ku4vhMpaQ==","signatures":[{"sig":"MEQCIH9nQb6huhaV3Ddqo6KHPAEINZmhVn6HJbpLTrxyPajHAiAHaxCQsbUMhv+KzK6Jw51cG/XqHBmufEHCWwhsbRcKjw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":11499,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjRaWbACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo4Fg//aAftYPfdwxwTEe6O/yoCuAfPxFRWCoj1wNjMEijVeFB6Ihu8\r\nJIseBdQFoLc+jPicYo875d8te2TimnOZR4SeTaUTSDXF9xFB6Q/Dc9esAvf4\r\n7wZSvOdFpqR4qi1tAsDaSh//GbqssZ4Qo2dwBigdJngTQdd8pDKrulUH3qGo\r\nf/KQjjmEJf/0tXNZhgA0Cmr6IU/B17SyUlBGvzfmVs3OqNHFoy6UTA5edQS2\r\nv39g1RJYRihPaKWVwBdVB8IYZXsby7Vg8Ms8ItVLL1ApivzuCImy1Gnplb6S\r\ntE2DdEVFFXS2yy0nYUw/jbKxek92mNeimiTdPiriz0Q0Ws4m25pQiupnsZ6x\r\nEUm8gBhI+hyF4FyGxMdSmulXvWyMjMm2cFpPgIRkziWT3txaOxpFAT6r8zh6\r\nPJvhNx+ttUVSKiIZ1XGkNANOHYOW3Sh50o8vI4IngcCSgpPd4fXTWUx1ySVC\r\ncezfNo2ExCQRDdOrbjthxKxUcpgYf9uUeeOt/sajyKmdzGMYZeldX2LrzQuQ\r\nd1XCkHOpUllZXRTjs7BpwRR80vPcXeETVehPlG3KrnLXSAEs3ZZ3TGqY31Xq\r\nAjX4UDZ33vqx6ZKOXu0zt0r1HmHgZmBPq+i8twwtVY3DJgQx7kCiYNXFKXHR\r\nrR/84lL7Ac0j8tS8KBcea0G/j9C/tKF1beU=\r\n=57wq\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":"bf7deab69996449cb99c2217dff75e65855eb2c1","scripts":{"test":"npm run build && npm run test-coverage","build":"rimraf \"test/**/*.d.ts\" \"*.d.ts\" && tsc && type-coverage","prepack":"npm run build","test-api":"uvu test \"\\.jsx?$\"","test-coverage":"c8 --check-coverage --100 --reporter lcov npm run test-api"},"_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git","directory":"packages/remark-mdx"},"_npmVersion":"8.19.1","description":"remark plugin to support MDX syntax","directories":{},"sideEffects":false,"_nodeVersion":"18.2.0","dependencies":{"mdast-util-mdx":"^2.0.0","micromark-extension-mdxjs":"^1.0.0"},"typeCoverage":{"detail":true,"strict":true,"atLeast":100,"ignoreCatch":true},"_hasShrinkwrap":false,"devDependencies":{"unified":"^10.0.0","remark-parse":"^10.0.0","unist-builder":"^3.0.0","remark-stringify":"^10.0.0","unist-util-visit":"^4.0.0","unist-util-remove-position":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_2.1.5_1665508763056_0.8009834069215633","host":"s3://npm-registry-packages"}},"2.2.0":{"name":"remark-mdx","version":"2.2.0","keywords":["unified","remark","remark-plugin","plugin","mdast","markdown","jsx","javascript","xml","mdx"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@2.2.0","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"xo":false,"dist":{"shasum":"1649309555bb5368b7bc3b963dfad3e0d7d341e7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-2.2.0.tgz","fileCount":5,"integrity":"sha512-nqne+C8M4xugcewHqsyczrNufQoJ9PQWIuHjh9P2h2LO0C0FDcn9hgzS7KDg9QvtwSTiTgQnQO/b1kSeFU9kvQ==","signatures":[{"sig":"MEUCIEP+vYLz7h2qjHPsColpVgrsxwMWIeVuhLtbI4x/enurAiEA8uMTIXt9Z1mrDjlqjOQ8RM81hhZ1bPWNQ4gnLUw8I/k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":11422,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjmYoVACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrK/g/9FB8IPWVIUGSIEtDvCj3z3wk3xr9Q/AxmA3rbqy+BWOEsqxEv\r\nvavizdjfxyeoE5ayMpV63zAyAZUsxZNNBViAVIBIbLwTAjmKvFMzwTZrhVFf\r\ncAaFtjO78dO1MdgwOrJ4gR5+7dee0H+paj9JahIhaOTa2j9+wOgDIShP14QB\r\nt+E/Oam+0oZsBrw7JDvwiVhrAJ2kOXxW4Czi5OSGE/s9nTmzhX+3539zUM9e\r\nzMB8R/77Wmj6v5tKLGsgrAdbxbzPKZxo8v+Yhv5Q0WE/WG98DESpaiB/rTvm\r\nXcKBW3g7jt7lRwDumnkpmmo2yghMzCx985yZb+4viK3G1kz3BJB0pTdWDSSq\r\nLsZ3D7x21WqjtB1yOe1PpqlNA2znzYsoinqNGmxyem3xdSENbXPdiiffgNaM\r\nyXBiovaKbd+OPuCH+JZKLau9EEUV9dsJwFOqaSEU7oralZa/y7MfrKBG6uiJ\r\nUdZWtvG4BjD8PEUtuoZ9BE6P5+uZAO+ilyuag74+58vpA5SGkxulOjWjonbL\r\nzREMo0BV2BB+rqtHG8vEsUIgxWa18aY1duXkMFrxWoZpMAXex4tgQoySEeuI\r\nfQbsBEjuY7RO1LstaYylxlATe6JllHz9r1Txe7vVabomNnsLjbFrlB8HF3Em\r\neGqI1AQmxTtZp7mSHOTyvavxOxDJ2/x0HjA=\r\n=HsPT\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":"bf7deab69996449cb99c2217dff75e65855eb2c1","scripts":{"test":"npm run build && npm run test-coverage","build":"rimraf \"test/**/*.d.ts\" \"*.d.ts\" && tsc && type-coverage","prepack":"npm run build","test-api":"uvu test \"\\.jsx?$\"","test-coverage":"c8 --check-coverage --100 --reporter lcov npm run test-api"},"_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git","directory":"packages/remark-mdx"},"_npmVersion":"8.19.2","description":"remark plugin to support MDX syntax","directories":{},"sideEffects":false,"_nodeVersion":"19.0.0","dependencies":{"mdast-util-mdx":"^2.0.0","micromark-extension-mdxjs":"^1.0.0"},"typeCoverage":{"detail":true,"strict":true,"atLeast":100,"ignoreCatch":true},"_hasShrinkwrap":false,"devDependencies":{"unified":"^10.0.0","remark-parse":"^10.0.0","unist-builder":"^3.0.0","remark-stringify":"^10.0.0","unist-util-visit":"^4.0.0","unist-util-remove-position":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_2.2.0_1671006741767_0.21729669336112556","host":"s3://npm-registry-packages"}},"2.2.1":{"name":"remark-mdx","version":"2.2.1","keywords":["unified","remark","remark-plugin","plugin","mdast","markdown","jsx","javascript","xml","mdx"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@2.2.1","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"xo":false,"dist":{"shasum":"0d006436acf039b526c3b6b47ea4a44b3d544db7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-2.2.1.tgz","fileCount":5,"integrity":"sha512-R9wcN+/THRXTKyRBp6Npo/mcbGA2iT3N4G8qUqLA5pOEg7kBidHv8K2hHidCMYZ6DXmwK18umu0K4cicgA2PPQ==","signatures":[{"sig":"MEUCIGZy35zeiUHeNaO7H7IfUeA1D+sk9QMGTPXCK6ye26xzAiEAsbAVrOC5V1UF3TErMkjXlCxKSfGFqu3271I5dGMDY3c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":11422,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjmY3XACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpN9w/7BUXVxBEigFY0lcym4knEB6vdzIm9ErJJl+ypZltlhy08wMSr\r\nZCCK2N0xSczKjLv/qojjd6k+tLN2ddTcIYbXh36mMRuqC6r/3l6jgd7cWasR\r\nL4drlEYAoRPA2ZvILYc80sEsrFHRaKL73vNSfK5b5U9fuHqQ5Zgh2r87m38Q\r\ntyOwm2XrIS1A/xESjFY5MkVr4e8TFA8dR9qlUSUYxpx4kF76SqtQZXi4g8CA\r\nq4ETyBm5+xWxXuFH1cVBNXBTEBmPGSaVzc76JvS7WvvS6OcXy4m1kzSKVuKh\r\nnjQ2xXzzn+RygVJGkbXihFeV8+nbQ90FERVef+FeGAbXaIFDUmtjztnudh31\r\nPHkN28LZRH+0l4y2WG6xZMLcfPlF0De3gQd2UyVb5yKpDmWApyRVHfO7Ndm4\r\nzNVl754o9OnTJCRTQ0QNa/TyTmdcQd7ZIGgLS+t0O4srgFk0Jly2jJpcTeyI\r\nlUY4HZgIMPmQvJu7o2+vkSbqTCduAxdELa8L1gbCZDOhsQi1xTTxyQxyRLqf\r\ncaNbjsC5OfWE5CflRZ9cuXcsXcAF48q2VYmDo8IX4HCoA7Bd8eN5Tf94/WyP\r\n9+4ACTCaAWKR0+zzvuC6zDg1P//s9HXOEMgFNiBcMvH6av2bMRSGkQc46hWl\r\nJuHuz7/e5znNFXK380ydANp703cTlfEJ3Qs=\r\n=Qhyy\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":"bf7deab69996449cb99c2217dff75e65855eb2c1","scripts":{"test":"npm run build && npm run test-coverage","build":"rimraf \"test/**/*.d.ts\" \"*.d.ts\" && tsc && type-coverage","prepack":"npm run build","test-api":"uvu test \"\\.jsx?$\"","test-coverage":"c8 --check-coverage --100 --reporter lcov npm run test-api"},"_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git","directory":"packages/remark-mdx"},"_npmVersion":"8.19.2","description":"remark plugin to support MDX syntax","directories":{},"sideEffects":false,"_nodeVersion":"19.0.0","dependencies":{"mdast-util-mdx":"^2.0.0","micromark-extension-mdxjs":"^1.0.0"},"typeCoverage":{"detail":true,"strict":true,"atLeast":100,"ignoreCatch":true},"_hasShrinkwrap":false,"devDependencies":{"unified":"^10.0.0","remark-parse":"^10.0.0","unist-builder":"^3.0.0","remark-stringify":"^10.0.0","unist-util-visit":"^4.0.0","unist-util-remove-position":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_2.2.1_1671007703704_0.14423423194256935","host":"s3://npm-registry-packages"}},"2.3.0":{"name":"remark-mdx","version":"2.3.0","keywords":["unified","remark","remark-plugin","plugin","mdast","markdown","jsx","javascript","xml","mdx"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@2.3.0","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"xo":false,"dist":{"shasum":"efe678025a8c2726681bde8bf111af4a93943db4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-2.3.0.tgz","fileCount":5,"integrity":"sha512-g53hMkpM0I98MU266IzDFMrTD980gNF3BJnkyFcmN+dD873mQeD5rdMO3Y2X+x8umQfbSE0PcoEDl7ledSA+2g==","signatures":[{"sig":"MEQCIA1tJv4fIr69OWPLWweyjINI/8pZR4IXLLjBPSQGiss/AiB6wIz3lmqdUZW8uYewN9JBbsROLahG+OVPYby4ratz+A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":11455,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj5UOXACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqnKw/9HTdNPIYpHoOJBxNhp3cIuSIGvK0+Q/izvGaZBwKDjeU3xPiA\r\n+lFfoMhhmQz3dwr3Kwz3vZIEd63PZsHYog/cgBxSSLL1RJH4bQlynVBdPczb\r\nQla+q69/S+v2T+pfiwDmiTGVB//kNfu3mSLALBlvIe/wpAmaLWCvY/nQiyMG\r\nk3bxuWaZRkKXoCdQO+6tsbwq5xzB5e1/0mYFAPnII+9eMQIVN1bbZ6gA0fCH\r\n0i1DNd1YdhkgK5+MPeK+a4bhVf754NTJvGcdLAm3W7XyQRK+R66C2rz0OIvk\r\nS2h0c7TdJnhm9Pir6PVVpSB52+rqw3aZZG5VGJiBjxDDClsWNyFG8AduixWO\r\n8I/MHYc96fWpdiaqM6wfYH1jPaZAsWmxijQYO0YjTx+CC3mPbXf3EtKlSBiR\r\nFqwzuh65Mm6/KVLMLWKJEWzzK2yz8XXA/SykwerVOYOzr11KdevR1ch2LBQz\r\n28wZefS8BCVWnQ916eDvCcXPcWvHeDi/qLuV2mShx91dfgJr3srsHUXw4GDQ\r\nqa70uBJo6H6DHymP7tHHFMeUaaR9OaRqb+yd4qUOYzmFqP+5mAHG5qyzdmb1\r\n9+xymt0+zdPC16kb30KJrzXmj719h7hPGLoagMZKVyXRHGACiKLuOXamgCkH\r\nzvgoCiHJqOQTy6l6lMcvQ7W9y0IFMFf/NQg=\r\n=t9b1\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":"bf7deab69996449cb99c2217dff75e65855eb2c1","scripts":{"test":"npm run build && npm run test-coverage","build":"tsc --build --clean && tsc --build && type-coverage","prepack":"npm run build","test-api":"uvu test \"\\.jsx?$\"","test-coverage":"c8 --check-coverage --100 --reporter lcov npm run test-api"},"_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git","directory":"packages/remark-mdx"},"_npmVersion":"9.2.0","description":"remark plugin to support MDX syntax","directories":{},"sideEffects":false,"_nodeVersion":"19.3.0","dependencies":{"mdast-util-mdx":"^2.0.0","micromark-extension-mdxjs":"^1.0.0"},"typeCoverage":{"detail":true,"strict":true,"atLeast":100,"ignoreCatch":true},"_hasShrinkwrap":false,"devDependencies":{"unified":"^10.0.0","remark-parse":"^10.0.0","unist-builder":"^3.0.0","remark-stringify":"^10.0.0","unist-util-visit":"^4.0.0","unist-util-remove-position":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_2.3.0_1675969431697_0.6697203009364787","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"remark-mdx","version":"3.0.0","keywords":["javascript","jsx","markdown","mdast","mdx","plugin","remark","remark-plugin","unified","xml"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@3.0.0","maintainers":[{"name":"anonymous","email":"remcohaszing@gmail.com"},{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"timneutkens@icloud.com"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"xo":{"rules":{"n/file-extension-in-import":"off"},"prettier":true},"dist":{"shasum":"146905a3925b078970e05fc89b0e16b9cc3bfddd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-3.0.0.tgz","fileCount":7,"integrity":"sha512-O7yfjuC6ra3NHPbRVxfflafAj3LTwx3b73aBvkEFU5z4PsD6FD4vrqJAkE5iNGLz71GdjXfgRqm3SQ0h0VuE7g==","signatures":[{"sig":"MEQCIGODx78QrHubZMn6RTA/AXrXXeC9PtBD4N8MB74EPQCZAiBCmVOE+BJdZSP4anj64T05HyAF0T9TBxkOFWmlBsCZVg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":14211},"type":"module","types":"./index.d.ts","exports":"./index.js","funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"9a40e181db5afe06500b9119787be908429c6ca8","scripts":{"test":"npm run test-coverage","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"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git","directory":"packages/remark-mdx/"},"_npmVersion":"10.2.0","description":"remark plugin to support MDX syntax","directories":{},"sideEffects":false,"_nodeVersion":"21.0.0","dependencies":{"mdast-util-mdx":"^3.0.0","micromark-extension-mdxjs":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_3.0.0_1698172153791_0.5235715562563075","host":"s3://npm-registry-packages"}},"3.0.1":{"name":"remark-mdx","version":"3.0.1","keywords":["javascript","jsx","markdown","mdast","mdx","plugin","remark","remark-plugin","unified","xml"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@3.0.1","maintainers":[{"name":"anonymous","email":"remcohaszing@gmail.com"},{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"timneutkens@icloud.com"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"xo":{"rules":{"n/file-extension-in-import":"off","logical-assignment-operators":"off"},"prettier":true},"dist":{"shasum":"8f73dd635c1874e44426e243f72c0977cf60e212","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-3.0.1.tgz","fileCount":9,"integrity":"sha512-3Pz3yPQ5Rht2pM5R+0J2MrGoBSrzf+tJG94N+t/ilfdh8YLyyKYtidAYwTveB20BoHAcwIopOUqhcmh2F7hGYA==","signatures":[{"sig":"MEUCIAx3l1rSgS4x8TxvhSE5W4n4n2dMxV+OVTmEO8BhCjEsAiEAiOniUE00DxDTvzBLHh5hCGtwJ2gsm0BtRpFjmV9fa4g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":14767},"type":"module","types":"./index.d.ts","exports":"./index.js","funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"78aee48581241bd6d3cc6e0e7fad8cac5ef27c65","scripts":{"test":"npm run test-coverage","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"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git","directory":"packages/remark-mdx/"},"_npmVersion":"10.2.3","description":"remark plugin to support MDX syntax","directories":{},"sideEffects":false,"_nodeVersion":"21.2.0","dependencies":{"mdast-util-mdx":"^3.0.0","micromark-extension-mdxjs":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_3.0.1_1707735021538_0.7990298127165976","host":"s3://npm-registry-packages"}},"3.1.0":{"name":"remark-mdx","version":"3.1.0","keywords":["javascript","jsx","markdown","mdast","mdx","plugin","remark","remark-plugin","unified","xml"],"author":{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","_id":"remark-mdx@3.1.0","maintainers":[{"name":"anonymous","email":"remcohaszing@gmail.com"},{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"timneutkens@icloud.com"},{"name":"anonymous","email":"tituswormer@gmail.com"}],"contributors":[{"url":"https://wooorm.com","name":"Titus Wormer","email":"tituswormer@gmail.com"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"xo":{"rules":{"n/file-extension-in-import":"off","unicorn/no-this-assignment":"off","logical-assignment-operators":"off"},"prettier":true},"dist":{"shasum":"f979be729ecb35318fa48e2135c1169607a78343","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-3.1.0.tgz","fileCount":9,"integrity":"sha512-Ngl/H3YXyBV9RcRNdlYsZujAmhsxwzxpDzpDEhFBVAGthS4GDgnctpDjgFl/ULx5UEDzqtW1cyBSNKqYYrqLBA==","signatures":[{"sig":"MEUCIQDjmmnYS/xHX5C2wZj+feHdNrIz+jP8wY9mWwB+clGqogIgba4s4bjMh8NDhLcqROO9RtdmV0xe0IX/i2wTh1/Y2Ow=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":14741},"type":"module","types":"./index.d.ts","exports":"./index.js","funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"eee85d54152499c526cf8c06076be5b563037ff8","scripts":{"test":"npm run test-coverage","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"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git","directory":"packages/remark-mdx/"},"_npmVersion":"10.9.0","description":"remark plugin to support MDX syntax","directories":{},"sideEffects":false,"_nodeVersion":"23.0.0","dependencies":{"mdast-util-mdx":"^3.0.0","micromark-extension-mdxjs":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{},"_npmOperationalInternal":{"tmp":"tmp/remark-mdx_3.1.0_1729264737248_0.23839084171238922","host":"s3://npm-registry-packages"}},"3.1.1":{"name":"remark-mdx","version":"3.1.1","description":"remark plugin to support MDX syntax","license":"MIT","keywords":["javascript","jsx","markdown","mdast","mdx","plugin","remark","remark-plugin","unified","xml"],"homepage":"https://mdxjs.com","repository":{"type":"git","url":"git+https://github.com/mdx-js/mdx.git","directory":"packages/remark-mdx/"},"bugs":{"url":"https://github.com/mdx-js/mdx/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"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"type":"module","sideEffects":false,"exports":"./index.js","dependencies":{"mdast-util-mdx":"^3.0.0","micromark-extension-mdxjs":"^3.0.0"},"devDependencies":{},"scripts":{"test":"npm run test-coverage","test-api":"node --conditions development test/index.js","test-coverage":"c8 --100 --reporter lcov npm run test-api"},"xo":{"prettier":true,"rules":{"logical-assignment-operators":"off","n/file-extension-in-import":"off","unicorn/no-this-assignment":"off"}},"_id":"remark-mdx@3.1.1","gitHead":"50aa8df0b027c893dec9f97a2b7c51539e9f1a4b","types":"./index.d.ts","_nodeVersion":"23.9.0","_npmVersion":"11.5.2","dist":{"integrity":"sha512-Pjj2IYlUY3+D8x00UJsIOg5BEvfMyeI+2uLPn9VO9Wg4MEtN/VTIq2NEJQfde9PnX15KgtHyl9S0BcTnWrIuWg==","shasum":"047f97038bc7ec387aebb4b0a4fe23779999d845","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/remark-mdx/-/remark-mdx-3.1.1.tgz","fileCount":9,"unpackedSize":14741,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEQCID0HKmb1G6ZbXRGYD7n7NRbE0aJvhdI8cJel2NxwL1zAAiAl1EqOIIqEaYOgTQDte7C6fqXBXmtPNZ+2N4V6olQmBA=="}]},"_npmUser":{"name":"anonymous","email":"tituswormer@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"timneutkens@icloud.com"},{"name":"anonymous","email":"tituswormer@gmail.com"},{"name":"anonymous","email":"remcohaszing@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/remark-mdx_3.1.1_1756490572157_0.6114381289027135"},"_hasShrinkwrap":false}},"name":"remark-mdx","time":{"created":"2019-02-11T17:26:30.516Z","modified":"2025-08-29T18:02:52.563Z","0.17.0":"2019-02-11T17:26:30.699Z","0.17.1":"2019-02-12T00:59:40.563Z","0.17.2":"2019-02-12T14:35:26.978Z","0.17.3":"2019-02-14T19:30:13.176Z","0.17.4":"2019-02-15T16:35:24.209Z","0.17.5":"2019-02-15T21:21:02.075Z","0.18.0":"2019-02-25T16:16:12.853Z","0.18.2":"2019-02-28T02:01:47.586Z","1.0.0-alpha.0":"2019-03-06T04:10:36.426Z","0.20.3":"2019-03-06T17:22:52.045Z","1.0.0-alpha.1":"2019-03-06T22:30:35.740Z","1.0.0-alpha.2":"2019-03-08T04:42:06.078Z","1.0.0-alpha.5":"2019-03-08T19:14:19.261Z","1.0.0-alpha.6":"2019-03-11T16:48:38.091Z","1.0.0-alpha.8":"2019-03-21T15:04:03.975Z","1.0.0-alpha.10":"2019-03-27T20:33:51.198Z","1.0.0-alpha.11":"2019-03-28T19:17:36.436Z","1.0.0-alpha.13":"2019-03-28T21:22:58.763Z","1.0.0-rc.0":"2019-04-04T16:39:23.223Z","1.0.0-rc.2":"2019-04-11T19:33:22.881Z","1.0.0-rc.3":"2019-04-11T20:22:21.054Z","1.0.0-rc.4":"2019-04-11T22:18:36.175Z","1.0.1":"2019-04-12T01:34:07.334Z","1.0.2":"2019-04-12T06:49:11.776Z","1.0.8":"2019-04-16T20:15:50.707Z","1.0.14":"2019-04-22T13:45:16.274Z","1.0.15":"2019-04-25T14:56:26.949Z","1.0.18":"2019-05-07T17:46:10.691Z","1.0.20":"2019-05-25T13:34:04.917Z","1.0.21":"2019-06-18T14:45:14.738Z","1.0.22":"2019-07-09T19:29:06.039Z","1.0.23":"2019-07-09T19:33:15.882Z","1.0.25":"2019-07-12T16:07:32.872Z","1.0.26":"2019-07-12T20:09:16.980Z","1.1.0":"2019-07-15T16:21:54.512Z","1.1.1":"2019-07-30T13:20:25.062Z","1.1.2":"2019-07-31T18:39:47.744Z","1.1.4":"2019-07-31T18:42:43.360Z","1.1.5":"2019-08-02T21:16:36.369Z","1.1.6":"2019-08-06T16:49:30.584Z","1.2.1":"2019-08-08T22:53:56.759Z","1.2.2":"2019-08-08T22:58:10.326Z","1.3.0":"2019-08-13T22:59:56.253Z","1.3.1":"2019-08-18T15:51:53.079Z","1.3.2":"2019-08-25T18:56:13.153Z","1.4.0":"2019-08-26T14:01:43.589Z","1.4.1":"2019-09-03T16:57:06.654Z","1.4.2":"2019-09-03T18:50:02.656Z","1.4.3":"2019-09-04T16:29:20.901Z","1.4.4":"2019-09-05T14:14:35.995Z","1.4.5":"2019-09-09T15:09:39.457Z","1.5.0":"2019-09-23T19:39:17.214Z","1.5.1":"2019-10-07T15:02:00.723Z","1.5.2":"2019-12-16T15:13:15.677Z","1.5.3":"2019-12-20T18:42:01.782Z","1.5.4":"2020-01-15T14:57:14.534Z","1.5.5":"2020-01-16T20:16:41.643Z","1.5.6-ci.0":"2020-01-31T14:56:16.809Z","1.5.6-alpha.0":"2020-02-04T02:46:41.488Z","1.5.6":"2020-02-20T19:47:31.974Z","1.5.7-alpha.0":"2020-02-20T20:13:09.541Z","1.5.7":"2020-02-21T22:22:01.151Z","1.5.8-alpha.0":"2020-02-21T22:30:33.102Z","1.5.8-ci.13":"2020-03-26T19:13:26.827Z","1.5.8":"2020-03-26T19:21:12.991Z","1.5.9-ci.5":"2020-04-22T18:37:14.286Z","1.5.9":"2020-04-22T18:38:47.353Z","1.6.0":"2020-04-27T20:02:41.161Z","1.6.1":"2020-05-01T18:27:38.517Z","1.6.2":"2020-05-20T17:07:55.895Z","1.6.3":"2020-05-20T17:26:40.219Z","2.0.0-next.0":"2020-05-20T19:13:02.666Z","1.6.4":"2020-05-20T19:25:11.010Z","2.0.0-next.1":"2020-05-21T14:11:15.902Z","1.6.5":"2020-05-29T14:57:56.219Z","1.6.6":"2020-06-17T23:52:45.654Z","1.6.7-ci.4":"2020-07-10T04:21:35.406Z","1.6.7":"2020-07-15T19:41:19.694Z","1.6.8-ci.4":"2020-07-16T18:34:52.813Z","1.6.8":"2020-07-16T18:52:16.677Z","1.6.9":"2020-07-16T23:05:25.359Z","1.6.10":"2020-07-17T00:21:29.479Z","1.6.11":"2020-07-17T13:29:23.525Z","2.0.0-next.3":"2020-07-17T21:42:45.094Z","1.6.12":"2020-07-20T13:44:59.334Z","1.6.12-ci.2":"2020-07-20T13:47:10.229Z","1.6.13":"2020-07-20T14:58:08.603Z","1.6.13-ci.1":"2020-07-20T15:09:49.850Z","2.0.0-next.4":"2020-07-22T19:15:17.472Z","1.6.14":"2020-07-22T23:53:14.020Z","2.0.0-next.5":"2020-07-27T20:10:13.836Z","2.0.0-next.6":"2020-07-27T20:12:03.834Z","1.6.15":"2020-07-29T14:33:05.030Z","1.6.16":"2020-07-29T21:46:58.279Z","2.0.0-next.7":"2020-07-30T21:47:51.769Z","1.6.17":"2020-09-14T18:13:59.286Z","1.6.18":"2020-09-17T13:51:33.965Z","2.0.0-next.8":"2020-09-18T21:45:38.728Z","1.6.19":"2020-10-20T21:49:47.087Z","1.6.20":"2020-11-07T14:54:39.115Z","1.6.21":"2020-11-07T15:09:00.342Z","1.6.22":"2020-12-01T17:53:57.922Z","2.0.0-next.9":"2021-03-18T15:27:01.363Z","2.0.0-ci.4":"2021-04-07T17:18:12.811Z","2.0.0-ci.18":"2021-08-28T18:39:40.555Z","2.0.0-ci.35":"2021-09-07T14:51:06.380Z","2.0.0-ci.39":"2021-09-08T07:17:49.359Z","2.0.0-ci.40":"2021-09-08T10:44:55.222Z","2.0.0-ci.42":"2021-09-12T19:27:04.199Z","2.0.0-ci.43":"2021-09-12T19:32:28.648Z","2.0.0-ci.50":"2021-09-13T14:20:53.241Z","2.0.0-rc.1":"2021-10-19T17:19:04.352Z","2.0.0-rc.2":"2021-11-15T20:51:10.306Z","2.0.0":"2022-02-01T16:10:29.938Z","2.1.0":"2022-03-16T10:47:03.436Z","2.1.1":"2022-03-31T17:03:14.407Z","2.1.2":"2022-06-18T12:32:45.652Z","2.1.3":"2022-08-17T18:46:37.650Z","2.1.4":"2022-10-06T18:07:36.075Z","2.1.5":"2022-10-11T17:19:23.358Z","2.2.0":"2022-12-14T08:32:21.931Z","2.2.1":"2022-12-14T08:48:23.862Z","2.3.0":"2023-02-09T19:03:51.888Z","3.0.0":"2023-10-24T18:29:13.982Z","3.0.1":"2024-02-12T10:50:21.704Z","3.1.0":"2024-10-18T15:18:57.683Z","3.1.1":"2025-08-29T18:02:52.324Z"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"readmeFilename":"readme.md","homepage":"https://mdxjs.com"}