{"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":["jsx","markdown","mdx","remark"],"dist-tags":{"ci":"2.0.0-ci.53","next":"2.0.0-rc.2","latest":"3.1.1"},"author":{"name":"John Otander","email":"johnotander@gmail.com","url":"https://johno.com"},"description":"MDX compiler","readme":"# `@mdx-js/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\nMDX compiler.\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  * [`compile(file, options?)`](#compilefile-options)\n  * [`compileSync(file, options?)`](#compilesyncfile-options)\n  * [`createProcessor(options?)`](#createprocessoroptions)\n  * [`evaluate(file, options)`](#evaluatefile-options)\n  * [`evaluateSync(file, options)`](#evaluatesyncfile-options)\n  * [`nodeTypes`](#nodetypes)\n  * [`run(code, options)`](#runcode-options)\n  * [`runSync(code, options)`](#runsynccode-options)\n  * [`CompileOptions`](#compileoptions)\n  * [`EvaluateOptions`](#evaluateoptions)\n  * [`Fragment`](#fragment)\n  * [`Jsx`](#jsx)\n  * [`JsxDev`](#jsxdev)\n  * [`ProcessorOptions`](#processoroptions)\n  * [`RunOptions`](#runoptions)\n  * [`UseMdxComponents`](#usemdxcomponents)\n* [Types](#types)\n* [Architecture](#architecture)\n* [Compatibility](#compatibility)\n* [Security](#security)\n* [Contribute](#contribute)\n* [License](#license)\n\n## What is this?\n\nThis package is a compiler that turns MDX into JavaScript.\nIt can also evaluate MDX code.\n\n## When should I use this?\n\nThis is the core compiler for turning MDX into JavaScript which gives you the\nmost control.\nIf you’re using a bundler (Rollup, esbuild, webpack), a site builder (Next.js),\nor build system (Vite) which comes with a bundler, you’re better off using an\nintegration: 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 @mdx-js/mdx\n```\n\nIn Deno with [`esm.sh`][esmsh]:\n\n```tsx\nimport {compile} from 'https://esm.sh/@mdx-js/mdx@3'\n```\n\nIn browsers with [`esm.sh`][esmsh]:\n\n```html\n<script type=\"module\">\n  import {compile} from 'https://esm.sh/@mdx-js/mdx@3?bundle'\n</script>\n```\n\n## Use\n\nSay we have an MDX document, `example.mdx`:\n\n```mdx\nexport function Thing() {\n  return <>World!</>\n}\n\n# Hello, <Thing />\n```\n\n…and some code in `example.js` to compile `example.mdx` to JavaScript:\n\n```tsx\nimport fs from 'node:fs/promises'\nimport {compile} from '@mdx-js/mdx'\n\nconst compiled = await compile(await fs.readFile('example.mdx'))\n\nconsole.log(String(compiled))\n```\n\nYields roughly:\n\n```tsx\nimport {Fragment as _Fragment, jsx as _jsx, jsxs as _jsxs} from 'react/jsx-runtime'\n\nexport function Thing() {\n  return _jsx(_Fragment, {children: 'World!'})\n}\n\nfunction _createMdxContent(props) {\n  const _components = {h1: 'h1', ...props.components}\n  return _jsxs(_components.h1, {children: ['Hello, ', _jsx(Thing, {})]})\n}\n\nexport default function MDXContent(props = {}) {\n  const {wrapper: MDXLayout} = props.components || {}\n  return MDXLayout\n    ? _jsx(MDXLayout, {...props, children: _jsx(_createMdxContent, {...props})})\n    : _createMdxContent(props)\n}\n```\n\nSee [§ Using MDX][using-mdx] for more on how MDX work and how to use the result.\n\n## API\n\nThis package exports the following identifiers:\n[`compile`][api-compile],\n[`compileSync`][api-compile-sync],\n[`createProcessor`][api-create-processor],\n[`evaluate`][api-evaluate],\n[`evaluateSync`][api-evaluate-sync],\n[`nodeTypes`][api-node-types],\n[`run`][api-run], and\n[`runSync`][api-run-sync].\nThere is no default export.\n\n### `compile(file, options?)`\n\nCompile MDX to JS.\n\n###### Parameters\n\n* `file` ([`Compatible` from `vfile`][vfile-compatible])\n  — MDX document to parse\n* `options` ([`CompileOptions`][api-compile-options], optional)\n  — compile configuration\n\n###### Returns\n\nPromise to compiled file ([`Promise<VFile>`][vfile]).\n\n###### Examples\n\nThe input value for `file` can be many different things.\nYou can pass a `string`, `Uint8Array` in UTF-8, [`VFile`][vfile], or anything\nthat can be given to `new VFile`.\n\n```tsx\nimport {compile} from '@mdx-js/mdx'\nimport {VFile} from 'vfile'\n\nawait compile(':)')\nawait compile(Buffer.from(':-)'))\nawait compile({path: 'path/to/file.mdx', value: '🥳'})\nawait compile(new VFile({path: 'path/to/file.mdx', value: '🤭'}))\n```\n\nThe output `VFile` can be used to access more than the generated code:\n\n```tsx\nimport {compile} from '@mdx-js/mdx'\nimport remarkPresetLintConsistent from 'remark-preset-lint-consistent' // Lint rules to check for consistent markdown.\nimport {reporter} from 'vfile-reporter'\n\nconst file = await compile('*like this* or _like this_?', {remarkPlugins: [remarkPresetLintConsistent]})\n\nconsole.error(reporter(file))\n```\n\nYields:\n\n```text\n  1:16-1:27  warning  Emphasis should use `*` as a marker  emphasis-marker  remark-lint\n\n⚠ 1 warning\n```\n\n### `compileSync(file, options?)`\n\nSynchronously compile MDX to JS.\n\nWhen possible please use the async [`compile`][api-compile].\n\n###### Parameters\n\n* `file` ([`Compatible` from `vfile`][vfile-compatible])\n  — MDX document to parse\n* `options` ([`CompileOptions`][api-compile-options], optional)\n  — compile configuration\n\n###### Returns\n\nCompiled file ([`VFile`][vfile]).\n\n### `createProcessor(options?)`\n\nCreate a processor to compile markdown or MDX to JavaScript.\n\n> **Note**: `format: 'detect'` is not allowed in `ProcessorOptions`.\n\n###### Parameters\n\n* `options` ([`ProcessorOptions`][api-processor-options], optional)\n  — process configuration\n\n###### Returns\n\nProcessor ([`Processor` from `unified`][unified-processor]).\n\n### `evaluate(file, options)`\n\n[Compile][api-compile] and [run][api-run] MDX.\n\nWhen you trust your content, `evaluate` can work.\nWhen possible, use [`compile`][api-compile], write to a file, and then run with\nNode or use one of the [§ Integrations][integrations].\n\n> ☢️ **Danger**: it’s called **evaluate** because it `eval`s JavaScript.\n\n###### Parameters\n\n* `file` ([`Compatible` from `vfile`][vfile-compatible])\n  — MDX document to parse\n* `options` ([`EvaluateOptions`][api-evaluate-options], **required**)\n  — configuration\n\n###### Returns\n\nPromise to a module ([`Promise<MDXModule>` from\n`mdx/types.js`][mdx-types-module]).\n\nThe result is an object with a `default` field set to the component;\nanything else that was exported is available too.\nFor example, assuming the contents of `example.mdx` from [§ Use][use] was in\n`file`, then:\n\n```tsx\nimport {evaluate} from '@mdx-js/mdx'\nimport * as runtime from 'react/jsx-runtime'\n\nconsole.log(await evaluate(file, runtime))\n```\n\n…yields:\n\n```tsx\n{Thing: [Function: Thing], default: [Function: MDXContent]}\n```\n\n###### Notes\n\nCompiling (and running) MDX takes time.\n\nIf you are live-rendering a string of MDX that often changes using a virtual DOM\nbased framework (such as React), one performance improvement is to call the\n`MDXContent` component yourself.\nThe reason is that the `evaluate` creates a new function each time, which cannot\nbe diffed:\n\n```diff\n const {default: MDXContent} = await evaluate('…')\n\n-<MDXContent {...props} />\n+MDXContent(props)\n```\n\n### `evaluateSync(file, options)`\n\nCompile and run MDX, synchronously.\n\nWhen possible please use the async [`evaluate`][api-evaluate].\n\n> ☢️ **Danger**: it’s called **evaluate** because it `eval`s JavaScript.\n\n###### Parameters\n\n* `file` ([`Compatible` from `vfile`][vfile-compatible])\n  — MDX document to parse\n* `options` ([`EvaluateOptions`][api-evaluate-options], **required**)\n  — configuration\n\n###### Returns\n\nModule ([`MDXModule` from `mdx/types.js`][mdx-types-module]).\n\n### `nodeTypes`\n\nList of node types made by `mdast-util-mdx`, which have to be passed\nthrough untouched from the mdast tree to the hast tree (`Array<string>`).\n\n### `run(code, options)`\n\nRun code compiled with `outputFormat: 'function-body'`.\n\n> ☢️ **Danger**: this `eval`s JavaScript.\n\n###### Parameters\n\n* `code` ([`VFile`][vfile] or `string`)\n  — JavaScript function body to run\n* `options` ([`RunOptions`][api-run-options], **required**)\n  — configuration\n\n###### Returns\n\nPromise to a module ([`Promise<MDXModule>` from\n`mdx/types.js`][mdx-types-module]);\nthe result is an object with a `default` field set to the component;\nanything else that was exported is available too.\n\n###### Example\n\nOn the server:\n\n```tsx\nimport {compile} from '@mdx-js/mdx'\n\nconst code = String(await compile('# hi', {outputFormat: 'function-body'}))\n// To do: send `code` to the client somehow.\n```\n\nOn the client:\n\n```tsx\nimport {run} from '@mdx-js/mdx'\nimport * as runtime from 'react/jsx-runtime'\n\nconst code = '' // To do: get `code` from server somehow.\n\nconst {default: Content} = await run(code, {...runtime, baseUrl: import.meta.url})\n\nconsole.log(Content)\n```\n\n…yields:\n\n```tsx\n[Function: MDXContent]\n```\n\n### `runSync(code, options)`\n\nRun code, synchronously.\n\nWhen possible please use the async [`run`][api-run].\n\n> ☢️ **Danger**: this `eval`s JavaScript.\n\n###### Parameters\n\n* `code` ([`VFile`][vfile] or `string`)\n  — JavaScript function body to run\n* `options` ([`RunOptions`][api-run-options], **required**)\n  — configuration\n\n###### Returns\n\nModule ([`MDXModule` from `mdx/types.js`][mdx-types-module]).\n\n### `CompileOptions`\n\nConfiguration for `compile` (TypeScript type).\n\n`CompileOptions` is the same as [`ProcessorOptions`][api-processor-options]\nwith the exception that the `format` option supports a `'detect'` value,\nwhich is the default.\nThe `'detect'` format means to use `'md'` for files with an extension in\n`mdExtensions` and `'mdx'` otherwise.\n\n###### Type\n\n```tsx\n/**\n * Configuration for `compile`\n */\ntype CompileOptions = Omit<ProcessorOptions, 'format'> & {\n  /**\n   * Format of `file` (default: `'detect'`).\n   */\n  format?: 'detect' | 'md' | 'mdx' | null | undefined\n}\n```\n\n### `EvaluateOptions`\n\nConfiguration for `evaluate` (TypeScript type).\n\n`EvaluateOptions` is the same as [`CompileOptions`][api-compile-options],\nexcept that the options `baseUrl`, `jsx`, `jsxImportSource`, `jsxRuntime`,\n`outputFormat`, `pragma`, `pragmaFrag`, `pragmaImportSource`, and\n`providerImportSource` are not allowed, and that\n[`RunOptions`][api-run-options] are also used.\n\n###### Type\n\n```tsx\n/**\n * Configuration for `evaluate`.\n */\ntype EvaluateOptions = Omit<\n  CompileOptions,\n  | 'baseUrl' // Note that this is also in `RunOptions`.\n  | 'jsx'\n  | 'jsxImportSource'\n  | 'jsxRuntime'\n  | 'outputFormat'\n  | 'pragma'\n  | 'pragmaFrag'\n  | 'pragmaImportSource'\n  | 'providerImportSource'\n> &\n  RunOptions\n```\n\n### `Fragment`\n\nRepresent the children, typically a symbol (TypeScript type).\n\n###### Type\n\n```ts\ntype Fragment = unknown\n```\n\n### `Jsx`\n\nCreate a production element (TypeScript type).\n\n###### Parameters\n\n* `type` (`unknown`)\n  — element type: `Fragment` symbol, tag name (`string`), component\n* `properties` (`Properties`)\n  — element properties and `children`\n* `key` (`string` or `undefined`)\n  — key to use\n\n###### Returns\n\nElement from your framework (`JSX.Element`).\n\n### `JsxDev`\n\nCreate a development element (TypeScript type).\n\n###### Parameters\n\n* `type` (`unknown`)\n  — element type: `Fragment` symbol, tag name (`string`), component\n* `properties` (`Properties`)\n  — element properties and `children`\n* `key` (`string` or `undefined`)\n  — key to use\n* `isStaticChildren` (`boolean`)\n  — whether two or more children are passed (in an array), which is whether\n  `jsxs` or `jsx` would be used\n* `source` (`Source`)\n  — info about source\n* `self` (`unknown`)\n  — context object (`this`)\n\n### `ProcessorOptions`\n\nConfiguration for `createProcessor` (TypeScript type).\n\n###### Fields\n\n* `SourceMapGenerator` (`SourceMapGenerator` from [`source-map`][source-map],\n  optional)\n  — add a source map (object form) as the `map` field on the resulting file\n\n  <details><summary>Expand example</summary>\n\n  Assuming `example.mdx` from [§ Use][use] exists, then:\n\n  ```tsx\n  import fs from 'node:fs/promises'\n  import {compile} from '@mdx-js/mdx'\n  import {SourceMapGenerator} from 'source-map'\n\n  const file = await compile(\n    {path: 'example.mdx', value: await fs.readFile('example.mdx')},\n    {SourceMapGenerator}\n  )\n\n  console.log(file.map)\n  ```\n\n  …yields:\n\n  ```tsx\n  {\n    file: 'example.mdx',\n    mappings: ';;aAAaA,QAAQ;YAAQ;;;;;;;;iBAE3B',\n    names: ['Thing'],\n    sources: ['example.mdx'],\n    version: 3\n  }\n  ```\n\n  </details>\n\n* `baseUrl` (`URL` or `string`, optional, example: `import.meta.url`)\n  — use this URL as `import.meta.url` and resolve `import` and\n  `export … from` relative to it\n\n  <details><summary>Expand example</summary>\n\n  Say we have a module `example.js`:\n\n  ```tsx\n  import {compile} from '@mdx-js/mdx'\n\n  const code = 'export {number} from \"./data.js\"\\n\\n# hi'\n  const baseUrl = 'https://a.full/url' // Typically `import.meta.url`\n\n  console.log(String(await compile(code, {baseUrl})))\n  ```\n\n  …now running `node example.js` yields:\n\n  ```tsx\n  import {jsx as _jsx} from 'react/jsx-runtime'\n  export {number} from 'https://a.full/data.js'\n  function _createMdxContent(props) { /* … */ }\n  export default function MDXContent(props = {}) { /* … */ }\n  ```\n\n  </details>\n\n* `development` (`boolean`, default: `false`)\n  — whether to add extra info to error messages in generated code and use the\n  development automatic JSX runtime (`Fragment` and `jsxDEV` from\n  `/jsx-dev-runtime`);\n  when using the webpack loader (`@mdx-js/loader`) or the Rollup integration\n  (`@mdx-js/rollup`) through Vite, this is automatically inferred from how\n  you configure those tools\n\n  <details><summary>Expand example</summary>\n\n  Say we had some MDX that references a component that can be passed or\n  provided at runtime:\n\n  ```mdx\n  **Note**<NoteIcon />: some stuff.\n  ```\n\n  And a module to evaluate that:\n\n  ```tsx\n  import fs from 'node:fs/promises'\n  import {evaluate} from '@mdx-js/mdx'\n  import * as runtime from 'react/jsx-runtime'\n\n  const path = 'example.mdx'\n  const value = await fs.readFile(path)\n  const MDXContent = (await evaluate({path, value}, {...runtime, baseUrl: import.meta.url})).default\n\n  console.log(MDXContent({}))\n  ```\n\n  …running that would normally (production) yield:\n\n  ```text\n  Error: Expected component `NoteIcon` to be defined: you likely forgot to import, pass, or provide it.\n      at _missingMdxReference (eval at run (…/@mdx-js/mdx/lib/run.js:18:10), <anonymous>:27:9)\n      at _createMdxContent (eval at run (…/@mdx-js/mdx/lib/run.js:18:10), <anonymous>:15:20)\n      at MDXContent (eval at run (…/@mdx-js/mdx/lib/run.js:18:10), <anonymous>:9:9)\n      at main (…/example.js:11:15)\n  ```\n\n  …but if we add `development: true` to our example:\n\n  ```diff\n  @@ -7,6 +7,6 @@\n  import fs from 'node:fs/promises'\n  -import * as runtime from 'react/jsx-runtime'\n  +import * as runtime from 'react/jsx-dev-runtime'\n  import {evaluate} from '@mdx-js/mdx'\n\n  const path = 'example.mdx'\n  const value = await fs.readFile(path)\n  -const MDXContent = (await evaluate({path, value}, {...runtime, baseUrl: import.meta.url})).default\n  +const MDXContent = (await evaluate({path, value}, {development: true, ...runtime, baseUrl: import.meta.url})).default\n\n  console.log(MDXContent({}))\n  ```\n\n  …and we’d run it again, we’d get:\n\n  ```text\n  Error: Expected component `NoteIcon` to be defined: you likely forgot to import, pass, or provide it.\n  It’s referenced in your code at `1:9-1:21` in `example.mdx`\n  provide it.\n      at _missingMdxReference (eval at run (…/@mdx-js/mdx/lib/run.js:18:10), <anonymous>:27:9)\n      at _createMdxContent (eval at run (…/@mdx-js/mdx/lib/run.js:18:10), <anonymous>:15:20)\n      at MDXContent (eval at run (…/@mdx-js/mdx/lib/run.js:18:10), <anonymous>:9:9)\n      at main (…/example.js:11:15)\n  ```\n\n  </details>\n\n* `elementAttributeNameCase` (`'html'` or `'react`, default: `'react'`)\n  — casing to use for attribute names;\n  HTML casing is for example `class`, `stroke-linecap`, `xml:lang`;\n  React casing is for example `className`, `strokeLinecap`, `xmlLang`;\n  for JSX components written in MDX, the author has to be aware of which\n  framework they use and write code accordingly;\n  for AST nodes generated by this project, this option configures it\n\n* `format` (`'md'` or `'mdx'`, default: `'mdx'`)\n  — format of the file;\n  `'md'` means treat as markdown and `'mdx'` means treat as [MDX][mdx-syntax]\n\n  <details><summary>Expand example</summary>\n\n  ```tsx\n  compile('…') // Seen as MDX.\n  compile('…', {format: 'mdx'}) // Seen as MDX.\n  compile('…', {format: 'md'}) // Seen as markdown.\n  ```\n\n  </details>\n\n* `jsx` (`boolean`, default: `false`)\n  — whether to keep JSX;\n  the default is to compile JSX away so that the resulting file is\n  immediately runnable.\n\n  <details><summary>Expand example</summary>\n\n  If `file` is the contents of `example.mdx` from [§ Use][use], then:\n\n  ```tsx\n  compile(file, {jsx: true})\n  ```\n\n  …yields this difference:\n\n  ```diff\n  -import {Fragment as _Fragment, jsx as _jsx, jsxs as _jsxs} from 'react/jsx-runtime'\n  +/*@jsxRuntime automatic*/\n  +/*@jsxImportSource react*/\n\n  export function Thing() {\n  -  return _jsx(_Fragment, {children: 'World'})\n  +  return <>World!</>\n  }\n\n  function _createMdxContent(props) {\n    const _components = {\n      h1: 'h1',\n      ...props.components\n    }\n  -  return _jsxs(_components.h1, {children: ['Hello ', _jsx(Thing, {})]})\n  +  return <_components.h1>{\"Hello \"}<Thing /></_components.h1>\n  }\n\n  export default function MDXContent(props = {}) {\n    const {wrapper: MDXLayout} = props.components || {}\n    return MDXLayout\n  -    ? _jsx(MDXLayout, {\n  -        ...props,\n  -        children: _jsx(_createMdxContent, props)\n  -      })\n  +    ? <MDXLayout {...props}><_createMdxContent {...props} /></MDXLayout>\n      : _createMdxContent(props)\n  }\n  }\n  ```\n\n  </details>\n\n* `jsxImportSource` (`string`, default: `'react'`)\n  — place to import automatic JSX runtimes from;\n  when in the `automatic` runtime, this is used to define an import for\n  `Fragment`, `jsx`, `jsxDEV`, and `jsxs`\n\n  <details><summary>Expand example</summary>\n\n  If `file` is the contents of `example.mdx` from [§ Use][use], then:\n\n  ```tsx\n  compile(file, {jsxImportSource: 'preact'})\n  ```\n\n  …yields this difference:\n\n  ```diff\n  -import {Fragment as _Fragment, jsx as _jsx, jsxs as _jsxs} from 'react/jsx-runtime'\n  +import {Fragment as _Fragment, jsx as _jsx, jsxs as _jsxs } from 'preact/jsx-runtime'\n  ```\n\n  </details>\n\n* `jsxRuntime` (`'automatic'` or `'classic'`, default: `'automatic'`)\n  — JSX runtime to use;\n  the automatic runtime compiles to `import _jsx from\n  '$importSource/jsx-runtime'\\n_jsx('p')`;\n  the classic runtime compiles to calls such as `h('p')`\n\n  > 👉 **Note**: support for the classic runtime is deprecated and will\n  > likely be removed in the next major version.\n\n  <details><summary>Expand example</summary>\n\n  If `file` is the contents of `example.mdx` from [§ Use][use], then:\n\n  ```tsx\n  compile(file, {jsxRuntime: 'classic'})\n  ```\n\n  …yields this difference:\n\n  ```diff\n  -import {Fragment as _Fragment, jsx as _jsx, jsxs as _jsxs} from 'react/jsx-runtime'\n  +import React from 'react'\n\n  export function Thing() {\n  -  return _jsx(_Fragment, {children: 'World'})\n  +  return React.createElement(React.Fragment, null, 'World!')\n  }\n  …\n  ```\n\n  </details>\n\n* `outputFormat` (`'function-body'` or `'program'`, default: `'program'`)\n  — output format to generate;\n  in most cases `'program'` should be used, it results in a whole program;\n  internally [`evaluate`][api-evaluate] uses `'function-body'` to compile to\n  code that can be passed to [`run`][api-run];\n  in some cases, you might want what `evaluate` does in separate steps, such\n  as when compiling on the server and running on the client.\n\n  <details><summary>Expand example</summary>\n\n  With a module `example.js`:\n\n  ```tsx\n  import {compile} from '@mdx-js/mdx'\n\n  const code = 'export const no = 3.14\\n\\n# hi {no}'\n\n  console.log(String(await compile(code, {outputFormat: 'program'}))) // Default.\n  console.log(String(await compile(code, {outputFormat: 'function-body'})))\n  ```\n\n  …yields:\n\n  ```tsx\n  import {jsx as _jsx, jsxs as _jsxs} from 'react/jsx-runtime'\n  export const no = 3.14\n  function _createMdxContent(props) { /* … */ }\n  export default function MDXContent(props = {}) { /* … */ }\n  ```\n\n  ```tsx\n  'use strict'\n  const {Fragment: _Fragment, jsx: _jsx} = arguments[0]\n  const no = 3.14\n  function _createMdxContent(props) { /* … */ }\n  function MDXContent(props = {}) { /* … */ }\n  return {no, default: MDXContent}\n  ```\n\n  The `'program'` format will use import statements to import the runtime (and\n  optionally provider) and use an export statement to yield the `MDXContent`\n  component.\n\n  The `'function-body'` format will get the runtime (and optionally provider)\n  from `arguments[0]`, rewrite export statements, and use a return statement to\n  yield what was exported.\n\n  </details>\n\n* `mdExtensions` (`Array<string>`, default: `['.md', '.markdown', '.mdown',\n  '.mkdn', '.mkd', '.mdwn', '.mkdown', '.ron']`)\n  — list of markdown extensions, with dot\n  affects [§ Integrations][integrations]\n\n* `mdxExtensions` (`Array<string>`, default: `['.mdx']`)\n  — list of MDX extensions, with dot;\n  affects [§ Integrations][integrations]\n\n* `pragma` (`string`, default: `'React.createElement'`)\n  — pragma for JSX, used in the classic runtime as an identifier for function\n  calls: `<x />` to `React.createElement('x')`;\n  when changing this, you should also define `pragmaFrag` and\n  `pragmaImportSource` too\n\n  > 👉 **Note**: support for the classic runtime is deprecated and will\n  > likely be removed in the next major version.\n\n  <details><summary>Expand example</summary>\n\n  If `file` is the contents of `example.mdx` from [§ Use][use], then:\n\n  ```tsx\n  compile(file, {\n    jsxRuntime: 'classic',\n    pragma: 'preact.createElement',\n    pragmaFrag: 'preact.Fragment',\n    pragmaImportSource: 'preact/compat'\n  })\n  ```\n\n  …yields this difference:\n\n  ```diff\n  -import React from 'react'\n  +import preact from 'preact/compat'\n\n  export function Thing() {\n  -  return React.createElement(React.Fragment, null, 'World!')\n  +  return preact.createElement(preact.Fragment, null, 'World!')\n  }\n  …\n  ```\n\n  </details>\n\n* `pragmaFrag` (`string`, default: `'React.Fragment'`)\n  — pragma for fragment symbol, used in the classic runtime as an identifier\n  for unnamed calls: `<>` to `React.createElement(React.Fragment)`;\n  when changing this, you should also define `pragma` and `pragmaImportSource`\n  too\n\n  > 👉 **Note**: support for the classic runtime is deprecated and will\n  > likely be removed in the next major version.\n\n* `pragmaImportSource` (`string`, default: `'react'`)\n  — where to import the identifier of `pragma` from, used in the classic\n  runtime;\n  to illustrate, when `pragma` is `'a.b'` and `pragmaImportSource` is `'c'`\n  the following will be generated: `import a from 'c'` and things such as\n  `a.b('h1', {})`;\n  when changing this, you should also define `pragma` and `pragmaFrag` too\n\n  > 👉 **Note**: support for the classic runtime is deprecated and will\n  > likely be removed in the next major version.\n\n* `providerImportSource` (`string`, optional, example: `'@mdx-js/react'`)\n  — place to import a provider from;\n  normally it’s used for runtimes that support context (React, Preact), but\n  it can be used to inject components into the compiled code;\n  the module must export and identifier `useMDXComponents` which is called\n  without arguments to get an object of components (see\n  [`UseMdxComponents`][api-use-mdx-components])\n\n  <details><summary>Expand example</summary>\n\n  If `file` is the contents of `example.mdx` from [§ Use][use], then:\n\n  ```tsx\n  compile(file, {providerImportSource: '@mdx-js/react'})\n  ```\n\n  …yields this difference:\n\n  ```diff\n  import {Fragment as _Fragment, jsx as _jsx, jsxs as _jsxs} from 'react/jsx-runtime'\n  +import {useMDXComponents as _provideComponents} from '@mdx-js/react'\n\n  export function Thing() {\n    return _jsx(_Fragment, {children: 'World'})\n  }\n\n  function _createMdxContent(props) {\n    const _components = {\n      h1: 'h1',\n  +    ..._provideComponents(),\n      ...props.components\n    }\n    return _jsxs(_components.h1, {children: ['Hello ', _jsx(Thing, {})]})\n  }\n\n  export default function MDXContent(props = {}) {\n  -  const {wrapper: MDXLayout} = props.components || {}\n  +  const {wrapper: MDXLayout} = {\n  +    ..._provideComponents(),\n  +    ...props.components\n  +  }\n\n    return MDXLayout\n      ? _jsx(MDXLayout, {...props, children: _jsx(_createMdxContent, {})})\n      : _createMdxContent()\n  ```\n\n  </details>\n\n* `recmaPlugins` ([`PluggableList` from `unified`][unified-pluggable-list],\n  optional)\n  — list of [recma plugins][recma-plugins]\n\n  <details><summary>Expand example</summary>\n\n  ```tsx\n  import recmaMdxIsMdxComponent from 'recma-mdx-is-mdx-component'\n\n  await compile(file, {recmaPlugins: [recmaMdxIsMdxComponent]})\n  ```\n\n  </details>\n\n* `rehypePlugins` ([`PluggableList` from `unified`][unified-pluggable-list],\n  optional)\n  — list of [rehype plugins][rehype-plugins]\n\n  <details><summary>Expand example</summary>\n\n  ```tsx\n  import rehypeKatex from 'rehype-katex' // Render math with KaTeX.\n  import remarkMath from 'remark-math' // Support math like `$so$`.\n\n  await compile(file, {rehypePlugins: [rehypeKatex], remarkPlugins: [remarkMath]})\n\n  await compile(file, {\n    // A plugin with options:\n    rehypePlugins: [[rehypeKatex, {strict: true, throwOnError: true}]],\n    remarkPlugins: [remarkMath]\n  })\n  ```\n\n  </details>\n\n* `remarkPlugins` ([`PluggableList` from `unified`][unified-pluggable-list],\n  optional)\n  — list of [remark plugins][remark-plugins]\n\n  <details><summary>Expand example</summary>\n\n  ```tsx\n  import remarkFrontmatter from 'remark-frontmatter' // YAML and such.\n  import remarkGfm from 'remark-gfm' // Tables, footnotes, strikethrough, task lists, literal URLs.\n\n  await compile(file, {remarkPlugins: [remarkGfm]}) // One plugin.\n  await compile(file, {remarkPlugins: [[remarkFrontmatter, 'toml']]}) // A plugin with options.\n  await compile(file, {remarkPlugins: [remarkGfm, remarkFrontmatter]}) // Two plugins.\n  await compile(file, {remarkPlugins: [[remarkGfm, {singleTilde: false}], remarkFrontmatter]}) // Two plugins, first w/ options.\n  ```\n\n  </details>\n\n* `remarkRehypeOptions` ([`Options` from\n  `remark-rehype`][remark-rehype-options], optional)\n  — options to pass through to `remark-rehype`;\n  in particular, you might want to pass configuration for footnotes if your\n  content is not in English;\n  the option `allowDangerousHtml` will always be set to `true` and the MDX\n  nodes (see [`nodeTypes`][api-node-types]) are passed through.\n\n  <details><summary>Expand example</summary>\n\n  ```tsx\n  compile({value: '…'}, {remarkRehypeOptions: {clobberPrefix: 'comment-1'}})\n  ```\n\n  </details>\n\n* `stylePropertyNameCase` (`'css'` or `'dom`, default: `'dom'`)\n  — casing to use for property names in `style` objects;\n  CSS casing is for example `background-color` and `-webkit-line-clamp`;\n  DOM casing is for example `backgroundColor` and `WebkitLineClamp`;\n  for JSX components written in MDX, the author has to be aware of which\n  framework they use and write code accordingly;\n  for AST nodes generated by this project, this option configures it\n\n* `tableCellAlignToStyle` (`boolean`, default: `true`)\n  — turn obsolete `align` properties on `td` and `th` into CSS `style`\n  properties\n\n### `RunOptions`\n\nConfiguration to run compiled code (TypeScript type).\n\n`Fragment`, `jsx`, and `jsxs` are used when the code is compiled in production\nmode (`development: false`).\n`Fragment` and `jsxDEV` are used when compiled in development mode\n(`development: true`).\n`useMDXComponents` is used when the code is compiled with\n`providerImportSource: '#'` (the exact value of this compile option doesn’t\nmatter).\n\n###### Fields\n\n* `Fragment` ([`Fragment`][api-fragment], **required**)\n  — symbol to use for fragments\n* `baseUrl` (`URL` or `string`, optional, example: `import.meta.url`)\n  — use this URL as `import.meta.url` and resolve `import` and\n  `export … from` relative to it;\n  this option can also be given at compile time in `CompileOptions`;\n  you should pass this (likely at runtime), as you might get runtime errors\n  when using `import.meta.url` / `import` / `export … from ` otherwise\n* `jsx` ([`Jsx`][api-jsx], optional)\n  — function to generate an element with static children in production mode\n* `jsxDEV` ([`JsxDev`][api-jsx-dev], optional)\n  — function to generate an element in development mode\n* `jsxs` ([`Jsx`][api-jsx], optional)\n  — function to generate an element with dynamic children in production mode\n* `useMDXComponents` ([`UseMdxComponents`][api-use-mdx-components], optional)\n  — function to get components to use\n\n###### Examples\n\nA `/jsx-runtime` module will expose `Fragment`, `jsx`, and `jsxs`:\n\n```tsx\nimport * as runtime from 'react/jsx-runtime'\n\nconst {default: Content} = await evaluate('# hi', {...runtime, baseUrl: import.meta.url, ...otherOptions})\n\n```\n\nA `/jsx-dev-runtime` module will expose `Fragment` and `jsxDEV`:\n\n```tsx\nimport * as runtime from 'react/jsx-dev-runtime'\n\nconst {default: Content} = await evaluate('# hi', {development: true, baseUrl: import.meta.url, ...runtime, ...otherOptions})\n```\n\nOur providers will expose `useMDXComponents`:\n\n```tsx\nimport * as provider from '@mdx-js/react'\nimport * as runtime from 'react/jsx-runtime'\n\nconst {default: Content} = await evaluate('# hi', {...provider, ...runtime, baseUrl: import.meta.url, ...otherOptions})\n```\n\n### `UseMdxComponents`\n\nGet components (TypeScript type).\n\n###### Parameters\n\nThere are no parameters.\n\n###### Returns\n\nComponents ([`MDXComponents` from `mdx/types.js`][mdx-types-components]).\n\n## Types\n\nThis package is fully typed with [TypeScript][].\nIt exports the additional types\n[`CompileOptions`][api-compile-options],\n[`EvaluateOptions`][api-evaluate-options],\n[`Fragment`][api-fragment],\n[`Jsx`][api-jsx],\n[`JsxDev`][api-jsx-dev],\n[`ProcessorOptions`][api-processor-options],\n[`RunOptions`][api-run-options], and\n[`UseMdxComponents`][api-use-mdx-components].\n\nFor types of evaluated MDX to work, make sure the TypeScript `JSX` namespace is\ntyped.\nThis is done by installing and using the types of your framework, such as\n[`@types/react`](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react).\nSee [§ Types][types] on our website for information.\n\n## Architecture\n\nTo understand what this project does, it’s very important to first understand\nwhat unified does: please read through the [`unifiedjs/unified`][unified] readme\n(the part until you hit the API section is required reading).\n\n`@mdx-js/mdx` is a unified pipeline — wrapped so that most folks don’t need to\nknow about unified.\nThe processor goes through these steps:\n\n1. parse MDX (serialized markdown with embedded JSX, ESM, and expressions)\n   to mdast (markdown syntax tree)\n2. transform through remark (markdown ecosystem)\n3. transform mdast to hast (HTML syntax tree)\n4. transform through rehype (HTML ecosystem)\n5. transform hast to esast (JS syntax tree)\n6. do the work needed to get a component\n7. transform through recma (JS ecosystem)\n8. serialize esast as JavaScript\n\nThe *input* is MDX.\nThat’s serialized markdown with embedded JSX, ESM, and expressions.\nIn the case of JSX,\nthe tags are *intertwined* with markdown.\nThe markdown is parsed with [`micromark/micromark`][micromark] and the embedded\nJS with one of its extensions\n[`micromark/micromark-extension-mdxjs`][micromark-extension-mdxjs] (which in\nturn uses [acorn][]).\nThen [`syntax-tree/mdast-util-from-markdown`][mdast-util-from-markdown] and its\nextension [`syntax-tree/mdast-util-mdx`][mdast-util-mdx] are used to turn the\nresults from the parser into a syntax tree: [mdast][].\n\nMarkdown is closest to the source format.\nThis is where [remark plugins][remark-plugins] come in.\nTypically, there shouldn’t be much going on here.\nBut perhaps you want to support GFM (tables and such) or frontmatter?\nThen you can add a plugin here: `remark-gfm` or `remark-frontmatter`,\nrespectively.\n\nAfter markdown, we go to [hast][] (HTML).\nThis transformation is done by\n[`syntax-tree/mdast-util-to-hast`][mdast-util-to-hast].\nWait, what, why is HTML needed?\nPart of the reason is that we care about HTML semantics: we want to know that\nsomething is an `<a>`, not whether it’s a link with a resource (`[text](url)`)\nor a reference to a defined link definition (`[text][id]\\n\\n[id]: url`).\nSo an HTML AST is *closer* to where we want to go.\nAnother reason is that there are many things folks need when they go MDX -> JS,\nmarkdown -> HTML, or even folks who only process their HTML -> HTML: use cases\nother than MDX.\nBy having a single AST in these cases and writing a plugin that works on that\nAST, that plugin can supports *all* these use cases (for example,\n[`rehypejs/rehype-highlight`][rehype-highlight] for syntax highlighting or\n[`rehypejs/rehype-katex`][rehype-katex] for math).\nSo, this is where [rehype plugins][rehype-plugins] come in: most of the plugins,\nprobably.\n\nThen we go to JavaScript: [esast][] (JS; an\nAST which is compatible with estree but looks a bit more like other unist ASTs).\nThis transformation is done by\n[`rehype-recma`][rehype-recma].\nThis is a newer ecosystem.\nThere are some [recma plugins][recma-plugins] already.\nIt’s where `@mdx-js/mdx` does its thing: where it adds imports/exports,\nwhere it compiles JSX away into `_jsx()` calls, and where it does the other cool\nthings that it provides.\n\nFinally, The output is serialized JavaScript.\nThat final step is done by [astring][], a\nsmall and fast JS generator.\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, `@mdx-js/mdx@^3`,\ncompatible with 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][] © Compositor and [Vercel][]\n\n[acorn]: https://github.com/acornjs/acorn\n\n[api-compile]: #compilefile-options\n\n[api-compile-options]: #compileoptions\n\n[api-compile-sync]: #compilesyncfile-options\n\n[api-create-processor]: #createprocessoroptions\n\n[api-evaluate]: #evaluatefile-options\n\n[api-evaluate-options]: #evaluateoptions\n\n[api-evaluate-sync]: #evaluatesyncfile-options\n\n[api-fragment]: #fragment\n\n[api-jsx]: #jsx\n\n[api-jsx-dev]: #jsxdev\n\n[api-node-types]: #nodetypes\n\n[api-processor-options]: #processoroptions\n\n[api-run]: #runcode-options\n\n[api-run-options]: #runoptions\n\n[api-run-sync]: #runsynccode-options\n\n[api-use-mdx-components]: #usemdxcomponents\n\n[astring]: https://github.com/davidbonnet/astring\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/@mdx-js/mdx\n\n[downloads-badge]: https://img.shields.io/npm/dm/@mdx-js/mdx.svg\n\n[esast]: https://github.com/syntax-tree/esast\n\n[esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c\n\n[esmsh]: https://esm.sh\n\n[hast]: https://github.com/syntax-tree/hast\n\n[integrations]: https://mdxjs.com/getting-started/#integrations\n\n[mdast]: https://github.com/syntax-tree/mdast\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[mdast-util-to-hast]: https://github.com/syntax-tree/mdast-util-to-hast\n\n[mdx-syntax]: https://mdxjs.com/docs/what-is-mdx/#mdx-syntax\n\n[mdx-types-components]: https://github.com/DefinitelyTyped/DefinitelyTyped/blob/HEAD/types/mdx/types.d.ts#L65\n\n[mdx-types-module]: https://github.com/DefinitelyTyped/DefinitelyTyped/blob/HEAD/types/mdx/types.d.ts#L101\n\n[micromark]: https://github.com/micromark/micromark\n\n[micromark-extension-mdxjs]: https://github.com/micromark/micromark-extension-mdxjs\n\n[mit]: https://github.com/mdx-js/mdx/blob/main/packages/mdx/license\n\n[npm]: https://docs.npmjs.com/cli/install\n\n[recma-plugins]: https://github.com/mdx-js/recma/blob/main/doc/plugins.md#list-of-plugins\n\n[rehype-highlight]: https://github.com/rehypejs/rehype-highlight\n\n[rehype-katex]: https://github.com/remarkjs/remark-math/tree/main/packages/rehype-katex\n\n[rehype-plugins]: https://github.com/rehypejs/rehype/blob/main/doc/plugins.md#list-of-plugins\n\n[rehype-recma]: https://github.com/mdx-js/recma/tree/main/packages/rehype-recma\n\n[remark-plugins]: https://github.com/remarkjs/remark/blob/main/doc/plugins.md#list-of-plugins\n\n[remark-rehype-options]: https://github.com/remarkjs/remark-rehype#options\n\n[security]: https://mdxjs.com/getting-started/#security\n\n[size]: https://bundlejs.com/?q=@mdx-js/mdx\n\n[size-badge]: https://img.shields.io/bundlejs/size/@mdx-js/mdx\n\n[source-map]: https://github.com/mozilla/source-map\n\n[sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg\n\n[support]: https://mdxjs.com/community/support/\n\n[types]: https://mdxjs.com/getting-started/#types\n\n[typescript]: https://www.typescriptlang.org\n\n[unified]: https://github.com/unifiedjs/unified\n\n[unified-pluggable-list]: https://github.com/unifiedjs/unified#pluggablelist\n\n[unified-processor]: https://github.com/unifiedjs/unified#processor\n\n[use]: #use\n\n[using-mdx]: https://mdxjs.com/docs/using-mdx/\n\n[vercel]: https://vercel.com\n\n[vfile]: https://github.com/vfile/vfile\n\n[vfile-compatible]: https://github.com/vfile/vfile#compatible\n","repository":{"type":"git","url":"git+https://github.com/mdx-js/mdx.git","directory":"packages/mdx/"},"users":{"flumpus-dev":true,"hudson-newey":true},"bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"license":"MIT","versions":{"0.4.0":{"name":"@mdx-js/mdx","version":"0.4.0","keywords":["react","markdown","remark","mdxast","mdx"],"license":"MIT","_id":"@mdx-js/mdx@0.4.0","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"homepage":"https://github.com/mdx-js/mdx#readme","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"129ec361d4e84cb7a93f75fc72d5284d107cbdfb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.4.0.tgz","fileCount":4,"integrity":"sha512-9HvpIpsI8eycuey/kQ86w7K9FAojTTvL09wzNRN0n0R+h4mWIWu2kIeRYGHeLqDN7ouaValq0Im0Cd/Tl9bAVg==","signatures":[{"sig":"MEUCICYvGMpwXEo7a1yHCb3BbUuFI7bg+JnF2RsQ06ZdFcV1AiEAw3aK1PUCgPVxsvjwSoDlpO8eCblxubKeR9MAZod13xc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":5113},"files":["index.js"],"scripts":{"test":"ava -v"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"5.7.1","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"9.5.0","dependencies":{"unified":"^6.1.6","remark-emoji":"^2.0.1","remark-parse":"^5.0.0","remark-images":"^0.4.0","@mdx-js/mdxast":"^0.4.0","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^3.0.0","remark-squeeze-paragraphs":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^0.25.0"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.4.0_1521813078075_0.26878642566477384","host":"s3://npm-registry-packages"}},"0.5.0":{"name":"@mdx-js/mdx","version":"0.5.0","keywords":["react","markdown","remark","mdxast","mdx"],"license":"MIT","_id":"@mdx-js/mdx@0.5.0","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"homepage":"https://github.com/mdx-js/mdx#readme","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"4fcef6f825e04858479ceadf9e617faba7b6ff95","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.5.0.tgz","fileCount":4,"integrity":"sha512-nhXqSoysTsJ3I0lB7SBpGhBt5B8mUkccYtKzjvFDnJMsLgFHsm7hnYDFvnB9O8NFAGFUSAJOnMfJ6slzzNbzLg==","signatures":[{"sig":"MEUCIFQkOoCC7Sdnrak/RZxnXeITrL0NR2LezHwcwrwYCUXhAiEApMEYbDUPtlBpB1r7mF+WNvLVztp3K+nJ6rUWV/aCu1I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":5118},"files":["index.js"],"scripts":{"test":"ava -v"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"5.7.1","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"9.5.0","dependencies":{"unified":"^6.1.6","remark-emoji":"^2.0.1","remark-parse":"^5.0.0","remark-images":"^0.4.0","@mdx-js/mdxast":"^0.4.0","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^3.0.0","remark-squeeze-paragraphs":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"ava":"^0.25.0"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.5.0_1521813359264_0.2632088823720924","host":"s3://npm-registry-packages"}},"0.7.0-0":{"name":"@mdx-js/mdx","version":"0.7.0-0","keywords":["react","markdown","remark","mdxast","mdx"],"license":"MIT","_id":"@mdx-js/mdx@0.7.0-0","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"homepage":"https://github.com/mdx-js/mdx#readme","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"9e8fc694de464ee32cde3979ce99f1054ed6cb46","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.7.0-0.tgz","fileCount":4,"integrity":"sha512-+Bqiy/kzeD454Dn2ot7GwgungL64IpH7WGbe2tYR5LMMLngrZYnkjAKXa6U3SgjftTXpZnt/i9KANQSrVByt7w==","signatures":[{"sig":"MEUCIQC8b8touTT4tmgV0A5C3R50bVRv4JCxEmswnx2skuzxuQIgd/vJe12jdXc9PCg+qwEnV64293bznCWA562D7BBVvl0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":3596},"files":["index.js"],"scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"5.8.0","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"9.5.0","dependencies":{"unified":"^6.1.6","remark-parse":"^5.0.0","remark-images":"^0.7.0-0","@mdx-js/mdxast":"^0.7.0-0","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^3.0.0","remark-squeeze-paragraphs":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^22.4.3","@babel/core":"^7.0.0-beta.42","hast-util-select":"^1.0.1","request-image-size":"^2.1.0","@babel/plugin-syntax-jsx":"^7.0.0-beta.42"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.7.0-0_1522707803825_0.5899917972051192","host":"s3://npm-registry-packages"}},"0.7.0-1":{"name":"@mdx-js/mdx","version":"0.7.0-1","keywords":["react","markdown","remark","mdxast","mdx"],"license":"MIT","_id":"@mdx-js/mdx@0.7.0-1","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"homepage":"https://github.com/mdx-js/mdx#readme","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"962f122135856a889956864b96ed8a13a94740c3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.7.0-1.tgz","fileCount":4,"integrity":"sha512-LMejtGtTBgIk1J1DsuUgzqDLftRb5JkcUHY8HUQJyTILnx/Sl23o6/QPMJvfNA6wEnuzgWSWEsX8nqJzx6cHjg==","signatures":[{"sig":"MEYCIQDxbsxuzao/qvlTtKlIE24BjRUcStoZ7ifjSZ5HOOJlJAIhAMwkm7vOFrrpZhHdWNO4Bnroe6FqWQeEOijJaSdGm3/3","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":3596},"files":["index.js"],"scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"5.8.0","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"9.5.0","dependencies":{"unified":"^6.1.6","remark-parse":"^5.0.0","remark-images":"^0.7.0-1","@mdx-js/mdxast":"^0.7.0-1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^3.0.0","remark-squeeze-paragraphs":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^22.4.3","@babel/core":"^7.0.0-beta.42","hast-util-select":"^1.0.1","request-image-size":"^2.1.0","@babel/plugin-syntax-jsx":"^7.0.0-beta.42"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.7.0-1_1522707903911_0.15426351371973412","host":"s3://npm-registry-packages"}},"0.7.0-2":{"name":"@mdx-js/mdx","version":"0.7.0-2","keywords":["react","markdown","remark","mdxast","mdx"],"license":"MIT","_id":"@mdx-js/mdx@0.7.0-2","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"homepage":"https://github.com/mdx-js/mdx#readme","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"60a43f9b8af8f1711a0bcaa5ffa33598ca74d76c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.7.0-2.tgz","fileCount":6,"integrity":"sha512-HZu6xoqvmoLWnNIIKsr1W1d9y5PWHEyyVc79LXncUQG5eOc9yVGDewRBCdPRCsaQ62ziB+xKIKW5Dmb6nckVRw==","signatures":[{"sig":"MEUCIQDV2gww87/GmNuW/VVpOGV/mhbCnux+3GTrMWhf2MqyvQIgQaG97DatdqfuYfK1PfkhcQR1wxDs7mS0xhjO53SxDug=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6453},"files":["index.js","mdx-ast-to-mdx-hast.js","mdx-hast-to-jsx.js"],"scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"5.8.0","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"9.5.0","dependencies":{"unified":"^6.1.6","remark-parse":"^5.0.0","remark-images":"^0.7.0-2","@mdx-js/mdxast":"^0.7.0-2","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^3.0.0","remark-squeeze-paragraphs":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^22.4.3","@babel/core":"^7.0.0-beta.42","hast-util-select":"^1.0.1","request-image-size":"^2.1.0","@babel/plugin-syntax-jsx":"^7.0.0-beta.42"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.7.0-2_1522708087624_0.14107259382990134","host":"s3://npm-registry-packages"}},"0.7.0":{"name":"@mdx-js/mdx","version":"0.7.0","keywords":["react","markdown","remark","mdxast","mdx"],"license":"MIT","_id":"@mdx-js/mdx@0.7.0","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"homepage":"https://github.com/mdx-js/mdx#readme","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"62f112a42115294794bd9cd2f13a96c0fbaeef7f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.7.0.tgz","fileCount":6,"integrity":"sha512-LWOMvjkNXO7+cHAbQ5hJD7BMW6gU/xNMGEvw++t98SdNN+t/lgPMGZTn0GipHe8EJI8PqEfMAHOzyBrqfk0c1g==","signatures":[{"sig":"MEQCIHXNtTtEY1wP6knwDP7nL6CR3SmOucDj23sfdF6inX5BAiApe99EJekIBxLI79FtLv65s/iFSZLO/w3g61qdymC3AA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6447},"files":["index.js","mdx-ast-to-mdx-hast.js","mdx-hast-to-jsx.js"],"scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"5.8.0","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"9.5.0","dependencies":{"unified":"^6.1.6","remark-parse":"^5.0.0","remark-images":"^0.7.0","@mdx-js/mdxast":"^0.7.0","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^3.0.0","remark-squeeze-paragraphs":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^22.4.3","@babel/core":"^7.0.0-beta.42","hast-util-select":"^1.0.1","request-image-size":"^2.1.0","@babel/plugin-syntax-jsx":"^7.0.0-beta.42"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.7.0_1522708282961_0.32466245160079565","host":"s3://npm-registry-packages"}},"0.7.1":{"name":"@mdx-js/mdx","version":"0.7.1","keywords":["react","markdown","remark","mdxast","mdx"],"license":"MIT","_id":"@mdx-js/mdx@0.7.1","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"homepage":"https://github.com/mdx-js/mdx#readme","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"a8a74a76ceda1af490dbe51b6d88f99ab5f965d4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.7.1.tgz","fileCount":6,"integrity":"sha512-fiViW+PwN6q5+letzrbobJzl7GfCHyzbhXDe+dYlhjHodLA/LneDGDy59dYAhf8bzGPUge3ksqyYkuhS83sWwA==","signatures":[{"sig":"MEUCIQCMDyVKr5N0P+lI+/227ubMdPel4qKYk1G6h+fA2jVA5wIgOMkI5h5UWdEqEzfg5s89cRWcWtbQv56HV0/W9QbaGcg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6447},"files":["index.js","mdx-ast-to-mdx-hast.js","mdx-hast-to-jsx.js"],"scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"5.8.0","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"9.5.0","dependencies":{"unified":"^6.1.6","remark-parse":"^5.0.0","remark-images":"^0.7.1","@mdx-js/mdxast":"^0.7.0","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^3.0.0","remark-squeeze-paragraphs":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^22.4.3","@babel/core":"^7.0.0-beta.42","hast-util-select":"^1.0.1","request-image-size":"^2.1.0","@babel/plugin-syntax-jsx":"^7.0.0-beta.42"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.7.1_1522708805999_0.02087071362342119","host":"s3://npm-registry-packages"}},"0.7.2":{"name":"@mdx-js/mdx","version":"0.7.2","keywords":["react","markdown","remark","mdxast","mdx"],"license":"MIT","_id":"@mdx-js/mdx@0.7.2","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"homepage":"https://github.com/mdx-js/mdx#readme","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"f15aaa63d6b9972f28729863ac0d8b70822fbeb0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.7.2.tgz","fileCount":6,"integrity":"sha512-5TR/R3v3iYxGjEp4rFoAnKvdiD2fW4dZCzbvoES87eiVynvSJ7vDVaEFOSCNXdrgY4s8XvK+p8IYjSOdQ7hKMw==","signatures":[{"sig":"MEUCIGwfnRCAqHC+KrcI00D84QD92z11CKOxGAYLBxWHedU8AiEAo7YgdBX6LJ36OdYGoYRo6iAgQE1WCCbByEeBsmELLbI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6480,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa3q9SCRA9TVsSAnZWagAA6qQP/3o0RYNORzo3oZTakoow\n+/3ona1C1dedCXzLbAydCpA842Ywk63F6V7HrTKAmq7f6iBrurFv2OPdQ/6B\nxXxnpfW0nREoQgP2Y56cBD6pbo1gtz4Q3HvzPZNoQWFERC44LflnlpRVeYLq\nEXJ9j85j5+vVdg7SjSfmxAAagRQx8bjfaZR/pjgcFIXHVPAwqS3fLZ4EBbA0\ngCTH9vv+tSzVIhXk/GKkjGPrPTIYixnSqYN7rIhIhGIYrTLrqoMeFxNo930o\nz6FmWpf9CIm4oJA2FifP1wu7cig0Z2/djLHLLrMjlCUlB8WOMr/PV4ELTtgY\nTTLIyt6LXWp6UFY0OUyynWdwCYahGHtTtHDbT1L0AAaiBVNPvZYqWQ7gFdLN\npnL6f9KP3CEm6qNh6NnhvIfOTcit6b03YgG14rVGfL2zD9bO9Pwsrxq+WQQX\nMS3OulBqdXTATqOs0mHOIQYa9rxakB97phGssBhd3P99cqSo4i/SjRo6MRFN\nekc2yRubK49yfXJp51S+yYyBrv/i6YVD2dUs/8yp4kNY4kCgEI74iWOeIJXz\n6/o11ZZPWIRV+lo291dYw1XiDIzC2flxl7aelFz5IvuazQNSiKNPu9PQDJFL\nG4mYBO4RsgJ2q3eg/CMtqAibzs4r+zc5Q4afva8ZVPcD9hAFjPjARyKHoGqi\nrEjJ\r\n=qAlU\r\n-----END PGP SIGNATURE-----\r\n"},"files":["index.js","mdx-ast-to-mdx-hast.js","mdx-hast-to-jsx.js"],"scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"5.8.0","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"9.5.0","dependencies":{"unified":"^6.1.6","remark-parse":"^5.0.0","remark-images":"^0.7.2","@mdx-js/mdxast":"^0.7.2","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^3.0.0","remark-squeeze-paragraphs":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^22.4.3","@babel/core":"^7.0.0-beta.44","hast-util-select":"^1.0.1","request-image-size":"^2.1.0","@babel/plugin-syntax-jsx":"^7.0.0-beta.44"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.7.2_1524543314029_0.7995373582832939","host":"s3://npm-registry-packages"}},"0.7.3":{"name":"@mdx-js/mdx","version":"0.7.3","keywords":["react","markdown","remark","mdxast","mdx"],"license":"MIT","_id":"@mdx-js/mdx@0.7.3","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"homepage":"https://github.com/mdx-js/mdx#readme","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"5434436c3c7156c20b5e6253b61f167463bbbee5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.7.3.tgz","fileCount":6,"integrity":"sha512-/oAZ9/4ht97FOanUnJ7zh7I/Ndq/0EXKxcNCoyUa7NvL80gIGPE1ErRIyj7T3Gw69eXeyiO3F8tevVPvYtD6xw==","signatures":[{"sig":"MEUCIQD/fho/4aFIUFuB+jYmbdFBPN9+OpzwC8fy3BQxjm/T6QIgJ0pZOecKIZ6ahyRayqWsWtR/1+Ysnj9QGZOTScCqo+k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6480,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa3rEaCRA9TVsSAnZWagAABIcP/A0XsZbrmHL+ERqLVWyl\nAeS4scaTwkOkpBXEdJAXfnrEVSG9kmUqtdx0wK8VtfcCV97JV5tErrLrM0ZY\nrTISI2YRCDfojhxPYuHhb+3ugoMcE0Xt2ogEWodIOTwBT5rSd7rsI2pjf1jv\nBjgGz2et792eQQlC0vNrM7KoonZRiYOcF7yF21R5dMl3GRZ13P8R0KltWFXL\n4s3UIYOTuckLScfpEhqFAu630vHoVQlXk8omDySTyPk2lMtdzK0V8aEI5DiO\nso2NWK2lU19lXcfIZE+jVT6zYUKye23m2NU7IOz8rzGQLh4HsfktNOaKGr8J\nSk5iOOdQtFugTNYZ2rclb8tNN8+WTi6Ne2NKmdDXtLaNTCGU2kjhVgmjeeXc\nOPMrhr3gG2oEfCbziRQVB1bGdnOZVQFRcQXGKkcEm5NqqQurNMK5PURItbsL\ne9UvK+vZL7xtSnE+wkNis0daSNdPSDaVpoMT6ia1u3zExzn23Fd4h52HRZWO\nj20WpKgRidMano8MIO8qQLSRWurK9kkQK62vrQVAl/7C+rJXSemmQ/gdXN2P\nhpt3/+2iGltkBKoko3Hwp0Blam7K5huIfHEc/fslshWTp2SI7lIU7anp33Ws\nlaEpp31suJ2v7vnsFSytx1OSwr4KDFKqCe/WeW9TYNWvT1pYf2drngywyjCL\nGJ5L\r\n=Yr+j\r\n-----END PGP SIGNATURE-----\r\n"},"files":["index.js","mdx-ast-to-mdx-hast.js","mdx-hast-to-jsx.js"],"scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"5.8.0","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"9.5.0","dependencies":{"unified":"^6.1.6","remark-parse":"^5.0.0","remark-images":"^0.7.2","@mdx-js/mdxast":"^0.7.2","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^3.0.0","remark-squeeze-paragraphs":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^22.4.3","@babel/core":"^7.0.0-beta.44","hast-util-select":"^1.0.1","request-image-size":"^2.1.0","@babel/plugin-syntax-jsx":"^7.0.0-beta.44"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.7.3_1524543770113_0.4092364258369017","host":"s3://npm-registry-packages"}},"0.7.4":{"name":"@mdx-js/mdx","version":"0.7.4","keywords":["react","markdown","remark","mdxast","mdx"],"license":"MIT","_id":"@mdx-js/mdx@0.7.4","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"homepage":"https://github.com/mdx-js/mdx#readme","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"4c667b0823a096a1e99795de7f8c0cf348eeede5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.7.4.tgz","fileCount":6,"integrity":"sha512-87pjkce6YOhtcux+PrgmFdbnmtSue1qi2tapoOfnxAo5rznW9L2RxQtdo2dsg9mSCG0QnzlSOJPk6YqauBIkWQ==","signatures":[{"sig":"MEYCIQD1bIEMqtdHhDjwBZI4hUphcjYvrF2LnsbjsvfGjXzY0wIhAI8xV0Ob+ibdAr3Gd1yoDAA47/xBhBtmo5AKD5rAPRPB","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6480,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa47bgCRA9TVsSAnZWagAA8+cP/1EwIgj8gdDKGYc6tRhM\nPrdZC3NdKuTBSTMzuVNNrjmzCUzSsd5P5LmASzThD8GXnXiC/nYC+0ZjPD8T\nYZzlqP6ol7SbfbKhwW46GpEhpdTLbjms5PtH8hpjzEJBccd5T2CLyjrtS+4C\ny+gqxbrvYibvfpIFGb04f5Ubh5CDMS08DG1zw/T6NydD2H+vq45J4Syau4mp\nbZRRKwNN8tUz9dq2wSK3MXHE1eJTndf9QW7vjeoIMMpoTQSMa7JKnuoAOMc5\n5/JvswfFEaN6xZIHr7/V8jAvIZluFrHTyznBa792CkODIlilt/uOhBjrYl/c\nd5OuoOP/uwcX5XoGoUJhdr3kCGIJB8bcSMf+Rm5+MKLcwNRXesM+XJZC0EuE\nA4etldFy5IzZFZQZfhhEHA5oI1DlfQbVaktDzvEt42aR+tv0Qkg+8ZFcm2MT\nbZYscNEpSeqcYUGThXQk1djEJbu/tl3Tc1xkthxpdP6v1zrBGI215wAmle+x\nlRX15C9ajQ2X7GCROEYpNFVN3Fay98PHLBTS6z0psz23cBE/EHQgdYEbi3kQ\naaT2CUK+P2j0Je2PfeLRTFGJTXW/VRXiVWSBxXJL1GBNMAhzpy1trssI7P0O\nEvw0hfU3Hftfn17j/Q7V6UK0kxq+uC7EkzdS24rerSIPIs8aU4RYuEzVaRho\ni52q\r\n=CqGI\r\n-----END PGP SIGNATURE-----\r\n"},"files":["index.js","mdx-ast-to-mdx-hast.js","mdx-hast-to-jsx.js"],"scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"6.0.0","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"9.11.1","dependencies":{"unified":"^6.1.6","remark-parse":"^5.0.0","remark-images":"^0.7.4","@mdx-js/mdxast":"^0.7.2","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^3.0.0","remark-squeeze-paragraphs":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^22.4.3","@babel/core":"^7.0.0-beta.44","hast-util-select":"^1.0.1","request-image-size":"^2.1.0","@babel/plugin-syntax-jsx":"^7.0.0-beta.44"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.7.4_1524872928565_0.27742483507486293","host":"s3://npm-registry-packages"}},"0.8.0":{"name":"@mdx-js/mdx","version":"0.8.0","keywords":["react","markdown","remark","mdxast","mdx"],"license":"MIT","_id":"@mdx-js/mdx@0.8.0","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"homepage":"https://github.com/mdx-js/mdx#readme","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"a9fde68032d8538cc0b5373e60a30af50524e88a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.8.0.tgz","fileCount":6,"integrity":"sha512-SaSj/PdxeGhJomty0YZ0Uuv3hIw+55GA7eMNIsn+M67IEgzsAQV0zHy0bb7+urTVsQx5vp0Jmh7wHnCo8oyULg==","signatures":[{"sig":"MEUCIQD1bpWZJRvaNBlFEitK6EbfCA1eEB1WQuAM2N7zGCM88AIgekPqV0U0XZ+rD2jm84N603HKAIdleVcFaDnNIIdXujs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6383,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa5IZeCRA9TVsSAnZWagAAuDwP/2lS/OLPItWP9Y3qndGm\ndLhpwnv8pE1B9bYuIw3n2wG7nAQ6zLUcsQuZEmeUfvzVY4VG6wAJ93j+Gl+b\nH1yRZesO0sKyZFQJJnEmcVboNuPNKKghFXP1DN1AvrJwMojw3XU/xQ1z1BJt\n3xec+LYHwtQ5o5P98R9ZhLwMsm24HMOY9oYMALJTThe0OLD0xx/4FxoTyQk6\nTdhTOW6OclzokS4lu0Fb1NY91c3UM7M4ckiskW6LWf8YOO7JF7DBXR3p4oP4\n0DLkN8kK3HWlvsdI+0JfVnaKhiwkeAYrV/je36tuAQvooEWH/GEiLi4BviQz\nMIZwWpDTQNwROn+d34zsmsh/fMFaYkyRMvAd7CTO4f8xhdgVUY5xZZqjvZlo\n9pQdujH9W/Ah6TocCZnvD3Y9wJF4pgzab999je5h51qgOBj3mGOpyuxdr4dv\nI7MvMGTpt1jm8aJPF1dZGTuSPODYJ0DKFexUoY+Wd+lLDVKHyuHL+i+dDsrp\nGql/Fr7Cd2ym4bX7I9oanxg4MZBoYCUzED07lY6YFu6lpo04bIzqK4HcZX6g\n9X1ImPcCZDenlDprEJSSKDLxn8OBaljipf/46cOBUWlXi+KpktfA9EQ7Lmd4\n0zT+r2AujFaD5QR17o/Nu1i7fcOac5d4eo/+UJe/kmBUpxptUBE87oB87MMp\nrVni\r\n=CWPE\r\n-----END PGP SIGNATURE-----\r\n"},"files":["index.js","mdx-ast-to-mdx-hast.js","mdx-hast-to-jsx.js"],"scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"5.6.0","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"9.11.1","dependencies":{"unified":"^6.1.6","remark-parse":"^5.0.0","@mdx-js/mdxast":"^0.7.2","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^3.0.0","remark-squeeze-paragraphs":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^22.4.3","@babel/core":"^7.0.0-beta.44","hast-util-select":"^1.0.1","request-image-size":"^2.1.0","@babel/plugin-syntax-jsx":"^7.0.0-beta.44"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.8.0_1524926045577_0.8282296859171276","host":"s3://npm-registry-packages"}},"0.8.1-0":{"name":"@mdx-js/mdx","version":"0.8.1-0","keywords":["react","markdown","remark","mdxast","mdx"],"license":"MIT","_id":"@mdx-js/mdx@0.8.1-0","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"homepage":"https://github.com/mdx-js/mdx#readme","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"1160b17a442f90fdcfcf622a74e04067dec21b60","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.8.1-0.tgz","fileCount":6,"integrity":"sha512-wF4reHPi363L4rbIuzHIPgRu2Sl8LmyqXxd2C5lLVnL0ux3F1w88OBe+6mO9Vjd1undM8o6B6P9xn/T+W4R/7A==","signatures":[{"sig":"MEUCIQDbD/JIQzdgyoT/EwyJAiUMYspztaZTNFEmuXo9Yw5TPgIgWYTLlp+PZGthJjT2fW/h0QBoGLoxC1OsCfga2HMQMAM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6424,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa55H+CRA9TVsSAnZWagAAT6IP/1iq+ukF4b/vnNIsSeIJ\n/eRJ0fXwaCrbUwVdfyWjVprXpGSUhfmNjds5ULR06+lAqEzWjNx1wh1PoFIq\nE+TzbKd2MBtxKX73ZtxqVexSP+k0x73fEKuD9FN+DQO8CW6YkJyyKiueDojY\nCRnZgaDV7xIIN12ID9wQ6fw6etDuKB8HlpGWNesFoA1fiGmL2ckYF1djs6TB\nKMY+7yATVQSMtRXT3SWA6TYi5jQIgiRrp4xFFDlpd/IBAD4msMXzOpuNRp4q\n4aWRmVKwRGYjSHMmZzjUxOBnW2x7UQH5Wn12NXxgVzCAs/b3EX6rxP0Nsx2A\nTxIkUmls18JP3WcNALjxeHC0rbKoM/FR7XsF6wpKJQyHRSqeZ7QvTipYAOdu\nomd9VVmgYeRxgmgvvLMMYnyNviGkWkmLHTytOL/zE0ik9ZhRWTgRHiJAodV7\ngujokpu8wqfwVc1qHJIHx9bU1Kj76Nfv3laD7sgdKWTTFFDsl4Di4fcrFE+z\nX0sSp6NjIdqVRqjMzERdpq+ehV1Ed1TuibVCC/weHyRvQHqJYEQA5uHjM7Fx\n39gxTAuFwFOJgOJejPGqrjSROtnE6b4IP/iyB2K0aJu+ChnUy4hzUAk3wEEl\nPD1Ie+s+fJDKb9DH5x38rvMPxg+JH61Db6xDtaV3wQEvOV/xp9qLj8YF2vQS\nZB/C\r\n=tik6\r\n-----END PGP SIGNATURE-----\r\n"},"files":["index.js","mdx-ast-to-mdx-hast.js","mdx-hast-to-jsx.js"],"scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"5.6.0","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"9.11.1","dependencies":{"unified":"^6.1.6","remark-parse":"^5.0.0","@mdx-js/mdxast":"^0.7.2","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^3.0.0","remark-squeeze-paragraphs":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^22.4.3","@babel/core":"^7.0.0-beta.44","hast-util-select":"^1.0.1","request-image-size":"^2.1.0","@babel/plugin-syntax-jsx":"^7.0.0-beta.44"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.8.1-0_1525125629717_0.03865516119282675","host":"s3://npm-registry-packages"}},"0.8.1":{"name":"@mdx-js/mdx","version":"0.8.1","keywords":["react","markdown","remark","mdxast","mdx"],"license":"MIT","_id":"@mdx-js/mdx@0.8.1","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"homepage":"https://github.com/mdx-js/mdx#readme","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"911cb6359525245a4305dfb3cc993b040ad854c8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.8.1.tgz","fileCount":6,"integrity":"sha512-UGeBWIbjx6X2Oljvwn8rE2tsQtfMRVBHGRTQWWjXqa6ag6gBpnk8o1aOQ2uPeiE7OhZpdnUReri+J4jjVVItyw==","signatures":[{"sig":"MEUCIDlom8VKuaPhTfkz9RnQP+/dXeRIrZtHSogZ0UTJ3y1DAiEAwiZmmDxGNRAumMAttVlPnAZKguJpRRAv2/3MIwgde00=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6422,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa55YXCRA9TVsSAnZWagAA4EgP/iGx/rScqEqjyiKgVwI9\ncHkG6CbkDI8uEZneF4mWFBzn/r//mdf36EHIDe48MZIN/rxDNnkoqGEvx6W8\nN4YTf3aVL5QSlIgMYwC9zyljsipkszZWY3wY7EgreYdseqhvQF/RWpRPOD9/\n52/bBaVGKtEMncuN4D1REg24WPgek/hZ30W6LJbpkHlvEA5BEnXSFBYqotOJ\nwYUUfF+NylIfXt6FTbQlHDatc9Gf72eK2GC4xb+rHoIHxy48qJbCHn6z+ESO\nZ1VOq4FNsJJMEv2R+3sRaay/aEJxD1PNrIfQ7JKJPhLhhIx6u9I97dfy35BZ\npgwdx7MQ4HV3mcsntYyWk05Ie7MLN/K9UokdLXcYlMYNgwUhJ2uE/rwUfLmQ\ncCm3XVuXFgIM0Nux0CQsQW1yKlFSYKAQKVkNunXQ8o6xtY/T3p6y7Kd5Wclp\nj4wiSJTF7uTeENjYuj4ABkWZQpiu4mm2JPmaSNMfqClWvsbUODyX1VJAZZVt\nUE7acgJNk7Daaj+JCQpeo5+qJs9dLAuQXliI6zxOKN5rNY5qZ/vhY9oGoNOW\n9w+L+SpezTLMAmwXip9fgFb439bXR99/ciD1YaU4M1Nh5fDR9MBj1zEsFswo\npUX+pgEw8bCJ/H+f12NhzdnHvPyQBsVx7XckhUmX6+9NKKMdaOcn9uzgZIs7\nbF6b\r\n=ygTy\r\n-----END PGP SIGNATURE-----\r\n"},"files":["index.js","mdx-ast-to-mdx-hast.js","mdx-hast-to-jsx.js"],"scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"5.6.0","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"9.11.1","dependencies":{"unified":"^6.1.6","remark-parse":"^5.0.0","@mdx-js/mdxast":"^0.7.2","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^3.0.0","remark-squeeze-paragraphs":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^22.4.3","@babel/core":"^7.0.0-beta.44","hast-util-select":"^1.0.1","request-image-size":"^2.1.0","@babel/plugin-syntax-jsx":"^7.0.0-beta.44"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.8.1_1525126679088_0.3917094671005954","host":"s3://npm-registry-packages"}},"0.9.0":{"name":"@mdx-js/mdx","version":"0.9.0","keywords":["react","markdown","remark","mdxast","mdx"],"license":"MIT","_id":"@mdx-js/mdx@0.9.0","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"homepage":"https://github.com/mdx-js/mdx#readme","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"f26c9ff469ace3f439722fd8ce3be09cee15d21d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.9.0.tgz","fileCount":6,"integrity":"sha512-WA3GexpPNguq9tzMbfwWFCBsLS00iCuzN463tGfvaBlHL4m/9GcSFA0d77lT3HuoD2W1iH8tAwpBvxxfhj5KOg==","signatures":[{"sig":"MEUCIQC4nlnHgmvfwDdIM/vJa8RZiNwoFCtrS69F+mmEdrzGwwIgd3CX7Oh+FvTg4UB4DqKOi/184X+sZ1lVpQOdBP9xEHo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6498,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa7/+1CRA9TVsSAnZWagAAupIP/3WE/KMP4xq8f/aSyVtb\nzyoh3Br5ekoF6f1wiTsfPUOMmw1YneM2qPnE4UEAuwda2iB4DfRxOiDKD3g5\nqeb8ixyNQaBpfAMUWRm+WGb2GFo7VG/wyeEd6LwRsoYi9ElB3pjHtk1VgWtX\nCEFOuoJg6ZYnj6hL52g00FhLKRxk4WMkGrRYdtnIV51BRER+n21V2oEGK4B8\nHHXO0s+hTfXUKoULuTQP1mw1nT4gGKnohPQ6xpfsen81nqsqTYnSsYDArCVx\nAerdyB5jzvZotHHunfGDRFkJUmgyJrivZzOixXPo/SguNL+7oIfT0lG2pdNH\nXg9ynkSfiQb9rtHr1muDTSI1CfbF/iP/JdE3MV9iZ5O4aiOzpIpS2eYEU3XF\nKUaRpdWvqese9QUeENbqJOdCwAPVkVcFMLsWLZDwJFNRiA2+FNA7VcWsYAX5\n1N5q+3ILY1FQSsZmE7kGlKV24gqBLAZOM6+8VccioNrTTOJFfeivjjKBaPJc\nujIrxJXwX1aijOAGNZWpvCnt1hHk4LHU3wNxHxzld5LQiSMMfXmEG0jxkCXk\nLfdK9ihop6EJKIEATujU/oDc1AUi4JsvBn7iwnapDPL/284lCt5W8S1kWBXq\nj7a2xuPBAUa/KxjnFBAIspiRjcgEgv5F2YolHmgiRXyCroSt5xsDYeC6C2o9\nl+vF\r\n=5gKl\r\n-----END PGP SIGNATURE-----\r\n"},"files":["index.js","mdx-ast-to-mdx-hast.js","mdx-hast-to-jsx.js"],"scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"5.6.0","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"9.11.1","dependencies":{"unified":"^6.1.6","remark-parse":"^5.0.0","@mdx-js/mdxast":"^0.7.2","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^3.0.0","remark-squeeze-paragraphs":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^22.4.3","@babel/core":"^7.0.0-beta.44","hast-util-select":"^1.0.1","request-image-size":"^2.1.0","@babel/plugin-syntax-jsx":"^7.0.0-beta.44"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.9.0_1525678005285_0.861503042476726","host":"s3://npm-registry-packages"}},"0.10.0":{"name":"@mdx-js/mdx","version":"0.10.0","keywords":["react","markdown","remark","mdxast","mdx"],"license":"MIT","_id":"@mdx-js/mdx@0.10.0","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"homepage":"https://github.com/mdx-js/mdx#readme","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"f24012e7fe1a8dbe3505399b0b07dda09ca48212","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.10.0.tgz","fileCount":6,"integrity":"sha512-v5a1o7Hv0py5OYV+5xqByhMYuh6Zoo5wKv8juaSJupp0S6Gp6y/Rg5OKcNfm00PAlmjVtlLAr2EWrGbID534Og==","signatures":[{"sig":"MEUCIQDxE/DBDEboZWCrHSC4TAso2V7FwFEmocDqMCq/FhL97gIgOP7dpU/7qgejkvmmdrpwicMag0ONTJphpijSRCmJzg8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6706,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbGqLzCRA9TVsSAnZWagAAsQAP/34dsQi0hRxTFjch5wYk\no9QGufKOGILYHks6bjUCxyvmnA5owi7YGUkIJaesRhbSmNOefVvHiLh2xpCE\n5JRvUlbknc0Iu7+MpJMHlvz6nISmWPG9ucwDNAAVk7Znkn1eiBdtMBrKHBNa\nVGmIYv2fYCMNJsMdE8lCpr1W23jadgav0slZJ0GGPb2LgO7ZGT2I9anBff/f\n7iv6ObUHXhAmDWwtneZN7cVngPyOUi7xSBAF0mik7FrZdoBmUXjs2ADt+Amj\nBotkV+L5UNGv15IkNd3XVXSEovawmD5w+TZtQWZIhhZnNsTHu3BuwTaM1WHx\nzUWPXFm8916J7gkkCAXiZdpJhEMV+G4YLPD0etfjw6p6q8HjcKZPCmqZBh7/\nm0T03P9T4tB1i/lpz1BcX+mhMrGBMNi7/b40cT+FbbY/tBNax0MF74UQ+V30\nsByjX9X6PAABzEJFv16HkvMuK59OXza2qBbSeIe4VV43S3yidiy1XPOiUT1E\nC62Wov0rnF7Usi799n7PWIdvoHoG1sKxQf/4MuhM913lKdjwrJuTMadcR100\nSfvI7t8m2/8wBxAAwCYrcC2psydTG6cJ51L62A5dwgg83aJWwL7QFpoJU92P\nX60FyHfPUpaDXQtQAKKo5pAEFDtln9rCB4w/Mx9qNWKMIgAblQxqjAGCMBym\ncd0S\r\n=Iew0\r\n-----END PGP SIGNATURE-----\r\n"},"files":["index.js","mdx-ast-to-mdx-hast.js","mdx-hast-to-jsx.js"],"scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"5.6.0","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"10.1.0","dependencies":{"unified":"^6.1.6","remark-parse":"^5.0.0","@mdx-js/mdxast":"^0.10.0","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^3.0.0","remark-squeeze-paragraphs":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^22.4.3","@babel/core":"^7.0.0-beta.44","hast-util-select":"^1.0.1","request-image-size":"^2.1.0","@babel/plugin-syntax-jsx":"^7.0.0-beta.44"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.10.0_1528472306847_0.585501148637404","host":"s3://npm-registry-packages"}},"0.10.1":{"name":"@mdx-js/mdx","version":"0.10.1","keywords":["react","markdown","remark","mdxast","mdx"],"license":"MIT","_id":"@mdx-js/mdx@0.10.1","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"homepage":"https://github.com/mdx-js/mdx#readme","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"5c24679cf90fc80e16a8164de4fc9274a5657d78","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.10.1.tgz","fileCount":6,"integrity":"sha512-2Mip8+44opmpPcJ5h7dtZ31pW9/ntslCEOsZk5xuP+SaafQzUjTRlDh6ifgp5+MDBgvjMzdAuHv3WgO2jj0Zyw==","signatures":[{"sig":"MEUCIEuJ5NxVRTGLR6osuTIyqrBIvITEEki1BE6VyvZZlZP0AiEArMK2qIQCYnta2sxATBX7pOvwuYqCu0Iigobi6ZzoGVs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6841,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbISQeCRA9TVsSAnZWagAA0MAP/3nmLM+iVjm+7DUnNwUp\n+8dmTuzNc3jIYZxeuw6xhvaPv75iBmsB4vtnm9jtVlnj4umLO7Zz7nvNXpzj\naCG7jab/3pjq0RbJX74bds66ogfkZPzvRJt+Wf1D2EhKgLHM7/1YZz6Fk6xh\nqYnd0j07PgnjLdUKVKHKbY9Rqw/F/v3iySvEuoaJBYRY5dfCUbBwrBUcSw2K\nIysz1oz3EU5nCjK+AS8pIE5cDpBtS+RVwBB35ot6BawfefcICrbWiIJRNVH4\nLroQfriLS11JRuyagAo0dVYK7FRBJC0rL6TVSozoxVGp/dakNcbialJ8q5t9\n+idRpnC95xzfOFpjF20Tfb/6ZSMkuQTdOCgUZfh5aqtYqMt19JsUGUXT7Ahp\nd9gFpYID+4R3Ic5bVAVLlAyydnqjKC9ryVRw+qrk+ENQUDo+Bue0tBdCT6Il\ntha7U9qRXp1K17/pmJgEXKJE0c3iGeFSpdVKtkLSmYUnBDuLmBveQNbmE9Yz\nwSoQc9QYYIcDpKBpH6FVv57MkcS45OhRNaYpbAPAP+10mG7SSLkuxbfRb6Km\nwoVAZ2/qd094yM1FMBc8Z6PLfkWAiu1x6Eum3jUbsD+0txtYkpvkRg3DIu6Q\nhuaQ0P1NRL0yvpUVZsfrGHZIQJROFyazkX8owcjoJusGSEyRSm0i+77X4Q97\nc5dl\r\n=HCD+\r\n-----END PGP SIGNATURE-----\r\n"},"files":["index.js","mdx-ast-to-mdx-hast.js","mdx-hast-to-jsx.js"],"scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"5.6.0","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"10.1.0","dependencies":{"unified":"^6.1.6","remark-parse":"^5.0.0","@mdx-js/mdxast":"^0.10.0","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^3.0.0","remark-squeeze-paragraphs":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^22.4.3","@babel/core":"^7.0.0-beta.44","hast-util-select":"^1.0.1","request-image-size":"^2.1.0","@babel/plugin-syntax-jsx":"^7.0.0-beta.44"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.10.1_1528898590210_0.19408153123259475","host":"s3://npm-registry-packages"}},"0.11.1-0":{"name":"@mdx-js/mdx","version":"0.11.1-0","keywords":["react","markdown","remark","mdxast","mdx"],"license":"MIT","_id":"@mdx-js/mdx@0.11.1-0","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"homepage":"https://github.com/mdx-js/mdx#readme","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"916c2a69574383d58f619a8cd431bb1e06839769","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.11.1-0.tgz","fileCount":6,"integrity":"sha512-R8VgQF+ehDhnZB5XySjjlKan+vCUT+aAggpSUZQdlXKrZavQv90aecZohCtTqFw4CbC0pJRC11V1Atx985lUsg==","signatures":[{"sig":"MEUCIFYcXow434pi4qWZXhUpVuMtEF9Qit8LcNBXeZirB3yHAiEA45A8y4RfAYAvsK4sWSOTANbFutxOiVxpPSLAStWgNAM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6849,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbMTdzCRA9TVsSAnZWagAAL70P+gOjNXzUbrvwgiGRwLn9\nFARQDWEyaAD6jZyLVrH7Wzm1A29gcbP1uPdxQ44VK3R2M4P53I6F76Lpi1W3\n3XMBmJK76dRp/BGYmJNT+DNXnZexPrD6W13FGurjyfNmdcfsE5ytaax+WmPv\nKTk8g4bb/Hv0R+1mVxcvxVQX2bM6T8jzdLxfwxiAwkUL1VnhTgCOvgXEKCbS\nO8IlgR++V4lR5U5MEQ7BighVTo9oUOyI7Fj2TJDm/jceKnKeOfWYeJesTQVm\nA4eM3iUO7NXhr6ui3qT/v05qQKPW2G2rGdRAFIUtGgTcyTYgzVpOhHy9bIko\notWIjjScsmLAGOyI6o1uwP+gcYXSabBVtP1fnPA39YCzT+aINWHys+Nglg2T\nGfXmQ9VEGHFyEKXRDPUVtu8d9Hs8BhpYhFgqfkRevHKKiFgnITGLSgkqKkcV\nHCfESGaTbE1jxawGmolrg8gpOI+A+DlL0uvyGtOA5DA7KOiLks4Iam0HFYad\n11WszMLxB+BtkNEux5QOKFEgMfIhtpTU380yzqusSPXLGbV9SQVLjVIw+BYO\naOISQ5xzKIhSOq5k3fPzqr3V9JJV2DWdPb2fbTY98ysNueBhivqmFFtYn6WC\n6Yfe7fJ9XgX2gnNyimGOWLMNl0AT3q26d3CA3aFlLtbH3Z8O2BQsZ5rqqkWC\nfdlO\r\n=solF\r\n-----END PGP SIGNATURE-----\r\n"},"files":["index.js","mdx-ast-to-mdx-hast.js","mdx-hast-to-jsx.js"],"scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"6.1.0","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"10.4.1","dependencies":{"unified":"^6.1.6","remark-parse":"^5.0.0","@mdx-js/mdxast":"^0.10.0","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^3.0.0","remark-squeeze-paragraphs":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^22.4.3","@babel/core":"^7.0.0-beta.44","hast-util-select":"^1.0.1","request-image-size":"^2.1.0","@babel/plugin-syntax-jsx":"^7.0.0-beta.44"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.11.1-0_1529952114874_0.7909557698792098","host":"s3://npm-registry-packages"}},"0.11.1":{"name":"@mdx-js/mdx","version":"0.11.1","keywords":["react","markdown","remark","mdxast","mdx"],"license":"MIT","_id":"@mdx-js/mdx@0.11.1","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"homepage":"https://github.com/mdx-js/mdx#readme","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"2ca1f2a4287cbc603a7bcb77667d5f099b1da66c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.11.1.tgz","fileCount":6,"integrity":"sha512-aHW/jD51I2ej1I10NbJ6jtDlXZmWRsNIQjeEM7VH1iBvNwzHk6VQW1dY6Uc6hq/e1Y+xwjgkhlYnNB5SKiVS6Q==","signatures":[{"sig":"MEYCIQD9FQFFXGXCB8ZW7fQxRZF9YNNihkd1U68apfJsIZD4VwIhAMRhEE+wk3r0mEq2GLGQxS9+NP7wv+i2U4a5hkjHPLxX","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6847,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbMUz+CRA9TVsSAnZWagAARMYP/RbB5XEoY35CDLM/gK73\ndiL10QHkRuOR4EGtjhIw4UJONss4kXEEHB7zahcNfdYj3T2BujmK8gZjkI6S\nfNHP3P5RTXKtEMZMH3ojDb+N+qE5QyJi27v7CVF5cpu4QL3DMO808IHJEYdo\nbjl3SFdxGvdP40CQykYvZT595W0VhxkdHw8pQgLTEveF1/LVTbXJUYGrKIUl\naO/TuCH/5MfLs5ptjzG3KYglh55SRyV5eslur/WSDmmDyOKUwPHoHJtu5Gd7\nGxDnrK59eq7TnURP8scPAPxN9NeCslDB2afIl2eIpBNLH19v9q8ifiw95UZO\n74kdU4IVm7O50s1P+jCVBgwqJbEgSyXz4xu8j+anfdK7l5x0V8nLGFnsbbld\n3fvp4fCRJ2IRPXN3L74VaS+Izsoc34UgqoclZTkVxn8z56GL+s+Bg6tdn7K2\n9QtMnN/8QoC23IDb6oXVqVlPVjtCZXp71+iczLFg8pXjpfla+6qMjcPWvroS\n8h2sEZgsJaUWsEaAIwbxdpuRL2IJd8Zikwao4BnDCOcPsIG4YCWlE4XumFQ2\nIOdsvb7cd3ArKL0ywgiBJEzRCQHMCrrN/iSbIuFtsOkxkeYI2OtlZHvw+nuK\nLne+MlR7rYpoYhIJfNkHpEs5BS9JTnhQGCyWrLJENdbGIYmTRZ2+bcFOm6ux\na58r\r\n=WB3F\r\n-----END PGP SIGNATURE-----\r\n"},"files":["index.js","mdx-ast-to-mdx-hast.js","mdx-hast-to-jsx.js"],"scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"6.1.0","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"10.4.1","dependencies":{"unified":"^6.1.6","remark-parse":"^5.0.0","@mdx-js/mdxast":"^0.10.0","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^3.0.0","remark-squeeze-paragraphs":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^22.4.3","@babel/core":"^7.0.0-beta.44","hast-util-select":"^1.0.1","request-image-size":"^2.1.0","@babel/plugin-syntax-jsx":"^7.0.0-beta.44"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.11.1_1529957630382_0.06892093298453372","host":"s3://npm-registry-packages"}},"0.12.0":{"name":"@mdx-js/mdx","version":"0.12.0","keywords":["react","markdown","remark","mdxast","mdx"],"license":"MIT","_id":"@mdx-js/mdx@0.12.0","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"homepage":"https://github.com/mdx-js/mdx#readme","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"353d266974b7303dd3f154aad1b77a90f2534f1f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.12.0.tgz","fileCount":6,"integrity":"sha512-/TeBkWpAIE+SVbNOfKr/01gSxqgPDLO9YXUi1eK4zFsx77D45a7kOO41jQ2bnKwmN7RN8mYM4KOMVTlW9CoDew==","signatures":[{"sig":"MEUCIGQfetbXlwyNWUrz5Scixl8U8XpuQUypl6MiiyaKm8jMAiEA63/7XHFF6uPSbU4xIyb3zYjxeJWKxAgVcuN95RbkJiI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":7078,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbMk/UCRA9TVsSAnZWagAA6XAQAJlImmhiz5Yj+ma7OxN1\nE2BejHktBDe+pn2dOUjbldUGek7Z4acVKjmvWbk8qALOBVLN3LeygiiUV4m4\njlR6z12q2EYADl/v3sMPxEhLeqFAd9N8gednDod3smUxHS/SdPAuj/9EjK/e\n81a9w2K7/0RaCCzrNAanK5+/KLe533bGopWaMDcEtOdSo7AsuLSyr9fUFRyR\n7jRCKrdnA9RIc626fZSZUzE626O2xeGvZjshiRhMtSIoA0VKidL6T/h/fovp\n/drd1uB8mqcC/SBWLmub+9cEphE3XKBpyHGkD0YKocewIF2hz104EfVU9I4e\nut9j/Zm/UMXWXRVvsB+YyVuo0c2UERg3hOm6YyhhC2gComVPb0+obRQZR6Ho\nKuko4C5h1abjIvn8u44UPrwE1WLhV0sDxq/k8ZroYSB9rQ+XQB8DxazqMPIK\nB7WVUWVEb7sBcty+EALkWKy0EVkPY7vVRC/PTDG++VwzaUFB+STavCt9Luh8\njDlRSeig0d15To9FhkwnEk0HrMxJz8aEL1J5Uzfhqpp9jep0oraqqJDXGFUy\nKnyeIWmEaPSbS+C2/JjeCADONxm/sd1yPIk1bfsS6poDznfKyR6XF7FlZVAH\nOkaHyx80vZln8iGfPknHZdtJbaNtlNsehBeOTrzJjfHlSJc3Fc+NxYLc4DKd\ngpc4\r\n=NFu7\r\n-----END PGP SIGNATURE-----\r\n"},"files":["index.js","mdx-ast-to-mdx-hast.js","mdx-hast-to-jsx.js"],"scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"6.1.0","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"10.4.1","dependencies":{"unified":"^6.1.6","remark-parse":"^5.0.0","@mdx-js/mdxast":"^0.10.0","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^3.0.0","remark-squeeze-paragraphs":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^22.4.3","@babel/core":"^7.0.0-beta.44","hast-util-select":"^1.0.1","request-image-size":"^2.1.0","@babel/plugin-syntax-jsx":"^7.0.0-beta.44"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.12.0_1530023892153_0.2669039703262446","host":"s3://npm-registry-packages"}},"0.13.0-0":{"name":"@mdx-js/mdx","version":"0.13.0-0","keywords":["react","markdown","remark","mdxast","mdx"],"license":"MIT","_id":"@mdx-js/mdx@0.13.0-0","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"homepage":"https://github.com/mdx-js/mdx#readme","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"e754a069a5727259df7817548bd1005257613286","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.13.0-0.tgz","fileCount":6,"integrity":"sha512-qQ/4L1uKEoxnFWe2iWdTW8Svteq0Gdsx8C8nR3KUl06/rX0v37hhJUSDg5ll6P4PNG+FmfeviIEKkRs+YMcIYA==","signatures":[{"sig":"MEUCIHiMcI3GBWEEWF3UrtzY6tAtc0/2HmR3MPm+jIlv5cNWAiEAhkK41IF9EqRH9nJtHYDz8JjaTVN8hLg3x/DwmUwaZBM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":7045,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbOPQQCRA9TVsSAnZWagAAXEAQAJA/qqU4x9zrwRlN5f+j\naBITd6SlvUUH93WFWQ7RlTsM6mnJkmXNQYRqsgpwVXJABMUpHiOvzvQ57vIv\nvyodberB9y2Uu2u0oHrqfY1qQaEgEe/DzS9AspGwAYfAR6vpyTTEZpRNdJKD\nbIdBuPF8VaZ3vUMKWSnlRonn+/VCjs2nVSsUQGMcA52UmyY38z5Er+Hb5cb8\nj3gjiPZk7P8lR0skb92cPSkoYJzd08FCZ2o0jz4186l/Su7gtDRz+kaIDxce\ni5QxPYjyb/h7OrUsc0jqp5PMq5sxG/CftxtBjOGlKya9Y+rH4jbZ6bGF3JO7\naF6WK9hjX7s9b4LzFMNsG99G5StN16drEKVxW0uuKFPjy/IVXFVn9u0wxouV\nxcGN3i7x5ODRTKw9REh67O5qhoPdBiaAtWl/PTq74GXS4vmgjww/Zj/fPcyQ\nMMnj2CCA+f5WB3DEiHU6d80Z5HABZZ+f60D5Rjz/PUekQ282NbJI/haQiusu\nqsp3y5ggWr34TSV0XDmQEvRlloWRPjhAAaM+DZfqgwFtw9e2nfWlXU4ml2Wj\nKjiYsJ4HX4FTxQPsSIN8WtbhGgrA7G/Zlsc2nZeHMs9sJ7bpoe1AldCY+4g0\nt3r5XlKMjGucHabFSjB60gvtMP/iVX/bHOCHRydg+LJ0MDi+WrHWInNlqfuW\n+NNu\r\n=kyZp\r\n-----END PGP SIGNATURE-----\r\n"},"files":["index.js","mdx-ast-to-mdx-hast.js","mdx-hast-to-jsx.js"],"scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"6.1.0","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"10.4.1","dependencies":{"unified":"^6.1.6","remark-parse":"^5.0.0","@mdx-js/mdxast":"^0.10.0","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^3.0.0","remark-squeeze-paragraphs":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^22.4.3","@babel/core":"^7.0.0-beta.44","hast-util-select":"^1.0.1","request-image-size":"^2.1.0","@babel/plugin-syntax-jsx":"^7.0.0-beta.44"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.13.0-0_1530459152504_0.45108425160762966","host":"s3://npm-registry-packages"}},"0.13.1-0":{"name":"@mdx-js/mdx","version":"0.13.1-0","keywords":["react","markdown","remark","mdxast","mdx"],"license":"MIT","_id":"@mdx-js/mdx@0.13.1-0","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"homepage":"https://github.com/mdx-js/mdx#readme","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"c1005bf257043fc8ef9f94e9e70b3b2a8a4f6ab0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.13.1-0.tgz","fileCount":6,"integrity":"sha512-UA8qQ58epTrZ/c6KzZwTSNpW1UeGyKGtD3FltYIev3LazpFSN6A80hd2rXpsGM7S1nCdph7WVVcOEh2la2+HYQ==","signatures":[{"sig":"MEUCIBMeEVm/v7oRImRO1jU99RLqMsBE29NngHrd40DqNeXAAiEAvnpfecHRnnc9LkOTArSWSV72tCXI4Qu/5maS1pE0CmU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":7045,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbP4EwCRA9TVsSAnZWagAA398P/3H2iyJaTTlK3tmLd48E\nSMwNrIekue8yrhwfx0IXab86BxoJSquI9NDVIq3vjfh2Nvh5Ip3prlmmob93\ntw2GMdmR7f+CSRnLEC5Vu/61YI8pTz54tttAE+Fv5MSOlkt9k0huOKgYjEnr\neY7pfrOQ76y7RJiKeC1CjVD/4XDQMYd4gRwRFYSjx+aq39zm3pQC8UmtaWWx\nGZU3vCIOkP4OhR56EeV7F+l9jqlou1E03u2fcbAAUBH18krdOicQUHo4hC1M\neWo/2YXl/cizpg6N+/JewyNv79vtnuAwjfS0wurAQwY46xtuJOmCHWszLGAA\nm/MkopJONMPfDjo4Ui2rDg/oC2m3N4mfxU/5RCEbk/lPZDqltRrDKTYwLSnZ\n6EFhzdAlWbN87BJzDxI0c1WV04E10z9kGrxjkaVqZHeDDBL9zU9j5umUjk4u\nArpKaus4MvAhCogPB2HV/VNgFoKdrTK6eIz7maP7c2T+Jeg24xOeVAeHekzM\n67FnZclXr+Ln9gs7V7mOR7r4drqGmFMkmA1B8ewEvU5BDeHV1h9URWCB7JsP\noj3tQNxgojnM1UWINl24OoqqBv4WOJu2as2PP+a48hUA5+xD/SVYa2ZohOHl\notW7ZR/OToLadJXBaP/exE7S1BV5CiMrqvQRdW5SrCT26tm7JVQ5AIIo3rmz\ngxXf\r\n=ZR3t\r\n-----END PGP SIGNATURE-----\r\n"},"files":["index.js","mdx-ast-to-mdx-hast.js","mdx-hast-to-jsx.js"],"scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"6.1.0","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"10.4.1","dependencies":{"unified":"^6.1.6","remark-parse":"^5.0.0","@mdx-js/mdxast":"^0.10.0","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^3.0.0","remark-squeeze-paragraphs":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^22.4.3","@babel/core":"^7.0.0-beta.44","hast-util-select":"^1.0.1","request-image-size":"^2.1.0","@babel/plugin-syntax-jsx":"^7.0.0-beta.44"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.13.1-0_1530888496034_0.022649514085067546","host":"s3://npm-registry-packages"}},"0.13.1-1":{"name":"@mdx-js/mdx","version":"0.13.1-1","keywords":["react","markdown","remark","mdxast","mdx"],"license":"MIT","_id":"@mdx-js/mdx@0.13.1-1","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"homepage":"https://github.com/mdx-js/mdx#readme","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"edcba0c20b937ee8dfa6463e75dd888b6a192e9d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.13.1-1.tgz","fileCount":6,"integrity":"sha512-XofSLeW49U/OIIybhVfwmy+tTXekGzb+Bf90G5dM0AVn2eC65O1ozIwxgpTzdBDNCD4Hfu9SxSlt8208mv2w2w==","signatures":[{"sig":"MEQCIBkiyjfNBcYFdmmN2fPSMyUodH8ch8AFd1Qa4I1ycij0AiAHo/I1dPK1lWN7dRQSfiehcda+b8Iz3lWezwQtDe8xCw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":7097,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbP4RgCRA9TVsSAnZWagAAYsgP/A5QpstrO3yoxsSyJIx7\nvpYQuFvghfZ5pTM5wRUnR3nhjO2Ghm/gdL5p/zGuQn0y8F+XtT0NUvWpdUJl\nPkXIoNOeGkqflULt9JV7ud8TDKF/8UmfvxDe2gnDKJMPqvke0jW0uj7YfK2I\nuFqednJ9DXtUqKahjFbToa5xTc1vsX8JNSn6BSPaozO8SkKyNKclMh2onhHa\nqDB5M82wNPY3yzXTRfmANG9dJEYWIz3oDNYhb5rDGC1toSOPWHXB3hEUtdo2\nG+slXe+CkQGz8RCN6KqkJ7nUnZk0V4rPX5RFb61v8Jnf4ucaVJKrM/vg+3pd\nB/iPC2c1Ha5brTMkgFJ8Q3T09wDGLy7JGI/jZAa5XNnspNnCKXiyBq5/ocux\nHv0BDXxuPFcGtDk1xEQml5wuqkqZAjePcYAgXBoNMAwyD0708jGFh2VCGxsD\nvcK0QuGfFTXGy+oyJQkEQtZ0djeKL/Hce1f//CZSk8F4z0XPVXWJjio3IYKJ\nr+fk4NM7zYGY4Qyai8J1Akmp3m1jLaz9aqAX9QUOCGdHqT7NcdQ9b8ZWxftH\nOBIgM54YuZBg3n8X+qlsQLxr0UeM2XqKlulqNKBpBVudqQquNQ5VCxerd22f\nB603gm9dWvj5qZiG6Hy7JtgwWReDvB6GpYH764OJ0Ci7d9RIbYx+bpUWrepZ\nMoOy\r\n=6O/Q\r\n-----END PGP SIGNATURE-----\r\n"},"files":["index.js","mdx-ast-to-mdx-hast.js","mdx-hast-to-jsx.js"],"scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"6.1.0","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"10.4.1","dependencies":{"unified":"^6.1.6","remark-parse":"^5.0.0","@mdx-js/mdxast":"^0.10.0","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^3.0.0","remark-squeeze-paragraphs":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^22.4.3","@babel/core":"^7.0.0-beta.44","hast-util-select":"^1.0.1","request-image-size":"^2.1.0","@babel/plugin-syntax-jsx":"^7.0.0-beta.44"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.13.1-1_1530889312759_0.1391150572489046","host":"s3://npm-registry-packages"}},"0.14.0":{"name":"@mdx-js/mdx","version":"0.14.0","keywords":["react","markdown","remark","mdxast","mdx"],"license":"MIT","_id":"@mdx-js/mdx@0.14.0","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"homepage":"https://github.com/mdx-js/mdx#readme","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"899805ce4becb2bab653bc759e18d25bc144430f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.14.0.tgz","fileCount":6,"integrity":"sha512-iSZw4wAJKAz+NupMDP3aYEV9al32THDTL6w2BZZBhr0V/kz08Z13OTzk4perVUFGnqAF+cdIpunk6olmmQnP9A==","signatures":[{"sig":"MEYCIQCpXqagOfdVeoKw/nyAiXbq5/D39Ra4dmo8IOsjUrxFCwIhAPQcwTSnBXnqlhZKW6a0S6xzQQJ/VGK8Wh/QccuIh4hd","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":7095,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbR1K3CRA9TVsSAnZWagAABHcQAIaDpFU61tj821MYQzsh\nNsmEJMFm1QseTS5ahe0xNf7CKPoZ5SUKa0Dmz4dxNdXrTuPhYaIB69QsXT+2\n+9ho6gZqb84SKBKMaI93hWsYVw4x6PR1dWUYVQI2A1wg7jR5Z5nRmIt3qRy/\nii0epUhdx4IOqx3TSXPUZbHCVDQWjW9JmD1C+w796zsnCM/CIaCyZIlw/BvG\nbtU9xpUdsGUrsoyt8DlkxGr77ki6NwJlpHf9XoDPzEjXG3kbspaG9VkAmExx\nr11ljMiuavC3+dPCaGbMKFovmqLeZnhMT5sUt6bkgMea7zzj8swIZduTXfbA\nA4ew/JHMq2uFQrDybMAzFmMG+rNFGorfYRZP4sWGhX7VYd4gp5p2iwndfU2l\nGXUaMz5b2ewZNF94G6ITSbLN0NTU39UWfpAOj+ncD0jwy9Jsy2f1kKGwKsZL\n5do05uaHZMymfyuTxQg+VXQoNTV4tHjlXpEBnMpreQupfeyCq0gLxVebEERI\nK7HLLEWWgvocNB3woWYj9uI0NJYIz9mWiux7n9F3a1w0F082I47GbM6y/qmP\ngp6QdBEieN35UUDBEt9tjp5tBz7qVJtdAMucPC5vhRJWXpIXzgdFgzExHQd3\nklXKrswPWJxIkofi4HkMcmZNviOoBScpcHn402dWWqSKQNGrDk3c4n1vtIwG\n0DhZ\r\n=R/V0\r\n-----END PGP SIGNATURE-----\r\n"},"files":["index.js","mdx-ast-to-mdx-hast.js","mdx-hast-to-jsx.js"],"scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"6.1.0","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"10.4.1","dependencies":{"unified":"^6.1.6","remark-parse":"^5.0.0","@mdx-js/mdxast":"^0.10.0","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^3.0.0","remark-squeeze-paragraphs":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^22.4.3","@babel/core":"^7.0.0-beta.44","hast-util-select":"^1.0.1","request-image-size":"^2.1.0","@babel/plugin-syntax-jsx":"^7.0.0-beta.44"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.14.0_1531400887208_0.6981340745203519","host":"s3://npm-registry-packages"}},"0.14.1":{"name":"@mdx-js/mdx","version":"0.14.1","keywords":["react","markdown","remark","mdxast","mdx"],"license":"MIT","_id":"@mdx-js/mdx@0.14.1","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"homepage":"https://github.com/mdx-js/mdx#readme","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"11d627d4317a2385e3838a9ed4db2f180031017a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.14.1.tgz","fileCount":6,"integrity":"sha512-RzRC/Tv5/UkwjXwhyUPDI/cpllAGdN1RT1PFqv0BqT66CE6S9MrhbOdu7PpPy4z8EdqO2Dk+htvkX+eE+WfE8A==","signatures":[{"sig":"MEYCIQCOtWusyOgyrJHq/jOEenId4XaMEak0CwQPKgxTt3ieQQIhALEUB9jVzj8wQCsvVmcbXR0BGaYgxlcHSats2PlqwnDO","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":7251,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbVJTXCRA9TVsSAnZWagAAidcP+gJ4P3sDXQLJwyDSWhL2\nMuF8/RX/TFw+aKXkajmeBBxKilsMiSt9gHFRACbAgqmDhBKQzqhctnlI5f8c\nNHk0iV/ObvWWd2glNedE8OXZDcUa8n0m7bRv6NJ/hy71tAFdt+73X/9mkVE8\nLmimU07KxaUCfhYatU8DUVTTrzoww/WX6VQP1FR/koecRM/lFUZgC1wJuCGL\nCO+sm4QgBnXczPkeDvtNybDZuJNsGbVcb745bQAQY36hYmZsbjEKPdbqwZNr\nd6pGEBhzMdx6OwtArKSBBiaOY+Lt9J0YCWYFuWpibgEqSAHES542IoEEEv8j\nVJkn+cDE2phiSKCiJFhcA+4uARCd+gcPk1Dl1TbdVUQwOc/jCC0a4YnfCamu\nQ/GnR79Pi3HENuwRaEg5gY1W2Hi1RVlqHQDviw+iuFc8eYKEycCSbhdPRa5d\nNVUr0yIOO7xDPk0TN1H+pX87M1dIIUpTbpr7T20VYpinvxtygHx9B3uupTJk\nEmmt/+d9i2Z/OfDpmj+4y/fqqne6TMe3/aUZ+Z8ffSfTMYWlmuGM3h4cabpx\nZcKM2l+V7LZMik4GNnmHRrl0Zf/abIWe7GqDjKx37VrUaZQt/0qlOAIyfyiL\nAkUngyeXsvLcIPrvZqqV9q/YjB1YmcSa2+brc3qb/zUN92hNTTZgI5tpqohe\n1jMo\r\n=zYBI\r\n-----END PGP SIGNATURE-----\r\n"},"files":["index.js","mdx-ast-to-mdx-hast.js","mdx-hast-to-jsx.js"],"scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"5.6.0","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"9.11.1","dependencies":{"unified":"^6.1.6","remark-parse":"^5.0.0","@mdx-js/mdxast":"^0.10.0","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^3.0.0","remark-squeeze-paragraphs":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^22.4.3","@babel/core":"^7.0.0-beta.44","hast-util-select":"^1.0.1","request-image-size":"^2.1.0","@babel/plugin-syntax-jsx":"^7.0.0-beta.44"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.14.1_1532269783385_0.8890316988168727","host":"s3://npm-registry-packages"}},"0.15.0-0":{"name":"@mdx-js/mdx","version":"0.15.0-0","keywords":["react","markdown","remark","mdxast","mdx"],"license":"MIT","_id":"@mdx-js/mdx@0.15.0-0","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"homepage":"https://github.com/mdx-js/mdx#readme","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"ec50dd43a8da98a0b34f4193ade396f866453a16","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.15.0-0.tgz","fileCount":8,"integrity":"sha512-lGY2jRqbvclxql1SjWAXCr3qyTx1TlVH9FoUj1vid2HWXSIYCyzgxOmesjY/HcqRsmsu8LzyDdEEUdti7zvciQ==","signatures":[{"sig":"MEUCIQC9pTyo+GhzojxVkBXhwytwnEgyG5Gbg0nkk50RfNKz8QIgIxzXKgEV2X+dsVuPl7teGOAnZZdVSqSkCRoqcMnwaOQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8679,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbVezdCRA9TVsSAnZWagAADasP/2jU7E+y6rsnmRRd11Pu\npqbbjim/zrhTEowWDhsaE4PUBuxpRN+o2naQYy2IYm7D6CIKbjFYmTI9heDE\n21wtNv4htyCeROhqeqqJgJvlI7e1Ip6LI6Nkt+PeHH7Cq93f/ST98rFER+aW\nLCrBzM+e7Vb8w9JTwzHW0NqJUtzC5XJJPfwone41W1id0agFBEUNuQeC1HF3\n2Wb4nKc+fy/PHKgtIyGtDIZAU3FvBj7q6aFDi5hN+GbQ9si3VStzfYAjos4X\nvPcdJURjVT1/BvitmUx6edgtk3gs25CcDJBpUJ2CybsEOlI7TZ1GKz8C2MJX\nRjpz+PN5BAIiZMFkjhfL6hVvt8bXPW52v8kbNLmbjFYvxLYQv10eUryokyL8\nYziIBd8MejFUoq2gzDl8Bd/P618SEp75bg0SfgvhXdbD44MqpycWmr15xewq\nsY9I2E+BVRONmuD2TcsHJh/ElR/mfOj0Ujlt8WqJlsHuafFzwwNd3CZvR440\nFbG8UJR2rG9z1iXzrU7frfKluE+5EsqNT7psicsTTmTUyjsKKHKsnDVD0pOd\n3WWgyjvDKlexIZmez9QD/9g7tPx4dcgRUH0BVLPyTmqyihzEJxazDbFeBZ5X\nVmo5ejyixeOenziClBSqCiBo78zP86nk3KQS2X/5nPvGucmydD0vRukJYNuo\ndy32\r\n=BENA\r\n-----END PGP SIGNATURE-----\r\n"},"files":["index.js","util.js","md-ast-to-mdx-ast.js","mdx-ast-to-mdx-hast.js","mdx-hast-to-jsx.js"],"scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"5.6.0","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"9.11.1","dependencies":{"unified":"^6.1.6","remark-parse":"^5.0.0","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^3.0.0","remark-squeeze-paragraphs":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^22.4.3","@babel/core":"^7.0.0-beta.44","hast-util-select":"^1.0.1","request-image-size":"^2.1.0","@babel/plugin-syntax-jsx":"^7.0.0-beta.44"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.15.0-0_1532357853752_0.9036140297345991","host":"s3://npm-registry-packages"}},"0.15.0-1":{"name":"@mdx-js/mdx","version":"0.15.0-1","keywords":["react","markdown","remark","mdxast","mdx"],"license":"MIT","_id":"@mdx-js/mdx@0.15.0-1","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"homepage":"https://github.com/mdx-js/mdx#readme","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"5c34bc7b810ff7f8640558769be227170bca6953","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.15.0-1.tgz","fileCount":8,"integrity":"sha512-cwj7brVHBmBzAwDyg6Y8GnMzkLapXFBPhaEaV3s4qUZzqDs1Ms2WpcgENci3M7myZAKcFkHC6XpEk0p1QTZydg==","signatures":[{"sig":"MEQCIClTkoeKkOQ5pXYgha0e9ZQ2VUkC2wtqFYOCS067dlfpAiBh10xH2nhMuDGjy26nVmsyUCTs2Ve9g+6truKdAcd/Zw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":9092,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbWyzRCRA9TVsSAnZWagAAlbUP/2IoChmFjzIlveJWhnfH\nCylB15fvx20CPLm1ekC5LhXmbo/7LPbJyr3sw8rCCNGx/LbS/ti3CFnbRIsD\nwgqgweZ8i8Af2OZaQraakbr8EST2DonKuHzmZR8DCcqdWEQdIPeJ2YFuqCeb\nPtEg32AcUWBaoS627iK89ButP11H4O84eocM+cLXftwmgemI0f4GRb8VOP22\nu3yZ0zzeV8Z58LIUhbeaTzBpxVNbW+TU1YZTjHrvSTOb9PXjFxY5pYDwyyeD\n7WUVuJeACtFITX571AqCX40gRiWurw6ZZEV618aD9HChfekImpzGYciQshk6\nEFOcnFq8K0X89W+i/FF3azZBySkD6tsAcxF0j34Am8icEDOT+F5cWAbnGoQm\not3BaV7u4t0TTUyThCb00Qc5zZ5orhVr4paCaWSj54PQPW5UBIzimT3wrBnG\nEq0GcHg0CbtLES0qAGnSduOaLI+rPUR23gkNCdI/lm/WvtO7SGN3Scr7ogIe\nnRn1Rfee/SvnTtwvwR6G//Kx2WhJDuGh3mgmxwXHYgz1bHOZ2msc5pEOCok6\nVV3iJZLAVvcr97o6ESmReYuoAHenBn5+Pe9zr/VeNnumFMwGOjlgJwMedMHz\nGxnVql5ZqPFyMt9o3YPLUBaFRetsNMewAGy+nPyL+W833uWeK9HR/JNA2aPN\npSZH\r\n=bh0X\r\n-----END PGP SIGNATURE-----\r\n"},"files":["index.js","util.js","md-ast-to-mdx-ast.js","mdx-ast-to-mdx-hast.js","mdx-hast-to-jsx.js"],"scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"6.2.0","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"10.7.0","dependencies":{"unified":"^6.1.6","remark-parse":"^5.0.0","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^3.0.0","remark-squeeze-paragraphs":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^22.4.3","@babel/core":"^7.0.0-beta.44","hast-util-select":"^1.0.1","request-image-size":"^2.1.0","@babel/plugin-syntax-jsx":"^7.0.0-beta.44","@babel/plugin-proposal-object-rest-spread":"^7.0.0-beta.44"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.15.0-1_1532701905031_0.8591087973765381","host":"s3://npm-registry-packages"}},"0.15.0-2":{"name":"@mdx-js/mdx","version":"0.15.0-2","keywords":["react","markdown","remark","mdxast","mdx"],"license":"MIT","_id":"@mdx-js/mdx@0.15.0-2","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"homepage":"https://github.com/mdx-js/mdx#readme","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"7ca692d3b7640f725e1a63787c464d22a5a2159c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.15.0-2.tgz","fileCount":8,"integrity":"sha512-9yXKyiV9QCgf3c8qz1UsUUnwrSYkBwc1ZBal+VNH1GguXr/55Ptt+ELy53zj8Au4vezX9/vhp6JlX4SbLGy+iw==","signatures":[{"sig":"MEQCIEvEAEqEsEzAlD1WRiUFPk/KD9hfrSVjOcDoRA3UzHtmAiBbE7sPZK/YUOar2y4bH2f83dFwxjDQiiUById1zT+meQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":9184,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbYKaFCRA9TVsSAnZWagAAlhQQAJ4oSCJfIf+NXd38WNJ1\n12seNNjzS210rNRR1V1ZMB5Hb1UyDZ4+7lwRsepe0FxGt8wcZNKWCyZZdwSx\nCYmE2Bt9nXutRw0O1k5YKg4TVu1p797skx+xZA1oZLdoxPcZ5GfUMRzEyCag\nDOH1+CoSRj6Ll1Pd7j3T6zGid+mgOlaRqNavOUVc/m+enNATGLxYveoWfy3i\nXRRB8Vq5bov3wy0zt3tc3YBdLlnaWrbqaEDrnB58VaKo7r1tCwAPkFATV8se\nr99yOLrsKvaRfdSxTnLqK81gx/wFYlcZxlQ/FT4jk0mfMqn7+JeONyRo3mwt\nyu4iBZGwPsYFQiEOxPlFLzGg83V4mBkPuT9JE2UmDbXpJgydeMwxxINQkATk\nyNHLrz1YWbIpLtWTolgAuyDjZkXLugrwcSIgMic4A4M62CSyVf6nSXJ7V33g\nNWUf7dMIbXyBQ7BmGkE/0MVeaY0iEscrvwBSl1JgUufO1N7Ei64YoV64fKaC\nzHoGGjJegionRnUnM7AeQBcHMXsiee+pebChrLeUlZSgBynfg4gn5oHAzfsH\nrQ+YnDrpn6Fs6yqtcbbLp1mSov0Q/ymvBDiOs8cOJB67JO9NZ3MsDWGmsLON\nDhAbGhZGjnTYrGWlzDlto87MDKZa2ydWc9nOWCISCQFSC+ZXsA9Yq9MYYXWI\nDYSV\r\n=t5L+\r\n-----END PGP SIGNATURE-----\r\n"},"files":["index.js","util.js","md-ast-to-mdx-ast.js","mdx-ast-to-mdx-hast.js","mdx-hast-to-jsx.js"],"scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"6.2.0","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"10.7.0","dependencies":{"unified":"^6.1.6","remark-parse":"^5.0.0","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^3.0.0","remark-squeeze-paragraphs":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^22.4.3","@babel/core":"^7.0.0-beta.44","hast-util-select":"^1.0.1","request-image-size":"^2.1.0","@babel/plugin-syntax-jsx":"^7.0.0-beta.44","@babel/plugin-proposal-object-rest-spread":"^7.0.0-beta.44"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.15.0-2_1533060741429_0.8806538220491009","host":"s3://npm-registry-packages"}},"0.15.0-3":{"name":"@mdx-js/mdx","version":"0.15.0-3","keywords":["react","markdown","remark","mdxast","mdx"],"license":"MIT","_id":"@mdx-js/mdx@0.15.0-3","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"homepage":"https://github.com/mdx-js/mdx#readme","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"a70aa54d18add150807478d02cf79a858e41d0c7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.15.0-3.tgz","fileCount":8,"integrity":"sha512-urWiQ5O7b04B4a0PvrIuITYpWn03UMkHpwKxA8sLBPqmyhD1/U+GUTJvP7gWDYi/Dmo3xjiGzLPHDTUFhV6l7A==","signatures":[{"sig":"MEUCIGVsKVXQvQYXSdfPUkMl/H95cwLM2BMJpv8yzVqGBMN6AiEA1kM3xEJ46N8gzraM/edr8qSCvn/6cP37DAFJAVBezCc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":9184,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbbgiGCRA9TVsSAnZWagAAqEkP/2/IQ5y94kDtfKMipvPv\nx4ypJw89XMPfSJ3YTM4rw8tuOaVdxVMvo+Xv2uWyA7gZwbaDS0EkE+FQsk7N\nDTuM6+Jf6PXhP/LnVQ2BFj3mFg4KDNMPp50ijls5BL8IJ/Z05iQVtw2OGZwd\nvdAbWYlmifPKTJ7Sbw1EIywhvpx5IY9zI75aWUlq5XyrGdLUPjzFHmAs3iLa\n2qIbjzbk9DRMCiIv0NqRhsA01WzWApKOhBU6YjK5v+OBrkPdq+5RMcnYltnS\n+QRXiW4tLVdYULmSJ1xRR+ZvuO0mDXfhUM7AyEMRoAjuXTiGJZtnNH54XSEt\nO7ECGsUJVw/XuI3V5y+72w7ZyNGgA67vq7BAZUMZr5F3dUezPvCdsdOsITmA\nXGMt5Cjg/dBp+2sFcNx5DM2FveJiB7eymb5+bXuKGTM0Q1ZRiK7CGizJVwhM\nso8D4NhF3N35hJKuNIZcmrTdUa4fO0em8RI79ITBhOIaeNV5c4COfGOTDomv\n5NOv/lTM3R7LZwF3MRPHGMaiImZrBtWoBlW+bY1+nkuIrXT/4q3FZE7f2sNx\nlFGoSltFuLxjPZtkimkpAFGGJULugMoCTKLxORrnNEmPU7mHcbr9ciD9hpya\nKLhYB+rzP4cshpSerJCCf0BCelYU4J4aeM/9Z2JZEuBW8bFYOkicBXzDfc2g\ndnR2\r\n=foZO\r\n-----END PGP SIGNATURE-----\r\n"},"files":["index.js","util.js","md-ast-to-mdx-ast.js","mdx-ast-to-mdx-hast.js","mdx-hast-to-jsx.js"],"scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"6.3.0","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"10.7.0","dependencies":{"unified":"^6.1.6","remark-parse":"^5.0.0","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^3.0.0","remark-squeeze-paragraphs":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^22.4.3","@babel/core":"^7.0.0-beta.44","hast-util-select":"^1.0.1","request-image-size":"^2.1.0","@babel/plugin-syntax-jsx":"^7.0.0-beta.44","@babel/plugin-proposal-object-rest-spread":"^7.0.0-beta.44"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.15.0-3_1533937798337_0.8817310527649813","host":"s3://npm-registry-packages"}},"0.15.0-4":{"name":"@mdx-js/mdx","version":"0.15.0-4","keywords":["react","markdown","remark","mdxast","mdx"],"license":"MIT","_id":"@mdx-js/mdx@0.15.0-4","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"homepage":"https://github.com/mdx-js/mdx#readme","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"70ea7e911f06c6f8b9d9e93e9bd21946afd5e294","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.15.0-4.tgz","fileCount":8,"integrity":"sha512-cfQdPZGT89PO+9/lX9UQ5Jy63iVILSMprqsAuKlpciHqX+EXvw6jGUaGcXwVcj0A5Soly+XOo6eNrSX+gOge0A==","signatures":[{"sig":"MEQCICmRWZBcZ/tDyIBJzMnGGmGIFTEm646/oA5PxfQgIl5nAiB1VdscDNAMvzsx3GDyFO5QWEm9y60Ax485kCDCCFb5LQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":9184,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbbg0MCRA9TVsSAnZWagAAAfAP/i7REzTC5y67oP39G4+N\nRNi12+JJkzwymPQn4JQrkPsya3YKSyjlRQ3E/omUm4d1Kjcqelzaz6Hp2ovD\nQ9ZaSJBcjg029Hw3BwaTt8z6swX0+sOPqjXwpTRofT8F6nhbFDNnfWLoQEyI\nEFX18HJrOiGaA9BzX2Sg7VxIpbSg3hpwybAh420AG2mW7aY0KTRq65c6O3sq\nkZPaW1PbmEKwZAAhhUi50DXj+Z4wRqUMwED2Xw6Q/fWyzlje8fBr12mw4ElN\nFKBCM0Vl+WQ87kCbksfj2ICxX1PJNxYMeX19BhiM3QPmUXw/dXHhnTY043f1\n3TeQy1xTsARsOBahGp4CQrLKLqmlDfloQEksk59GAJo2BVKHL3ALBLIMBJ5z\n48XXQgkUPR6s9hgp90kbyrgaoH1diAPo1WYXpqaGSU8nVwOe/CGW8xVZj1cX\nX9ccHN094wGQEdbBkNrfMmmy5ldjm33ic7/y8XGZhs4p0cV0acZiBkFUhki+\nMTgUYdW8sXuJtok97O26XDRdaNpP8+Px59EkMtq6aw9nEoFP+8RPIPoFMod9\n/BIYh8A1Dq281ceUGWnbvw4KAVXZZfZI7xnHnYFzvDtKEzR598v+atTkhgk7\nZUx2jL9sabdVTeO+ZUmOVgfHf8+W5ZxB9U5jjx4BfBfQVhIY3yYTKMxOoLjf\nK0hA\r\n=28Wb\r\n-----END PGP SIGNATURE-----\r\n"},"files":["index.js","util.js","md-ast-to-mdx-ast.js","mdx-ast-to-mdx-hast.js","mdx-hast-to-jsx.js"],"scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"6.3.0","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"10.7.0","dependencies":{"unified":"^6.1.6","remark-parse":"^5.0.0","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^3.0.0","remark-squeeze-paragraphs":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^22.4.3","@babel/core":"^7.0.0-beta.44","hast-util-select":"^1.0.1","request-image-size":"^2.1.0","@babel/plugin-syntax-jsx":"^7.0.0-beta.44","@babel/plugin-proposal-object-rest-spread":"^7.0.0-beta.44"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.15.0-4_1533938955604_0.4810092018839178","host":"s3://npm-registry-packages"}},"0.15.0":{"name":"@mdx-js/mdx","version":"0.15.0","keywords":["react","markdown","remark","mdxast","mdx"],"license":"MIT","_id":"@mdx-js/mdx@0.15.0","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"homepage":"https://github.com/mdx-js/mdx#readme","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"34c6516fb28c518e3d8ed388ca282a148e2125d3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.15.0.tgz","fileCount":8,"integrity":"sha512-z+nzITlNdDZ6KAHIE0F8WpU9bcDm8N928yzjMy9Lmm1u+hMyPS6VPYnJU895Y0CXjpVyvAZfZv4MIhfIkJxCsQ==","signatures":[{"sig":"MEQCIG24YCLZAXYW+MsFGBKdVeF2i56O3SDSIxtTW0surA8/AiBf6iEhM4YIOtCKSBMhSbbT+0vOijrTEiJn33Am3JbmcQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":9182,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbbg3aCRA9TVsSAnZWagAANRsP/AgPEFZxolF1/D78049f\nLbidmXNL6tKz7v93/aT2WpIZXsZHZU/ghCTSr86dGX1hJqJfcMtPBPQH7a21\nX9Ky6RThKOkP6UXH87FP3ne3pGRu5JnNkOBtxlpYw+LpEudqAaF9LohHjYCO\nVazvPAFpKcYjnmVrGLgwkxGJlMJl4ktqUJ6vUlyg87bUHF1BRYsUJbrWa3nD\nrCwDVdEKEuMPOfUAy3JdCO/YseHTS6Lv3QOqTS+Gd+qyHwU3k08mA6rWMdM7\n/edSUaSi9LYWRFM1zxvE2+CFbmiNcWhFzjlb+PcPf9s63jl/qjaSlTm2WwEv\nY78x2yLE6M7i8Qrcf6ZKPL9XQB5jpTNTDfMXA8OycozvabZlg1R2GztWrNCC\nRFl8ZHYer1MhU5fJDsYm6jHU7rGVp9cxluwnc6GmcibtD7D0V4pxInJ1yWyo\nM7BYxL8Wi9nv3q4v8KDefPWucU302dLQb9kHP3rFE97kf+AIGL7tyApLKA3m\nMQBJFy2LxeteyuTdQnZRsnsG973r793zFr0La0cbSh0hAHhOpZf7jNPoL2aN\nsU/kTGvBMqixilRD4WWGVo0mIg7FsBLk8umc9o9jfURHzpC3eGZNlK3hubBA\nnFR8xyHFyOh9rN3OuPEq+14POrla1qvIS9IJCzxOgjYQ2AVqVcqq0UYUrrw5\n1XF/\r\n=P5wL\r\n-----END PGP SIGNATURE-----\r\n"},"files":["index.js","util.js","md-ast-to-mdx-ast.js","mdx-ast-to-mdx-hast.js","mdx-hast-to-jsx.js"],"scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"6.3.0","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"10.7.0","dependencies":{"unified":"^6.1.6","remark-parse":"^5.0.0","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^3.0.0","remark-squeeze-paragraphs":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^22.4.3","@babel/core":"^7.0.0-beta.44","hast-util-select":"^1.0.1","request-image-size":"^2.1.0","@babel/plugin-syntax-jsx":"^7.0.0-beta.44","@babel/plugin-proposal-object-rest-spread":"^7.0.0-beta.44"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.15.0_1533939161561_0.830815652236248","host":"s3://npm-registry-packages"}},"0.15.1":{"name":"@mdx-js/mdx","version":"0.15.1","keywords":["react","markdown","remark","mdxast","mdx"],"license":"MIT","_id":"@mdx-js/mdx@0.15.1","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"homepage":"https://github.com/mdx-js/mdx#readme","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"a18abfcf3b964c3691d896a2cb3aa15add82e6a9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.15.1.tgz","fileCount":8,"integrity":"sha512-r/qATPQC0onmYWJP/z+vF/Pi0yWOI3Vf8ASKA0RzRpxRDxQJElQ0tta4ABo0zdNO4UYJnFgCSocO36yV3L1GPA==","signatures":[{"sig":"MEQCIFeI/n9nhCXpgloLNfNCWGckucM2np39SfwULqTQ7BKRAiAk+54ASVHUcV46arQvQtO1JFilwBFFV+ZFKkCILDYuHw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":9736,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbkrs8CRA9TVsSAnZWagAARMAQAJU+sxATpK/ERm8Nf53J\ntaQR7oXkcmWeD5QuJu9n8AsB7ryJWrDP7NRcOLv4TJnyAOVXZKBNLfeAk4vK\nzAy91/us7w/cT9hZ1s3FrgqEnU9M3xPDqi509gv0dzLkwmWkQj9djeEzq4Gp\nJmH4wWkOO9dPrc0CMsKzDfAsF/UDpj52QD1uEyqZ+1FK8HgPuIjP3cdrey1K\nKuM9mlxSBkYOvGXzCjYrgrXJT1qO78+xjdTYS3RbSHDOefbEzNgjDb7VvvdU\no7K7MbGqkKgZyvwV0CpJ8CAprLkN3UI02BBZYclYZXhbPVrc7lp7X89nCJpF\n9Er7gAhakGOJ/iIY5mMSOFsTfHL1xFKZ7Ir49cFroIBCpoi6BWO54n4qBfr+\nxBRR7g6c8BAs447LM3CEPiel3dsn5RG9Z3N6CBRnXDaptaAyl3ONBPfVgq2/\nCgaXm/cRr7ihiVjvor48ReoNvMF5bJXbq6AXBO4Xq9NSN4eMwoTx3f+HZafY\nEepm8rRYLB/0J+UqELGoCqa507hSdNyt7OgWi67LgTQUBxcSW5w1kFOVG6Vh\nSCQv6s3nqREG3ylrku8P9CS/BbhPfZgzzcKjssC4bawFk4Ghjt1Ss7L5Gdui\nLU5EG8vXiXhM5BM8M2EGZxIdOC+M7eBcfRNozTC3V4G1XreagSdZEje3ySLL\npVE4\r\n=qrQS\r\n-----END PGP SIGNATURE-----\r\n"},"scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"6.3.0","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"10.7.0","dependencies":{"unified":"^6.1.6","remark-parse":"^5.0.0","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^3.0.0","remark-squeeze-paragraphs":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^22.4.3","@babel/core":"^7.0.0-beta.44","hast-util-select":"^1.0.1","request-image-size":"^2.1.0","@mapbox/rehype-prism":"^0.2.0","@babel/plugin-syntax-jsx":"^7.0.0-beta.44","@babel/plugin-proposal-object-rest-spread":"^7.0.0-beta.44"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.15.1_1536342844171_0.8707384237445546","host":"s3://npm-registry-packages"}},"0.15.2":{"name":"@mdx-js/mdx","version":"0.15.2","keywords":["react","markdown","remark","mdxast","mdx"],"license":"MIT","_id":"@mdx-js/mdx@0.15.2","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"homepage":"https://github.com/mdx-js/mdx#readme","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"e6e5422875bfada10d1c16c07145e3c02f109db2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.15.2.tgz","fileCount":8,"integrity":"sha512-ZFJ2vE9jD81iO54xSutIrPBxNgylNgZ2KPxx1HjN5e+fszsbGjjNUwVlknPz53cbiwVO3cxloWmcnN1cODKNgQ==","signatures":[{"sig":"MEYCIQDDHZYRp/haZC3E9vK2v2l8s1Pyzsk5eYqErvA4noAw4gIhAJ0esaY44fuZq3im8e3SjF+n83L6x3J1f/zhTWikt3PB","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":9948,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbks4rCRA9TVsSAnZWagAAXbQP/A4qqjjGB9S83egDSPTT\nM+0E+18EF7q0l2fmRv+WM7wYCEYwjsqC8NYM6TYrzfijR8v2fHChph0JkYBJ\nf1iI9/M1LtR2TgFvpPrqat9cNV+8VFTE36lAzbl/wAy9zrfo1xOpiOdM3m1N\nL1J0zawt/4hb0PzhuRykWFEx9fr69jEnnmJpK4jKW6bvqL2XPssdYk0awglY\n3vSfLpJKfqw0NN7mcxCtbFBnnNSqsSjShcYk1Vj4VCZJJQ7mQz37BFc/SwTh\nb8Sr7seLa7TWf7JSQYYLdbCvQR9brBZR1LrdRxH+kFierj1EvjV/pCK6Vpv6\niXN5Qqvv28jtCoUIauMuuSv2SY5vsMlKgDhtyaj8hZDWntWHtrSelBqhbaqG\nfzwI/mKSfk77KvffiRjRfddSo4mnmJqwF4gn4q2wqGwiiqCEiNS5ipxggz+Z\nCyvdKTJub2MYued4CxMG5v2JODwjDmi6C/GPcuNyWOojjIom1LY24UJlvElD\nK8DQCHgVGTp6aTXZNGh6TvG0ToVK71FPej9A2QZOf/FsB3VEt16FhCq1JBe1\npGxtah5+4k3gtF4xH5G0k69/716ESJNYvGRaQRRvxs7WcfYblt04jW6r41By\nMf7AM8lwAKWS5Fw7Qb25hIm/faWrStmUncsahQf+ZDSwmybxzf+eMMqHbEFq\nRWJP\r\n=Lziv\r\n-----END PGP SIGNATURE-----\r\n"},"scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"6.3.0","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"10.7.0","dependencies":{"unified":"^6.1.6","remark-parse":"^5.0.0","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^3.0.0","remark-squeeze-paragraphs":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^22.4.3","@babel/core":"^7.0.0-beta.44","hast-util-select":"^1.0.1","request-image-size":"^2.1.0","@mapbox/rehype-prism":"^0.2.0","@babel/plugin-syntax-jsx":"^7.0.0-beta.44","@babel/plugin-proposal-object-rest-spread":"^7.0.0-beta.44"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.15.2_1536347690990_0.873160113461257","host":"s3://npm-registry-packages"}},"0.15.3-0":{"name":"@mdx-js/mdx","version":"0.15.3-0","keywords":["react","markdown","remark","mdxast","mdx"],"license":"MIT","_id":"@mdx-js/mdx@0.15.3-0","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"homepage":"https://github.com/mdx-js/mdx#readme","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"df45b7764c019b38c06e541e3cccce84e6a22d52","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.15.3-0.tgz","fileCount":8,"integrity":"sha512-XmveUCQYwm4Gs53s6dKIQezs2f88+7momcoC1+3rMnyxqgXZNgnDLbPEb+HO8f1ncx6vEaZBvUHXHL5kNxwlPg==","signatures":[{"sig":"MEUCIQDN5eANFI9fnnaLqwfBLV4fkjpWYrY5Kfxv/u59XxhbAAIgD10Z0BEWA3aqRPWzQLboGkCeNdOZkqOCDiQu2MdrDbM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":11916,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbo81ACRA9TVsSAnZWagAAjK8P/jsGWUc/8+UF4WIxH8L4\n1ctWLmnFYqy0H4Gq/HauhDMFOQBlVkqstKt3AM7IdhNopmUptds/een88hvI\ngAyBeNqgaxV34+Ej0xOmZVYdzeEj4vKbqjTmVC1B9w3/jo2J+NivOK4CEIrl\nGmI1dXPvXxjOiPLXbYvOb5sfcN8svjN9QmodgBB4GtP0WuQ32I5Vx7+MX76S\n+pK6NNL1IK8JEsLI6KY39CXywwby9YtqmVzXgLifuebIa4mMrYEJeo4JHgLM\nTce3Xh8qNUysNTiqhbsQV4/hnL0y15Wk6dVgnNXThMcGwVmfXDaPS6sNWwa3\nGrisxVVy0kvaL/5CTlrqyH2DFNCOMLh7J9PrOorpo5WmgDCSDJm0vSSt6JOo\nXeKoaCzoNNJHfKDUiLwSiYeXVrmMe73zPVwTIXXbjcy4ArX0BtlSXQR1zYbs\nil4vUJh6/3USNDf58NeB0HqGrAosRoybDdk8rmB4Rpp24koFy4LfWY1JJaTn\nqMTfVbanK3eH6uaXKq+if6xG9ktFFoIO5uxV8oaXHqoafMK40X8i0xFeT0yu\nCKzlzAM1186ri74GMEhN6IODvF47KBWKfPaKXEozBYEcOC5h/Js1lk5t39TJ\nKrbcDXY2d9MxY2szc9BFtC5jkRCqIIArz5XBvK4fPISe23lLuy7sD/vBLoQd\n46YE\r\n=F6Xl\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"6.3.0","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"10.7.0","dependencies":{"unified":"^6.1.6","to-style":"^1.3.3","change-case":"^3.0.2","remark-parse":"^5.0.0","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^3.0.0","remark-squeeze-paragraphs":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^22.4.3","@babel/core":"^7.0.0-beta.44","remark-math":"^1.0.4","rehype-katex":"^1.1.1","hast-util-select":"^1.0.1","request-image-size":"^2.1.0","@mapbox/rehype-prism":"^0.2.0","@babel/plugin-syntax-jsx":"^7.0.0-beta.44","@babel/plugin-proposal-object-rest-spread":"^7.0.0-beta.44"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.15.3-0_1537461567577_0.4990948423100059","host":"s3://npm-registry-packages"}},"0.15.3":{"name":"@mdx-js/mdx","version":"0.15.3","keywords":["react","markdown","remark","mdxast","mdx"],"license":"MIT","_id":"@mdx-js/mdx@0.15.3","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"homepage":"https://github.com/mdx-js/mdx#readme","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"8ab4968b7d9f447ecc39285872c16f79dcd7c25b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.15.3.tgz","fileCount":8,"integrity":"sha512-IkllrhRPERVpOBTYbzIWIMiVquNS0YXDtp+s9hGXs1qzAdw0t3m8nJxobDtp/21XmXKJlarmVzUaylsUY/jr4A==","signatures":[{"sig":"MEUCICcQkuwfo2vesZ27cezIxPYhu4HLcI5WY/BXb0Vg+02fAiEAqZAAxd9ZPKIjxHOsqBuIcdxJNZUljtdGSOSEZ1M5Rlg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":11914,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbo9JgCRA9TVsSAnZWagAAna8P/07CyDXMlu3AEKtPzouR\nz3kuQ+BC520ODrZgW+1mYZquelUKIWteQBg+SJB/pLLRjE1jwP3XM8de9tII\nkSnep4TGWBmNUrnmDK0h5byoOnXfoAA8l+cr2I2gGeL83XcFkB+9E+2UtO0F\nL9BC1lCMZlx/0szXs9qSMUBEbcVb5Rwf3fSD//rBWUp4kGviA6usxwIaPfon\nyCqfR+Lq5MXw+8bGitvskyc4fXdUa4t82Z4ape1MIC+IT+rlu1G9S+G20+GG\njSYix63ylG9g7MCdUqcjIkjExzCMl6CEoJPto6Wn+R5N4H6XsZj/UoDqfkdW\nObWmgFmd6r+MlUGQ92aO0ycMbwNCScUir11lfjaUqywCr/xoRIsM/nrUlFOD\n7qlFh0M/k/0kEqhzfAOnbOdUaHvG6UWqub68BHzk0kH5+CvgyTdVKsO6m5oo\nQ/4pb/Vcf7n2/PqWU6bGO9uZ7VWiu58dAD9h5bx4SXiNa5XezSqhE1rZwfB7\ndWFm52q85vy8YdbccTY8S2W6S8UcMzlEuMDsIP8GWqtY6nOlPEx0YiQnZkS2\nZ0CVmHW8sevCQLpNLkmk7SdDsGkiIu5MeJrnaZZSBAG7E/JO6JAL+TEvaxws\nuektP/p3xIZBojY9VliwhmgSzeh8gsnnA6tN8SsFHSOrg1wvii4R+BMUNiLg\nWKg7\r\n=O6d3\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"6.3.0","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"10.7.0","dependencies":{"unified":"^6.1.6","to-style":"^1.3.3","change-case":"^3.0.2","remark-parse":"^5.0.0","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^3.0.0","remark-squeeze-paragraphs":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^22.4.3","@babel/core":"^7.0.0-beta.44","remark-math":"^1.0.4","rehype-katex":"^1.1.1","hast-util-select":"^1.0.1","request-image-size":"^2.1.0","@mapbox/rehype-prism":"^0.2.0","@babel/plugin-syntax-jsx":"^7.0.0-beta.44","@babel/plugin-proposal-object-rest-spread":"^7.0.0-beta.44"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.15.3_1537462880003_0.2232962669696359","host":"s3://npm-registry-packages"}},"0.15.4":{"name":"@mdx-js/mdx","version":"0.15.4","keywords":["react","markdown","remark","mdxast","mdx"],"license":"MIT","_id":"@mdx-js/mdx@0.15.4","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"dist":{"shasum":"fb1799158e63eacd0dbdecb649b13cea55377ee8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.15.4.tgz","fileCount":9,"integrity":"sha512-GK3G6ERW4/KGA6jNe+uB1vx3LUD34PK6UW27dFtojr9Ak0arGzQJItdWjl85t3OCLIt+a8QmfNYjBOlCApLSeQ==","signatures":[{"sig":"MEYCIQCF+DFh+6KbOPNmC7x9KZ/rsZAVwJ2z4HsaiNwDKGqbcwIhAI1dLamEi/z7SaV9kOTJw6eJfx7lFNKZXruC2VRJaj3t","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12803,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbqTKoCRA9TVsSAnZWagAA9LIP/2vIWh8BnD6yGD/etGIB\nfS9PSMTkWt7D7uqqctoMeSgBAnb0dSkmV9kyVgq1tl3k/HfPy5urDOXB7IBQ\n0xQIEm9gI9xguHDmTYPO9mdXFxv+PvTecnTgy+WzsS8SD/UETJC3nNbnPz39\nAq1W3dHKKJKm5CkLaFQiSmyOiTl5S4DNK/JnqjulkPySANcHFDAgVHjokYw+\nM7h6Xfmm6OPcm/7tV/MCMiKuahE1J0HkxrcdqJ4PWHDUhs1cQ4BUqlRw09iD\nisRiPCg0BIq5N9lW9si5YpJpiLTtcjhjI7y7zqRNTnH/ljlvG7VK7o+2zDAE\nuIBU6gNEVB2KI+h5BMLAnvxctEUa1MX+eIL9JkNwK2jSU8ObTmx6lb6xRHqg\nESlgeE1T6tWtJzJrbO2315WnJtx2Igd1DbitxcqTon1DXtbfh3i3nPFbBYX7\nNAs8I1qtzKCAA5pKyWLffaM++T+tpYS0Jomw1MVmdbh2Fgd33my0kctUQ13T\nlSXna/+obfH/X0EC9Kw9sVlvBVoHSXDxn+h7B1AfbAneg6+tdGUSuE4srRbo\nJXenZaFw8wjxIGzv8mG1HIDiuunwyDoi6+rGHgHkiCjnENWjvjevQOeb5fHp\nlUtAyweL6h4ii48ZYU7pGECpGmSxvIXWINWtdBPVC/uHCNCnXrcBtB4d9ic3\nNI5Z\r\n=IXGz\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"matija.marohnic@gmail.com"},"repository":{"url":"https://github.com/mdx-js/mdx.git","type":"git"},"description":"Parse MDX and transpile to JSX","directories":{},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2017-2018 Compositor and Zeit, Inc.\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":"^6.1.6","to-style":"^1.3.3","change-case":"^3.0.2","remark-parse":"^5.0.0","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^3.0.0","remark-squeeze-paragraphs":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^22.4.3","@babel/core":"^7.0.0-beta.44","remark-math":"^1.0.4","rehype-katex":"^1.1.1","hast-util-select":"^1.0.1","request-image-size":"^2.1.0","@mapbox/rehype-prism":"^0.2.0","@babel/plugin-syntax-jsx":"^7.0.0-beta.44","@babel/plugin-proposal-object-rest-spread":"^7.0.0-beta.44"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.15.4_1537815207547_0.35001963824053206","host":"s3://npm-registry-packages"}},"0.15.5":{"name":"@mdx-js/mdx","version":"0.15.5","keywords":["react","markdown","remark","mdxast","mdx"],"license":"MIT","_id":"@mdx-js/mdx@0.15.5","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"dist":{"shasum":"a3821a1e0e460ee993437ef3f922482fb67c31d0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.15.5.tgz","fileCount":9,"integrity":"sha512-BZQztjePZNLLbtqTdI8ApzUl1I6blY94vCswT/TYvH305Uw86t+p1mzP2R8RNe7SWT3icLkfiwRAIDM9Zp52xw==","signatures":[{"sig":"MEYCIQCMANA1KYkWHlxLhc4k+Vw1wW4qziDglGuZEtm9M70n9AIhAKQGeUBJ5eQ7Rf9wL2gEHRlpkCTQzti4LqcUnNYJRIxH","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12833,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbs8QdCRA9TVsSAnZWagAA8lAP/2RW3wNKPHzrBikUfDrh\n0zbB6dhnZe7Ebox22zzXFg91BXj4v/hJmHrTzlkZhwxM1Lr7n2wGRecjfT/B\n3+xKbPw464+x5aKoTyuMsMsy6kuoYMmwrK1yFnpv9PDB8jN1/TLTTJS2AorJ\nO9v9M/Tq1FwCSipmrHdXYxBsd8NtV1asVMioid7mIjxknM+qMocIaQr8pmJA\nE2pmQa5hkPtPG4mEiCprqY/A3VKiIEWnjgQX1vj1LGeq149XXfY6FU6VPPIS\nxobchik+2Reo27UyFv0YPgJyaDeGujHVjDe3fy/nmfBdwENvaKQ9loTRnfES\nEF9wjc9w+HdmaTeHOtlGAwPl70aPtLTwfhrOtwrnE2P+w2kNcu7hphyZSsBz\n/Yrgm4SzdJRvywHyg6Wkbbd5BK4xHNsIlxpQJ8EvcQygvC75cXPZK9WII0fE\nN/bJxBcHK8/U4xYmprzpjzORf7pM1U336zkE/NSwq99kClzUYPiORBOCTaH0\naxVPBa84+LDgHxaQmcI6682HzNC+PXkrvs9/ahoN5XhXlC/n34KJZwwUbUHB\ng8jlNz3eCr4BMq6ngMvhV/gHx5nV400nd2gjX+fVH1kibmMYFaceo309RH4f\n9cWdmeL9Q+tKGNGgU06CcDNoeLrU0j8SaF9ff4AIcJui/x0opTTbGV6R9MuK\nTjq1\r\n=UyjW\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"matija.marohnic@gmail.com"},"repository":{"url":"https://github.com/mdx-js/mdx.git","type":"git"},"description":"Parse MDX and transpile to JSX","directories":{},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2017-2018 Compositor and Zeit, Inc.\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":"^6.1.6","to-style":"^1.3.3","change-case":"^3.0.2","remark-parse":"^5.0.0","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^3.0.0","remark-squeeze-paragraphs":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^22.4.3","@babel/core":"^7.0.0-beta.44","remark-math":"^1.0.4","rehype-katex":"^1.1.1","hast-util-select":"^1.0.1","request-image-size":"^2.1.0","@mapbox/rehype-prism":"^0.2.0","@babel/plugin-syntax-jsx":"^7.0.0-beta.44","@babel/plugin-proposal-object-rest-spread":"^7.0.0-beta.44"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.15.5_1538507804680_0.09417367953347555","host":"s3://npm-registry-packages"}},"0.15.6":{"name":"@mdx-js/mdx","version":"0.15.6","keywords":["react","markdown","remark","mdxast","mdx"],"license":"MIT","_id":"@mdx-js/mdx@0.15.6","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"dist":{"shasum":"b6644c3d674b9e94a1ad933ef1a76944917e2963","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.15.6.tgz","fileCount":8,"integrity":"sha512-i27p31RE7UFU3B0B5/T1T94TLbJIPZTYAtNau0jFTF60STAo8SHEvq0dYPv0CrIYwUFdIHVCmSLE3+EDFKc1gQ==","signatures":[{"sig":"MEQCIHyjk5nQAijP69x3YlTjf6/QM0rmY656Hyw7Imz68ldVAiAhk/Yy0ftNQ5h4F2mx31bhcU1EbiOR/Dk1PBCU6bNvtQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12937,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb2IIYCRA9TVsSAnZWagAA7I0P/iyJ3L/mxRHBl9jhfROU\nyr2ntfBMGmJvLjLOi11ahrWpSRi00ZNFpmyNfYEdMlKnHR45LA860ShocjM2\njBzSKt2SU4N0nwWZQ5JIqJrtiT5tyS8n7+Kdrm/BANo+4HscFjxxycjhV9df\ntWUM6bXP3xu58OqumVgSJT1CTcvJ7IasBy4B0ZMh1BmukaDUcAMnsNI9CLps\nXpkBi2vddoOZH+g7FsvYD9Vowddx3lk3xap2Iyxxf4jL906jyk7CIeea5no9\n6R3Thi5Mve7Qze6ADDZ0oyyTueIdyvZZfSEPfnb2iVcBQj1DZTX/YDTVz0I6\ncyfAJk/u2/45maxJ4SsAmO7cYDg3SeLA/EsD1QEIz9aprIhjIxfs43EFFHl7\ngQQJjtgHsPgM/8Qa7+u8XffumQpD82/5MSA3LdrwjA49768y7V55pwkvWkNp\nh4t7DS5KLlgpz6VBUEKweE3so7hwT/DzKrl3kwWlD9kEbtu1x+1/rE9/VzLy\ncqgYmX6czyVm5HeZum7H+KSKd1+y+yqEZ/vEgz2Q8Biq3uKLPsOPug+fyFud\nV5YC8SSPXPL/kGBMdS5Dfo+uvABKWPujLT8e9D2l1dRYSa1bfX2PMKo3PLSP\nRICme5ACtsAs7MZI4JTIEguBryh9f99MDHGe90inVExR1sSoOj2mMYJDXKSK\nsvLX\r\n=KgLD\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"c719bbc4bd3914da77e89abaa73b0db1fc33a6d1","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"matija.marohnic@gmail.com"},"repository":{"url":"https://github.com/mdx-js/mdx.git","type":"git"},"description":"Parse MDX and transpile to JSX","directories":{},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2017-2018 Compositor and Zeit, Inc.\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":"^6.1.6","to-style":"^1.3.3","change-case":"^3.0.2","remark-parse":"^5.0.0","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^3.0.0","remark-squeeze-paragraphs":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^22.4.3","@babel/core":"^7.0.0-beta.44","remark-math":"^1.0.4","rehype-katex":"^1.1.1","hast-util-select":"^1.0.1","request-image-size":"^2.1.0","@mapbox/rehype-prism":"^0.2.0","@babel/plugin-syntax-jsx":"^7.0.0-beta.44","@babel/plugin-proposal-object-rest-spread":"^7.0.0-beta.44"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.15.6_1540915736152_0.4607647197811491","host":"s3://npm-registry-packages"}},"0.15.7":{"name":"@mdx-js/mdx","version":"0.15.7","keywords":["react","markdown","remark","mdxast","mdx"],"license":"MIT","_id":"@mdx-js/mdx@0.15.7","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"dist":{"shasum":"5fde5841d7b6f4c78f80c19fff559532af5ce5ad","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.15.7.tgz","fileCount":8,"integrity":"sha512-bWUQidQhjTRFh5nK01kW3qQLCH/aCq6VTapOZ/+WI5hL4exoRw6TgnxxmgSf/p7mmrGxIpCHmnaWXdbHSObxlg==","signatures":[{"sig":"MEYCIQDj0Dw+1dzFOXniTq8s6MBWdb3v1o61Mlk2hVLHlYjMrwIhAKebtZ3m0YzUG4JHvdR8lbCLfygZ/DR/hX9lfxxyA/Fg","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12960,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb3dJHCRA9TVsSAnZWagAAPyIP/R+7q43z9vq3QYMVxE4G\nRhdNVYAU4qbaqB/DTtTWSN5qZh3dTcIoY3vNN7AaxgR5qYE120SM/7ePVzbv\nZcEUF/IPe4jsZb3ZT87dLDtWS2L+KEs0VKOMnJh903OHv75O6bgwnowVGXWd\nVuDSnfGzFX3MNxQf383JKbaXi1GkjylcDKrbcZBhdFv24uIkWIqJSAMwgHgu\nKITYYMG2NGNe6THS9sPFe2rnU4W3xvDEzgOkvKekpIjnMXZGQ93ivzHzqniP\nJiYNXic/WVz6Srn2CpkvTxszaXP0X6GCUZrOJuwdSjdZiHmYqb+tws1j9ruT\n+UzlYrP1EVgA9nekR3RLEiTCFnZhBYbY3h0yG+636HI3aV2Egp9VmBgxwTGg\nakozJw90eWOWAcXnJQWdcynMNy9DUX4bKEzDVu/tRWpWucC+0ehDR7dmrCA1\nQqETTkFuyBaT11QzJkzz0dFdwgxBa8DbIw7MHu5IJplcifJbIgPyaXX+BDk4\n1aFnXHTRRWvdcLmkwlmenGhi4gGMhEFIFj37IXYHLzhd6FWxtQA6DJwDam6I\nmI6SKyVqJXxrqUoDNiIXGfx2ZTCmlwkWLVUsuq+sremeXczkcaozmAlnyrnR\nhOoleCd2hSsFu3C6pY788aCGxP4D7RS24hhMDp6RONcGneX+Nqqt7wnDHGyy\nB8gr\r\n=dpyM\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"63120c7a078987e1c3280ee3e420afdf4abaa31d","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"matija.marohnic@gmail.com"},"repository":{"url":"https://github.com/mdx-js/mdx.git","type":"git"},"description":"Parse MDX and transpile to JSX","directories":{},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2017-2018 Compositor and Zeit, Inc.\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":{"detab":"^2.0.0","unified":"^6.1.6","to-style":"^1.3.3","change-case":"^3.0.2","remark-parse":"^5.0.0","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^3.0.0","remark-squeeze-paragraphs":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^22.4.3","@babel/core":"^7.0.0-beta.44","remark-math":"^1.0.4","rehype-katex":"^1.1.1","hast-util-select":"^1.0.1","request-image-size":"^2.1.0","@mapbox/rehype-prism":"^0.2.0","@babel/plugin-syntax-jsx":"^7.0.0-beta.44","@babel/plugin-proposal-object-rest-spread":"^7.0.0-beta.44"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.15.7_1541263942982_0.6637286576595403","host":"s3://npm-registry-packages"}},"0.16.0":{"name":"@mdx-js/mdx","version":"0.16.0","keywords":["react","markdown","remark","mdxast","mdx"],"license":"MIT","_id":"@mdx-js/mdx@0.16.0","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@gmail.com"},{"name":"anonymous","email":"tim@timneutkens.nl"}],"dist":{"shasum":"eb5b908d4903dc657c1921090bae1173166553a2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.16.0.tgz","fileCount":8,"integrity":"sha512-HCsRMmDOHmsTfwRxXOovccfk2DCVd4Y7mn9nP5U8R3piIBFw73/Ayb9HoTdyvWnSX66kZkX0nTRnmWGOgT3u0g==","signatures":[{"sig":"MEUCIEsqej1QS34+BiKl9WmS2pr8uj9e0XF6HI94+EG5QIOvAiEAs5YZ1PeDUtcLezMiuqJDyfZjj2XPn5CJckv2qtI1GoI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12999,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb4LZbCRA9TVsSAnZWagAAHlcP/joRUGak23saNQExAMi6\nXKkvCnipzGsLJG27V/JcuveIpLtU85zE1BkDAYZiKSD8eI9/E/DvPs+szV5+\nsLVM2RQiugyrujQLbR2HxQINdAs18cyKFnciGviaUYUWaCl8z2YYzG0MP9Al\n+wxLEA5or2JHByJCBAFisLiKztKtEgBZuqBUOJerMUw1ki6HonBioZQ0VWBh\nnr2UlhmVndZkOja2BYTY5do6b4sKFpXGK+sETrIVBlczGKW/sQpHj6GH2M9f\nHskY6MYqpg+eYgAAtxA0RGGE+Ewvi1bs4XJ6ifLKICCxWucqSgCgqxR3GR5N\ndDSNtyvWnSsHRrBrwsx/TzNiKkkmqSh8QtSTIYXklHePPnugDK7RJ11ybTLi\nzNoKEj4SJpoeJ4EPfJJeOKb9YV+Bn9QRt//Ci4TS3MKo1QVp1ip+h4buJ3Oq\n+GEZbV8ch1vdu2J8V7xS1K4Ta+2+wiJ6V3LTARm4R323FuiMrIowAMgCD+bi\nb2x6tVi05DWKzcobiPvriD1wdJAh3ja1JgCd6n5dcT7oX2+PhcOmXRdcdTTf\n1K7Rbw5hoD7Me2xMcjMM0Pzx0z6i/T4zHy8ZMBbzVvlKnQP64rS8XvQT8mSq\nlXexGf2KmflsmAqphqt+Nr86vSNvoc4dy0vjun4yZDvrKRWUrCzJ+GNjMO+e\nEVnS\r\n=A9X/\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"2c1c8676327f97b060283c5a9047574d8ada11ec","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"https://github.com/mdx-js/mdx.git","type":"git"},"description":"Parse MDX and transpile to JSX","directories":{},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2017-2018 Compositor and Zeit, Inc.\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":{"detab":"^2.0.0","unified":"^6.1.6","to-style":"^1.3.3","change-case":"^3.0.2","remark-parse":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^3.0.0","remark-squeeze-paragraphs":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^22.4.3","@babel/core":"^7.0.0-beta.44","remark-math":"^1.0.4","rehype-katex":"^1.1.1","hast-util-select":"^1.0.1","request-image-size":"^2.1.0","@mapbox/rehype-prism":"^0.2.0","@babel/plugin-syntax-jsx":"^7.0.0-beta.44","@babel/plugin-proposal-object-rest-spread":"^7.0.0-beta.44"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.16.0_1541453403317_0.05313406787170116","host":"s3://npm-registry-packages"}},"0.16.1":{"name":"@mdx-js/mdx","version":"0.16.1","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@0.16.1","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"4e33bc94b5ff950a0a04e951b9a12a17d4a78ff8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.16.1.tgz","fileCount":8,"integrity":"sha512-HVq9eTByzblxloKATwQPFsAN5ubmf8cEwX6F/s1XQikvtnM94OQo3ecG8f4WqtmV/S2HxcnozhtD+hCiGvmcZw==","signatures":[{"sig":"MEYCIQDnqaa40YDzTEFD5LBoVQM/v9UVTvU7hen65yWSMe2eDQIhAJHkZrUBtgnLYEJwMJ7pfX/xYXIdDGrK7Uf398Wuwd2z","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15084,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb8/eECRA9TVsSAnZWagAAYHMP/ROrQncIk+7yoM1yioc+\n+rilkDNbldBBCQT1adYaxeCbOgzXwswIZfdrqX0JdLZevr3lkelVT9GHOvzc\nDkAMsY5BD78HP6rPFOtvdnU9lLNzrECGzTUBPkyufiqBF/ikGdimTNA7W12/\n/SGWPE4mo8oZgyAhaV1DN4RBlJdrNEwkuXrgGZpqDPP5Jqy9VuKsq4XwRR8E\nsdLcCWGJFhfC4ymhWV8OTw/YMXgqS+t5Y+LF5Szl1gFBYVqsHAu+qyS3XIEX\npbOVNM9lBu9khCMmU/8n1kPXyG0G7Vk3amKXw209rMZyb+kx91simXVcjdlP\nH9oqaMUtAg/2nFXo95ep0PfO4wGs5W/Sgc9R3Xq+uLQeAXE2k5jS8S6waxy7\nkOoe7s1ANdT94M52+aN+2j4GF2YSKI1ajizx9/MBELYLOF6orXFXSceDu8fr\nwP4rHvPBWmmP1ug2r/M0Cgro1Z8KWkTNEpvSMscg3cfDby//9gcW8i9WIL0L\nUFxFa0Sd3U8bHaw++hWbxLxZb/nfsklphT3mJtMBmlczNlq7XIlyGFaNz3MI\nV4zTSnoDS/FJK2ta6gnv/qdHQ0+QLKLqJTdYc9tKptwuLnmrYGUzhH8hoVj2\n3rLMyVbxoQEbCVmhVC54nVHL3K8EOU4UbUUrZLn8BftMb6oG/8tl4+wn4GzD\nwq16\r\n=3TqG\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"b69654652e22043592da6db45bc8306b05c783ad","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"matija.marohnic@gmail.com"},"repository":{"url":"https://github.com/mdx-js/mdx.git","type":"git"},"description":"Parse MDX and transpile to JSX","directories":{},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2017-2018 Compositor and Zeit, Inc.\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":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","change-case":"^3.0.2","remark-parse":"^6.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","remark-squeeze-paragraphs":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^23.6.0","prettier":"^1.14.2","@babel/core":"^7.0.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-syntax-jsx":"^7.0.0","@babel/plugin-proposal-object-rest-spread":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.16.1_1542715268057_0.637673011832401","host":"s3://npm-registry-packages"}},"0.16.2":{"name":"@mdx-js/mdx","version":"0.16.2","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@0.16.2","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"d7987881eec4ea993f23e759febcd264dc421da1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.16.2.tgz","fileCount":8,"integrity":"sha512-XSHQKaag6GhXioWdLvSsjWta60xcbdOBm7PbMHqekfzWWu/5cqtycBxr8C+3MxDZceMftocY4y9fJIJY1s8Uwg==","signatures":[{"sig":"MEUCIQDfs7KlqIvzuFHJlJZq5hZ0lIKogNE/xNGM22NtrQVB1AIgEBl1Kz0pZaaMkgTIWTRLz+mfppBIoC7c3FolOKTmCFY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15106,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb9ILzCRA9TVsSAnZWagAAWIQP/3LVJQtf5KnZ5TccDyz2\n/EJrCn1Bp7Au5N91nJjH4HzJs2wagQ6lcNZuSEKcCvGI543j6+LZCAU8RdCX\nmcHEvYr/3JCNdb2XtMnNx6n9Uw0ktQSdVdzeMfCIZXnUUQdT8UXWVZ7+bIgn\n/b+IIM92kHCADX9qjOLiVrXJ8q9BF5a0eYJR6DtWw6mCHHahpK9iOj7RZKZg\ngiMObSIm12IkT6RWVmvAwJ6yarzsus9wAf9cbTy0imk9PpXaHrOEVZAyo31q\nMTSci4fu2hQ7ah+fQpJbQ1fVIlx0ATZRIGXubWiy8VluYgfjp4EP+hu5jWX6\nivsS3QNyIOqe7Oa06wL071555oi7p6cCRdFyA/lqvm+8IlZArCQf8ZKJwYYJ\n0v/8SYCf0OBTBQgdYN5bndhnrH0Mmz/jv6xkc/eb1cQmvnSbNqLBEw7c2Xsb\neF1wIgy6Hh05jt3Xx73pzgCiClArlM4X+TR0ST15Bcm0hRs/kJmDow/P4nXS\nET464Aady9HIzyvYiRKyl3G2viKugrcjPuIXw6SZ53aPrCA/Q5cOvnOOG5Xz\nXjfYtBCUxR5tt6TgdmHQhtAE6Ky0eJ1GbYcWEdwrkvzIFmiNJwGvg/EayBXH\nOJuyEvGfDGQ0HR1uqvqbjd2sz7hTD5bqqoEVJs7X4QPa8USWUNv+EVn1+zBj\nQtkQ\r\n=7LMr\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"ce5b2f80b0fc8bf9fb7906f889e52296227b2708","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"matija.marohnic@gmail.com"},"repository":{"url":"https://github.com/mdx-js/mdx.git","type":"git"},"description":"Parse MDX and transpile to JSX","directories":{},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2017-2018 Compositor and Zeit, Inc.\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":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","change-case":"^3.0.2","remark-parse":"^6.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","remark-squeeze-paragraphs":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^23.6.0","prettier":"^1.14.2","@babel/core":"^7.0.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-syntax-jsx":"^7.0.0","@babel/plugin-proposal-object-rest-spread":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.16.2_1542750963145_0.5192274149405474","host":"s3://npm-registry-packages"}},"0.16.3":{"name":"@mdx-js/mdx","version":"0.16.3","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@0.16.3","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"8ec80c5c12e0f8668890de2a12611196c5556f08","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.16.3.tgz","fileCount":8,"integrity":"sha512-T7vBZFcjMRTYtmuUGCqueZmw28Wa2gbyO07joOLrpJwiAfEkrro3cMM+lEwWmt59IkbXz1IvaI67jgG0wUYw6Q==","signatures":[{"sig":"MEQCIFn5IzY+G6vH5U/bu9l9gpYDWBeG00FhWApsfbhjIKiyAiANpKoxAjdpOWgXWggGfQn5wVOtywth65VtGRPqHgcd9w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15283,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb9PZtCRA9TVsSAnZWagAAqIkP/jBR+ew9daGWBJ9Oj55b\niqhOvK01GYri4nYHj8io9eEul/2eNT98EcQMw51hw1zVN1VdS2X0mr82mxvb\nzJTB+UKf8JwzpxY7eUrsPLT+zj7g2KpHokFZWQcMGsozNw26ZpEd0W5jJpWp\nMxxaVvfbAPmHIuM1R9QZ35QaWCG2NPmFJyNaVrwkus2XC0c1vyZkyoK+8/wQ\nBEQlcHQXDXIfS+ShD3Zipjo4G/2yh3NToxXjwcRou/Yu/rhevJHbCDEeP9r2\npOJu3Ru5hZiGlufrBn+v5yXD0PIbDaTocV7Yq+1thEsow4LeKy+TKxZhC9IJ\n+F15wzQwoTrpLxV/RXnNFSSl9Nsx4rOFopALoERGjI2+7jphkc7jxSDkhu+j\npM0dXaC5hErjsLccDUzOEYyYqA5QFinYp5oFjCfk0zupZjczLg/vmvfSfhA6\ngaA6V2z31TkFL0Le7ggJ7mgYkv8P/8ogvYx2Y7npb6hIC5OPyADuFjTyhZ81\nVeap1tqDmuTdGvu53eMh9iayBz9HhxLBveWTxrM3GKDoFT6Bdxofrlg0ZRIF\nc8s4pXrqqBJRvTAqMExZb6hYPADhQywXIkBClyknHXyWFu1Qc/5D53g4DrHq\nysORcNWYpUXvNw+Wau3WRog4NeEluIam//CX1OZoh4E9yzkhjQAhPcW83r2G\n5yu+\r\n=wv1c\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"7d992a2b0881075fa7f59c5e6464d3f04cd7c23f","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"https://github.com/mdx-js/mdx.git","type":"git"},"description":"Parse MDX and transpile to JSX","directories":{},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2017-2018 Compositor and Zeit, Inc.\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":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","change-case":"^3.0.2","remark-parse":"^6.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","remark-squeeze-paragraphs":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^23.6.0","react":"^16.6.3","prettier":"^1.14.2","react-dom":"^16.6.3","@babel/core":"^7.0.0","@mdx-js/tag":"^0.16.1","remark-math":"^1.0.4","rehype-katex":"^1.1.1","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-syntax-jsx":"^7.0.0","@babel/plugin-transform-react-jsx":"^7.1.6","@babel/plugin-proposal-object-rest-spread":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.16.3_1542780524880_0.69446783188796","host":"s3://npm-registry-packages"}},"0.16.4":{"name":"@mdx-js/mdx","version":"0.16.4","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@0.16.4","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"47d47dec9602deb137f0b1b9d535169f7555b2d6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.16.4.tgz","fileCount":8,"integrity":"sha512-TcabDVJPDicxfUtnD+aIPDBmj10j4gxpBUtVDIdk0ofgJE3cFEg/W8CH9NcxMdlxpM/VQW0YMo8vEhY5B44P5Q==","signatures":[{"sig":"MEUCID/M07IUbxj+vaPPV0XGnBFij99lG/q6OMrRaMWU1We5AiEA09cT1fcBHA7nuFkYj+nNK/O5x0ouZlhWRz7itKyLUzs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15342,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb+DJyCRA9TVsSAnZWagAA658P/2+I3CtqY7Xr64XOqlxu\nfmf6fbHmAzLUpl8l0Zugr46M2+SQv2CPYbEifRbkjiuJY2pTz4CdzT0Yc4Eb\n2nDms7KmRmW3qa8MqYgU0bLio9yFG/tWQ4+rtKHB87S0cT4tuBb7NwUk2uJR\nW01T9GMiK94YcDgHBhtCe1JHbn3dh/IRNHBeS/GXXb5oKaaKTbLtJ7dpqaYZ\nR+eMb8+2hCenf15Pm1bWbz8jerGSW7Ijb1MjcwGs5+2h/unCIhavSzc7gtAi\nqrZipgrfaK9hAiO7qkYzbmhgjDbojCmkkQrSDh9ZUfiI6u09XzmCjG7PHiKv\nSUT5SD07LQGa8DQVxmeYZA9xFPsd7YpYAN0f1/LAwcHAjJil83Pebx8GBtZJ\nmzl4LvV0n1ST4NiJowyEpNAeatqfcKBFyFYSUGdICM8g/JStI/hSGrc4lb7m\nkgBZK3r+0+4pttdRnguZBUWEMHto6dt184gXJoV5zu8aczkGKIszR7Uq8C9Q\nLPFUjypIxdXR6b6YSnMWljSIx6AFDHqiUh05SvmQw1XlIf7cAPqh8K2OtF5r\n0KaZlABEsd/uFEftVoffWHyb8Az4AyNS9Eb30pVuxrHpiM70ItwyDTFkHkoP\naSUuukjQMFQpD5UZG0ApNVih8I5dUz27w+QShUAR0yKTWbQgCn2urvhQNDrK\noVdb\r\n=LCM7\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"21a3cc7b102ae8c706f54566440d852393e90049","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"https://github.com/mdx-js/mdx.git","type":"git"},"description":"Parse MDX and transpile to JSX","directories":{},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2017-2018 Compositor and Zeit, Inc.\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":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","change-case":"^3.0.2","remark-parse":"^6.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","remark-squeeze-paragraphs":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^23.6.0","react":"^16.6.3","prettier":"^1.14.2","react-dom":"^16.6.3","@babel/core":"^7.0.0","@mdx-js/tag":"^0.16.1","remark-math":"^1.0.4","rehype-katex":"^1.1.1","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-syntax-jsx":"^7.0.0","@babel/plugin-transform-react-jsx":"^7.1.6","@babel/plugin-proposal-object-rest-spread":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.16.4_1542992497627_0.3729646916101812","host":"s3://npm-registry-packages"}},"0.16.5":{"name":"@mdx-js/mdx","version":"0.16.5","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@0.16.5","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"05ba344098b88b4d3cb2437e199078c799e4beca","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.16.5.tgz","fileCount":8,"integrity":"sha512-O+4BmL6OVD2LfcYwDfUnE2R8b/kdGn0Fv2/wXe59pTcJo0WrDhyB9irqqcJREFc6KScMhGNgz5sxbq6kQZO16A==","signatures":[{"sig":"MEUCIDTnktMgqA9yFProYCClA1h4jGIv7KcrC8lrI/6eh9z4AiEArpCnsdXUh3tI6gRwwj0aQm5G83mAJKNLLyLAVqHkpE4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15337,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb+FVeCRA9TVsSAnZWagAAMxYP/1vkWFRfpOJ03QdL/gPl\nt9KJn3CNI9hMfD7n/LWljFQZ5ARWexPYHf12RCZeHwiUb971sKcKfJaiKFVe\nNzeeB1aIl1vtOdVmXxzlpHvkibxRimaBEsOPVRaP3VEN9GtvpH6vUB878XyK\nBhagho7Nyjhu1ekTl0aT1VMTUlfkKEIonMCzQkZJTYHxBPnrecx+cm6+KP12\nUcpntmqpu4KPFA3bn2eWC0Q1wNmBOnRJabR9sSqCA3H9a7TncpxER7u4qSKI\npiYwnb5QwZ/DcoaAWuA82EID0i/QwmXLk04reEJ+0PWMJxqptgnztHDWEX/C\nwq/q9x6s30vHskasX0eKft2ImOmWm+D/4UVUWOlVmI+4ZlCYzDrlW5fkkf/N\nTbp7ppi1INBe4Sy3/n446IikWsD7kFYMWu4J+1mmMd+j61W6307Tq+JxphSS\npZOqoBvOGPoQunAtQPY0rtIiYpltBtNFSh3gXUjk0NdDbyfMuxTp9j5G7zDg\n2bdk7x6c0viLg6nXT1a3ol5/N3xocnAYdCu8VZuyiD007YuBUI/IUTvRncCB\ncGpFydS/8q29R5tWcEWYDF98wrfWC7aZ+Igo30cYjU4kENlK5l9j7+j603k3\n5vZ1YhNv6SuFJTHr2cOtt587mxj0nVeHzOJQe9QeVHObM6MlUto0x1vqFT9n\nmH9y\r\n=UBQi\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"4fe045f1c65a3c05a41aac73a0b3918946ce938b","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"https://github.com/mdx-js/mdx.git","type":"git"},"description":"Parse MDX and transpile to JSX","directories":{},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2017-2018 Compositor and Zeit, Inc.\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":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","change-case":"^3.0.2","remark-parse":"^6.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","remark-squeeze-paragraphs":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^23.6.0","react":"^16.6.3","prettier":"^1.14.2","react-dom":"^16.6.3","@babel/core":"^7.0.0","@mdx-js/tag":"^0.16.1","remark-math":"^1.0.4","rehype-katex":"^1.1.1","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-syntax-jsx":"^7.0.0","@babel/plugin-transform-react-jsx":"^7.1.6","@babel/plugin-proposal-object-rest-spread":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.16.5_1543001437840_0.6125689059099186","host":"s3://npm-registry-packages"}},"0.16.6":{"name":"@mdx-js/mdx","version":"0.16.6","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@0.16.6","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"9b9ea113bcfc0945ec48f17db7aceb63e604c2a7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.16.6.tgz","fileCount":8,"integrity":"sha512-OJDun9/lt8c5tIWVNwjgFIkHtSWR3HOS+CmM5nW3BJKY5i4RSeVLekWkcCMpzujZtBF1frbjTM4bF9fD6LN8mQ==","signatures":[{"sig":"MEYCIQD7Ka6bJLw+SAdqNzOB74RKdzOM/BxbZfonJZNNlA5loQIhAJLEIJnqR+Fmv254ay5Be7c/mNJF6VX7mPtY8bfxWNAR","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15679,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcDB4HCRA9TVsSAnZWagAABYoP/RlBF6zLT+VP7ETMM9mM\n/+qut0WL2h/i09v+8EF2VXyZz+VN1q17DNDTp4TfHWMKWjL1ESX1dE5m9k7K\nnPR6/0cA928V1P6jWPEXiwWfdrePCNQxqqrJm6riqX2h4b3lX34G776rd3zD\ngg4ZeZ/+OZ6O86Puv8xqHVlcH6jAFJAymFqOLeUm0Jhwt3+3+IqZFOczoG4A\n3Y3lVJT0HXi7FqeWYu7L5x4Il4mkCzMPynHIcI1NDXpFkhhXp23MZw35jXti\ngQG/ntKnxx3EvW9QoFwY61iRX3aN8JCv9Q8FFoK2aosU5uhv0T2PW+jtx7va\nC+b7Y+Xyt3/cBaBIE1OA0cSpkxkOFRYNzfD3bNEhRZU9X2wev61TCVLKNaPL\nSePzn6u6h7xhEb2Ji9w0yZVhhOpOaaOvOm0ZIiP76AViTtoqmIllRr27IAZV\n+6x9EJxt3BS2uG6bX2/y5nLfdwnMCvEggmIdPzgEz5UbzlRQppZgSK+k7QRV\n8JvOXeG6ln/SHzKHM3QjFws4v9uMVPuw6Vk56QHxaKrhn6u03Rh6JyXxvz+S\n66Q3uxCI+vrGbFAB/6qA29wwR0BbyZuQRnh7hTPjRWMqHaEAJkF7WQFUwf1g\n0jDeklzdb0AxCPAGHSixQpmig747Wkm6WfQjnKECqajYlOSZJildgMVqOha9\nBio9\r\n=UeIZ\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"fc40de3ea63f58e8453458a54575734f40bcfd90","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"https://github.com/mdx-js/mdx.git","type":"git"},"description":"Parse MDX and transpile to JSX","directories":{},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2017-2018 Compositor and Zeit, Inc.\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":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","change-case":"^3.0.2","remark-parse":"^6.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","remark-squeeze-paragraphs":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^23.6.0","react":"^16.6.3","prettier":"^1.14.2","react-dom":"^16.6.3","@babel/core":"^7.0.0","@mdx-js/tag":"^0.16.6","remark-math":"^1.0.4","rehype-katex":"^1.1.1","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-syntax-jsx":"^7.0.0","@babel/plugin-transform-react-jsx":"^7.1.6","@babel/plugin-proposal-object-rest-spread":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.16.6_1544297990528_0.7017463930846606","host":"s3://npm-registry-packages"}},"0.16.8":{"name":"@mdx-js/mdx","version":"0.16.8","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@0.16.8","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"9a38de822583f2d33f10c65bbe6e9282005dbee5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.16.8.tgz","fileCount":8,"integrity":"sha512-HqipqjFh0/Fag+a3KO0IBbUjZUPtSOW2dBDOSMlYswnRLrqy6pOATAqwk3wXJku4jUe2zX5GVtuFV60BBHmjnA==","signatures":[{"sig":"MEUCIH52de9YLSJmqT9nVaTF0oFsf06ZlRAz4oUidIRa3ZsoAiEA3gzAlfYZc8ZC8qp/7y6fDrL4j6hjt995KjqFtuv5FQ4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":16003,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcSeJaCRA9TVsSAnZWagAA8soP/iCPxHpROJcfCPHnsQzh\nmRg2+aGuLfUDJS5jlxWfEj1GBr3+HeI5y93UoG4h5H+gqpi1hroA0EYBY7+l\nnDa3beMixEQ/4azGQqLeotwNFe8GpfahAwQVXcUycC6h9LJXqZ82eg+E8Uvw\nu7daFakCxWPZWGsZ5XoBnr2kQ3imO50AyINftwobhA6AS5hi7XgAWK58jizc\nuqx78WVawpmqCBMrXJDYiiJ+wQbvRtxg+FtUmkIvtNJwGS2nDK5ezbK1PNeh\nA1yQqbeCjai70L3d+LuzwdjLXw8Dlq5fo1lLCVrOo/nFqOgO5SQh+0nj0ep2\n/BiB7VvTnCZtvBZ61oShD78iEINEXnleL5QOQepzf4rZ6NvttoHTF1UFK6pi\n/VsaaJ0o66UGZMgA3D8iU38HCaDYAZYCTnDIBBpADL6ndiUJDFSMMAB6JA8V\nybne4OAvWzH7gVazOQhPKIw6ODk4ivNn7gzpHj6XZEH4Xn3TemHAsg1RU9zJ\nZUuPWD3uD5OMHryruPOejlR3qOlzQTR5NkmMfTnxBNmewu5TJ2Bx9m0658ZK\nyHvTspUHX495gCOaygOPbMaEU7DsRFwX+KN8GpNbENEJbdAP7Y+LJTZClZbh\n3s+pD5ZjKjpugDCGa+eASzkTjVZdel7wJIwCaaBetRdxvrR6U68R2lYdMnxI\nT2HR\r\n=XViN\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"05e6b227e5ac6a793840552c635f187faa3af118","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"https://github.com/mdx-js/mdx.git","type":"git"},"description":"Parse MDX and transpile to JSX","directories":{},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2017-2018 Compositor and Zeit, Inc.\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":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","change-case":"^3.0.2","remark-parse":"^6.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","remark-squeeze-paragraphs":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^23.6.0","react":"^16.6.3","prettier":"^1.14.2","react-dom":"^16.6.3","@babel/core":"^7.0.0","@mdx-js/tag":"^0.16.8","remark-math":"^1.0.4","rehype-katex":"^1.1.1","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-syntax-jsx":"^7.0.0","@babel/plugin-transform-react-jsx":"^7.1.6","@babel/plugin-proposal-object-rest-spread":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.16.8_1548345945932_0.8804114530414344","host":"s3://npm-registry-packages"}},"0.17.0":{"name":"@mdx-js/mdx","version":"0.17.0","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@0.17.0","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"0106c0be49ab8dbcacfff046e9a4c74833f2511d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.17.0.tgz","fileCount":8,"integrity":"sha512-TXQxikuqPjUpL7Zd9+N746bgLzcpWefRAh4pjP8ZXv0yS9e9NTlcinDKshlsyw1B8o/osXqvlwTC0cMfMeYlAg==","signatures":[{"sig":"MEQCIBSaVDgiFw3/9F2nncmaM0szmsaibPxklnbDe5cQMeSAAiA+1dvq1gc/FFUGPmCsHhQ74GhZcBLYTMZ+17KBxO6JJg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":16003,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcYbBFCRA9TVsSAnZWagAAaOsP/26Ao4IdFL9kWU4oNgNo\nN26xW2mB2dzAQIKaxR/de5gZVGlmccZLZtOXGCjdBkl+lyMT9KkVCJvdgahM\nXsUT+BdWRGDAuxZDGrGG+sOoTSEopA3iQcPB6Gg0R1ECuBMU8Spp3BuEI6Li\nGh+Yu0Keb3Zm7pQ1mv1sf+TLKRjG9mvSAo+4fRqxPbdHy4j3xFrwDiF7DQQz\ndDbxrkbKt0PO/kptP5nDKaMbk3S3Bd1zD+WLiEZwCL0mKRg1Iny1/zyP7Bfe\nuIv+jmB6JRuQCJieMpLdn1vsdnL/xrCTwaLqh07uE1zfCMS47r630zVVW4S4\nzOYpL2/qPxQzlRv8odMu2cMK8okjssR1gbt6cBXccbMP7xZzkHMsypEq7VyH\nOgeBrmFT9k8+QT3fCIx7rLmypu8ZCdNfjMypNUdvVndBthjhdLTQGk3DCHYa\nckVS3yUfB68vMQ9ySTt1y2zrUkcRy1CDn/X2fahgcoV+jE57GJFnxUUh1/PC\nIGVRcYMAD3A/CmuR8dpxvDPKybr0dFX+NRdjfyqWbvHlX3pgraDlFlvCiPvS\nAnjp/hwr+ZKxwHIfjSRIHZBWGm9BIDk7N4CeSVZMj+vt8Bt/GAgBD0KX3O4R\nQnoP0reoKj0iy3b2YuDli5CTf/rvDVKbjmLnNkIjOc0dv6zf2ARLB2rrFqZl\n0GEq\r\n=f9UM\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":"Parse MDX and transpile to JSX","directories":{},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2017-2018 Compositor and Zeit, Inc.\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":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","change-case":"^3.0.2","remark-parse":"^6.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","remark-squeeze-paragraphs":"^3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^23.6.0","react":"^16.6.3","prettier":"^1.14.2","react-dom":"^16.6.3","@babel/core":"^7.0.0","@mdx-js/tag":"^0.17.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-syntax-jsx":"^7.0.0","@babel/plugin-transform-react-jsx":"^7.1.6","@babel/plugin-proposal-object-rest-spread":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.17.0_1549905989322_0.2895473450227488","host":"s3://npm-registry-packages"}},"0.17.3":{"name":"@mdx-js/mdx","version":"0.17.3","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@0.17.3","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"b0a721ffff1e31e97010357ff1f47ce7d98d03ba","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.17.3.tgz","fileCount":8,"integrity":"sha512-hbyMBXheJf3/kx+GbUVfckLLQbQgRabT9OADcETfKcGIZ4DBl3oSfqgZecAmdba7HRRb/9GImzzHnJE9RuSnDQ==","signatures":[{"sig":"MEUCIBYqYrdBmYM6snN21E4mpe6VdNkb4LE6IZyt6/gsbFvXAiEAxjo3+tAMCnuRHF81bKLWfxsvVrIzmdNUv57buDnmh+A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":16003,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcZcHGCRA9TVsSAnZWagAAK8UP/iUWO4jZ9wUB+tPW8q18\nXHCo/inSUibMoTcbMb8BGfV5Y8tCuq1FESFgcCbJPFbep1/LKh0g2vFQunml\n9sxO5NT+6yAFDRAszp2F3QDUWj8VcApofmA9ECSxlwrOsVT6shINdxv3hdDN\n+aTXGC7KHviLp/G5/19+zaTauhRFZLrRuktm6bK6zMbPEyplrzCy77KNHEn3\nxT8+zUKCCTaS0u/ubrbV+LTXMQ/aWKNiasNW3CG6G3LwLO1ZXM0yWMAQKvgS\nInW/oIxy4qw8/etNycA607RnEsn1MqMpWjUkluDPr4n26L8wwyuDXs6xWNoi\nN/y+rU7ek8LpHMfprZyQ3HvkHWPBsSnId0aGqnNxc1GkboK96W/asJRmtfap\nQueuEanmWHNoQ6pdbJG0hBlya5jM8Xck0i/+EC/HG1FEhH/XhThLg0FGM8mT\noK1lQ5uKCLlIZ5veZ2TSwlpDHzGxwirzzSYm79DBwFCSfkOZFJVnwKqBvGbo\nOTzJ70x+2fdU1nol3pQ42E6cepOVwEeBHOlEYqlZidGYlBs2I5WpiRZe77iw\n1dInaCjE7iBdbl6q5iEdZKkQqb4evaDxLo6CIejwVyAkAEHU/cy1Y83XiDqb\nkTfQNqcyK6bMNVUfhqCYAcTSm/KZ4XieJsX+R7MBExVA9mLLVjaDfV2KqBnR\nnKgY\r\n=/Egs\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":"Parse MDX and transpile to JSX","directories":{},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2017-2018 Compositor and Zeit, Inc.\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":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","change-case":"^3.0.2","remark-parse":"^6.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^23.6.0","react":"^16.6.3","prettier":"^1.14.2","react-dom":"^16.6.3","@babel/core":"^7.0.0","@mdx-js/tag":"^0.17.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.17.3_1550172613090_0.685994936546545","host":"s3://npm-registry-packages"}},"0.17.4":{"name":"@mdx-js/mdx","version":"0.17.4","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@0.17.4","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"119aae0dd1e4bdf5b3a0c8fb9106e332ac151974","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.17.4.tgz","fileCount":8,"integrity":"sha512-sBrdWWxq72bjR6sGTOCLLg9OQUjam1pT+uRQBzhgqatlkVAzCjSj9vhaeuS40dm3zIqHom98uzkSSmkT71Veyg==","signatures":[{"sig":"MEQCIG+FJOxLdVGwaSWeAF0TPPmoOCIBSkHTc6cy2aQjNSE5AiAuNo3x93fbsCVlVExm4KGagalxkHxESR9z/abiuVQZcA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":16036,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcZupMCRA9TVsSAnZWagAA7GgP/2BDXkwYDj5IZV4L1/BS\nVMSDs/f5a1NEVXe6zY1Ko1CnUqYTGXINGlqLm9rYgm+cox6n8raKYG6Zdgz1\nYh7Nor4Jn4Fatx3VPYdUcrAPDdaEMUQaEMN5xMkrBP7v5dtS8cy+6YyS13ia\nXQ5qkEevFLZwbPGE5Py+OsTJXvBzV4qiYWzmWIp0XVIlJ3V6rlSwBs7dAB3m\n1UkcN1JQOtUyX+Q3MVbUYyeQI1YGY5qDvysWEg+vE6Qqrhh24QoCkPy/SPBG\nvJSIwjudJCiWjUouxTxB5Wzk4jwPdQx5SPIzONp+L+0lXYXbjg8AnEbVODWk\nUPRIF4yqXt4nhsxlpUlTBE022zxJxsFudGV7U13jQtoRIDI9ri9cWVwPsDnV\n2+8DuyJQjq8gIDN99X40DxgmnXZRubsnnH6nXyqPVJyydPb7fLvzOl1wwnMr\nq5Z6sFBxZFh5ry/xIsoMG+UBAqcReNCDYfYnDD8Jz6Hs7djiPWbu+sl1zmbb\n7VAV/ZdSPz/0aLKWnU5x2npx/DrLuNJEBcNyyCRYC3vuWa4IqkcEuTniZvgC\nZEtzqkaEhqLm1uew1O6tNDLbhDp/4N/fttxo3wk9+n8ekfaS4/TmfPYMyp7X\nXrnmw8jDHOeTFvlh1Lb4kBbKoUHR56zXqKDlte1QF32OZcGFfr3zwFNzqz9w\nBm6k\r\n=Usdk\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":"Parse MDX and transpile to JSX","directories":{},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2017-2018 Compositor and Zeit, Inc.\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":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","change-case":"^3.0.2","remark-parse":"^6.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^23.6.0","react":"^16.6.3","prettier":"^1.14.2","react-dom":"^16.6.3","@babel/core":"^7.0.0","@mdx-js/tag":"^0.17.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.17.4_1550248524062_0.7211657503068916","host":"s3://npm-registry-packages"}},"0.17.5":{"name":"@mdx-js/mdx","version":"0.17.5","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@0.17.5","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"0c760562e9ad66458c40c78c09cdeea768d5e073","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.17.5.tgz","fileCount":8,"integrity":"sha512-GVJCWbgVonPelL74Ec/uNyUzH0DGce6ob50L8gySCKQmgIvPvYYd0PflalhxVwMfmaQdcalDAzUVsUR7P2l/3w==","signatures":[{"sig":"MEUCIQDDdpN42+1p9wWBtqhgMpphqHrJbOEptey5llH0zfCVDQIgQF3lvmHwum6l1BcJAWJOK6OTWbzW+loQ4y/ybt0verM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":16036,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcZy0+CRA9TVsSAnZWagAAK3cQAI6FRwNJSKLzKp9cdn7W\nt66kDuN9Tiqal3MchsrQk1wp3tmfVvfdUOHpTOXb8YxDGBdIVuJroz6MBcMc\n1/PJyF/TtnqzAZiJPXAhblolFDwkYgnL0cCoL52AvYFd9GHvCekzVXnMEDa9\nm7oVv3QTZefzkLMpL8HFM/x3oY6XD8e6Duk1G6hVuuSxccX9eMpLJOJ+n2xN\n5SLn6Ys0ZoMGhPFRGLDP7fawgBW0qyi+n19HCbubsIbVyUXKy43gCljBBCJh\nvjJ4N2l83E939lM7ZVc48WzuXoLWa4ihiuUmFVyKoXV46JRfBG8hC+Ikb6cu\nQcHhdiXr/KoqMZN2IJZdpo74d95vaZyHXKo/m3yCPN7ww1snWbwwv7PweQ/Z\nsZtz0p5fnfW3d5lnSvnS3MZeFhyLM/UVdV85HJyHqPHh4KVfeI2uWjxbT6mb\nC8LgLBh0kjA09wrUiy8zfkhkQ2eCnwdcfYN1h536qGSfE7v2fq3xMPasPOuG\n9hFQwcx/vo6kIEpMYBZTNBu38nHVJFMBJ451r9jwKSqvQvUKZdHVzPI3QXVb\nXwNsZ8c9AliqVfSLsmdd9iQ073K5KBpnXzyVwG6VLuI5hQIXNoJWbtugLTxH\nQrQX8Q8psCGUpYcv7rTMmdhB8qDRdjLGrab1wU43HD5ZbA80b8qMqX2EM8Wn\n29UZ\r\n=9n3R\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":"Parse MDX and transpile to JSX","directories":{},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2017-2018 Compositor and Zeit, Inc.\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":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","change-case":"^3.0.2","remark-parse":"^6.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^23.6.0","react":"^16.6.3","prettier":"^1.14.2","react-dom":"^16.6.3","@babel/core":"^7.0.0","@mdx-js/tag":"^0.17.5","remark-math":"^1.0.4","rehype-katex":"^1.1.1","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.17.5_1550265661967_0.22321690475487754","host":"s3://npm-registry-packages"}},"0.18.0":{"name":"@mdx-js/mdx","version":"0.18.0","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@0.18.0","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"d80cdde7355680856cd112086d71a9c93ab87c4c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.18.0.tgz","fileCount":8,"integrity":"sha512-JAxgdnZhZqw4HMNVcRCH9Pbp/W3oBwENt9hoiyk1NVBy5MHszNRYqCJMcgTjGFHXVIlLxmiokFe0r6ZXZOjV2Q==","signatures":[{"sig":"MEUCIFO6XoROOy+xjObU3KwL1cK3gb3+M/yc/vDkLPH/5D9tAiEA/jJS6OcFE8Y9tSz/OuQC6ZUWYHb1JWExVHdgSh2I2j0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":16036,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcdBTGCRA9TVsSAnZWagAAwSwP/AyISLWXJW247bJVpPzU\nKGiBZ0QieYyHA2WbfVkaN/if1DxqXCUxelzTK6h3p4B+APR5mBz3ALE1XVPK\n8mqaGbQIxi9HgwGpCA7hL6jcf4Ng0nXrWYfqNc2pJj4LqDXWdyO+FBAcEvy6\nCL5B8SycMFI6XUuWuaxzvSS1DdpncNPTsMA2t404mM1rfkWsu8pyAAI1wspb\n/ouh2lOJ3iX8dqvAL7zUk245lQ8eVwkePR+pdG+2ZWm3jW7/oOHPv4qsTq1Q\nfmMMzOxlI/Y3b58NbT6PjM485F5Fp/L9Bkq8vrT9IEmPHMH/ep3udF7TKrNa\nnt3ok+Ln4BzGYWdpc3ACSm8Fjn2oyZlyEI/7T8LJzdUWusl//qcN2A21qPDc\n0OqPqZ5lsn7HUApjNSshPN8PbZ+pIMIg64EG6SEaQoAFUTyGAPl4mpBr8m4R\nDsqDkACXlKQFkeTg6tSj+2trWO6OCWFEYaNd5MK/RCN9wbHxhW1Mk0NYmKTY\nd/JxtU9g7T/KT+2rF1CTNm+Rd7NAxmnAM1MKzdMz0MVd8CGjCYyA2Tsesv2+\nkhRP0L2cMxagxSkVePWg/FBM+/ZI/TvInPANPEOd8PtwY8ieKwfdrxmRi1MJ\nLPdbAr7CXTahjs2YHn7NKISY4vm2m/beehHPdl90Njyx4kjQc0uP6m15r1Or\njSqg\r\n=1Hbq\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":"Parse MDX and transpile to JSX","directories":{},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2017-2018 Compositor and Zeit, Inc.\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":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","change-case":"^3.0.2","remark-parse":"^6.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^23.6.0","react":"^16.6.3","prettier":"^1.14.2","react-dom":"^16.6.3","@babel/core":"^7.0.0","@mdx-js/tag":"^0.18.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.18.0_1551111366150_0.008231971184699427","host":"s3://npm-registry-packages"}},"0.18.1":{"name":"@mdx-js/mdx","version":"0.18.1","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@0.18.1","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"bbb2dc96d65e22c73b5f66a9428eb4561fdc33b7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.18.1.tgz","fileCount":8,"integrity":"sha512-NYD0CwCx5m48PPN2sUjvltQpVmmn71MpGvisYU+rAxxk0Ev2YgedMLomjmSiNZNywA52J8495M3q9tozObwzUA==","signatures":[{"sig":"MEQCIHXu9+cg1a1+XnnQyAxEr34uA1SP9gD8vW1Dyccs8J5JAiBEs1kejeqIX2qw9fd/99AusiZVqUcnJ2/EC4zmUsGOAQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":16132,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcdZ2jCRA9TVsSAnZWagAA8AIP/R6zEoBBqOT2OIIXTB6H\n32Vq5avsvAfZ8DGi4QW8bV4h5EKX/RDqNXu1MJNt18qBAkHOgmLC7T5BbRYQ\nbnL8phZ6Ex8JTC913exw/46oBHU7aekuWc4sh46QNvv7ah4xI7rhuq7o20Cj\nCa72fbyfGDGxNlXXmcHQ55HJ8ha44TcG31iUnHgDXsoOhsdnp0JIhJSOF+tq\nOsR52EGjADntXaPSxb5Y8De7D4EWZQuHWykvhOhb1vkBc/QkE3xLCMuRjLoV\nSI6+sFT6508DCLpKqjoojdNVXQPOkVeKQ/Qm8+9fzPeyHMQPuHzZhgHktUnQ\nxN9THlDHEoxMgfn4NWGVn3eVt3vSTPhAUGJZUkSCNuV8e3AORyWnGI9f9CoC\nvvPTQOg6VRFJOnHDBQ03uvmjV5SOk9M/DC39tnZVB0pKOdOvo8aZrwLS/kGN\nuRZGz5Yvu+4DtZlgO4kJ6h9pwNbn5fMMCw7vdPVU1LAffjBoeT/YWeC8NMfm\nzCafvF/RFUYzNRKHtnZkIV1sCveSnOcJKDnZdKPXuxhjggHfXI4wJEmEMRlj\n/1QgFJ6QRwVJ5i0XrUQMLpFJFxtBikZkIAfzHwOOlg2lKPDcvMYrdfj7A3rb\nKS02KDdNO/IqsVdcyj5zsLcxtXG3FIlcPUSA0hjZpi+uMJ38+d6ZAv70YyEP\nb+qM\r\n=Z+q5\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"3913c39282a66d988498c3f12ed2cec58992eb58","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"https://github.com/mdx-js/mdx.git","type":"git"},"description":"Parse MDX and transpile to JSX","directories":{},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2017-2018 Compositor and Zeit, Inc.\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":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","change-case":"^3.0.2","remark-parse":"^6.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^23.6.0","react":"^16.6.3","prettier":"^1.14.2","react-dom":"^16.6.3","@babel/core":"^7.0.0","@mdx-js/tag":"^0.18.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.18.1_1551211938744_0.7843554509775388","host":"s3://npm-registry-packages"}},"0.18.2":{"name":"@mdx-js/mdx","version":"0.18.2","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@0.18.2","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"5ed20c70ea89b13035c4534cbe43372ff459fe1c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.18.2.tgz","fileCount":8,"integrity":"sha512-7DqNBOGPV+36qpH8YZmKI5uvuXhrGZFhJ4C9+9uaQSpH2hQg9xAfdzjSSEO8FQhAlu6wJtUgb72J5/eWdc1HFw==","signatures":[{"sig":"MEUCIQCeM8wCK/7AsL+057jUMrQvFzcPc+QZv0gaB8EDfiivbgIgOCu2HkyJFHZanq3xE7yQvkHUxjBmw4uh0glzgjmnChg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":16132,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcd0EMCRA9TVsSAnZWagAAdBAP/j8XIwavdUIc4mOsiY81\nOgcCs8i7FsVyTSvV4AhP+W6HLQQI6k24S2rlkuCrDGHgKOjgeEPCq+mWLP37\ntM8jq3/Nf9GxMm7SStZX3xnjjgP/pLhPTbP8Lt/VDb4gNYURzowCCy+RzAZ0\n9Q8yTyyPMLenosEGgdkSc0SQZYvVdt8qC+TrIy2rtT8EURWoMEynAYRRMYTr\nnVlaCqN9/+LvfIdLcYQSj3c2uT+lhkQgkNHLQzQ+q3OB2+A2UXWRuf4DZa8R\ntJg5RRcf/fYz7084UjNRqpMEQmMVkSLyiAJwEU2u+w50naotrpJneQLmHEKd\nx2ZBFXc6BryHXADwwJdgZGAtyUM6zMQGnnjmOZ4glkRdMayGzvczvBeuYnX7\nqIKBq7qwUIJR6QhpsZ1sVFXfcOoJmsQ5e+8xG3hh+GVZ7uiImUuTejKJXais\nVpf2yDVUSnaE+koX9yboGzNe3AUr9fxdlElGqVq8g1awBoXx8KbLQqTgQ8fM\nASrKQZFNMcFXGxfsdPvrsaVVsCSga19BlFma5UQ/+Caj+i6nN+t98L1uHsAV\nxo2FwpaxTS3GJ3oOvZxohL9CEpSnFFV/nJHe+22jqOiDV0uyVGJYV9SFRe7D\n0bOOEOdojCdzAwByCjkh/tnSN1yNPQLd0qCFuigwQrV+VeezHeNd79fTBJ80\nT1LM\r\n=xxQL\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":"Parse MDX and transpile to JSX","directories":{},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2017-2018 Compositor and Zeit, Inc.\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":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","change-case":"^3.0.2","remark-parse":"^6.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^23.6.0","react":"^16.6.3","prettier":"^1.14.2","react-dom":"^16.6.3","@babel/core":"^7.0.0","@mdx-js/tag":"^0.18.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.18.2_1551319307418_0.6552160762919188","host":"s3://npm-registry-packages"}},"0.19.0-alpha.0":{"name":"@mdx-js/mdx","version":"0.19.0-alpha.0","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@0.19.0-alpha.0","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"0d627b57119ddf981e04ddfe47aae7074c8c93bd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.19.0-alpha.0.tgz","fileCount":8,"integrity":"sha512-/e5fMJmUxpzrXlvdYPXTPCEm6goUpCbsQoh53C60qfN1gx7WQrLO2qPbd4jIRdD0EqfyEXg+zcMNXhwHsSuCMA==","signatures":[{"sig":"MEUCIElaxdEXuGKsE8uUX5uWHpGAsYQuCZ+UbDDwCSYjDTP1AiEA/4L0w2i5y36p3hkAw8YrxkvY1inM2UiGZCr6NnMJvaQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":16429,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJceF6sCRA9TVsSAnZWagAA8FgQAJOBYRuOvlRz8pHsjqtH\nNdG5vPiIxb70QrBhwllk+08KdVQHKzTMWoQD4dlh8D1CnDHYnXSz2iF+VoXq\nX9KX+ctb15ryWWGSl+m57vaEa1F1yyqLThH0EOiBcp5uy5YBHLMpU3DmOUg5\npcn/Cs/hortGv/TEAdlGxS42DIpsbyWWlnyqSsLpeJ8J4ZhRuAjYO3g+FvT7\nrrtVrMYkjE7Dg2VuyY62iE1W36LwkRzl13tPlFuC2sawC+2FNJd1/LQdBGm6\nmEL+QFTpWKOVTSeF6WBLtbv/dKsxRr1HLudB/qoSk0i9mHDTOHT/q2+TxTjT\n8WolSSh4lcNochri54uyK42/iP2JLcMH/rxZWMTp+0XMVz0FvtCTyLoCTa2n\niBN4LsMBOKk6v9RC94L7chsNh7a1FaBl+X40+4q5MQv48Fv6y5pIYt6oVNxL\n5zMgE6crayaQNfMfQqc7ZNKUUMf8j5jTso7ABY3LiWawhvRWwidb0p8gJF7D\nE7sT9N5j9IMPocjN5H8knQ2QxzXb25+UBx7Yu93lm06+zkCo7sgltOHkCYB1\n2NuEiRAUPQTYyO3QqZ1LCuzJaTe7E+7mVwW8JXgOOtzFW67dC3kUHI6WsQpM\nogzoW0Sn6guxqNSm3DdzASy3fpDSxhmF7fKhv3VPHJccvq/rv0slMMYx9SJt\nhrA9\r\n=VwZr\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"05f535a5c605f719e13e244e69e640af8fab848d","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"https://github.com/mdx-js/mdx.git","type":"git"},"description":"Parse MDX and transpile to JSX","directories":{},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2017-2018 Compositor and Zeit, Inc.\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":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","change-case":"^3.0.2","remark-parse":"^6.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^23.6.0","react":"^16.6.3","prettier":"^1.14.2","react-dom":"^16.6.3","@babel/core":"^7.0.0","@mdx-js/tag":"^0.18.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.19.0-alpha.0_1551392427296_0.9181639832730808","host":"s3://npm-registry-packages"}},"0.19.0":{"name":"@mdx-js/mdx","version":"0.19.0","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@0.19.0","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"54c161d6e2f8f904a12a8fca36660925e1cbc1fd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.19.0.tgz","fileCount":8,"integrity":"sha512-RkiTJqAjVdIVxRNH0YATyHUj0P0HD/JgDF7OKCHrt1LcyAScdMSHDk5QAHLGPmfW1f0j+dyAQhkM5wkw8Dr3Nw==","signatures":[{"sig":"MEUCIQDIABEswdmPbAaT5dI3GqfAFR3iknA3Y2GvUD2oGIjgWwIgCRYPMRgRD5cuKEiDPW+qLfx0+ZrrJmnMFzWASLA7++A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":16421,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJceIsHCRA9TVsSAnZWagAAst8P/1I75UNUi3zBpnsHre22\n+ZbNXKZQVJId47lFF0QGLYYhJF4kvV9Xfgd4WWEE7vhPzxWAiv+Fyc0BMukT\njUTFHUrKwuukKMcZWCXhoBPP8wz3QMShFfxW5DX8FNQI0Dm1XZfSfgtBCJfR\nexQwe8Qxaur3XscpueqIoDfMdInR2Nkl+n4MoaGgPP0VmNvOU8oylaANT/C2\nylSTccULfGQL+69RZWivVW4VjHX7BrcKY4X4ggYprrOvToCXjZvlHdQLjk/x\ngtkRbxQ0brZ+CAHfjqUevVPYqxIWEe7z9xUK6OvCDPVTtoeFTEijFhLxHajP\nK8d4AuI5WSaWP5ZNsgLtq6TBqa18gCmiB3n0xxniAeoYsY4QqJRk3aocrpwG\ncStnh9TTkDRPQGs9zjmZYSDcomJCbyZAtHRpvUoqx5qzINVePypuWSE6JhEz\nTInR+hPIzHLRsPzAVfidyas3exIqHwYkkebXz5UflM/b+cXRBbSQClfBAGzd\n2yALJq2C4XnFEBwgzXWarmMGt5YBlCZNkOPbLwN6m4DJtXUEQsNr/aEPyLYc\nbvccocLlOeOVhbm1IM1V2SmP1pkCzfE3Iw8mcz/W/i55f6yof8EWkgkdElEC\n41Z3RnOmeDWx02wyQcJJZiM1Lf6Rcp8X8AY3tAb2oPosdqWgknQcE0NNwJt3\nQrq+\r\n=ukKZ\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"e28eef9f67fdb668a1f6cc1bcb8ec0685d40dbea","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"https://github.com/mdx-js/mdx.git","type":"git"},"description":"Parse MDX and transpile to JSX","directories":{},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2017-2018 Compositor and Zeit, Inc.\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":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","change-case":"^3.0.2","remark-parse":"^6.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^23.6.0","react":"^16.6.3","prettier":"^1.14.2","react-dom":"^16.6.3","@babel/core":"^7.0.0","@mdx-js/tag":"^0.18.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.19.0_1551403782605_0.3881070676533034","host":"s3://npm-registry-packages"}},"0.20.0-alpha.0":{"name":"@mdx-js/mdx","version":"0.20.0-alpha.0","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@0.20.0-alpha.0","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"1fa7f7a930ff5ae0d63fbb8f111d123f617d5217","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.20.0-alpha.0.tgz","fileCount":8,"integrity":"sha512-n4UXNx8zzgV8ioAzkc31HI74q89eFNNg3qUD7LqGRICwBDEkVOUO/6cZplBx8ArR8vukysgWDOKdLYF/rTYfug==","signatures":[{"sig":"MEUCIQD+Lcz5sLAfdmWY1wd72IubcmJOqNRXhl5AR5sjBdomUAIgAzzABzeDe4HLtpNoGGtJGmTY54OZiIjfjJ7Tyym/o/M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":16923,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcedfyCRA9TVsSAnZWagAA+e8QAJ53aRub3UnOBjGdFpAp\nrKlI4Stfl9eBelJZM/EjtaTv2ca2L4Zx0Jg4k9GgcFZWC3Gtdfn3fUCrVp71\nyf7CFokCdjjndTXcGMSJ2O8Fh3oWyGSoPUiyDS9RRYL3JZjFBMqLdZZG/Ynw\npwlsm2LZLf556PDb7AWtEmHETJmp3GCYLcY8M27iHtsJwyBinzkCb6gk6XY1\nXBnTSsHMFzfm2u6Yjt1JXgnlhAvvEAWon35tl4DJMTR922ZGBiLVqQZLKSJs\nQoorvdvXIkNlmLAlL0YYyJC8QIczFlpnv05sHEoKtS00nsMEvbSUKlW3erJH\narqhI90sQ3J7F/8uW7wQLtlskywjkJ7hvItke44QlfGXG5nFGkwccCNFssuw\n0FDak+9z9nnkCeW+7zbDLTsEwx2iZ0Tl5xXC5fOv+2NUuM7X6OMK1nNy11gX\nZZHI404wyEp+lDRVnKPsbdtQMkMGdYmah1IR7diHJssHZIwbT0QdAqPcK9f9\nmS5SmZGniJ1plAJjRIg0eHObQhRugJ5xBbaCiDsyj9qyjVASAPWnqceFdUK9\nCb0KoQPKelnRc8pvftNfAwQdhGkdVMeoOz5Z4ke4tZ2/L5Tn07W5m7WGdZDC\nB9nUI7umoxf3crJ2uKCpgBNj1y+Rrd1XH1ZyPCv/YPs2BQZbXYaXzL4g8cBD\nPLnM\r\n=6ck0\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"ce21ee6a7998bf538f0e07de50a6a8d8a0130a17","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"https://github.com/mdx-js/mdx.git","type":"git"},"description":"Parse MDX and transpile to JSX","directories":{},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2017-2018 Compositor and Zeit, Inc.\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":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","change-case":"^3.0.2","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^23.6.0","react":"^16.6.3","prettier":"^1.14.2","react-dom":"^16.6.3","@babel/core":"^7.0.0","@mdx-js/tag":"^0.18.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.20.0-alpha.0_1551489010021_0.5303624679817296","host":"s3://npm-registry-packages"}},"0.20.0":{"name":"@mdx-js/mdx","version":"0.20.0","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@0.20.0","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"566de83bee1409e83c2885db8351d802f93cb9a9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.20.0.tgz","fileCount":8,"integrity":"sha512-8kJN/7jvnWu/zdSuc0yDhGTk2jaDlAin0mfE8FoUBxDHpoOM8OZ4OW9MRKmEWMued9RpOgozbUhK4kKzaW/nGA==","signatures":[{"sig":"MEYCIQD7M97mD5Gr1mro9z8unlsNtEOPNCUe18YWWPrn8tYvcQIhAJgaruoWGmt5Q38PE7uQq8FBFzapIXSJ61lGUTzr8K47","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":16915,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcedwOCRA9TVsSAnZWagAAGrkP/iLHrAT+5aPA/DczW4UL\n3hKQHp/gMv85U0/T5lXh24r/AIyG+6Mah0t2GeZeJYqj5pU2tjWpxbhwcYnu\ngj5PFYNOEu3Yf5quhR4fuuyaACmzyl88ia6xBRiQZyBDJQb2c5T5FD6Tcb/V\n4sGY+bhEJkn408BqBio0I+58krLuN6JLjAEmkh7ROZpg8XOxewYO61+fEWtq\nCWVXRN7Hsp3Ym7E5CT5KSSXelTwjTC+Xd8gqxZkCfOh6tZLgGYGoEiQEnzmh\nwgV4VLSrf7UYZVt8Ioyk8GHaN+Lg3fRqBpljx7OvaqVJ9BRgC8kQkUlN/Lze\nnNG2WnVbeZJP0wtifag+36h0IM4WSTdCmxb9QVQKQK9pgEwoU3HesRfzQGwL\nlAbWte+VK4/hAaj3/GcugIyBU7BMlCFLadbovqBNXOBIU4V0Ka1wD+VGBYq3\nuvAJWnRve3ue6nqGD1a6BbecRhktpVWqGAoZZ3rnOA59xTu+hGAcfhlfYM4R\nMvIX44pf+PQGf3pjhM8UGmBftakhMdd4jfv2HOmkUmps4B5ukqy+w2fSRoWp\npGLokZ4gKLCyMW46N7HyhlYgFCppWmP2K+52HyTo3wyzU+EirF87yT8uU1Du\nP9CmQ4zsQZ+pjQPHGXeOEKVdEfzfYcKso7jKfmXL87om1RMBj93EqSorndY0\nfKr8\r\n=VcxF\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"83fa08fff98c2d0bc17683792cfa94faa76a90ba","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"https://github.com/mdx-js/mdx.git","type":"git"},"description":"Parse MDX and transpile to JSX","directories":{},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2017-2018 Compositor and Zeit, Inc.\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":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","change-case":"^3.0.2","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^23.6.0","react":"^16.6.3","prettier":"^1.14.2","react-dom":"^16.6.3","@babel/core":"^7.0.0","@mdx-js/tag":"^0.18.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.20.0_1551490062260_0.7057431187251961","host":"s3://npm-registry-packages"}},"0.20.1":{"name":"@mdx-js/mdx","version":"0.20.1","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@0.20.1","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"f6a7378769766fa8b5ba561b93203ceb666932f8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.20.1.tgz","fileCount":8,"integrity":"sha512-CFyxXPck4ewrOTRBmZoh4mpKILC1H1GOCH2Vx/lpQzbC2Y4nm3PVD0RCpKscUkwzIULAqnu+6BnlgfKX8aZ2RA==","signatures":[{"sig":"MEQCIEUcDdwNz/J1GQ3s2Tn5cIJgbODp5ZnTdlGQjhKvAcnNAiA87fhaJLggacqkVs3blWh2WVJDPT+mPwb4fv3xXVT6PA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":16915,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcevG8CRA9TVsSAnZWagAAikMP/3QH8IrLSWaJi4v6Ar3s\nYnyOqe8igpl8bSyZtX1+BFdMUFFJjLS7yPD3DMHZWAtdNH7iA5fCCTvKXmot\nFS/7TM7lTFCGjFMaOu+N/AwYOzSlV0kRZsMH/f2dFU9EVqgwAEv/0dan0mOc\n5E5mNaFCi4QID5eeEQV02nXg7gZM5luqru0W1WhaeCfkVgx9cyZ8QnUmxvJi\nuX/Mu4jF6CukkjHyowjdjhjkQxGhAoA1HdvQKH5TyB8b887ny+0cSjLyV0UX\nal0Nrg7wS7DByU9GKmwu29mHEeZn1ZRN8JBoIyKnLnCtDafrXHgmqykqpdpj\n049AnIxofcmnsgwgAcuH4ZZXTbnCIe5zO+78LX07xJONWLcdbrigdvO7aUOf\nfS7rsT14t9Hn2A+UIHETEknW9gPor/YmfYGY6HeYQO2RHbMQCAEhDTUoC4OS\nwo+cUsNBDRi4kGbbxNPDxFlBwaFn4EWIt0sxltiQOOQiShTAJTNfZhUoJXT7\nAn+23ms+UISyJ/yvej5gCVkQ9lpqUSccI4OTYFsWhgnmyto1ZiNIp2pg7qpD\nHV3Ic+vDhxCLvLNZHcDdUqhwZceAlMF2ueTZkHVFZueGXnscSHd5/741cqHR\nbdRBZaydhpLEGi7JQNSBdg3mo5SMYAZiTVdG7BxT8WYeeyQvihiR0yfYba4y\njUJ7\r\n=1zxu\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"6b9cfd4c699c244c87245772da2456fb75897cd4","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"https://github.com/mdx-js/mdx.git","type":"git"},"description":"Parse MDX and transpile to JSX","directories":{},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2017-2018 Compositor and Zeit, Inc.\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":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","change-case":"^3.0.2","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^23.6.0","react":"^16.6.3","prettier":"^1.14.2","react-dom":"^16.6.3","@babel/core":"^7.0.0","@mdx-js/tag":"^0.18.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.20.1_1551561148032_0.18819156725911257","host":"s3://npm-registry-packages"}},"0.20.2":{"name":"@mdx-js/mdx","version":"0.20.2","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@0.20.2","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"0d67c70f253e7e3e64cd7519c42700cddab4d7fb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.20.2.tgz","fileCount":8,"integrity":"sha512-MS93STaYV8MK5c1EbjhF8NHX8WH3/o75729Omp7YMZAcut1VJjUfqvxSafsbHka/Yc4FKfLqNI6SWn2icbGzfQ==","signatures":[{"sig":"MEUCIQDK7thSM59Q8sixE+GUoeDSP01+mK/269SMTSqV8pR/JwIgF016jmf5r5dmkZw9wFE6LFQEt/MsVNy/OeCN3q17oMU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":16991,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcfvssCRA9TVsSAnZWagAADIYQAJfDHHsmeglCmyhr9TGC\ni4gStcPH1koPRGzy17knd8U9aVhPXVv0+RWSXZzyRdQxZa6a1CiWj3Nl8Im6\nCsfLx68KmYAjY/nxsCBgv9ouA0UweGic/7xMWHJwSXV4++wBWQhMQdxLjvdJ\nGFft6aO4c4MQKYRA8N9sUncrzvsBIQ4e36I0dvRZqeinKlciXM0oWXixjuDs\nLQcvrqjZ9FFvBhOSNub1y3Sil1Lc9CHHc+IVYJS2Vd8KlynVJT0kIM8WeGrg\no0DX0/14yZVJExPp6aSmXkHHpYkoawNamBI0JuizLCrk7lUGVVeQIV6PRvwT\nkYPU8g8eSUQc/5KkvEQTTiaBj2bTYIOnZCgRh7+G2KY4fDWyiQJgtaMJKYP5\nOgDIAMWAmYTyrR9FijKc3On/+4s1E4HalrPefvwXd+iIj0mpR0/rYTy/93zD\nZbjxI3zOOeQRehJqS42qyhnXdkSLglfOTKIxrwG8q7QnK0YSEZZiWesV7m2l\nvoClsxPG9Y2GAXnwg8cM6dZLgTxVEXmySPVmVNP5KmztTTDlZpEQKEjK6856\nzNUsQAIueUzNPBDQclh7HAG1Q4rg6oXH8luuCKYd8YoeLjsWUtk5WdofJ8I6\ny4c15J4JOAJzKZJ30K9t5HqfmaaCkOba3tREzVG2HiQSPYMy0tSdygUspu2S\nOEkD\r\n=yFDU\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"caa2462dcb870b0d7877fa172513e77ed4529d6a","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander@gmail.com"},"repository":{"url":"https://github.com/mdx-js/mdx.git","type":"git"},"description":"Parse MDX and transpile to JSX","directories":{},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2017-2018 Compositor and Zeit, Inc.\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":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","change-case":"^3.0.2","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^23.6.0","react":"^16.6.3","prettier":"^1.14.2","react-dom":"^16.6.3","@babel/core":"^7.0.0","@mdx-js/tag":"^0.18.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.20.2_1551825707898_0.5540176260190874","host":"s3://npm-registry-packages"}},"1.0.0-alpha.0":{"name":"@mdx-js/mdx","version":"1.0.0-alpha.0","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.0.0-alpha.0","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"dafb205dfa6c71e41d203b466041620787aa8f80","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.0.0-alpha.0.tgz","fileCount":9,"integrity":"sha512-WTCsYj1zie0U+4CQVPtnKync4ria6ZCdmsjBRLqHTudr+6dbGw/ntkM1+TAU5sPVYMMsIBlIY1NNwcQyxwhPHg==","signatures":[{"sig":"MEUCIQC0Pc95DBkhM81sDQ2u9nDw+214LF0JOQ3aIxWIUGdKLwIgKAExj4f4DR9OG93WnOPEBapsmKd0fgjRVnHBo7beiDo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":16512,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcf0hDCRA9TVsSAnZWagAAiRUP/02vPvYbafz+bFlB3crt\n5dW2RhRFFrtRNk6Du9pFz0U1+Yf1gdjYkI1JMJGH0NvwSDiGHQHoLumsWUFL\nyXII8JR29uV0wRty41cQoswiT+jK5+KmjcAqJFoekI3eal79awWRtDjC7B4R\nkCGr5YfdmYY7I0yY5R00MoF0qcLzJd/tb2UUfy/uIdNJCThh6oY83fL9ck8v\nI0uPSqZYspBs1X6atJ+2ZoGl1uvQ5ahwxPeg7il7L93ELB1h5+UAJL660+ux\nNUhDAUqMatQ0kuInUu3KGpTdzOOe/RY2LvIROfBPiyfU3j2M0TjXckVMkVC9\n4dqnIldJJESMOWDg9IOQkXmDL1Bb8C95Vb4bAIWtTFq3ckFL+5UHCF3rCf0B\nDT6GEmOqRffPyTkOjrtDFCGqAaufzO1pGqTeGm8XguvXEVFQSxwMFARvl+Ed\npSRw5bzf1RuizRmECn5608PtMBbTQFgMWVGThNUsYNXXbGJHzWzE3AtWIN1e\noxy4K+6OQzuR4kPUaFnrBGy6jLghw1RvPG6QxyDzXSwR6bUcmPs3dZetvG52\nEouWQvRUJ2xRt7O36FKI2+Xpwh7LsCfRi4TZoH7nRw2Yp4U3muwFh8O8AArW\nv4fAfJDiHYRm21RPvnJ0G4t8U4qSnZuQUpmY+P28nz6eL0m3MUpOkxJHzfM6\nZPSI\r\n=7eia\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"11.6.0","dependencies":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","remark-mdx":"^1.0.0-alpha.0","change-case":"^3.0.2","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"jest":"^23.6.0","react":"^16.8.0","prettier":"^1.14.2","react-dom":"^16.8.0","@babel/core":"^7.0.0","@mdx-js/tag":"^1.0.0-alpha.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.0.0-alpha.0_1551845442847_0.5723679857232133","host":"s3://npm-registry-packages"}},"0.20.3":{"name":"@mdx-js/mdx","version":"0.20.3","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@0.20.3","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"1f32b4a4a0cc176a3192ef51a0a3502cdfdca3f0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-0.20.3.tgz","fileCount":8,"integrity":"sha512-IIlssEIPPAqo04krm270ifGjSVPqtTmjlryYGi8/4VXHCdi42l8v2piTJPo2NVc7J+HizY1uxxZb6AeoFsO/Iw==","signatures":[{"sig":"MEUCIQDrx1T+E4hKL1pj1AOkAwNyra4w++ge8+oumBp/p6mTfAIgEBVUoP7qB06RHseKW87SH4mVwlClACJwqn01Z/pwbQg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":16991,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcgAHsCRA9TVsSAnZWagAAfqYQAIAO65Dm355OD94kf+aZ\nxkDiAWpc5mxFkUA9m8al+3eci7jaGAXkfPd4zc25UMP0LLKVZlzWJdR6kPwb\nCiBmMZlliOi+W4yhuvoIV1DHO3vApIglW/ps0n7bmfEU8woX/XWZwH+gieMJ\nZ69kzMamtuBfLRbt7GBnnP1dZI26JWT1m7k9VZ907/dw7Gf4vyhbjAsjyDgL\n4KSfBJt24S2UOvqueEQSGptqIqtZBrXOKUUZMXB8bmZsu1oMwghikx0yYIwm\nMsGTrJLn2L93ql1Go8g+PAy9505/FznWMuCSn4P3jC5tjjQpSfRjay24aqKT\no19JdKFQbYTwfo9VPOijIauGqa+iB9T4XgPfaJAklAcOLx2Z6JEB/TKy3BbV\nz9np93sSXy29fPghwqs28b2UChF9lLFpgmJoPx/0iNWI1fv2SMxy/1kB0fJU\nDKqpx/sy0GfHzouRhqk9r9TbZqaSA8a7/UBXTloPH/+OVntLFV0AeWLmdpXN\nKXJ/zyp7B00eSjzZrrIA2gE5DsoNcrIt1YveJL9VCQVlXprD7yjmvVmNhMQS\n/0UDN6S5KK12xuNB5HaGMqXXOgO+k2eOwNsyGHAqOHMdegAi9ME3mowyD/bF\npdnDzCioraO12E/Ig5WiXv7lJ+9iUDRbmRwuqcIGwqLTtpHCGYCNHaWR0aY4\njqK3\r\n=Z/Of\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":"Parse MDX and transpile to JSX","directories":{},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2017-2018 Compositor and Zeit, Inc.\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":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","change-case":"^3.0.2","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^23.6.0","react":"^16.6.3","prettier":"^1.14.2","react-dom":"^16.6.3","@babel/core":"^7.0.0","@mdx-js/tag":"^0.20.3","remark-math":"^1.0.4","rehype-katex":"^1.1.1","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_0.20.3_1551892971731_0.4982211624251591","host":"s3://npm-registry-packages"}},"1.0.0-alpha.1":{"name":"@mdx-js/mdx","version":"1.0.0-alpha.1","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.0.0-alpha.1","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"19be93ab52408d91bbfda898a964e98394f55f82","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.0.0-alpha.1.tgz","fileCount":9,"integrity":"sha512-tfa9DkfvCD+c3Wz30QyaspZb3VdFfj2FTX6HsGrSuC1L1byH8iS2B2U8r3f4wc8rcnuHCgDeAYZhUhekmbizRA==","signatures":[{"sig":"MEQCIHY7SatANV6bwWLTKyH9QX7jjbKYC3sgeYH4xkanRZnIAiBQelmR6fKZ04AROmeo7njYskVsTbE8Ha0o6Q/Zsx820w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":16293,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcgEoQCRA9TVsSAnZWagAAqKIP/1urtaZzl4ZICQElT7hU\nAZha2zJXAXLaVNGP58KTPXnSZF4nq5EDyZ23tKeHPfr6a2d4la47HYM11J4j\nQgtUhGSx9JbA5wtt55WwJ/Jvd/fWS5nzChEoOAeed6Vy4sprOgAtM60pPpBh\nJAVHIM4FM255P+j99ez9bUacrxij1m5AYqQU1119BUaQo1w38CGqIBqB+308\nv71FJiUFI/yYp32b3e6meu1Dc1bQQSxPWMOYRkqEO8l7wGD6pbc40WEuY13g\nq8rq/LwYVvMbW/SDjpWAzt7/j629hFNoLCTpPB/0yb/gA/6sVk20EKaL+LZ9\nxmpsb/pR2wxivv8YWeTZcbItRKZLKgL4YCL/FC7nkzW3rDWWx6ZXS8l73Ehz\ny248r165r0jcBGRwcAbzpGTqxcXhU8ZETDHBAUVblM3U5lgTN24MKYmUtPtE\n9JZkbQoszpnxIspgOGjc28VmnGQPiPVRGGt55WJziu0nyZ2/Kwqxkx4UzQYj\nH3jm7XGbmKfGg2jjEhnLQx8uJ72gKtMF9syYpV8ZmsPZ2dj2/4nvC5iXnfng\n6YaeRXPyVRKtLHENGXoNh3FFFowD1JnQEYpTGVkGKboA/Efw9D/c6+52UVIZ\nWblkyZy+UzpwJWKvepPB7dV91WAa6Dd1ryfUm73eFvKkZeFQoLamntzJewul\nNQkj\r\n=ZfXy\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"11.6.0","dependencies":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","remark-mdx":"^1.0.0-alpha.1","change-case":"^3.0.2","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"jest":"^23.6.0","react":"^16.8.0","prettier":"^1.14.2","react-dom":"^16.8.0","@babel/core":"^7.0.0","@mdx-js/tag":"^1.0.0-alpha.1","remark-math":"^1.0.4","rehype-katex":"^1.1.1","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.0.0-alpha.1_1551911439587_0.17769365544058147","host":"s3://npm-registry-packages"}},"1.0.0-alpha.5":{"name":"@mdx-js/mdx","version":"1.0.0-alpha.5","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.0.0-alpha.5","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"b092640fff13dc64ffecc9f3ba63417a7bdf1548","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.0.0-alpha.5.tgz","fileCount":9,"integrity":"sha512-7Uucec/xAK6fxFIAGR5eIEhXX9elPj6WOwpjkT+JITgsOGpuIfhyq0iddlnwOgWGq9zyF3Sy4w149z701iVFzQ==","signatures":[{"sig":"MEYCIQCVsLM4DYkIrDUSvzy2EKZhknwT+4iYkpwHdvE58Q2TgAIhAJES+FGFR10noQlNAhrDrf0a17KGNigYJoqR11ncvjEU","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":16293,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcgr8TCRA9TVsSAnZWagAACr0P/19GirG/xl+FHEjvazr2\nxECK+1sj6JjdvOzCJ2OZpXVtzBJo/NCYr9Xp8t6WeX54jEm+pVEbVTOaLVGu\nAZZ41woC9EBvKeisQijNUtqx1nWIZjxQbw4LXX6ALMj96vDV0beYvJ8O7xEI\n4CokZ8dX/dffHDoEDdgun7G6YSVR1fWgzePJHIWmpcCzGr9xwjvRhV2tBSsN\n2xjBeqOusNeSUi1OzL0U4pPt5eSJ6aN97bLxtb9Ll5vL5RpWFLQPZRXwv1tP\n8ShkPcLTgwKISLTvhoJPsF/+wYbxWrZGkzL2w/wcdgw9A7v4tqIm/8Lt0vCp\n4j39dDPXpwEGELN5A3UzFmZ8MtwF4USwhPnqjN8vMgz2Tj3bPhX1VUGRgSUv\nsaEXGmp1TkhAV+Qn2TO37O/XZ/AEd0Ej0Te3cWdLHKq6zf0iYMUIOTbNcn7g\n89bNuNBm74ydO3FM18LpuFJRK4p8S8iUXU+6DzJJ608Uq6WRIDhW3HH74E96\nFnrelOiZXT1I7THJ90m2Vo+rlDpH805IvJw0Fma7E2d/nG2i0xE//ZrOKJWd\n9vDz4OWKI2EqafvXM2arVZf405gsNPEjd4JFwldZXGQCwvRSOXzE4HXR2Pz9\nnA5G4uep0FNaIMODew4igLWRC0t2SKNhGoXQwM5AsoucP/OvJf4nz2f0YMwS\nbHGX\r\n=+RlW\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"11.6.0","dependencies":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","remark-mdx":"^1.0.0-alpha.5","change-case":"^3.0.2","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"jest":"^23.6.0","react":"^16.8.0","prettier":"^1.14.2","react-dom":"^16.8.0","@babel/core":"^7.0.0","@mdx-js/tag":"^1.0.0-alpha.5","remark-math":"^1.0.4","rehype-katex":"^1.1.1","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.0.0-alpha.5_1552072467060_0.5110259377404822","host":"s3://npm-registry-packages"}},"1.0.0-alpha.6":{"name":"@mdx-js/mdx","version":"1.0.0-alpha.6","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.0.0-alpha.6","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"87143a06ebbbcc80e6730b5f461985b39cb0fbbd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.0.0-alpha.6.tgz","fileCount":9,"integrity":"sha512-UCdLi+YpXOWvDXHm8sXuANMk0Z3W/C/GJgA8JLZ07uRSzIsaykVBz5Ylj7Vycl5UW+tgC9Q8yMNnwKCYVaY4EA==","signatures":[{"sig":"MEUCIGjOfebT+vBTy/dz8nxRIsLTxB13Y7VskPpYJ4S8DwkWAiEAgc1pDgj6Ojttgn2v5NMUt7Q45Q6Hb6FopMn4G3XzFOU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":16293,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJchpFsCRA9TVsSAnZWagAAR6QP/RAYqiYQeQuonvPobctp\nRl73n+4bcgWaY6w5JbRDcqU/TpNgPpP/SCnq0bHaAe4Cw2HL829BLzkl5f5E\nk2T2ktOHVUA45gffLHcfuO4wBoNjWtxGrmVGY9ojH0VN0QK7kMrHyAbMnZY1\nULXCZEPo+uDn4TW74zYcem8xscNt7PWnh/vcSV8Jh9O2FzZokHdz8uXkjDBv\nN0dOoy5AQEDlKZvZBfT76rH7g67kckkysCSrlH9vy/JXIEw2YitZrVk43ryH\noGvCphi3QShHgfNHQ14JlKj3296SwTml4PWrAPB0HvRWH3wn226CQTy55XQ9\nUC0R/7gtMeYo7ygAKkqAz322tWLJ7l++xXGzUA5/1b5AhPW+kd8GNUcCygkX\ndGh6hEoDQ8J+LNdlmwG/+izX57b66wkro1TZuTGwNtO+Up+mt/ys2fAl7MHO\nJD/O8FQWypE8Qf/FDs242aH3ANfE9PklbE9c0bx1hQ7Na1kkWTyQ4N8bj0E4\ntF/8+TfU6xZVXaN+kVpbsniYoZhPkCVvdadZyhq6KN7HabFsq2rjWsnFwohD\nmqcR7H5k31S8aA+TSn4hQPfTdMHyDH0PNWmclVQ7k0849M+oGI4f/wXnn5fz\nL6N6iOY2iGwDhwYI3NGw5oUzepKYzeQz+XhtKMMNkBaflzh1zXOw2eBfKs0N\nTUCz\r\n=jQ9V\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":"Parse MDX and transpile to JSX","directories":{},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2017-2019 Compositor, Inc. and Zeit, Inc.\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":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","remark-mdx":"^1.0.0-alpha.6","change-case":"^3.0.2","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"jest":"^23.6.0","react":"^16.8.0","prettier":"^1.14.2","react-dom":"^16.8.0","@babel/core":"^7.0.0","@mdx-js/tag":"^1.0.0-alpha.6","remark-math":"^1.0.4","rehype-katex":"^1.1.1","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.0.0-alpha.6_1552322924029_0.26250950243233984","host":"s3://npm-registry-packages"}},"1.0.0-alpha.7":{"name":"@mdx-js/mdx","version":"1.0.0-alpha.7","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.0.0-alpha.7","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"4565e46a58acd02b2891989c7cb00eca953e2a40","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.0.0-alpha.7.tgz","fileCount":9,"integrity":"sha512-iG0dTw+JQ5Fm1wxt7m/tVH8ZewnWPOe2GhRHWIp0QOP2eqwpuzU1DYXWLO3MmWxLBGgoU6mQU4wORee2QmV+cA==","signatures":[{"sig":"MEUCIF1cK590FZJoVwAvi6ftDaCNc6J7Vw6MLsQc0oj+7jNXAiEAtcVrfBGmhRL1i0E6O/mho9pAjLcjH322htcz280qyt4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":16224,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJciVAqCRA9TVsSAnZWagAAHBkP/jDQUPVE032EgJt7rM3d\ni0PgLTK93KRkaMebrVzAdKRcBNq060eMNfeRMvts0Fy/HCrjIbCJ7PQVrgIu\nrFIN32hBJOy9i0aUY7eDWHn1M7917R7OlOJZtWnttrjcph5Q07eLEAyKr+kl\n/puj8NlDa6fZ97iLWExP49WDZNMiBo3Gk7qPvk00G4u9Gp5t5NFSoq7T7mfC\nVxh2i4Q4k+Cw9vyKpu/0neAJYxl7E76swKKGh2SyskjZfpukalQk32ypICJN\nb5JZMQdPEKAKhnZcR5nC7oJghNzUr8/3AOh/K/KAUfhPtbd4DHWEwUFFB2kd\nxmGI9eEV0SzInZNgcHqsOID+NCQHEl1peZSgwa3mBeZH21TwC6i4DeaSPsFG\nL5TeTgD546uWcdf0J+RnkP592kjRPupiy8nOUjLKWQ0T6BE586L4h9ezi2hJ\nJzXjqxxdQFsezbGWv7zRbrSalobKxRjQ4PpX2gwZCA6xKrsqzQuGlIxGl+CR\nxe4FEuuioFLFEeb+fhXe8ZXb/l/5eEA54Y6N7Q6v/USO6URiLyN+v7WhShxO\nq32qiAvLlPtVhYJg07YjEUomY1IN1tNH/S7KBiUAYvAnzu+hNjDVW8Po8gjz\ntnmUlprCcJECuwkIzo+caN7p3eQFyVy+Ap42DHN4qbkbG7GqdG+ha6chhVGH\nD81C\r\n=KINX\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"93aeb8d4103bca7ef5ea09fd9142972115d01ca4","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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"11.6.0","dependencies":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","remark-mdx":"^1.0.0-alpha.6","change-case":"^3.0.2","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"jest":"^23.6.0","react":"^16.8.0","prettier":"^1.14.2","react-dom":"^16.8.0","@babel/core":"^7.0.0","@mdx-js/tag":"^1.0.0-alpha.6","remark-math":"^1.0.4","rehype-katex":"^1.1.1","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.0.0-alpha.7_1552502825856_0.9838820038396932","host":"s3://npm-registry-packages"}},"1.0.0-alpha.8":{"name":"@mdx-js/mdx","version":"1.0.0-alpha.8","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.0.0-alpha.8","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"52d740de6ac17ab9a42d868d97576d8fbd000fa6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.0.0-alpha.8.tgz","fileCount":9,"integrity":"sha512-OXfYj4NhlO19DLxwOzMlpT4FEpJVftCeYQ/iUiLS0O4dD/N5sKSPJ334jN/Vpl9d0Lkf9dczpcJ7fvOVZj6iBw==","signatures":[{"sig":"MEYCIQDdW3SNeOFJx1jdAgHl/ZVFO0ByWqVbYcEAfjf9ht4k+gIhANmDv7TRcYfetA/Qa83J1Wo5ySeSGeuOtNRl6qkYIObM","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":16757,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJck6fpCRA9TVsSAnZWagAAezcP/0utJqBkF93S6NdnyuJW\nFBwu7V25qnR0hR9h4pOL0WmHkT9O+bU9/CvcxOJ2XmzpU6snUPivoekweULf\nWOWBM9ThZAcX9iWSFGSZEH0vlVIdgZEzqKMI0mgEp0SqetLwDuApJSWXOlfg\n9+y0V+aSSUukQthgNbjZ+VBDfGhVJEODJeWR7tFKVeY6iTvqkJ60BDwUbBrt\nBTOlO68ztNrITToLYhreQP1feHDPid1EDS+PquA+M+Ws3q/f3yM9VFhoI2t4\njjVk/HeL8sNT/3ahc9mUZJWwXsM6SagAqUoPVlRBTLKgyY5vdZ7ylIa7yryb\nQf8ypKpVGhUAc9nPibb0WyZTAeohReyQF7F7xgZUlqBvHr6lakz86KwlLUCv\nAHoO44V0On8JPqkNmX8gs9MnRBwPxh3bi7iFFf0pu0L8Hb89kYqEn2Eea6Z7\nht17BKPOHZYowyMzF8JuzmpXM6dqEUSAKHV2GEt/ElBauJc+5JpweIVyrjWV\nuIAIydelMg05zvAvXG90uOtVtlJo3WmEpcuNvPEBC4OALSV90evQlrx5KUO3\nSa3IW7A800ng1gw0CuCGOsjAMcIV0ptvCwCNfnj0H9IXHxK05Vl1hgbdlM7K\n7mwQc5HkIt0nfG1UxJ/YslK4mpXeHaot33SRb8+K7qckb7u/kR2+mQRwah4+\nCFjb\r\n=6lgF\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"11.6.0","dependencies":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","remark-mdx":"^1.0.0-alpha.8","change-case":"^3.0.2","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"jest":"^23.6.0","react":"^16.8.0","prettier":"^1.14.2","react-dom":"^16.8.0","@babel/core":"^7.0.0","@mdx-js/tag":"^1.0.0-alpha.6","remark-math":"^1.0.4","rehype-katex":"^1.1.1","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.0.0-alpha.8_1553180648549_0.4581096496289119","host":"s3://npm-registry-packages"}},"1.0.0-alpha.9":{"name":"@mdx-js/mdx","version":"1.0.0-alpha.9","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.0.0-alpha.9","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"b69f11d3937b8de4886b73341bd814030a33fa87","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.0.0-alpha.9.tgz","fileCount":9,"integrity":"sha512-B5zXG/nTC02CAF9wb0lQUchKiDSt+Chj4MgA6YxdPmp7Ck0xXJ97ybPqX9m2qS1nXerPjtarqf2A6/rwrbSD8Q==","signatures":[{"sig":"MEYCIQDo3IdTb2dznpHlKUveP/4XNF5dYKXCity/qra+BpYu1gIhAJMBGM0TQ6R73DAz8MOIU4bJRI8W/Oj/bV6zCkYuuAD8","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":16766,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJck9QdCRA9TVsSAnZWagAAuOgQAKOENMkr0YMqo29XwN1A\n3gMDN/6jbIQ5TlOWqwnQMEg7PXcNuiIEpGQD+eBjkXTne8ZmtCIlmYkipFCp\n9LgvFxv7GU7EWiF3h7y+r9T2fya2+pSROizxwr7aIi2qBper0I1X3qHTch+e\nxJBELAwHhagKJRYPwHdYq1zSTG+DSqMR9NIoGifGG5GFFF2olckRDc+PqCSe\n/3fIbA0iebo2KTlMSqp44VSVgQ/iOxSYdlSmRyZhSypjWMeNTega1yra8EPd\nvorkcpyFcecHmuypUjOr1DG4XNiSuBOFAAKqIuFdSqzHWf2bN1oKZXDTEBQ7\nTW3YAaZymZs7lWTYPmHDe+7BLlob10UG60SJPsCo6X9KOyaltHKoRwmJz5/K\nDtPhjtNMJonfZw2yUQiZqT5ZvMs8i5GweCcguRnGvLmM7C2iayKbwS8Dh9O0\nErAZNoLpfI0aKgWRNr2iuDnn1JlobM/5HnzXItmKviDx63i4uSATPPOiX65S\n1DgknBGxOog4eT4Mn2sX1f9SG2le3BGnNARBHaqIHSpDHrzwcHb70AVu35OO\nGcjEDQpq/wnioa4ZtnmK5K2GKIQZDiuiA0n8Iap4ZX/saf+ZoLwPwBGuKB8d\n6KtGOCtzv4QLkO0zl3t1cBmRfsyK+3xtY9VaJASrnNDi+tvLPtShjVeOrFHY\nwSXV\r\n=jsPW\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"aca926118372822d2070e8bd8442be9a581da8f9","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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"11.6.0","dependencies":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","remark-mdx":"^1.0.0-alpha.8","change-case":"^3.0.2","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"jest":"^23.6.0","react":"^16.8.0","prettier":"^1.14.2","react-dom":"^16.8.0","@babel/core":"^7.0.0","@mdx-js/tag":"^1.0.0-alpha.6","remark-math":"^1.0.4","rehype-katex":"^1.1.1","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.0.0-alpha.9_1553191963246_0.6014564497020285","host":"s3://npm-registry-packages"}},"1.0.0-alpha.10":{"name":"@mdx-js/mdx","version":"1.0.0-alpha.10","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.0.0-alpha.10","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"af21528670a3170bc0ed2f540370b09e5baab207","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.0.0-alpha.10.tgz","fileCount":9,"integrity":"sha512-HKzwpkRaR27kUAvNXvV0RUQx7mn51qjKhEPGLNUFpR6nFMg6obb7yoQOOczU9HBY3xLVtXb+2ZIi6SAC1ODDAQ==","signatures":[{"sig":"MEQCIBiMEk2AZPKXYW+6GTTxuhQpHuFoN6M/mp72h0ivuI2CAiBKuK/YB88E7qZTNhfFuZUj5Ej0c4B9O2/fFQSH+WMToA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":16763,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcm940CRA9TVsSAnZWagAAdFgQAIPw1qegO/hMKjEMDH/n\nxrP7+uB4I7R7I3Sb9oulrst9ehRRfK29YiIXZWk7g4FifaFbYWhvkv97pA8l\n6rJn3AFxi7933Hv8mfxcX4L7MNHikDrXKfRsVO0iXsWkp15yvBS/JlsfuYxg\nn/RpwCMa2VReKNMrKb9PkcHMuWx0HvkA8EMw6LMhhQX846aaqGt8leOTKdqN\nJtISJk222NyaCqjfRqrIilT8sWPp6tvMZNK5PBR26IE/dpQOxYCSBJZb4xTD\nWDODrHKZRBfn3eRLkGbC08vrmomHrz/DiA8QN+Pq+RpmpDCp1/ec+dmsIwC6\nMBPA0CGz+AOHY9/uz/w5I6Xw1U7adKEzL2yxcPFlxVCc+gLecQt1uWIm7dM8\n8ID/aXvzlDnw7KerimUY6a1CfK3Cq/dSrSnjQ2jbQqGwT6mKokbxVP5NJjqB\neIxX7+yXDa1SmS2X6kO/fEBshbknUPGHRgggzGCTPuzKEAElbSjFroj8P/Ih\nLyq7dpm4QLQLJKY+ldvpUbFydwXVDfq25qvMzMXWuPOJox1vulOvUobTlHV+\nhAKN09LlcRzX5gezkw2vjQEmt0QDtnRGoC6MrzXNahvDztChiLDvfZFOvCaI\n1zk12hl9ZGs78aJBjzijimGuHkLxCmxjlSNqh3NWczKqcnU5YumsTk8WJuFy\n/YOU\r\n=7mMa\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"11.6.0","dependencies":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","remark-mdx":"^1.0.0-alpha.10","change-case":"^3.0.2","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"jest":"^23.6.0","react":"^16.8.0","prettier":"^1.14.2","react-dom":"^16.8.0","@babel/core":"^7.0.0","@mdx-js/tag":"^1.0.0-alpha.6","remark-math":"^1.0.4","rehype-katex":"^1.1.1","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.0.0-alpha.10_1553718836162_0.36562920039943614","host":"s3://npm-registry-packages"}},"1.0.0-alpha.11":{"name":"@mdx-js/mdx","version":"1.0.0-alpha.11","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.0.0-alpha.11","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"f8dce33e5da2b0006c00fc27993092964d7c2720","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.0.0-alpha.11.tgz","fileCount":9,"integrity":"sha512-zRC++zMP1nPaynYoHHph8DVATH2lO424Wi78z3BlANVToCrculzc+IaN3VJUJa7Dmfo4PDcd/diLAipYrxdVpA==","signatures":[{"sig":"MEQCIGpvQ9KBkgTqDJJO94X7vnYCcbYsxZl6Qg0niALCMBAFAiAXdceX3/9cOoNTwfUAEdfzrFXpg6+2GxK/Y2a5UEdrug==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":17123,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcnR3UCRA9TVsSAnZWagAAipIP/280grz8J1zrj8gNxMqZ\nFCic7RRTWy3JnRwfLS60t5xLTmCOH4YtE3yBPCJ0votTjKVfiDyClVoXJdid\nRKNR15LqS3JjL+yXBjDfoAPdvEN53k6n54nBhhowCrsVL/SQyGT2Iy/po+Ni\nN1aEjIrvwZJfFODcPZ5Z3EIkBQjaW163k42BRRKOXRB0wxIUiiPmhYAm04ez\np3xpqNkX4qMUM6bRZ2SobPUeBp+2u/NH8ioiDW8oBROE+x/k0aKPw7mrilNT\nIHpEZr2ryeSFI/apwdi/448CE0Nbu4SZzrcufl4wFEzHGm1CtqT0GhGzV/aH\naw12nA2+IsluPV5iqm6w8ZlieRQufZ4WRomHuTiC46EkSUD4HyN1USmR7uv5\nyqw5T22InLMkgR1A52jKEiysw9JmI1QktmX+NIDNhBaoqv4i/WY8aXLG10k2\nOQU/PB1Dc7HiEocOh7nx63pz7ad1KVRwIztdWN+iFiVeAu577uUma/7LhCaq\nV32geGjE8tgztfV8+jGyzv7a7Vm43lgzdwtX2dCGM18YEq9fflCq2mCgJJRK\nvnsp11Du4Fc+HusY7LteXVmaKAn03VmOWTUvMitJyyzrZten7/3NydtU4om0\nPpP5wh/EljvEFbvB0s3jINie3My6XKyY8M8TyqyeUsY7ZbYlrmC7eUzQmjwL\nN0aF\r\n=fZrZ\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"11.6.0","dependencies":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","remark-mdx":"^1.0.0-alpha.11","change-case":"^3.0.2","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"jest":"^23.6.0","react":"^16.8.0","prettier":"^1.14.2","react-dom":"^16.8.0","@babel/core":"^7.0.0","@mdx-js/tag":"^1.0.0-alpha.6","remark-math":"^1.0.4","rehype-katex":"^1.1.1","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.0.0-alpha.11_1553800659988_0.9500984893001923","host":"s3://npm-registry-packages"}},"1.0.0-alpha.12":{"name":"@mdx-js/mdx","version":"1.0.0-alpha.12","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.0.0-alpha.12","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"fb735aa6eb40a24a02b5eecaaceac7f935f13d14","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.0.0-alpha.12.tgz","fileCount":8,"integrity":"sha512-1EVdbVEYdwKSoIhp33Ka2iL0EC9oAVRnNMgVU7W2DhWCG9Dy5y7LDRaL8MA9U3jrLL/3V59kgzvcfLZV5fCgpQ==","signatures":[{"sig":"MEQCIGdeRIs0Csg81LJwXccCTSvub1nm/4SdgqngLv6C8nw6AiAWZzA3ycbttXx8yzKdghMUkBbMCdZp2nm0oiLNCNuIRA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15867,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcnS+wCRA9TVsSAnZWagAAVSwP/3x3tQR1ftorF8D7DRsf\nZdJFBGbnmbTHgQJDt6RZe9e2Pa7lUwoWDZ203mHCDS7IMZPqY5b92D03qa/n\nRFefQDQnOwQ3haeT+4MprVl89lSWfnVvdEN6SHDJ8BY9INekZoNrOnQFzqwG\nOG/+7iR8gIyYeATuGn7LwZX5ntE5HKFO7pbbELREo5dZGPalYw2snq7X0CW9\n13dkTtOxVoaIvXbkn9SX1oRNtTfF4kj1KH5yLjGdfqam5M/v0VZzbjF4//zj\nTYSSz3zKDDBy3G4NzwJV+2i8KRJuVH6aT9Sby3dRzgdFmwU9Pkl78p6JeSp1\nqmd8JoSXENfbDIgz1lgg49xhzhm6kVIzzdtt/ExUc2N/qM/FaQLulqLHZO6M\nnRlV9Rc6yLPnufxAbzqv6OrD3sIaulA8A3d/R7xP3eGPEN8UTkvVBMOugau5\nC3lnF13vBGsU2I69tZivyC03hRIb8gBwd9Riu+OrL5gzGwZhVZhkWCmUK7oA\neTxoz/IS6JfY9a0mL88fqiSjL/sx9OghTIX7QDMgzsT8kDXgoIzusQdP4g6q\nG5QDsVNjQS7r4isHWuGO7dCWthmbbH4wHFAaOBUxA7LEp7c9676bkhZqGJwk\n3j56UM0h+x2hch4iDNQGfCLiYBXQtyz8B09tbz92HpI7pwc804b2MV7rrsXe\nDI5j\r\n=yqJk\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"6d59b219f5d6c7ac9b0d50fb7979718e7b3d1670","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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"11.6.0","dependencies":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","remark-mdx":"^1.0.0-alpha.11","change-case":"^3.0.2","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"jest":"^23.6.0","react":"^16.8.0","prettier":"^1.14.2","react-dom":"^16.8.0","@babel/core":"^7.0.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","@mdx-js/react":"^1.0.0-alpha.12","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.0.0-alpha.12_1553805231247_0.3175917842187508","host":"s3://npm-registry-packages"}},"1.0.0-alpha.13":{"name":"@mdx-js/mdx","version":"1.0.0-alpha.13","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.0.0-alpha.13","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"d7d5266ca522e7ec8da6608e5500e7f58f77334e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.0.0-alpha.13.tgz","fileCount":8,"integrity":"sha512-l/NJibkoa7ZGL8OjqjVI47UcFXkesF4Mz3eew8koEkZTJqMWVBR4TenMa677PKHXOq5k4kmhyXMn/3YG4WioVw==","signatures":[{"sig":"MEYCIQD0KNBzjgZTUNhdItdV268mNMJNgq042SPolx8xYv8gJAIhANCxDE22+FkWPpqTYlFVzyKcnMa6aOTN/XPAtgHe4LwN","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15867,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcnTs6CRA9TVsSAnZWagAACHYP/R5/CTgguvDmNcMzZmmS\nIjqNPZY4aOfyGxdV6WF9KmXBRYqkBQlswgJNVIEfi2M/V6bD2LN2zhPLOV+C\ntR3SnW+krQr6R1+s4iuB2neuC30suHd+W2VfHy+D1Si85rpfmJwW7OzS/IiZ\newSsDl+XF130YupnLyP3eMni4UPSWDUDzgK4RXgMJKfE3UNTnbLlyGGEjsQS\nfFIq13n2i2MaKK5/aj3U+sY69hpBlDfk4wrqius25DHsdYXm9XwdL8vL9dn0\nejYBhMMVsJ5n9qcpq6PM37yrt9tfHuBvwZ6Yw30ZX48TmJrTg6eGHMFsrmW2\nSpsIsvc0n48jXuINOjKk7umJGDRHDvBlmTh1bPcNkJ2alHqIBXjb2qdeDvd8\nci5xTZ/W3b7Gnl/pa3NN0fHjVMb7lhFRj5TUq7F5qDxW9gHNKsy22wGBk6GR\nVxXhAzgu7ViClWM74Ynp6kft1jOgVeGXlHGvB8QHcZq+QlMVIkv/CsJ1ozUd\neO2MzCeCKLceiac/PdKqGQytd3wmcTaDH26J3hKrCsOkAAM4/CkzIXNsBZ7R\nNcRWy04ceI8O0yMkqxkaiFlu/7Hw3Figa5KVBysgonAWz01BuxDxpzCiE65n\nh7MxCWOIX/r98QBTXV2NCINUi+zuE+ImQssnBenGFk1JIkZlFWVrLN9LUk7a\n22mE\r\n=CcWR\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"11.6.0","dependencies":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","remark-mdx":"^1.0.0-alpha.13","change-case":"^3.0.2","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"jest":"^23.6.0","react":"^16.8.0","prettier":"^1.14.2","react-dom":"^16.8.0","@babel/core":"^7.0.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","@mdx-js/react":"^1.0.0-alpha.13","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.0.0-alpha.13_1553808185343_0.33504402965898494","host":"s3://npm-registry-packages"}},"1.0.0-alpha.16":{"name":"@mdx-js/mdx","version":"1.0.0-alpha.16","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.0.0-alpha.16","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"1407dd5df5f3f60d89b88592e296dd23482f17c7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.0.0-alpha.16.tgz","fileCount":8,"integrity":"sha512-huwKO3M1UHRzFDnR2dn879fz2DN6YOh3mXxIGd2+QgGZdehN7X6ZVKBrAIN8o1glyHzrgmounRGeC1rFpWSSyA==","signatures":[{"sig":"MEYCIQDxeGE8v3YkXEykEIYCaeiXfdd1QgatCySp300RVGMcqAIhAOj9J3qJSAM4Gtiu8DZfVtvASLszlOc6hOYuUp9yAwum","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15867,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcnmNYCRA9TVsSAnZWagAAicwQAJ9HQKo7RfBZ9PsCkAfn\nb0kYSPCGEBHjkI2eoZwo2l8qDSaJHuiu90pxmFqZ5WzKPy3gt/2qTySHbL8C\napw0HU6/bxZMBW8Qkx0oZfonXBD9qU9HZoeN7oIthshjZG20fhisr/BVU8wL\nhBLLM/A6GPt93H7BaZwZXxmza37SaMFa1wkl29s2HJe4RljE8a5Cbwi+7njA\nXM96DzjnrgoDDwT+Z1NKM3cc3AE/gbwlpgUfTo/P5rfxZPesVXCoc5pFZZwr\nh3wiG2G9RD970V5j/dixev/tElp/nFww9gmAYyRkR1yNGSZvmQXz6WXcK28P\n+CRW1N9ALTUjV2mq8ZSHygdd/+7RwYY7iSyRm6+R4px/yTK6o2sILqLqjMOA\nFJ1BhT5A4OqWQAVokiu3sHejPsQU/Z4k9DAhlewpcZqQ4ZTCWQmyyXh9zU3i\nK9kLP3F26HdEnKEiUYb7OO0MiNcms8uSdoAvuTg+O28B6ksEj1yCeV/7VSWA\nIHPG2nsc19ndm0ewqFBSLrMxnEM2GzBNOR8FIRM0QE7ROpbmhcBYna2V6zNQ\nl9y9W375ql9fx7yeZvhCVWiaGfplTbHRMMbqFLuxRKN5Ucoc1t+MftVcFUQg\nz4uy60j7KJ+tpHrnYk7e+Xe53tYP6Cxqtgqfrfw9zdALE6+L+am7jpWPcmAq\nA6F3\r\n=8xuQ\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"0cca7119cc1b8980722939db2b85a521ecc56532","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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"11.6.0","dependencies":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","remark-mdx":"^1.0.0-alpha.13","change-case":"^3.0.2","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"jest":"^23.6.0","react":"^16.8.0","prettier":"^1.14.2","react-dom":"^16.8.0","@babel/core":"^7.0.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","@mdx-js/react":"^1.0.0-alpha.16","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.0.0-alpha.16_1553883992283_0.5711621023257274","host":"s3://npm-registry-packages"}},"1.0.0-alpha.17":{"name":"@mdx-js/mdx","version":"1.0.0-alpha.17","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.0.0-alpha.17","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"2905d3eaa23bf6470d19baf642aac859c5dee41d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.0.0-alpha.17.tgz","fileCount":8,"integrity":"sha512-DFkYidwVmfLpLQwbO3X8WHXhv2FDlvPC/IbsGLCSb6RzFIiwsVBYlFv5MwEO8TdB6rqFE4yAJluFfml1p6ZlqA==","signatures":[{"sig":"MEQCIG07qZisv9QN0tbf1zgjozXMpgRxba+GSA1fLFWVi8fTAiA52sPYYtcYuEvhyowH9cmJ6UTUXAQ6sxWly5xBXwEp5A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15842,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcn4xyCRA9TVsSAnZWagAAuu8P/AvGpEEc4eTPISvzaW6P\nALpqKHoiVs2ZVTFh56PMkFCWrnjlFE2IwokXaGTxOyVcqzdj6kebyIGqx2CD\nHhdTA5FUz0jXsU6vaM5NhQKFoNQTDfYQrYVF75U9raH1hTu9ADHPvrQTkLMT\nidqYQmF+qkij61iMsoF1ZB6V8qpWkYCcl1l9ZeKaYhCByTdQR32sQxvb3oGQ\nXe7as0GYKzcFZ3CYvYJq1+CggASndm8vsLvOyB6x+pm8ld3FVRlfBARdn3VF\nxANpNfYe6kCwQZjGXF72xJaDLbNsGcL22UMTyVXhKI5PV0XzRTQE+BVVSJ6c\noM/p4OqjgYELiMQPk+6x1RhAxwhhkvfLN3cT8MAG6QbsGBw2aDPQPNSdcTGr\nQ/Q1uTBFyrNp+khTrLAr8aq6TIX0S3jGrk0WU+XhtFQon4Wjh5j7wZtk3sXF\nxjnPWrkbt1bja4/oGjvbMNQOJ9AZDz1KifJSxo86A6wWgqGiC9hsXXHi8vxT\nsY7CvqgsWqb0qv8PvbQdnvjnkX4tgmGDnHY9HptDEedOD7joFqkiaYmxr6y1\nveY6MfLTPfaJQBVapWWwqrDqrByCwqM1sdJIeumaodCGDvFRmyZHHoQpqxgr\n3lmnaofZ476lyO0b+vluAU5825UyKEnl4/blvYln8oMAqNIcl0UMy38HTsZ4\nk1Zr\r\n=xO5F\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"690cd8dcfc2007e45193180cc8d1f016269be2ae","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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"11.6.0","dependencies":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","remark-mdx":"^1.0.0-alpha.13","change-case":"^3.0.2","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"jest":"^23.6.0","react":"^16.8.0","prettier":"^1.14.2","react-dom":"^16.8.0","@babel/core":"^7.0.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","@mdx-js/react":"^1.0.0-alpha.17","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.0.0-alpha.17_1553960049278_0.568652438873495","host":"s3://npm-registry-packages"}},"1.0.0-rc.0":{"name":"@mdx-js/mdx","version":"1.0.0-rc.0","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.0.0-rc.0","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"c31c8dae9c08e6494018e0fde4a0d87a7364f7a8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.0.0-rc.0.tgz","fileCount":8,"integrity":"sha512-PpDmC9i1LJKAK/BNce75D8QZS05ccfVMJZKGalogvGw0b8R+vQcMBtlklbVOqk10oVBe1TYYbRdniOkt1ziHMw==","signatures":[{"sig":"MEUCIQDQMOfcMuwjmQqiloUpDmozlnaMCN3AOY4e1lIWGsMAaAIgJa/z5IsMlxKHxL82fpQhFWxKMkoQM9K+DZvhx4hLiZk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15830,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcpjNBCRA9TVsSAnZWagAAxyYQAIv98UMMwsQuFgRfuG59\nmg6j4EBdI1iSwh3tOpgPHns96LemULUu95mThiUWf6RUl17dxV1noSIJujFa\nmRkgsk9AxCPxJ5SW41lU864w8BCjyxrcgvbmL60uvzFQXFgxn88mWqIvSNhZ\n1+yixMy2zXELBMVK7FpJ9dipFYpGFHRySQQS64DFoqMijWf61VC06NYOV3Yb\np6tMntQc8dWFtbiumL1wE8sIvdfvFACw5zDp1DaDxQKS590AUxidZQRHSAT0\nGPRm2jbRQjGyxabSWlzYMm02x69JK5MxQgQ0GrA8qoCeSnow6wE1UEqc7Pu+\n570qBN7DFNClvNrQGrmMOO5ZURQATCcgPMLiSbn1oKdsrMco8r8yjgVn23Fx\npxaQF8/N3EHrD8NoGYsUmfDgI8qZh8g9daugRR1PEZsOldDcx3WQqmQPeVcu\n/4idZ+2I86FhDmBqYMR4/1XyWoq4Cl2IwHonu6UrfXSYXLDgizxv4LrU8ule\nX3OiurDUYZYPkfYUCwfRty4zRufN1FlHVYK/Xp3Hgo9XQUhL1ZOzLWxI3XUN\nEv8AiGEsr9Js5WRxHPsspXE7HE/hIQlD9VgfmOOPkDajHgIUrMPhBbBlRIvw\nAJHYK08c3IjU6zmGQt2FJnsf5v18aerF/mZ1O3fVH6rsgssKLar86YGiEkDX\nydEv\r\n=w/aZ\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"11.6.0","dependencies":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","remark-mdx":"^1.0.0-rc.0","change-case":"^3.0.2","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/plugin-proposal-object-rest-spread":"^7.3.2"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"jest":"^24.0.0","react":"^16.8.0","prettier":"^1.14.2","react-dom":"^16.8.0","@babel/core":"^7.0.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","@mdx-js/react":"^1.0.0-rc.0","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.0.0-rc.0_1554395969239_0.40707987956945235","host":"s3://npm-registry-packages"}},"1.0.0-rc.2":{"name":"@mdx-js/mdx","version":"1.0.0-rc.2","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.0.0-rc.2","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"f3e0d516a5fee1d1b5dcae07c084623bd5f73790","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.0.0-rc.2.tgz","fileCount":8,"integrity":"sha512-MzIAfOsk+Pc/M8mSzFDyStxJ8rndpTRq7LYCR9a7OFA3HU135TyGVy1ddfHZbsO4Kwqqcq4vvYSHU3m1BtJ0Ng==","signatures":[{"sig":"MEQCIAIVA/6fluPhwLxAhBvLJn85jU88KEACoHiS4hIs5+ywAiBAaT1lU7FPrfwGNkyjL+wLouzK1z13yrw9WFO2xrdkZA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18658,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcr5aICRA9TVsSAnZWagAA+qAQAJWWUCZ8un/LqJ3ekA9R\n/gsWQ9F9NzMrxV3H6+q5Pl7FbDakXKQrt5A7S6IQGvN6WAm1c0wMNBJQdOwE\n5Xj8dp3FdN83A2wZ/+fnhejqYdlKeNcoHig7xcAvczIv6Zcug4OJ76HMo3RP\nPK3YpB4+HYakMV9PACc+N1qEHAoYrTyRMnPUDYvkbpqjZJETSdWGGwp5Ocmn\nOjfdEqSyYcQn6kfT6e1rwdxrQRTm64T9OAv4rLIV4vLiAPN9G3k+gqnw6+vS\n3DYGKZOxc2/PSi9f3K/Y0GFXptGkfQ3FpEh9K5JBxVhn90b8I2Tgh19Lukki\nIipDZKHSJUuNksU7mkDHci4q2w9KHgbB3PAkYBYdiZbDY4Sg/pS1N++5nk3W\npRlPj7Du2ShnxzqyHq4thWbSQKSRovj3YGCuOXlsFEDAcNvmWCKuqG4OiArG\nul4glKJYR2z4agt7yq+vtXQZIxX1boA1PgT4jfDjiAoDE8tQpEiXogiIk9+z\nxADjLgtOduFXH09gVXswSEZR8Xnb//+qlcOxmD0WnAzclNElMkoFPihOFkbs\nAsxtmvpes4m5WTxuM3oJ1V8Y+zYuNqLzLrOiHSIubGJtBAZRN3pbkp3zhdHW\nsyWiYz5gNvqh8GgzawYcNLQEdpdIoJ5ISIfsjXQYiGlcqFuRv7ZQMzJ1gHG0\n9Oj/\r\n=Lfmo\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"11.6.0","dependencies":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","remark-mdx":"^1.0.0-rc.2","change-case":"^3.0.2","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@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","react":"^16.8.0","prettier":"^1.14.2","react-dom":"^16.8.0","@babel/core":"^7.0.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","@mdx-js/react":"^1.0.0-rc.2","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.0.0-rc.2_1555011207491_0.6434560974038024","host":"s3://npm-registry-packages"}},"1.0.0-rc.3":{"name":"@mdx-js/mdx","version":"1.0.0-rc.3","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.0.0-rc.3","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"324171e51e1df4d332610b4aeaaf5cf9e4e1e391","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.0.0-rc.3.tgz","fileCount":8,"integrity":"sha512-YbQWrn0dj2ohgZXVrb1pF9PlhefGuv/0qa2ZFAmmT38ZuLsMgMm7RfT5deqDQxUjWm+WgW36SRt1s0VA5iZUlg==","signatures":[{"sig":"MEQCIFddHmv57qRq574Ur5pOjOM3HXMV5zM/Nr/3uY2a0uoJAiA6+JY5K9HjZgvQHdo1dp+Nk0P+HS6nhTuhD50cLfLUng==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15874,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcr6IECRA9TVsSAnZWagAAM34QAKJp1FkyAYwKN0CNiNTS\nQElPhG41afK4M11ukMK9RJ4yhAffa74gIOyQJOEA6HR3nLLKZvcNAR8Rsq9T\nNdtzPZI0DVLhjEvF6WtMbiNMbaja9XWGpoF4d0gLZQlDXQimi/FoFZYzBWf5\nGnjhY+Z7xb+9WZZRzfr1d0VvKKlo/t2M0p7c7+Bop8tWILkXrThCmS7tKJ66\n6N8tCEr8m2iAPWS208t6OQQB8MFIoc4AbsQz4FgoQ9guJkcUHhqqsQBUZ7Y/\nZ1GQwjOEI94WCsUqBvzJG5A4YhTkiDZ4Xljai07n/gFVdWGU1u9eRr/W+fTJ\nLlmnpU8YYoy3SBkGdlittXzyD3A7fMCORl8/rBZAblPkY5UCnhR+YrUKxT2u\nKCQ7d20hUrbdGSJsfiWf1l9T7g6lY3rAPou+RRzYAHA2Tlc7m3u/SuejyL4x\nx3w8lXcowwQPZCw+JbNoTJ9+H6bl5WK6aFns0Po06o85uSNZ4bbWXgMkJKAf\nLqycD05UK2SFIkuk5/i8g+2pKHEypBzD6t2JGGVy6ySjWDyyi0v1o85kyUZ/\nssZLKo4bNaT4i62dYlZhMKy+wS2LeGKPiri9JNFFemE8ZADAT0ZV3fW5KYsQ\nrusmlYxDuZ6cgXm9giIw5HivPm7cK8SVKpAUh6KtgHS+a99Pmd7RwqZLyCKd\nUz1S\r\n=jN42\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"11.6.0","dependencies":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","remark-mdx":"^1.0.0-rc.3","change-case":"^3.0.2","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@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","react":"^16.8.0","prettier":"^1.14.2","react-dom":"^16.8.0","@babel/core":"^7.0.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","@mdx-js/react":"^1.0.0-rc.3","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.0.0-rc.3_1555014147471_0.22238049881048383","host":"s3://npm-registry-packages"}},"1.0.0-rc.4":{"name":"@mdx-js/mdx","version":"1.0.0-rc.4","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.0.0-rc.4","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"2f6bad2bc55651274c541c1fd5aa4c9fb5b6a3ab","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.0.0-rc.4.tgz","fileCount":8,"integrity":"sha512-oKFd8fOGle14H8eLyPcJHUswML+Au0nhr3nd/b8f91sb4bqdMeyTMYNOUi6WBmVxzBm9sYiC+UGd4WxlWu20yw==","signatures":[{"sig":"MEUCIQCdMLn9VdwH0UKJjXSLnhNCKaz1BHr5UWAwrxdnqk2DGAIgJD5xVOMh5DDBvgY2uYjl23x/jolkK6/FvtzF50L6Z74=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18654,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcr71FCRA9TVsSAnZWagAA6Z0P/RjlwadJJ0IjLvGc4G+h\nKiDlJWpK2gkOwehQbjMqE7nRlbp0tRoZkpD0VhBZz2nMTfX32l1RXZJIiR0K\n7VMQdPmwmkIJ4BBtDN9Tep49/P1l3z1TAKZ6LRM4Hj18GdhOywD8AQdU8gdx\ny/mYAiziI2VNOv1+DS0eRJuBVttPiZ/YjiytO2R8GHbouffwaJzHG8TB+Oom\nltsDViqch7EoYG2BVquw+s7bGE2X3ldJOWHC+N36ZPbujC3k+l8Ym1ZH3Mxn\nUwAa5itjmIddBJXYl79x+exhq2hmWqn3ibV60H8F6kSptVjnCDNyS5rJFHpm\ntmfs/wQuhqGtmB/W+wAbN25F4HsVzdlChX3gUVCNFQssgrdq5A+HizVmtJKH\n5htzFEeKzpucXKq4K0RsNPIs1syZs2o+f1w0w+SIpZcj0Mf/m5IW8Lrz/Ad2\ns3bSPkcqOToLOG4YceF69422qnu9z5ABqN7m8oGnXDgNsLzH4LSUmix48cqT\nTTbkiyaaCId4Twr67aC55UybHalODiIBxM2op452CK17hTFnyV493AOS87HS\nGke1JHzMegnHyFdfWR71j2hQLxpGVIMKp01rCe1ND2c2dZnYTRat0vsavE9/\npPNLKQQC2V2/YBfTZxjviDr56QeNvv7TqdK/rn6Pv1kXgyBd0PWdMkAmDBjE\n84I0\r\n=sZzu\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"11.6.0","dependencies":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","remark-mdx":"^1.0.0-rc.4","change-case":"^3.0.2","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@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","react":"^16.8.0","prettier":"^1.14.2","react-dom":"^16.8.0","@babel/core":"^7.0.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","@mdx-js/react":"^1.0.0-rc.4","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.0.0-rc.4_1555021124424_0.07437220395633903","host":"s3://npm-registry-packages"}},"1.0.0-ci.0":{"name":"@mdx-js/mdx","version":"1.0.0-ci.0","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.0.0-ci.0","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"6f1261e300a0cb06b955c2ced5ad90ccfb9eed2d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.0.0-ci.0.tgz","fileCount":8,"integrity":"sha512-+PyN+KRGEW6+uPy/b5xn7kLJMCXJvTz5PosI65v4Ys3wyByltawByOyEi+qLCuXaAKr7q6AyvV/Y0pSpIR75NQ==","signatures":[{"sig":"MEQCIBz1quvM3j2JrOr2wrMWc25PBy6rCg9ms0kVakmLz4TiAiBeMrL1wumBjV/1+3+QVt7XdiZqk87cGazgNLKox3ZZhg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18696,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcr+YwCRA9TVsSAnZWagAAQlYP/0isBh7Ya2H+ruAquPLH\nXT37dKgh5niomB4tYySN9VIn3Y/3TUwiodsGMCDpkF5e6mapsIiMejBNJI0h\nnB/2L5+hGs+8T7BaD2eG+14tAxfyvC3B5O0FfaySmnaGgCyBJZuN32giusol\nYtyWGi3iRO7EmQEm5bD3N+XP4akOfzwWMPL9a4Rd5xWwyNXQO1Nc9gWJ/2Lq\noMp1gqkIImofqiVoDdNUeLsGCOxcO1rR5GL+65ZxPUzKrQxksXpKEmLHhbfq\nIaiI50yeMWrh2LrPvNvGnzjywPzX81ZvAs7VZsa5ZXoG0I/55kUSa2hi/E8h\n6PF7J2DQPQgYnHlLp/lFpx+ikOHKCaVzNblcD6w7lp5ilScu0GM/eHTSSNJz\nUrMqnY8g8UcWVFP48qOGueRKDDcwD2t6sdwF/MRhT3XWBdPRS7xbLXJ7Cn+X\nKq7TsFchrtCBkqoP/yrc5WGxcaJ90mWeBRQKwXmnxWhD+dDZAnrd//Z8S2Ih\nWgPRgqYxiCia6hiIeAy4Vk3TwP0Tp2jqzeubgHrvWiZ58lUrRU9ZiVdxNb/i\nlWIQRQL9870EKZHGIuCWrzMXVGC1VU6RBWipcJfNcqP+XqbNRws0KFujiHfg\nz3vUnDMt/ZSSRbG8rUmyqPpfqBxgeOAdaV43ANBKa93KwY97Vr9f3B74j2S7\nzi86\r\n=9+7n\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"a12a22a2f5d9b9c0180e9bb862ce2b576e58ed6d","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.13.2/node@v8.15.1+x64 (linux)","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"8.15.1","dependencies":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","remark-mdx":"^1.0.0-rc.5","change-case":"^3.0.2","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-syntax-object-rest-spread":"^7.2.0"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"jest":"^24.0.0","react":"^16.8.0","prettier":"^1.14.2","react-dom":"^16.8.0","@babel/core":"^7.0.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","@mdx-js/react":"^1.0.0-rc.5","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.0.0-ci.0_1555031599608_0.4156791284668646","host":"s3://npm-registry-packages"}},"1.0.1":{"name":"@mdx-js/mdx","version":"1.0.1","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.0.1","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"657f1ed8c6d1a2c75e3e4954024a279884c41692","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.0.1.tgz","fileCount":8,"integrity":"sha512-VL+j+ZEbRrVx51y/JrhbpsnuTAmJKjfSr05e/xBm0jQcfieqXeUvuLIaaxD46SqkDZviEJeWac7OCTfSl3pvGA==","signatures":[{"sig":"MEMCH3l8isKdP+bPp/YmUXuH0Q6Q8Myd+86SxvRNv/1F3kwCIF/Lkqcozd+IiINbUePCNwC8Df1+MXnE0IWI7M5LaAD9","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18673,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcr+sUCRA9TVsSAnZWagAAmUIP/0l46k2nvgslrw+zzw6q\nOVweDB7v1r+JiJiy3frAjPX/Evpft5uUNoQT7j1NrnhgwX0JoxXAUSqkoBzm\nepiVU2j6vTYC5Pv/a2gerM+s7G8QYdT6pUuVvnoWNDuohhti4bz8CfUutvel\naQ6wmqOk5pWvIrF40EkKWr7gdyQO11PvaUjSspNnPagJnnTI1DxsftEccwHe\n4cdnLmb6YdWc2KRMVu0BOy8AH0pJ1y+s/pKn6G791vxzJ9MMGAkcJ75a0aAJ\nGggSZL0R6K0na2gFrBJKhzwfzEnnp2NadzqsqsK5Atc1iswtahLVZY+zonJK\n+XLg5jE5w6nD1YT9oLwbstXhZld71K0pSeoLtcMkbtUbD0HF/UTiHfIx/PBz\nrNq0T3MvR4nI+ftEc7byFg0smlv2xk+9rOXYAWEnMkQNbV/QTcMqfXOKyxao\n1CgjgNI7soQNQuZ5KjbmLvAtk+3RYsshuxtWzOBQgARK3iHNYu4CoteJKmkY\n4SlGdrKXsSLadhCQbqDwHu36fL+QOSc+w68vjo781tYs0LMaSD5FMgCDtoir\nGawlLd50AD1rin5xz+HOuecoTpOsic8sQo3qMRO99/UFAXh8eq0lRMLefnkv\nJ9GH23T4UtVNN9ze15POkEnqNfDNcw/9NrV3b7SmJFJtcEgxvh8LetCHaT5U\nQepo\r\n=ZLOi\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"11.6.0","dependencies":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","remark-mdx":"^1.0.1","change-case":"^3.0.2","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-syntax-object-rest-spread":"^7.2.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.0.0","react":"^16.8.0","prettier":"^1.14.2","react-dom":"^16.8.0","@babel/core":"^7.0.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","@mdx-js/react":"^1.0.1","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.0.1_1555032852075_0.9705495002431155","host":"s3://npm-registry-packages"}},"1.0.2":{"name":"@mdx-js/mdx","version":"1.0.2","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.0.2","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"9d171d69b4a7c7115b02d1a61ffe347155a47351","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.0.2.tgz","fileCount":8,"integrity":"sha512-J+oshObzFo6OTOsG/7BhlaeBj9vomJWT18+JFnSKLpcuhUA3Ng7DVUM5e0c3GmIrgMuTv3WVTmRkc5+67Wk7MQ==","signatures":[{"sig":"MEQCICcQjf6dhKayeRJf8kr7MY/KmA69RJTNReKO03U9/gluAiAy863P8vLr9lXL6pe/IZ3oEfknt+Vxb2r+3n6+MsfqgA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18673,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcsDTsCRA9TVsSAnZWagAAES0P/R4EBz0xDkGxw7itsG51\n+cDaDWNmGoN6ZZG4abTWn/Om1XmfeIJJ/BTery1loXYdoTWOF70i5lTffUvE\nlm4w44qgeCQsuIkw37s+gdOBORUsettH69qf2c+uv3pxUO0sIJsaVX4imptZ\n40AixhvbSAOpnDTbD+AYPTYoTHl5yb1E1bdIV474EmaHyRkMYYxwGQ3SRwgi\nfmDa5eAuxTF2htrDTy1Y2gAZfbuIMmjZqwUMLuQE+MmK/dhQ462DhJAbk6Ge\nY++kxt31cMqO/r32rGUU8I+3xSeFFYvwcniaU3tRed/FKP11nvJgyoj1sQW/\nxLogq2leWNabMYrgYFf+6eXvSu1jN2p9fLyAz6DXZclK+7Lika7JHptjzKfU\ndstStY/Lv+tcluEXOMGbG6iDjDH+A1d2eu4nSL3KKjk9frNsiTO+oyUloVFh\nR6B3UTlFECWthN1XvVZS4V8sdgyXv1T/rFVVuGX0gL+SO3D2ejq41bwpUaPV\nSP/p8TERgm3yuNp7xlzd5BKlOnkAQvF5aOZ/dLXfnICABuTZ2X95AjMaRUeY\nbMc6sFsdFEUN8AWxUXR2pxBLp0MghEhVNKKtS1pcTFVv+2s9d7Xvh6wbkOfv\nD5jHbw0UjRDGkda/maxnZDegilcYVhttNUMfNX5y03bQUu/ImC0k+Hc7uBpy\nDlkN\r\n=XVRy\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"11.6.0","dependencies":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","remark-mdx":"^1.0.2","change-case":"^3.0.2","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-syntax-object-rest-spread":"^7.2.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.0.0","react":"^16.8.0","prettier":"^1.14.2","react-dom":"^16.8.0","@babel/core":"^7.0.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","@mdx-js/react":"^1.0.2","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.0.2_1555051755815_0.5186224582962322","host":"s3://npm-registry-packages"}},"1.0.3":{"name":"@mdx-js/mdx","version":"1.0.3","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.0.3","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"c1e72dabd1b18dc6eb04ce2b6c474feb71ab4baa","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.0.3.tgz","fileCount":8,"integrity":"sha512-byr0jq0M0kD+IdSEFxnzpKtuFLGkyP0gmf6SXwNPebg2LHkQjCRWXWutR6RTPrWXbvfgcjx8Rb7ESIohc91xPA==","signatures":[{"sig":"MEUCICGKLJxDRk54QoFNWhlPiK0P7A6CBgUjwgGiwFxetP63AiEAgE78PyXPH3MdOrAOcmZ7OjpIeJvCRq8aQhjwdso5Gl4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18687,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcsMFQCRA9TVsSAnZWagAAHf4QAJCLcc1vNArlcOASvvOj\ntXXCD+Ah55OsqOZk+xELRsQf/K8TsIJIlhlh2rsRf1FmdXzaN6pHA4rHjFSm\nlBewv+0Bzv25gn9fQWoBXY0C1lgGVRAm2Mk1Cy3baXvr5xWxHTE+kKgLnjBw\n9UlMD5aWEoY6I3vZce7myg5otrklRdWFz9lEkktr7UnXsuM27JQkH5mlFfWe\nEZ7YeaBT5j8BtEWYnScm9bwozllmyeVDjLpG+bJrRo+buD2H3aprr71FbKzt\nTDSi5QUdtrOOJ6fTxh8icv1c9ZEa90CGc17AUe6cn5q6BJTFmKhV1z9SI07d\njJWm8XD1EPOn80lfCEcq565M72K3xoyU9nIjZzILd1Ob9Cxj56j+XwCQDQr1\nhTi4TSW+oUsc3saLNHzURL+8+HSzRrgwijmOxqeBRHvhrl3xyxqqJE5ofdgU\nNc7J8GC77BEM6XrSDImzGUXnxk7eaHwoZMmMnWfunpSGAjqkwkDfR6Ke4N07\nj8I8mB/XfCx2WhLrv5jqiVKFuDiYTIza/KPrklKccDrxV8FKZfCwhk7HH8gz\n7n7i87g941L31zdwkoTpEu7T6/iKoiK0A05dJ0NSpzV2ixOOUh718S4IgTX3\nxMO2iYr21tpIW1ZPFreMu/LpXSQV9V5TaBKg49XYLGRSIJChJBItcQiunjT2\nFNRh\r\n=Yr8m\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"b3edb677985a96ebd40fdf49c174c5f4108e0248","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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"11.6.0","dependencies":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","remark-mdx":"^1.0.2","change-case":"^3.0.2","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-syntax-object-rest-spread":"^7.2.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.0.0","react":"^16.8.0","prettier":"^1.14.2","react-dom":"^16.8.0","@babel/core":"^7.0.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","@mdx-js/react":"^1.0.2","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.0.3_1555087694767_0.5851170937045185","host":"s3://npm-registry-packages"}},"1.0.3-ci.2":{"name":"@mdx-js/mdx","version":"1.0.3-ci.2","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.0.3-ci.2","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"52d67e9c7256f73275b91cc68c6d77e853d5394b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.0.3-ci.2.tgz","fileCount":8,"integrity":"sha512-ILRmUzPOSgSwcWJ02yYFsrXO9LAnrw4RVIpJxv9+TCXlIeG6QX2OqRwMnlFZpsVtQqTGms2QuyjCvhwqVWJe6w==","signatures":[{"sig":"MEYCIQCtnPH9AiIUaHvubmcmsfOWemaQsodH08FcVDF4kBHO7QIhAMTg/xSIGXHmkYW8W9ZogkA9lL5Bi/pbQnVbnc7tPH0j","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18700,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcsMHdCRA9TVsSAnZWagAA/9wP/0dqqrtjVBpB0AzVlf5l\nkWbaAAvx9nvMgcpVZ2nQhbgyr/czzdVpAw2sjEyuJ3vixYEIGpFQMpctiL0V\ndb+NuChnett8gPBSJX63IXavkssMmLW7LjWG+8O7Q6KvRUABCm5UAM1mBcNZ\npMj7ZpLruqdzJq2XwPr+lIMw9Jfp0FBf2ALE46dVZDMZKL+vr/kixmyAn/92\nVPTOQgnZpsdxJeQiFb9R4nE1J7KdH3+/LOKKHX1+S4Ga6K8yDisKDThDERT2\n5fB6D99y4C1vA59GO6VLRuiezPOsDhfWjJxp+wx0E6yEO0bYIiCGV5goog3x\nK3uleeZOdzTJpJ2z8NmRyvzaXyxhjG0nL31N+l19uRZxsZH2Ls/FuZJMEYLA\n8h2/QzRTw2Nr1p74P9/TmAmdrvJ3FCd83mEnsjFWOcZFVQtjgAZsoaa74rIx\nkIEKO7oCecMTdj5BLxuCIpFE4Sbyuz1kiMNBBUv6evJe13GwtlRfLZPPi8/2\nQ4SEITXPgiq2MazCMfKP+/MV69jQZUQqpvqQUi9eLuw+xA9eSXuLO8ytIsGt\nFH8vkJfHmOqpXXJkR1R2GOgyS3j/rm8IJy/pABRw8dKuhIMeZlgmdfidWrGu\n3yft34uaLI3k2q+lckJ/MRQeG40i7Rolx7lgiPzC5GNdrmwGp9oQ12QwDQ2m\n53uT\r\n=DQoe\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"c220f4c44f9b5bcfa88a0b91ad5968a2e4d1a50e","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.13.2/node@v8.15.1+x64 (linux)","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"8.15.1","dependencies":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","remark-mdx":"^1.0.2","change-case":"^3.0.2","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-syntax-object-rest-spread":"^7.2.0"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"jest":"^24.0.0","react":"^16.8.0","prettier":"^1.14.2","react-dom":"^16.8.0","@babel/core":"^7.0.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","@mdx-js/react":"^1.0.2","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.0.3-ci.2_1555087836947_0.37503481061294397","host":"s3://npm-registry-packages"}},"1.0.4-ci.0":{"name":"@mdx-js/mdx","version":"1.0.4-ci.0","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.0.4-ci.0","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"c50a3e810006ffb21c4d71e2af432a4d2a4925a8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.0.4-ci.0.tgz","fileCount":8,"integrity":"sha512-VX0/ys6uZu5OKKaEJz3zpwnPQjHfbbSXdy6mjNLDzEpx4QldM7a8RZT5pu2PKctOJAG+k4tbPp27+ORIVjwuuQ==","signatures":[{"sig":"MEYCIQC9RXaBnm+ZgsejbHsLc3a9GJWvQHfUd4KhUE7QF7eZrgIhAJh+2DJCkL9/6gH9Wp8y2Zjbw/B/9S1vbv7/9SkdTNCT","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18758,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcsNDCCRA9TVsSAnZWagAAavYP+wcYMhAqAf9/0GZw/4/o\nQFgT/6MtrgBqkq4ER1gmJCteNQRCbXNqZDVfeP+bPo07pV02rImxo/sQHsPP\nEZUpRqK31DqpLLYtatDZqojMNQqmfCjfTA1k2oRmc01AH0LAJaOPSFj6mhrJ\n3oLGR5u4VtFeGqOmNdX2ETg7cFjocXoUmRLB5A0voMH9+TIraSLxXAVjnKJQ\nYaXlDb3THrDfgzvBmQr6HsLlJeW4LKlxpiklRRbfJMIGg03wWrT1VferzeMA\naA503/C1Sm//7QU3YZGTMeYJIBLF3twD1pikAA4/FpcMimlXATxLVvkE9J05\nco/1FXDuevvAeIiFX+Jal0a+vP3VHTypGLTkwaWXYCOlFEjBCAqKHqUK66nR\nmVCIsGFbpl4w+9foOoMcTHXK8oQIeZMCsAPrbNC/jfIcnPJ99vnOw4wlLipU\nOD3/e9BKkm7lOJL4w4Tu4jlgSdiLemquvoTNmgjklkG+F5CgGTd4ZAvj4SXM\n2HVs5q8BA9K6qNjoPhBlLQfUr2PHc/shETxR5LUdB8m3KfS6ZrR2PCiO5dt5\nR6ZhxdAWaPfgxupEk73YX5rViiLiq+amxngNodTBTBfm/M8XNhgCzbM41zFi\nCxuhHYau2hsRpx2C+xTuW6tGZDnplDOw+2BRwB+OX7xfXuJNUANPha7a58SX\nW46P\r\n=7SxA\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"5ef6393a9ec3a563e1add7fbf68910cdebc0d45f","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.13.2/node@v11.14.0+x64 (linux)","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"11.14.0","dependencies":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","remark-mdx":"^1.0.2","change-case":"^3.0.2","lodash.uniq":"^4.5.0","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-syntax-object-rest-spread":"^7.2.0"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"jest":"^24.0.0","react":"^16.8.0","prettier":"^1.14.2","react-dom":"^16.8.0","@babel/core":"^7.0.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","@mdx-js/react":"^1.0.2","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.0.4-ci.0_1555091649304_0.7922955158596798","host":"s3://npm-registry-packages"}},"1.0.4":{"name":"@mdx-js/mdx","version":"1.0.4","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.0.4","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"c3069c0a1000729a19dd0a56ffee80c7a7c2e7c5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.0.4.tgz","fileCount":8,"integrity":"sha512-jibL8e4J0+UmEPjZtgk5maaIcdPGqLmtCy79Floaj76TpBuf3at6JFn/4efJpMtL8U4ILgoSuwPs6+cUdsPttA==","signatures":[{"sig":"MEUCIQDflmindAfxy42KUDNysm2oGEhbkymnm+up1k9Z8faW+wIgAU184SI2QsHPwMkCYUlSPKg2PR7pk7k53Bb13vniNeU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18745,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcsNEtCRA9TVsSAnZWagAAKrAP/2P4GCw5tKMxDS+OTXcY\njSc1g2Yv3HU6qBHw8xm/aC1xaX9GocATat+32rbbUUzyHI7KsywvUtub0ofO\nVCtA1gn1fR+W+upFidATirIbNe+H5Dv+4tNmBDrjFxQf2cNrO0b43a/i85QD\nirCxbTPXZ+kQSZaJO023njn8qYgWQ3XQxCBz2XMguQKIPqv8TswJPp0T47RP\nHDrN000Y0K+dCRoPbzP2llFjsRWV2E6XHyDtUliAK7jJ8r755GtUdzsNlYWu\nCeJ36YLZCdKO3xjMA6qS9yA7CdKl5uONiDr2Dx9lljy2Wb30PezaoWPqRzEm\nDOf9az142WoXyZSbW4h066aZ3Nai02DuAtnXRx5yhRhutyuqW8SogrbqI/C6\nC68GpN+0Pk4ZvA22n8NVr/7wVEovC3kGpowyLnktpx3OfT9XxrO/WgcHFPtn\n3/zipFYBmnT+E8Cu6D2J5QOtnyGHMUaKnPNRGYDyHUZdVk4aRDQmAfYfkZVA\nbVV7zoMalHlfY2CCVaZ9nK11XPHY2/qFgVs9yAsOhV+1HjtmRjEP853fExLg\n12xHR/WIc1OyRpqwv/gg4sgsKOWaaglHuHblBm6+/HQyo7v7DjgcufsJZEnV\n5Cw5QDk5jup58tDfmFGCWlemC03VfqfUGNBRZm1+FLVgbhe75Mrx5tz6PPI0\nVcgz\r\n=5+GB\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"b0a0f6b2b9d2573cb84a6a28df7f0951ca74e20d","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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"11.6.0","dependencies":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","remark-mdx":"^1.0.2","change-case":"^3.0.2","lodash.uniq":"^4.5.0","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-syntax-object-rest-spread":"^7.2.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.0.0","react":"^16.8.0","prettier":"^1.14.2","react-dom":"^16.8.0","@babel/core":"^7.0.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","@mdx-js/react":"^1.0.2","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.0.4_1555091756918_0.009445824999710917","host":"s3://npm-registry-packages"}},"1.0.5":{"name":"@mdx-js/mdx","version":"1.0.5","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.0.5","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"380eb24d04c99f608b82cf4f4ef6bddca3342b45","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.0.5.tgz","fileCount":8,"integrity":"sha512-vyqW9GDixcUhEKxuXzIMHpKFbKxc8HzJQQ86Piy5w2QFUSEedjZ2U1gqjkUWec3zUeD0PBBpCig3BH249CMwtw==","signatures":[{"sig":"MEUCIGhtnEdEOxdyS8KebIAB1RZ5neDBEhSfSv9bJWi/Owp9AiEAihyUbOW3zwfYn0VhKiTEKg3RYKVDL9EWiWr5Uvtc1c8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18839,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJctJepCRA9TVsSAnZWagAATUQP/j4raNYP+4e0c/cGjJVG\n5bpSmMS1yEXIsyRjNHWLFEqa4YjOo3QLsKYIqKoQxwpJKgPx6kG0OOnY5aNf\nBYiP8KH6Mmbz8wwVPEFrVpNo3WcnzCYf092plvnZUL+RDiWVrtxwUjmPa2p9\nQUuKG1umtiYNPhI2Z+FNTHAFjezwLZO9sFxu0Ve12fhwHqLEbOFk7l4LZ9m6\n7BDSOftAhBG5pcBKTF7DAaNIHAleozrBnZtE+g/plfaYdJ48TCupAcF6lHRb\nn0oBQrff0AYRm1r2Ke8I+1UEsQC167yv0PyB0njoksw+jMW4S7cfxUOglcGI\n1nCA/6E/TBDfomywuf0pYFEP3yRdJG/HC1xY+Uc6bjjo00L8ouZ9RK0PyHk8\nOYFjHPeWQ9ys2foaoT57mbamsyBitbQqRbLIx5EwIYE6dazpCubw5HjARBFT\nUpyLG6OeP72Ar8Rj6CrTUNSw0g1/OEAJkKMVrFvP5x62MP9L07jQxfl/+U+Z\neiunl0nSfXAV7jUX3KhTYRWiMVir4m1CN9Op74qK6AI0MILqh5g6VneuGg5A\nNThnd1ndeDlcjzZmc/jdyp2lA61LsG+Ch8KnpS3TnnBy9nsXjLVJTHiHNQE2\nboc+a/1TPBP43F1vU1YVLHQGhJXl7QchX3FAdcSCf8Ht24FxM3UjKukt7RG6\nOG+U\r\n=w8nQ\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"5df3bd425b63a5f83da0ca4fef923ad5dccdca2a","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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"11.6.0","dependencies":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","remark-mdx":"^1.0.2","change-case":"^3.0.2","lodash.uniq":"^4.5.0","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-syntax-object-rest-spread":"^7.2.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.0.0","react":"^16.8.0","prettier":"^1.14.2","react-dom":"^16.8.0","@babel/core":"^7.0.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","@mdx-js/react":"^1.0.2","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.0.5_1555339175774_0.5384468629250518","host":"s3://npm-registry-packages"}},"1.0.5-ci.0":{"name":"@mdx-js/mdx","version":"1.0.5-ci.0","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.0.5-ci.0","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"9f81c5f53ac3b07fcebc0ed763673017154275df","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.0.5-ci.0.tgz","fileCount":8,"integrity":"sha512-QKFMxY8TkPV7vW7bZ2UuJAPSZ5pSbPisZZVF5a7DiQruigkhknAEh4j3qQwToic5mvFQRiP54x62gJHIWMugfA==","signatures":[{"sig":"MEQCIBnMQ/w7NuVPUAsLj8KnaMB1F/JRgPiHVhhAD94He3wOAiAHspi3BKPwdncUqL/hOtW9n36bYnhHAF2f9oV90zVJLg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18852,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJctJhYCRA9TVsSAnZWagAA8KgQAJnxutHHse/GHBgBLe7Q\nb53585WRhWbETAm6cOTJChsOwAOVIxNiQqYaghK8oB6Csckm1E7W5Agy7NgC\nTbJBnliN7vJk+QTFx7xczIi48zkhpVPsxQ+5lxZMEFdW3heeMaQncNSpNp28\nLt4GPPLwJD+ThCohwnzp57MVlVwmS88pB2T0IMqurO1pb1CtY2QuLOT/kSaw\n1y0hTxDe9mhxo0kFvn49qVvhHMPxpJMM7tRiaHOzedhZgKqxuXoFF2PAphLz\nEPW5fP5LZAzXLkZahJvmR0dX3gQmCZwe0ARMyK4Na1Dztw7aMOmNrOkFmIaA\n3OqH/ry6artUgyc5t3cwdnjYWbuJEocN+3xfY+dKzVHIW5cOj02cBg187UrE\nLcn/zDdaE0Ad/tnhmgrJ9ZnwSvNoiBwyHpIs0LFgiS3FZIrT7lRxY0TuHGpa\n+u5/QUgXaQpEx1rn23nY97Nd/NxcyhyW/oDZq0zde3i4a+qFTvhVmU6L/nwp\n77AtaTd9Anje71zlMs1GDUjALSlrbbIIkshd/niH49jZUtTtDuI9n+nYdGkK\nvt3JGNLfd+IMaXba7AxQrUDm4TZttTQKzyjYLVs3Or6jZkyOJwRm38GJXjxl\nTMUQLgvsFi1EH0B3+C82RVKmaBwM8OfRtx7qY85RIc4tpYrj0DVM+GyAS4hv\nItpZ\r\n=Hi2X\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"5259a47066d63a7bcbdb8ed2b7d3a9c7cf5ea887","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.13.2/node@v11.14.0+x64 (linux)","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"11.14.0","dependencies":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","remark-mdx":"^1.0.2","change-case":"^3.0.2","lodash.uniq":"^4.5.0","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-syntax-object-rest-spread":"^7.2.0"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"jest":"^24.0.0","react":"^16.8.0","prettier":"^1.14.2","react-dom":"^16.8.0","@babel/core":"^7.0.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","@mdx-js/react":"^1.0.2","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.0.5-ci.0_1555339351855_0.9160854089253225","host":"s3://npm-registry-packages"}},"1.0.6":{"name":"@mdx-js/mdx","version":"1.0.6","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.0.6","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"95edb662a637e8325e80e9a21cb686277a4d35de","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.0.6.tgz","fileCount":8,"integrity":"sha512-cB+/iwMgv8vPytc+R1FnE58Cj3tWbbx+3q9J+diBAFTQOPOLL8/ult4cF8U2O4SwNjpHRRaDiSyr/+JdeQH5kg==","signatures":[{"sig":"MEUCIQD/XGJ/cbvNuqaimj1Q+NHcTw0mECaFa38y9bxWb9C15gIgRw3wZTmcEw8eXAywudtzpxrvamUkV7JoSDnLL7NfVns=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18839,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcthiCCRA9TVsSAnZWagAA4q4P/0Ob80LpHXUXqvcaDy5D\nFN2dQit+axVH6hrErrtUXWVhfyKhk62zaMyxz3E0XaIn2wGdQ1XaZ0pbe4HQ\nLwQrT/O7GncHCrtup13XgpCBhIuFM1JQmw4seTC/Yy6MhqZ3jygcdpk1iRsz\n0K8sxQ3icHk5mfeKUiZDMmB4Z1jAZsVTmae3kTN1K/7tny8zhwGqg3Fg/UxD\nSzjq/npvw3XDGqQtzTJkn7nMy5NYrRxGpzEsG48mb9zo4hDmXgb+84e6kse+\nnBjRTsPimUh68h89+812MKn4PE8wZkfqfIXktT4ehVT/TVXNwWxDIlv0FHMw\n1JqVKWSbXLUq5pdHCQPyvBE85tGW9gzmoz6p6dPh+YW0xBoakikUzxi6dTLT\nQXmibElk+shmtKMpWGYWuNHPpVJxkaea7Y5dAOXxHEFH6vxLZ/eQJEcakQGw\ngPbfKntbF65FuddAEQZBTTpXISIumAXJIkPuzFz8rrd50XOFG8zWkXH+4oUM\ngOC38LE+8S8r1GrT4vYe0acVaXH/69ZNN0uTXiKBV1NIiNxHRcrtgtogx6vU\nQXFCtAAGfrPtlKzoCdmU4B7c+PuFqCI+79U71tb2oDuvRg7KyITfMWl0L4W+\nDO+ISnBm+WMcIC1fhViyccjF7CiRx28auoItlEkAtts2gn4roTXEb04ynkB7\n5BY+\r\n=oQdY\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"fffa499796b7d1ee8f571d7f0fa48d7f3833807d","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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"11.6.0","dependencies":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","remark-mdx":"^1.0.2","change-case":"^3.0.2","lodash.uniq":"^4.5.0","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-syntax-object-rest-spread":"^7.2.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.0.0","react":"^16.8.0","prettier":"^1.14.2","react-dom":"^16.8.0","@babel/core":"^7.0.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","@mdx-js/react":"^1.0.6","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.0.6_1555437697944_0.5937835801600413","host":"s3://npm-registry-packages"}},"1.0.7":{"name":"@mdx-js/mdx","version":"1.0.7","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.0.7","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"0065134970daea7094b0e896282a07f9c0ff6726","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.0.7.tgz","fileCount":8,"integrity":"sha512-VOxe1uCWN1yMLX8R9a0I2COuadH0V61zaX5UcnGz+pML5b3SAHz1OjD6vEMC+ID3SeL4cKdomwMF+JT4lekWyw==","signatures":[{"sig":"MEYCIQCRraMcIvI01ivxo9CGdHw20CdWR/2d1Ee5XcAhAyarsQIhAMHD64KpU+tNVkFk7o1WOpNoBHg4KyjPLs8ENeLNE3Q2","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18843,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcti+9CRA9TVsSAnZWagAAqiEP/1FHSUquQg0VgU/dKIS6\nPZO1Fbm0JeXScmnE5iTWOAWV/zBAQadR+4/7nf8GYLoedVks4yhmZgkZlt4p\nwjQ5lMJpIZjL5PiX6yeF5y40uQO9jMF7p3HzGUv+ofRvveSgvHJfg2+MxbPy\ncnruUroqZy02T4chpAs7qRls+UmYs0EPwFcvQCL3F4CLJHP3tozfT/g/Y2L4\neBeW+HzxowiAEeRsWom2dw8VAJKJ3mzyz6yq8ea50ymXhxRJjuG4AdJbZvnr\nVkym0Oi6ssmbiPnX5wzFE9v8QBki0DXH04y8ZsJps+Jjb1ehy2kgBqywMYLi\nF5nsmAbipYPGo2IbDTYDRGsv06+kZh301WQ77snPcKG1/YGt4gSgpSX77lax\nC/B76oNpduhB6a++ozvbuFn3U70olQhkD+ZZtYSG4A22VuLjkrKXn6oRP9Jo\nP3UrywC2R0+h9GUlXegf1Z2oIwEHLJpAcKaTsmD8yrK1ce5mHnfjSWeCuuvv\nSFX1ZZHghpeRujTU8BYiZEiML1OhKQ1l2SnDK/4Jg3spvcxA1uimQseOtRjI\nnS/xapHJI76qtu42dbjnsGjLbTiQ/rb55TLAiWsAj2gyIZNLo915U8H9k85W\nsml+lZI5pB61G0dwUZNqAjS1PR6sv1Vmo1quIOzVFzr8X279/fwPid4IyPWl\n2YEp\r\n=t+8U\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"70fab878ca7f415f3dc4e5854a8b7cd7e697d42b","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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"11.6.0","dependencies":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","remark-mdx":"^1.0.2","change-case":"^3.0.2","lodash.uniq":"^4.5.0","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-syntax-object-rest-spread":"^7.2.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.0.0","react":"^16.8.0","prettier":"^1.14.2","react-dom":"^16.8.0","@babel/core":"^7.0.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","@mdx-js/react":"^1.0.6","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.0.7_1555443645246_0.701041626438393","host":"s3://npm-registry-packages"}},"1.0.8":{"name":"@mdx-js/mdx","version":"1.0.8","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.0.8","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"a27c83f02289a3016b625d272fb3e7fd5894e385","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.0.8.tgz","fileCount":8,"integrity":"sha512-C52DgZnTx97zNIJkmprIqc3cp/VBB8gu/3hoey87ryRr8hMhNazWDHF5Unuo9izoqfybcdvUXxZzm+zvif9cBQ==","signatures":[{"sig":"MEYCIQCoKI9sZyXmqAvo6PwXUVl1g6VTAXhqPaDSRYYD56C89QIhAJ2cwjVWLHaLpYef0lTOdYBrxutKR43tKcxAwVd82ZVY","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18843,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJctjf6CRA9TVsSAnZWagAAIJAQAIEXEPNR7Ab7U3yhw6e2\n6YZIcfiIn9w9DNvuXw+FNJ7ok9/keDUDwzGELfUibCMuture96EnHROsca/x\nAa2LkmJlr9lew4TvqtrrKzLHkf0TDd7crcsACU/PrkiSE7FVGeso2lfXpA4E\nc6eE32M3NndvqSNKxoa0PkrZZIHuiVLQKbQwiknX9hXBeqyXE0yBqwTSIhzh\nO+fCZTMWZNMj+55d8N4jl39Jb1WhlUVAYYB6KLso6xsBIkzaQzkaiCyFX4/m\ntRDXvZGWE20+x2bu/qNR7/Kzg6weYGbl9O6qppSd11HC84vqXoggweizDgdr\n8WVs8sdzU6PLGmMnr83I7ji7aSuSzMYLNEhp+A+Uoj5KS1oZUHpk11rXmRKP\nGff+gaE4NvFIgmlhaInTUQYrXgf+R7iVJli6sPzwPjRL3b9pNIv0DZck93PF\nsKNLPsTSqx0kgu6wlcEvd/BnDqc7oq369Flsv8ew6FtGS5+YzbC3CdA1GJpV\ncfMwESFjgc9DINurD9+MEIZ1tRmMT3HqCRaqcHvhOxdawPcwFTz1Jh+8u8Zh\nLbvTu04e8keNLInAl57hSmfy0yz6tEP1385QJH1o5TaJzUuY90DunxfNhAor\nMhl13qrdIvzlRLsEiJLc9zhgmFs29KWmyLUaClRJtDtbXUHAVsvFSCJg1hGi\nAuj2\r\n=BZwp\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"11.6.0","dependencies":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","remark-mdx":"^1.0.8","change-case":"^3.0.2","lodash.uniq":"^4.5.0","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-syntax-object-rest-spread":"^7.2.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.0.0","react":"^16.8.0","prettier":"^1.14.2","react-dom":"^16.8.0","@babel/core":"^7.0.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","@mdx-js/react":"^1.0.6","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.0.8_1555445754139_0.3331863251961982","host":"s3://npm-registry-packages"}},"1.0.9":{"name":"@mdx-js/mdx","version":"1.0.9","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.0.9","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"6744ac5c03acd7e341ac47d2ee7e5246450d50cb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.0.9.tgz","fileCount":8,"integrity":"sha512-ct9k4wCOO0zhzr2fsw9SIGQlQSdOZ4SKNHhdsYO7yLxa7blQnL9q4qXU37m71XlfMatLUok8gNNR/zoEElcejw==","signatures":[{"sig":"MEQCIDRgJK4DCr4Ng/yBAhP/BPJZEcaXZJ54iJp5+uZbGIckAiBxZ9SWKQaaPfMKAH0UtN0TOORUqQI9twoMa4yC5AcYYg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19023,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJctkFaCRA9TVsSAnZWagAAZ9MQAIwDW4uou9QcGNy+zT5h\nT7SXsUJr3MYmmZ166ucMhWDvZ8RCmX59VcH9+9Wn7d0EKBTw1iq7LfRp2yWn\nsWeRsCoyGJsDtvDIKxmsXaA2poL4m2jCqjO252Qd1v7Oqq4NTPHxaYAIVlhU\ncGcNtwTnHCD/tLn5TBbsbbjAk/yBLehztM+UF6cjn91wdqro5rDBg59qlCXO\nVf7XISbVSZFQSxhMfxb2WrwC5a6Xg9dvAiu0W3wynLRWiCIMLC2slsFyZWCQ\nMmYZNxGkfExjImkbX70iqPlVz0UEchVzt7KCL0ujhzEBvcMDM7iiOEeV3QLp\nudOtDtHxZVACQVOkqX4EWurF2XHmF0pBtRq+pPLKYQohpYzZkbQfejkB63pz\nmfp5unXO5w5LZXi1r14eLW6yzlxxH/9n/VYA+c23qQGDMIeBMP2NXe5c084F\nyUE1usUMJMJX/LEast5FqcNEuLv6uBpj/YnV47c2zis8WPKrfwnAOgJU2zG1\nKZkXYpPk00Yikbs0GS31wTRTmIdOw8bqLIoegTDFQl/82rfGSAkghGQWMDJ9\nlOlvRvMPHo1VbbTIy42XwZBW+qiNtSpgeMudgfByzEK/GOr1kuGOlXAM42K/\n7irjCTeBmSo9q+Fx0H3E8xOswOdi650pAcXvuEk3Z+u+qm1Qvcv95CnLGV1w\n9lcp\r\n=wQ+D\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"2498a58ec3093cc5a8ab45874cb9b36c987e322d","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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"11.6.0","dependencies":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","remark-mdx":"^1.0.8","change-case":"^3.0.2","lodash.uniq":"^4.5.0","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-syntax-object-rest-spread":"^7.2.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.0.0","react":"^16.8.0","prettier":"^1.14.2","react-dom":"^16.8.0","@babel/core":"^7.0.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","@mdx-js/react":"^1.0.6","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.0.9_1555448153478_0.7917551542725485","host":"s3://npm-registry-packages"}},"1.0.10":{"name":"@mdx-js/mdx","version":"1.0.10","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.0.10","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"9622a188c5d9dc29c96c14bea963d2e326bc8789","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.0.10.tgz","fileCount":8,"integrity":"sha512-CnDSBx9epb0r1Cpzbw7btn0jfxM+cL66TKxRAEuLAqNJHYtTCK31gvlZ6oWjGgxHoQCBGeYUuIxUCbytyDgHlw==","signatures":[{"sig":"MEUCIQCy3/GmzC53HnL7+uBy2R1r+v8NpYLLrU3KjKiU5Gio8gIgUZAwXiIZc0R5Lfc9K3pN2hZ96QROYhZC5JxCW4eb3+Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19091,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJctkUmCRA9TVsSAnZWagAAYVAP/20MN3kJQhHzMcWpT0pU\no8DcHlk4DB0Alyl3hr5Q5AQYNB/iL6JL6I504dvsVJ89z5LQCjocf8bqpVch\nsCk/IMu+hP5Pkzvws72f4M6aqAnbonGSRtxYa7NceLZsEx4E0jA5GcAfo0P5\nI331bWCpjBuHNQX28/i0jnHImBniTpcqHMmRKZ+jNcf6VFmJ8nX16MyT1OEg\nZS809ZNSQvVTXtHMm0fmn6TuYcUEUHmiE1pR6E875yT/A+lG1CGaRjSZYY2M\nAnD/qMI2w7aqbSZVrad1lM1PiYQm1dyLwbR6N9nfswTMeHSGxG8aTCt0KN0X\nPeVwKFA8a0G20M8J4NJxdUOipI0MxQpzaaA3QsrCKW1GWYquv9xEwpcgAkY8\nA5JUghFS0OMYFdkzQa90H5fwsCBjp4IVFPA+KaU4RaqylcoWmKxtgb6e+Q/R\ne2cLvmoCGLUM5mIwM23UrrEN6AZ+VDK0JmMCttF9ArLeRX0lixkuv0542LZP\nykUrpBYPMh9LQn6F8xwLvuj3cgkJdJFKKBEmxATg+vLooMsW3qtZVpNoQZwR\nu3wDbZdkDh7n5eQEKVkboHV9k9mLMwBYtVLnLWf9g9POrXbtcIwwSC5OEuIH\nhtNd+Zv6wv7fNg64IrHXy1oem63sOCfaC9oY23/qF+PF3o3H3I5xSTEuF5DJ\nIlQJ\r\n=jfgk\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"992438ef6fbf03b5cdb7edd6a6ac4bbf8854a924","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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"11.6.0","dependencies":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","remark-mdx":"^1.0.8","change-case":"^3.0.2","lodash.uniq":"^4.5.0","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-syntax-object-rest-spread":"^7.2.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.0.0","react":"^16.8.0","prettier":"^1.14.2","react-dom":"^16.8.0","@babel/core":"^7.0.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","@mdx-js/react":"^1.0.6","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.0.10_1555449125784_0.5448586234021229","host":"s3://npm-registry-packages"}},"1.0.14":{"name":"@mdx-js/mdx","version":"1.0.14","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.0.14","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"f27d51cc0919c2d2be9681fb7689eb8a5a3ea1cd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.0.14.tgz","fileCount":8,"integrity":"sha512-x0V06637Ei3i/ZsagaulupSXPcwmMQC11JzKTTlITszOsLKciDleySbB51Y8WGqEYx1km7WSFacVQcQkj6ONSw==","signatures":[{"sig":"MEYCIQCHpeK9vbf6ra9yUkZzNfUDD/V5I00v0NO8ZF0fTmtrOAIhALgPGA+mQmSEUZi4LH8Ee1dZvu+M0UqvBZ+0CyAl2i33","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19133,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcvcVxCRA9TVsSAnZWagAASVIP/3I8bsCLIuDEIIiocBte\nyjMkQz8W+lQyuoQHwj8fHvRrvgLlif1Qro91TlYxqfpu0wGGEw0DvH4pvpkV\nyFEM7y9jnitHyHLAiF4/IHV5kx+wKQh+VXw3XmRR+wqv2BFi/ct0iALwc8nx\nBP62Qkswb5zFPYQvugE2AtatARurjvSF/E3X8e6z7CLoNMolS1DK44IXyuM2\n3P4pyhd/DB9zA3CJiHPzoe+F5lErXbGxS1874bcJ2rSR/JNQCc73DryYwVRv\nFcq5vXTf1mZyKcX/egsj+MvfmdvJqntVmwKgqIavSO5THfB1kg7NcuNtOQN/\n4dAOT6dOb5VKYwIkJlRtqeY17wbW73tl+DJlIXv6U5DVwtHqpBKiQt+r7qoN\n4OiKLjibPIUvTfBZ5UNi5/ZzVqlGrtMXwyvfALUemqWn9+BRpmnecdfKc4i4\ndVB1a/R309fMJ7fpEcab4/6ccugffSoxk9zXiNNwzy4Oz1qx/YBqk0OH8a2M\nKboGAitABrlpS66woNy6bZm7+PpQEbVQd4ENZYzdnClzW13HzHXQSA0p21OA\n6j+eoTEV8dckr1N2M/EzpND8nFfJeZ3rmBiwXeNqvs9DuZsQImDTIyS87mFr\nzdw1YU3ONykyTcO9CezRt7ED1aXHGqyAnSGHGQ2DP7HYc3RAhovEyeUYU4tC\nacK8\r\n=hSnT\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"11.14.0","dependencies":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","remark-mdx":"^1.0.14","change-case":"^3.0.2","lodash.uniq":"^4.5.0","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-syntax-object-rest-spread":"^7.2.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.0.0","react":"^16.8.0","prettier":"^1.14.2","react-dom":"^16.8.0","@babel/core":"^7.0.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","@mdx-js/react":"^1.0.6","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.0.14_1555940721193_0.5922135471583267","host":"s3://npm-registry-packages"}},"1.0.15":{"name":"@mdx-js/mdx","version":"1.0.15","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.0.15","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"a78c084f73203e6062797ca2337de133f2f3ec29","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.0.15.tgz","fileCount":8,"integrity":"sha512-7lbd2RS0s5TJvytPTbJ0YQqIkJokmggcla3hdOYUHJq2O6eG/IW6qNwf21IWEwNzRbI8IbWM6FflKEopYAPL+w==","signatures":[{"sig":"MEUCIQDzB5a5sQ+g9WvXs1dXlzOtZk1jakkhAw+4g/ysalaNCAIgXaCJNZkYJkBxUUX3D0AwW0tevcOYIeU5mJYcN5C6r1k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19135,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcwcqgCRA9TVsSAnZWagAAJoYP/i0W7jVNE+Ay+yQ+bkge\nnm1lW/IRBG91s9P5w82OE0Xt/xkscNy2Ub2z0YLpG3tyoQfG+SV8O2QPGUIh\nme3HDjLOPWp3f+ry9DwBMTsbOcMVBhysopf2sbBLCTue4zRoZ9rrfSHJcWSW\nD/GNIPNN9SpkDVq/McTUWjQQR9OmvjzxqFwjHD6G4p9oHO4Ra7rhwYeVHE+1\nWha7G4vniilkq5l+5Blnl2ogqND2ls/diJdwTghidEVCEj3QPVXWthP6WbFJ\nTWiPmVMDpVKVEVBt1+5PzeVU8mVaZ/fYA8egIg8deRTwdlOdhwNZb8RecIix\nsizYgeUx0kDvCJyxF290/PiZuirLSjGOZvNypLbe1d8DuXzhH+BOiCQoWDZF\naDw5keByzWTRZ+LQ0t6wzqoqWUmvbtN+7WNaQ8Ao9uJLJG/Jola1wvGQ9AYL\nWA5AFn2qhTsucYkhZcZWcWK7PDQUvOreXALwYmT++oMopH+LBZWqooh6SMY7\niFC8Ks2RYpRuSEPutxkc2ZmYzbwuGwL1Bo6phjNXMIuiBd8m8VR2xkD1EL6C\n+Ab0oBUsOG5PAXv52BAw/kB38nY8T2xZvIjL8Honyz8YiWuH9RKBUQrGDCoQ\nZHEvxN3yDO0lBOs9q2SX0sUcpSDwyNSEMb9pJpXLVm/H+h16Bhk+Y2CKtoVB\nyZsV\r\n=+2f6\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"11.14.0","dependencies":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","remark-mdx":"^1.0.15","change-case":"^3.0.2","lodash.uniq":"^4.5.0","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-syntax-object-rest-spread":"^7.2.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.0.0","react":"^16.8.0","prettier":"^1.14.2","react-dom":"^16.8.0","@babel/core":"^7.0.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","@mdx-js/react":"^1.0.15","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.0.15_1556204191486_0.07742579619374412","host":"s3://npm-registry-packages"}},"1.0.16-ci.0":{"name":"@mdx-js/mdx","version":"1.0.16-ci.0","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.0.16-ci.0","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"e25db2290aef147d0034a3683debbdf61c2b0521","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.0.16-ci.0.tgz","fileCount":8,"integrity":"sha512-eRJO71mQfkiL2ozLIpeJrRwt2lxcJvA7Bz9OoIxRrv+/wZvlrRhFZRtJFHGYhc66ZvYQKs4hkCRm8GcvC5vmxg==","signatures":[{"sig":"MEUCIQD5f2lRMRLBVUH3SecvK+auMOhr6PK95ijztVzk+VOFgQIgOwLDnHs3zvMOjxYcsq8MlvGy2e+c89QpG208MPtgFPM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19161,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcwgyMCRA9TVsSAnZWagAAHdkP+gKaICuv6XNFWnB4jJi2\nQRe9o9QZs1Yx1kkewNDUx7H3vQX1ik59+m985K0OfZX1xD8CqieD0xX+AaRL\nL475gohxGyZh76mPIoLZFz4p4PB83OPygZCqveXtbex5Khv8/3GBZmGyOciR\n4kNjR97PvzV1FMW7VwfsfszV2ZZ76tnXopVFyYFKnJefaH4GOFhsTw3xp3yz\nI9uK4ZXslFw7O3XhlpJZJLjcOkGFiMCksaPV/O0LIIo1CQtuYj+O71B0sN0m\nAxINm1ulj9SkExlI4iLsMsyZSgVe1y9sbR0BCAvEMjyWC8YIMmRTmYoAHjA+\njfMuMeB9h8loeEJI0An+1qaua0X2k3AFk19s8gz9n+Ci1ckQGkHROljXG1GG\noVYe4NXyDNDMhDrsSO2LMt5XxlXsZzKc/7rFoJATRfu+6tnYwDyMwg1TysPK\nMN1blzijTk/8h65wGlWmtgM6SHRSkPacRKccmjYU1DNhcRS514soPWCghDU1\nqC4Yd4e2Rghmt0w9ALmao234D4FcdDQIW3kIAcbc3ldLvQ4OgCyiuTqIBXK1\n2FmLQ/FHy6oJGtSHETthDEg47atlQFAyPqc6RR3m+wUzyuxTm39y1hB5R8EM\nHBeLzkPVX28ydKS1TMD1d9CixRQ6/tFraqfe0WAk1FlDS+vSl1sgGh7GcIsl\nWYWx\r\n=oy4+\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"65e58e1a10375bf88475cdcdc30c245217893009","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.13.3/node@v10.15.3+x64 (linux)","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"10.15.3","dependencies":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","remark-mdx":"^1.0.15","change-case":"^3.0.2","lodash.uniq":"^4.5.0","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-syntax-object-rest-spread":"^7.2.0"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"jest":"^24.0.0","react":"^16.8.0","prettier":"^1.14.2","react-dom":"^16.8.0","@babel/core":"^7.0.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","@mdx-js/react":"^1.0.16-ci.0+65e58e1","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.0.16-ci.0_1556221067413_0.6362066166649467","host":"s3://npm-registry-packages"}},"1.0.16":{"name":"@mdx-js/mdx","version":"1.0.16","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.0.16","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"cfeca91a70b37bc5bfcf6f8e94dbf16048f1531e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.0.16.tgz","fileCount":8,"integrity":"sha512-d4YD7utmW850UVQdb4GjD6MRnRlB5NspheS6x48PiewuW7DuoNPTEnQ+ZjJYzZg5dWRy52yWtaZvDj39a7DMgg==","signatures":[{"sig":"MEUCIQDJyYj2DGpw2ZSebzGtBvcOv7+KatwsMYIq4S2fj97qNgIge7ulJwGuJuYsKgbW+ZxnPvTbdcymBsM6+2rxcDLk4R8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19135,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcycqmCRA9TVsSAnZWagAAjIMP/iRLyQAnB6h5PxTJyVDL\n710KwcLlN5qLnUTZ8UmrnmroW5eGyfnePyxgHuX0KvS/hXEEAqNx/mNBOx6n\nzRJfijczETNUsqjHJtax5Qzqp9/8W0YGfAqeDwHHyb92/OGkePoKLwcxXCS2\n6VEfrirQdPBcp5cGYCb248dt3pvoaxL5jDCP7SbpaBxPY6aDRfJ2ucHHA5B0\nK+zJomGZRXjfcWMj7YQWcjUFHfnYmXeBS8WdF9eqbjfiQltsEQiCET5QAFbT\nvlWPx08wzZJ1GuRNb9906LsHfvcr7YHHXDhfa84hEzV7v1d1I6SdMrAlR29v\nQGQK6SE+mnwQkGyf2KNs1YS72SS7EDYhkNc60z7zEt2x81GjCEb3qz0dVapN\nOMwDkmF+7LzOuRGJ+lftikkV/P06C4/11PKa+WNgFr/QGWKuUqPYJ/J4+HRW\nVtiHEKCMoBBmH1BT5Ftoqdq6BkpnGPb6AS98G+Nec5/dNb6ePNIF/asSdxk1\nLuRzcptJguq3+P0JK+c8jPmPpk2hrfgE/TLRa4xY1UDNUhIl9AX39d2P/x5v\n2upwbVYWVSNU32IJroGRtJrImDKjC9YBmH5+1Gq23tNX5zOSKUBOVRuvvjmb\nfwQdN2bw3uvC16WcvB+nFOki36z21zC55JPwF0gCdTPKgo8tro4B0/HJAKgn\nsHea\r\n=Vw9V\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"e94f66ebfabb372dd8d4a369da20712aa5cd32c3","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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"11.14.0","dependencies":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","remark-mdx":"^1.0.15","change-case":"^3.0.2","lodash.uniq":"^4.5.0","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-syntax-object-rest-spread":"^7.2.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.0.0","react":"^16.8.0","prettier":"^1.14.2","react-dom":"^16.8.0","@babel/core":"^7.0.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","@mdx-js/react":"^1.0.16","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.0.16_1556728485781_0.24787536700481194","host":"s3://npm-registry-packages"}},"1.0.18":{"name":"@mdx-js/mdx","version":"1.0.18","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.0.18","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"42bb35e36b7566aed88c5c11a381705f974bc03b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.0.18.tgz","fileCount":8,"integrity":"sha512-KO2odMrZC77Yf9bhL0Qu0GtvVivVV6dL5DWJeuMeSkc9wkL9fBT06re67TfgeJ37R+lyslkG+uPUahIj4/SOoQ==","signatures":[{"sig":"MEUCIQDixzYkdHJYkdGNkpKTXTniaKDcCTz9kNW+ov8ztE+XJgIgE85EDtVD6Xye6eb2QUwRz+5T8kFlv/udp2FCdjSuMGQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19135,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc0cRxCRA9TVsSAnZWagAAwGgP/jmGJquiIx8XV0S3fOuC\nV1ZfQP1JzyZCR+grN66aAVNGJ4AUihBCGlscsQWoC6knbibMj5fN1rsocpkS\n4FnOTefismZ0LDy/53+yREh8fOUW6RGzr0bT44XjtoLcq8+QxVSRDLXEfKIe\nbsHQ1wCHq1WMuCf1h2Ufmba/ChL70JilKWWDlj7zDOnzYn60HtsKtVdv+8hu\nKm7uddI9Z3Ef29r/FEuQCF9L3EyKkWctkY1cc6oMLurEPT7PHX1geDY89zya\nmpogQDTQcDI4HE8P48Uz9zn4zaw2pIBfHTT+sm7wKpWoCOuC/EwSrpT4G949\n5G/HzxZ7wXh9dbSdZW8QZvwiwe7fqhMSrkJLhfBbfPqs1zBdHBmQRL+llY1d\nDXcN2XLXWTiDgm66ep7/8Fbt3H7wOjFJ/Fqwf1NTQ6ksqnrk1hkXizfHWLhw\nOo1COTY0eRVkjLraOnKhBDNnmk2vX/Mkxi2OTjHNDxOxBmNoCvuCDJq5Nhoa\n6U96kZWgw0EJRd9Iururktb/W0Tzlps9V9rLqeA0yUFPtQQG/nIdxW3qEyGv\nm3ry/eUyN/uEzSeWhw5SfPqnNHPd0CKPJsVqEWJ05+I6AiWVX8fJ4zcbVm5l\nRM7KR9bDzCxLZ9VFKoNfO/0S4GhykZGYGkksS11EtI3BfLCGUynPxlGTTa+H\nN85p\r\n=R5ln\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"11.14.0","dependencies":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","remark-mdx":"^1.0.18","change-case":"^3.0.2","lodash.uniq":"^4.5.0","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-syntax-object-rest-spread":"^7.2.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.0.0","react":"^16.8.0","prettier":"^1.14.2","react-dom":"^16.8.0","@babel/core":"^7.0.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","@mdx-js/react":"^1.0.16","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.0.18_1557251185200_0.1452677841761334","host":"s3://npm-registry-packages"}},"1.0.19":{"name":"@mdx-js/mdx","version":"1.0.19","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.0.19","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"ee5323fb2f00f8910b64d58126f54c08d61b3e73","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.0.19.tgz","fileCount":8,"integrity":"sha512-li3zrfEY7htShibDeyVE9GRi7o6vA1QnBg9f07anNNa0689GPxOF9eIRqkj5k3ecDnilHURPyw74k1430hRTVw==","signatures":[{"sig":"MEQCIDNlSS8FzksotG8PGJr1mS1DrGQISQmLIrz+7Ng0coOSAiBUbB7Rab12nebJl3tblelvsPTNGtEIIay+Ux2L+/qWEw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19117,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc2bPxCRA9TVsSAnZWagAAFWcP/iMbTl9SFAcake18jtVB\nuqzWinGlY1lgLx9BSxJbbkGF+kMBy7JRT7xcDo3/u9fQ86yn8xJb253vrygC\nnFf5JUAAykSCC/rhAUaY2K5+R0aDjTzd/Mwl9mvrpm3zmfjPnYFMCIPbicBr\nSd+Xuf2ijuIzJgq+7W9/Ut+qpPf+8NwQTxXT7kjXjBv5LuSel6HwMGOCC2eA\nTiYIr+LLMSdSkgXkStneEg1NdcGKV7WIf8bWF+zAC88EMU/bgTnGB9LXe2j/\nNHjpTh+u07z0Ap4bJl2GU6hkUrsgkogO3MsaaZOPWmdn/nqdNU91xmw2huL+\n/rSdk/DUaCsahFvapNAgwX1lKWusnhBUehs3J/vrc/LXd3dxAuIPhp+4Sq3D\nGhhKQ02Z9i2rNHayqlYidZmXuMnKsOJKq0uVLtLiK02HHLHSga+YTrkxI3sq\nmaMaepD8hkq8GH0cv+6OQftmh4CLk0ORkbjLIpUPyn4kVwT9WUl2EL0btaTB\nZ6I9yvZMUnH3h4h8SDmCjiK/K5rpo7wj91FopSFbofNKmBj8WJTd7eR3ybZP\nUeK2aSWDdolU1+HXjR34o6RXbmCPZd5AunvAHZlaHE3raytZFju4iQ2mS6Os\nAIkSBLbzheDbXxf3G0Y0aYCBu5L0MTGRIkwjLACgt+KWi18451IGP7qYet4o\ncwXg\r\n=cw3C\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"a5b2776a2f0e93e18cb67095f965f41390f98d86","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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"11.14.0","dependencies":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","remark-mdx":"^1.0.18","change-case":"^3.0.2","lodash.uniq":"^4.5.0","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-syntax-object-rest-spread":"^7.2.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.0.0","react":"^16.8.0","prettier":"^1.14.2","react-dom":"^16.8.0","@babel/core":"^7.0.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","@mdx-js/react":"^1.0.16","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.0.19_1557771248338_0.5084710007563931","host":"s3://npm-registry-packages"}},"1.0.19-ci.5":{"name":"@mdx-js/mdx","version":"1.0.19-ci.5","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.0.19-ci.5","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"9f7d75ea35ee17982a76b5256f48789a5b8b1f47","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.0.19-ci.5.tgz","fileCount":8,"integrity":"sha512-qTafg2jPIlkIwpG2jET7jH3NaVk0U8FE1f+M1vK1C63ulyiZJRWy76YtRreuBGN5d6IXuz71bK2pbheedlEaYA==","signatures":[{"sig":"MEYCIQCqQ0tgJNlRC1NmhTgqGihU0s3SKUiESwTFKDYKKN2/qAIhAKTz77iIeB+PuW4sv3Ua1xpHRzqBuP4fjTjENNNTMCRd","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19130,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc2bQxCRA9TVsSAnZWagAAFhoP/1UgLojs3x03scDZWQHy\ngB5+TMNR8Cz6gO11j6TAp6VPyv/WRCYyH7EcTlVkuOItnG4ZX6ouwbGS/VxK\n9sSIB/t4gbFMQT3NbK3Icc08bVWmZy7PSOTw3bRN0WuSH/FZAzTDWxzwE9ws\n4IjxW3/BUmawKmWEK1RO4woYCewKAfBaRC+4N2dHasINW8I+zs5pbMkJIJ21\nSRbLHVY71dX25mHfMGig4INy/6dFpsLoDG1MSUXW7gVK/NMsxAYog1sq7SK6\nkELAHv7PyQ5hK6gq3DDDMd20KgZ0V4GQX1PSLDyjOY+ufENaJYE+rtQyTOUd\nchJfM21S6cQnKk4iLhjA04869BDe57nUfC8EqmvB/T1suMsIhdjiozGsvDCx\nh5g1fePU7iwYND49LLEUNhAr45i2bixMrVX53OWjgnbE6/sSFxaBHip8x5fV\nB2eWcFhc8z2gUSUbE5NCPNvLHNmkeq6OCxYklbZg8QvMcrhbuYwbOP2GZaF+\nPy2CO9GZQ0Jpj2GQhZ9bzT5pFEdtbj7eBFKG5zrb39KcsoYvr9y3a6DvgZDU\ngCMykNZ4Zg8RfxCm2iUEwld9stExv9XpnEzSYjgBXZDykel2f2s9+ZROZf/y\n4435IE6q/B+S2JaFGDFb7+YdYEKKW9gUker1qduq4HJpaJQlB8dhKvDiyxP+\nnBJK\r\n=0HDe\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"790d8e3fa86221482f42419eb8458ebc8747f966","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.13.3/node@v10.15.3+x64 (linux)","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"10.15.3","dependencies":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","remark-mdx":"^1.0.18","change-case":"^3.0.2","lodash.uniq":"^4.5.0","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-syntax-object-rest-spread":"^7.2.0"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"jest":"^24.0.0","react":"^16.8.0","prettier":"^1.14.2","react-dom":"^16.8.0","@babel/core":"^7.0.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","@mdx-js/react":"^1.0.16","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.0.19-ci.5_1557771312785_0.2929062724084368","host":"s3://npm-registry-packages"}},"1.0.20-ci.2":{"name":"@mdx-js/mdx","version":"1.0.20-ci.2","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.0.20-ci.2","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"ad2e009c251ffd479d4291add42fcf52bc074781","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.0.20-ci.2.tgz","fileCount":8,"integrity":"sha512-LuUoU2wbsUI1ODTN4PWeCJHI+YftF2REZMnW6Fc7jGPc5DJIRRkf949EP5kqVxcvGgeMHNbQuX3fiZO9PaM68g==","signatures":[{"sig":"MEUCIF36bgGC20Hup4RG1y2m0eZjE6mOJn2t9bwa2VWrejr7AiEA0Z0bZUWU7jq/XuhUuBX+esUy2m0hs9ZAXDPP5TvUyic=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19143,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc2sSLCRA9TVsSAnZWagAAUs4P/2yeOFSKXRMr3FHQCGnk\nALA4wxasFI8LSi/QBMHE2rJvVPKzHtl8z5+9O9S5Su6nESJNAl9KeoRVPhro\nv/yX+8KkpgsT51UtzJricoP8BuUKt13fP2wSm8+3k/6WTtV8oFUYs+aNlmOm\nRBY5XU4n/eAIRRyAYBenG1mV2VKnvbyKHjNmAqs1953EtrnAMynsAmSsYioH\n6TWkre9Q3DhVHa7t0asMIQHJ7JRkHyLwYMa8SEXutuhhmpja43eh8rtHnA5Z\nJSYdrRUVWHWuMKoJAzjYZXlYRUEoG/lSOFgJlOwP7j80JgFLN1sKaTmplm1h\nSdcnGwWQwnRv3v3L0xI5pRGYewC0MsBlPwgrxkuG6yxUfP6mFzm110uyXDse\nGZw0POM1gAGBzz9Z+fgKejukOlHIKriitHqnbtsS+B1AW3PFPVByVxfmsXwM\nSV0zxilhsrBqRgJ/5tK0/ro+g9Z4zHM8FRLnnIzU8iVY8avKcF5w+Q4cw0ZH\ndoC8X/v89ySrtBVuMz4RfZct9yRWddfDtNcx9DpSRf5btQj2nTtD2D8ftKfu\nMUTHl810TPkw/lkcIdmHXiMKpvy/uWWi3e0qr8GmsBSieKOiH1f1tbvktiRK\nGTKgaxRZy80PooiEvIM8lU7F4yqE1/40hq2x7j7TIPjCLH2JfTCyqLq0V1wd\nj1hW\r\n=l/9b\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"a14fb53435a1ee469eb9bc1ce55ea6f61abad022","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.13.3/node@v10.15.3+x64 (linux)","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"10.15.3","dependencies":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","remark-mdx":"^1.0.18","change-case":"^3.0.2","lodash.uniq":"^4.5.0","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-syntax-object-rest-spread":"^7.2.0"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"jest":"^24.0.0","react":"^16.8.0","prettier":"^1.14.2","react-dom":"^16.8.0","@babel/core":"^7.0.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","@mdx-js/react":"^1.0.20-ci.2+a14fb53","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.0.20-ci.2_1557841035269_0.09095820714318203","host":"s3://npm-registry-packages"}},"1.0.20":{"name":"@mdx-js/mdx","version":"1.0.20","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.0.20","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"422e15bfa5ca6459402783fb57e8b5d5d37a719f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.0.20.tgz","fileCount":8,"integrity":"sha512-TSiHGyYBOwqKgDane9N/dB3VvpsmU7zZunJAUBL4QEcWcpd5wOzSb9vPoWGiOMmIdgFArm24QkTPFUVOgvKHAQ==","signatures":[{"sig":"MEUCIEkXTOxCPXy1XcpQmmU8JeYiUf+RAxnUPU7ynwWryqnHAiEAxjPRfMbfvYf2i7+0fLwAneRZFUECIxikOAoraGjmxlU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19117,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc6URSCRA9TVsSAnZWagAA9EwQAJGvF8XcremCafgXPH9p\n3GaB4KpkUkQObBrnc0ebZpheQgR92ZtKS5117HuB8/N2mTGPFpK4tuv+YLrl\nrmw1W25uZ1rbys9AD8J4FVhSyzcif2Mv8hyvwCO+bw0AaxQ8QOXlUiSSGgLN\nBd6tUxl5f06fR6UCbXNMzQ98bY0p5SuiVuJKMH5SklOmvlQ1gl63SdfCw5k1\nUjkAsq95ppxqlSMcXxKgd6c8hvUnvSi2WAOEvcbxZrb/Tnsv7cnpHWpoleW4\n2JQhhUE2893VST0Pbc5+3+Gu5SfrzXp5otpYwE3oZkq8MrCPdRCwzdTzMLU1\nCKofS/HNamI2uJLRTgNuigIQjEW7NeHyjHVWyo8jVZs/nfL7yLLScwOKft0b\nHz/nzjZJxOoL4bVPAXpNuHscQHJC3GuncOHW3FMAtO9rv8AhPIH4OnM2yKkH\nfsvNAgP7Hl7SqMFY70IVS0tlJvMreC+LKdMB4NbSMcJf64/N3D9O2Y26R6VO\nrrPAA3BVNV8AKYZePGtaQkxFhfNnDLMvG20Xp2FXmotJKlf6TKXrcJQmDyPm\nE0rTkZbj8tBXf0zePFYvUdTkxFWXUQ0bVHgv4kgnaov1kliGPD6JVwromY7G\nR7u0ow1rum6ExIQBQ8AF5xxYVn7fRoomTqucGG6MfaS7oplF8qZNXw682Hlf\nkZIY\r\n=Fj/x\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"11.14.0","dependencies":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","remark-mdx":"^1.0.20","change-case":"^3.0.2","lodash.uniq":"^4.5.0","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-syntax-object-rest-spread":"^7.2.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.0.0","react":"^16.8.0","prettier":"^1.14.2","react-dom":"^16.8.0","@babel/core":"^7.0.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","@mdx-js/react":"^1.0.20","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.0.20_1558791249310_0.3701717629499863","host":"s3://npm-registry-packages"}},"1.0.21":{"name":"@mdx-js/mdx","version":"1.0.21","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.0.21","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"028a7975fff026222f7ace19c8c130290c649025","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.0.21.tgz","fileCount":8,"integrity":"sha512-B+n3PvrtdUcaCgDmWFaBf4n/zsls5hoyNPkWe2CzUx3ggR0SoD4UqCQR7iIZZ//fUjAwFODGf+2H0aJ3tIlB7w==","signatures":[{"sig":"MEUCIQC91/j//dGl5GpYFJGhpaMI1tUgAEp2Tk3bxCFIGfUWqAIgNGMqn4uWEZcHidleM93TciR89O/YkGwcNWmncRXb2k8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19117,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdCPj+CRA9TVsSAnZWagAAOawP/RVc+vib8jUSfgjrR1Mu\n1GxMGH9w0YWqgTIJZFeE/nvyoeVkXhCjVg5TbihjVyb8p6jar2bYn3YimpKz\nwxFm9dFZCjaKdtuxsw8JCtFHos+r/FYjdGIntumUd0Uwk/wRY3JMq8lJQltw\n4qhFQVsu3RE1wPCrvlvbPeTJwrwjr7IbpMp4FxzxfOch3xuzTEMEEfA3T/IG\nVnbbaNqclXWNVr6OUOb7U5JtkKgChJTGRqIc9N0a+bLtTUwszRdRyxurjtHH\nczzOx0mWLXsc3uYwj/OZ4yNDVSufEYLndUsjhSnxP4sOT1l1fdmeTInOIEmp\nfghXhnfkJkQ6GlNrAod3GajSCiNxhBPgtXte/A25z5wKpIQ7etIz26AM2jDw\nklDgZQdrAlje5dxeZxt+UUdP0RBPgKGrQI/iHu6p339oY907l8oNSNkPVfdI\n4M3ZlvomITOqZPO9UWuptcGOHsg77N37cMU8JRC6fE3RYGUJ2FLl/enhgVpd\n//Vza6vZhuUDwp/rge5ZQmmCqAPdyY2dd5Iolxbb5eNDH8yl8PqTtxaE7KOA\nFpfIPMOefSDmVXcnrSrfsDeTjcyx1mxY1ARoeykBMSwdmiK97IxrZaUgwx+H\nq23LgCZLmgJwXgLpm1mrTXEa385M558301cAmJvGW93cr7uM7szzSia/bdBk\nU24r\r\n=O9ly\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"11.14.0","dependencies":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","remark-mdx":"^1.0.21","change-case":"^3.0.2","lodash.uniq":"^4.5.0","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-syntax-object-rest-spread":"^7.2.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.0.0","react":"^16.8.0","prettier":"^1.14.2","react-dom":"^16.8.0","@babel/core":"^7.0.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","@mdx-js/react":"^1.0.21","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.0.21_1560869118053_0.03864209114120043","host":"s3://npm-registry-packages"}},"1.0.22":{"name":"@mdx-js/mdx","version":"1.0.22","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.0.22","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"6765177d90c21eeb54e419709a88bb8bb037ee79","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.0.22.tgz","fileCount":8,"integrity":"sha512-A7++QOF1f2Og+7k2J1vH++FRWE7tUhMAym55th/0WTE6qlh566Ekbr1RQC+NLScnJA+tG5Q1yGKzyaFr+ubfBg==","signatures":[{"sig":"MEQCIBkveegGURjxOoh9Sm/kYq1EsjhnKEGtEoheWmEQMCzpAiBdJhLowZW4JPaLTwORNSe//AgIcR7CXT5G4No7yisa9A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19144,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdJOsFCRA9TVsSAnZWagAAe0QP/30tojaOnF/qmMBqwafJ\nN5REJnR+d6Hbf0FNfshTcFXaqsrsV0DsgQpShT/xEERFtedDtV5/O7F+oI2L\nA4GdHrZAf+SCFl1loAgHbrIxxh9OJHlTXKqF1ehVM4/2Q9YTy/fPgWMLNtaK\nIiMj/RkteQLNOkpRNPixutj/u2VvUsKQm/WW4b95v/kLTyR1t5GQs82ZSwLU\nUz0n1hy5q9+2kM6Ms1SoQ1YFgddVGmOLS2Cs2qQk76Ets71PybXjBWErUnSf\n2GOcgETSiBimPCXeWwz+FKV40gEqPgLrG09PZd5WdQrJ97F8Y5AXWQgmbPV7\nsfENJ8cd5d2wOweEtdTfv4pHkWEdgzTBu5x6RcI7HJXlw0U8NScXLyObO2Cw\n2u4nhzDDK29o9TNyvxo1B+/6fGLVHMshOmgqXFVl5O1jgiWPTaVeJYyuTyGU\nVIT/Cwoo5Nyj7IiBsnX67hInsQGZ6YoixSDsnvT5cDbvgz4kV2xPiPJN04t/\nkqlzUWDPXb6mMTC+RbU+x7GNOY5DpsYpE/X5Dp58hACbftNEwS5pn47rizXi\nCm7nBDrTGQ+HbfMCuU80AZbvw+Iqh7E2TANUfQ7bMpJkM2e6dTSh13qhuSm9\ngye73ybDkqp7N3U0pVxmLXKoFCdBuWOGOSKVx3YWMch5Ew3YW2l/YoqZBmz0\nBQw4\r\n=k6Hm\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.6.0","dependencies":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","remark-mdx":"^1.0.22","change-case":"^3.0.2","lodash.uniq":"^4.5.0","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-syntax-object-rest-spread":"^7.2.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.0.0","react":"^16.8.0","prettier":"^1.14.2","react-dom":"^16.8.0","@babel/core":"^7.0.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","@mdx-js/react":"^1.0.22","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.0.22_1562700549228_0.2961279172378546","host":"s3://npm-registry-packages"}},"1.0.23":{"name":"@mdx-js/mdx","version":"1.0.23","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.0.23","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"bf0fcd60ef971527b0817080edc4f0fe8adb5fcd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.0.23.tgz","fileCount":8,"integrity":"sha512-z9U5cs8MyQBF48X0qKRh1X4QVArlYg7wt4XrBPZQIbBcVvbbAoH9HAiS5ZCzr3fIegHJGwY/A1FnaJbFVeQw3Q==","signatures":[{"sig":"MEYCIQC648EOyfKiGTlz8V+8FUoXbpkSPhwEGZeUNyb0Y4fMbAIhAKY1jUzx4foQE96kh3ZR57l0gK/9FMlMFb10YVWYIRGx","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19144,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdJOwACRA9TVsSAnZWagAA9SYP/3VHzoMIyUIEKsma2hA9\nIH9i7/L/aMP5nT40/IIegeW8vZOgysddWnQyqaS6AnBWMI6JjW9k81RW7U3t\npCaXQShsVTilBc4+xsydMZfYUEHCyY9TqsPDtOz2cG9YWJ3lP51Pjet0O6Ad\nV2KxG6+vHczw7WRJd5HpdSn+QwMwpuXqeceowRSIfsU/1f4HXghsizMiYaHC\nMxTL5uo9HGQN0K/eMOFGXcCPmhHRKP2or4+8aYdKa6MNgJWxXQpkzOb1+TFc\ndtHbg0L5mUBDXyT8RbDpV6GnbEDq3lDi/Y4KgW0nS3oV84NSBD4U/KHX10+w\n0Xf/DNudYnsl1wf8tDFvIfJGmA5Ai4ixrFwrrP7mYyxEGK/G4gp+aMcMO1gy\nYoiOJh52EZRFsX/XaESBKH7fRTiAn1bdoJWxm7AtgwFGyPzHJIWeEynPBKC4\nH+s8aI5DfCct/+ex/QfT+eRO04U+eBN+VLI5Idz7tSvMg9bUBl7FJF7O4ynt\nlvBVg0/i/0LLL3wzDl1aFo7nb85eQLgkIKkABhClr6oxoq5mQ+dGUIIcoycR\n+WtLCP+V4//l5so33DlN77qxNNK+k8+bv9Jj7osSKYP8aRoMcb3OAMUwCuTQ\nFBz57OJ+4VDQ03ZC3WQdk5ZJ8s578yR8ZFpiVvTeYCIqGI7ZetbiVFcn9MVO\nbBPq\r\n=0r58\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.6.0","dependencies":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","remark-mdx":"^1.0.23","change-case":"^3.0.2","lodash.uniq":"^4.5.0","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-syntax-object-rest-spread":"^7.2.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.0.0","react":"^16.8.0","prettier":"^1.14.2","react-dom":"^16.8.0","@babel/core":"^7.0.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","@mdx-js/react":"^1.0.23","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.0.23_1562700800384_0.4909177488144807","host":"s3://npm-registry-packages"}},"1.0.24-ci.3":{"name":"@mdx-js/mdx","version":"1.0.24-ci.3","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.0.24-ci.3","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"5e26e22932bd53cf4c395141b406ad283c8d1799","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.0.24-ci.3.tgz","fileCount":8,"integrity":"sha512-kFTEXcilzuO9TQ044z6cOsWsMQDP6e/SlP/zNUphBI7pk5ySbcAaGVeGm0FyePcxOqHRfEaqTzKZ6p8cUUjNUw==","signatures":[{"sig":"MEUCIDYuW7ob/w/BK9nNHaizGv7TjoMdNiE/0yFCBJyLVHiXAiEA/WkKyzk6GcLahi6/Aez+iO1jgAyU3t3qAdskCWjqt58=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19227,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdJ1xrCRA9TVsSAnZWagAA0OgP/3BfBCbpM+9chcC53LpE\nvDrLN3aAgQrkRmYe5k6G4NsEaFosBk/owGX2ssyrtXZc1duFpQQKKDikXmEe\n4TD5aCo4PfYfXKIIPHg4URvH1YWzKVe8gJv5v6bOLtInismQdefK+Jf7j2t/\nTfb1Mv6mUIPSxuswcVNjgcaLdMXSXOXhubcMbtw1TL92gZ55fQlHwKXm0hqa\nJsW2SA9FIIGArTnwyN4ByZR8SH3leb0XmtFz+V2oH5CJMGK/W1frgAKdL3Eh\nIivFD2kVxWotz7ty2YqsOCLoAtXByK8FoiLxiqUh7zm5uQ6KbfzYjVUq6d+y\nE0zVHwCPxNmGuP+kUiSXD3hWDENFGDeuf+nng8vCTqdGZbjIJZMEFNtBTRWi\nAxtVr5wABeoipQd3EgWC9O6tPKosOYeu2ejo03JH8Do6vxN5tj8kD3LY27Px\nJ+6Stygu2bhvfte4c6/vAgOD/03XrBq72VET9UYIC0EXxC3R9zjmDPDdNecY\nsbvoDYJE/TuTSyRunE/OC1BJBSzHG9lPRHgzzANyaJAIDFh6eKN+P62JpaO9\nU9xC4oSV2CCHoEj1cDKWxSGIhuId/1xkjW4CaQnGKpIewZsnsYcxeX+r7BBf\n+4sWX59yaDUmDWeEUj/QO5i9D36uc1uu8uyTLN8yEzRawGY/C099cE5e5gV7\nqcRj\r\n=rT2Z\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"eccea8362e4c71e33dc1b8fb925a0fb2460ecfbd","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.15.0/node@v10.16.0+x64 (linux)","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"10.16.0","dependencies":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","remark-mdx":"^1.0.23","lodash.uniq":"^4.5.0","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-syntax-object-rest-spread":"^7.2.0"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"jest":"^24.0.0","react":"^16.8.0","prettier":"^1.14.2","react-dom":"^16.8.0","@babel/core":"^7.0.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","@mdx-js/react":"^1.0.23","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.0.24-ci.3_1562860650874_0.9830645556226711","host":"s3://npm-registry-packages"}},"1.0.24-ci.5":{"name":"@mdx-js/mdx","version":"1.0.24-ci.5","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.0.24-ci.5","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"dd2273c694208e1e59600a4cd9e5da88bfb155dc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.0.24-ci.5.tgz","fileCount":8,"integrity":"sha512-NUp/pU/9G9qeH1ZTdrBi9xtlsN4g606NolllSw/EVusMf9dTbl1xxcgbw7Blav+BTDtJ0jUevIPbmfk59rxA/g==","signatures":[{"sig":"MEQCIBjV71YV91nYg5QT+RuZkMqW/pHF5q0s5tQ70DMXhySIAiAj6C1bGP2ysRhn3ekjHr3MCxTYhtEiyFQnTwNrjWUfHQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19275,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdJ2e0CRA9TVsSAnZWagAAtHsQAI6YgCVr2lX/X5g7VFyk\na8eVIBzPQfJNNugtslt7X/Em8qHaY+DfgGWqVfGgJzQPBTT6A52RwUtIjQ7H\n8INib4Ye4Bl5vubWcEWuaowqK30qXO6v0CWFmIAXpAk24YZvRzDRcG9nC4Wx\nSxy75d7h/TDT0L15bVgLUBi1sDbjO80dGU7Jc2EVGS+y1aFywdMB4NzSdlDz\nGwaz/Lz8y1GXhNyLFeJ+YuR6zw3MCsLy0Hxzn92y/tbzeh4RedSJh4n19dtQ\nWrdFgQQpnNaWJa5kUCLp/L86tDctEWxSfoa56x0rJPGVs4rYrlUQvsGixBsu\np2cBkBzEYFW9TRfxc3GlmeyFr3VoczhoNX/N2LBfUlP3BQOPcFlWPDCLbfy8\nS70fuHkFLUYNch4pOQ1pKbtojPBNhEd24Aq3nz1cFtzOM+aGi0Te8DRJPZuI\noYjsgczWKQifVRcovsZDdPe8KaFjgKoWH8V+vW/U4XoEL3jrB5lpKtBQvK5r\n2PyVRn5jNm4t/aWocgrE7iRM17dGFCBITHOTTR3A0ryogrpO6mFB0EfVSyV3\n0JS4RCVPC24lGus0Kfmlacsmj4lzPvfohkvrE3IDXVGmaW8T9yQTZTXUab99\nNoE7uQBV/kQI2j0lNCE035faVAR6Rw5NYkHNT5NMYMD6OT7pwE8bi8egIbR5\nwgqu\r\n=Hvc7\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"5591513a86375101ca53395a09462a8ac72c15e9","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.15.0/node@v10.16.0+x64 (linux)","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"10.16.0","dependencies":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","remark-mdx":"^1.0.23","lodash.uniq":"^4.5.0","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-syntax-object-rest-spread":"^7.2.0"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"jest":"^24.0.0","react":"^16.8.0","prettier":"^1.14.2","react-dom":"^16.8.0","@babel/core":"^7.0.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","@mdx-js/react":"^1.0.23","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.0.24-ci.5_1562863540433_0.053561904668661287","host":"s3://npm-registry-packages"}},"1.0.24":{"name":"@mdx-js/mdx","version":"1.0.24","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.0.24","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"86f5eeed1d2571843ec4c8910c745a398351a518","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.0.24.tgz","fileCount":8,"integrity":"sha512-VCAS5GxILDzDTutAEOWH2SDQQaS2qrNjgMVLQpLlOpldJ+FIb+zk+rZnLzYTMYRYbe+HC/E0ktoKoE2hULtDwQ==","signatures":[{"sig":"MEUCIQDVWoDf2h3aeCzG4faUgn3F+a57aiV6lHTnyD4QHnUChwIgf/o+Da1Zy0Xx+fZipI11frxdP5iLPgkluiPiakqbwpA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19262,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdJ3HZCRA9TVsSAnZWagAA57YP/3m2LjUMK4zpeDCPZiKf\ns8hhe+YbwSapHHa/PBCiK86AYaiFHsNdgwYJzUZqEoNHFjL3h8YSPeQSK0YF\n5TToH5IJO07LGm2+nRz3q+xN5lMXT/luf0nxdchARzlgWNbYpXkSqo+kPY7+\n+X122/HL8zN3pFvreJzGfHg3u7m26RqpDW7/Tk6YjLM2b1eIuc8w6sNjv000\nexJF5PYHRWmqirJF+WrLJXF/YnClwUu1oWWoyNvii61iMCsB5FUzsFmRU6TF\nT/SAD5Bhnmxxs+UqabjNkVj/NeDy2rflFo2Nryhd21X9WX0EuBD0n1XKgRF/\neoGMeNfoANeZrbMhWOTgxG5dwZVVQL5eXJbBN6HFgx06Q5FgAqdADkmHGkKU\ncndBnjC/Ej3HH1m4EPM+Z04trYI910OPM0+2d34avxaWyXgTm80Fs1TtMRG2\nyot+d97MlGlAv6DyrVbNM2V3OG9TAT/ITwQ4/5SRA+rALENcyXGivcAyo11Y\noUmQOyRiUlrvQqQOw/Wr2val5bNovlWmTX9eA6SKEVemW87Bqg4wszXVJPDG\nPAeU9u9GOwSU45RbesF77dwurqdJ311EyQnX5h6pQELShjCpE4kCCEtU6wjy\nXC12asRuZUE7D4yUNIbbToa9/oAw6YHnWstGmBNM2Ul3s5vqbU0mthgvMp4S\nRVWU\r\n=ehB+\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"1f51df710a4e2b9c3959c6ee36a66e7af0d3bf80","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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.6.0","dependencies":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","remark-mdx":"^1.0.23","lodash.uniq":"^4.5.0","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-syntax-object-rest-spread":"^7.2.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.0.0","react":"^16.8.0","prettier":"^1.14.2","react-dom":"^16.8.0","@babel/core":"^7.0.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","@mdx-js/react":"^1.0.23","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.0.24_1562866136258_0.6882912412495619","host":"s3://npm-registry-packages"}},"1.0.25":{"name":"@mdx-js/mdx","version":"1.0.25","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.0.25","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"f8c90ba348ba2fc39cb9663c840bc4ac736e6f95","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.0.25.tgz","fileCount":8,"integrity":"sha512-EDv8MchuJBrHDE7V9fS/1OFhejIRc/yAs8d2UeIL61vTlJBf8dZJbD+/Vs2R4sO9fToByEcqmwRveAGqtz9Oxg==","signatures":[{"sig":"MEUCIHrfzt1JH484lvPNRY0nSdn1czeyp36y0DInkHdFasUxAiEA6I7GzxNHnvAgiemGrylVV2YI9thS0bQCMkEQxdkrEag=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19262,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdKLBJCRA9TVsSAnZWagAAxboP/iP6YXGRyupuQeQzSHNX\nzkt5nI/xPByojTTnkxqQywpLl4ox2d0SSAT4yuoT/SDEz4Rq+RDCnahq7V6D\nu2cwvhZrdaCNnMtMeKa8KICKUfuBYzADu6I3XDTf4HyMK3/bNDCfXPFd74OZ\n5LrPKIN/bCwLx0JHSkifnJvWqnZqJUD8/mXSj0wmUUk+3zDctP9FKOoWgd2d\nIo8SFy/+U3Il19EQgVz6FCpN4fkWsPw403Egse4w5vqRAdtZsseskqjaegTd\nlhH0714cTrz0HABrWCGXwXzFd0g4C3Dh+2m2bOp43KJTWm9DkBu3DH89ba/I\nSQeYenvISgVNA25JiQrxPlMf6vxFacOwKRII7IO/Ed2pLwN9ihBP4jfCwkiK\nvsCoEMdLNy4ylrDmzWdkOrhBIMh3gHpzYPrdUnv0kJonwnVDM2MM1c3YrFpf\nX02K4Pl3qDWvkAa+RrlzhG6qBPHY6HnQxU0yWJzenQcgnyk1iWZnP+FNPjhx\nqYv/hXjWlTtxqcpw/dIc74cFuOjnCUK6GpqzPMJZR+DEUhoJCBb0+JR/Xxzm\nwQsY9vYhCEQ5Dk1dSiueU+YzmgkJphYwofI4AqFZG6DMAc20rncUDGho8Zbg\naDA4EpDeA2nCn4aaZtXjsG+YX2AU3dK4+iZ+QBVKybeLQR4wKrOwcLFKdsIS\nc8sR\r\n=eb2I\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.6.0","dependencies":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","remark-mdx":"^1.0.25","lodash.uniq":"^4.5.0","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-syntax-object-rest-spread":"^7.2.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.0.0","react":"^16.8.0","prettier":"^1.14.2","react-dom":"^16.8.0","@babel/core":"^7.0.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","@mdx-js/react":"^1.0.23","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.0.25_1562947656549_0.3844623138917851","host":"s3://npm-registry-packages"}},"1.0.26":{"name":"@mdx-js/mdx","version":"1.0.26","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.0.26","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"948a9df8b3e1fcbce896a20be2d57bec6921c875","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.0.26.tgz","fileCount":8,"integrity":"sha512-9BQ2vqqF2WSqB0JCypokbq6+felUlJlP4xEAEFLBIjjINp/38+JjmJvWp7BbjKFg1k4U8wWnxUBqKpXKXsH99A==","signatures":[{"sig":"MEYCIQDHyvgfLG8k9neZO1YUM132VaiqWCH/fXCIg6tACjKieAIhAOQkaGYoQvs1bMAOWUZQs8QRfEsH2omKHeCXRtvi2plg","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19262,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdKOj0CRA9TVsSAnZWagAA830P/AuA79a5AqEaiPM+l18y\nYq1kOffTkCrStYOTmAmjmZHhwt6gJ1uGl+qpiOyIITS87wZ5uWFHgUgOjuO/\niQk4u6KwfnyTbbyMAyqy29JLVNo59EwvX0VAu0n1A9I4/eopgB+ia1QBrdLE\npRXj+2xnw7c6y8otVOoUcRC8u9aTw7lqNc4k6HdEMYOZNiaZnnmUBxq5t+h+\nuaGNbNudf0ClVCbK4zEmsqrptoo614QRfXRh8q1kOCkivmhm4QWokGuIOILP\n/lYb2TRp1qkr8LgrXyPKp3PRKMuI1uV63/3IP6m2oP7XdJTKO7akMwXYC86B\ne9mWp6wlMx6Kg0/MZMELVLuIXHoUbkqZqnQRF9JsARmJYdidxZASZCBS25QO\n54ng5cKv0SZpslnvy2M1Ap/ftBCC4KrH8Rar11A1kcJV9IvA3JQzTA1iiNqI\nJMgTbCdiIrj60oQWpCal5qIGPwwhEiz/KKH0uI+1m5jf/VlfhwTEoNbYd1Qn\nMxYabAmGwqH3WfEJJbfjgYvHe16b90kVNhITWDkJvLSnMv6YnzfKr65kZ3gE\np9iLIcMLyeFksoKVBqZ5TvtGMocjz3KjyHSTGC2u43lGfaaUS7cCNcOE8jJj\nzVlPa6fTvjXwlThSuVgBFuY/TnGHFcM3+pb19JUE8KyP6TRBhm6MLgFPH8jJ\n7t/t\r\n=HkgC\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.6.0","dependencies":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","remark-mdx":"^1.0.26","lodash.uniq":"^4.5.0","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-syntax-object-rest-spread":"^7.2.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.0.0","react":"^16.8.0","prettier":"^1.14.2","react-dom":"^16.8.0","@babel/core":"^7.0.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","@mdx-js/react":"^1.0.26","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.0.26_1562962163388_0.05761242612871631","host":"s3://npm-registry-packages"}},"1.0.27":{"name":"@mdx-js/mdx","version":"1.0.27","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.0.27","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"a027ea67d0dfeb9156228e4fa2e42010f7bb7481","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.0.27.tgz","fileCount":8,"integrity":"sha512-75Pd2oUSn8Oa/WWF4hpexG7e9e7Iz3RGgYr2ctxX2qwSsiU2CMWn0uhFLsAiv5Ycn1JcTsyUhYCX2AO6MfHezA==","signatures":[{"sig":"MEUCIATjY1aXxdqwPjGUIDkRKgSNhNHdmLPZTErn61fQbydpAiEAmJDqBcm9wSMs16p54cmcxGkITmmj77PsbYPo7LSzJmM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19262,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdKO2NCRA9TVsSAnZWagAAagQP/3iYl5as+neGkMzUZUBr\ni0HnQvjtH46C/Y82J80v4X7g6qtV4Z3EZKLuqvvQPQ0W21S10QymNCVQEsSV\niAiJHH/iZNxm3hALl0CAZJc6Yz2t0w9Bi5/MRxTsXdnttLMS1nDL39XE3iNd\n8ak52pzX+Q9+v2+hmNCQ6M7mBoFc7ewhGLCrfz5kud7dxlfUKUFPAgh+/fyr\n0OsMDGWfBExynJCAJMl1gBQHJcKmsG8INZBW7g8GRATnXBke3DfjZbXEGhpU\nqxgBh3m8BF69T5gT8bxQpoB2hKSZYlj40meDzVOtw7zBlmefE2WZCtwTpTC4\nAbzdJly+OeCuCH8e3LtJjU4k8aki/eYgFbNrvDOcitUoIFrQbNES+J9hk++q\nr46c3AaqH2hd846OpULqfUr29Psx8abIxc7T+xdeib5CodkoXSOhyrDJYlhT\n8711jgA2VDHfOZ+kex6DBL2H22upWWtMQi6iFQHhQCBWdk16EUCnooYoN5DH\nJAHUtAuXp/jB6eSQrRT7LTo8o3tKtuhyFTcefLVOq7swJVv6Lg4OXupFfY7O\nGSUfB2wuEwMXwy84xqLEV8BGw1QQPZhMEi8NsaPlSZXhjbnC0D6/fhTXoqO0\nlHujXS1DO0ndoRToNYWP6H3J2Gz+km6QnqQMQsgZMcuvWOiEIVmdUmBBvgO9\nOq2h\r\n=goqo\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"0f496e537b58df6fb1eeed0b0feade01fc6cf9f9","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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.6.0","dependencies":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","remark-mdx":"^1.0.26","lodash.uniq":"^4.5.0","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-syntax-object-rest-spread":"^7.2.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.0.0","react":"^16.8.0","prettier":"^1.14.2","react-dom":"^16.8.0","@babel/core":"^7.0.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","@mdx-js/react":"^1.0.27","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.0.27_1562963341173_0.6280581108656507","host":"s3://npm-registry-packages"}},"1.0.27-ci.0":{"name":"@mdx-js/mdx","version":"1.0.27-ci.0","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.0.27-ci.0","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"1cea293e916afa0d13c187f22848a4381d7f1c2e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.0.27-ci.0.tgz","fileCount":8,"integrity":"sha512-8CjarvQX/ZKoFX1668GmiLBkMXRwIKwAKUvPNVYmdYs0vGuSGwKmw0uBXOuKa4aEs7TWtVNQrNebFB5oJaZq4g==","signatures":[{"sig":"MEUCIQDGb4oqxpfTJY75azXbRTHjUKVMnwh/rI/efOaS/gATYQIgK8qbsJXIQExdyndwQJi9GrdW+O3yWOT0nHe7FDJ1Dpw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19288,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdKO5rCRA9TVsSAnZWagAAhKUP/RoHhzfuqPmonh+t4Vkd\n8Rfa18kvSbBX+ck5JWl4LLKWdHjVqCwvB78fLCMU8l4z/HMhOL79+kvH5l2/\nSb2aDfoQ+ETZ5T7svu/qzjcihm8iFjQRgelvQ0KYN5VqcVPC44enGVefLRmc\nuIh8r83Y60yhlV5W9fy9gHzl1URkFhQSHQ2cPUliAZ0pSzkBw1veBAK37Fhn\nySkuJ6+iSdKD5nKgvThdwATZwleTBz3BbaJ/a5vDw8WGh+k18+GqY2XYaL3x\nzrfz6NdzR9wnvlQeHEjhszSVniFL5Bf3Fq/B/WWqiTkXLM/YBiqurGU+AiE3\n1ZuGfwGVP11WDsZ7BQk1fjkEpKfZ5vR4IF0hpeUcY/hVeW7csku0T1S2E5tw\nWoFczaoTp/OKJJ5Pzy2MODJk1mPHXiakkcr9hpuBL7jOrgaAyZpU5kBIgaw4\nGm/uNKMjPLIaXGhue1RsBgfsi3CHiHHv2nNaOOA9XaMIDM0VluXGHKZlwc+z\n3TGcHseUeJN+D1aB5I3vnDT4FuDLRLB+7P7nLT7zpwuNTOJbNybx1Ju7GT6x\nAZnMCISic1JZAwsJ8aWYur8A57bugdHFTR/vUR5Zc6wNpLDQfWD7ir2V37dX\nGMKYX8mnPOq6UrXqvQ0/EnD3tSQYwoEj5G1hsWRIXUIl9DOvPlDkbWLBDjcT\nniAx\r\n=cK7P\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"ad237d8204f5886f0d96fdd79b6545a9dbb8cf52","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.15.0/node@v10.16.0+x64 (linux)","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"10.16.0","dependencies":{"detab":"^2.0.0","unified":"^7.0.0","to-style":"^1.3.3","remark-mdx":"^1.0.26","lodash.uniq":"^4.5.0","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^4.0.0","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-syntax-object-rest-spread":"^7.2.0"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"jest":"^24.0.0","react":"^16.8.0","prettier":"^1.14.2","react-dom":"^16.8.0","@babel/core":"^7.0.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","@mdx-js/react":"^1.0.27-ci.0+ad237d8","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.0.27-ci.0_1562963562459_0.8168663743198972","host":"s3://npm-registry-packages"}},"1.1.0":{"name":"@mdx-js/mdx","version":"1.1.0","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.1.0","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"9a7138e31e4933d53afca59e0460ab33771af5fe","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.1.0.tgz","fileCount":8,"integrity":"sha512-WHWVPLStet4zc25nEDePNt7YUcCOgEa8q0F0QuE8Ddv5QphuXA7SNtRl2o+xMCm5r7Q5A1RrsG7lipMU4Pviqw==","signatures":[{"sig":"MEQCIDt4A97HQ9vxiA7OKFPFMIWOY8kYi5LM8COR7CRzKG7SAiB8dMu7n9HuUl63MpfQmtD2Q8axNzz3o28cGmdUKDRr6Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19267,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdLKgnCRA9TVsSAnZWagAA7AEQAJ5lnGhjqvmVQOPvZdOu\nX44g1Tum6PSBpQfJ9bg119YCwBiVm/zhPWL5DLwTPtwiAFm2Z3v4vkwHzOW8\n9XUUmKFeqeKJm0ai8O3iKjLnTqcP3oC0HeCbzrynPH+8bS6raIre54jfuAoL\n0K7ASyMvbx1YRtLDO9/tISrPj48FeUMTS+rZBnTBfOKfpicQ5tGtH50u/JvF\nTLvVX/ApufT4r5HD5TUq/Ea8amom4rSHrhsRAOdI202cvVetOt+nFsiU3m1n\n8EFtbHFTSmOU31AHy+FeRxmG0BTusdFGDhwrAqxORnwdAl82Apsvb/KyMGRx\n4L7FIMHPWJGstgXw8SErrRZH7aZEy8gU/bXhNOd64KPf/BZMYpvABomCGm1O\nSlyAuAZtwy5eRd6S3kung6emypp0PN7B2i8ZsoTtSgbac4n4ACKY9/Kt4uKN\nBUGQ60Lnb7F3rHAz6tI6+/piNiAzg1Pe7SglRfdoaT/+JIa4jCBK/Fpgz8G9\n7EOUVXBnpEwCxgE8zQSWbQjOAJnKGJ/wm45Uu/9y9mWgBRlzoU+B/fHF2nE0\nX7cyQzpP1yN1ewLTiM7M66JZykj7DWr7xqXI1wwdw9Q2hpMxMaQckD+rgOCo\nPnvwrLg0PH55f67G7p9N1XFsX7zZuJJn/Qf/2FwvyzKT14jSMN0qPhTt13t1\nbNDq\r\n=BXZD\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.6.0","dependencies":{"detab":"^2.0.0","unified":"^8.2.0","to-style":"^1.3.3","remark-mdx":"^1.1.0","lodash.uniq":"^4.5.0","remark-parse":"^6.0.0","hast-util-raw":"^5.0.0","unist-builder":"^1.0.1","unist-util-visit":"^1.3.0","mdast-util-to-hast":"^6.0.1","@babel/plugin-syntax-jsx":"^7.2.0","remark-squeeze-paragraphs":"^3.0.1","@babel/helper-plugin-utils":"^7.0.0","@babel/plugin-syntax-object-rest-spread":"^7.2.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.0.0","react":"^16.8.0","prettier":"^1.14.2","react-dom":"^16.8.0","@babel/core":"^7.0.0","remark-math":"^1.0.4","rehype-katex":"^1.1.1","@mdx-js/react":"^1.0.27","hast-util-select":"^3.0.0","@mapbox/rehype-prism":"^0.3.0","@babel/plugin-transform-react-jsx":"^7.1.6"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.1.0_1563207719210_0.6627401130971713","host":"s3://npm-registry-packages"}},"1.1.1":{"name":"@mdx-js/mdx","version":"1.1.1","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.1.1","maintainers":[{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},{"name":"anonymous","email":"matija.marohnic@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":"3f29b086935dd40340a92aed66b3ef64124f2fc3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.1.1.tgz","fileCount":8,"integrity":"sha512-ebYzls79FvdxD2VmYInNaoNCydrnn9g/cyebF392dDVJ0+IRqLj4fppFgsO1CRxOaBk6cUS3GUt2Qwx5dY5e8A==","signatures":[{"sig":"MEUCIQD5tTDdLEWHst0bF15Pmh6MqNv2efkN1ToEc9BaerSI+gIgVaih59kvQ524J9hNAAS5gYX8Fgu+l5XvWt9vTTIpLAo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19243,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdQEQcCRA9TVsSAnZWagAAx80QAIU25BrLzoDZydhV2qD+\nJSxhsk5QaJYRsulLYq9R2wepCMWJB7EAZi7qroKN7bL7juK3VZ+Jrrq4hDsh\nF83E1fQJcHsKRf3xxPKeEcmF9HrNsORJyvqyea0a5+cXxiPs51CTSMJ/xkY9\ny9f4i759nODXebY+nKf8qlHeCOPyeRSEJTUtOeuKtEHCoBBIvWh6jvshtDgR\nctDI0DEDbFuYwHp3lZfFydv6/IEIeqKfCyeb845Gvo8gCoKtBpPRIlRZn7rq\nUQV0+sJ4elSPvKBy3Of0jOSBjFwgsXWHC2HgfOeBcgn4RN90d88E8ECHQgn/\nlAUiC5TWSq4kpPgFe9eamtgY9iIiiX9R8UJZZ1RaW7q6wJ/69Ow633ArjaMX\ns99JGe8nG+QNSHbb4ZeZ4p7ynqQB9YbYrvWyl03WsL7dhHZiiT49IIGPwxPV\nfMm55uV1vf+mU6WSikkFSxOwgtvfnsPgrM3VnUHz2dj/35jjepbkasLSJ5lf\ngDrkVpOvMfv1SUV8HB6CSekWpOrqSXKRag4tCXIwDHUPZhZA9mYGX94iOWfb\nG+zjUzpQLv50cDdT5+02GCEpiFR3GIOwX1A5B/GE8xSVlIlRepd2FM3r9+vJ\nVTT717CtBohm+pKUReFIOrwWmp8WsQ+IpO3L3JliMuXlIId8a3Na0P6xJw/p\n+4q9\r\n=DtUU\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.6.0","dependencies":{"detab":"2.0.2","unified":"8.3.2","to-style":"1.3.3","remark-mdx":"^1.1.1","lodash.uniq":"4.5.0","remark-parse":"7.0.0","hast-util-raw":"5.0.1","unist-builder":"1.0.4","unist-util-visit":"1.4.1","mdast-util-to-hast":"6.0.1","@babel/plugin-syntax-jsx":"7.2.0","remark-squeeze-paragraphs":"3.0.4","@babel/helper-plugin-utils":"7.0.0","@babel/plugin-syntax-object-rest-spread":"7.2.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.8.0","react":"16.8.6","prettier":"1.18.2","react-dom":"16.8.6","@babel/core":"7.5.5","remark-math":"1.0.6","rehype-katex":"1.2.0","@mdx-js/react":"^1.1.1","hast-util-select":"3.0.1","@mapbox/rehype-prism":"0.3.1","@babel/plugin-transform-react-jsx":"7.3.0"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.1.1_1564492828098_0.04517438628780268","host":"s3://npm-registry-packages"}},"1.1.2-ci.2":{"name":"@mdx-js/mdx","version":"1.1.2-ci.2","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.1.2-ci.2","maintainers":[{"name":"anonymous","email":"chris@christopherbiscardi.com"},{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@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":"10e6b55a73e7b6f990f2a6c4741a583a5812351a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.1.2-ci.2.tgz","fileCount":8,"integrity":"sha512-7pVYfOtcFnjvZHYkwK3ghXiR+Msx39PuigPrZLddts+FoNNyYU4x8s9eafIMFoeeFIdvPArDXwDLB/VI/ppZrA==","signatures":[{"sig":"MEYCIQC39axD6t0zJo6jhIdRP+cLmMaOgxZRUb/RbsBFQLqF1wIhAMfRXe8aPeHpF4QZGSA/D6rsOVzqlra47cF5TR9InLpo","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19431,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdQeA+CRA9TVsSAnZWagAAfacP/1ESEFiSjWTcjsovuHmS\niH/BWL/0pSXN60ZLLvmOey+4p0TnVxgbZpAUGjShNN8MqOiAiBRyc/fKHzNm\nG9ZBriy04LLfLm/Tn+aBRKWl/xyITYDVr4nz3Ui0kKNG7rE5PLTYlmfnx0cV\n4YTHUvD5QDt5BVNFJHVSsk8bFVhjJMr8gyXMvFHkFyjQDMcjsQg1pd9uAoz8\ngtOUWM93Ofu0r2QPnEeprnio4yYIhzCoHyGStztyoNyqOo+k3NuOKWQbpgOB\nMFj4lt+2u5+wKHBWjTvCpd5MBL4hFnIFFB0VJqiFNqQ/l/ifCwfB7AYQlqOf\n9rCDq82vAYlb8pG+4O20L6iTcg4x8zXTDtNQpBCwRZLA5iKCmXOxN7udnlWP\nEixcDpmX1N05zKCiyxkql1iB8eQr8Kl4Dwfwr2SZQCWu/9kduPXUh1iOkEW0\nPDx5hw/glEhUvcttbcRC7A9pqqsXbXlhtsWNeNmIP8amKvPP/3kaEB7OrZup\nkjhPg0JiVVcfgZKvsslPSF0JaTbAlI2FDdQ/3oZ2v37E2gxaHHi2hAajEL8Y\nj0/9LV7sTPDoScIZ8XJqH8YzlcdAa7zUYirW0wqmEN0uQtVr48TWtAv5uH9U\nFPxxYLi8izR4tmOweC1WBPeO4pRI5QVkCRu43hS4WmyDOgDuxaCC1gSp0YD7\n1U94\r\n=rScH\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"gitHead":"c0a416fd6e57de5eb591716b30ab2e5e32b4377b","scripts":{"test":"jest"},"_npmUser":{"name":"anonymous","email":"johnotander+npm-johno-bot@gmail.com"},"repository":{"url":"git+https://github.com/mdx-js/mdx.git","type":"git"},"_npmVersion":"lerna/3.16.4/node@v10.16.0+x64 (linux)","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"10.16.0","dependencies":{"detab":"2.0.2","unified":"8.3.2","remark-mdx":"^1.1.1","lodash.uniq":"4.5.0","remark-parse":"7.0.0","camelcase-css":"2.0.1","hast-util-raw":"5.0.1","unist-builder":"1.0.4","style-to-object":"0.2.3","unist-util-visit":"1.4.1","mdast-util-to-hast":"6.0.1","@babel/plugin-syntax-jsx":"7.2.0","remark-squeeze-paragraphs":"3.0.4","@babel/helper-plugin-utils":"7.0.0","@babel/plugin-syntax-object-rest-spread":"7.2.0"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"jest":"24.8.0","react":"16.8.6","prettier":"1.18.2","react-dom":"16.8.6","@babel/core":"7.5.5","remark-math":"1.0.6","rehype-katex":"1.2.0","@mdx-js/react":"^1.1.1","hast-util-select":"3.0.1","@mapbox/rehype-prism":"0.3.1","@babel/plugin-transform-react-jsx":"7.3.0"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.1.2-ci.2_1564598333633_0.7839147077970534","host":"s3://npm-registry-packages"}},"1.1.2":{"name":"@mdx-js/mdx","version":"1.1.2","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.1.2","maintainers":[{"name":"anonymous","email":"chris@christopherbiscardi.com"},{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@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":"b0fd55763d4252d3793fa1e5f9628f0e8029cedc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.1.2.tgz","fileCount":8,"integrity":"sha512-q9XVh25YUa9FkD8K0DblZB8f5hlnRwNxg/AB3Djzby6g13xViAYxCPlF0CuklFfRubF0WWboCVUeb8HEeYvJiA==","signatures":[{"sig":"MEUCIFBNEuzSoF5+Zv3tmx6mFWJ5st0MDSsSykPsP1KTn4meAiEArjC5pDzoePfse7t7GYFrjfDbRlA4BD7mIDORBTSWrus=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19418,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdQeB8CRA9TVsSAnZWagAA1iAQAKPHlntuf0LWqaP4ma4l\nkKTd+D3jFQVBa1fhCqfUm0s2/o73iEpGws3o8ZlNd5/jCBAqIZnLzEDYE4vH\nU7crgRiqWiFqEBx8ZEdH7lhh3zlWSmS+W1GcOX3MOBkEN0SpzX8wLvi0SeCa\n1CrD+0OVySlFBjRWHU1KSYTaDsD4uvi1AyVcbzgJ0Zs1Xlf544QYhu5kXg/b\n+y6oyXcN1an0xh55wRyhGCxj+rbrBcURd8GcL2k77ngiXBhj6qvjdEt0GVUN\nRn3AgslVLwF3jAXJeZr6M9P7BMBK+s2wtlnjxPWzo91v/2F6iJcmaU/8L9cJ\ntZwoXWR9xmjtkjy58D/n+5PkbQhXrv0vwFFXoKDhMXGAfjq8YSefInFPokFZ\nfaRKTySc7YI4vAW3frnX5Y+llUUoVP3hiBchZ0yCisPqmAjclhpjzLPCfmKF\nzVKeGt7cLN6rPCEhnhlvxazDMFGTvTwKAfJgFUdPq9AK6HCQVASoNZiEoxGr\nhp0dvBPPzrZVuJ8J+3aedMdY0Prbg1B7A8un4mweX/yoTHJ3tl2JFPefTiu6\nUwDtW2I3fqe9FL942HB4U4pM3EoHJI40caM6GhmgoPsGODp9QsAA1KjhrP7A\n+YmkwiYg1Rlri1TEfv8m+i5p87FqJY9CrCvJZKBijTe0m0cEG/uGg+T1iLBT\nQmbq\r\n=cI7y\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.6.0","dependencies":{"detab":"2.0.2","unified":"8.3.2","remark-mdx":"^1.1.2","lodash.uniq":"4.5.0","remark-parse":"7.0.0","camelcase-css":"2.0.1","hast-util-raw":"5.0.1","unist-builder":"1.0.4","style-to-object":"0.2.3","unist-util-visit":"1.4.1","mdast-util-to-hast":"6.0.1","@babel/plugin-syntax-jsx":"7.2.0","remark-squeeze-paragraphs":"3.0.4","@babel/helper-plugin-utils":"7.0.0","@babel/plugin-syntax-object-rest-spread":"7.2.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.8.0","react":"16.8.6","prettier":"1.18.2","react-dom":"16.8.6","@babel/core":"7.5.5","remark-math":"1.0.6","rehype-katex":"1.2.0","@mdx-js/react":"^1.1.2","hast-util-select":"3.0.1","@mapbox/rehype-prism":"0.3.1","@babel/plugin-transform-react-jsx":"7.3.0"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.1.2_1564598395548_0.8553313791920891","host":"s3://npm-registry-packages"}},"1.1.4":{"name":"@mdx-js/mdx","version":"1.1.4","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.1.4","maintainers":[{"name":"anonymous","email":"chris@christopherbiscardi.com"},{"name":"anonymous","email":"johnotander@gmail.com"},{"name":"anonymous","email":"johnotander+npm-johno-bot@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":"8db9d3ca6a58cd16ead502e82e7fa306e91b81f1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.1.4.tgz","fileCount":8,"integrity":"sha512-CL01jH8AOiaIGVYXGFEwVbnKmtUF7fh9Cr/nYTBsH/MeOkNesJD+OMmdskfraTo/QI0l4Bt70AeD165WPMXaGw==","signatures":[{"sig":"MEYCIQCOdfp0w6xwefwggTyC8r9IULjo+XEVWKT8p+gMeYnYEAIhAIVyhgq0UP+3KRBHzNdxpeGoff6C1IGHM2S5aeNwgXSH","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19418,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdQeEmCRA9TVsSAnZWagAAPYAQAIRfZkiSMZDjN+ETTp78\nQ11n7R78TE5jOGK2TAMuIwHX+T3K7igTNlbEwS/BIlrbjx1w4rTBhuJxVdgN\nnjdwkQdQQKZWpoXEw+yjAACVQDYInm+rmZzYp33ziJDzhGWcvKRU1SsO+Oh8\nWp/re5jPd3dZody+Ma0TirFHA3sHfdz5YtNSr/1hOD3W690r1AAIc3NWDi5p\nojSbibQ14qnrXOqIfxcwDMZMGNK99a5LrxK5Y/O2CNL34Ji81NIlHNI7aGf0\n0Bqqi7hOI61EB2tdFFX0d/YcDg+E0y8yHGwW1ksInBkPb1zLytSaq8TlmHHJ\n284VGbNfx2eyXdPj4PX+4fGiZpm//SjYEX70Q4EL8Sr2KQlSpbMy+g4z01KO\n82VtBGQP+JpMdAFZ6mA/NQNlJanMN5WEmmaeIrfgf5tk41CgYa3BPfpxgVBP\nLUofvrphqJldx4zTAOj1P01N+RqjzM1rcbFz9D7aTOBXQL2+vwgusg33lnYh\nejm18sPQU6Xib4h0ec7ICECEQe3YzGofyHMdjPu0rtwJYPMbj8IszYhBz7zJ\nD0J1owaX3v812Mi09jioTUlwgFfnIV/Cy6HxOVALQPjISUTgcgKyiVGZdXuS\naIGvbdlLCk5/6EKnIKaQCqMpqDj4ciM57qgBFfsv+RjG17DeXLHJSgJP7EUo\nbFbd\r\n=Ofqs\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.6.0","dependencies":{"detab":"2.0.2","unified":"8.3.2","remark-mdx":"^1.1.4","lodash.uniq":"4.5.0","remark-parse":"7.0.0","camelcase-css":"2.0.1","hast-util-raw":"5.0.1","unist-builder":"1.0.4","style-to-object":"0.2.3","unist-util-visit":"1.4.1","mdast-util-to-hast":"6.0.1","@babel/plugin-syntax-jsx":"7.2.0","remark-squeeze-paragraphs":"3.0.4","@babel/helper-plugin-utils":"7.0.0","@babel/plugin-syntax-object-rest-spread":"7.2.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.8.0","react":"16.8.6","prettier":"1.18.2","react-dom":"16.8.6","@babel/core":"7.5.5","remark-math":"1.0.6","rehype-katex":"1.2.0","@mdx-js/react":"^1.1.4","hast-util-select":"3.0.1","@mapbox/rehype-prism":"0.3.1","@babel/plugin-transform-react-jsx":"7.3.0"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.1.4_1564598566499_0.15712200246718977","host":"s3://npm-registry-packages"}},"1.1.5":{"name":"@mdx-js/mdx","version":"1.1.5","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"1d9e091f942b3c7cdb1f33710601c8139d6e5a89","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.1.5.tgz","fileCount":8,"integrity":"sha512-BqUC3kY0v3fLWOakjPQ6jwDa1+C5ahY4RA2Kwu8rvApqCczAQOIsQ5ReZToPRPASx6LT7M9WQRH8s5VjOM5v5Q==","signatures":[{"sig":"MEQCIES/Vg4+j3j+EjuUD900kTwf9aGULU1haeX5cWoPJJ9IAiAUIxxGWBoX5IY+UytCDDy3RjGMvKsy4oFkqY1rQ9VjWw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19418,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdRKg4CRA9TVsSAnZWagAAyrkQAJBBhknSjY7MbwUPsC9K\n2jgAfQblBq7AmAMoicQvLyHOtPG5qBhPp7EkH6Td2UNuRWsahxjueqCuGI3d\nlt4WQbLIq7I7/jC74tg48AwdnntcvJtQ0Z+nSrOCPkjmHNavAiGbhIovnXEZ\noEtgkK11ljjNXlzB5rwFf7a/XIScPi/fIOFIjrNATqEV78EYMal2LmVoAd7N\ni5rOn4QQo12UNS8usaWJqS38IK5SnLoD5jSOvDPALBSDZT9+g6Sqx4EFY6Bj\nIEBN8rVsnZ3X7p6/4yZrjdyu0C6yhUaKKvs5J6kxPUMJhOE0mzC4wIsJMcI+\nTMb+QoIfOEYtZUsxijQGuVK9sHIRHI7Q+Be9c9kIG8CrfQGmD3mgi5vHWujR\nLdcUkykrA6ljgaOspFK4/BogHkTqHCZpIRv2eH/bjsUXr5DnezD6MLFqHiUR\nsE+sG9Vcg14TC58ja+bmoTqEdf/kJMVnMJ90DIwt3n3ZMj7hhSpJlkPj5zUM\ny3l3d/e0tPQWk1mS1N80SBiyVeJ9q7iTMgIaSxV9lzfIq6EJUzZjwLKjcNy7\nwvn7gE5amZZcGIJKeiAIF/lgn79Qe0lMcVjIO8dCJjS/igreSm+tNTVFHwul\n6krM2vf7Bd+IzXvFn2ny3DWOgXtOHITVxp0jye9gl8kxIBlmaYH5LWHmb4Zv\nNNEo\r\n=3k30\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.6.0","dependencies":{"detab":"2.0.2","unified":"8.3.2","remark-mdx":"^1.1.5","lodash.uniq":"4.5.0","remark-parse":"7.0.0","camelcase-css":"2.0.1","hast-util-raw":"5.0.1","unist-builder":"1.0.4","style-to-object":"0.2.3","unist-util-visit":"1.4.1","mdast-util-to-hast":"6.0.1","@babel/plugin-syntax-jsx":"7.2.0","remark-squeeze-paragraphs":"3.0.4","@babel/helper-plugin-utils":"7.0.0","@babel/plugin-syntax-object-rest-spread":"7.2.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.8.0","react":"16.8.6","prettier":"1.18.2","react-dom":"16.8.6","@babel/core":"7.5.5","remark-math":"1.0.6","rehype-katex":"1.2.0","@mdx-js/react":"^1.1.5","hast-util-select":"3.0.1","@mapbox/rehype-prism":"0.3.1","@babel/plugin-transform-react-jsx":"7.3.0"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.1.5_1564780599631_0.2988495720961091","host":"s3://npm-registry-packages"}},"1.1.6":{"name":"@mdx-js/mdx","version":"1.1.6","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"40b758a3f6dbd8dcff8f91af4523195a68298a8c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.1.6.tgz","fileCount":8,"integrity":"sha512-DyHEQ+17/XrzBOV+Jxt8PuzpJ5iZ1L7G7My7qtUrIjstQXu24emfo3E0/uIt/rizEXu4CuX/ryBVWrqUwcJPYQ==","signatures":[{"sig":"MEUCIQCv6KdggldEeZGig1onEE5pGTjqqJ6xH3sCTnuo7+SvagIgNAlVoUSwW3B4MqhZxtWQHzQrfuKnvMGe4SmpP3P3WWU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19522,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdSa+gCRA9TVsSAnZWagAAwvAP/0Uhsc/Iyn7Rpk+VgbMK\nkMi1iv+Zg98l5ySlmk/9Ezu6uS9s9tCFfUx9PefQYh11TB0Swo+53Is18kgx\nKOLULmTuKYV+aqTeWcrWFArMcrOxKodXfiB66xSNEJdXM4lS01q21nEO+Ruk\n7vGvQyAsmiNtCQQfDoCvLi4hrtClu1UnBzIaLhjPvY2iAg08rXf3HI5l4yJM\nn0d6KUajIxZpQhOiF39rMcvKdPcSvSgDOgXutjlVrxZsx3Bd3gZgLHwsihAa\nVJvZWrBc8JC0ZSAazscQoriHdp6RWscDFIOYMSKQL7hxvZH5IExkxJ9pRffz\ncV/P6lc93U8hRPcK0h6i5fAQcZX2RnvCiMlN84LWKCcBAEfjjH8+Q1EyTTKv\nO6kO1bc/sIYY29mjAmD3q4pi7J2btq09TD5bxJEUBp2YVuVVXfnJZxJ7iwjl\nlS0ViCPlNw3aOlaGKlvhmCcH9MPr3n0u01/BhTVjujuILKK+McI+0OjMWQTn\nxbsolDd3VCuprTuYnSKbPheMSZa+BDuAJhJrAtA1GjsnHTIp+a4kHGMIUO2L\nXSNnyX8jqLP+HD0N1fo6z6UWvvkteIQHhJqfZsEknXf9JYYVLGq7JRRnbja3\nK5k+9oa7J0FC8qkVPRKkCovAi0a4ZLJ+5vb2vxWAk9nBtqko0sisMjS8diww\nIpKh\r\n=r7Qv\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.6.0","dependencies":{"detab":"2.0.2","unified":"8.3.2","remark-mdx":"^1.1.6","lodash.uniq":"4.5.0","remark-parse":"7.0.0","camelcase-css":"2.0.1","hast-util-raw":"5.0.1","unist-builder":"1.0.4","style-to-object":"0.2.3","unist-util-visit":"1.4.1","mdast-util-to-hast":"6.0.1","@babel/plugin-syntax-jsx":"7.2.0","remark-squeeze-paragraphs":"3.0.4","@babel/helper-plugin-utils":"7.0.0","@babel/plugin-syntax-object-rest-spread":"7.2.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.8.0","react":"16.8.6","prettier":"1.18.2","react-dom":"16.8.6","@babel/core":"7.5.5","remark-math":"1.0.6","rehype-katex":"1.2.0","@mdx-js/react":"^1.1.6","hast-util-select":"3.0.1","@mapbox/rehype-prism":"0.3.1","@babel/plugin-transform-react-jsx":"7.3.0"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.1.6_1565110175573_0.8832029544609021","host":"s3://npm-registry-packages"}},"1.2.1":{"name":"@mdx-js/mdx","version":"1.2.1","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"cfd75ddfb8b084d6e705eda3293e04c586bdc7a1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.2.1.tgz","fileCount":8,"integrity":"sha512-HbKr+Z+pZ8PxHAfUTenEl4v5D5Ret35dj1v/Onmr8p1A9/7tVapsByDmJYJJyOC1iRRB+kdP2C4RHzUHAjxfQQ==","signatures":[{"sig":"MEQCIG+UbKF/us/Or1UeGkEob9U23fO+sPj3o/Sh2gT7FZyQAiBcd3ctDOcm/NOuU3X2B/8DPA6skQr+/vDVQHksB/u+Tw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18045,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdTKgJCRA9TVsSAnZWagAABGsP/0IXNwqn6yyGZYzfme8v\nSKuGv4sV1ZIxJADOE6IqxvixJ5Qor9gQW3ysonYz7LIY+7hbDPVHwe9pCa65\n+OvGvGm+C/rpRGEkGTDtVUlZzg2OgjPQYxMpT6D52UzN1AJeFd2puJSh//ML\ngP/Eva+UUrELK5H2uutpH3+xjY99DHunZ9C5jJvvbjkNEOU0AGvv6UQaL4Vg\nALk72Ppk6hNTbM7Cga5OjZVJ45i9rRAlVsI5FZfRi1/GMOpuwUnNS9l9IA9A\nSt+mUsFHaxMCLAG8HNdfiup8YbDoG2Oh7Vd97tOu4w2f8JYaYB7sX+l6rbAO\nr62qm+x1ZjL+HWawUdtK0EwX+ldXmP4Gi/lYMt26ezkw4NxHdQvD8usEZF8n\nmDYvJm56d0YvOxUiWyPjF3uvcK7iFJ38MPRdF3PLMwCfrzcxbdNmqlS39rnb\n89CpRL1D2MuIuN8OXK1uUWD6eU94uqRslZNkdSO+WDecyyi3kvBlNikPqw8J\n016NGVa81GGkdzZGO++7Jt/l9R/NjsHqrXgDoPk3x/P1tKcniAQUm/N19BCv\nnnDxNlUwlCDn4PEbu7M06q3yzi+nRLDzE68ikUNkZumKE/vwpbP9JPRhJWNc\nlglwQg3M4WljWUEZo6xAKNGTM0C0StYWC60vxQ3yNpGfmut1VignOqZSJdZ/\nVUqm\r\n=yuoH\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.6.0","dependencies":{"detab":"2.0.2","unified":"8.3.2","remark-mdx":"^1.2.1","@babel/core":"^7.5.5","lodash.uniq":"4.5.0","remark-parse":"7.0.1","camelcase-css":"2.0.1","hast-util-raw":"5.0.1","unist-builder":"1.0.4","style-to-object":"0.2.3","unist-util-visit":"2.0.0","mdast-util-to-hast":"6.0.1","@babel/plugin-syntax-jsx":"7.2.0","remark-squeeze-paragraphs":"3.0.4","@babel/plugin-syntax-object-rest-spread":"7.2.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.8.0","react":"16.9.0","prettier":"1.18.2","react-dom":"16.9.0","remark-math":"1.0.6","@mdx-js/util":"^1.2.1","rehype-katex":"1.2.0","@mdx-js/react":"^1.2.1","hast-util-select":"3.0.1","@mdx-js/test-util":"^1.2.1","@mapbox/rehype-prism":"0.3.1","babel-plugin-apply-mdx-type-prop":"^1.2.1","babel-plugin-extract-import-names":"^1.2.1","babel-plugin-remove-export-keywords":"^1.2.1"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.2.1_1565304840454_0.6371127627283293","host":"s3://npm-registry-packages"}},"1.2.2":{"name":"@mdx-js/mdx","version":"1.2.2","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"027581a5dd5a7d7bcf6ed94f361d03710fa45124","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.2.2.tgz","fileCount":8,"integrity":"sha512-o4b/1JFyhl8ep927JsAW3pQYQpnq2xJ/pO9/5SFp+W5ZygYTYI9Z5MFVvVkPKSDNv+nxPkQ4Lya7ecbNxSZlkg==","signatures":[{"sig":"MEUCIDXvsQEWJiy3nu7Ay/5qwa3rtO5cA5AEarPUdthvrQIyAiEAlVlheL+tH9YSKcpSlXj7UKhuiygVmDGgEHFALyVaGsQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18045,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdTKkFCRA9TVsSAnZWagAALFkP/1HR2dFeqHPf64B0QC9O\nTJhGaKCGRQxOJxy6C6GbplVKnpo+klaDmMMRHG4Z1YjT7ipvq/PVWItuoyf4\nj4/qIQSvIzMUHX4sVFHKMd86HsZ8/dLisfe3QHS54SwNGyfwGut4X/4Affnt\n06UG1oECsoyfdfZrcmvbVvXHfAMlAd0kGe0EYarLSO2sB333uxxWHhIxyOyi\nYJTw68lha31YtP8Exah7PBngysDAQGbDbYwXiSr33dYORXOSaxDqmZYDBqXV\n3yNQPo5RbhnVo977c7rYD9GFOHBZV72M44gcHgkggsQviJcfhEcw+e3BWkox\naFP6O6gb0c3YmsmcNvaItSwrsqxrxsjTuULYYF6pym2CKn8V4twLPIiISPbu\nJRJf0HwoLYXMy+YU3NEFIwwQ4Uxa9ukVXPWpI+4MmzPKVab7R4d0hrjoaUWY\nhUmydhkas8Y4Bu+VL1h7inyzQSsJxxkX39dxLxYLr9OYqG77dgqJDBs18vNb\naKTt6pvmctPduCWZNSipTdMSamc6fKUQPmmIYV7+0NxxaD2yqKXi1tYMXlpN\n2bbysIsw2JRQ4hovdZx5zEbGacAf3qu5tPbFGUYMcJjwrd6teAO056ZUNMVb\ny0VKhp4ByQ5YpeN5nS3lOZDiJRQ0OvF0J3dq3YlqMfXgsk3PJb9d8yF+EHB/\ngMAw\r\n=oIxB\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.6.0","dependencies":{"detab":"2.0.2","unified":"8.3.2","remark-mdx":"^1.2.2","@babel/core":"^7.5.5","lodash.uniq":"4.5.0","@mdx-js/util":"^1.2.2","remark-parse":"7.0.1","camelcase-css":"2.0.1","hast-util-raw":"5.0.1","unist-builder":"1.0.4","style-to-object":"0.2.3","unist-util-visit":"2.0.0","mdast-util-to-hast":"6.0.1","@babel/plugin-syntax-jsx":"7.2.0","remark-squeeze-paragraphs":"3.0.4","babel-plugin-apply-mdx-type-prop":"^1.2.2","babel-plugin-extract-import-names":"^1.2.2","@babel/plugin-syntax-object-rest-spread":"7.2.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.8.0","react":"16.9.0","prettier":"1.18.2","react-dom":"16.9.0","remark-math":"1.0.6","rehype-katex":"1.2.0","@mdx-js/react":"^1.2.2","hast-util-select":"3.0.1","@mdx-js/test-util":"^1.2.2","@mapbox/rehype-prism":"0.3.1","babel-plugin-remove-export-keywords":"^1.2.2"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.2.2_1565305093303_0.23635119668525584","host":"s3://npm-registry-packages"}},"1.3.0":{"name":"@mdx-js/mdx","version":"1.3.0","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"6308ef92faf4b500475ea5d0f7be051cf7a0099f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.3.0.tgz","fileCount":8,"integrity":"sha512-+y1i4ubx8HEaYiFcfDxbTAG6U85l1MwMpVkPhsI7NJRtlCFAJnlHHHX/b2Q769+V8qmvs0UUU3zW5VJea9fu4g==","signatures":[{"sig":"MEUCIDhGne1WcuGXoVy3Xjjw/QE0Ij0WrXzUiwieWGVblt3tAiEA8qVhq50Gty48/EYFw0UiUOdSlJYdDYVEvKvHtm2yxKQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18044,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdU0DwCRA9TVsSAnZWagAAb7kP/3kN1KXWboGmVvKm+CHC\nalnW16E+kDyKcGwyi1FLjUjIri0L4MuzHKTLMhTCSXl9xZN4TUwyRbYH7s0a\nOnQUd9ihtsMuP8sbPFLa2gmZggyAPPc6MfQEx+itwhEeMq0A5/6lWdwet2rz\nhqyWsDmonYEsrrI/fyfFzISCT7xOM40V/U9tJO4xZ4VCPLkvP+vFfptWSjTC\nMZAyVP+XCTesOjPlG49Vij6uEGf0U++7tf54IeKh9UCPdTzLJKouGT3ZSrnj\nU5Y4nH9c0J4WJzJcP0qLv2lJPmwjlG59eyA9WLrFpU73tI+jrR9LRYtwLs4j\ndK8lCNPh7k7d2nOmvrGoW9lwzExOixkxK4HVPub0o4HK2NTRqodh6DMidwoc\nnBwDzP8ixX01tEPR8teChWY4rBK8iadpSt6Y9qj3hooFJHF+Vk+HfG/zD/nS\ni7sNOA+/iu4L5XXPkaAUdImfNdJKIchRogzvLESQOdiOBdGXZ3bl+T0sYl5i\nykXq4Ns4288vb6Tz5CLk9fLiVyX9pY7KyGxlxR/eo6MiFTc/fb+lhp0rBFGS\nYGE7mgjdvnF/xdiAt9YTFRg4LNNLiDWX9+AeHL1AYNL0g0bAVYol0S+VO82G\nigNVj1WTda1BbbbfB1uBwH8amwfQAapPVRnHrliYKjv09h5nAHVll832T2E0\n3K9n\r\n=lKig\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.6.0","dependencies":{"detab":"2.0.2","unified":"8.3.2","remark-mdx":"^1.3.0","@babel/core":"7.5.5","lodash.uniq":"4.5.0","@mdx-js/util":"^1.3.0","remark-parse":"7.0.1","camelcase-css":"2.0.1","hast-util-raw":"5.0.1","unist-builder":"1.0.4","style-to-object":"0.2.3","unist-util-visit":"2.0.0","mdast-util-to-hast":"6.0.1","@babel/plugin-syntax-jsx":"7.2.0","remark-squeeze-paragraphs":"3.0.4","babel-plugin-apply-mdx-type-prop":"^1.3.0","babel-plugin-extract-import-names":"^1.3.0","@babel/plugin-syntax-object-rest-spread":"7.2.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.8.0","react":"16.9.0","prettier":"1.18.2","react-dom":"16.9.0","remark-math":"1.0.6","rehype-katex":"1.2.0","@mdx-js/react":"^1.3.0","hast-util-select":"3.0.1","@mdx-js/test-util":"^1.3.0","@mapbox/rehype-prism":"0.3.1","babel-plugin-remove-export-keywords":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.3.0_1565737200397_0.6103984408033516","host":"s3://npm-registry-packages"}},"1.3.1":{"name":"@mdx-js/mdx","version":"1.3.1","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"6da8137e29f1a3430fdfcba49fdadc8214f2e8af","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.3.1.tgz","fileCount":8,"integrity":"sha512-mLP4iN6OhDnA9IqAiKAFb/wSnmwU1Mb9gy0szzV0QbDHtlinmzQmK2YyEv9Stf8NXvWbsNVTj9p3hy01nZY9yA==","signatures":[{"sig":"MEYCIQCFGVAR7mhKodBJYtKk657G77CIG32yOHN65GxgzMxacwIhAJp7YWqGGPCqKlC380aVnS1fTgp+GRNnJysZhGZfqWyX","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18044,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdWXQdCRA9TVsSAnZWagAAMpMQAKQW5uDypfCgrDeL+hQr\nMfXxTQ7iofuq5sGVwRbLDcZb7pwyCFFzYZKRlyEvXr5JO7qd49FybF301SX0\nMX3j4HctjoMZhs6BxmCizO5koaNuX5UZk15bHDi+t4WVIcZY9fm+9qHYIK4f\nwBL+Xua4yIet5dIOXI4mVX4rKQIi52TUXIHAGhP6UQpCG6qUwUZyZdz/zh07\nbG0oyy+IuNfgxTXVyfu5b9ecXooX5HfyNL/sgT9HheregR+e7J90SNScbvd2\nTVp/0G3sq/3ZwO7aFHVdAceRDdxOiDuy22I2951yQmULHE4VChh78IVsXjX2\nJAkZcHK0Gc3LXLdcJCqqYEP1Dax28rXN9ZVuy+Dy2Jmxm2NS+VpNCk6/i7xl\nxJ3qKIcuU6amtrRKuOP02DTrY0tyVWikwYTwwCrI8Teju1CDumCP4UYSF4Ly\nkRkt/CXsMSsbDslkjj08ByVF91WgxpdVnJ1cFfLK0ZqWraXJPY5/zUjqghLX\nMMM2hJNQBVgrvGFOCjMW89AlhhBT3orW68Xu0e3r953QyEV33sYQaRb/2Hhv\nNej9xee2fYSj07fG/u/lioeIZ6QWlIuZEy75VbPw4PXSkXP1iiWk6PKoHEzo\n0TmufOp68kEYwNQaLbwM9Bo3mXL3agoa63sAD7MUD8LBxYeFHhxfehQmt9IJ\nEiIo\r\n=lDUY\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.6.0","dependencies":{"detab":"2.0.2","unified":"8.3.2","remark-mdx":"^1.3.1","@babel/core":"7.5.5","lodash.uniq":"4.5.0","@mdx-js/util":"^1.3.1","remark-parse":"7.0.1","camelcase-css":"2.0.1","hast-util-raw":"5.0.1","unist-builder":"1.0.4","style-to-object":"0.2.3","unist-util-visit":"2.0.0","mdast-util-to-hast":"6.0.1","@babel/plugin-syntax-jsx":"7.2.0","remark-squeeze-paragraphs":"3.0.4","babel-plugin-apply-mdx-type-prop":"^1.3.1","babel-plugin-extract-import-names":"^1.3.1","@babel/plugin-syntax-object-rest-spread":"7.2.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.8.0","react":"16.9.0","prettier":"1.18.2","react-dom":"16.9.0","remark-math":"1.0.6","rehype-katex":"1.2.0","@mdx-js/react":"^1.3.1","hast-util-select":"3.0.1","@mdx-js/test-util":"^1.3.1","@mapbox/rehype-prism":"0.3.1","babel-plugin-remove-export-keywords":"^1.3.1"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.3.1_1566143516504_0.7181523282150117","host":"s3://npm-registry-packages"}},"1.3.2":{"name":"@mdx-js/mdx","version":"1.3.2","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"67c2f2646968a09f3a88c6283e4a73ce9a511758","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.3.2.tgz","fileCount":8,"integrity":"sha512-SXW9GxSyjrT4wGbaqX19VT3/6d12vjdJqPC6Xdp6TozhD/DNzfFApik9nD5uedGRYbHZyOt8Cdq6OahQRuI8/w==","signatures":[{"sig":"MEYCIQDy441kGnHt2iD4oRxN2AUEArMkZxlHZ/l/rtQh8BPt3AIhAItFt6xEOxHmOQXBhMgsRzESOXL2hQqIWUFdkSQJipPH","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18044,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdYtnRCRA9TVsSAnZWagAAD3gP/2Guwka9Vo+6vjGsAUe2\nZLVYMcw8bamX+UQuoIS40KO/4mkhkOpc0j46Z/J/jWHWuEzYOLccdnbGPry3\nJqHsaOi1LTSQTWFV13dW9nwcDU2hRvHRdmmPw5iON8GlNZxPQiHnlyXe8Ect\nSJlVXhgM44suol2+Wl6pjuD/JfvdqHlH59VLq57cqCZ+xlQ6+/3OfLSxDbyO\n+ycUEIRqD7eQYWME2m9mF+0+7rhasCqN2n19GHCKGYcI7QLY99sCYtNi/L5b\nkJcaWDLMHNjqS6g9Rf6ldlLV4IC5fnDWaOeERsuHlF/S4TLzXbXF8o0QoXiV\nkliiu1EyXBA2XxOLW2aLF+C9r768wZn1E1QqW2KKQd+w8S87T6Mp8NR8swZF\nYszZGrOLPxfuClRx2ASlIBAbMBsSWEROpFn1eT02q6xb6404umBLzWvt6ye6\nd6Gwrf3f5hNBh4FAHQiOOL8tHvaJkhPWVACJP7l80YKG0bxMbppsCjO3Emhf\nSDMiCvatX3T3xbaeDvB8deQxlbADVZTmcsIPKj+GaLVa5VBCFK6Osi9+FeMF\n0hrN8My8YmIF9vjboLPM2hLx1XuaW+N8LozgCslOw8Ib29kU8ZHLOcEYL+Tm\ng2rnCAG8M/A5JVs35dIJkU5nZ86Vk6Nj8H43TvkmFUZghgyaZeK43UFmCV+i\n9x0i\r\n=th0Z\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.6.0","dependencies":{"detab":"2.0.2","unified":"8.3.2","remark-mdx":"^1.3.2","@babel/core":"7.5.5","lodash.uniq":"4.5.0","@mdx-js/util":"^1.3.2","remark-parse":"7.0.1","camelcase-css":"2.0.1","hast-util-raw":"5.0.1","unist-builder":"1.0.4","style-to-object":"0.2.3","unist-util-visit":"2.0.0","mdast-util-to-hast":"6.0.2","@babel/plugin-syntax-jsx":"7.2.0","remark-squeeze-paragraphs":"3.0.4","babel-plugin-apply-mdx-type-prop":"^1.3.2","babel-plugin-extract-import-names":"^1.3.2","@babel/plugin-syntax-object-rest-spread":"7.2.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.8.0","react":"16.9.0","prettier":"1.18.2","react-dom":"16.9.0","remark-math":"1.0.6","rehype-katex":"1.2.0","@mdx-js/react":"^1.3.2","hast-util-select":"3.0.1","@mdx-js/test-util":"^1.3.2","@mapbox/rehype-prism":"0.3.1","babel-plugin-remove-export-keywords":"^1.3.2"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.3.2_1566759377155_0.3517164931184438","host":"s3://npm-registry-packages"}},"1.4.0":{"name":"@mdx-js/mdx","version":"1.4.0","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"465218fd9d2479b745eeccb4875601b4f0537cb6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.4.0.tgz","fileCount":8,"integrity":"sha512-JV7lBmc4GXu/g6ATIjBBe9iovLnMFP6Ka6ZAIeiZHBRrhec1oj9iYTTShmRY+w2MsMfk0vBIxJxQSiorf4pGYw==","signatures":[{"sig":"MEQCIHJD1uFx8A/Ly5toy7BE6pXaMKjtNIu0sLXdhqJTEfIYAiAOBInzGQCnuvmGKU8a9vKYbH0tOlZoaMs+M8ejkpHYAg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18044,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdY+ZMCRA9TVsSAnZWagAAwTcQAKHGnSqDoCprNhPGcAZr\noSyqFUvL6rCP7gtWYgtwME4Tye59X4H/5dWTfaOFx4Bi59bUNWLX4Hc74++A\nGtUwJdzr8E4zWfh5jAOuTNXB4UtFDH1mBvQ83VqxO2RMo3FubGHB7TvJQ3Tw\nn0JM5869RW1xbHJwzX1BHYX1hc6zjdHzbbJJr/SvUmJndR3hbu/SrDVGEojh\nt/zeIZdcRvc9Nx9XgzGDeKyfCWji1/G7EqILn3IawQ54I2xSr/2RPlMbZSZ5\nvjeUlo3w19V5lzpq+dYG/k/o9DKQ3qjtDZ4rq1M69N+wz2qYk6VesEg0bEAr\nKspXTCnJHE5va2EUV3TIcZOj+127aD55sSWmD/PDfrBl+7lfJ0oeU63VAKxu\noxJeFaeXOTNENlrpMluXpqtfzGKmCZwT2txta5f2oKKWSEYJ4UzExtxs1kHK\naNj/FM5VKnw+0tA9yTdUL352b9NMmDyzvRz7AcUVXjdZFLKjJLsBm9VGo2do\nxyI7sTVibFxFAR9sAzwdgBoUOx/M+d0tB7iLbmdxmxYJ1H3Rt6rt5b2K4f3m\nQPJvxpYzHnwFwb/IiSj9eqx1MNDNri5fyiicpDWHbSrHb5wiVjmFKpLrACRa\nG5LC4BZzNXqfDWNOT8Wgi0QFRYxrNlDLxtVxUY+iUsaZfSM86xdky5SSKQMl\nOqS2\r\n=1jBS\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.6.0","dependencies":{"detab":"2.0.2","unified":"8.3.2","remark-mdx":"^1.4.0","@babel/core":"7.5.5","lodash.uniq":"4.5.0","@mdx-js/util":"^1.4.0","remark-parse":"7.0.1","camelcase-css":"2.0.1","hast-util-raw":"5.0.1","unist-builder":"1.0.4","style-to-object":"0.2.3","unist-util-visit":"2.0.0","mdast-util-to-hast":"6.0.2","@babel/plugin-syntax-jsx":"7.2.0","remark-squeeze-paragraphs":"3.0.4","babel-plugin-apply-mdx-type-prop":"^1.4.0","babel-plugin-extract-import-names":"^1.4.0","@babel/plugin-syntax-object-rest-spread":"7.2.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.8.0","react":"16.9.0","prettier":"1.18.2","react-dom":"16.9.0","remark-math":"1.0.6","rehype-katex":"1.2.0","@mdx-js/react":"^1.4.0","hast-util-select":"3.0.1","@mdx-js/test-util":"^1.4.0","@mapbox/rehype-prism":"0.3.1","babel-plugin-remove-export-keywords":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.4.0_1566828107785_0.42571725697479357","host":"s3://npm-registry-packages"}},"1.4.1":{"name":"@mdx-js/mdx","version":"1.4.1","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"92429098a517ff606150c785b3d0a5a0ba4dcd5e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.4.1.tgz","fileCount":8,"integrity":"sha512-gRvfMw/wkj1OJR/Vufosn45g84pwM1bJnv17cxyAzhw7tXExicjwc6Sa4npkTBo/0Do3IW9vgkSSRNQMMqjGMA==","signatures":[{"sig":"MEUCIGQhSsK32ffKX8F4SXQ5270ID6ifwqDLzyuJKDL7xPtwAiEAp9lHad1d8Lge8udBDT+cHc0hlGknK5cVy1sL7KHYzIE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18044,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdbptoCRA9TVsSAnZWagAAN2wQAJsTXEDQwbApp20wxw80\n8sQjs9KzLD1tqe59QQI0F4EkzruWO+PYwvQmcO+Lz+zD/7zJCbGywnkkUwWQ\nmnoTKlp+dapvh+R4/xRZGNv/GuG8wHGHdMAjtWgPlD4X2+xfZPn359//PXBF\nCoaagmcME7flJWttRuwyNyzXOUhr5wzxwuoqFAmPJSviaUxUj2kDaB2VPdXS\nCdccFaWRoYsMqKc1N5oTXZLy2PmAz1sByUfqS6xnXwQpTd/ue9CCEKSqCJL+\nwUQkhv5Qpjp7xZt0K4nWNuf7nyOfVf+WI3LWiDYO+pLs+wGAcyB+asEO5PE/\nAdOgRIP8MA4IO1O7mqPfn5XB3LAvst9LUTra0iQN4H8c3Paz8cj0PwltkXc1\nZ3R8X7QkF7+vxjXgDuoq5T1RRluXtc3Hq8s4PVFZIkRx9PVO7o1e2wuQTgNI\nymj/LvWBxqtCLIP7NZumLXcUUzM/f45qKOLOANRJxGIlRWJChr9x3v86TDRr\nciyMrG5eLez2q3YGhspNuxkaAQusf+I/uTKYBxuHxOb1FuKu6EjqbamkpZkB\nl5qbQdJr9SNduAyEU7BJ+MUxwO8YH/89RIFE9rbWYSb6nrxqTMTIxoUCo7D3\n/9wRkvR6QO+JpHKs5xOqWELrcFXM0VNmh4ng9qcI6Uok7kHBY2xrCsaFKVYO\nRTAL\r\n=B15R\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.6.0","dependencies":{"detab":"2.0.2","unified":"8.3.2","remark-mdx":"^1.4.1","@babel/core":"7.5.5","lodash.uniq":"4.5.0","@mdx-js/util":"^1.4.1","remark-parse":"7.0.1","camelcase-css":"2.0.1","hast-util-raw":"5.0.1","unist-builder":"1.0.4","style-to-object":"0.2.3","unist-util-visit":"2.0.0","mdast-util-to-hast":"6.0.2","@babel/plugin-syntax-jsx":"7.2.0","remark-squeeze-paragraphs":"3.0.4","babel-plugin-apply-mdx-type-prop":"^1.4.1","babel-plugin-extract-import-names":"^1.4.1","@babel/plugin-syntax-object-rest-spread":"7.2.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.8.0","react":"16.9.0","prettier":"1.18.2","react-dom":"16.9.0","remark-math":"1.0.6","rehype-katex":"1.2.0","@mdx-js/react":"^1.4.1","hast-util-select":"3.0.1","@mdx-js/test-util":"^1.4.1","@mapbox/rehype-prism":"0.3.1","babel-plugin-remove-export-keywords":"^1.4.1"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.4.1_1567529831938_0.516856186633796","host":"s3://npm-registry-packages"}},"1.4.2":{"name":"@mdx-js/mdx","version":"1.4.2","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"cacd0eb91b9b42e1577092be1176c8dc6241c761","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.4.2.tgz","fileCount":8,"integrity":"sha512-8vEpXgRvL6U59hP3IrSSB3bdnTFVBJAk17MQeY05TmPBMy5XyI0x9YpOPIgy2u1ypoWAYEjEEELvQrsInNioyQ==","signatures":[{"sig":"MEUCIQDK67mviLw5o5LzuH1k9dJjAwoLFiOFZPR+J5l1h9j9YAIgepbCM/qEqtHn8OLCF+tLbqbzXBqYSMDxCcd7mVbGxxk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18044,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdbrXgCRA9TVsSAnZWagAAPSAP/31HNTjG65dVa/ivHDRj\n4j8dBr9FXE7e7hC3rgiJof2VeiPbvlCB290Vq7Q4rtTtCoSIcFH95Gwqi/MW\n2aHnsbeRF2EC5hhk1zV8QzB1ePRWL2z9ARyihrGVE0r31xjQ5wOdgFNGePSk\nzBim6xnoreewTUpiCk0noeSn6MwxRgLoMbkPWEvSNzVbuYUA9MmfpyJq7hPc\nw4ta6/AZpG79GyXzEIWzbWrKBtC350tTs1vx9580pblQOsw8zVZnzb+WiKh0\na9YY9m5koqilE/pfOqZ9Sd3Opi/PXv83xMstsa8ghE515zZudct636W0pb5H\ng//n9hwHUClwS2yLqUCV21/f7KdecUulXTH60+fXhb10Sel0pjCsTmLumN0v\nalWKGYSfoKeeCPEun0/loU7644PlwRmW3x3TxFfXda5TpyCo19d2YcpiZBrf\n9fPdvq0TuU9a6siBgBzIsAH9OUx/jIccqQfe0/ShggebLLgxZ7W/ApnmyxNE\nuU2MsxBUclVrftC9i+V0rXyxLPY/62bkCgkb/ZAoT56Jmlks2mrAKyZFKTVj\nuGzm7/DJFnRazpVjdoLpH3n05pnhyvDCOb8cobSiJo/R1tzallf0QHsiSEux\nRE3cHRgPbWBnF4Y2rly5aRoLAhdrpgY/iQxyk3WDOLL3RVCUMFp/eQPB+bHG\nib2X\r\n=HXDS\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.6.0","dependencies":{"detab":"2.0.2","unified":"8.3.2","remark-mdx":"^1.4.2","@babel/core":"7.5.5","lodash.uniq":"4.5.0","@mdx-js/util":"^1.4.2","remark-parse":"7.0.1","camelcase-css":"2.0.1","hast-util-raw":"5.0.1","unist-builder":"1.0.4","style-to-object":"0.2.3","unist-util-visit":"2.0.0","mdast-util-to-hast":"6.0.2","@babel/plugin-syntax-jsx":"7.2.0","remark-squeeze-paragraphs":"3.0.4","babel-plugin-apply-mdx-type-prop":"^1.4.2","babel-plugin-extract-import-names":"^1.4.2","@babel/plugin-syntax-object-rest-spread":"7.2.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.8.0","react":"16.9.0","prettier":"1.18.2","react-dom":"16.9.0","remark-math":"1.0.6","rehype-katex":"1.2.0","@mdx-js/react":"^1.4.2","hast-util-select":"3.0.1","@mdx-js/test-util":"^1.4.2","@mapbox/rehype-prism":"0.3.1","babel-plugin-remove-export-keywords":"^1.4.2"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.4.2_1567536607727_0.423443153263247","host":"s3://npm-registry-packages"}},"1.4.3":{"name":"@mdx-js/mdx","version":"1.4.3","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"875dbb21c73e30522e057a0935dddc112e1c8626","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.4.3.tgz","fileCount":8,"integrity":"sha512-dAnf51fSf1Se/RH+Hq1r8haiZOb2j+seY4VhJjsfBUqewieJyOfJEgzrr/PXw0nQ+TFgSUN6w2joMxUNCnrtIQ==","signatures":[{"sig":"MEQCIHGUIdU/VXObgZhr20JqMOmCRDFDkR2nXJr2ojqP3V0WAiA2XGURdmhXy+9eiAE++UhhRKQsYVx32EGKE5a2LJ34rw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18044,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdb+ZmCRA9TVsSAnZWagAAIRcP/3dU0TE73Yh/Yg4CYJDH\nbIs4DsV9NRHXA0z0EmEDPjWHfiAlFVsDM4i91tvZuiediFMJgTsbVbMCTyxo\nrm8t9xPJZDsjWaSUzUlDjdZ222CHEiDCP9/wGkSOvGH5VfQe2zur9fAFdxo5\nrvUX/FEFlI93z+DfMS/1ZEMcLU16oxw02oJV5uWlH2kssiy3/uy8IOVKc7PJ\nMkCQVTM1EsVh2ox57eZ2lcJC2r5yWXqr2vRU6+NjHr9u68YLIYM9W5YeKouy\neqThQFGHBwNaXRbgeqCKz1iZSf0HWs+DkE6oeXL/32alod6f3XWBKFtXa/oe\nLn01n6TV6ICxMCmrWe3IQTwCQFE99fmtcHLuwZ+iEBtB7SmG8SoktJ+rFRl3\ndgNCPF/UrydhDCrHNmwzgMqDF8SSnjsl/4Am+RBx6FeRurHzBkhz18zet1/z\nMt6TySSkm71DlBLwsFOSnreNvC/75rVYrHWuO4OiCGB1q4m8KynO2LbCzivY\n/AdD+SkP7W0noxGRk3irmCIv0uNBFSAiuBskVYfXaoSSjic/wg+KcxFZgUgf\nvq0MDUhh3Qy5l9qUTkXekuuMeGCvFkq7J1peMNCw0sm475ZOhdC35o7sRDkI\n3E7wZQYq0R/xbm33ZkYyrOZZgeoqXArgLOHcHgrAL1i9ALDoSOViXCjYuBLA\nz4Qk\r\n=xW9y\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.6.0","dependencies":{"detab":"2.0.2","unified":"8.3.2","remark-mdx":"^1.4.3","@babel/core":"7.5.5","lodash.uniq":"4.5.0","@mdx-js/util":"^1.4.3","remark-parse":"7.0.1","camelcase-css":"2.0.1","hast-util-raw":"5.0.1","unist-builder":"1.0.4","style-to-object":"0.2.3","unist-util-visit":"2.0.0","mdast-util-to-hast":"6.0.2","@babel/plugin-syntax-jsx":"7.2.0","remark-squeeze-paragraphs":"3.0.4","babel-plugin-apply-mdx-type-prop":"^1.4.3","babel-plugin-extract-import-names":"^1.4.3","@babel/plugin-syntax-object-rest-spread":"7.2.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.8.0","react":"16.9.0","prettier":"1.18.2","react-dom":"16.9.0","remark-math":"1.0.6","rehype-katex":"1.2.0","@mdx-js/react":"^1.4.3","hast-util-select":"3.0.1","@mdx-js/test-util":"^1.4.3","@mapbox/rehype-prism":"0.3.1","babel-plugin-remove-export-keywords":"^1.4.3"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.4.3_1567614565799_0.9285648164614035","host":"s3://npm-registry-packages"}},"1.4.4":{"name":"@mdx-js/mdx","version":"1.4.4","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"4482eab3447d1958ac6d2308c10f88cbbaf85528","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.4.4.tgz","fileCount":8,"integrity":"sha512-7oDVba/KOr4PM3AN3AMp6rpLwO2lAUKtt5cFaZ/lmW5yBAph9TYW0/Y89lkRbQ8SoyUWj85URTgSg7qJ0ECx5w==","signatures":[{"sig":"MEUCIGAwvoL7NSsve/w0vWADkdMtIZFIHeJeaW2TD4ItdchCAiEAmkrbpL7rKkX1tm40jvgtHfYqEVQhDs/aVsLWRvociME=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18044,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdcRhQCRA9TVsSAnZWagAAsqMP/i25QORWg3GKctFcOhON\n2o/nbFG5v9BEQ/0kpsoRNqXgpQW/QAqIkpAwSj8c95P/m1P0ao2nkO1Em+UL\nukMzua2AkUnOBM1mM/NRzjOMD2xegaNQhZnnlihdCNmEy9mPlTyc5//jZYeG\nvBpUDClmS7y59ZS+ldFBTq837q/L9C3zXI0SpsYcM8eT2FccfS7XE/Nupk9A\nxGSfnmyyAcD8moSwaX+xiAGhHQ6ehyMNFlIKqoDGtJ+x7Nl9gT3RmIeJ7aOu\n5PeTEb14ia/ZsH7/b+FBCJpo6xqbtflboNT5F3diYOD9k3VJyB0Vd6zLIi1a\nLiCLd2a3RYRxZLQBY1RvKsGZkzqDnWanCdOLLrDaiSVcN13BF5SLauOQuEQ/\nBLBdNeXC+yiLH30TnU2bOT5eqxGtOJkO7pwKGT6/LVWUOhl4tvR95oeIOAVb\nBJfjtQ+CZpb1q7/Yd2nyowx3vgfFunBTH1G5zCXnEsVyNysrgmI70yzB0Z6F\ncSC7U+4WVR3enfHkcUDl0p1zbo4oWQMBMedFyobhymfxPP9j79zVWAlDmYVP\nMRr7pEmD9AdPjxa72oPxCpN7yN6H6DdSi3Ra7mkIFKQ6KTJYRN00Fsfi76Wz\nSoAStl8HLSLsFqJvHSTwsC3ZYl7QLF6tv+6RvfmeeryGrqDwE0JN0ilN6Rp2\nqmvd\r\n=5XgQ\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.6.0","dependencies":{"detab":"2.0.2","unified":"8.3.2","remark-mdx":"^1.4.4","@babel/core":"7.5.5","lodash.uniq":"4.5.0","@mdx-js/util":"^1.4.4","remark-parse":"7.0.1","camelcase-css":"2.0.1","hast-util-raw":"5.0.1","unist-builder":"1.0.4","style-to-object":"0.2.3","unist-util-visit":"2.0.0","mdast-util-to-hast":"6.0.2","@babel/plugin-syntax-jsx":"7.2.0","remark-squeeze-paragraphs":"3.0.4","babel-plugin-apply-mdx-type-prop":"^1.4.4","babel-plugin-extract-import-names":"^1.4.4","@babel/plugin-syntax-object-rest-spread":"7.2.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.8.0","react":"16.9.0","prettier":"1.18.2","react-dom":"16.9.0","remark-math":"1.0.6","rehype-katex":"1.2.0","@mdx-js/react":"^1.4.4","hast-util-select":"3.0.1","@mdx-js/test-util":"^1.4.4","@mapbox/rehype-prism":"0.3.1","babel-plugin-remove-export-keywords":"^1.4.4"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.4.4_1567692880448_0.27172061225516253","host":"s3://npm-registry-packages"}},"1.4.5":{"name":"@mdx-js/mdx","version":"1.4.5","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"f1658dcf7b535162ad0ecdbc9f50541accb17417","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.4.5.tgz","fileCount":8,"integrity":"sha512-kxnQIi10DxsvRf+H+IiUlnvY/vLLBcg6hl+63mAAv/Dy79RTPdpeA/F/dBuRuOygJEJTh8ilm0ouwyqeuyypJA==","signatures":[{"sig":"MEQCIEDUg3Y3+2Fhqnpl+vf81r4ODBt4AtGDqL0KmA7qjrG1AiBHPXwrBD54AsaYm8UZshIKQvapdOas4KFt1C4zXULAKw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18044,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJddms3CRA9TVsSAnZWagAAhO8QAJQO1RakkvN4L/GU3uLd\nxM77bNjes/MQDUNuq9YXAybCXLlTamj594dIEF9H4T30d88Ri9WVNCSmwv1Q\nLz/4KlvIO/wnsCG/IEjrAYJAa7ZySbNk/UUuzwF0pVnDUr1Nfr2R75DquaYm\nIh+Djf7wclBc4PNdRbx8nRvDVI/tmyAX+H1C06hiVi8C2ANKGgf7as+vf0b7\nEM46PFEKT00sb8v4sAOZCgs5V7eAOasAjGF6PIA0nsBsDjFjU/b7MLON39pC\nbhKFK8j/abSJlRD9v9VlCHC/+vLBAn+qW+CFzkPTZnvPh6tAUKh/66HcsBZF\naCD+JAf1clDLmO9hqCdtY0P1aBNlAsPpWB3le/nkiu4/67GgeCMG2TEY+yK2\n8PFXdP0CJ9iTbUAojeSiS0yQ+g4WXIlDtE4hB/WDzpnj4cXtkhDiRFmoVYIV\nNIZlxSqgHZpKpuVSglsCRItNG+a/UysFySSAfBKHZZ0i7h7z0c/3BIb/Ho+q\n93uvkyHvfYIPaqtPCCM7ZCmO1uZrgClDxb2p8zdG9g/rZUsgS/2AeMb2aZqm\nc6mTT9He4ie/NxGXImO1JAlRpgrAHdwG817ZU6j74WEbbrIdETHr89YeBBTT\nK88N3PWf54xhJ/dL83jN0WXH1TRzzLbN++JUJ8Zc9IDzr6PHmHR9wELv/DKj\nEse0\r\n=LMWw\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.6.0","dependencies":{"detab":"2.0.2","unified":"8.3.2","remark-mdx":"^1.4.5","@babel/core":"7.6.0","lodash.uniq":"4.5.0","@mdx-js/util":"^1.4.5","remark-parse":"7.0.1","camelcase-css":"2.0.1","hast-util-raw":"5.0.1","unist-builder":"1.0.4","style-to-object":"0.2.3","unist-util-visit":"2.0.0","mdast-util-to-hast":"6.0.2","@babel/plugin-syntax-jsx":"7.2.0","remark-squeeze-paragraphs":"3.0.4","babel-plugin-apply-mdx-type-prop":"^1.4.5","babel-plugin-extract-import-names":"^1.4.5","@babel/plugin-syntax-object-rest-spread":"7.2.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.9.0","react":"16.9.0","prettier":"1.18.2","react-dom":"16.9.0","remark-math":"1.0.6","rehype-katex":"1.2.0","@mdx-js/react":"^1.4.5","hast-util-select":"3.0.1","@mdx-js/test-util":"^1.4.5","@mapbox/rehype-prism":"0.3.1","babel-plugin-remove-export-keywords":"^1.4.5"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.4.5_1568041782898_0.5951684921279248","host":"s3://npm-registry-packages"}},"1.5.0":{"name":"@mdx-js/mdx","version":"1.5.0","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"0f9aa44c888ad197f7346f8c8c81d0bc2d1b17a6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.5.0.tgz","fileCount":8,"integrity":"sha512-Xkg3AjxgCGwxXRBSVssekhsKdEg3N7mGrvGyxYgVapSTqaO4c/3El+iLWhNzFJ99ujosnCTMVw+cDq3oLYJx1w==","signatures":[{"sig":"MEUCICLKj9ZpY85H8edlnhTvfSLY043tGjTVEkKPbO+ny3MiAiEAnKpbNvCwUcF1zBfRwQv4RBtxATcyJb+sIhWruWHf/g4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18044,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdiR9sCRA9TVsSAnZWagAAnisP/3b7Cne3wCDzf+Cpyysv\n+uiI1MV2D1sNjf1jRqWWrUlcBfJoxyiRMTIwdvwWrZaGylu6cyMUeXtpwyUa\nX3Y2jhzWpTANFWMxgisQqCd35ehQX7kJFCIn9H56gu1TOxXfIe/SB0UaX89s\nqs9PxoPus5WhdWCyoKYdD277rTn+FS7bCgP4b8nP3TkZ4KjcxFIfdVt5Ix5W\nMc9v+m+FiN0C6gsQauCrQI3Z2uQvsJ3a+rQWSkp6Eulp0rY0N0wPxC8IRV55\nRVExRTd4CvbJuqANx5OXBiHxIRUYlhSsd1HcTX3MumIsQW8bJh8Dwi4vX54a\nQSoTCltWSTOEQkuNGmxpQE66jxRtHjotLW/s1ceE8Hlh+2zUyYVgdL7Maaad\nEO5rrRbe+NO0S7qqgJjTCsej4Vs6mCLl1p3KJ64VrZc/BAKTUO0DvHcifjJn\npwB0XGYuYlKf6usmzniqtpOh3kGr+ncjnPdM6WlCcPWpMw9sTPdQ6+aZjiQl\n8IGiaYSrTjHR0n7QWMbdtUnxkAvh9R+Zn8Y9u0CklXRqj7EkNBE3r2dL8ghU\nKinutWjL56ZNneEvZTrDzHHVM/Q5wti5Xb7/hOSEejIZq9FQu6pr3Pr4jit6\n+RHYEKUZ/VAawJdxmnNZPY3BrRRkN3uNDc0JazSuiLLvSzKoebNonhptKfLZ\nvaEg\r\n=LSGk\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.6.0","dependencies":{"detab":"2.0.2","unified":"8.3.2","remark-mdx":"^1.5.0","@babel/core":"7.6.0","lodash.uniq":"4.5.0","@mdx-js/util":"^1.5.0","remark-parse":"7.0.1","camelcase-css":"2.0.1","hast-util-raw":"5.0.1","unist-builder":"1.0.4","style-to-object":"0.2.3","unist-util-visit":"2.0.0","mdast-util-to-hast":"6.0.2","@babel/plugin-syntax-jsx":"7.2.0","remark-squeeze-paragraphs":"3.0.4","babel-plugin-apply-mdx-type-prop":"^1.5.0","babel-plugin-extract-import-names":"^1.5.0","@babel/plugin-syntax-object-rest-spread":"7.2.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.9.0","react":"16.9.0","prettier":"1.18.2","react-dom":"16.9.0","remark-math":"1.0.6","rehype-katex":"1.2.0","@mdx-js/react":"^1.5.0","hast-util-select":"3.0.1","@mdx-js/test-util":"^1.5.0","@mapbox/rehype-prism":"0.3.1","babel-plugin-remove-export-keywords":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.5.0_1569267563860_0.2506556717827346","host":"s3://npm-registry-packages"}},"1.5.1":{"name":"@mdx-js/mdx","version":"1.5.1","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"470ce07e01cef4f7b1d5051640e5235d5e75aebb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.5.1.tgz","fileCount":8,"integrity":"sha512-VNc2U8G6RlAYGmZfFj9dRTXcyWIo7rfxuAJtjupTqdddMx5HeLOmsWBLkZt5K76Nmn/bOg6d7zwR1+5FuvjAtg==","signatures":[{"sig":"MEQCID65/NxMcwwj3ZUjKMOVPy4uS1Ckc635NOrWde0hhB+2AiAEMlO5BDmbAkFYLoefr7YK7ywHQaDL3a7BVEoMtbLKnQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18246,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdm1NvCRA9TVsSAnZWagAArsEP/i1i/DzVOFW4WtlsIsHf\nnjAVZlQO2enVWLs4vr3xSRcvbfAkXl3/tuNGqxF7Lw9ZltLVMXEOoabQQRQL\nQWwTTaplKOdbxzeFAM1ekS5HOKzIfsoNOAEI4myHdUie8imyGRI1aNKh0ert\nWoPYO6nGxRB3IkszHgMVZacsYfUM83gBFU0YTQ+iXZQsbBBGKvtI3O2i1Dr7\ntUByp5sNnJx5C8G5t/Pj5kEocUwoyXZ2XERgn6Ssbxi8PfJG4PrdxOU2o1v1\nmdIsqRytYbeCPjx47YjIx4NLuf54PATJWTaXA1KlXsbsn4BgO4Pw6YAO5Mks\n1mgV9eEEH1dEx+0OYISqi0C6LCxqf8l0vmomAVvT9ePTTQlMghBsEGeSnU6P\nUXFzhYI+sC1Kw/yOCnJBmtZceKMXDR5JsSe7tOZi3GAN1oXhcF3TwNGTE5XG\nMRzXY+/fL3WxId+lyxRRu0QhZ8C7ZJLRXVRzgXwPApBZkmCX6dnuEDlwWY7M\nge5Q/VQXJia59NCFHxcWm0lTZC1O+iWs27elftcTAm88Gfi1KiKSOWqCKMw8\nlo95K18nYSoDJra9w1QrYiS7St/06HiVWMXQIUXXIoSj+smh8zWTrfUCviHs\n430J7EsOKBIEiQn37iQwwiSJWEcoDILCVerHsRpjTdKlcyVT5C5HIworeOhM\nhy9C\r\n=lU8T\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.6.0","dependencies":{"detab":"2.0.2","unified":"8.3.2","remark-mdx":"^1.5.1","@babel/core":"7.6.2","lodash.uniq":"4.5.0","@mdx-js/util":"^1.5.1","remark-parse":"7.0.1","camelcase-css":"2.0.1","hast-util-raw":"5.0.1","unist-builder":"1.0.4","style-to-object":"0.2.3","unist-util-visit":"2.0.0","mdast-util-to-hast":"6.0.2","@babel/plugin-syntax-jsx":"7.2.0","remark-squeeze-paragraphs":"3.0.4","babel-plugin-apply-mdx-type-prop":"^1.5.1","babel-plugin-extract-import-names":"^1.5.1","@babel/plugin-syntax-object-rest-spread":"7.2.0"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.9.0","react":"16.9.0","prettier":"1.18.2","react-dom":"16.9.0","remark-math":"1.0.6","rehype-katex":"1.2.0","@mdx-js/react":"^1.5.1","hast-util-select":"3.0.1","@mdx-js/test-util":"^1.5.1","@mapbox/rehype-prism":"0.3.1","babel-plugin-remove-export-keywords":"^1.5.1"},"_npmOperationalInternal":{"tmp":"tmp/mdx_1.5.1_1570460527056_0.24210269009012975","host":"s3://npm-registry-packages"}},"1.5.2":{"name":"@mdx-js/mdx","version":"1.5.2","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"ea6ddcf73f267f5fead037c5730d10dfd6029e77","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.5.2.tgz","fileCount":8,"integrity":"sha512-Soez/1vXbMVxxJj96IVLJn645KJpAUfTNdysRgUhQmrlwxBx53ptZTOTYvAxeznvzGEGAR4Ct3gh58faYKmNww==","signatures":[{"sig":"MEQCIDuXZQlQs3cGA3ZO9cHPTE3E00uwwpTnQiqoX8z89TXVAiBWkhAwQhroJqxZm52iEk7qWfz0Q+d5GWyDU3Dlcfc2JQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":17908,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd958SCRA9TVsSAnZWagAAnzIP/0ZhPBb8uORGAY/OaYs7\nT9Qt8gw1XYAMFIg4IAHL+BPdOFjezDiQVA29P446ow8+eOe8yVo1TnqDDVB+\nZOpRPyFfPF38MdIpZMenzWniC7xCTFfwp9wY9SqrzbevCk07ENFVELEnEoy6\nG4n49cXeemu6zz9TngAIt+H2SXhJ/+f6CXHXmQ1G+Jr370AdAiflaXMgOeNU\nLtnAR1d4nI4WGq6F9fD0/2mb5muA1h3gscxPxmbtOYqE2iNjQqn9onvuk3Ez\niLBogS0B43Q6pUsIy3naYfsa3qDCHB2Ppr7YAtlvyy/iYdWJh7sfMJ2/B6NI\n9lCxmnDxU5wmbF7pDtlpK0Zqh7Pc6ZVzuqLK2U9UUId/WIRz6hKyePh1lbR7\nmlBPOxnoH46bXsuFcqz8t+hznUp6tCr7YCgSPQE9u36RIFI7p0Pw3gXZsUBs\nfASo5pXeocF8NTRmcgG0tEZ7GCp+oghABH9onEOW0k1Gcs8VluRMvgKOMt5W\nvjPfecr278Azzui2vyDuW4rLukIX2MaMiSZbGg5EoPaI1pIktbiqaKQo2U/p\nD58CR3mxNuBSc9QSSj49h0sZqNvV5J+m+UBf9XRe7aJRLfENtwuiTaxkoKG8\nfdEC4HaIcbD+D9S5ppeOQfkbu+dRK5HTmdiQnuBljD9Im8FUQs5e1DOw4ix4\n0Yk6\r\n=Xrh2\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.13.1","dependencies":{"detab":"2.0.2","unified":"8.4.2","remark-mdx":"^1.5.2","@babel/core":"7.7.4","lodash.uniq":"4.5.0","@mdx-js/util":"^1.5.2","remark-parse":"7.0.2","camelcase-css":"2.0.1","hast-util-raw":"5.0.1","unist-builder":"1.0.4","style-to-object":"0.3.0","unist-util-visit":"2.0.1","mdast-util-to-hast":"6.0.2","@babel/plugin-syntax-jsx":"7.7.4","remark-squeeze-paragraphs":"3.0.4","babel-plugin-apply-mdx-type-prop":"^1.5.2","babel-plugin-extract-import-names":"^1.5.2","@babel/plugin-syntax-object-rest-spread":"7.7.4"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/mdx_1.5.2_1576509201627_0.1868947390526121","host":"s3://npm-registry-packages"}},"1.5.3":{"name":"@mdx-js/mdx","version":"1.5.3","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"d0092d4e177331d4eaa65d60fa1f37e42fb251ea","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.5.3.tgz","fileCount":8,"integrity":"sha512-XxnOvyCQKri52tgaCXbV5NWnZGqgRsRifa/yJrxwWa6QG3vdFiEi/xokBHBf/62RCKRK4+QmbM4dSl0fgWIRNA==","signatures":[{"sig":"MEYCIQCy6KSooCTZwDOYHmLnYszq/kH5I/nMlNOyOfqMFyU8RAIhAIYiMpTEJ83CHd/iPshefLkn/9ame03Oe8MihiIHSRPQ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":17908,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd/RX9CRA9TVsSAnZWagAA6OwQAJArXvPesA1Oe2Of7Ico\n0ScufyEasCqRtrgI6IoA+crjl5+bIBTnlQzv6wC6jbfqmee064IBmOPVPG71\njHRAGwwfu3nCGaLRIr5+kPsEqlwT/zvN2G0bw0Mo4ztWlqj61raz/bPWC5xa\nqO4l0H07XWWabKUEWJz1dFnAH+ObZeaAwvk0xcHzeWyp89ZFe8W1mOT9vwrM\nfXSvqMMHIHmqmVJnb+lavA9GDEyVn4VVigo9hv6q90KlG4p6vS1Y8HAmf/gm\nCfQaY3dhwRS63Ut/sJmzVCZUa/b7a2pBPnAM4ZJMaWtNZeqyM6HQORXYW6Nf\n5zBsmkKFfsCN6XBVv9laMIXNNZbOogiqrmBQeZKgMde2PgfTNoQaCGNgydwX\n7cc6PSYOtHa/Jlzca/h+dYiRGwIiveovAwtra5WJUkZTTEmrIrCI4imtPZ8s\noN2XDoZZ1UUN17EK9F/rcsogwu16l5sZhhExiyv66mvpys90ZmxKOq8ayL2T\n4mxjy6UHpq+/A5mmkWKZDVp52/pQTnCOn0uobcKrDl93er1G765s0e62NIHo\nTr+RcPBXCBxeXPXXZ1UOga4+KrZ98wpm7RVFlCh9qx5pBNU1TLOfoOd+VBVu\na97Ag+RQo3I7x3VXkMvSJYUm3eG3TdZqnpvalBt3Exr/vlOm52FFdZzsy+Qw\nBJnF\r\n=9hLM\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.13.1","dependencies":{"detab":"2.0.2","unified":"8.4.2","remark-mdx":"^1.5.3","@babel/core":"7.7.4","lodash.uniq":"4.5.0","@mdx-js/util":"^1.5.3","remark-parse":"7.0.2","camelcase-css":"2.0.1","hast-util-raw":"5.0.1","unist-builder":"1.0.4","style-to-object":"0.3.0","unist-util-visit":"2.0.1","mdast-util-to-hast":"6.0.2","@babel/plugin-syntax-jsx":"7.7.4","remark-squeeze-paragraphs":"3.0.4","babel-plugin-apply-mdx-type-prop":"^1.5.3","babel-plugin-extract-import-names":"^1.5.3","@babel/plugin-syntax-object-rest-spread":"7.7.4"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/mdx_1.5.3_1576867324674_0.01445496293989823","host":"s3://npm-registry-packages"}},"1.5.4":{"name":"@mdx-js/mdx","version":"1.5.4","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"9cda05c6271a09e8e19600d1d78ee89142c8d863","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.5.4.tgz","fileCount":8,"integrity":"sha512-Y/U02z5vR5wFL2DXcEY+RM1zWZTAeIgTgmWfcUBrEicGaeVtYo7DD+caGheNy9v0d+w3TTTdrAd+FHnQxaBQLw==","signatures":[{"sig":"MEQCIAsf2vPrysmr4Dt+frfuJQxC7AaOKpYxg3aV3Izjv91OAiAKVgwS6p6MjPqUFIr+2TG4IJ9IyeOSyjn8yOgWWe1Dyg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":17908,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeHyhRCRA9TVsSAnZWagAA1zgP+wThn4C/WWeV72YEX+r0\nI82kFjvrlL+bt5jTZVuSYBG20z3cU23xstaqrazD8OtJNYHT6coOJdWXG0a7\nnkCGKCb9rrDk5xyQqNwxd4DYPqzbJHJBCN5NnXHXoCQ/abylrizfH6T4hh/x\nKcKr5ayyXMuQD/DV+dESoiHvjb24anegQGCa6JKah8DMurXqcto6VST5dhDs\ny8Y/++csHbyqbh7hENZtIbMeQyWJMS7oKjIuDrdEUtQZ6Rm+MhEwML3Rmcpq\ncz3dXEgWLsEvgR7wbmmg+ofdwS5FJWf1npBCUkxopbEp0aMnEcFreoVc9gUk\nhXa4AxiQqdOdDCe8Ck91dVGjbVz4nrzHV3LDp8A+3aM9EjBu+89gsQ9J/zge\nN/r4jFKTGkoc3z7yiyrwy9dHCiXEK1tS6Sgt7mZQwH/0eiXtg9ODgKi5uzBr\nJcVC3LsJ50axWzax6wI7ZfQeMo1VnOW0DLeV0JlLrmVS0KpTf1mPdJyGqAsF\n/mfqbaXpbOyiqS0Bh/YY0D3wtG4SgjWKtx9yslZ2zEN3oHy/5GXJoFYF+Xss\nBBCKo80GA6BhNz3ETy+d0Vt6tLev9wn7HBTeNHvxIHed1j+211J5Gp4GHrdv\ngIhQ5Mk80jEWciC+qBNTx4u7NjXf9+vPy3vwrjAV1lRkk1NQdwF/OeSOVxAu\n0Nwi\r\n=DNiJ\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.14.1","dependencies":{"detab":"2.0.2","unified":"8.4.2","remark-mdx":"^1.5.4","@babel/core":"7.8.0","lodash.uniq":"4.5.0","@mdx-js/util":"^1.5.4","remark-parse":"7.0.2","camelcase-css":"2.0.1","hast-util-raw":"5.0.1","unist-builder":"1.0.4","style-to-object":"0.3.0","unist-util-visit":"2.0.1","mdast-util-to-hast":"6.0.2","@babel/plugin-syntax-jsx":"7.8.0","remark-squeeze-paragraphs":"3.0.4","babel-plugin-apply-mdx-type-prop":"^1.5.4","babel-plugin-extract-import-names":"^1.5.4","@babel/plugin-syntax-object-rest-spread":"7.8.0"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/mdx_1.5.4_1579100241102_0.1347946951734842","host":"s3://npm-registry-packages"}},"1.5.5":{"name":"@mdx-js/mdx","version":"1.5.5","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"09dc8932af84e5baf5add2625ad0250a117c3363","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.5.5.tgz","fileCount":8,"integrity":"sha512-Xv1lJ+VWt8giWQrqf4GdIBxl08SfepfIWAnuuIzuR+wA59SaXDvkW6XFIvl8u495OQEB1eugMvq8l2XR8ZGr1A==","signatures":[{"sig":"MEQCIAHIiU8v19701m8k1OJ+/SDdVPDeTtgYawfG8A8ekZ/MAiAQ5dDa/7j5fV+yFMcjrE0OOnJBLk6c45+CldQfTIFrgA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":17909,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeIMSuCRA9TVsSAnZWagAAPkIP/2zE/RsA3py1PsvaIYCS\n7JSobSvdusnmdZz8Q1/bALH5hApEe3s95HwbKz2+wEvaWDKnwSrPaFKZeJh+\nuq2bVwYLC+awaBH144p0e2vvou1oBnhDZT2CFjQYfAspM6pr1Jbci8kqooni\nZqmpq0lZ/bUSs7bp3CqMTxwmhr4XztpFhrASpfERBrbvJaanaUHgHj87x5Qp\naG4oIXaWmwz0SA8EhFI6k5XuyXSnKmjrLNys3PzHOyOLDAmeufZCZdjlFbkv\nWejQPSVTZfQfQB8k/KN4wlQMp1ikzn8Zdq9PExPaBOd5x0jqUaSq32o/w0YE\nzp8irOv/VXNs2Zmpsx1e3602RvLoaExNubXsIiKutKRwlOtw/+JEFHfC6aP6\n6YgWgUGX2dsPuVEsyveIRx9+u+nsvu7vKf2fMyF5dvnu/QbDKBJWOPXS84sh\naHbRj68WUMjc01FsgJNw25AGFEV8uSDp0lcOkhRnNRfa1b6mjy8IVfdkckPp\njASEdCo7wpLnKT8fFBmlO2lEljk7o5uPr6nSHPRdVl3i9QYgYLIMUaF0v4e1\n9TYEPz4UmGT0RSI7/GrZ7TSedzA4AyqvWrD/Khesmgy1+S2MCH7rZ/yu0IhB\nBVUCe2LSCVw41hnhFEGKvNWD8KyKHtuwD3+ttOee+W8h62iPW4N0Z/3MMp5e\nldx7\r\n=Xgx6\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.14.1","dependencies":{"detab":"2.0.2","unified":"8.4.2","remark-mdx":"^1.5.5","@babel/core":"7.8.0","lodash.uniq":"4.5.0","@mdx-js/util":"^1.5.5","remark-parse":"7.0.2","camelcase-css":"2.0.1","hast-util-raw":"5.0.1","unist-builder":"1.0.4","style-to-object":"0.3.0","unist-util-visit":"2.0.1","mdast-util-to-hast":"6.0.2","@babel/plugin-syntax-jsx":"7.8.0","remark-squeeze-paragraphs":"3.0.4","babel-plugin-apply-mdx-type-prop":"^1.5.5","babel-plugin-extract-import-names":"^1.5.5","@babel/plugin-syntax-object-rest-spread":"7.8.0"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/mdx_1.5.5_1579205806106_0.9834914487392739","host":"s3://npm-registry-packages"}},"1.5.6-ci.0":{"name":"@mdx-js/mdx","version":"1.5.6-ci.0","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"9afd17b48c9bc23fcec267d5e88ea5d0417a466d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.5.6-ci.0.tgz","fileCount":8,"integrity":"sha512-EmpsuQaeyESGeT6HDJ7EK3J5DmiRo1tYabgJ6rrZOJVlmlp7jDJs8CTL7yGV4kyB5bw7sahmXP5Ww8+qoBgESQ==","signatures":[{"sig":"MEUCIHiI8ES9A4NNswNGPbbj28OEy+pCU9MA0GC7cUAhhyQWAiEAlgwSQN26asfKS7ptFUSKO+SBmXxfD3rZY3N0BfXe22A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":17937,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeNEAWCRA9TVsSAnZWagAAQdEP+gICY//NDGPZytOke0sf\nlLIBK3Fxe1LJ0lsHOVRgU9Q1svyAV3hxtwokn2QmbNPhUxoOXFuB9bKhPcp8\nVK//a1Uaqa62/PLMlMNE9JQ3BgoHeil0EIyb4MkkgNQMg1o62m1cYdIExiSS\nczauE2fj+FWB2WxYqNdVguPtNvfk8c3Pz5adHIjZU58+oQjfBmjQwOxPYKkR\ni8BqhIP7Lun1E8sX/KBoN129Jf+wjFTOz+L/zxrPqw/je/alICLwaTcgN/19\nD6c/LNqvlKHo1E/K8dXkIrHm3eU+H/Fkp2jWOw4dZ/MCcuCh+YPnfdugpR3S\nd8jAeWGeE50SpDaY7P8FyNztfGf9DxgMagatEfJO5tqHqwFvir7cHSd0aKjj\nCsQ2DYJxngZ+IApiISRg5PHc7wgrwIuj9xYF46B3Gy5dnqGPm3gkLCFBDYKj\nFgPslslYID/fLbd55yApvufJdYHSIE1XblK3S+/CUcykmpGvD5NmL0y9TYyd\n7WN1Dbdwhkv5jqE0mIwkjm003ogQTknRUR3ZAREByd+gu/E5ZPUZU2p1AYAy\nBgrgEirrk8D9NN3IQgYPC4BVOtJWvXrkQUeA28uueg8rv4660S4ZCpimpTW6\nMNnah6D0YlY66tBfPDdGP0kO9c95xRYPxHKJuw40tAYivhKWXunTzXj7tv0h\n2/4h\r\n=S5FZ\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.14.1","dependencies":{"detab":"2.0.3","unified":"8.4.2","remark-mdx":"^1.5.6-ci.0","@babel/core":"7.8.3","lodash.uniq":"4.5.0","@mdx-js/util":"^1.5.6-ci.0","remark-parse":"7.0.2","camelcase-css":"2.0.1","hast-util-raw":"5.0.1","unist-builder":"2.0.2","style-to-object":"0.3.0","unist-util-visit":"2.0.1","mdast-util-to-hast":"7.0.0","@babel/plugin-syntax-jsx":"7.8.3","remark-squeeze-paragraphs":"3.0.4","babel-plugin-apply-mdx-type-prop":"^1.5.6-ci.0","babel-plugin-extract-import-names":"^1.5.6-ci.0","@babel/plugin-syntax-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","_npmOperationalInternal":{"tmp":"tmp/mdx_1.5.6-ci.0_1580482582394_0.6199866084062344","host":"s3://npm-registry-packages"}},"1.5.6-alpha.0":{"name":"@mdx-js/mdx","version":"1.5.6-alpha.0","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"ba7c0d17f23835510287fc687e5e64c9730d0288","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.5.6-alpha.0.tgz","fileCount":8,"integrity":"sha512-+/oj18y3BWsH2ghjxZnYa0UrdayBBsVtSOGNaJYaMGddGkFpsm6kNpWgyRC1qorA3d6V4SrUQZVIu4RsPteYcA==","signatures":[{"sig":"MEUCIAw0SXqZg0fdKKEJfW7TjTWhDDRADTEcV7Zwil8stbOXAiEAhHkmYF3hLRsWAl96bm/0hIxxEniyEpxZmolsJlbrNTo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":17952,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeONsUCRA9TVsSAnZWagAAXCIP/0xUw0ZqhfeENU/tX87N\nSxhKFisEzuPxy2jk6SPzfGHnR+jlW1FiSLvF6GkpFGA7dZdLE69e84fuv9Ln\nXI/y+HXI1OSHIpshz6/qzPSB/q9YYp0NYazBKNcmS4Kn48/oVbehACuUJCt/\nfwtzO1JpRfvDw8MIq5VYsuY5dv0mu0LVdh2dCxRRw3Z/UszUn5tZ8LEXFxc8\nAdy+VtsIBhS6smgvCH/+x4nQrb6tM9s3fi6YnXXgPuFGq2YeMz82L1Qmm4Ip\nOuWPD/ccUELbCtCgLkDnNNuCRkf/850km46K2JwIMzpvesQMBCKBIWmBCOrG\nVWMfyIfxXup6oZ/55FX71ZExeWCy/YTYahY9PmiPjohCCvPbwUodYnUii48B\n0NOB/aMjmc8zScvOTf5ZcQnP7SedXeLn1aBN39sIFLQ9rL7Fa4q4uGTdlDxC\ndDVLbtP02oJii3qIAcBM67pgOpFJmVNDWZ0XxbIXgszbL1Ibs0kpsqOV7zMc\nwsX1FVZWeI5btWEe/pFAN9Y8+ntiBJkbHoUH4oMlmjiktA/pzcQhh71+QkLr\n2dGLh+4vxQDf3GxT8aNAkeucldRo64Uk3JsFvQc5Iu/tHCSh7g8hyzr5VjWQ\n1XLJZBLb23ASR3dPR1jWUiJ6KbxVpnJ7c17/RKsfe5J1AJEqYqBxppvgh+hn\n8h72\r\n=Po04\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.14.1","dependencies":{"detab":"2.0.3","unified":"8.4.2","remark-mdx":"^1.5.6-alpha.0","@babel/core":"7.8.3","lodash.uniq":"4.5.0","@mdx-js/util":"^1.5.6-alpha.0","remark-parse":"7.0.2","camelcase-css":"2.0.1","hast-util-raw":"5.0.1","unist-builder":"2.0.2","style-to-object":"0.3.0","unist-util-visit":"2.0.1","mdast-util-to-hast":"7.0.0","@babel/plugin-syntax-jsx":"7.8.3","remark-squeeze-paragraphs":"3.0.4","babel-plugin-apply-mdx-type-prop":"^1.5.6-alpha.0","babel-plugin-extract-import-names":"^1.5.6-alpha.0","@babel/plugin-syntax-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","_npmOperationalInternal":{"tmp":"tmp/mdx_1.5.6-alpha.0_1580784404317_0.1939243542027118","host":"s3://npm-registry-packages"}},"1.5.6":{"name":"@mdx-js/mdx","version":"1.5.6","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"a38784f96c09518bbd99d62454e1908085e5ed02","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.5.6.tgz","fileCount":8,"integrity":"sha512-OrkP3XkCzueTiC5AJsX8BBIfo6XXH6HayX5Yu/7rpSl/5t0hCT5p4U7+AMsb8xC7pK3br/TmLblTyNC6NfSlrA==","signatures":[{"sig":"MEUCIQD5RiKKnltLSS76Z00a8oTK9NjKMDRmqPjdmCP/XXhkhAIgIta5ZKhTi1209kmaz9oxDYPhTvPDN6u5GtuOnoRHYHc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":17912,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeTuJYCRA9TVsSAnZWagAA4d4QAKNHblW16wr+Ria22A5J\nbckmd2DtQFtTF1o/4pvgx6h33Ggl0mSn0vc5xaEFcQqmFIJIXp0uXGIJxEsi\ntj4q0n9OPNw5wMOnRsVDAQ1qRs/B54y9oknXucLqWDM7wImuhFAx9xlSnNPl\nM85vopb18xNvvrSAE80o4SGB76AUIRwhvvcXiC/RNzvhaqH2nors2s7sfLs+\nBzN3D6bGWMRglXzWbmiIDA1kFl/IKsVpmEL4ljBgW41Zpc32J5qF6mjMfqxL\n1NVw3KKyoYypfvPlUkXIKz11SMhSGmmjLpbKH4KI8oWsmu4BT1Vx7JJ1Aj+i\nMAJXPO6qJO9bAfOKpISx+EkrHq9PxaW89NLMY6xO2c7GpzrdmKxCbhHQ7Fzv\nH3IbBY3nZTqsO2rLpOmK96G0GHM9EygOzscnKsADgSTfjEftE0qWZOkZAgYV\niYfsRiEWusKT9kEb/UN4VugKf5BB0DntZ2/jQJj9McB57cKBVMgy6CUebgwf\nP2gXjfhGuLIS0U9CPdrtKuw+I7ms0xQ/gaf/kWJqP5poKMTxtJUuNmOGP/Fh\nxLYLwka3CekLxeUwV69ubAh/johm0v6FdArOli+TFoTL0im2Gjxp6BkCU13w\natOAP5r38goQUqmNWLpBVUSocJhA2cI74knXOYyT08js4/kf9iXz48AvRCiq\nWt50\r\n=duU/\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.14.1","dependencies":{"detab":"2.0.3","unified":"8.4.2","remark-mdx":"^1.5.6","@babel/core":"7.8.4","lodash.uniq":"4.5.0","@mdx-js/util":"^1.5.6","remark-parse":"7.0.2","camelcase-css":"2.0.1","hast-util-raw":"5.0.1","unist-builder":"2.0.3","style-to-object":"0.3.0","unist-util-visit":"2.0.2","mdast-util-to-hast":"7.0.0","@babel/plugin-syntax-jsx":"7.8.3","remark-squeeze-paragraphs":"3.0.4","babel-plugin-apply-mdx-type-prop":"^1.5.6","babel-plugin-extract-import-names":"^1.5.6","@babel/plugin-syntax-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/mdx_1.5.6_1582228056566_0.29796915501074084","host":"s3://npm-registry-packages"}},"1.5.7-alpha.0":{"name":"@mdx-js/mdx","version":"1.5.7-alpha.0","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"d9340dacada5e7f050b238d75ce227126890450b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.5.7-alpha.0.tgz","fileCount":8,"integrity":"sha512-fX0zT38OqmgVpTHi1NT0EXJbjS1jnHXRkB7dphJz2yXB0yqHXrcEFler1+CbdYKzTyTncVMhrAc0UVfJ8Y9Lkw==","signatures":[{"sig":"MEQCIE5pNGn6BsM56bhZG8UzMU74cTLYHuy888IcNqCLDlyrAiABxIYA6RnFu52b8K200c7BoeHYMuNFl3PzeYBVuLaUJw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":17952,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeTuhcCRA9TVsSAnZWagAAuwQQAIy9t4vTDTKkEcx/KF61\nhYRjoqZJcbdpsdxLG/hlft/MAl4G0xuLje1xf+b0rkucLyFFVS4O6Zy7aZJg\nURMe0J1KL47usbfahaQ3VAwkRFj5WS0FCy9BF31JhcGNCZOzIcvo8RNM6PIc\neqzDOUNyNLO39mAPEXqneIpJnqTqoGdehBKh5pif0YwRUTh5s3jjzFQttavk\nxBEqtyPjA4IC9Nx8QrlsIrMTqNeyb5jSUGKf8U/XDRr4dAwqFNDPSPMqbQm5\n93NgRfB+8/0jky9uByGuAunbREnUh0UTgl42wStD6X/gkn9vEA1VfE5IMFPh\nOX1t8ygAXohXChtmDYcT6AWOm+NhRiJYWI5OLFPSKxJ8vqJY3qr4eqGasLTt\nP3TTmw9UVNlSY6PjquhGjV7lkQeY70LuJ7MUIt2yrCim6OfCmTFD3CZcIbs/\nw28J2tnWGWBxMPZvMhivfzu6rzHLSk6k1Swz89TeIflnboOKTfqTDq3lZ+gq\nWZ+jyJCBBxb9jV8V210Hu+VoWFsOIKpT2qY+knBzIdcCiQW/EQ75uEQWzh4M\nyISYTsWrKPeffJNxo407LvRc/TTGxrmcOVSuVGxDySLFkBuFwncQHZH+u9fY\nrs/7pbTCTiiqL8MaqsYQdCQMQyEDLp/hB2coe0hT0E1Cw3T9cOx5bU73DbiI\nb14w\r\n=y1jj\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.16.1","dependencies":{"detab":"2.0.3","unified":"8.4.2","remark-mdx":"^1.5.7-alpha.0","@babel/core":"7.8.4","lodash.uniq":"4.5.0","@mdx-js/util":"^1.5.7-alpha.0","remark-parse":"7.0.2","camelcase-css":"2.0.1","hast-util-raw":"5.0.1","unist-builder":"2.0.3","style-to-object":"0.3.0","unist-util-visit":"2.0.2","mdast-util-to-hast":"7.0.0","@babel/plugin-syntax-jsx":"7.8.3","remark-squeeze-paragraphs":"3.0.4","babel-plugin-apply-mdx-type-prop":"^1.5.7-alpha.0","babel-plugin-extract-import-names":"^1.5.7-alpha.0","@babel/plugin-syntax-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","_npmOperationalInternal":{"tmp":"tmp/mdx_1.5.7-alpha.0_1582229595576_0.9450648943083804","host":"s3://npm-registry-packages"}},"1.5.7":{"name":"@mdx-js/mdx","version":"1.5.7","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"9167273da888ef4c545a5601bc5da989dfccb3a7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.5.7.tgz","fileCount":8,"integrity":"sha512-db1E3P0HCgSUX768Y/jIcr5h41VR5AsvaOmPTydltNM4R8Uh863IqDvnkpa7l829bY/tp6wrMBWM2NH0oLuxHw==","signatures":[{"sig":"MEQCIAfA+OYH0meeH2ih/xkD2ZRdzVoJ3/7TKyHJSUS3mGbHAiA/oyiNbKIvKELmPszrV5TETWlaNjJhnx/+QfU8VIinHA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":17912,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeUFgPCRA9TVsSAnZWagAA+dsP/RNb9znfOb5wt6OMifnW\nAfYpIThvouiOWhEcR4iuHmAXI0uLcT+tdjYGKh1GODQIi+qJnvJnl/E5pOEw\nMVg1SWvOANAwWEzD4DIR4GanqNvlpWwt9vLF378QVTsl6LfTSKiRwghg3aBf\nmFU5x3KMYkSR06JiFQVPJZqlUs3OLQ4dp+PytLC4L+LJdtWC4aXjL1hMM5gd\ntDFmp6MjPScBrGFGVsFj1id33bJ0yMGtg0Ngsgu+swBbxXpcnifWK5GTFGSU\n0btOsSW9pRrvKVd5WYCofbcmLamGTsQ4u0GxmKgRPeNhNmI9HfY66UhGtDCO\n6f24FkVyyZoHHhi/XumCsWuTMHN2JTBWFmFbRVlh73+5pwIIHUkRh3b/CzbD\nKGnKXGXrW2v25Sr/wbjoPfniEzk/2LeKHDVH9u8an+1GWuzCl9aR63mBOeU6\nWRnxnVHG930KaJfcFDoJxE5AZQHWj7iIv59PZVa51UW5DkqbWfSUlf+2M7zM\nl1DLJmkyXXDU6m9s1FhRsoM0PA+v88ZrBaUx/EFW/IwirjMo5wKxdUKo8yVu\nVe182GU/YMEkcJU3WWK8lun/bNZ9f9gFIqrbSHYflTkcEusdLgcmcFX9F4NY\nidcylu37CKoTTybISShYSUtHS7B5j9Au5Gq/xzkWb+PIYViPfIMB6Oq0IjOI\ne+Gf\r\n=yqJk\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.14.1","dependencies":{"detab":"2.0.3","unified":"8.4.2","remark-mdx":"^1.5.7","@babel/core":"7.8.4","lodash.uniq":"4.5.0","@mdx-js/util":"^1.5.7","remark-parse":"7.0.2","camelcase-css":"2.0.1","hast-util-raw":"5.0.1","unist-builder":"2.0.3","style-to-object":"0.3.0","unist-util-visit":"2.0.2","mdast-util-to-hast":"7.0.0","@babel/plugin-syntax-jsx":"7.8.3","remark-squeeze-paragraphs":"3.0.4","babel-plugin-apply-mdx-type-prop":"^1.5.7","babel-plugin-extract-import-names":"^1.5.7","@babel/plugin-syntax-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/mdx_1.5.7_1582323726776_0.4444607625524928","host":"s3://npm-registry-packages"}},"1.5.8-alpha.0":{"name":"@mdx-js/mdx","version":"1.5.8-alpha.0","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"e2057a0471e188a362fdb5a1d2607aef7c84081c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.5.8-alpha.0.tgz","fileCount":8,"integrity":"sha512-ORAZ0JEGsC59tNy/XkwxT3RCENGUKt8zQi3QbZTGwqTomeLInfDq0gBYlXaKjRoANWBHguNlJjjuqd0vo8ofFA==","signatures":[{"sig":"MEQCIECGhTJU4XAe9OiCVlIcl9ST0gI38qX4JARzV9bdBNR9AiBUYHv+CjUYffmlYcfccletx7CZroHHyGC86hLapIBV8w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":17952,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeUFoMCRA9TVsSAnZWagAAKzcQAI0HtVD2n3Pwc2bndN0J\n7uo4Gf8OIAS+bpFqOz84dGpg+KDaMdGXMSllbW43Xhdg/1Ng9EPiBE25eCIA\nOc2AZG9JZ4bUbNese3sD/btMaqy7FEqWXWlogB77nmJYJLTpvBk8nDsvca9E\nlPu3Q7e6ac6BKcKkoaCuO4SfUwVXV1+ZOSDZk/ladMw8cQ+jLpojDLW3DUrn\n44fP8vPm7Y99ZMhI3EpTsKldhckXXgv+UN+PQcq/hkXVQAuigU7VabV4iVoa\ngPzKRgMzbPKJ9cGaSZ/YdEaE313FkKeu8Hv3Rh9Vk5kUV48EcOZIx6ChXRNw\nJoc61ESZ09kLoiiaquwf+UwrIXZ3CYcCliq0plkErxWlFDdahV3xru/+uv3t\nfbSdNgZt6A3BORl1Zdyrh5K6iqKEvmoElFljqX6mxFmJP+TmXVZhp+Ruse24\nYkeM0MXwTt8G0NtTKQAZTgHl4b3n+tZy2wSSszTdCDgLW7AikO0nFQko9emr\n8cY6QHHX2LpOTQz94SRHR9cPaYNyqgO5omD2bcszGneLV8z3fcQZ8FAILtWF\n5OOvj2pi4CrBB0OpTe8fG5q7YDk25I5uHM/KR00FM5JWIH1hZL/8arGCYUht\nue4qfcgmmSsafAHVzZIF07+m4PwV4vJHEcGP8mqRrFs83AWvGnhCuMtZyDvA\n9+f9\r\n=5CuD\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.16.1","dependencies":{"detab":"2.0.3","unified":"8.4.2","remark-mdx":"^1.5.8-alpha.0","@babel/core":"7.8.4","lodash.uniq":"4.5.0","@mdx-js/util":"^1.5.8-alpha.0","remark-parse":"7.0.2","camelcase-css":"2.0.1","hast-util-raw":"5.0.1","unist-builder":"2.0.3","style-to-object":"0.3.0","unist-util-visit":"2.0.2","mdast-util-to-hast":"7.0.0","@babel/plugin-syntax-jsx":"7.8.3","remark-squeeze-paragraphs":"3.0.4","babel-plugin-apply-mdx-type-prop":"^1.5.8-alpha.0","babel-plugin-extract-import-names":"^1.5.8-alpha.0","@babel/plugin-syntax-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","_npmOperationalInternal":{"tmp":"tmp/mdx_1.5.8-alpha.0_1582324236100_0.06690892673452509","host":"s3://npm-registry-packages"}},"1.5.8-ci.13":{"name":"@mdx-js/mdx","version":"1.5.8-ci.13","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"baca28ff029b3f3209581304a022798baf04ca30","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.5.8-ci.13.tgz","fileCount":8,"integrity":"sha512-+Z+okVw2W/PpHb0GIT4ojpE/Q3Tox54f9RxehP8AP77LYrn8yx+fPw7yRRA4d2EvXCQ7+Z48sZ7HOfrstqB5fg==","signatures":[{"sig":"MEUCIBTSG5+5RJ2B4JxS0uqBcUWNtKcWaAL2zE1HC5PTmzYtAiEAqIF2csPxjHeCTQGO9GwCD+8Zl+oGmuZuIjRLAKb4J50=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":17968,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJefP7dCRA9TVsSAnZWagAACJAP/iXf8HV0Y5kjkTxGtoCB\nFFRMify5CJXzMAFKnjFO9w2QAwP0U6Zy/QdXJT2dAhEfZtsI1DxoL39bLjyo\noc18UOGhP1kFpZP0p4cOkVu5zDSu8l3UKUTjBMkGnskzI3F2RPNGD7qy4o20\nDhiWowaZ/7GEDg3iok77pIF8f3UrHHzzhxdH9CECuW6uIIlryamWKsvb5K8O\nQauJA6+9gY2bHXxRCmXgrvwrjia/nBa3mVry3yhyHuj95fdha3ULI/yz3pll\nTPuYh5PpsjZuQwO+tEtS9VEeCMdbnkKdKDR2Cetzbxtgdz82CDxq+6UVnxjz\nA8Rl0Jj5AitC8T650mKcbEsCuWZON2n5W+WAs+Jk0SpRm14+StVECVvFunUA\nYLCzehQYwPy3jzWEpixW+ISfP6CnLWTDjrHZyyGWQi3Xs5NfAIcxgw0l2kIe\nyybEExTZihsq/3GP2XIKICMWYFVAsPYP63QdCJKx/2ydJz1HQQggDycWtZLm\nPC9cN+H2N95ToJhDSJi76wt4sPNACFb/vXpTyntlM5eCmQHQdk026ag22EjQ\nEkBcdKEddveYQSxcvzFinLgABHT+CkteajBPZf8QcTl2Z4j44z7yQlQt7hiI\nwAEgImtz1q+VDaQs6XyPT4j2RDrIYHo7dv1aJA6+HxGPduXm9jfXT6y9k300\n//Qb\r\n=IL//\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.16.1","dependencies":{"detab":"2.0.3","unified":"8.4.2","remark-mdx":"^1.5.8-ci.13+f460b7e","@babel/core":"7.8.4","lodash.uniq":"4.5.0","@mdx-js/util":"^1.5.8-ci.13+f460b7e","remark-parse":"7.0.2","camelcase-css":"2.0.1","hast-util-raw":"5.0.1","unist-builder":"2.0.3","style-to-object":"0.3.0","unist-util-visit":"2.0.2","mdast-util-to-hast":"7.0.0","@babel/plugin-syntax-jsx":"7.8.3","remark-squeeze-paragraphs":"3.0.4","babel-plugin-apply-mdx-type-prop":"^1.5.8-ci.13+f460b7e","babel-plugin-extract-import-names":"^1.5.7","@babel/plugin-syntax-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","_npmOperationalInternal":{"tmp":"tmp/mdx_1.5.8-ci.13_1585250012710_0.1857153275278589","host":"s3://npm-registry-packages"}},"1.5.8":{"name":"@mdx-js/mdx","version":"1.5.8","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"40740eaf0b0007b461cee8df13a7ae5a1af8064a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.5.8.tgz","fileCount":8,"integrity":"sha512-OzanPTN0p9GZOEVeEuEa8QsjxxGyfFOOnI/+V1oC1su9UIN4KUg1k4n/hWTZC+VZhdW1Lfj6+Ho8nIs6L+pbDA==","signatures":[{"sig":"MEQCIEpu2Bcqm22+L7zeoofQg452oiEi9yaxR+fQr7ttjpxDAiBd+CuQAtzbmPG9fDTc1DuFYXh8MJ+9iM/kBfOAVcI7Cg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":17912,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJefQCsCRA9TVsSAnZWagAAHDkP/2s9ABi01xNODdf1v6V9\nnzXpNgVES/gwVehz1AFKOkr1DeAkfvBEUvIvGun0LGASLZxJIwMqsWyVp4oL\nj2wQPWCLtzuTB168KU10cI98X3K9K/tbwvDIQ6qbGI49Q/3SvGrI+qnyFcKV\nqr72fBbjssKao7ICMADkpvgzNKi7EQ4x39vSKsB6Z571wFqUcuiCWI9h4sVu\n+DAM1ioPVqSHW/wHamiAyNLLnr8vvIRiqWeBWLSzXN8axmQg87kXSGBMeY5X\nctyvEnG+fuDvHVfjg6CZjUDuwAf4BDEb/HKEOZTvoYzEkiNavNvhz7ZLJp6g\nQPRPNSrw9q6hjYZn6JnLMePXBjf1wnePmPmpwurhVPMxHqnw1NwRssZdD5Oj\nFax1pjJgiD5WT3OjTlLyXf0pz/rakRc2M+kx5mGmRkXeWhw8EeF2EdDGlM9v\nc6q45Rufcv7b2HNGrlb43GZKNIRw2PaMcRHrSk/odPVzoEUAsMHrb4W6Q/Oz\n/MWj6gSGA0cqJKnX+iTGiz1nNnBtvaVdn9+RGcnigG3A+LNwTY8IjZO3zpY9\nGwm1uSemHCP7pgTfXbFcPncc4AVcLxrNOXW5pc4iLZauBigOnae33irWIusM\nj1EvHcjQGKfOwTpLBuYy7d91ATWuDTpumJnMz7xEmzeIihHC6mWbaAvBT9z+\nZ8ND\r\n=Jb/K\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.14.1","dependencies":{"detab":"2.0.3","unified":"8.4.2","remark-mdx":"^1.5.8","@babel/core":"7.8.4","lodash.uniq":"4.5.0","@mdx-js/util":"^1.5.8","remark-parse":"7.0.2","camelcase-css":"2.0.1","hast-util-raw":"5.0.2","unist-builder":"2.0.3","style-to-object":"0.3.0","unist-util-visit":"2.0.2","mdast-util-to-hast":"7.0.0","@babel/plugin-syntax-jsx":"7.8.3","remark-squeeze-paragraphs":"3.0.4","babel-plugin-apply-mdx-type-prop":"^1.5.8","babel-plugin-extract-import-names":"^1.5.8","@babel/plugin-syntax-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/mdx_1.5.8_1585250476265_0.9563480971203047","host":"s3://npm-registry-packages"}},"1.5.9-ci.5":{"name":"@mdx-js/mdx","version":"1.5.9-ci.5","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"9fba56c287741f68348bd97027432bed40d64a7c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.5.9-ci.5.tgz","fileCount":8,"integrity":"sha512-kjZeGTfApv1xqXyZ6BvJgie/ErqWWSApvACIWxr47QAYCILF7SWfVJ2Dg1oJWCVA5tqGilKz91PIf/tWMyTbPg==","signatures":[{"sig":"MEUCIQD1LEXmfiEmRJBt6LhYoo9sSms3lKForF8IiQI7gMO1dwIgbjzGVy3UvxoLD7Z8gmLVg2PZh0oSOefHs4BwBNuD7yA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18032,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeoI7dCRA9TVsSAnZWagAAnQsP/2ZCY1mDlg3OnQhpawc0\nK0zwawkkPR0ZGEa/vJh/6B0GHTmT8BhCAm/1//qOSdNoR7qenFm+SiooGza+\nMJCjzLWQDU+am/ABUIKQBmH011IlyrTz3a1U9bUDk3guhSIrZ8PLC1iJWVl7\nLp/bMKIxR3nSiZzf31S7WFwULtuVHZhTBfT7zPoX/FnIXivQXTNecd9zxnQV\nhrhNCxDCVXwGoLxgxn/5FWxpMKJ3/r8KQSjAYMmr47zUQqyurdiRrAG++yjy\n0ab++LvM58DM31NkCkzfGHg6VDmtodsbnAd5cRutXVamBQGw26K9t+QBUuPw\nxChPhcHQUZJMLcdOd/cKfTO0eToSkiH5PnGMwdXN456yhpjZAJNQSKzI1QqY\nFIxY2dlvurip/vYpWOZHXcTHD7JS86jFnqwMvuNd8s51LWIONGtHwPd9KOor\ncc5qqY1+60iKktqzjRio7fsO0KmjNNd+z+MEadheVB+uA2q/XdqmLXTYe0En\nKovtcdXVwouaBnEObS3fcR6r46gPY0sXjOIvyzHXCdZpeo9xF38TwhQ/ilqD\nMjL4XqWU8f0ZBdS4Ti4RUCftjdunyJAdN6POhUTktSwR6CwxYCVkXUqh3z+G\n7EwtKAAUILK7SHoHsPlmugJeX12ZPbpgMG5qmMfZavi2mek6RBlm4TtKq7Uv\nAPzm\r\n=yKpT\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.16.2","dependencies":{"detab":"2.0.3","unified":"9.0.0","remark-mdx":"^1.5.9-ci.5+4cd76ad","@babel/core":"7.9.0","lodash.uniq":"4.5.0","@mdx-js/util":"^1.5.8","remark-parse":"8.0.1","camelcase-css":"2.0.1","hast-util-raw":"5.0.2","unist-builder":"2.0.3","style-to-object":"0.3.0","remark-footnotes":"1.0.0","unist-util-visit":"2.0.2","mdast-util-to-hast":"8.2.0","@babel/plugin-syntax-jsx":"7.8.3","remark-squeeze-paragraphs":"4.0.0","babel-plugin-apply-mdx-type-prop":"^1.5.8","babel-plugin-extract-import-names":"^1.5.8","@babel/plugin-syntax-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","_npmOperationalInternal":{"tmp":"tmp/mdx_1.5.9-ci.5_1587580637164_0.6771826475199614","host":"s3://npm-registry-packages"}},"1.5.9":{"name":"@mdx-js/mdx","version":"1.5.9","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"16078e1660a0f5d88b7d8e73bf09b989a755fcb9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.5.9.tgz","fileCount":8,"integrity":"sha512-K/qYIWwV5+V1ChVHga3ZzXlXtEuNsBOt/QI54K+DvD4ayu9WdbBv/953JdC2ZPrHQek48WIbKBH27omZPA6ZPA==","signatures":[{"sig":"MEUCIDXSM6uSn7+YuBBzeNDmpuDWVhulw/TdQpkJ7wGxTPfzAiEA/gyXtsOF0vW7Dp4p7mpnLG4M5My4exd+b/G17fzwJ3c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18006,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeoI88CRA9TVsSAnZWagAAOWQP/jf4SrULUTHs9I6kd/V3\n0UH+9Fbo4o2yMvehCg8Dw9BoPxrlqZT1bSiPETpREv7HCjxsabO/i4neJ74D\nFJN9E93T8NVO9ejMsiNrLL2d3VdXWOBX1a+0VfRpa5nY/iEIu05Wdn12D+mj\nAsszxhbn4A9K9UJtK3piKTQykIfqlEX63n+8yAffIFTN7m5JDY13tvPOssqz\nCESPt6U/d/7lum2V6x0yjHBMoCeo0ZS3mRchfJ1GxJjJ3sNY7NKa0VQxlVBf\nl8XjfW0OSQU9LP87cbObsnEGcwqbOXge/P1CuJ0bEim87B1PMqusEXgck0eb\nj+bA+eq+/Wxi36JuUjYdRi2LyNvjybQkWDMDKEkfXK+MTpEtKx1WhU5vvXW6\nWUjqVAT2LrHnsjE4qXosnfv4BY5jQqpAxknP5S0tBido8U+2JWiRRY/MMBV+\nuN15O0nAnxWPBpEEJ+5AK9uUA/yCfRtT/LNXScUvnFN+TKw7SAC5P2RrNKcz\n6mViYZMunnR2yNHvEj7BqwZXQbVIGa8bOHZhKDOhZspN/u2Dg1s1b39AH84z\nFQ2NuM5MCTp7FUPQpt5YZD3ukaCb0K4wHhFDXzjY4z8kUuzVzPRjzK2ntbWD\nT/dPKrnraQJfFOcaeDTqB9DREreUO5gV1MXAweCa4A3Tlp9ZGqGVOtj/GLIN\nkUdy\r\n=8njp\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.10.0","dependencies":{"detab":"2.0.3","unified":"9.0.0","remark-mdx":"^1.5.9","@babel/core":"7.9.0","lodash.uniq":"4.5.0","@mdx-js/util":"^1.5.9","remark-parse":"8.0.1","camelcase-css":"2.0.1","hast-util-raw":"5.0.2","unist-builder":"2.0.3","style-to-object":"0.3.0","remark-footnotes":"1.0.0","unist-util-visit":"2.0.2","mdast-util-to-hast":"8.2.0","@babel/plugin-syntax-jsx":"7.8.3","remark-squeeze-paragraphs":"4.0.0","babel-plugin-apply-mdx-type-prop":"^1.5.9","babel-plugin-extract-import-names":"^1.5.9","@babel/plugin-syntax-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/mdx_1.5.9_1587580732116_0.8496571561218731","host":"s3://npm-registry-packages"}},"1.6.0":{"name":"@mdx-js/mdx","version":"1.6.0","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"176c7851be2092afd0cf8c10ce41ed21c30512b5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.6.0.tgz","fileCount":8,"integrity":"sha512-e4RZtMWU3jM0mA02fL0fvAOcxzGMTL8awDUHv/7bbU7z5JnfMAX4wSvR3Mp2y0J+hNjQ723696CP5zL92xVjyw==","signatures":[{"sig":"MEQCIEU6cPMz/CH756hQSZ9nWnxds7iST+fDIo6TRLXJ8HyoAiAsVCB/hty+AduJEScF3VLnuQcoT0mTsN2UZQn1HQ29tA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18018,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJepzpmCRA9TVsSAnZWagAAfkoQAIdOIKuBYcybz02GIrhQ\nLcoBHy849GCkci6idyYG8RRKhMNQWB5Kf6DxRIxng352WFaVk5SVe2tcrOkK\nswFpg6De/xHua9VfRRTcOESlDMveTKp2uglIU3hM/QnqHTWg401of1duWm2X\ny1uRSx4eDLMZDgFsudEFCc7ClA7jvVmKHeivbYWxh/VLIuvEtU+D9+JDhat5\nbhGavbmlVzVlU5igatwISBL+SacLmHcVyoKNH6hIaXwCx6aZnbg5WTX1p5/w\noJ0U+PElH6vOmsi1KLBleuyPv4d8BHfy20K0NY1+SznvL2Kv+P9Uc7dvFFHM\nTLXLDnzRInblzA/y7Pod6nuSQ7tZ7GPkWXhw5b0V93VxBrqvQ0oj+z92l1dT\n75fxxXLJoIntSlfTIWTmkJGwXx7yn9KC8WqH2OdaAPc63lHznoJC3UV36bRO\nQ4UeJeVaWYwrz6wXTrxSvGsKJwPnb1N3U13mP7GfrReA6ft2epZKmCSP9kSM\n75R1VUrq3RtE0xRE93ove+4eyrXHgtVdNyAR8c5HLpORMtYymzdK6KSfplaa\nLuuvSSoYKy9K8jpmp4JckQQWHIq54szCrxAwT04e8juYEDsxj9PxyvRoH7k9\n0+xMYyT4G/lvwfaIPbjvKYwWebiAYSc0KBw1AUsiiF4fd+gcjqibd1kV1VZW\nu78I\r\n=S3Xv\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.10.0","dependencies":{"detab":"2.0.3","unified":"9.0.0","remark-mdx":"^1.6.0","@babel/core":"7.9.0","lodash.uniq":"4.5.0","@mdx-js/util":"^1.6.0","remark-parse":"8.0.1","camelcase-css":"2.0.1","hast-util-raw":"5.0.2","unist-builder":"2.0.3","style-to-object":"0.3.0","remark-footnotes":"1.0.0","unist-util-visit":"2.0.2","mdast-util-to-hast":"8.2.0","@babel/plugin-syntax-jsx":"7.8.3","remark-squeeze-paragraphs":"4.0.0","babel-plugin-apply-mdx-type-prop":"^1.6.0","babel-plugin-extract-import-names":"^1.6.0","@babel/plugin-syntax-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/mdx_1.6.0_1588017765938_0.42742670795725135","host":"s3://npm-registry-packages"}},"1.6.1":{"name":"@mdx-js/mdx","version":"1.6.1","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"95d53da3bdb0cd9239097e411b5a41ad86dbd059","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.6.1.tgz","fileCount":8,"integrity":"sha512-DLnHbYZGoXSzfIHKgEtsO4qP8029YbdyJvC746PwfPNrRyGciPsqgWmfz/nEXt/fg+UMBG/6/cZaZx/hvyxnyg==","signatures":[{"sig":"MEQCIDFDfbVV1UGFVviTBo/DBaCbYNLFVULKrsEJsbWfakWMAiAGD1sSfE9wz2DHqcsBMK3XxgLq6YHT1TfuzrhMYZzgUQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18323,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJerGoeCRA9TVsSAnZWagAAhlMP/3I5VD0abaioTdussAFP\nAEtuC0Uhx+hZIy+fCiBrRsq3QYpzZlYwV5QS9XdpgKOr5Gw3I1URToLJmVL4\nkskzSzTHcJnBX2j8mzkz4E2AErKKQocxxbYSpsXilUMuUwSxiu02mIbBHQn8\nv5Zk/PW4X6hFmp4aQ/p4+Y4C8CujkSmlEVOc3Zm4gZrYID/0KGKW83p7POO7\nNJ7BgwQow9yy11dj9Sfi3q/NPOYT4wLDxrrm6MSJN/+5YK+UZ7YsbHr+q0TT\nE3EB2/FWVUQvN3DRRLksdF78dpA1KC42SLU6OhRjE/hERkxbOti6nVkhW/c6\n8LX+l6YuWK5x9DCzY/EMqRfDM4/ydq5tNTrvNyu5YnkYNVFElkhpiVauPYxE\n4LdPo/tF1AgezgY7Lcmcuw9vgaBjRAw59l3lf1BkbDHl8vsnymqJds24ASed\nlg2c613S0uRKutsVH+3ItHw2Xji5HUg+gYpac96GqcdSQjVwjhZKuFOKPtgD\n3Da+WQwn/2f5bLzAryuK7v2TF9B0r/N/v9NWLLqHUIx54F+nA3Nd4UZ9Z8ED\n4/B0yBuL2zHXwJoXe7c4STWMlpC+J/s1ro2RQpZ+7pWltKJd5XSw1sHDR9J/\n58Le3JrUz4HL2zymUIthZJ99kq81geyJNB5icmZPrXgWNBGmR88zqTNQRqBB\nYcvg\r\n=qnWq\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.14.1","dependencies":{"detab":"2.0.3","unified":"9.0.0","remark-mdx":"^1.6.1","@babel/core":"7.9.0","lodash.uniq":"4.5.0","@mdx-js/util":"^1.6.1","remark-parse":"8.0.2","camelcase-css":"2.0.1","hast-util-raw":"5.0.2","unist-builder":"2.0.3","style-to-object":"0.3.0","remark-footnotes":"1.0.0","unist-util-visit":"2.0.2","mdast-util-to-hast":"8.2.0","@babel/plugin-syntax-jsx":"7.8.3","remark-squeeze-paragraphs":"4.0.0","babel-plugin-apply-mdx-type-prop":"^1.6.1","babel-plugin-extract-import-names":"^1.6.1","@babel/plugin-syntax-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/mdx_1.6.1_1588357662311_0.7954301385595268","host":"s3://npm-registry-packages"}},"1.6.2-ci.1":{"name":"@mdx-js/mdx","version":"1.6.2-ci.1","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.6.2-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":"1ea35d08afb387d05dc1df42c9987c2e2db50d38","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.6.2-ci.1.tgz","fileCount":8,"integrity":"sha512-rtB3dcfUo2laqrpDMWfTw0jpxBHb2NpEBYZfmXsySNA/EmaiTMdtMRiYKmWCtvSiJwIfQMuMy+qj/n6i0+TGKQ==","signatures":[{"sig":"MEUCICFk63j1i2v3pXEr+Fa7jcZhBTP3BifArbR6tgkp6kzeAiEAtelFSASQrczEDSnIubxWOF4XYuDD8t00UoxzeAq8JBA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18335,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeth/2CRA9TVsSAnZWagAA3dkP+QEeVt53kw7zU/afONzS\nktv6uGWSQT0eHT9+qrb8Zvj2EYs03wLJsfiff9yW6gTMxZ9X8OBvN9DIrBJ3\nqLe+6fwF5XQNKWOJnk+FuStqBLuG4WhoBpGFIgepThy+uxbKNffi1O+oijhD\n4FuxDF5eOJd3M7wlsCEHcvAh1NADMaJ1o15U2oT4vymsfld6SKZ/VTpOE3QC\nU52uw5K5RGYDok82jC7kfMF/svoWEIs+jkzLn8mfYFLuSC/RtrPYP5sK7OUA\nt3oSF2HPFDaQ3PiuT5LOFJ163tzPDUq1R0nVg46DEiGwPR+B2cAxihPojDg0\n+lAK2lcDSY3ivZYyC69l4mcOf431atQoCIQpm6Hx4mNthliwMSx5aoSIwx2I\n6AjbG8jZm8VaCz5Lucr07mT3+drPXh13E5yFljqn14T8cIjXnEPce4OOQfmC\nw4OcxEKunWrjsfu4fLQHUKLr0krsJX6OIKG1szzFZykUaYwcDiC5JkUUMREe\ncCK3FQL1po6RCqKTF88gh98Jhf48DJDevfcBo7n/9oG1Wvdky2wLMTqIvACC\nd15sjrailRwIcW+fv/0h5ej6EbAY8pQJ5yJoerBjMucV7eXaxCTGOPd4871d\nb6qXYn53HqyFI0lNfUQW67uSRZxp2oKLqIM8cdbHOXEPni5rFAyoY5nJGD+7\nB4hn\r\n=C8tU\r\n-----END PGP SIGNATURE-----\r\n"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"73a1aa6475e449058116e925bebf51f2931392a7","_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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.16.3","dependencies":{"detab":"2.0.3","unified":"9.0.0","remark-mdx":"^1.6.1","@babel/core":"7.9.0","lodash.uniq":"4.5.0","@mdx-js/util":"^1.6.1","remark-parse":"8.0.2","camelcase-css":"2.0.1","hast-util-raw":"5.0.2","unist-builder":"2.0.3","style-to-object":"0.3.0","remark-footnotes":"1.0.0","unist-util-visit":"2.0.2","mdast-util-to-hast":"8.2.0","@babel/plugin-syntax-jsx":"7.8.3","remark-squeeze-paragraphs":"4.0.0","babel-plugin-apply-mdx-type-prop":"^1.6.1","babel-plugin-extract-import-names":"^1.6.1","@babel/plugin-syntax-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","_npmOperationalInternal":{"tmp":"tmp/mdx_1.6.2-ci.1_1588994037762_0.5401924356974661","host":"s3://npm-registry-packages"}},"1.6.2":{"name":"@mdx-js/mdx","version":"1.6.2","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"25e5b38ea236983973c065ba1f40d1e7f4485c60","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.6.2.tgz","fileCount":8,"integrity":"sha512-8UgSfqDeqFWPSdGy6LEkKkkOu8UxycafTaEBmMhVZixtdx/1mg6Gza49m/NRBgziD5oLOhg9h8FSXgKL4diV4A==","signatures":[{"sig":"MEQCIBRsEGbCw1ucq1IEb93cqZWVXPmdSyvY9Qqfc+pnZhDEAiASBLRL8V92g5eNuvO84pDb04znj72Z2jrR/IgCGYRZBw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18322,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJexWPwCRA9TVsSAnZWagAAc9kP/jTmkCUD/Utah9ys/eHj\nTwckaq5lLec7s3jussb9lFn5W6tL1b+GRM5mO/il44gil1GfbrgGemG7JYX2\nWtO707eK7RYsEYCwNfJD4DQP7sP78JULYVZf9b9M/AMNJw58xU1akkbcEZus\nemaoAgxf9jrRwPkGzR8rKQvVM1YYy9XG9VvXhofLI3JzBJqlDwMbPHtgYnrp\nTuCqpI4io/yKohbSzBobfqOkpZMVV2vbBhIs1b/CUV9TIr1EqYHjBjeUBHAn\nFMm3e+Xcb5/0pGX59bd7VZFsYuI/3XGMy6lj5hwALK03cz3au3prCn+OYX7t\n5qHUbksskPt5yVLOx7uDgGHUPZS/frIKtVZvXYHzonZQgH2GlKb4P89Ngu6a\nLk3W7AO4mZWWtpKDYMLTM/IfhbBCXX+ee11RMFmuSYZkdk0PwNZfnWhCzfa7\ns7qlNcGVbT31hzkW4gMyWlkpbx4hLqtVSLH9q/Zzjif3m8OxeqzvSN+L5wTe\nBsGJ5EzbEltgrJVRlaAjq5sVtuDTC/cr/3z2xGEO1b3P4NRuGKdBjktCi84i\n2UefIdEYFNaxgnp54HoXGipu8cWK906C/cO3HRjH0H2ThvNC5w5ltmkhs6DC\nrosj+j5V+O6dPuNzIsAO59PErm0jgglIVaiIdfUxl6fNgsJbeldEht/r1tBQ\n9eCM\r\n=WG4r\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.16.3","dependencies":{"detab":"2.0.3","unified":"9.0.0","remark-mdx":"^1.6.2","@babel/core":"7.9.6","lodash.uniq":"4.5.0","@mdx-js/util":"^1.6.2","remark-parse":"8.0.2","camelcase-css":"2.0.1","hast-util-raw":"5.0.2","unist-builder":"2.0.3","style-to-object":"0.3.0","remark-footnotes":"1.0.0","unist-util-visit":"2.0.2","mdast-util-to-hast":"8.2.0","@babel/plugin-syntax-jsx":"7.8.3","remark-squeeze-paragraphs":"4.0.0","babel-plugin-apply-mdx-type-prop":"^1.6.2","babel-plugin-extract-import-names":"^1.6.2","@babel/plugin-syntax-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/mdx_1.6.2_1589994480283_0.4895651645358505","host":"s3://npm-registry-packages"}},"1.6.3":{"name":"@mdx-js/mdx","version":"1.6.3","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"a11a22310416e68421dccfbe22005aafdcc7d81d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.6.3.tgz","fileCount":8,"integrity":"sha512-LiICL1raWTvY4fQosiIlfW2WGhb34pIm8CSPpqA5WMm0wo1XGcMJx4OgdlsQfdc+gCfTX48OL2bAdq7mvRwJDQ==","signatures":[{"sig":"MEUCIH7QlCppDJkaoayTC/oLFOcFt+kH6eXyxgddXY0OCIX+AiEAw53hGt82RP4NCUF6vv2BGdTXFghm3/rsSeUQqv4x4Xc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18322,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJexWhVCRA9TVsSAnZWagAAtmAP/14+nzJZtpuinmMNo30H\nXdaKsHaQNbQI5Seq4H7HYp9EeMqR6EWpxOBrNLf71yqhr+eVw96rHudKpTzO\n54/WAyiAe+263m1jZ03i+ClqEvnvELFsmz8I5vp24nsaFvequCs0pHm/XYED\ng60zlMHI0v5+RptulW1UAvN7cNeDa3kFqMP7C+u3TWsgRf9JArD6ZEuG/yn3\nykGG8soxq8kOVQYs2fgzJxRG6zNx9ufhPSS11QTpPBFoITTexLRQZ0Ye5s49\nvUbEFQPV8lZoTLqORlUjDktXmzuj5+Xsyr9CXHIdDV/kSbW3bdBi4sDt3kvq\nsHVH6OdrO5ZgDAlfF5b7r0lJ0PQqOtN+PC9doSoLMEAmq4xwiuoiHOOMizEH\nE/nv8dPyk/6b1sJEZvye/hnWUvBbIR+YZe+LapWlr5XogwtBm3DNH0jy3ms3\nbHj8ZdK3zVVYd94YpLvdo34OT6/hzoM+ppCPZg6THWEr7Dq8Z5eZQar2XibB\n2Y0oYNLyR313MbFBHnbVMas4gA2dbnwOBBa5KuaL7GCM5KhC2f3mPK3nJcme\nnMENgkcvYsm0PBSZJTeHo2pQ1rmi5Q/K6E7YNcjfMDIbitdT2pxA8UXyI3Z5\nQrSVTeGXHY6j+ECkbY92i8lj6ETRzlmMNsuPHayTvbafdhNd/LtCs1yOJZE3\nvj9I\r\n=0HEL\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.16.3","dependencies":{"detab":"2.0.3","unified":"9.0.0","remark-mdx":"^1.6.3","@babel/core":"7.9.6","lodash.uniq":"4.5.0","@mdx-js/util":"^1.6.3","remark-parse":"8.0.2","camelcase-css":"2.0.1","hast-util-raw":"5.0.2","unist-builder":"2.0.3","style-to-object":"0.3.0","remark-footnotes":"1.0.0","unist-util-visit":"2.0.2","mdast-util-to-hast":"9.1.0","@babel/plugin-syntax-jsx":"7.8.3","remark-squeeze-paragraphs":"4.0.0","babel-plugin-apply-mdx-type-prop":"^1.6.3","babel-plugin-extract-import-names":"^1.6.3","@babel/plugin-syntax-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/mdx_1.6.3_1589995604842_0.669584012058908","host":"s3://npm-registry-packages"}},"2.0.0-next.0":{"name":"@mdx-js/mdx","version":"2.0.0-next.0","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"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":"f4af75f82390bd7d3fbb2849dde2d23c05302d2b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-2.0.0-next.0.tgz","fileCount":7,"integrity":"sha512-Udsb0IJejQUDJxJIXWfNzWYmIhHoEff/sE410Ng1OqJBlPAbKXw706sfh6Jd7ZfasA3tF2GXztsl0NSH27vAgg==","signatures":[{"sig":"MEQCIAxHj1bnfGOutTPTTD76GJ0Tjt/mEKyVsYWSUg9PM8giAiAGjoWO6k/ja6T7OpN8juyXdqZvA6xQrzs37grqmKtRqg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18282,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJexYFMCRA9TVsSAnZWagAABXoP/2Biq0hPmcYTVbhFXJWw\nC1Y/4wbYdJAw1vmZJW+232GXq2kCZOvoITlQUK1UOUGom9vj0rJ8o3d6dBYi\ni+UmA1saXNXFhKx2qLvWa6UW9rwt9NTwqKo9beFtoa4Bgf/ZSP+lvy9Jha42\ne2rKMKbIO5gi+ZeBEm8ucq7qVwCxdysawFh8Z/UV+WJLFSEubHKdGAs9TaU+\nKTHyfAZE+4NgUJBcJVRbTjg+VntNACPYIFUp6dlYkZP1keDxPjZTaptfLQrS\niTeFbmThjg47fPZ6LOvOjHDVhNgjzdHsrhOn88yH2gPAzRENNwGPHxucRMFD\n4ESePEfENs0j6IibDcnP4P1V/+bfpILfMvGZx5LBdGK78eQRPfYd9FJurMQH\nWoBz1JKY/ZXWZ/ClgSAwz2vp6n4msTLZU+w8GLRGPH/C6VLCAhd2K4WNmF3M\nl8tKtYadBL5moaBjtzv12ZertcVGkA0qQWZNqrmjugu6uYIvIIPvfYSIQxUN\nMn2R/j25zUVfCtpCn7qDf6cZ8pmucxImQFKdl+QkEA2zOodDMjkF7AozKMcp\nwSTl+gDBiehJdnjJoKn+i7gNzYZn9NBhH1p2yfUkQobllf7nUPdm4N7g8+Hx\ncB9/LlypSpW3+01e/CaT2zHmDu8uhNYqhTYWcSpKPU2alMQLCtHyaL9sijgn\nDBMV\r\n=O6Gg\r\n-----END PGP SIGNATURE-----\r\n"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"08c809a5cc06307b816e8d99dc2e32304c04dff2","_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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.16.3","dependencies":{"detab":"2.0.3","unified":"9.0.0","remark-mdx":"^2.0.0-next.0","@babel/core":"7.9.6","lodash.uniq":"4.5.0","@mdx-js/util":"^2.0.0-next.0","remark-mdxjs":"^2.0.0-next.0","remark-parse":"8.0.1","camelcase-css":"2.0.1","hast-util-raw":"5.0.2","unist-builder":"2.0.3","remark-footnotes":"1.0.0","unist-util-visit":"2.0.2","mdast-util-to-hast":"9.1.0","hast-to-hyperscript":"8.1.0","@babel/plugin-syntax-jsx":"7.8.3","remark-squeeze-paragraphs":"4.0.0","babel-plugin-apply-mdx-type-prop":"^2.0.0-next.0","babel-plugin-extract-import-names":"^2.0.0-next.0","@babel/plugin-syntax-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/mdx_2.0.0-next.0_1590001995701_0.9843109012135938","host":"s3://npm-registry-packages"}},"1.6.4":{"name":"@mdx-js/mdx","version":"1.6.4","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"9c7be8430b15b18dad7bd48323eded92a01089f3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.6.4.tgz","fileCount":8,"integrity":"sha512-TuKjwVrp0bhuv++SnqHp3k7agawS4d29sSL9p1B6Wv6IxJTfkJPMD1rI+Ahek45qTNY0Sxh4Q6kox9a7cq1tag==","signatures":[{"sig":"MEYCIQDmlv4+sn/i3ISbJoj3Y6f7GBqcfzWaYOFgK1Pq1yKG2gIhAOY/n9anLBuq7isU3T4qY+TiHXrjYxaYAKzCrdwEAh1s","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18322,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJexYQdCRA9TVsSAnZWagAAphsP/1fzHK6fSS9p318AI1J0\nOMcXJu+avhSP6NddK/lsLOoUolKmRWAayjmx1guF+d3tArtCS83dJchchA4v\n0pc/TqUX5tUzrEeGvwXL2ZP7Mfc0rJjk8lf7aMCRPJrtv9JZJK889Od9g53m\nE7vXnVGY10ZCyZ8KExth5ZN9BeiC+3dNi73P6Nw3hTlthTBhTJKGCQS/r8uM\nR/cTc1FUL4ygB7bgXrqgzbH9yGosEi3tcDvMGnjie4lo3f1i6YPwSjgRA36T\niGNJY2mstNxMmkZj3jdd+CMEVshGx1WSLeHHgyHKhv4DSl+HPyByHJUIRfJs\nt2OQBrvqmo5tCha9r0g0hrcQRVczbY4vU2P44DDd/YeGnLpLeeRdYe7NJPwz\nLuVWRL3U05FB3FGTXXl10Es3csjOE0rWwNz8v3FsfXDCFqBY5GCpei/M4Sal\nfE8RbPwFklEjr8qmiz6TUy/w1ZxTkQoP0Sx2lCWi4aHWlBw0taqiiGsLYjpC\nUhAzZ8ntEo9HwS62gjc3sxeQreFAVYZj+oiYhr27GLkotMcJ7uwvVesY/RJP\neFzTCPEXpn0V5aIs3aMh3+WcqK7/lHjGJC8X0YioPkzV5dib+uQlF4FyBPaX\nGcr/eBEyJADxR7F2nXv6y0XoBYKMmkzQ2JWTER/QTJQgV8cek8CD9rHJmDde\nIinK\r\n=Lp+3\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.16.3","dependencies":{"detab":"2.0.3","unified":"9.0.0","remark-mdx":"^1.6.4","@babel/core":"7.9.6","lodash.uniq":"4.5.0","@mdx-js/util":"^1.6.4","remark-parse":"8.0.2","camelcase-css":"2.0.1","hast-util-raw":"5.0.2","unist-builder":"2.0.3","style-to-object":"0.3.0","remark-footnotes":"1.0.0","unist-util-visit":"2.0.2","mdast-util-to-hast":"9.1.0","@babel/plugin-syntax-jsx":"7.8.3","remark-squeeze-paragraphs":"4.0.0","babel-plugin-apply-mdx-type-prop":"^1.6.4","babel-plugin-extract-import-names":"^1.6.4","@babel/plugin-syntax-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/mdx_1.6.4_1590002717119_0.4383689129528121","host":"s3://npm-registry-packages"}},"2.0.0-next.1":{"name":"@mdx-js/mdx","version":"2.0.0-next.1","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"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"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"efe00662f6b57ec1bac651518d61c2fe75abff5a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-2.0.0-next.1.tgz","fileCount":8,"integrity":"sha512-rD0BOGx0sUg4rVc2uTK9sRK6FoAoIClVISJhKVYv1ivm3UAsQKElJM21qU+TixmoI8dnrIR0AmzgDWQYukKYVg==","signatures":[{"sig":"MEUCIQDp9ZGJukeuMclmtyPrwAwgR+G4R0vptTJMrASxX/k2dgIgL3QNdixI7DjblmX1HYA1c+gNUkSNB9Iaob/JWeWu83Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19693,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJexowUCRA9TVsSAnZWagAAc4UP/2Y4TsWs/rI8rg1JNEjp\n2L7vvgmoZo4CZMI11oyVfTWiL6JsdnFfzfue9VsiHRDZcuVDtn239fKn6mVx\n9NO+GR+dcU3XQ8Gj6K0n9C73Y4OZW7HQGvEX1ephaFLMPMde/SkM4qo3K/KZ\nmiv8fHEsJ7+08c1tsTPMe8WcDEtPgUD16R0jOyqcDARcxdf4itkEF7AgkSuK\nXw5kkhCMCVP46yGbPSTVtrSRHY4ec4BhRlox7R9rXb+sCg1rVr3Za4z6ehMu\n22MHoVZYFvZMKgIQmp8F0AC11AXXW8+2/Jf9mbBZYvi2R6A0pk6lWOXX+mBg\n07DRODcFiwxMAYS+RlmigktXsOPjzLowi9V1J2eUYdzBo7sxdlcqauFP/wuz\nmIfPls8fR9FcyQxxCkXGdTCfUSD7TAyCBeqfIXJ2RelQbLQ7C+IyjL164EIr\n9AzkYxkj6RIVQkX9yikCEt+TZg3OVOg8whb+PTHyS6sKG4awI+8DsCifjhbs\nqxdh4afPSY5cEw+2bCEHY0AAiPZXNsiMCi8pcizE2ibsHijAKt4vRQ91da5+\nvrpSdxuzygVdnsEU6CJ6/a2SddGkLthswLLJAzWIqYwLys/F521fZMg8ZZGe\n43mLVjbgwp8/cUjyl1Qs0YddcDCSL9L1KdrqxivUxa/tIHebuclvaePGED7h\nDIxm\r\n=Rk1N\r\n-----END PGP SIGNATURE-----\r\n"},"types":"types/index.d.ts","funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"166fd9d72a05bb6f09bcb1b1dadb150f4c72fbaa","scripts":{"test-types":"dtslint types"},"_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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.16.3","dependencies":{"detab":"2.0.3","unified":"9.0.0","remark-mdx":"^2.0.0-next.1","@babel/core":"7.9.6","lodash.uniq":"4.5.0","@mdx-js/util":"^2.0.0-next.1","remark-mdxjs":"^2.0.0-next.1","remark-parse":"8.0.1","camelcase-css":"2.0.1","hast-util-raw":"5.0.2","unist-builder":"2.0.3","remark-footnotes":"1.0.0","unist-util-visit":"2.0.2","mdast-util-to-hast":"9.1.0","hast-to-hyperscript":"8.1.0","@babel/plugin-syntax-jsx":"7.8.3","remark-squeeze-paragraphs":"4.0.0","babel-plugin-apply-mdx-type-prop":"^2.0.0-next.1","babel-plugin-extract-import-names":"^2.0.0-next.1","@babel/plugin-syntax-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","_npmOperationalInternal":{"tmp":"tmp/mdx_2.0.0-next.1_1590070291954_0.38682442744843737","host":"s3://npm-registry-packages"}},"1.6.5":{"name":"@mdx-js/mdx","version":"1.6.5","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"4e00ca5d38d678c6070d73819bb696e4030e2662","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.6.5.tgz","fileCount":8,"integrity":"sha512-DC13eeEM0Dv9OD+UVhyB69BlV29d2eoAmfiR/XdgNl4R7YmRNEPGRD3QvGUdRUDxYdJBHauMz5ZIV507cNXXaA==","signatures":[{"sig":"MEQCIAVSa9prN6nCPYUd9pz/sMcGqXRj90OwG5atQjUuJSFeAiA52BeYn7LSmejML+rlViXZk3ESnn2BPVO1ICZfZxV71A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18322,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe0SL4CRA9TVsSAnZWagAA6dcP/ieOE5GQviG/RXOV6Ece\ngLnLLNMhqtBCi1RSj0wqVeeOJtPNTkmJ4M3cL2N+Ty5mrcGuso/MX0UfFOHc\nt2bP9gtZivQxGa9ABd5qMJ956BIKKOCeMbxWRaLntO1OxKfhwOIiBIpdOHVc\nY1gvk6QPCVHboD/dbcv9DOYXA5nDujO0ILWgS9+Ai6UIGLE5JwHBQGkMTCua\nK6tgz6ED9H8Zh3zHWuswoyCNcVrn6VUpU99X0hd93RXKJ9Y+uPkyVcY07TIi\njwFc2CcDJZi2X7oYPIArMwwMx1YxRa1qlBukDgymqaLc346FmHkhO8SOkNQf\nxnZuj03dv5by0l8xuP0q8/5SyfL9bVp01839wHovfA6mQvtXwfmboCCHEJp5\nrzBsLC4eJG3doSm/nakQUpLl2v2iwzqAg/8hao+rXW/9oCYDaT0ZWXbNuvd9\nZwu6niPVjHYvthFyDLFMQnR7IDGquarJiN9fucWzuukclTGyYzIiguYQWfyz\naeCltB2uVS2Jv4i+Jec1kRb3QZBQL4mf137bjmZN0WCPB4KSwYXi5I7VYDTh\n0GioeDphSylKrvbJMZKjc1wJtS0kAcklysjFyMQBP5AllieZwVnfRuKXbGEu\n/KNq3zxtXfjAPhnoa3+FooK4F5EX2fG6u2VAeX2c75fDGnf6ZJjSdpbDNb33\nlk/e\r\n=uIMa\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.16.3","dependencies":{"detab":"2.0.3","unified":"9.0.0","remark-mdx":"^1.6.5","@babel/core":"7.9.6","lodash.uniq":"4.5.0","@mdx-js/util":"^1.6.5","remark-parse":"8.0.2","camelcase-css":"2.0.1","hast-util-raw":"5.0.2","unist-builder":"2.0.3","style-to-object":"0.3.0","remark-footnotes":"1.0.0","unist-util-visit":"2.0.2","mdast-util-to-hast":"9.1.0","@babel/plugin-syntax-jsx":"7.8.3","remark-squeeze-paragraphs":"4.0.0","babel-plugin-apply-mdx-type-prop":"^1.6.5","babel-plugin-extract-import-names":"^1.6.5","@babel/plugin-syntax-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/mdx_1.6.5_1590764280261_0.5972350591320046","host":"s3://npm-registry-packages"}},"1.6.6":{"name":"@mdx-js/mdx","version":"1.6.6","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"6e235f0ca47c8652f4c744cf7bc46a1015bcaeaa","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.6.6.tgz","fileCount":8,"integrity":"sha512-Q1j/RtjNbRZRC/ciaOqQLplsJ9lb0jJhDSvkusmzCsCX+NZH7YTUvccWf7l6zKW1CAiofJfqZdZtXkeJUDZiMw==","signatures":[{"sig":"MEUCIGgJMh3JXHeGzOx5XQuFYwVD2w8l4ANGQqIyFIe0RqNNAiEAhnIX7Vu7PSCDskzv1QNdhr5cwX7YLG69PDgN/101eLQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18322,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe6qzSCRA9TVsSAnZWagAAlNUP/2e/UWMn+qNpdurKl7Ci\nrRsywnSHrekA46pJK8vVufSlcCZGEB76oZCsaj017dHkpbw+GonRE8JMvPyO\nGovRh+JNx58059WUzxUAF3j/PHNDRXzo/alajYBnImYi9WBsv7Gg7nmhsVF9\ns0iCC1uHAWxVTOU3MYDCQnulvE9mD7BmBvY2RVBNnkkcXBlr7AR9VQ2sbYbO\ni+v937oqrS6BinH+gvDevvy3ZQf7ri3lmwY1Jo8QFSVTP5RngMMCj11Nr2yN\ncuw6yVGgcumMMAME8nqcdP+QIphHpPyFCaQI3M4VhJr/frr6ot9Gxida344j\nKuV+sLVhVoG6N3CdtqaBYEYr5rZnDILHc/IGW7p+QDeNxaZ5upd+qMCUFHs9\nDIeenpNkYr4Wi3Xr1oKXoWnECZvEb2kKJBYKtg0f81rt/frd5VxZnbMOZXLB\n2aBw2doeUCPvYT4D2gSQN4Jf0tywXt4Xnar74jNhuDRNUVvPJPKq5pzS5WzJ\niZw/YX88+fHjE0/REq55glhEszaWKUn2zAx6V2PPQv8Uq2BQS66Nlgw/W7Kd\n8vW5foaan+ov+jcOw9uW7zgGsBnTa4vIH+K6mvZaS/k6P6TazG/kQ7zP967v\neongaPgJ68zFOwCi8Sn/EBG3A/GHDOzvVSqzjVglCRZXv6brWyxTfopOkK7c\najDq\r\n=91XI\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"14.4.0","dependencies":{"detab":"2.0.3","unified":"9.0.0","remark-mdx":"^1.6.6","@babel/core":"7.9.6","lodash.uniq":"4.5.0","@mdx-js/util":"^1.6.6","remark-parse":"8.0.2","camelcase-css":"2.0.1","hast-util-raw":"5.0.2","unist-builder":"2.0.3","style-to-object":"0.3.0","remark-footnotes":"1.0.0","unist-util-visit":"2.0.2","mdast-util-to-hast":"9.1.0","@babel/plugin-syntax-jsx":"7.8.3","remark-squeeze-paragraphs":"4.0.0","babel-plugin-apply-mdx-type-prop":"^1.6.6","babel-plugin-extract-import-names":"^1.6.6","@babel/plugin-syntax-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/mdx_1.6.6_1592437970192_0.42013086930852706","host":"s3://npm-registry-packages"}},"1.6.7-ci.4":{"name":"@mdx-js/mdx","version":"1.6.7-ci.4","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"836bba683a32a5da5017f85285a443196a129ecc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.6.7-ci.4.tgz","fileCount":8,"integrity":"sha512-UTOyE+rg8zFzRM6F1QW122fzn8P0/57AEiWOWDnp3pic4A0VFEJSVdYAhO+/jE787iLfr6DeNVTd7mdhDamPMg==","signatures":[{"sig":"MEYCIQDafj6q004xdQkHiirsTlPlNLC03vUm2osSJqRUaYJWbwIhAMApzj0tm4Qc+6KuAT1gtniH1lMpme9MbfVwJPhtti3j","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18349,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfB+zTCRA9TVsSAnZWagAAOFkQAJG5lQzocIrTsLu6s0DT\njuvzV0ASkAHuC1JMU/2YH06LMcMTFjitToC2kyKvC03Qy3yzHZClc3S1fzg/\nU4Gw2Yv2IgFwBeCcq5NjZ5FMqHtziVOOu9cJZp7eo6zLgJe/eJv54nPiuEZi\n6UdC1wWlMuLmdnK2BDJ3gkrEbJs7Sz9UUo6PdUy0hX2PshlVcQVHosPpZmCa\nqOpNWgEp5Map3Nxj7Rng216XZNcrtyUspYZ0tHDi/Il7WHTlYoxydWF1LTGw\nnbLYqJicBo8f+VTq0vfJdr3HFpCthfDJCxQX02mTpHjdlDREHw1+2I0o6UfS\nlopFcba7YYjl6HWkDbC2ujwqESZMCEnSkd4Sfi0MKrqlMd9r6WVcc+epHI/I\nBNVMwLvwD9QDbq6mrCHQ3MCyQ3ICjzjrzE+9+D4wUJ/R17iJjoxZ9YXYm2PE\n+W2aI3B8aV3pHrwQQfUR7Z+dPXuLrMYHwAj2CjInTsQtEh8RA/b+pSj+gfMO\nUtjbNbm/ZJGMLVtH+4s8Y8YgBHkvnllsZMvdAQlM2w+HGk5L/3N4FdBql0QS\n0dsWMJyuUtewn/VnlmDxAvRyUyE1Cbap2lu8pDXZ0gf5GntQUZemfqL1pbRT\nTOyJBQ9EArg06+kMCtUivSToFfeKeHw3zR0GHs2gN+uNYbJ8G6JuYnFaCEJh\nZ3ni\r\n=gN6h\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.18.1","dependencies":{"detab":"2.0.3","unified":"9.0.0","remark-mdx":"^1.6.7-ci.4+262cb37","@babel/core":"7.10.4","lodash.uniq":"4.5.0","@mdx-js/util":"^1.6.6","remark-parse":"8.0.2","camelcase-css":"2.0.1","hast-util-raw":"5.0.2","unist-builder":"2.0.3","style-to-object":"0.3.0","remark-footnotes":"1.0.0","unist-util-visit":"2.0.2","mdast-util-to-hast":"9.1.0","@babel/plugin-syntax-jsx":"7.8.3","remark-squeeze-paragraphs":"4.0.0","babel-plugin-apply-mdx-type-prop":"^1.6.6","babel-plugin-extract-import-names":"^1.6.6","@babel/plugin-syntax-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","_npmOperationalInternal":{"tmp":"tmp/mdx_1.6.7-ci.4_1594354898608_0.7572339783665782","host":"s3://npm-registry-packages"}},"1.6.7":{"name":"@mdx-js/mdx","version":"1.6.7","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"4eecb754a4cbe4f492985ef5cfa007e6743ded78","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.6.7.tgz","fileCount":8,"integrity":"sha512-LB+3gFSy5IyKmI4dqbo9g2dLwvxtHzNZN16PQe0D2cJkgVWNfZ4j1wjCO1qYlhpw3mHnsgqKmIP+knGa/El+Iw==","signatures":[{"sig":"MEUCIBtmIjScXjp6C8ZPhYXrJod+3xZVfUOMCkD6g525ZeqiAiEA+PIsllY0ZLNL8ENFGKcuu3XOTIU0z1xWDQ5rcJHy9AI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18325,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfD1vlCRA9TVsSAnZWagAAOmQP/iBkx7Ja+Xe1g0vH0vOa\nhtWhbl129SkeFD9LPV+3JVQ0jAlXDpenGHQUnvU8ZZYOFqF0DH8IR/nW82kC\nLP3fi4+LwBXqVxCjVMMnxvv3XwvF1k/zu2bp0soSQqQIMLNoQVAXdZKn3J2i\ny5CGOOhg3Ct3HyDqzYPr7D6I0hZ4An1XECeCCAcCCWITXvT1t2lM6WUdUAlP\nVkPY61EG0mstlgM6qf4UlwNSkjPvb2lD57L5xOvaQcNdAAZvkSz/+pyJuer0\n8yW1p/oCBkLNbIfdHxz+o1L83Rgj09HGzjGNgjlC+LAmQp+776KcNmnwsYFe\n9LKYlleqk1oyVrhLgcHFHCOaLOu2Bj+Vx/FcfCmo+T9lI9URQtb4RW3eNEbq\nmH6wkl8h1rVbS4HM5c2aZ7stZhaBJoyY2I4qyc+1X7q+0sZAepabgtVM0TSo\nfRcm9m6JwbUS6kC+PHBRouiiuiXJyDrqo+zVl8RfNJl9bW9ldcsqIztl2NaS\nNO9INQLGzS2aovylk3YvwH/n4CMnMXtprGMfPi8KwVAuit5uwk/wDrdX7hOA\nq+F5Bpq28zTFqyJotq2MgktKlG8dPFy4zlDhIQTB7GOLxTKQj2e5FdnRog1t\n0ejZGK5cUDansaQzD/nJ1DfUsXjOoFgPEXwgCEa1U1GlN9PaGzTJ2H2EXnQ1\n+t9e\r\n=iMk7\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"14.4.0","dependencies":{"detab":"2.0.3","unified":"9.0.0","remark-mdx":"^1.6.7","@babel/core":"7.10.4","lodash.uniq":"4.5.0","@mdx-js/util":"^1.6.7","remark-parse":"8.0.2","camelcase-css":"2.0.1","hast-util-raw":"5.0.2","unist-builder":"2.0.3","style-to-object":"0.3.0","remark-footnotes":"1.0.0","unist-util-visit":"2.0.2","mdast-util-to-hast":"9.1.0","@babel/plugin-syntax-jsx":"7.8.3","remark-squeeze-paragraphs":"4.0.0","babel-plugin-apply-mdx-type-prop":"^1.6.7","babel-plugin-extract-import-names":"^1.6.7","@babel/plugin-syntax-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/mdx_1.6.7_1594842084876_0.6628639534901535","host":"s3://npm-registry-packages"}},"1.6.8-ci.4":{"name":"@mdx-js/mdx","version":"1.6.8-ci.4","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"573de15110a11dc8d98ab8e1d41b68d8832d9dfc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.6.8-ci.4.tgz","fileCount":8,"integrity":"sha512-Ww2fZSHb4qjf9W/H2euAV06wEV6ymmg4c25ewVp1eV5Hqrx1syp3TOu9VZI4lPSR61ZRvKBBLRxAcNHFs/jNcA==","signatures":[{"sig":"MEQCIEHF2fzhgfLixpl68n7omoXlC45uBEDgXO474XGncf89AiB8oagMpZOxCHIegHe+TFphD6BjkYe/bByPwpH6s+z7Rw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18500,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfEJ3QCRA9TVsSAnZWagAATIAP/3iLKsETyurcJZZRvZwv\nxiM0RXJD8jCKAnhvEUb7nG70WRWlQ4qQeQjGW0kOSqjq/MUTYaZEW2EfL5t5\nArwKUCg5d9djKD6ezdTNw/y+fM9ozG3mj1mgeyFvIcTbeIY8e4HzCkzgXONt\nh4m/IWQWMXevdxZypi3qyHFzSe4/wCVxY/8ssPfONZzRUwex0us2MBZv/kp8\nAMJtoAO/zec/r8Ylhyzr1z78VRf5YsQ5o3j/RB1EIi0zSTgyOKjjiLh3vo0n\ns+MMnappu+IyfT25eoRFLuyHZwI+IBlHwcqY+AcHNdcEJQ1MInLJXvtNT3hZ\ne3oNV34DzEUB+AxcGOpGMvOa3t6+/4jTO8EBxfDY+sqrS6vJwC5Y/ACk8GMm\nUYLG/SspCKVKB0ve3qlTiQW8sTe4A724+inaLCSqud/QnRFLKHwlwWduLXd8\nJPRNNbIR+n8NAVByXiPtMHHagAu68u0jQGi8MubTd1o4a0NxI+FQhxbrTpLA\nWBBeOnJCZNUD0FMwTkPSKAy8pi9uDmshI8kJ5N3KDPl1T6cJCCNAKUEHuanq\nZKqilNzcsxjR15gBG91Vtqlw1w8thKOD3zoM5OnbaNiHrekHUKndv/6dtKGO\n6H2JESMlDlGbynG68UZC1SoSyR+r5kAqqTlr/FoRkRivwuNHMvSZR+Nsyzly\nlkd3\r\n=UgeN\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.18.2","dependencies":{"detab":"2.0.3","unified":"9.0.0","remark-mdx":"^1.6.8-ci.4+e24ab3b","@babel/core":"7.10.5","lodash.uniq":"4.5.0","@mdx-js/util":"^1.6.7","remark-parse":"8.0.2","camelcase-css":"2.0.1","hast-util-raw":"6.0.0","unist-builder":"2.0.3","style-to-object":"0.3.0","remark-footnotes":"1.0.0","unist-util-visit":"2.0.3","mdast-util-to-hast":"9.1.0","@babel/plugin-syntax-jsx":"7.10.4","remark-squeeze-paragraphs":"4.0.0","babel-plugin-apply-mdx-type-prop":"^1.6.8-ci.4+e24ab3b","babel-plugin-extract-import-names":"^1.6.8-ci.4+e24ab3b","@babel/plugin-syntax-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","_npmOperationalInternal":{"tmp":"tmp/mdx_1.6.8-ci.4_1594924495934_0.624725966278691","host":"s3://npm-registry-packages"}},"1.6.8":{"name":"@mdx-js/mdx","version":"1.6.8","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"d5a180e81d009da430105ca9eb97ce1518d19c64","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.6.8.tgz","fileCount":8,"integrity":"sha512-xaUcCkqv5U7O0ONDCQwaZZ3M/WMIMrzgOHgHXxYYN9n/AWUr6jbq9cBbrzRVOnDFrRuiSJECeSF5WIixrPvoYA==","signatures":[{"sig":"MEQCIASvKPCJr9Np5kohHYmLD6pAaaU/DYJBjDekA7lwmwaKAiAlxG7CkmqnQuUHaxUTzE/XOr2CzRzfldWNAvemqVdzuw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18448,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfEKHnCRA9TVsSAnZWagAA8CQQAJyvrorengAXtLwzs3/F\nwhNlukoGcqH7zgvMvF2S4iZHEmqTvFmuM15162piT9IzV9pXskoeIHMK9clw\nZ14SJZ4mnDSlB+VBXafom+euyYDEXxbyE673HWgw2eu0Kbd8NzT0jSpAUFsm\nmOAWsWETM9wYoVk+q0C76P6ismcYQoYzsKYrvwS8YTPFbfjd9gYC6HcgwYd2\nrVAev7VOgivIcs3d33ykhtxzAcFh62u3HVZJhJFz4QHIdbaKGqvjwd8+EEls\nyZ1eoQYDVZgzfU0AAcr9/sVJS+pm1jV7lW3i2ufi+Y8TJYlGIE9XJDN9SBqm\nAjEDB3+bEIO3oGIfbB/i7VxmT/dGjuuzJzsS5fMdKn7Bym3kBubVUA/zTDYM\nXEN0asPMLoMLr/DKB1UNT4W5zoXtINkJJEdsvqCpp5JGVy+lqDE4aMIcsTot\n2I/romZdvq4dgKroQZP1QAEIaZxk0qpN/SJHjjZa50BIbux9vyQpyytKFnzu\n55b4d9ooc/7cEIbpCE6jH5hQkMjkAnC7DZFzouUxPiFm2Hl9+0wWgKx1OJ+l\n6jyoGjN+rrLswGQJq1qqBsfEvI8PCFdBq0ENIo7l+7Y2nSyiLSr7w/K8IzpE\n5YzWlknEu1DpH0zHBmiRy2kFUreWm3EOLjQ+iq1ZJ/wcjJ6qAKLvqb3QJIKa\nFM9H\r\n=bryR\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"14.4.0","dependencies":{"detab":"2.0.3","unified":"9.0.0","remark-mdx":"^1.6.8","@babel/core":"7.10.5","lodash.uniq":"4.5.0","@mdx-js/util":"^1.6.8","remark-parse":"8.0.2","camelcase-css":"2.0.1","hast-util-raw":"6.0.0","unist-builder":"2.0.3","style-to-object":"0.3.0","remark-footnotes":"1.0.0","unist-util-visit":"2.0.3","mdast-util-to-hast":"9.1.0","@babel/plugin-syntax-jsx":"7.10.4","remark-squeeze-paragraphs":"4.0.0","babel-plugin-apply-mdx-type-prop":"^1.6.8","babel-plugin-extract-import-names":"^1.6.8","@babel/plugin-syntax-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/mdx_1.6.8_1594925542972_0.6308191070529681","host":"s3://npm-registry-packages"}},"1.6.9":{"name":"@mdx-js/mdx","version":"1.6.9","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"1027820fe764f88b322e454310d08613ea5097f1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.6.9.tgz","fileCount":8,"integrity":"sha512-Vku62lfuCPv9nDi3UjxFCdKobveLGoVqwolFCygwJPGiaO3C1jtqB37KPt9GSRoBkE2xLbfzu860CRD/7LQQLA==","signatures":[{"sig":"MEUCIQCXN2e8QDzxOXe0zv7Lcyqd2Q7ezocihZ/MqALqMBF/lAIgCgaKI1l9IC3tzja711yIPiOkUgMEPu0Hfx/Efwp4YN4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18453,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfEN07CRA9TVsSAnZWagAAhOUP/0J/7c1JGSGnP7C4pIA8\nXSE16vtdhqxgcnbPvw//DLNH+mKCLtJf+snN3lwjGwuchPw1D5TbMienJhHR\nP9Gvyd422YikdK1rzlQ1x7uxGRSyjR3x96KHTmPiop6OSviVbkqKTkC5tPGh\nNpemTPWe54R0dG/sr5Vri9pomCIV49Cz/t3a3huG2Ysworg8+RzbOkSqfmEq\nMVLumTy7awmT6KR51XiKp6zkNS18IoUC5ssmpTNRfCqdwfMDp9r1HaUL2jCT\nLqAnSmkUc2dcl8cOLrAtdN4+1vytqd9MFIzC8HJzk6St/cTj0C7IrCTek1/j\ncseeQjwE61fo1C15Ts7OSsbwtczZeqvY2kQu7M7r3s2MKqFmTMYioNd0zN9f\nsbiffewcj+0uLLGp5HbtKdGEXqF38JWp43Dlztf2vC//ZVSEgwa2benlk6p7\nlSJNWFAZRRTxHiZ0C+TwNAFkG29LBLf5iEarEJnq7/gDZdN2TO/gi66DeEoB\n7p4M4tCK5CT/N2isGfWoSBxPOvtYMYqExpPi9y4HZA+k5TsK2SnIGBh+qXvK\nBM40wEy90db9uKWdEJirPcbQ5QObgwiSWl+2LTrn+F1McNl4u5ji5/qd9KfN\n1mSovqruqWUi3BrowMafgnJDexVENTnzSUz6CfJZ0m0Rzz3dnYTlM5hp+ao9\nrrs0\r\n=taPf\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"14.4.0","dependencies":{"detab":"2.0.3","unified":"9.0.0","remark-mdx":"^1.6.9","@babel/core":"7.10.5","lodash.uniq":"4.5.0","@mdx-js/util":"^1.6.9","remark-parse":"8.0.2","camelcase-css":"2.0.1","hast-util-raw":"6.0.0","unist-builder":"2.0.3","style-to-object":"0.3.0","remark-footnotes":"1.0.0","unist-util-visit":"2.0.3","mdast-util-to-hast":"9.1.0","@babel/plugin-syntax-jsx":"7.10.4","remark-squeeze-paragraphs":"4.0.0","babel-plugin-apply-mdx-type-prop":"^1.6.9","babel-plugin-extract-import-names":"^1.6.9","@babel/plugin-syntax-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/mdx_1.6.9_1594940730665_0.48586412759801423","host":"s3://npm-registry-packages"}},"1.6.9-ci.0":{"name":"@mdx-js/mdx","version":"1.6.9-ci.0","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.6.9-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@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":"d4d374d8802f6abfeb1013974bf51a9bd36cf5ef","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.6.9-ci.0.tgz","fileCount":8,"integrity":"sha512-0Fir66BX18VTTnmAdlh5/h/TIo/w4HDTXsSZt3SV1oC7SiKmyU/vO/4N7t5zdtjk9GXH1zw7oWs3dCaKBYQW6A==","signatures":[{"sig":"MEUCIQDZMZ0JJynpvfRxSajtI0dJ0qdbks2mBet/iUOPzOMmiwIgWLe+sd0kvXFfyw1Mv/+Oh3IRvjihpGka56hheCaP3cQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18466,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfEN/ICRA9TVsSAnZWagAAzREQAInvUxiExN30zZVeP1ut\n3HDdNhQCqQ1pGISJ3CKmBs9f/O2c5c9Mf6WgIVK4NGGdHvDjN9+Mw2T45d9u\nKitoh2n9cMN83DtTySjg4c81YcB9YrjF/xZ6GeIh4T876dF1MpDwn2iyY6yv\ngZuynIAfCx2VJski46pI/9k+HclgS/rp7EB2e0BJ2KhcCYV5Pk4YwnkZwOsj\nUR9o+G7b9ynFTdoTiXngTDPkgx1ia7zJbem/YlASiqqXrGi6R2SO/ZBPjYEX\nUqML1TX8+u+hZ1RzL+hL9I8+Jst32Jriu46cjq/xREcW6KrnOH4zYaZTPtEe\nd7l98urySdCzWJ/+Mx3PKuAN3lBm/g54OB9HjjnOCFEyBlOWZ4RPTmTdefrI\nwwikFC+ZRMFI3c4l9ANd/w2SUrPfZ8jWIMeTQVBD5btVW958edtE+jUBAGbZ\nJdIq5Yy+6aKXySJbD5imBS0RxQJknL8JEuu7Zp0q26+zYqGfKyPCkeC/o0yY\n5MS8Hf8Es/KfxhVbEab2TbKKQayfwijyEkDHTkbzvE1nzPmzraWICWEUiZQq\n+qvLW345+lhYJp1xCfnIb6U8hp29wOqvA+a8hBhfDoWfi6iplBI6b1MczXIw\nPdyph5e/WHNyc2Q3Y/rdIG8zw/WOEUzCqARaJliKFboSV/oH2vskRcygumU5\nKcSv\r\n=D4TK\r\n-----END PGP SIGNATURE-----\r\n"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"cbccb655d185f5748fac37cdc87f0922b3568d70","_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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.18.2","dependencies":{"detab":"2.0.3","unified":"9.0.0","remark-mdx":"^1.6.8","@babel/core":"7.10.5","lodash.uniq":"4.5.0","@mdx-js/util":"^1.6.8","remark-parse":"8.0.2","camelcase-css":"2.0.1","hast-util-raw":"6.0.0","unist-builder":"2.0.3","style-to-object":"0.3.0","remark-footnotes":"1.0.0","unist-util-visit":"2.0.3","mdast-util-to-hast":"9.1.0","@babel/plugin-syntax-jsx":"7.10.4","remark-squeeze-paragraphs":"4.0.0","babel-plugin-apply-mdx-type-prop":"^1.6.8","babel-plugin-extract-import-names":"^1.6.8","@babel/plugin-syntax-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","_npmOperationalInternal":{"tmp":"tmp/mdx_1.6.9-ci.0_1594941384190_0.10016443105245432","host":"s3://npm-registry-packages"}},"1.6.10":{"name":"@mdx-js/mdx","version":"1.6.10","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"63c099b32f212b31d78228cf64ae24b54d7ab57c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.6.10.tgz","fileCount":8,"integrity":"sha512-4IAupGOJxlti/IIfRuiK0gYXw6pLxTR465HmHcEEiGOHPdxOyrK3NssmKBUf9UOWAg6wBqwwSvRF/TrzKzUE/Q==","signatures":[{"sig":"MEUCIAISh2rsoBa777sCiYiSSoNfhgtEMjgy8f8Uq6QgprEHAiEA/F86FU7UAY8FhzZ8ut30rBcm6QqiSYXJyf+hSihgljc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18465,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfEO8OCRA9TVsSAnZWagAAz7cP/A2tHw8b76+d/yvj2A3l\n2m/Zfb2JZbhO8NGyD7IwpJia7Z3PP2piurcTUEN91gr0nbdHehRdE3ofyS42\nlMsJUYuMu0IErSKYvDFyB9NsCOCa9rVKM5VZ7li2VHz8G2tHb9cCwtwlQD/U\njIG7o6bhkVKp9nT9TdYPae2HiWP6jmfi3d0jsJS1vHE7bmb+iB3jUDVrnK83\nZnNH3CQuLV4uNt7zDVHkDqsdVNsQJgPFG8MTu+RPdiCEWEw+g43s1FeKW25v\nZnIKRQW+H7MVyIhehq2Rq00pFYe7RL5viVbxKm7qxgGAL39ooonhUPVsgeRM\nYIyVAHKeQqM1cw2G2YbYU3mW1UlaYm1X05HvIL09wxOWg1P8+quL7D0V0x7v\n0KJCaumowppR42Vm+j6nrbD9PFUjErBKBznM7rdFyPzuII1gH0P6Hx5n+XAX\niYC5XLJh3vbqPSWh5r3Ugp1ytUfKRdbyE2cKv2XkmTcJVER4W2kRN9rBPC9X\n7AzpJxA5q5hWLVjovgrIo8sFeLYjeYmmyRRPCfYI59yYCShJk0suVUxDFmDm\nohSZ/nfhAKjUBG3Dkpem4Rn+SaqXGdk3mGtD2YZFiB2TllAKkNMnbPViKzTx\n3kXCzFgo94QT3trNYF3/+HDFm1RJVtiTjs6W2wdthVaagSJQudSDtcmhZR5B\nb13W\r\n=s2+i\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"14.4.0","dependencies":{"detab":"2.0.3","unified":"9.0.0","remark-mdx":"^1.6.10","@babel/core":"7.10.5","lodash.uniq":"4.5.0","@mdx-js/util":"^1.6.10","remark-parse":"8.0.2","camelcase-css":"2.0.1","hast-util-raw":"6.0.0","unist-builder":"2.0.3","style-to-object":"0.3.0","remark-footnotes":"1.0.0","unist-util-visit":"2.0.3","mdast-util-to-hast":"9.1.0","@babel/plugin-syntax-jsx":"7.10.4","remark-squeeze-paragraphs":"4.0.0","babel-plugin-apply-mdx-type-prop":"^1.6.10","babel-plugin-extract-import-names":"^1.6.10","@babel/plugin-syntax-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/mdx_1.6.10_1594945294033_0.6531421665792485","host":"s3://npm-registry-packages"}},"1.6.10-ci.0":{"name":"@mdx-js/mdx","version":"1.6.10-ci.0","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.6.10-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@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":"a2ef6ec46b6446ecb813f564b133d970b2343708","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.6.10-ci.0.tgz","fileCount":8,"integrity":"sha512-pMEs6xPuHpIdQ9B7+h5TRoKNwYN443FhpjmfcnF7HXv97s+Kk9nxXS1PC/QheHAmE9Pg/iiVAu6rjNJRW7fCcA==","signatures":[{"sig":"MEQCIDhgXvpJSNDsTA+8AUC/kEd9teQd8z0RqUmaxZ5aLbzOAiBgmGtxQYOxabdUJKGHXY6yx04FTqpWcehtiOG+OzWUUw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18474,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfEPX+CRA9TVsSAnZWagAAVWgP/25I5vlCO8mlzQ6FNUWn\n1R+HhlgQwyE4VxZ2zlrbZosWyf4OJ0q3T+M/PMcF1x8+CDsQyoszNjEThdBW\nhT0eVELxUdIDRnIxlJko1317ey4QzTPOTdAiKr8iDIzIGU7BpsdaVoGsjOpH\nluncktYDw3NPp08biGkAeNAai18vLg0gRpewBw2GmORdXFu59hMrcYTMuRmi\nZ6cvd2DfgGsWTZTx58YDIAABbpaHPPpHm8O8PpyYh/lndMy0co9nu3s+QJxR\n6I8L36Q/6MmVXUiLelYAtMk8pSko9MsNaVmRS5ZrqCCZrZdt2vTHLDksgd9A\nbk3IOI49H6GktoJXtlPPVbJNiExd2UWbUq2i+60v+QhiJEauVclZfQmcCuPt\nc+90qg/I0XdiGnLwMi1/cc4dw55EFliw5yPaCbEiiGIuSYrVcpZPaVOGeh6L\nFalugdBLc5pfDKmgpZ7ErE/jVjFI0742qang7LX+KtAUSwcXjYXr/t4n76f6\nJWzUw4LZBWOyhXK3vckiVakJ4vnjuXppcMhsjyTmFpGJlvihz7VGMXbncUqT\nprdG8U9ufh1MgvUS95Mw/BTNUgfLOcnNt0E98tXdDStiFWtoECCTM+OQTCLR\nDuZlDCYFrdAuYV+hSBPrvltOwLzcCLAz59Ft2XD2xHPqAOjCuRdToR8lHebB\n+KKL\r\n=HP++\r\n-----END PGP SIGNATURE-----\r\n"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"86e35a61f54cd623d1e73ae2898539463167914d","_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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.18.2","dependencies":{"detab":"2.0.3","unified":"9.0.0","remark-mdx":"^1.6.9","@babel/core":"7.10.5","lodash.uniq":"4.5.0","@mdx-js/util":"^1.6.9","remark-parse":"8.0.2","camelcase-css":"2.0.1","hast-util-raw":"6.0.0","unist-builder":"2.0.3","style-to-object":"0.3.0","remark-footnotes":"1.0.0","unist-util-visit":"2.0.3","mdast-util-to-hast":"9.1.0","@babel/plugin-syntax-jsx":"7.10.4","remark-squeeze-paragraphs":"4.0.0","babel-plugin-apply-mdx-type-prop":"^1.6.9","babel-plugin-extract-import-names":"^1.6.9","@babel/plugin-syntax-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","_npmOperationalInternal":{"tmp":"tmp/mdx_1.6.10-ci.0_1594947069850_0.6761407190777349","host":"s3://npm-registry-packages"}},"1.6.11-ci.0":{"name":"@mdx-js/mdx","version":"1.6.11-ci.0","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.6.11-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@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":"0a4ed830bad8d7ee993c7cfb570118a07f9e2fc0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.6.11-ci.0.tgz","fileCount":8,"integrity":"sha512-YnwmfeEt7GmpLHeqQZCzqZm/3bethDxvrcaqGyioBHGK7LZmxoQOBRLIsBu/tw8A+tdAg8ilz/qMCZx0C7GIQg==","signatures":[{"sig":"MEYCIQCLmaSdYk7+6H7M3cblP+uE8Yhw9eA3ziP2PD7CEwqndAIhAOy/Lwx4ehghl/NZ47lh8zaz1jo8HNU348pxu2hTXkfF","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18476,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfESf0CRA9TVsSAnZWagAAm8gQAJ/8fGyW5qArA1GhCIQL\n5id51BiBqUl7b/RlLpnCwqA+VzUn5m/m3/cLUcLgXx56cNz8HdQDCm+3Z/KP\nVB2Jr0Wmp6I/KR/DLsRY0qIaq9hSNS+qGGFbchsbkAHk5JEn1WeAPcilXz1y\n8g/5jAbwzIP0FD8QTESO+MGBA32HQtZcE6j0Xy16VS4/McKaKrMviSkIwmd/\nIl91ZOMLs/JK8RxfC1Rvyrmm+uAJ4VTyVVfD0hQIqShmCYDI77VmO0ZoS1XH\nwYdbTm1+MGlP614s1IcjkfX5zRFJj7fnFL1qunOAkAntu1MXn67X+VVDC9sn\ntIy/L/lUA9BIjgLmDUcjzTdU4DQQh+AupASBHc1u/x+oFFXsYrF8Hum4ZOMf\nQDZ7UmHvmP2RS5aAdkbYQFcoI46AyG9ob88UvS3IKhMD+daiaroc7aZGkJD4\nnWHFtRFBrWiT3BDucsWwOk1adLxgzxtPhpF5nkbOYRJm3e0LUZAwzpHKmseV\ncnN9ULM79tfVivnwlM0ooClJQ3Mjoc01DCYyCMuf6yH/la5SXg7aLA90r2IC\n4hTe60RCfKluyG4Ei8ng6iGMvNcaYDpLAvHOwrsa62txTwS64VOdE50KWudT\nvnVkG3b8xSwJhm1gSbqBYPv1mX07qp7+Jvzp8m473ZtQQlk0gtNyV9Ao1uuU\nCWkf\r\n=hU6S\r\n-----END PGP SIGNATURE-----\r\n"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"5a72524be549aa86c51e7d3ba72717ab71373e2e","_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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.18.2","dependencies":{"detab":"2.0.3","unified":"9.0.0","remark-mdx":"^1.6.10","@babel/core":"7.10.5","lodash.uniq":"4.5.0","@mdx-js/util":"^1.6.10","remark-parse":"8.0.2","camelcase-css":"2.0.1","hast-util-raw":"6.0.0","unist-builder":"2.0.3","style-to-object":"0.3.0","remark-footnotes":"1.0.0","unist-util-visit":"2.0.3","mdast-util-to-hast":"9.1.0","@babel/plugin-syntax-jsx":"7.10.4","remark-squeeze-paragraphs":"4.0.0","babel-plugin-apply-mdx-type-prop":"^1.6.10","babel-plugin-extract-import-names":"^1.6.10","@babel/plugin-syntax-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","_npmOperationalInternal":{"tmp":"tmp/mdx_1.6.11-ci.0_1594959859966_0.3997296569091886","host":"s3://npm-registry-packages"}},"1.6.11":{"name":"@mdx-js/mdx","version":"1.6.11","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"48a9c87134a67830673859b3b2f59f693f439d5c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.6.11.tgz","fileCount":8,"integrity":"sha512-3Suqe+FVZvK62t+Lc7xjk3T7wSmh7QqzlVNkAx4jM8Q9GeuhcSWkwjS7VHY6KVoOw/jkBSlmzklyM7zACPSoIA==","signatures":[{"sig":"MEQCIBy0M1QsKPS2ooxO2X5f/XFckXNOtHJmSeOF+MjlXVf0AiArdqbzOrAF6WkFWVc9CpcP6LkeJmYxfk33D1MZ7GshMA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18463,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfEae/CRA9TVsSAnZWagAA8VYP/0b9/w/fjpZ+AjAryuDA\nu0go9VC2/rrfauA3Akytd7PDXTvitTSRJTTLoStbq18qvPp+7LspKcfbrHoo\ngRXLwkIlgi5cq+Qv2zZn6cmlnsvziiK1FlDiQwe9NORc9FpbxPv478kWHufT\nl84kNty0LcSeqeXhfAozA3LFkjt9amd5D5vthx320IYwLwQ4Ra7VOfhDVgeI\nbUKX1XCwbSP6QVBe0sRZW7b3oPlsXRjZSgD4JKkqUKQMGHgr5R4zZimd8fZe\n8JnF0KCWTyTtrlC8fmV5RSfoBFggbrwWxKmiuQop3jZpvk3rOrNbSlAzhVsX\n0CSTGLL5szVu7CVFtFJwEI/KTfi9bvnqQ7pWfg06edqiZvverSyBppDCXUJ0\nkyw4oggB3rE8tk4ArhNhdDhEd51M+72IsLOjyOmInAlXk1+Y37tbuJYKv6hq\ntqXMRw2uZXEPMZPDsm134RilVwESu369iv4ypRYFUviISZMnF5NB1Xebhhvl\nrkVsXDXNpvQhC65d8oXs8b58i9XCNZlDTeVUxVrf5PLVUV9FpdtAFzm+7sHC\nr+VUu7JVx0wBruE3HOAyMuuYdCsaADcRcwAh3VJ9UpZvPzikAzTac7WsGQNk\nFPULH4SNjqgpTG/ygFPzKKw8ic1TYib69nOwwUYSGtOc92A+x4zxnHdDOCu8\nPtni\r\n=r3mt\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"14.4.0","dependencies":{"detab":"2.0.3","unified":"9.0.0","remark-mdx":"^1.6.11","@babel/core":"7.10.5","lodash.uniq":"4.5.0","@mdx-js/util":"^1.6.11","remark-parse":"8.0.2","camelcase-css":"2.0.1","hast-util-raw":"6.0.0","unist-builder":"2.0.3","style-to-object":"0.3.0","remark-footnotes":"1.0.0","unist-util-visit":"2.0.3","mdast-util-to-hast":"9.1.0","@babel/plugin-syntax-jsx":"7.10.4","remark-squeeze-paragraphs":"4.0.0","babel-plugin-apply-mdx-type-prop":"^1.6.11","babel-plugin-extract-import-names":"^1.6.11","@babel/plugin-syntax-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/mdx_1.6.11_1594992574646_0.5455074260698682","host":"s3://npm-registry-packages"}},"2.0.0-next.3":{"name":"@mdx-js/mdx","version":"2.0.0-next.3","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"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"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"a8456421021edc62c38be2b79c62866f56421736","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-2.0.0-next.3.tgz","fileCount":8,"integrity":"sha512-gtCMga6DFCXcvcLgKZaAcTMpG2PuVGaJ4xUL8vGCS2WsXX3q2uascPaSPfWyLNA0i5Se7KF2n3x20TrlXqJlRA==","signatures":[{"sig":"MEQCIG3/Wq2G6DWuwQuvFS3mbxYo/EiNV4nXQFdf1Cfd4MEgAiAw0fcodNq/3Fa9W6qp40M0lDGUlN5c+Ve4/EVxpRIrLw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19882,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfEhtjCRA9TVsSAnZWagAAVo8QAJkxid1SbiYPDghFVzD+\nqj07KdZfVIZJNsuAWghGhfpgk6aM5559NRfqPaU1TfGXeXgavsus7DJr95Aw\nnTmbwPtvbzFYb7KQZuI9G5MtRTtAeg9+nqF+yZf6rD0Rsacw6Tdynk2MhFp8\n6y+qWxrMrFB70Khq5t/P6dwzKi/cwd1Vypw8hAUCGFNXZn+thkrOqHFFtIZN\n1eIXExXK8LuD8Tr78BBnQi2m8Kli25pWbI4QotpH6tE40eBH4Gkn0vY/RujG\nVTaYE1I5d/IOc1WKNmCEfZm0GYFdaMZz+JmayyE3zxNEFnL31NQkGEN86x93\nMHaSn/FKBr1t2AVCMwi7e57qit30+XpbbcBBymPzFI+hgv7kQdOS5HmMF8rF\n64tbf0EbSzXR7VQjhZ5GQAsapxG0xAknfgYiNG28eV8sfxYXUFO7kTya/Kyw\nDnhw64jxqnZI0u0HR2RmkCabvwNVZ8lQQg7hdULXklxxtCdhbKypobobRaM4\n2KoWhYenFmOyb25aryYxPmOglSD19d6TNOouvXDOHVsb/1pKQy12kC5PEFJb\nejqVbX189N4U2ICgHaOh+MNm2lWIZW7PkPq08MSuWMgLaBPObu3U6PsE0ST3\n2B6dFCcwrismjvGxoKIq7Mobwh4ojaR74klx+hilf8Nl45AodfkqbIrgSgKj\n8p2t\r\n=wUTp\r\n-----END PGP SIGNATURE-----\r\n"},"types":"types/index.d.ts","funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"d0059c8cf5147281c096e28be81d3914ad2e14e8","scripts":{"test-types":"dtslint types"},"_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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"14.4.0","dependencies":{"detab":"2.0.3","unified":"9.0.0","remark-mdx":"^2.0.0-next.3","@babel/core":"7.10.5","lodash.uniq":"4.5.0","@mdx-js/util":"^2.0.0-next.3","remark-mdxjs":"^2.0.0-next.3","remark-parse":"8.0.2","camelcase-css":"2.0.1","hast-util-raw":"6.0.0","unist-builder":"2.0.3","remark-footnotes":"1.0.0","unist-util-visit":"2.0.3","mdast-util-to-hast":"9.1.0","hast-to-hyperscript":"9.0.0","@babel/plugin-syntax-jsx":"7.10.4","remark-squeeze-paragraphs":"4.0.0","babel-plugin-apply-mdx-type-prop":"^2.0.0-next.3","babel-plugin-extract-export-names":"^2.0.0-next.3","babel-plugin-extract-import-names":"^2.0.0-next.3","@babel/plugin-syntax-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","_npmOperationalInternal":{"tmp":"tmp/mdx_2.0.0-next.3_1595022179099_0.6514806270960212","host":"s3://npm-registry-packages"}},"1.6.12":{"name":"@mdx-js/mdx","version":"1.6.12","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"e918600bb9b13d866d8affdaa7c3b606bf4c8d29","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.6.12.tgz","fileCount":8,"integrity":"sha512-03MSd62Pcr63KS1+yRiDok85w3dTCUQQoZZPenKxfyiQ/gWA3KybxFKBOxw3u37Pyk+fg0Y4jjq5pGS7vjHBWg==","signatures":[{"sig":"MEUCIBp9860Qq4oGDlAqazrGbaGhsbGcf8Nqo/J6lDcaSvsfAiEArffNiYxhSBmjuEpjpNfWHfY8wUhJL+Mun5hAAuIZQnw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18463,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfFZ/gCRA9TVsSAnZWagAAuBwP/2V3CIJckqyzh/7zOXuB\nS6UoO5B1JCo2H7guwBFpbl+lWPb2ncmfgWpEt1/zRaykbjq88LpwRspsE3wg\n1Wkj3ec+hefGeCFS991v8AhCO34F7p1bTqDlWskh8Qnyw/qnxCaw1n6fWOHr\nGm01Z0TZiJ/ZH+vnhylLuv6ri8UGefMFtqEnjRtYhbxcNhR7t/N6Dq+cjVwc\nvk0D8C8Gn9BjT1uIKuWerCwE3Sb+pEDzyzdWZ2Ju/FWaclk6XAZAOI7r8uJh\niO10htH6itvdskTKERIu3iOhPixojgv5vE9W5opUYHUino5Q1oKI+N29nh4f\nd6J9csrBWIl6HzF+EqdJjNzKRBO6ahivV9XGi/08c7BLSpC8nuNkUEYzxuYf\nmgkUB/gejbH9hk05p8QncL+EcDgdqjArIri2GW6KSbvRQq9CgT8hAaeLSla1\nnt4l6g978Cef1OTsbN+bYV1MV5NHbgjOGGSOxpeHRpWtoEAxYcSXze88qgpi\nSqppkT4x8Thc8bKCQD4O1ZIl8yK6RHyXTbMc88KvWs+fjt5AVlpB/3Sw41wb\n2kjduuFugBmvLVGrMU76KuF4I4nczlzM3ZbLE10RPE4vb0NRrNdAgOsKNefi\nOi/EDPL0MSJ+PTajegQ0eHuIkCH02mG4j1XaZpzqwGnHsVieWDiAmP84rChO\ng45S\r\n=5TdL\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"14.4.0","dependencies":{"detab":"2.0.3","unified":"9.0.0","remark-mdx":"^1.6.12","@babel/core":"7.10.5","lodash.uniq":"4.5.0","@mdx-js/util":"^1.6.12","remark-parse":"8.0.2","camelcase-css":"2.0.1","hast-util-raw":"6.0.0","unist-builder":"2.0.3","style-to-object":"0.3.0","remark-footnotes":"1.0.0","unist-util-visit":"2.0.3","mdast-util-to-hast":"9.1.0","@babel/plugin-syntax-jsx":"7.10.4","remark-squeeze-paragraphs":"4.0.0","babel-plugin-apply-mdx-type-prop":"^1.6.12","babel-plugin-extract-import-names":"^1.6.12","@babel/plugin-syntax-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/mdx_1.6.12_1595252704050_0.5381494238945159","host":"s3://npm-registry-packages"}},"1.6.12-ci.2":{"name":"@mdx-js/mdx","version":"1.6.12-ci.2","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"0d4a81c49490b9586590760690a8aa59979dd8ba","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.6.12-ci.2.tgz","fileCount":8,"integrity":"sha512-e4h240gZigrC6BLO8TtJRpwK067FwdQLgMAtPUDHd7FFN/V/DfI2n3MliKX8l1oVff5DZN++x/JMdIDSMbLP2w==","signatures":[{"sig":"MEQCIFsO/raW/YXXUAiTCcIw01meoXkXRfPMsge0UB3hK0oeAiARLrg9wP2QXl2GalukF8Hs+J1e+oZ3PqsoLGJk8se7ZQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18502,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfFaBkCRA9TVsSAnZWagAA8vEQAIZZgwnffJ/0WiKVt7NX\nEbVPBdMYxcebPTyqIiTvSkvk8Kkis/fetyMzLw0WMyAjRd5BwdzN9taYqbeu\nON5S4jdGWmlru0jxL1r9tFF/oaDUj9GudeevDeJW0GVYnVx0E6jjc41EZ3Z7\nqZHUs89KgBt9uO2uFm/nl1Ze+xZ6P5W7esodMQ+jY/7MNB7OJPQa6Vt6f1Pe\nDW3hyhJVWz7dpQtWP+CFTZWT/EcVJhPJK91QfWILjf8bGpGfT9IWzP9ZXlYr\nhllbKpLPWNeuZVf9bxB1QT1OMoX+ToTVEmcBnn5mk2mML8qdqbxPVzQF184f\nPAwmWqGQo+AsEY4gRA35EwwQ5Z3JJ65WTMbwGyfzQhgKP4Z1ZFvHtGKVAf8K\nJ5/BrdwCem+Onyikhax3PgWecoOv00LNQMMU+cTUsXIVacXMzlQfWPXgQBo7\nD8d62infAOy8bbEWz91xW+/JQxAehwIRBGLH2NFP2/kDxa94jm3cf1SHrnkK\nNTWv4ks0opsvQPLgMclV2VIHpdeg2nTGLmfJxDVIn2fRqbhGPZc2zPOYO7dp\nsOQ5kqrh5lCUR2nkS224Z5uroNNBfQKpRbxPsbScyiDfULejhPWoaAqyiOXD\ndEPCDjsopgZjqffAhIbi1Fs/p3MXBDYfTap8UEXGovEjHUB75wKHgyJUlRM/\nLqut\r\n=1ovD\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.18.2","dependencies":{"detab":"2.0.3","unified":"9.0.0","remark-mdx":"^1.6.12-ci.2+a65739b","@babel/core":"7.10.5","lodash.uniq":"4.5.0","@mdx-js/util":"^1.6.11","remark-parse":"8.0.2","camelcase-css":"2.0.1","hast-util-raw":"6.0.0","unist-builder":"2.0.3","style-to-object":"0.3.0","remark-footnotes":"1.0.0","unist-util-visit":"2.0.3","mdast-util-to-hast":"9.1.0","@babel/plugin-syntax-jsx":"7.10.4","remark-squeeze-paragraphs":"4.0.0","babel-plugin-apply-mdx-type-prop":"^1.6.12-ci.2+a65739b","babel-plugin-extract-import-names":"^1.6.11","@babel/plugin-syntax-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","_npmOperationalInternal":{"tmp":"tmp/mdx_1.6.12-ci.2_1595252836317_0.40716569803595704","host":"s3://npm-registry-packages"}},"1.6.13":{"name":"@mdx-js/mdx","version":"1.6.13","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"6b2ba52e1b19131d0f99cad730a3dcd7b6cb1d02","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.6.13.tgz","fileCount":8,"integrity":"sha512-xVZnzSQ/QsP6LnYnV5CC9sc92dzm0VsnFEbpDhB3ahbrCc0j/p4O5+q+OIic9H3AAYLIzoKah3Mj+wTnDpAeWg==","signatures":[{"sig":"MEYCIQCm31jxSdJ5FPmrDhOybkP+T4oSP6uI1B8YpmtwKxrqPQIhAKO5Sxwxd14W7EKnaNN+rClfDSVz/hbkaWr0/N5XWlYu","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18459,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfFbEICRA9TVsSAnZWagAAYZAP/0vTP6wfyVSUbLNcbaCe\ntT/bx62yWxnjcyiMlrNTR9DRvPtu+4yvkUWKpzgDsjfRr3f3r2gcH5KABqrn\naK7rvIW8hDi6NNj/A7+3ZoI4wHKYCJr6FCF8erfvEE2bjRzt/a7v8bMFOh9O\nybxKxDiCA/60Yfvjqfi5QWaDrE+S0VI6nqgjqRVzHcu/kofFCyDm91dnXP2h\nWgjwnZLZgCODKWuADh4F5d3uxEYSUkBBGdXk3dAel5OwKoCQFg9I0/mHvsyK\n7FgfVxsj+57+5WPJCV3fI/wNfAxACMV4/MctOWs62nz0/vYb37zRnpo0meV+\n/8FcS+grop26huiG4k2L8yEe2BiEOvWT7yiTb8n9Cm/xsmiVjRn9OQ2hjdYo\nY5rh2ktsZrFevpYYQnU/FuxUOjEOM/13f7dGOTst7aIowipdqe59SQOn8J54\nohE7JrgZj1zzGkjKMFTSOKUy8qQ3Gdjl0NOS6lWiIMJelEk38mzv+5thCHSh\nRAXE8Yp+73b0A8QF5WYp58IFmusVFAi5G/gASJJboDZ0crKtshil7UWT6mqK\nNRvoeaDArakzFZaY3husuObcwG4r1uawRNoqpR8VTxRO/FXdtUXYcpUD0exl\nuNPBL3SpLeSMywBVGvd9UjThqaOF0vzgwCLBNQw+Iy4cPRbjsOwZ29RfW4SB\nHEK/\r\n=OYtR\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"14.4.0","dependencies":{"detab":"2.0.3","unified":"9.0.0","remark-mdx":"1.6.13","@babel/core":"7.10.5","lodash.uniq":"4.5.0","@mdx-js/util":"1.6.13","remark-parse":"8.0.2","camelcase-css":"2.0.1","hast-util-raw":"6.0.0","unist-builder":"2.0.3","style-to-object":"0.3.0","remark-footnotes":"1.0.0","unist-util-visit":"2.0.3","mdast-util-to-hast":"9.1.0","@babel/plugin-syntax-jsx":"7.10.4","remark-squeeze-paragraphs":"4.0.0","babel-plugin-apply-mdx-type-prop":"1.6.13","babel-plugin-extract-import-names":"1.6.13","@babel/plugin-syntax-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/mdx_1.6.13_1595257095691_0.623118735877402","host":"s3://npm-registry-packages"}},"1.6.13-ci.1":{"name":"@mdx-js/mdx","version":"1.6.13-ci.1","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"81f66d85385bf1921a975a5877fa10220432ef81","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.6.13-ci.1.tgz","fileCount":8,"integrity":"sha512-fy5fJULj/WtiIIbnapo1gc3IfddGgRgWhNsfW2BYYJUFrwiM/yS56nIKyG1BQhtS1eZ0h4DOuNnvvp7Oo2Z3aA==","signatures":[{"sig":"MEYCIQDrRnIx0WA/EmAqSoy4ldXWdXHYK6Ax4xsKBwcCqrJU4gIhANwOq7UIShAPW1ekwoYoM7ipTToH4s8mj4G7DwpmyRLu","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18498,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfFbPCCRA9TVsSAnZWagAA94gP/AkilMUYXr68VMN1qjGA\nSpjQ7wDX9SXaYxFHeV6Vcl5z56Cu4oZTxU2RqFKrDVOQGwdV6p0AsiVlWS4V\nJYWQPxCaMJm5Vin/alQYlqCG5YeZ730ck0Y5mGeF7UVSpYCBy8BbqeovlwhW\nOpP+tpY9Pogfu501tSSdXWepkkDetDG9cWKnq0DjWdF+EqsMT1/3os3s1a8c\np5VoMPvbWXL2wlI1udleuio61lqEq2ackugc9BSqewSP8+veqO8sumX3Wd8u\nOcQ0hI9DdivciICZixwGEeEs8VqkzLvy83TLhR3GMIGo03e1yfLf1UnsPncA\n1y0pKfkzY3wyc88hv2yRS9N2HtxDyb1ybPZzPo+B8K78S7rtBQisg0r3cCY3\n3qFFef8p7H8njDQX+2Kp0x1lwfBqvW6/lkXvyFT2kAk7W0qTRO4MED4Zmegm\nIj+0Ib6hrZHGr6ZTHD0/ca7XhTQS772QkWU/y+pIOO4tnYW4sO7B8zx4Cl/C\nPkuuRJJqnSJaDaaVMhapnU8a8LA6YRHVBfRTDpYGWSwYlhkRHNrvN04sgAGm\n2QKVADDaVTCiIOQxRct3MVYaRZWrxhUtaWZM5dQavCzZnwCvTWnjVK6rc3LX\n/efaISgxpom0T4YG8w5FGKwoKXVGPOf4QU1ctl8Mc5WIAW+K2onmu9HfQRz5\nDNQS\r\n=xxuh\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.18.2","dependencies":{"detab":"2.0.3","unified":"9.0.0","remark-mdx":"1.6.13-ci.1+33e6df2","@babel/core":"7.10.5","lodash.uniq":"4.5.0","@mdx-js/util":"1.6.12","remark-parse":"8.0.2","camelcase-css":"2.0.1","hast-util-raw":"6.0.0","unist-builder":"2.0.3","style-to-object":"0.3.0","remark-footnotes":"1.0.0","unist-util-visit":"2.0.3","mdast-util-to-hast":"9.1.0","@babel/plugin-syntax-jsx":"7.10.4","remark-squeeze-paragraphs":"4.0.0","babel-plugin-apply-mdx-type-prop":"1.6.13-ci.1+33e6df2","babel-plugin-extract-import-names":"1.6.12","@babel/plugin-syntax-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","_npmOperationalInternal":{"tmp":"tmp/mdx_1.6.13-ci.1_1595257794223_0.06975739239316758","host":"s3://npm-registry-packages"}},"2.0.0-next.4":{"name":"@mdx-js/mdx","version":"2.0.0-next.4","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"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"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"52499728596f4e7f8a21f6b622a5aebbfe15fb62","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-2.0.0-next.4.tgz","fileCount":8,"integrity":"sha512-JoCLuJDHU3Ytyz51n3nARnkeB+vFvoeKMsHrHEgFumnnnGF8Qdx/8IC0nzrIZgPQ+Hwz9z/Ki+XGllMvk27glg==","signatures":[{"sig":"MEUCIQC8dv0Ms94q5lrnvWfP5C5xk5MOJLEjSNB/H9K9JWd6TgIgByJYuGl9kM5Y9qjjbXPGWr5nz/gEkfltsHCtPIQnof8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19882,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfGJBVCRA9TVsSAnZWagAAjk4QAIQ+j/MjG2JOwC/tXVys\nOvYVyIoVADRDhPm0dlSN0Xd4qEuTlxkq06pxs1eHTvVb/CoUFuNC6UsCqioG\nX4+26ndyxiRvqaj46h+YpXzqsCYeAzLLmKOEhm0ruwhKrJoCLJ2fjJ6DTK8Z\nkD6kqhaA8Ux2+ZgI1Ivv5Mlk5KT3RVjSLeE7FdPD0EdFcSuIXeRwXZ5+sJQs\n2YqG1T7tlBZO9nQ1w0AzzYmFwFhNoUfJQ1G1Nc7RefuQxbLHNYUrIuilMf8e\nvq+6D319nVj9OU48T0Qj2nhIMjIPJLZ9ydbGTWVTgKbhDK2e1tj2fJPPqN4J\n70SbifCSkc1R2W2cNcZaU1gx4IEfTUSraiTugkJs1MFFagkgp/I4XmS4ve92\nE5JX+w+clknmx5biq7LOc8mg8YpbMt4clLHhz6ZbULuD3RLCwv8ET5H3vRKg\nGTeV3jGchyAtipDrpYUxcoD4b4iYA+ypXGRI5kn3r3g0HVb5m3a8hgp8spA5\nFugkaC1yUqdR3L//eDgu0019pQ0R5+s1z25CBjKOFUTr61l29Vl7KkTbYbPP\nUa0ZC+8H+7C/0LGvubax1w7DlSMt/GCn8I+ycD5VUetb7grzgXyw2VcKITo8\njQF0NghsddTiVzyUQKDJcq1zUiN5nl3sZkH4K0NlXrU8nWv9R7mAb0K/BNce\nCkOV\r\n=I/H0\r\n-----END PGP SIGNATURE-----\r\n"},"types":"types/index.d.ts","funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"e1b45e365a1c3e13c680674a617ec0a17a1dc0df","scripts":{"test-types":"dtslint types"},"_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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"14.4.0","dependencies":{"detab":"2.0.3","unified":"9.0.0","remark-mdx":"^2.0.0-next.4","@babel/core":"7.10.5","lodash.uniq":"4.5.0","@mdx-js/util":"^2.0.0-next.4","remark-mdxjs":"^2.0.0-next.4","remark-parse":"8.0.2","camelcase-css":"2.0.1","hast-util-raw":"6.0.0","unist-builder":"2.0.3","remark-footnotes":"1.0.0","unist-util-visit":"2.0.3","mdast-util-to-hast":"9.1.0","hast-to-hyperscript":"9.0.0","@babel/plugin-syntax-jsx":"7.10.4","remark-squeeze-paragraphs":"4.0.0","babel-plugin-apply-mdx-type-prop":"^2.0.0-next.4","babel-plugin-extract-export-names":"^2.0.0-next.4","babel-plugin-extract-import-names":"^2.0.0-next.4","@babel/plugin-syntax-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","_npmOperationalInternal":{"tmp":"tmp/mdx_2.0.0-next.4_1595445332987_0.4287845232345924","host":"s3://npm-registry-packages"}},"1.6.14":{"name":"@mdx-js/mdx","version":"1.6.14","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"e49e2003e22bd92fe90fad7e18b478e69960acda","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.6.14.tgz","fileCount":8,"integrity":"sha512-VLGd52mFL091mkFTNZkGPMJxLvb382DqYDZfiZcqYBnbZPpFIbW3GnjXiHjLxT2v9zEKWD11+wcZLKNaWt8WPQ==","signatures":[{"sig":"MEQCIDYyggtLPj1yoOj+G4B73TY0WjQ3ShQwMmIydZefXDgSAiAEk9nMVhJScSc1TUBEdtC5qQ66YIkO7CEqh53UvA+k7w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18459,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfGNFvCRA9TVsSAnZWagAA4VcQAI7KQ4k/6SIHDzerUNwS\nFdXV3XjCPvT2oSV04PccBjnTrlnpJG/yBnGI65BH+memdZsGYDjrnH3weQFk\nGvjEg4mE5FA1IcDtQ11tUPp/ZFBPmbGw0Nn7h4qC/udbUIZEaswfInQY1Kle\nhE5rg0ObyhFfHrmUpCl53okwQ9BklgKqPyc+eRFAlfCZMMhnR/qDKpGyVsOk\nV6FUeZB/W3M6U5h9Qns6rNAeowUrFQWjLx+u7PiIiD247OtL4635yPXxXX2u\n1SvQrNe+s7IVUlY/5kAsrAQchogDK48CQHSou3iEr2Fkd1IP9CFQ7/TNFnYa\nO7wIRa0RaKxcmhDRABVShCxW8zfSuXh5sJYG0pM8vG7Z0gzkIs66MbnByXh9\nO3PzP6w6b2KH/B6w0KO5qDHZFuALYzDBc9c9PgJC5Sx2FuQpKWYSPiFXVBy0\nOY3RufMc3dhQdpuPxK+xlOMPOiAR0D69XorUzHKCCnoure7V1YScMf+8VqMC\nGaUI/NQNxaK1dS/QYP2Q+4+fHK86Hrks+6mrCI+E8ZqJdX4fv+7bTDI7hM5G\nESPP7IcP0XQkycaoZrHPRm3bqfcpVCHFhpDGWFR6VLtd4PEiXuNaXwu5PlLQ\nN/IVJ9Nkn7hUtY3gKQUq0Vyf5RmAh4C+2n47iipltKVU9iDXwbceJosyC1Je\nxAZm\r\n=RKwV\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"14.4.0","dependencies":{"detab":"2.0.3","unified":"9.0.0","remark-mdx":"1.6.14","@babel/core":"7.10.5","lodash.uniq":"4.5.0","@mdx-js/util":"1.6.14","remark-parse":"8.0.3","camelcase-css":"2.0.1","hast-util-raw":"6.0.0","unist-builder":"2.0.3","style-to-object":"0.3.0","remark-footnotes":"1.0.0","unist-util-visit":"2.0.3","mdast-util-to-hast":"9.1.0","@babel/plugin-syntax-jsx":"7.10.4","remark-squeeze-paragraphs":"4.0.0","babel-plugin-apply-mdx-type-prop":"1.6.14","babel-plugin-extract-import-names":"1.6.14","@babel/plugin-syntax-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/mdx_1.6.14_1595461998731_0.8223993410858474","host":"s3://npm-registry-packages"}},"2.0.0-next.5":{"name":"@mdx-js/mdx","version":"2.0.0-next.5","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"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"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"d2117c1ac0687718816e039c1ea8ff13fc466172","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-2.0.0-next.5.tgz","fileCount":8,"integrity":"sha512-eIVmO8LbNodd39+HtIkK/sstk9bvu/Jl4oWXRee0iv3VAb0H+q6AWIAtls8Y03OEIvx/1uoAl19O6DipWZJq/w==","signatures":[{"sig":"MEYCIQCfs+VFQlJ+ARIfNhMjoRHWdQlcjm4fcdMEsOQERF1Q9AIhAP9zJF/7ujJXDOukY2kaQ8qYj3YUr5J06q8pJAXnDizb","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19284,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfHzSzCRA9TVsSAnZWagAAYbYP/A0C0wZp9BFXRc9micK+\nI4NkFYHH8LMwZWc3OzE1YkjtE93FOIfpmEgqwoFpfTj22BMfhO23IVRskaxp\nyg66dBZahIciP5fNVFBT37wBKz3ot4XMb/i6EuPbnVl13Vmh3UfUB//dJjoq\nvMZFRFFksKWHJoZBWMUfwmTkgzuItUGu2aygiG6SCEEHe2/6blv4nUbeQkHM\nyEnr7lYFvO0XcQ812oJiBE/j7Rspor+0J+WWHS0VQwETwDC4vS301zt9wTBb\nSq2IonWDAjgeDseOly1z1ja4m1snA24idy//auXuTSN5Sds/7Jh5fWXOHduK\neweVv3hGsYilVuM3dMd3Q9H4GQKeGhkGd+h1UqojUV7mwPsCmut9B9+NR3Dm\nh2j+RL7nYVjkPDqNSnvdtszsFWY66nn7d/17S2xnTLT/jr18SoyJhrW04vMq\nCNrVxDf8937yPUclxT1v6PzbMv0dJdl60vOlvwcx9QH7VXo7uyVbgPeu3VNZ\nxqU4quYFP6SZSPV+xEw4K2b33RCtA/vs1TmdRQhE2J+i+nEQyaBo6v4iEPVh\nK2ymC0yJVN7G7t96y1XR40sdHDioXzd113Coev84MK4YQl49rxQ2aRXsuzhX\nrba0J+wD/LKGzxCyZKN6NbM898Bw3mgqdEK4kBcDVq9cSbTTgUVpbdgLHx9s\nBZRK\r\n=gzgG\r\n-----END PGP SIGNATURE-----\r\n"},"types":"types/index.d.ts","funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"bf7deab69996449cb99c2217dff75e65855eb2c1","scripts":{"test-types":"dtslint types"},"_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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"14.4.0","dependencies":{"detab":"2.0.3","unified":"9.0.0","remark-mdx":"^2.0.0-next.5","@babel/core":"7.10.5","lodash.uniq":"4.5.0","@mdx-js/util":"^2.0.0-next.5","remark-mdxjs":"^2.0.0-next.5","remark-parse":"8.0.2","camelcase-css":"2.0.1","hast-util-raw":"6.0.0","unist-builder":"2.0.3","remark-footnotes":"1.0.0","unist-util-visit":"2.0.3","mdast-util-to-hast":"9.1.0","hast-to-hyperscript":"9.0.0","@babel/plugin-syntax-jsx":"7.10.4","remark-squeeze-paragraphs":"4.0.0","babel-plugin-apply-mdx-type-prop":"^2.0.0-next.5","babel-plugin-extract-export-names":"^2.0.0-next.5","babel-plugin-extract-import-names":"^2.0.0-next.5","@babel/plugin-syntax-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","_npmOperationalInternal":{"tmp":"tmp/mdx_2.0.0-next.5_1595880626792_0.9549578901812084","host":"s3://npm-registry-packages"}},"2.0.0-next.6":{"name":"@mdx-js/mdx","version":"2.0.0-next.6","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"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"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"75c39c24efd670e8b9b61fb2aca54973279fc6a7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-2.0.0-next.6.tgz","fileCount":8,"integrity":"sha512-5AzIA286ArghJXuafBu/kC+GDKZEpe70P5rOT0MnUVWlz1+FiLSX5FyhpUGac8brNo2EONU86Cj18EdHdMLnYQ==","signatures":[{"sig":"MEYCIQDIG/nEJIpDhYAY/CMy63mKXiTNFY+VMUjFmvZD/a8NcgIhAJZOHBHH+nl/c1YF7pYF1ZB1bXC5yGKD2zNsNVUmQrCf","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19284,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfHzU1CRA9TVsSAnZWagAA5Z0P/0X4MLaf7DHgyGhwWDl+\nUHIwWoOhZGZlAFBg/KXSt845pYn/YYVxSk1KpgQvC6ScQvvpsYRkwIQMnLrx\n7bns3eC5ODRQiSrh63UcaBgRlQTaxRbxTGp9X5crUUsLZGQLrkuDd+eqdWN2\nygaRxI5JpTNqCOcGFzWckWrHI8rXjaV0+pGVsznxn8ERImt3vQJzwMcMf+R9\nbr9DRBZwjW5ZDpgcGqeRXzMWdWcU7OeMpy891ak3jv7P78zN7DaIV86e3Ohh\n5rtvj8ShSK5YDtDHquH/EC1jxsKwad72x8eOdPwSGQI/RxB2LlWERatgwwAY\n5nHJL3ADkO8MsBoOQatUa2QpNVvbKo9mn6xlaq4Ws4ZfjlpzpskhSibpOvNo\nhoa20Mj5Lnwd+BuUfLMIvElHG64KabixwH/KL1NMqmL54x5AoXxggSLsY4/j\np3iEtUneKd+F/0aNcBK0ZpiVYi6QWhLgCJOSa5yknJCHMYkG4HoGEkq3PugI\nFIWM7f8IQ97Gir/6d/RtPEsasaqWGkPsY6sipUQVZAU5F/j4Iv9cQb96q6nx\ntik0+rBgE/1Q1+0GbPG5VCUVArVQB++ukjjI9z4JeJAg7M7TDaOU3SXCBsaH\n6YwZ8G6/FTltH4ZHrSR6/7f5nrqpcpdz8CH+uPRQgv4Rap+nYglB8RCNzvu4\nvthT\r\n=T1vz\r\n-----END PGP SIGNATURE-----\r\n"},"types":"types/index.d.ts","funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"cbfeb8bbbfc830fc91717e098aacb2b2776abc68","scripts":{"test-types":"dtslint types"},"_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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"14.4.0","dependencies":{"detab":"2.0.3","unified":"9.0.0","remark-mdx":"^2.0.0-next.6","@babel/core":"7.10.5","lodash.uniq":"4.5.0","@mdx-js/util":"^2.0.0-next.6","remark-mdxjs":"^2.0.0-next.6","remark-parse":"8.0.2","camelcase-css":"2.0.1","hast-util-raw":"6.0.0","unist-builder":"2.0.3","remark-footnotes":"1.0.0","unist-util-visit":"2.0.3","mdast-util-to-hast":"9.1.0","hast-to-hyperscript":"9.0.0","@babel/plugin-syntax-jsx":"7.10.4","remark-squeeze-paragraphs":"4.0.0","babel-plugin-apply-mdx-type-prop":"^2.0.0-next.6","babel-plugin-extract-export-names":"^2.0.0-next.6","babel-plugin-extract-import-names":"^2.0.0-next.6","@babel/plugin-syntax-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","_npmOperationalInternal":{"tmp":"tmp/mdx_2.0.0-next.6_1595880756972_0.12665622180567837","host":"s3://npm-registry-packages"}},"1.6.15":{"name":"@mdx-js/mdx","version":"1.6.15","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"96e3db4e442008501ba7c4457382c02ff938f13a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.6.15.tgz","fileCount":8,"integrity":"sha512-jDp29ATBPliN8FlMpB11287x+MbpM/xj8uT5E7i1+2SoMgDNc/B1EqNd5eZLFYT0lyDk9IyKkcE0w0A0o616RA==","signatures":[{"sig":"MEUCIFN9lDzmoYdpIpSIJA4+pjlz/WzrNYIZiaSH5YprFHeJAiEA9rsgMlipPsgpR/sJQpDH0HQviihCalpNZ75p3WTnofI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18459,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfIYipCRA9TVsSAnZWagAAL+oP/3CPlzPXNn5X2tCkHzxZ\nZ5QUC16w8VHDtg1hOJ3Ld+nLVSHXR+ut3o6GZiN+D/thtwIKsZFlU5aEuHnL\n0/TF0aVCZ67lKtKG/pHUBlUJbsuhhhcoxJgmeWehgSTodi4rmtHR3i+7KklO\nU8m7ohZL6BQuwiwu5Yxpnp4WQR2ugXUE3uKAQzpowWdGsQFI+w+owPn4nJzA\nv4iOQZ7bQ6Bzk+oMbbrPQDK0NPj0RjvZqzAR76Q9fqAxguUt2moDf/yOQlsJ\nP1Rx2Dm9ftbl6Hb+Rg5fadcxgmiWT1mTZ4m9Y9loXyhP5V3H1DYh6Gx+uSn8\n/582Nwwt/lHSgEpuIL/th7eYAgm7LDddhNboRluoZwKwiQIuL2mEfcxsqz/6\nwpstRnKAccck8cYAyGcKO3tF12dCSx+rbrTZ6HN5WqNxwLaf6eVTzRNXbWps\nnSB6G72zYE2qk22eJtppDH6sNoiUOsQVTBqTPpuJhKuDobuSdvIMdZdgYXTX\nap3IyX20EuwmJjQmFMSFb36y93UGN/5rdrPNsnyBEVeAvl6tZKNdI7pmyGOE\nzNW9sdfTfjjaRO7V0r7d55xckMzOaA5CsJkpoeyxvB3ZYwG5CnfiCdxrpRFZ\nKBWlvIfmhfInkQcyBkisZzpp0HpOkLN9FQLClBNPD6jo0/r07RN8umAs9Ngu\nyoQo\r\n=Trju\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"14.4.0","dependencies":{"detab":"2.0.3","unified":"9.1.0","remark-mdx":"1.6.15","@babel/core":"7.10.5","lodash.uniq":"4.5.0","@mdx-js/util":"1.6.15","remark-parse":"8.0.3","camelcase-css":"2.0.1","hast-util-raw":"6.0.0","unist-builder":"2.0.3","style-to-object":"0.3.0","remark-footnotes":"1.0.0","unist-util-visit":"2.0.3","mdast-util-to-hast":"9.1.0","@babel/plugin-syntax-jsx":"7.10.4","remark-squeeze-paragraphs":"4.0.0","babel-plugin-apply-mdx-type-prop":"1.6.15","babel-plugin-extract-import-names":"1.6.15","@babel/plugin-syntax-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/mdx_1.6.15_1596033193573_0.38547941674322894","host":"s3://npm-registry-packages"}},"1.6.16":{"name":"@mdx-js/mdx","version":"1.6.16","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"f01af0140539c1ce043d246259d8becd2153b2bb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.6.16.tgz","fileCount":8,"integrity":"sha512-jnYyJ0aCafCIehn3GjYcibIapaLBgs3YkoenNQBPcPFyyuUty7B3B07OE+pMllhJ6YkWeP/R5Ax19x0nqTzgJw==","signatures":[{"sig":"MEYCIQDQqzBwixaCskSdIcWTjRRB9plUC13unU9WhsxVU6JC4QIhANeHA1fVvjKlJgNPdg23yWj9plrevxrXXsg9aEBnItiR","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18595,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfIe5XCRA9TVsSAnZWagAAXvIP/2eoD103zmIqNZLfMN9V\nNcmM3xzViX9mWOFCiIJ+dJyaynEGIWG5wJ72lq4bHQbHULAWsfXP0cpShB5f\nlI5a2/eO35/XAvWNIXlr6xkUai0x5bGejQbRaLDCgKMkM6ExFFbWcAlWrN/h\nFZpR9uRzA6t8yLG9GqoFTfE/FMxBttT7wd64glKN4gfDPQPd+zkQLpwWAUEU\nlt+vo85yCVm29CUp63tlgY8pQ86Kn7VtZvHC4Z2QOjMURk9HxZQYQYYwP3+R\nNEEof+9HEGv7AB9YmmdVRY4b3netlToRTe4c3P7ZKijDIjSPgtCu30+t4n6p\nTm449c4vQjR0ZTElZqMTJENgs6GACsRfUjuP4PuOnDMeQylduNKiZ2tJm8Ns\na06doR7YBQsD+oQMEoqYllhTwtQ2R8VBaz4cu7TtXwQ2R84LrV3j8ZSySG7l\nVOPhvUE9gzXyQmEoDkgHt9dIDUL8E1r7W3sBQmswywXYobJwJF+hZQ7YvKij\nMpCDykcWjwvBlQ9bqThSrXfhnbP/fwdHosMXS/1tLXJeNkNU6do/B0tqoRYV\nnc6xljD/hRWF57SJMMjaS+T5RohSc+vku3TqkqsDcHo9hZREhCSRXYpfZmHL\nmhWRg/Nk+POMGEvvVeJ+37IacHFM8mnNhKbgyhiwOAsMegwHhCA0Ooys6xq3\npEvW\r\n=NgKb\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"14.4.0","dependencies":{"detab":"2.0.3","unified":"9.1.0","remark-mdx":"1.6.16","@babel/core":"7.10.5","lodash.uniq":"4.5.0","@mdx-js/util":"1.6.16","remark-parse":"8.0.3","camelcase-css":"2.0.1","hast-util-raw":"6.0.0","unist-builder":"2.0.3","style-to-object":"0.3.0","remark-footnotes":"1.0.0","unist-util-visit":"2.0.3","mdast-util-to-hast":"9.1.0","@babel/plugin-syntax-jsx":"7.10.4","remark-squeeze-paragraphs":"4.0.0","babel-plugin-apply-mdx-type-prop":"1.6.16","babel-plugin-extract-import-names":"1.6.16","@babel/plugin-syntax-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/mdx_1.6.16_1596059222810_0.6187895621771786","host":"s3://npm-registry-packages"}},"1.6.16-ci.0":{"name":"@mdx-js/mdx","version":"1.6.16-ci.0","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@1.6.16-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@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":"7c463ee8c20dc6916c151602bd88f0e7889b209c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.6.16-ci.0.tgz","fileCount":8,"integrity":"sha512-//Ox+60kNCaeeRRUJIeC4yPeuQvttJS9c1MdKKSnVrKMEoFI1YOBZqivt9V47+aQDvWI/1PjOzsRtJjhqimUlA==","signatures":[{"sig":"MEUCIQCi/5vQdZcIH5MsGcWTNiuaJJR6hSPdcjd9E80XwQqgYQIgD9d++lHkMbVWdht0H294S1IH6ERhhDoM3PqKUBzwtXc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18608,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfIe8RCRA9TVsSAnZWagAAyowP/jtEuYWBBt9ZVh+ga12F\nU8XKfP1EyWN2F5AB8Y/3CzY+EelSBFnLUhY6lU2lj/VtVh4LtkWjogm42QMQ\n+e+Ha3M6C0At4cchQBnOXEloHDZl6kCjDAvBUwiG+dpOllK/ndgtSaPrWvjS\nui6hKwrPccAVVcyEEhRyodU8HDMVhA6Ev7VxOI133RetoDv4ikh8hwSB6L2y\n4IRHSmlcaOcKvjcCkNtSRUqPJx6gHvE4qoXrJAfsr0UwZhGqGfUYpj85294R\ny6IOUFQsG5QWuFByOdEQJFElerTT6dE0wudA73V0GNfTCz+7NDoGhKzl6E7R\nUWil6wvuI/PTWPR84jIdTRQMgstSVI15cWFycbwXqZf2iLIBYnVyLtvqKAQr\nKsLyJUmcdP22yL8n+T3MShiDklenQFeluF2sDFveR39pdGyx7QkC2t6QFekx\nlB2gUggChlbWQzciB29TW/7bzMwM3qexRbZr5ay0RMYcR88fWQnmWcD4Ba0o\nW+fAC+pX+NMgzQeNwTmAw/Ra20+6tFvJXXkm0Mh9QVnfEKBSkfMlo6uycogE\nmdGdAXkCUH6gfn+89eocfS53JDfAjRQxbCMWOv4gdQOWa+HOZiY02hFSUwV8\nXWs2NNOWWFiq0V9SSp0rW0dVX7bX06yx2CRvfe7HhbZCHpm0J3VKu+MCUSN/\nMR1R\r\n=k03M\r\n-----END PGP SIGNATURE-----\r\n"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"7454a6931e81ab67596948239f2769a07426708b","_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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.18.2","dependencies":{"detab":"2.0.3","unified":"9.1.0","remark-mdx":"1.6.15","@babel/core":"7.10.5","lodash.uniq":"4.5.0","@mdx-js/util":"1.6.15","remark-parse":"8.0.3","camelcase-css":"2.0.1","hast-util-raw":"6.0.0","unist-builder":"2.0.3","style-to-object":"0.3.0","remark-footnotes":"1.0.0","unist-util-visit":"2.0.3","mdast-util-to-hast":"9.1.0","@babel/plugin-syntax-jsx":"7.10.4","remark-squeeze-paragraphs":"4.0.0","babel-plugin-apply-mdx-type-prop":"1.6.15","babel-plugin-extract-import-names":"1.6.15","@babel/plugin-syntax-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","_npmOperationalInternal":{"tmp":"tmp/mdx_1.6.16-ci.0_1596059408825_0.9335128223970743","host":"s3://npm-registry-packages"}},"2.0.0-next.7":{"name":"@mdx-js/mdx","version":"2.0.0-next.7","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"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"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"3f27449e6a78ac0a9cc682f98e1c93442e93f166","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-2.0.0-next.7.tgz","fileCount":8,"integrity":"sha512-GcdHQ+YTlIaNpsMPlw32kEp+GCrb+2GLeDDf2AFtJiRoTelgCinjYp1twxY42WF6A4K80ZYgpr0/A6PDQbKNyw==","signatures":[{"sig":"MEQCIDlkg3fPtcfLpEh/2k6Y4uewL3e2+K5EjISxyugw4J0WAiAatpRAdz2rsF3uelp08J22n9FUiHJTYPhdReCxtiDB3A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19284,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfI0AUCRA9TVsSAnZWagAA4OwP/0Enf0/hdlHnKTMcwwOO\nhf86iilY++vvRt7hDEq0H/kLCAVT4WqDAspwzIDtluDSPixzrFkrVIHr3vE7\nawRF1j7zABO0W+qceAjwN+w5LIfZ9jaXvnhObJqmstIjWPiHlp1MJdIQbBWw\nK20HQvgalmpjB3MGdYSPRW6BKbU7GANs/mE8hg271HXCOCJ4N/tR9vbqLqFF\ni9tBxJaolCqrU7hUf8lsX83UPyE98JMYTIIq/bWSqJhvRid1ECJgAeUHLSYP\nxySub8XexNdOn/bT7x1CR5Q7qIElzguyz8TN9nxBl1XMZEUgTqbLMJ7leil4\n+rVjT9OukE2qJrYjeho2Cabnn7WJVM0dN6JEBDn0PHB96FD6m7PX+vOi25PC\n6Ea32i+OL9exwRr1fRfLWz13BWzNlJSxgongp95pVG0hjkZzzqAn0JFK//ex\nUTbe3Z4GVlYIbbRD+mGTTl1jdI0s5QNfPNGGFED580DKDiOPWghUI/w3XJDH\nhfZVJEPWIp0WyPqQEw/U4Rs1t5AWLwdEHr/8FCKUnI2Yi/VtSD4vTtimm933\nNMWeeJz9aDQ6/vTV3R6YNZuQvbFJ77rgxiaLRsiY/voZfFpiA0kNJlNhnQfl\ntizinmRu3YH9UvLbLkcDMLT6ksuG/niv7NnCbzQjThsvofg60fZrHWduYLKx\nIfnl\r\n=oYfG\r\n-----END PGP SIGNATURE-----\r\n"},"types":"types/index.d.ts","funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"b6f3fdf758ad36434ee586935418497f0041a61e","scripts":{"test-types":"dtslint types"},"_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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"14.4.0","dependencies":{"detab":"2.0.3","unified":"9.0.0","remark-mdx":"^2.0.0-next.7","@babel/core":"7.10.5","lodash.uniq":"4.5.0","@mdx-js/util":"^2.0.0-next.7","remark-mdxjs":"^2.0.0-next.7","remark-parse":"8.0.2","camelcase-css":"2.0.1","hast-util-raw":"6.0.0","unist-builder":"2.0.3","remark-footnotes":"1.0.0","unist-util-visit":"2.0.3","mdast-util-to-hast":"9.1.0","hast-to-hyperscript":"9.0.0","@babel/plugin-syntax-jsx":"7.10.4","remark-squeeze-paragraphs":"4.0.0","babel-plugin-apply-mdx-type-prop":"^2.0.0-next.7","babel-plugin-extract-export-names":"^2.0.0-next.7","babel-plugin-extract-import-names":"^2.0.0-next.7","@babel/plugin-syntax-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","_npmOperationalInternal":{"tmp":"tmp/mdx_2.0.0-next.7_1596145684452_0.11562571446993264","host":"s3://npm-registry-packages"}},"1.6.17":{"name":"@mdx-js/mdx","version":"1.6.17","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"d98038961f2cf162e11479ae19a923fdf807e21a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.6.17.tgz","fileCount":8,"integrity":"sha512-ys3Tm3V3yngccBKgF80jgDQW/SH9on3C2mJ+fZBS7g5AxbaX8JghZfPD0xwtjVNkFsOUS5vsjn1D2X1aPsjKMw==","signatures":[{"sig":"MEUCIQD2NB2ZricV5quLm70mDdBvcshlIYJQZi5Ci26OICO6NwIgfOBjW5bsA7EE1nZkZMXlJSOXZtXyc9gNqTqPDf1IOUA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18595,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfX7LtCRA9TVsSAnZWagAAdF4P/AgnEsV+GW/5m8TRXH89\nuwzB8rmCQN6vzdFKjqEQ+hqZVRoCfFspzQ8H4O2xoESue3CIIPqt3GxzUWMo\npqAEnjIR3X/zPEn2kXUn4JyPOYvJqLtUinzBIDC2oLrOghaWcHVkKxwCLEfW\nBZGB2cyK6HBjLff6l9MwY5YkS7uN1Ge2XW/cWunpvUTqQ00nPVi82jIyzhob\nVgyNhFAA4ZqkH5qjNISZHpJTsPYXc+ZTxKGnv/2FD1J/ufMHHdL4EMXNvrsO\nNpagXXt5CqC0Pj9A47JP9Ze/JsQwvZvEl2bkCBR1gwl+kxVCmBp4nNVw5xzt\nxSEyCKnMoZDmeThMKOxY8suPri/2LflVoBw7o3ozYXnL8h68ygyc/5Fk0Mvo\natmV5Keic8VSk8ZkAIvwfiZ4jMB2cSvJlR+aJz1uY3ZsLWRBavt2XaMxIj6I\nilV6rXWkg5TlGE6nCvkYb6Lz+K/OomiiGWYXrVbZg4Od8mJaM9FcYPv6KXwI\nBagIu8tDDExmnmwISet0agstT7qT7/NBYnjYOxCPChYdGGV/dHVe9gssYR4u\nKEwhdlFkezYLQau5gDZQ/qiHG3ncCb9+q/ogescuzst+HdZv/a/mO235V1uJ\nRwR6wqGi62433oRPszEuU2CKKROyz/N16NIaFRp3QHp86fobHU0wBzLkUJPj\nPj5V\r\n=qzq6\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"10.22.0","dependencies":{"detab":"2.0.3","unified":"9.1.0","remark-mdx":"1.6.17","@babel/core":"7.11.1","lodash.uniq":"4.5.0","@mdx-js/util":"1.6.17","remark-parse":"8.0.3","camelcase-css":"2.0.1","hast-util-raw":"6.0.0","unist-builder":"2.0.3","style-to-object":"0.3.0","remark-footnotes":"1.0.0","unist-util-visit":"2.0.3","mdast-util-to-hast":"9.1.0","@babel/plugin-syntax-jsx":"7.10.4","remark-squeeze-paragraphs":"4.0.0","babel-plugin-apply-mdx-type-prop":"1.6.17","babel-plugin-extract-import-names":"1.6.17","@babel/plugin-syntax-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/mdx_1.6.17_1600107244813_0.5433924757422919","host":"s3://npm-registry-packages"}},"1.6.18":{"name":"@mdx-js/mdx","version":"1.6.18","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"c73345ef75be0ec303c5d87f3b95cbe55c192742","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.6.18.tgz","fileCount":8,"integrity":"sha512-RXtdFBP3cnf/RILx/ipp5TsSY1k75bYYmjorv7jTaPcHPQwhQdI6K4TrVUed/GL4f8zX5TN2QwO5g+3E/8RsXA==","signatures":[{"sig":"MEUCIQDAeRDPJMIPhKU8V+/WHm4rcIc29rXqglhjV3aZqAiMGQIgSy5kdNJpiMbdot0ZDGoX/bdx8pPtnfmsak6lqOM6Dl8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18595,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfY2nuCRA9TVsSAnZWagAAxEkP/Rvn3Vc3VA/7M5/qD5gh\nGQ+yMoslARbLdaakRIj0KIqM5dwe09qL7KIBfF4mz08TgqfK4DshGXDjtzbU\nnmf6KaUVDzeAUHLQBrY/I47kCgzPx4DLxCD1he1AXqAk73xYIgb/TErrPig5\nTcmOWz1Fk0MxA2K0nJ4BPrhNTfpr4U5yCE9Uf+WN8itZZoIUL1dr7hCs3D8d\nBDHUnAcTtRvnPUxM4OsL6+S0IXq7Oh2uf/q1kOv+YoFT+7ebMqWDP4ZKZSIb\nSUg5wk3aCoNRjMev8ZFDsTX8Fj4CgZQHD6o0qHO634bXvTMmIr/NNJ5ldpeE\nV9fY3JPI+zLbiBiyy6yMTzvEzsSD3YkbUMCR4b3qRlxT5ZFsbTlW8qHqoBCi\nwh4YGfWSbPdj7/CrBEOscUbwJyiE26DoT2ZCIDZJLsYJHYNnrgbswVlZJpTP\nAXE8zGVh+lLitxjV574//TmWXjg99FCnDkTVrZqglX4wXr5xoc0QtWvi76Tu\nRRGCvYHYyp8MvsR8gtegO5WZaQQVk6ZwXNYKG6/ew1fEqsxoT9/NIYWLc4aJ\n7SaQ202jKIy7oHcB9MUHTvMfP+XWxGqU3tqT544nzRPPvDgm3rigKKhcEY8j\nVOxxTe1J2nTcu7QohmgSw0fjDrTh1xMDkSJVfqEYeUolLyHGq2aSAHt9VLXv\nhkxX\r\n=wG5E\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"10.22.0","dependencies":{"detab":"2.0.3","unified":"9.2.0","remark-mdx":"1.6.18","@babel/core":"7.11.6","lodash.uniq":"4.5.0","@mdx-js/util":"1.6.18","remark-parse":"8.0.3","camelcase-css":"2.0.1","hast-util-raw":"6.0.1","unist-builder":"2.0.3","style-to-object":"0.3.0","remark-footnotes":"2.0.0","unist-util-visit":"2.0.3","mdast-util-to-hast":"9.1.1","@babel/plugin-syntax-jsx":"7.10.4","remark-squeeze-paragraphs":"4.0.0","babel-plugin-apply-mdx-type-prop":"1.6.18","babel-plugin-extract-import-names":"1.6.18","@babel/plugin-syntax-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/mdx_1.6.18_1600350701364_0.5224134458620238","host":"s3://npm-registry-packages"}},"2.0.0-next.8":{"name":"@mdx-js/mdx","version":"2.0.0-next.8","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"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"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"7d29d7ee634ab0c37cf44bd8d9b1e93c5e09649f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-2.0.0-next.8.tgz","fileCount":8,"integrity":"sha512-OT3bkvsA+rmqv378+UWFgeQuchaafhVgOO46+hc5U7KrGK3iPI2yGTcFwD3/KzSu+JGPCEUBREE96ncpvYqKjA==","signatures":[{"sig":"MEYCIQDPnxaO3a/QvMscVYQWFJfNoQ6XFoycqEzcrkuJFzCJEwIhAN9hpzEXFiVqD7VWhEEN2CGEJHiScDobpH+SkwWcyYV7","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19366,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfZSqOCRA9TVsSAnZWagAAcvIP/AnL6TzFSWxUfjF65puR\nToIx5FheN6PcpN+i2mvX4KZ45YkCAdsKbRdoPpcZqu286g0COOpql4N3RVdg\nOurVwFg1bo3flfn8a1mfPCF02yMT1T4dtNK4yJKbbhltCKI8+LIpzegmJsAv\nhNJlxaKw4LEYDCq9g2HrHYwyW2qloYv9iV/ncWVjJqeNum3Aw+GGs3n2qlsI\nwYaXA6z2jkew9xUoR/Yg4a+HKiApkz/d44OpalxPm60Q1rMPRZztvKWNGnat\nV5PLZNyEn20Z7UjpztSDeqjn2acxBzlb79KUroZGIYDpnnQWirI2x0n4Uzz2\nCil7R1iYrIoJFEx68WlA+cxn15vsB5wfgBfjjYaiGTZmZi3O+GEugalxFGAP\nuSsE+r51WV4VUVhinnJwdam2QvdkHD8vtDiYON9XijMMsDlW+p6yba1ys9d/\njFcjQvHB9TOuk6XxTZoNmM5qwzHpqZpdLktvqnonseSYUr0ZMza8PC0SNemN\nRxOTkspTfrVd2P7/kj3SxW1DyZrqZYc629sw1zmzJtbMQXt3GWTM+4EWEDQ2\nOZ6imn2vWnLJNeCRMHkILhPr9p9VPmbsyyHNYgxx4yAtDWOwTEmlVVMQgA3+\nORrLOesLiKiE1FakWEVHDGNxcDa5iX8ArW/L/oEGXjF83TJBMyZh4K5UGQ2l\ni4Wb\r\n=jxmD\r\n-----END PGP SIGNATURE-----\r\n"},"types":"types/index.d.ts","funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"e194fc1a61715549be10d56055ea4ad25533fcb1","scripts":{"test-types":"dtslint types"},"_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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"10.22.0","dependencies":{"detab":"2.0.3","unified":"9.0.0","remark-mdx":"^2.0.0-next.8","@babel/core":"7.10.5","lodash.uniq":"4.5.0","@mdx-js/util":"^2.0.0-next.8","remark-mdxjs":"^2.0.0-next.8","remark-parse":"8.0.2","camelcase-css":"2.0.1","hast-util-raw":"6.0.0","unist-builder":"2.0.3","remark-footnotes":"1.0.0","unist-util-visit":"2.0.3","mdast-util-to-hast":"9.1.0","hast-to-hyperscript":"9.0.0","@babel/plugin-syntax-jsx":"7.10.4","remark-squeeze-paragraphs":"4.0.0","babel-plugin-apply-mdx-type-prop":"^2.0.0-next.8","babel-plugin-extract-export-names":"^2.0.0-next.8","babel-plugin-extract-import-names":"^2.0.0-next.8","@babel/plugin-syntax-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","_npmOperationalInternal":{"tmp":"tmp/mdx_2.0.0-next.8_1600465550430_0.6038152148606308","host":"s3://npm-registry-packages"}},"1.6.19":{"name":"@mdx-js/mdx","version":"1.6.19","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"a89522f53d0712691115b301a4fbd04933714a6f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.6.19.tgz","fileCount":8,"integrity":"sha512-L3eLhEFnV/2bcb9XwOegsRmLHd1oEDQPtTBVezhptQ5U1YM+/WQNzx1apjzVTAyukwOanUXnTUMjRUtqJNgFCg==","signatures":[{"sig":"MEYCIQCIDL+qPIZrqydqAigTKVdzx7kfTM2Gn0yDwb971HQ6+wIhAIKbfMWk6HanQWSe55bsJsoBOCVnpwPS8TQZUprS5SEZ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18634,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfj1uACRA9TVsSAnZWagAAvnIP/Rpcr7t661AAkAf/49hH\nQFsqkMD6SV/Y05sBlVmMHvZb+FcwpW8CC45gojK+DD4+PRHTs/jbtmdoNYeQ\nGdvjEQUrf1ogSxX3r7Az0ZlY45xtuWHylKgXaA348sHRp/scEqnsdxG6PW1U\n88pfhzayeBoZ15HXEV1QmtWEzHHoCiLv1SQhReYCPMmYWqczcemQmUlyEbe4\np2W4ywRvLhSP+Qr24MtMxrDXTA18hTDS8sJUSGh9Ch4dNdZuN1hxs59zc7WH\n6+sN0OadmkHGchPu21ppPYNRPAPT672fEyvbyVYH60UJ8O27sDRPcyzkC+3z\nynguGR7ZRWnturkuByFdfm+NQuWgcYJF3ozmw/TuVfaQKNaepHiRqy74zgJf\n6EnVqFXTiq0yhFd6bDXLEFFJQKw+PYt/B34nVALkq5bssZz/IwRqek8aRKmo\nSBiyWQszL3hm+obKUg1kxgQ6lEQQaynbRHasKsW8TXDlVgmnYGwKJ0+pkBXP\nGbml0DdX6XgK451w35RMrA4nibAEGL5W+R+Ekaz7AJBVpHBX78L6r4Ydb0wf\nRuhE7OD5qJgUM1VE6uagvsMTUTq9aJE4fD69duWbgel9ny/yaUpxTKLfdLdT\nza5eobyVbo34rMG7r1ylw2U+9KmfGLfS22kVPVm53lEoD9zoIdBZ/l8vEmbc\nioZ+\r\n=IANe\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"10.22.0","dependencies":{"detab":"2.0.3","unified":"9.2.0","remark-mdx":"1.6.19","@babel/core":"7.11.6","lodash.uniq":"4.5.0","@mdx-js/util":"1.6.19","remark-parse":"8.0.3","camelcase-css":"2.0.1","hast-util-raw":"6.0.1","unist-builder":"2.0.3","style-to-object":"0.3.0","remark-footnotes":"2.0.0","unist-util-visit":"2.0.3","mdast-util-to-hast":"9.1.1","@babel/plugin-syntax-jsx":"7.10.4","remark-squeeze-paragraphs":"4.0.0","babel-plugin-apply-mdx-type-prop":"1.6.19","babel-plugin-extract-import-names":"1.6.19","@babel/plugin-syntax-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/mdx_1.6.19_1603230591877_0.903404086396159","host":"s3://npm-registry-packages"}},"1.6.20":{"name":"@mdx-js/mdx","version":"1.6.20","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"01db3f9b7b5ee1e90e1f995ef4c262c7bae092fa","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.6.20.tgz","fileCount":8,"integrity":"sha512-YGe25WCZAUVLZH/xf3PcIw3ULTggIgTeaqYCI05Om8N2Jqpv0JlQlajxTaB4MrEE43YwwwxrdZUKfCuBQuc9Yg==","signatures":[{"sig":"MEUCIBHTUHk7vY+cRVjp1RztvvWZHrvxUeQi8nPb52G4WeOkAiEAniTnwnt5GJlZtwNG2TyQ9FR2h/KCioV48DO43bPQTvU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18634,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfprU0CRA9TVsSAnZWagAAA/YQAJESqP0UWf9Q5h8wLDf/\nsWsuHMEaEBNxPoaiQb4tM5JtFhnA8uvjdto4uQPWKrW+b6gHEOGS7la23aG3\n8CgM0CKZMNO7nJNM8hQlroAzLAJavGLHfgyOUPK5+mLDBLyMyzblRl8rC/K+\nwZsBHb/1HGMGC6e1LHeUPPQlCqdMlAaE6K/8HzdDdsoXHFXzoNr4NKp4O96T\nYeuKYc9bMXeJJu8lZFSV1SbK6H0zStEAx1QIbDYBm24ABhByKXRy/7cuEkaM\nMbm3BnAOf/W7RhRER1gYaRIsQ9O79xyxHLU5mnxLeIJ3GcARDJcOpht3VazT\nTvKQohCq3aUHC9SOYl34hHHhUKW9+Ew1Qf7TQ4+vDqDVT8QaoId0LwT5fZCk\nGcYtCiJPWLewv2ijePyaz1qXP9ZtiN7bnqhgOG7iyZFCcFMkqi+GVNquw8C2\nHVQTQDX0qHejQcoSL+3t+1uzzRWTZFwvDplpv4TgxqfPFvyuct6iqYkSF1xa\n7DFqKDYhXuQ7ZU/2aLJMDSROf9QS3fm/bs7OO1wHfobsl6sN1fDxYw2ryDvG\nUD//oBvHmVEphPcjxQcfnxvuGEImYNdKAWttqG8xIhYME3huphS6KE0zCmvV\nHrdA2mYdObbMiZ96aaDO4a58WAwrqt4JyryGfprNC1PZirJiHXyzlgoTSXj7\nNzbM\r\n=Ls6l\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"14.15.0","dependencies":{"detab":"2.0.3","unified":"9.2.0","remark-mdx":"1.6.20","@babel/core":"7.11.6","lodash.uniq":"4.5.0","@mdx-js/util":"1.6.20","remark-parse":"8.0.3","camelcase-css":"2.0.1","hast-util-raw":"6.0.1","unist-builder":"2.0.3","style-to-object":"0.3.0","remark-footnotes":"2.0.0","unist-util-visit":"2.0.3","mdast-util-to-hast":"9.1.1","@babel/plugin-syntax-jsx":"7.10.4","remark-squeeze-paragraphs":"4.0.0","babel-plugin-apply-mdx-type-prop":"1.6.20","babel-plugin-extract-import-names":"1.6.20","@babel/plugin-syntax-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/mdx_1.6.20_1604760884142_0.28452033611183336","host":"s3://npm-registry-packages"}},"1.6.21":{"name":"@mdx-js/mdx","version":"1.6.21","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"d3651b4802db7bdc399270c0ffa9e2aa99dd4b00","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.6.21.tgz","fileCount":8,"integrity":"sha512-z35VI6qDw9eAzR/obtgHbYVUdb/Pm+oUnlP1lLR94Oe05Xs2H7vlAgpuFBCLH5g/egzAc2wZCyoVydr25CsF+A==","signatures":[{"sig":"MEUCIAypRE++I9a4sN3abHizV0hUhwsNpOLCZeQHwmL7xamOAiEAhuHHQ8VtqGFyXBVIULk0t5Y67xOhQ3QhuLhY7FT98YA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18634,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfpriRCRA9TVsSAnZWagAAjeYP/35OnJwpq/WZw8ztza0n\n/g69UtHDIqZviSxZuqgB2tVr+2IKpOOEdASPQm7EIu55jVVJch7ec2VRNA0C\nEn3VUxhlSciFshY7Eb9HuXw4fYeSuyVp6n7Ch4LWjbk4WSStGV61HSniJm7M\nLL4QejHXzcu0dPnSWUH2E9infqNMHMrY32c5yE8c+XpZDhqpkHVQ93M2/sGb\nkv+A07tg6LfIf6C7Qb+Fe12m4+JrjXQRxauRATaXQidvZA1iLyv0hg4hHkhA\nYl1Z1UeWg0Mq2ZAHCmPk+M9BgMW3Yw2vtg3eKrvyq5QuQ8XzYF6gQWhrgFVm\nX8T7/vZX6kZFF3jTP7S9cupOBjAf42hVP5erKkA6K1OCdBlauSXLMuIWXlO2\nkwvY984h5PNzBaN+dHjqIMOkcdVODyoFPKNz1NVl+QclnJfnKOvk3m6ePboO\nOWcJqNeJp7qfTPCD0TtW4Vpg4xHcvreoHGP4VQWCYsATrrs/TNOnHtKB/WNc\nqKNRytFWNfwJNlT81qL15OX0u1sXfbfT70cNTV3d7VejFKGpnphYRyOjy2Km\nx/VxKVHRJdlE821aMc0wWhWlkYlvQL1zRBMTfY5c+hafG+TYT2RIz4TUtJm3\nwg88FLMhz0DBDMtX0obnl4zUtBdAI00TJo4rIrKqhnavaC+tZL/WVrGK46FU\nDNxg\r\n=qgB3\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"14.15.0","dependencies":{"detab":"2.0.3","unified":"9.2.0","remark-mdx":"1.6.21","@babel/core":"7.11.6","lodash.uniq":"4.5.0","@mdx-js/util":"1.6.21","remark-parse":"8.0.3","camelcase-css":"2.0.1","hast-util-raw":"6.0.1","unist-builder":"2.0.3","style-to-object":"0.3.0","remark-footnotes":"2.0.0","unist-util-visit":"2.0.3","mdast-util-to-hast":"9.1.2","@babel/plugin-syntax-jsx":"7.10.4","remark-squeeze-paragraphs":"4.0.0","babel-plugin-apply-mdx-type-prop":"1.6.21","babel-plugin-extract-import-names":"1.6.21","@babel/plugin-syntax-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/mdx_1.6.21_1604761744919_0.432510631491279","host":"s3://npm-registry-packages"}},"1.6.22":{"name":"@mdx-js/mdx","version":"1.6.22","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"8a723157bf90e78f17dc0f27995398e6c731f1ba","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-1.6.22.tgz","fileCount":8,"integrity":"sha512-AMxuLxPz2j5/6TpF/XSdKpQP1NlG0z11dFOlq+2IP/lSgl11GY8ji6S/rgsViN/L0BDvHvUMruRb7ub+24LUYA==","signatures":[{"sig":"MEYCIQDFSHQoHJqpReFDsm+6UyJiOZ0cuAdgbtuwLZbRRodZbQIhANT27oFLmsZcrUr9MHLWyOArNGWjBsNGkefVuuZfJO+b","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18635,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh2Q/lCRA9TVsSAnZWagAAKyUP/2RCeQRUWwCXKHh1Y8og\nmidmAzHMHQJkf9H29bWQ3NrWXaT4Gzy0exnoelGsjbCz52SPR/MA4YdybTAE\nP/V6Bq2B+p9pS4YzN1TtT8MKygs3OVUrtG0fvETQtkj8LS+OBX+Ebc6HylZ8\njqtCw9Av8X7dd49xKih8RsGc85rVsTvtaCrQOE9YJsTCcmksK0wDsTyewf3z\nH+wTTHsnCt8U3xJNH2vkqgMgLYKYS0yx6jRFEA8wWBIqfGPNfOpN1lS1pdK+\nlPlkVo6JwwTGXTKMDXiUWpYVplSOi21CZwk7vdnrxaCv6Gwy/LTz3Ddq34l4\nLf6x4jf0riio7dNacUeUPrgNS26Mu9mPmrv3cAA4AzysAjizGvOvSJgKIkSQ\n3BX6w+UGX8NQMTc5r2CUHlJwPuxn3Y1BtLG3lG++Sv7wAHKgfZDW5agF2IE0\niU0/SWUlpefOFHy16B7+9JipBr2tMTaFCFQPlZ1srKVEB3y81nXeOW9MHy2m\npP2NB2859Z63pjWg+U5NmExHNS3rIW6ylwkBM9i75H6s5Xm+KtiRqCwJbvXZ\nhq89/hyHz7JilSXCCNqRwtbzJBnCefNeqA7YFS663wlpIkS3IKxuhXUuViMh\n19VE3ti1z9k7ooIKcXJV7b9t/42aTvFiNQz4U1IhAAC6zcx7Cc+o2sJ/LhJu\nBjcm\r\n=PSGh\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":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"14.15.0","dependencies":{"detab":"2.0.4","unified":"9.2.0","remark-mdx":"1.6.22","@babel/core":"7.12.9","lodash.uniq":"4.5.0","@mdx-js/util":"1.6.22","remark-parse":"8.0.3","camelcase-css":"2.0.1","hast-util-raw":"6.0.1","unist-builder":"2.0.3","style-to-object":"0.3.0","remark-footnotes":"2.0.0","unist-util-visit":"2.0.3","mdast-util-to-hast":"10.0.1","@babel/plugin-syntax-jsx":"7.12.1","remark-squeeze-paragraphs":"4.0.0","babel-plugin-apply-mdx-type-prop":"1.6.22","babel-plugin-extract-import-names":"1.6.22","@babel/plugin-syntax-object-rest-spread":"7.8.3"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/mdx_1.6.22_1606845244392_0.06647315376970897","host":"s3://npm-registry-packages"}},"2.0.0-next.9":{"name":"@mdx-js/mdx","version":"2.0.0-next.9","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"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"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"6af5bf5d975ceccd11d31b4b7f180b2205c7bcfa","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-2.0.0-next.9.tgz","fileCount":9,"integrity":"sha512-6i7iLIPApiCdvp4T6n3dI5IqDOvcNx4M3DUJ+AG6xj/NTssJcf5r3Gl4i3Q2tqJp0JAj6bWQ3IOLAefF18Y48g==","signatures":[{"sig":"MEYCIQDHoT8dn98vlY663gS/nc7ISd3mJc3YHGxa/4ShKcmd9wIhAPI5Gu/B5On9N6BHC3jESboURKBi9b7+V/gSKxIzjI8K","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":24586,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgU3FLCRA9TVsSAnZWagAAl4YP/0qJ6B/Y3pxKACEFvbt7\nB+nIS0eD9jQIgN6s0BKrGOFemWarncYz3Ej9kCjhUDKEIOM4R8uUmcim5MHK\nBe22HjPQopFKTtPzH4BciCKpPHQtK8xjogWRNe3VmJleYVnikP0SolWukKe7\ntZ6DLkWgDZbjDQzUFtqTVy77XrWS6/CzxxJaLMzbHWYt+xiisvROlBUyTouU\nnbaKW7+E5qOmy386zDHDMsoy2jambgRCU+eLQLsKg04rpVlSU1f8CxwuQ1KP\nOdZAt6TbUOHewzBcigduybYgw1uuBRsr+DringiRv7sITPAzDsO8qtde3zq2\nYMUI5uuca+5yt9LL/EVyj0rVLglNfAmwiMESfw/XJvfwzXqdA+bh64OVYMrC\ni35j+U2INpLDgqU5GuZ2tXcVZzALp1q0RM1bNatyofhX4hWOR6ipfQwzRLk0\ngH7rInGQc0vYCVU/NnE9E3XAQF5E1ngu09TPQkYCHctdMKMGpetiNL98Fio7\nFG8EuwL4nulNQtekOB23qqeYri6nMrM8fox51h5RceGNJbBVMyygogQ5N15B\ntO1Dof7qML+r7XJ7taP7nv6imMT0yUFkyPKSOLuhCCVf2E821hxuknaH05hv\n8rDLCGzCKsOV3RRLYi8P8lnyyDTNyLbQptbrzV8HkYB/45odi5hVgCy/J8JE\neulK\r\n=li29\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 test-coverage && yarn test-types","test-api":"jest test","test-types":"dtslint types","test-coverage":"jest test --coverage"},"_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@v15.12.0+x64 (darwin)","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"15.12.0","dependencies":{"detab":"^2.0.0","astring":"^1.4.0","unified":"^9.2.0","periscopic":"^2.0.0","remark-mdx":"2.0.0-next.9","@mdx-js/util":"2.0.0-next.1","remark-parse":"^9.0.0","estree-walker":"^2.0.0","unist-builder":"^2.0.0","mdast-util-to-hast":"^10.1.0","hast-util-to-estree":"^1.1.0","rehype-minify-whitespace":"^4.0.0","remark-squeeze-paragraphs":"^4.0.0"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"remark-gfm":"^1.0.0","remark-math":"^4.0.0","rehype-katex":"^4.0.0","remark-footnotes":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/mdx_2.0.0-next.9_1616081227281_0.1500674097993271","host":"s3://npm-registry-packages"}},"2.0.0-ci.3":{"name":"@mdx-js/mdx","version":"2.0.0-ci.3","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@2.0.0-ci.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"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"d280637974de6eb9b333fdf87dd2f635724cb7d9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-2.0.0-ci.3.tgz","fileCount":9,"integrity":"sha512-SuoQuSRaGpVzBnJrklwS4D2WVRNJk1fTGz2CRuXq22y6iGHLzn/6wT2QGCldPTz862w99OyhKXtv3+P801XGBQ==","signatures":[{"sig":"MEUCIB3wd4pCq2h1fpzuZUgi17ki2yWyHGNvIk5ZmgpTSlhsAiEAz0ryu9F1VyKySvKDJfwfjClhN6NaJbVoDVlw2xqXlB0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":24793,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgZdoUCRA9TVsSAnZWagAAh4kP/jlXZcQbuJ3q5d4lwCnX\n/n35MNICe3zqLPQ4ehqsU5f0PfCdzCQt1qeuagu8PnSTvXQ38b4h+YqMl+6N\ndhoGa02IX6wDkpFXstb9MEQYtECCliNbS+dXI8qz+o/auLg8wijjnylz4qiA\nbfsy52hszt0msE0EqKnsivebwOMPlPIjjXnsshdYJbCvHt7pBoBi27UMD4YU\nOKTKJ8oZSYZh05VNqSoXn/SCOQ9g2Hwdpf3w90/mPvuVDLEguYjCT2NwZVpP\n5tIRY9+CPbaqBznIXYnN0KckAE2QHRIOdE6O5eonCB9eIC6impoZC6UYOt/t\n0KcLwP8w7l5u7QOrexk8RC5IUi7d9/lINnTRhLQHk8pBw6JTzyVa1gMrmMYd\nbavFkggdMgreC2QQxv9pLP1oDZbwB3gXa9T4EflMpOD9vvgaBOsBXwxsYZrr\nmwDI/AMcW00N/qtKTkhtLO2mEIhgw6ffcDghGSoe9yWHtiXWzAwLj9ecMEgw\nQGVjfXF/UTyIZU4lLneQqXp4XIrn+noIu5gvkBPtFfX+jkgRWJoAxgYXppIl\nzhxv/vSsYZoh3ja9N+067dhqhIfcpCMoBYcVUo8IxRp74HV64RvalSptGAA5\ndfAyd/ZJyMnKj2oaIADMePfoYL9c3JN3L24XfB/VLMlR5g3G2wChKGJ/3cpo\navxT\r\n=5Mqw\r\n-----END PGP SIGNATURE-----\r\n"},"types":"types/index.d.ts","funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"5169bf1f5d7b730b6f20a5eecee0b9ea0d977e56","scripts":{"test":"yarn test-coverage && yarn test-types","test-api":"jest test","test-types":"dtslint types","test-coverage":"jest test --coverage"},"_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.16.0+x64 (linux)","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"14.16.0","dependencies":{"detab":"^2.0.0","astring":"^1.4.0","unified":"^9.2.0","periscopic":"^2.0.0","remark-mdx":"2.0.0-next.9","@mdx-js/util":"2.0.0-next.1","remark-parse":"^9.0.0","estree-walker":"^2.0.0","unist-builder":"^2.0.0","mdast-util-to-hast":"^10.1.0","hast-util-to-estree":"^1.1.0","rehype-minify-whitespace":"^4.0.0","remark-squeeze-paragraphs":"^4.0.0"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"remark-gfm":"^1.0.0","remark-math":"^4.0.0","rehype-katex":"^4.0.0","remark-footnotes":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/mdx_2.0.0-ci.3_1617287700033_0.030240947010509167","host":"s3://npm-registry-packages"}},"2.0.0-ci.4":{"name":"@mdx-js/mdx","version":"2.0.0-ci.4","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"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"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"251a91b53beb72a2c3e19224ca8f66f43fffa74d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-2.0.0-ci.4.tgz","fileCount":9,"integrity":"sha512-x+hFvPkUNivxNh/TNnQQyDYftgSgvQFNwiIKvh01/+w9ORWZMMdLPUXd63lSGJX8PYr/aPnXzQcubMs8yk1D0g==","signatures":[{"sig":"MEUCIHvCJz0TLdJY0fBWDj4fb6TsuD5IpFoDNO1efsy6MBDiAiEAlLbT8UNc7LLLG9H4ePBht9VKXcFewE+6TwySBygJdic=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":24800,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgbelYCRA9TVsSAnZWagAA5EUP/ioqFMpyu5KOwDObmvE7\nQH+c4qsrY+xPKC515DAVj0gloMM9wC/mqRlPameXJycCAewzv/rRHghmdQYs\njNbmUCfQHNU9gYUIIoDjJC7G4huYJU6aelivVS7Q1EM0rOq+WARErw/wTxrC\n4vc0ZrnWXlrFc4hinei1WufprZ41/61z8hhDISXAQQ2b7UTwMd7vIZx3AADY\n924x28G0okmntN2Rf2ogrTMk3FPuikSLPWNoEChU9oueSQgxPfvEH22NS2GY\n5wUMEAxuwp0vddoV4TyA1ngKojw5EwuxxmBDWrHRGdYNYm7C9Yltmsnke2gA\nZSJpBC80XvAy3NbzzxMxMJk30InWottMr9IL1hVOSQ26LACGV84uzSfEPx3v\n8tz0VDCeJnLNh8wlJbjXW3D8PKCz4zUMM8g+Mgsa9jEdbUmsV0U2avcGwtCU\nRitqCBHiG7ipQoXIdZSYsAQ+mCRB+FiN0MyJReCHma59QK1oRMYBOOwLQ2UF\ndzuk+P+e4DUo8MjoyT6faNQmT6XoYmk3/viAYH5yBuiN1yeweADrOJSQ3j/D\nmUiulsflCC6uM6ksvGx3R6tNnQKAtNNd08c64r4tKcJ8yDtGN7svoKH6sx1U\nhhJJMYHHRCtHC0++29kdVrbjNSO9iZNZ3+fnzz+DelGSsUhTrNXkv0+seWUB\nU0c8\r\n=pW13\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 test-coverage && yarn test-types","test-api":"jest test","test-types":"dtslint types","test-coverage":"jest test --coverage"},"_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.16.0+x64 (linux)","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"14.16.0","dependencies":{"detab":"^2.0.0","astring":"^1.4.0","unified":"^9.2.0","periscopic":"^2.0.0","remark-mdx":"2.0.0-ci.4+09ba5d04","@mdx-js/util":"2.0.0-next.1","remark-parse":"^9.0.0","estree-walker":"^2.0.0","unist-builder":"^2.0.0","mdast-util-to-hast":"^10.1.0","hast-util-to-estree":"^1.1.0","rehype-minify-whitespace":"^4.0.0","remark-squeeze-paragraphs":"^4.0.0"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"remark-gfm":"^1.0.0","remark-math":"^4.0.0","rehype-katex":"^4.0.0","remark-footnotes":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/mdx_2.0.0-ci.4_1617815895780_0.9516388526665276","host":"s3://npm-registry-packages"}},"2.0.0-ci.18":{"name":"@mdx-js/mdx","version":"2.0.0-ci.18","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"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"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"440eb7d25135aa78cbf3f270fda673f6378e3e18","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-2.0.0-ci.18.tgz","fileCount":9,"integrity":"sha512-Ue5z0gvCboXnPUAFxB/TnF7+PP3RpXG2MoagXEseFE948wIOJjerp7/igSmHeTuCl/PJDG/GoWi2NoWKapJ51g==","signatures":[{"sig":"MEUCIQDtUDRyg060VvMlCApIAgKvc2Tk+Y1J0oukdpIn7ExU4QIgCEpp1B04yGGFNxLb27uSaSfzYhQVXF0NgA5C6y91K+o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25591,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhKoLvCRA9TVsSAnZWagAACIEP/2KpxCh4m4gwv9mkTv8I\n0l+AZpEo6t6MlxtEyni6jpTan1Lq1KZOEFvzbBdcVDDxfdXl8VuDSYL2aC8Y\nb15vGxO3sxzjTKBpwJNPRaS03Qi8egEDo7g2NUAbF08rxl7B67jcsG9ewMsK\npFf1cWneSXvEGiPWY9XcUraNfjiMwjKoh7pJQiysUiJjfZZEcOeVmq6WNnip\nt+ODAKxO2nxpEKWLC5mDuubsh1vdu3UuYBYVQ86oGztyD2+OxFVhJsfXaT7d\nIYjYDRC+4Kym5jrNsKBY9lwTCCNxu1MNbfOQDusCrh+DZ6ZqRvIAl3waxnWJ\nU1qEpDJbjA72dBAfuCrHThC4UIQiBia48/wN8v4kwMcXSAi5gAewTGJtJsdz\nk84nijnFP55oWSidRoJN+d02v+Mup+xFD5LcqEAwWaLdo3neFvvD83lTQoND\nsLo7StkKli80Aq3ixCOojrT7diDwVCLXUg1Pgh7jKf4DgYXG0GMaaEZSc8sw\nD3FPoL77TcHWf4IF0bzFywTecBtcMPQZ6y7t99AGelIIigyHTx2A8Hz4y/ZL\njXfz4bIsgIQP5ojL4y2jBJV4Xz48Lvin0deN1uja9j+Pg9gVvY7JiRWa6CD8\nu2DkO5nDY2P8IlodOnsh9e/opRGnISP9jJ9d3byL/Nw5lJ1zi8r+QEuLyXKG\nicf8\r\n=1zct\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 test-coverage && yarn test-types","test-api":"jest test","test-types":"dtslint types","test-coverage":"jest test --coverage"},"_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.17.5+x64 (linux)","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"14.17.5","dependencies":{"detab":"^2.0.0","astring":"^1.4.0","unified":"^9.2.0","periscopic":"^2.0.0","remark-mdx":"2.0.0-ci.18+3a965dbb","@mdx-js/util":"2.0.0-next.1","remark-parse":"^9.0.0","estree-walker":"^2.0.0","unist-builder":"^2.0.0","mdast-util-to-hast":"^10.1.0","hast-util-to-estree":"^1.1.0","rehype-minify-whitespace":"^4.0.0","remark-squeeze-paragraphs":"^4.0.0"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"remark-gfm":"^1.0.0","remark-math":"^4.0.0","rehype-katex":"^4.0.0","remark-footnotes":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/mdx_2.0.0-ci.18_1630175983749_0.44146023516512667","host":"s3://npm-registry-packages"}},"2.0.0-ci.35":{"name":"@mdx-js/mdx","version":"2.0.0-ci.35","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"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"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"461d5aae593196ab565c9ef1da700413285146c4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-2.0.0-ci.35.tgz","fileCount":9,"integrity":"sha512-AYfeSrhTwVRo6xqaIyMoxvTu1jtfYQ6bGDgTxuWh2HSHTPKi1fcauCG128pFZMkhrgqhM9ODU/6e0S+zHcaJ4A==","signatures":[{"sig":"MEUCIHldpC3PnfqCsC/1UADp6LdhbU5iB1y3iQF9U+/4aCeeAiEA39RjKFtN06vdFANFWzXqm/Ra/hm44TnjZQ7Bk2FpS1E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25825,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhN3xeCRA9TVsSAnZWagAAbRQP+wRvF7yz/ti8zz97Cl2A\nUKH7FkJQLQfNFpxUSBkNWmaVDC0kysDnu9IeoTXwaCvm9PhyD6m0xrVMaQ0X\neLR4aHW4C+eCNCn0PaL+CJCiG1Tj4f454o/pofXteNquyufsZUJHwKsbvjZ1\n7llQNlr4IsHGtHw7nPw3zIB5HEjzp4mOhLXNKLQQ3uLC2W2HNU1ycFhh5Qxw\nPCXbR/pOFtwWLzDficZ2SNufeKU+ZjZIadQ2GleJ+ddNXNmASZxF8Md4j6DE\no18hTXDRa/zFHvMU/GJSpp0IvTXYmzXU24IuG+KlBXWw1gUxOfbBNDo+AigW\n8k8txN3b26jmZkHlfJIm9OOgDpWdqpzeO/MqeA7THmTqFvzYVfJT36AcKY9Y\nIZKspxD82Lk+hqCVGXVXgHa2HNPRlA9tQb0b78Tfzfo49nWpg3Do3JaQdOfN\nJKhEF7Y6idtnbzT6joC41U7z3cqBD20aj17fM0cb43GkNkS+wAT6kVcXWXy7\nOfJeJD1xrp2t+U8ELXWN1lOStRv6tQItTXjUZc2nqCPfQn3sOQ13w74l2/2i\nw9H+F+oxY5TgrovBexigcOTcYkXrNUBbbDQvf4D61d6ncw+FwvQ6TXgM739p\nIBBf61TkDowYrBrnI+mKy2oU69QPG3IYmCZWIvMk0Qy0ZxeEvD/l4gGpXDAC\nrz9D\r\n=Mp7J\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 test-coverage && yarn test-types","test-api":"uvu -r esbuild-register test \"\\.jsx?$\"","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"},"_npmVersion":"lerna/3.22.1/node@v14.17.6+x64 (linux)","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"14.17.6","dependencies":{"detab":"^2.0.0","astring":"^1.4.0","unified":"^9.2.0","periscopic":"^2.0.0","remark-mdx":"2.0.0-ci.35+a3ccc0d9","@mdx-js/util":"2.0.0-next.1","remark-parse":"^9.0.0","estree-walker":"^2.0.0","unist-builder":"^2.0.0","mdast-util-to-hast":"^10.1.0","hast-util-to-estree":"^1.1.0","rehype-minify-whitespace":"^4.0.0","remark-squeeze-paragraphs":"^4.0.0"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"remark-gfm":"^1.0.0","remark-math":"^4.0.0","rehype-katex":"^4.0.0","remark-footnotes":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/mdx_2.0.0-ci.35_1631026270196_0.006201056612503031","host":"s3://npm-registry-packages"}},"2.0.0-ci.39":{"name":"@mdx-js/mdx","version":"2.0.0-ci.39","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"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"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"10522784750957d3e7d98d8946cf974e3f921840","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-2.0.0-ci.39.tgz","fileCount":9,"integrity":"sha512-uWpZVUC+1M9SVAmLi7hnrrpLvDhtwg9WJMBqQ6z0Fdl3e83WGgyJl3R1z/sH/Lftg/jHGb8QTrLLWYLbVtEqVQ==","signatures":[{"sig":"MEUCIQDk0Rvci2zjXdk1meAlWwCPXfiSYsJgPJJND8m3Ebt03AIgQvwogaSAiS1bAZ8S9v9zMLaCSlW8fnbGS4GQmDvmeKw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25825,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhOGOgCRA9TVsSAnZWagAAgvYP/jCzcHJuuucWNJ+Hu52x\n7Dv80enzI9Nj59o93GSEcwMCwaaX/MgQLDfg/OyLWg80U31b6ZXLblGIDzbO\n3ULOOeApnxOd0mMnO+uTWH1gB8wlOjzzR3spcHutIkiP05J8VyHcsIm13Y0D\nHS4wiCFDNsqUSnZJrWt9d1pW42+xQLKgEcGdtIIu+m91hxCmok3tKHKWh66E\ntnZejEOaMvl5ST2S4O5O4IdkpcvlLUdEJgwjYFm44yZfn6gE+R4HPu8zXvui\n0kVO008D+ZIa+8vPB4HbdODcbsB8P8TAJ4QsSfuQwThBHPrr6eMKPleJ+0Dw\niQvN8kW4+5gUynNJRuZrh47kSdCXaXDLl4AIT5+sHOyviw2Q1tky9Smmt52w\nSsDVOtY0yHiedFdc70MnFvq9mxGpFIBRL1WMu9vLcsOrB70sAKuFP6gAbATd\nxsYba1p9yLuWOk1fyQiUgNCo+SnzNAWJF6ifaKYelLclw8xD/xOzCbOycKJn\ngP8IneMfHXNJ7wHF96+sXKeHgLcpIc2ls2agZFROc0zw+dC6hr7tCPW2du3M\nEFbUEIJjHq2Y1IdIDO1mesQ27hf4p09raq1yUscKPhgWbgvsIsd7ExaqfzUy\npzA6zNNgntqz8YBNYZPuV1heDA4ndTVdK1sJkuBZmG7lrrcr6F8HWfhvpAPM\nPSF1\r\n=dDq+\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 test-coverage && yarn test-types","test-api":"uvu -r esbuild-register test \"\\.jsx?$\"","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"},"_npmVersion":"lerna/3.22.1/node@v12.9.0+x64 (linux)","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.9.0","dependencies":{"detab":"^2.0.0","astring":"^1.0.0","unified":"^9.0.0","periscopic":"^2.0.0","remark-mdx":"2.0.0-ci.39+3dc4af96","@mdx-js/util":"2.0.0-next.1","remark-parse":"^9.0.0","estree-walker":"^2.0.0","unist-builder":"^2.0.0","mdast-util-to-hast":"^10.1.0","hast-util-to-estree":"^1.0.0","rehype-minify-whitespace":"^4.0.0","remark-squeeze-paragraphs":"^4.0.0"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"remark-gfm":"^1.0.0","remark-math":"^4.0.0","rehype-katex":"^4.0.0","remark-footnotes":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/mdx_2.0.0-ci.39_1631085472263_0.3223501721065458","host":"s3://npm-registry-packages"}},"2.0.0-ci.40":{"name":"@mdx-js/mdx","version":"2.0.0-ci.40","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"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"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"01e6ac654d6b652f1beec8f182928b4b20a28be1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-2.0.0-ci.40.tgz","fileCount":9,"integrity":"sha512-gV1GL1taLpDRDNwCTFmy+fyZ9zu5oUJFJqojWsNPM8awSpcgmsJxeKTX1MMbViXWf+gwiX2VLDOulfiSX/lfaA==","signatures":[{"sig":"MEUCIEQo607rr2VGq0L8tvJzVgCIyNEh75rLWJxVqw1JrLhKAiEA5V+TqOuMQkPyg3Oo4S9bGAPVd0a90fZ2+59XTN79FpQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25825,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhOJQqCRA9TVsSAnZWagAAKhAP/iLcoQqHDeScQo4SgbiY\nTAA2kBXsKju0NnOtf145XkyHRFmKdoL6kM0jhQ826QfG7Dt2NIv7skuZj171\nLO/saRU7AT9oUx65hPrDPDswsCJYEW14DnHBj9PgIA3qWLmO4Pkt5QNsJfw9\ns8XVHrJOztQndINNBqegcAdtk/6PHLbdRkxmAA/M6M8ZTnNkj0y+dpFL2wGD\nbu2WoQtDcwl4LaEN5kTtWopIPA0yC324h0YDQXdoahxGzjPl81LySI/IYlI/\nmnWo849OKFjIV5OH04kzzMjGFMM3khcEBM933DNIj/yn6nEbrXH9fk61X6gl\nfex+lyqvic3dKsS5KLXjCbKhOrICjpBX6Ywv8oFfsApXSEZGgaGcL5thuEnA\nTNGc7QxLOOFaEHzmJS04eBuvkmztyvA0iLwxB98j89u3100ztld/UU3lCEUv\nJmA+Y+Wirtgxhxx1DZE6ks0smMFbHrFf0YaaeGE7VcarXy8VN1tuHAoGZRkT\n8r8YxmAIw0DUE6PgYrXlT+fomiz2BW0tIFm8z9sUo1E8P4InMZXZKHtxT/v0\n7kehlgxHrK0QoNKfa1S8sdP8CCBQogg323HbTP2FuFWKFRUJmjn29EB/qxPi\n4EYLUFIfJ87eIgvpjWWc+fk1hnWc7GoowhN5w8/N1ZyoBrW/2cjHSKaiPdlo\noTri\r\n=oH8x\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 test-coverage && yarn test-types","test-api":"uvu -r esbuild-register test \"\\.jsx?$\"","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"},"_npmVersion":"lerna/4.0.0/node@v12.9.0+x64 (linux)","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.9.0","dependencies":{"detab":"^2.0.0","astring":"^1.0.0","unified":"^9.0.0","periscopic":"^2.0.0","remark-mdx":"2.0.0-ci.40+f6ca5bf6","@mdx-js/util":"2.0.0-next.1","remark-parse":"^9.0.0","estree-walker":"^2.0.0","unist-builder":"^2.0.0","mdast-util-to-hast":"^10.1.0","hast-util-to-estree":"^1.0.0","rehype-minify-whitespace":"^4.0.0","remark-squeeze-paragraphs":"^4.0.0"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"remark-gfm":"^1.0.0","remark-math":"^4.0.0","rehype-katex":"^4.0.0","remark-footnotes":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/mdx_2.0.0-ci.40_1631097898789_0.3236172622293738","host":"s3://npm-registry-packages"}},"2.0.0-ci.42":{"name":"@mdx-js/mdx","version":"2.0.0-ci.42","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"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"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"343710adb8e8f05ceb5761bf7779ab12ff19d1bd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-2.0.0-ci.42.tgz","fileCount":9,"integrity":"sha512-0qAYrN+WM9Ezya055Q/xnizkU8AWdoFZJvrnST+oaxzeLKLu5X6eTItA5Rtzfzn709wXSg70J3t/crDFEmCt6A==","signatures":[{"sig":"MEUCIGRZkAU7bAYBkOLIgvVza81cKQ9w+vGO3kTxKQT74ZU7AiEA/Qg9do05hg2d48nazSxER6fJK9qwG8iIBbte/TUfuvQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25825,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhPlSLCRA9TVsSAnZWagAAUQgP/2oIyCf5gjMnt5rseTzp\npsPz4fUNkIzLNWJ0TlNgqrCrMbl4y5NmkbbOlSN7/lBky8F+jmFSCb285TQ3\nDwKRqfkGAKoQGG12uK2MCGquR7xJxfr7+heCBDl4oiYUmJkLYaCIVXSTKv1C\nSwdkChLAd6X+ZUZo2bRn2b9bJUTG/hgYWsU3uiH0rxfwIQORZXo8X6wvN14r\nWYn+zIU4bwFg2SBCgzFJ0UrENQYPsp5oTMQRQJ9eofA0rqUHC2EJpr5LexFK\nzeygsyNqkD0ZOc+CnTsrHZRXwihPddHUE52gnq41W6gBIiSFsq8ZUM4z0u8I\nQZKD6naDRbDb9CUWqdKDqepee20RB1LqxEtPUCKRyWUpx/1e1oWFVToDx6o1\nMbYL4LH2tvm5ACmL5y5yPLNmMes5fboGS9CY+5CHij4NE4laSrgJkAITXdsM\nDcX1/VfV6xvJmX4sOKxwujmFJMEM1lbQ+S2eLaFCTmu6F/p5A7mzIztstUGU\nZxUBBrPouqbRN3zLuD3nIyBRGn60LGTP2h5H+tEkd5PQIMdKqdfqBJdWNJwl\na1xWoGkxXyyvlb9uPQdOojIWTkWfqvz9A7Q1Oz61ivv3taySYLrLQIq/3kVP\nArARJKTmpxLx7rjzEhBqX8ZSifG+iij2M92oi+ZGAjaTNGCQ0xGohiLKeuHW\n0zNc\r\n=a2C0\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 test-coverage && yarn test-types","test-api":"uvu -r esbuild-register test \"\\.jsx?$\"","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"},"_npmVersion":"lerna/4.0.0/node@v12.9.0+x64 (linux)","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.9.0","dependencies":{"detab":"^2.0.0","astring":"^1.0.0","unified":"^9.0.0","periscopic":"^2.0.0","remark-mdx":"2.0.0-ci.42+6a27dbd6","@mdx-js/util":"2.0.0-next.1","remark-parse":"^9.0.0","estree-walker":"^2.0.0","unist-builder":"^2.0.0","mdast-util-to-hast":"^10.1.0","hast-util-to-estree":"^1.0.0","rehype-minify-whitespace":"^4.0.0","remark-squeeze-paragraphs":"^4.0.0"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"remark-gfm":"^1.0.0","remark-math":"^4.0.0","rehype-katex":"^4.0.0","remark-footnotes":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/mdx_2.0.0-ci.42_1631474827082_0.058179411927872016","host":"s3://npm-registry-packages"}},"2.0.0-ci.43":{"name":"@mdx-js/mdx","version":"2.0.0-ci.43","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"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"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"cdc9ca965f1e4b9fd4172e0d498c6dab42fe11b2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-2.0.0-ci.43.tgz","fileCount":9,"integrity":"sha512-/5gPMzprzTl9weMKLkXEm4tn22JWaq0VfmEIbkRoM5K64pWc+5eRRG8sVRwovKyZUFmrpHEl0+yZtCMYlItGNg==","signatures":[{"sig":"MEUCIGVdl1Gu8inm77smRN+46sC9XcS/Ts852y5HTbU8EzA9AiEAt5AegfJUBvuda7Y0F8vHRmx7t/eOB15czwloGYqxmKE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25495,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhPlXRCRA9TVsSAnZWagAA+5kP/0Jfb7n4cGMFHhc2AGPU\njh7elFGmO0b3X2V33qzAQlapccHCIH//+Y5Lv1Lm6yQQdxB8ZSHcW2Y8xV9H\n8wDhlRGjn0NGfOqxfGUxyC8SLyFNhGK3bhvHuwl0lZlPDepAGp/TczBuHsHc\ndaFrPGU2ioxxaY6639YzXtdSON3jvNW7ARXHXDvC4KVfAORHnxo9oVanZzfV\nVr83fijFJxj3JLC76Bw6hgUM4maScbKW2c8r/DINdCzPscg383H5ojqRQru4\nB8MxxxWRcZ8k5o/IyKNhBQ6bATP2/2CTkG3ej1gTprOKNSrpkOggVL/3PCKS\nq+WwUKRHDt9OYIRdMFA34huzfSZXvw0aRb4fjUCAmUz7BIn7V+kzsPLqd8pl\ngQgZcVKXt3mlLKUV28FKWYkTtFZLvWtxd2OQuBm5PJTz7VjRVXrAmFDQxWcB\nOEbo4cCrjJybC/NAYJPA6hn79+wizQXXR8N6YAgX2lxQ+5zBVr6gT+iExJZl\nhDIdeightrhWjw8Q9jnEHuL6HRkUwoBlEdMNwpyCz8eKJe8JN/MDIfYBzUfg\niCkGByDcn6QhinXoNgBfkMUqo2oOeIzCsqVv4nBso5DWv8qykfobIIHJQKpX\nsT99eQXB3bdJ0NX4+zE7sJmDg7Vij1PFmlo9gC5yLDZZg6SxAk8T5O2BIJ2+\nllbi\r\n=fR1+\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 test-coverage && yarn test-types","test-api":"uvu -r esbuild-register test \"\\.jsx?$\"","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"},"_npmVersion":"lerna/4.0.0/node@v12.9.0+x64 (linux)","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.9.0","dependencies":{"detab":"^2.0.0","astring":"^1.0.0","unified":"^9.0.0","periscopic":"^2.0.0","remark-mdx":"2.0.0-ci.43+e3d94388","@mdx-js/util":"2.0.0-next.1","remark-parse":"^9.0.0","estree-walker":"^2.0.0","unist-builder":"^2.0.0","mdast-util-to-hast":"^10.1.0","hast-util-to-estree":"^1.0.0","rehype-minify-whitespace":"^4.0.0","remark-squeeze-paragraphs":"^4.0.0"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"remark-gfm":"^1.0.0","remark-math":"^4.0.0","rehype-katex":"^4.0.0","remark-footnotes":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/mdx_2.0.0-ci.43_1631475152890_0.8034719416999618","host":"s3://npm-registry-packages"}},"2.0.0-ci.50":{"name":"@mdx-js/mdx","version":"2.0.0-ci.50","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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":"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"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"c37244fc11f74ab1df6af7b244284b944f55636e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-2.0.0-ci.50.tgz","fileCount":9,"integrity":"sha512-e8g+PFClJ4lnv4RzMIo7spO3qaC+qvWprECTHCaUCbOok6/hxE9pHnmIUPNA55kFXWOCe42tQR100XQJYZFzbw==","signatures":[{"sig":"MEUCIQDznfE3dO4Ts88I+MSBJwL1oZF1SDUJnGa+eVT45kTz8QIgLBhi9LzURZldR9ZEPb+30j1xKjgNWMKZqOcstvCo3O0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25583,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhP15KCRA9TVsSAnZWagAAzgsP+QGoOHFV9LyKRwiAHeSW\nQJvImyaLtsfsy4o/QcqAWoXSX4jskG3cLkJy5jncb+sfeXM+Y89XT1vTS5zh\n4UO0G5CpqkBRD+pgf8P/Mb3PXctuDEqgCVXz2FQX8clKzpixRh5yyWQHB/4i\nvGXhlOYYYN+lvTAc22T+U7FoAa5myjX/NcbFov4LeaOfEPbWX4jngvqrSPcb\nUflcQ2BBRPRJRotEPZkYi8y6mVlMQbS5S7754EHfuXg1JEqJg5TymXDGm5f5\nXlG8xqaAC5djdPW4bSpViB4ubM4R73PH55ar0s2NAgZpBN2ZfOcWbTHiDVoZ\nvTNLFahX3yue0cYkF0iQBI4ZVZURS9Gx1ONLZSlSho9aIRDjT7fe8GQlxBIQ\nx1uun+VoH5Y2UGN5hbV1NU8T+Ivw1PVg9kqc59BdCOlFkj9wIGeoA/xzKq5r\nWLfMEch5prhH3FAvv3jq179W2IacEctl59V59XiTzq6OEbeBGc+Qoyz4uwyO\nKC7dbRCj3jPUczjFkrg/vIRqM7qcgpGKF741U/4bQWlK17LSRP87BCMRTFQ+\ngBjb4TNRALAa1RD4H8y72N0y0+F7mdQ6xh7h0NJNanLW+xYsYOOLtdud1z0J\n9oEy3F1KaSp5R1K6Tw3J0XLbzvxXTnpO28IephEUkf3rk3yBraPiaUFCIceH\nxdnT\r\n=6vBt\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 test-coverage && yarn test-types","test-api":"uvu -r esbuild-register test \"\\.jsx?$\"","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/mdx"},"_npmVersion":"lerna/4.0.0/node@v12.9.0+x64 (linux)","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.9.0","dependencies":{"detab":"^2.0.0","astring":"^1.0.0","unified":"^9.0.0","periscopic":"^2.0.0","remark-mdx":"2.0.0-ci.50+35660847","@mdx-js/util":"2.0.0-next.1","remark-parse":"^9.0.0","estree-walker":"^2.0.0","unist-builder":"^2.0.0","mdast-util-to-hast":"^10.1.0","hast-util-to-estree":"^1.0.0","rehype-minify-whitespace":"^4.0.0","remark-squeeze-paragraphs":"^4.0.0"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"remark-gfm":"^1.0.0","remark-math":"^4.0.0","rehype-katex":"^4.0.0","remark-footnotes":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/mdx_2.0.0-ci.50_1631542857613_0.535328363339391","host":"s3://npm-registry-packages"}},"2.0.0-ci.53":{"name":"@mdx-js/mdx","version":"2.0.0-ci.53","keywords":["mdx","markdown","react","jsx","remark","mdxast"],"author":{"url":"http://johnotander.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/mdx@2.0.0-ci.53","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"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"dist":{"shasum":"37587cc4fdbff0ab3f5d226c8f46220b59b2dc62","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-2.0.0-ci.53.tgz","fileCount":9,"integrity":"sha512-kQ2y7JqpB82NUP5EQ2cHxZwNUTEwpS8fquQXnTDI2RWwxm5hGchr216KZ+oxm6Uhci2HgDlJpzkJaINMzYLjeA==","signatures":[{"sig":"MEQCIAMdHxi9bjJgibok9Vb41LA0hXOX/5tuomjfapqYVyQcAiAjTv6qU2+CV6eFUAXzDegPRCs8ja71QS+QSZmlJoJFiA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25594,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhP4S/CRA9TVsSAnZWagAA1RMP+wWlcU55c+KnXL0ZPcOX\nMbTEOUMrC1s2aIJKISngBkkMtXwriYg6mBE/4wgsNTxqQ0I6hHzdg4PD0mAH\nyXwlt2QlAi0YgD1FgW6UynjIxhGK+7F9HnNh2zqk86AkvXtZ//MhIKck9GfQ\nmrHXeNbEQugEWlWMPBFVc+2apVnrBI8B/lZxh8ETgYeN6cz94fWSTimWhcr8\nWvNMJlBzwczJtdqdM2ToCU5TGDmnASyU3hCF8pWlScg3Bc7+D2joF4VhrzwJ\nxIypkpAgEf0R2bpqjR7FZTJPkUGqjUcXl7a7shbSPTRPZOgVJ00ksJ/XUgCZ\n9P4NHtTLq9ZK6tIPzMocADe2Qg1KcYx0x40H4VBxDYXvRbDu9hIoTjROGodn\nYzo4SWX1YA5ZApwep+RHBAW8EGcQg5JrG64983Rbf3oCjT5Fad7Iftvhl8Mk\naBoW5S2fuuiXYVLO7FcRMfNMi4K7wNX6tvuGhYHV2YQymq6HzjCErcf7JOTx\nLkUDRaDiwlfmZ2BkVAq+5/7CTvfNACUNmdUQ9hotZZ7t05m3TshKY8NJN53u\n/Gzuy1bu7jmVOtNm5vQ3E4CVEwa3+kcQKd4w826//MvYDScmRn5aTiEqdfHZ\nVEHEVmqmyDbQBlyW3JG1FmKB7vUge8g0G3ZMELfAIrHAZrMV5x7xQYbPPIsu\n2fE+\r\n=dGXu\r\n-----END PGP SIGNATURE-----\r\n"},"types":"types/index.d.ts","funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"9a0fe3ae5afaa70ce2382fa9b8cd2630643a6343","scripts":{"test":"yarn test-coverage && yarn test-types","test-api":"uvu -r esbuild-register test \"\\.jsx?$\"","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/mdx"},"_npmVersion":"lerna/4.0.0/node@v12.9.0+x64 (linux)","description":"Parse MDX and transpile to JSX","directories":{},"_nodeVersion":"12.9.0","dependencies":{"detab":"^2.0.0","astring":"^1.0.0","unified":"^9.0.0","periscopic":"^2.0.0","remark-mdx":"2.0.0-next.9","@mdx-js/util":"2.0.0-next.1","remark-parse":"^9.0.0","estree-walker":"^2.0.0","unist-builder":"^2.0.0","mdast-util-to-hast":"^10.1.0","hast-util-to-estree":"^1.0.0","rehype-minify-whitespace":"^4.0.0","remark-squeeze-paragraphs":"^4.0.0"},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"remark-gfm":"^1.0.0","remark-math":"^4.0.0","rehype-katex":"^4.0.0","remark-footnotes":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/mdx_2.0.0-ci.53_1631552703381_0.8627703512152438","host":"s3://npm-registry-packages"}},"2.0.0-rc.1":{"name":"@mdx-js/mdx","version":"2.0.0-rc.1","keywords":["mdx","markdown","jsx","remark","mdxast"],"author":{"url":"https://johno.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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://johno.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"},{"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":"ae0e8ce3499dac5cffff1d4cef57dc9cefba67e5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-2.0.0-rc.1.tgz","fileCount":47,"integrity":"sha512-RMq9uNEDD0XfLcshTeiFX+jkbOyqZucodVDM6xg/mZtLiVeJyz+7K5URpRViWUG97F553mEdyLk/9v9cr4+0DA==","signatures":[{"sig":"MEUCIDwb3Y8X/dM3WZUnqKszBSFs8eMDaY1T7E9gqKt/cF5zAiEA1YafCx8HjSpaiUz4EmB9yJ4Leorylft3TfP8zQPyOcI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":115142},"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 \"lib/**/*.d.ts\" \"test/**/*.d.ts\" \"*.d.ts\" && tsc && type-coverage","prepack":"npm run build","test-api":"uvu test \"^(compile|evaluate)\\.js$\"","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/mdx"},"_npmVersion":"7.23.0","description":"MDX compiler","directories":{},"sideEffects":false,"_nodeVersion":"16.9.0","dependencies":{"vfile":"^5.0.0","astring":"^1.6.0","unified":"^10.0.0","@types/mdx":"^2.0.0","periscopic":"^3.0.0","remark-mdx":"^2.0.0-rc.1","remark-parse":"^10.0.0","estree-walker":"^3.0.0","remark-rehype":"^10.0.0","unist-util-visit":"^4.0.0","@types/estree-jsx":"^0.0.1","hast-util-to-estree":"^2.0.0","markdown-extensions":"^1.0.0","estree-util-build-jsx":"^2.0.0","unist-util-stringify-position":"^3.0.0","estree-util-is-identifier-name":"^2.0.0","unist-util-position-from-estree":"^1.0.0"},"typeCoverage":{"detail":true,"strict":true,"atLeast":100,"ignoreCatch":true,"ignoreFiles":["lib/util/resolve-evaluate-options.{d.ts,js}"]},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"react":"^17.0.0","nanoid":"^3.0.0","preact":"^10.0.0","react-dom":"^17.0.0","rehype-raw":"^6.0.0","remark-gfm":"^3.0.0","source-map":"^0.7.0","remark-math":"^5.0.0","rehype-katex":"^6.0.0","@mdx-js/react":"2.0.0-rc.1","@emotion/react":"^11.0.0","remark-frontmatter":"^4.0.0","source-map-support":"^0.5.0","preact-render-to-string":"^5.0.0","unist-util-remove-position":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/mdx_2.0.0-rc.1_1634663967476_0.15061313620086514","host":"s3://npm-registry-packages"}},"2.0.0-rc.2":{"name":"@mdx-js/mdx","version":"2.0.0-rc.2","keywords":["mdx","markdown","jsx","remark","mdxast"],"author":{"url":"https://johno.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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://johno.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"},{"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":"46f343030539717adffd5f7bcb4f97325b31de7b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-2.0.0-rc.2.tgz","fileCount":55,"integrity":"sha512-hf/kfsQSl/fhFP6s4TRWic7LYDzwsLieD37n90w8CP3U6dsbVhuk+n/OwLSS1pfdb5NJulTV4LQBv4e4h7Y1iw==","signatures":[{"sig":"MEUCIDVsZzhpQpX64uTUt+kqR73OZYgk/YqukccQVmmwppTPAiEAxr9kuhCNa5q9p9Op3QO0HGs0Hx2YfZ4UJIN+CqJRPUg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":131405,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhkshWCRA9TVsSAnZWagAA7i0QAIoE+RAGO/ARDLdTDdi5\nkCDDTz/sChKUF27P6Ddvh1JWpvIScg3Dp0N/hHk8d/6BpgjhKAe62uLIGP6J\nKuXAHQ0XKdLZs7MCJ/CT9Z3OJhu+OM0cMIMvs+mi88ql46rz52Byrkzp7uNN\npBSiXwbmZeIe1rJS8OC4f1MY7xwh4K2VMkIfPRyRF0+Svp1aiaDXMQABRAYD\nwKlsxI35dhjv9IF1t9Y9NrP7K4u+cq/tuWt9mt45aSkl1iiJUNfteIKK20li\nY+J0MCGVQ39sdu87n1kJUxbGn3iCXmEjiKuVj9+Wp7VuHRaDXdUo7owkQ8Ri\np2FvVuGqMTDi7uQsuHqxV9zx3sLL7D6+dkfHExrlG+jZOqRQ76pkzxx5bvoN\nseLwd7NRsd1KIhaGhmbTN0O/MQtgOJSID9nwlnTvnKy35RIgiQLqA2A7EPZC\no7mzjjbnbQRIKUbp7811GHsg/dRyjRNg1aBFBdU73IC3WevEem5WI13nVD2z\nbRMxSszMa4X+N9fw6WYKKD2r9eP1HnOWBzoM4srjZDOiQjv0C3K7+FKkAQql\nVqmr/7gP8XjnQ0ZASA5NyME4xVhy7hMDNeqUZBWMGMuoC7iNGE81cNI1uSAH\n31dgH3rn7CQyLsAlBsTeC8St1zT5u3JO0wZkeXNgB6ykXiSrpwCXfnN7PoxF\nZOew\r\n=aa4a\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","type":"module","types":"index.d.ts","browser":{"./lib/condition.js":"./lib/condition.browser.js"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"bf7deab69996449cb99c2217dff75e65855eb2c1","scripts":{"test":"npm run build && npm run test-coverage","build":"rimraf \"lib/**/*.d.ts\" \"test/**/*.d.ts\" \"*.d.ts\" && tsc && type-coverage","prepack":"npm run build","test-api":"uvu test \"^(compile|evaluate)\\.js$\"","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/mdx"},"_npmVersion":"7.23.0","description":"MDX compiler","directories":{},"sideEffects":false,"_nodeVersion":"16.9.0","dependencies":{"vfile":"^5.0.0","astring":"^1.6.0","unified":"^10.0.0","@types/mdx":"^2.0.0","periscopic":"^3.0.0","remark-mdx":"^2.0.0-rc.2","remark-parse":"^10.0.0","estree-walker":"^3.0.0","remark-rehype":"^10.0.0","unist-util-visit":"^4.0.0","@types/estree-jsx":"^0.0.1","hast-util-to-estree":"^2.0.0","markdown-extensions":"^1.0.0","estree-util-build-jsx":"^2.0.0","unist-util-stringify-position":"^3.0.0","estree-util-is-identifier-name":"^2.0.0","unist-util-position-from-estree":"^1.0.0"},"react-native":{"./lib/condition.js":"./lib/condition.browser.js"},"typeCoverage":{"detail":true,"strict":true,"atLeast":100,"ignoreCatch":true,"ignoreFiles":["lib/util/resolve-evaluate-options.{d.ts,js}"]},"_hasShrinkwrap":false,"readmeFilename":"readme.md","devDependencies":{"react":"^18.0.0-alpha-327d5c484-20211106","nanoid":"^3.0.0","preact":"^10.0.0","react-dom":"^18.0.0-alpha-327d5c484-20211106","rehype-raw":"^6.0.0","remark-gfm":"^3.0.0","source-map":"^0.7.0","remark-math":"^5.0.0","rehype-katex":"^6.0.0","@mdx-js/react":"2.0.0-rc.2","@emotion/react":"^11.0.0","remark-frontmatter":"^4.0.0","source-map-support":"^0.5.0","preact-render-to-string":"^5.0.0","unist-util-remove-position":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/mdx_2.0.0-rc.2_1637009494619_0.40171059414710597","host":"s3://npm-registry-packages"}},"2.0.0":{"name":"@mdx-js/mdx","version":"2.0.0","keywords":["mdx","markdown","jsx","remark","mdxast"],"author":{"url":"https://johno.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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://johno.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"},{"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":"7f270df1e77c46f8338fc32089016b3ea383d023","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-2.0.0.tgz","fileCount":55,"integrity":"sha512-Q/Zv+gdm80qcxpmL/Dtd/b9+UyZjjJUCQeZyywLAQqre648hRYgeGNPu7Bl2hB7M8/WBLXpabQEKW3dmGdDTDQ==","signatures":[{"sig":"MEUCIQC7XSnUVjXGOKg5tTmDFzPTmQBWwMEZhSW+sZQmeGOT/AIgLBf5fZgX3NFfB8qE8FktyS9v1p4kyB5ykl1LrXsE+Bs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":132556,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh+VuSCRA9TVsSAnZWagAAs9wP/iPlYzQyBW3iitQ/dEl8\nBe4tgVo0qJehZvgmtVGXI5fGijZ03xLRMcJ4f1ctaYtx9t1h3b9yuzbTGW5e\nQc5sKhHFaJWhOMFbGY5J4i89Rrv/sh4iCe+KZVKYCJFOWk9sYdf0zwp7abjJ\nYht6woy7cV3hXbqvPT0TtbPAPjWsscR5dkYba4ImNGncj+VtBgNcjz8K4mW8\nBDyL4ux6BWgawQWXYmi0ckblY7Aak2i8cOeHDnOyZ74VNYhcaEmv6TfSEKwC\ngbg0qbvPeBbfZFv+b1zgkV5FcCi74ibvqt4mRv4Zm+nuzWzSpS99dzSGkZfW\nYzEdJ2XZO4xDV/YcX7tpF1VpDaeNAS3FyuFHoyvJj5Udc+gXeaIQ3DzAP4zn\n3FwCDuxo4GCSaJ1wrDFM8KsaBYNf4meHeFypAwkjRnGbmwkU+O0EDyBtPUuH\n60rCGZkzMVLiS5WrVrxpRbq4cEggIPZ+wzIBSEHXQ/u52fdESgHBMOgXDfYq\nbGHVAqwDaih+aCeIbunqhLntPHxkZVEOgcmfYE6CgbvxkM1p+yu9Wojguz5j\nkUhzAt3Q9rEsaMQw42SP1wyMISBc5KCMsRXvAbinhKzcy0zh0DIqBQdvJCdh\n2KAhBtEc0coqXuanXYnSM997tZ3GJySzcM+0yksTHcdX6GQ4KD+j8yAJI4w6\nXueM\r\n=6csm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","type":"module","types":"index.d.ts","browser":{"./lib/condition.js":"./lib/condition.browser.js"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"bf7deab69996449cb99c2217dff75e65855eb2c1","scripts":{"test":"npm run build && npm run test-coverage","build":"rimraf \"lib/**/*.d.ts\" \"test/**/*.d.ts\" \"*.d.ts\" && tsc && type-coverage","prepack":"npm run build","test-api":"uvu test \"^(compile|evaluate)\\.js$\"","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/mdx"},"_npmVersion":"8.3.1","description":"MDX compiler","directories":{},"sideEffects":false,"_nodeVersion":"17.4.0","dependencies":{"vfile":"^5.0.0","astring":"^1.6.0","unified":"^10.0.0","@types/mdx":"^2.0.0","periscopic":"^3.0.0","remark-mdx":"^2.0.0","remark-parse":"^10.0.0","estree-walker":"^3.0.0","remark-rehype":"^10.0.0","unist-util-visit":"^4.0.0","@types/estree-jsx":"^0.0.1","hast-util-to-estree":"^2.0.0","markdown-extensions":"^1.0.0","estree-util-build-jsx":"^2.0.0","unist-util-stringify-position":"^3.0.0","estree-util-is-identifier-name":"^2.0.0","unist-util-position-from-estree":"^1.0.0"},"react-native":{"./lib/condition.js":"./lib/condition.browser.js"},"typeCoverage":{"detail":true,"strict":true,"atLeast":100,"ignoreCatch":true,"ignoreFiles":["lib/util/resolve-evaluate-options.{d.ts,js}"]},"_hasShrinkwrap":false,"devDependencies":{"react":"^18.0.0-beta-24dd07bd2-20211208","nanoid":"^3.0.0","preact":"^10.0.0","react-dom":"^18.0.0-beta-24dd07bd2-20211208","rehype-raw":"^6.0.0","remark-gfm":"^3.0.0","source-map":"^0.7.0","remark-math":"^5.0.0","rehype-katex":"^6.0.0","@mdx-js/react":"^2.0.0","@emotion/react":"^11.0.0","remark-frontmatter":"^4.0.0","source-map-support":"^0.5.0","preact-render-to-string":"^5.0.0","unist-util-remove-position":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/mdx_2.0.0_1643731858598_0.13530133906547226","host":"s3://npm-registry-packages"}},"2.1.0":{"name":"@mdx-js/mdx","version":"2.1.0","keywords":["mdx","markdown","jsx","remark","mdxast"],"author":{"url":"https://johno.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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://johno.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"},{"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":"a984cee27a378619a82d193288031a7b83a54b26","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-2.1.0.tgz","fileCount":55,"integrity":"sha512-AuZGNLSGrytOd7a81E2SsWAOYg/eV5I51BlUPc11PPmPwhpovu7mwfyQ8PH1jxhdH0Is6aRtXHERuDxon0TluQ==","signatures":[{"sig":"MEYCIQCmUAH+fWmrArARZAdZR4DwNPDTTyT4friWj89coyxngwIhANoA7gU2frAcL3suWXX939EREzBKtznRd8zEjKGTMrrL","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":133619,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiMcBDACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpG8w/9EzDJ8BErGf3db2o4KebY8ehlAiwtXxQOUPieES9rTODKNUW+\r\n5IeImmM40+6S/RbEXJedXv1VgVTX0M0DeJnYKiIVTRy92/y3IulL4/rXsMdQ\r\nFf7kU+uCOWrFMwX7+IJi9sNfFTNwX4Z6nBGCBZjGvroh3ulbFptj+9ED3jDL\r\n9MXabhFwe7A0jSd0GDtHmvU/6/LVH05Gh7P1NNDXp1urQJwEboT6RAYsXB5F\r\nnfF0zvDFBUREz8O17vMN1KF5d6PiGwVfliS7C5i7JemK5IpH7wVsNsdisI9U\r\n9FXaQilSWKI/R0vCidz4Lt1uKl+9Yn0DCP+aGKSBbWgWWTZ/d0szO0ZWuFIv\r\n2sR4/f1ATMzo+JMHdKZwyggryUQKV5Sb0DtSedjlaLnfWwB2P/Gwgg5v4i5T\r\nbOhRo1qU60hrno36icGEGAV+XPQxYpgtKD52FCLaxmHTn8PRaXcJyho2y2rh\r\nmfLSmxjb9jCLNHhAV6cGLXv+qLXz5vIgaBunWksiJPxiQHJ95kUQx6/XJu6t\r\nXiv3h2QTaoNdmRdksBYWuoT0JQy1LQjTwLSY4YwXD2mEHJkoUbjv4A8N8fW8\r\noH7gJsdr1KVUbxd/bNSeaMVKjRJcuT/FiRoEfM+iE3XVX/QhqY/yus6iG1c/\r\nZNUz/iUvLXu0vwZImOfyoZNr8YokjQ7PPN8=\r\n=Ws+G\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","type":"module","types":"index.d.ts","browser":{"./lib/condition.js":"./lib/condition.browser.js"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"bf7deab69996449cb99c2217dff75e65855eb2c1","scripts":{"test":"npm run build && npm run test-coverage","build":"rimraf \"lib/**/*.d.ts\" \"test/**/*.d.ts\" \"*.d.ts\" && tsc && type-coverage","prepack":"npm run build","test-api":"uvu test \"^(compile|evaluate)\\.js$\"","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/mdx"},"_npmVersion":"8.5.1","description":"MDX compiler","directories":{},"sideEffects":false,"_nodeVersion":"17.4.0","dependencies":{"vfile":"^5.0.0","astring":"^1.6.0","unified":"^10.0.0","@types/mdx":"^2.0.0","periscopic":"^3.0.0","remark-mdx":"^2.0.0","remark-parse":"^10.0.0","estree-walker":"^3.0.0","remark-rehype":"^10.0.0","unist-util-visit":"^4.0.0","@types/estree-jsx":"^0.0.1","hast-util-to-estree":"^2.0.0","markdown-extensions":"^1.0.0","estree-util-build-jsx":"^2.0.0","unist-util-stringify-position":"^3.0.0","estree-util-is-identifier-name":"^2.0.0","unist-util-position-from-estree":"^1.0.0"},"react-native":{"./lib/condition.js":"./lib/condition.browser.js"},"typeCoverage":{"detail":true,"strict":true,"atLeast":100,"ignoreCatch":true,"ignoreFiles":["lib/util/resolve-evaluate-options.{d.ts,js}"]},"_hasShrinkwrap":false,"devDependencies":{"react":"^18.0.0-beta-24dd07bd2-20211208","nanoid":"^3.0.0","preact":"^10.0.0","react-dom":"^18.0.0-beta-24dd07bd2-20211208","rehype-raw":"^6.0.0","remark-gfm":"^3.0.0","source-map":"^0.7.0","remark-math":"^5.0.0","rehype-katex":"^6.0.0","@mdx-js/react":"^2.0.0","@emotion/react":"^11.0.0","remark-frontmatter":"^4.0.0","source-map-support":"^0.5.0","preact-render-to-string":"^5.0.0","unist-util-remove-position":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/mdx_2.1.0_1647427651522_0.4776491484568284","host":"s3://npm-registry-packages"}},"2.1.1":{"name":"@mdx-js/mdx","version":"2.1.1","keywords":["mdx","markdown","jsx","remark","mdxast"],"author":{"url":"https://johno.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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://johno.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"},{"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":"6d8b9b75456d7685a52c3812b1c3e4830c7458fb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-2.1.1.tgz","fileCount":55,"integrity":"sha512-SXC18cChut3F2zkVXwsb2no0fzTQ1z6swjK13XwFbF5QU/SFQM0orAItPypSdL3GvqYyzVJtz8UofzJhPEQtMw==","signatures":[{"sig":"MEUCIH+mIMomkgZnxGyZxCWgsas8rtj4tqoWvt8cnVcunLOYAiEAtO9KK6MHOM7pG1qmwW4NDl0M+ioT8cmhkn0vLpdzal4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":134154,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiRd7tACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoGgQ/9GUG74rxhNBcAMGn+BXx8QfjwTNzXitV7PFqKiK+PijLthss2\r\nlY89JtGYb5RSvzPRu5AmVgEjnpjfOxcn7DyC+b0YyWyZAVJoYtKE8CxmkIn/\r\ncTgXSNwZ46UyOh0Idg4hTjFzOZ46LkHAYVr1NMNxU3KVoRViF8H7Fl1FE5M9\r\nnmAHbIOAW7GfM30VoqyHH0/AW41tOStpuvVmihpUgMmhmWmMsWhsjYy6vxhE\r\nRDlrzzgyZLmRjHW/qj/u84KDurztK8D+m/qLwgYEHIdJcSfoHuu3S/6kRqDP\r\n4vp4SDt4Iih5KeqEPOlk1QSCH2ejlfjur9w9ra0r51ME9rcCu3eWlskZPrZD\r\njQe8T4Sv/WuwOxuqYIniSVEGyBaTKmwL/MVv5E0C4QaS3iccBwStmBcgefTF\r\n+PxIjOi+U0jtsPoVZvddEQquOvWv3v0d/tzuESi1usgLqbK/XflWoPWlVw+C\r\nJqOoRF2Mf/LDWUHJnf5PZHR4CjIyIVK3+0yh9jwPuCwXFr0o0l54aB6Ekjzu\r\nqQm1qIAWIQ+PGD3aOfXkSCHNhvfjNIQ/yWoRy4pOrGT/BhiLnr4tVv3pbNK4\r\nS4O2gO1GZ/TsYzd5+fH0owx+9v5F5I7C5RfFyms44kG4qBfK/PjfQT1DkqMn\r\nmjgHo7k9UoLvn2SyhLPKFEjEQ/nNvCn9IzU=\r\n=DQLU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","type":"module","types":"index.d.ts","browser":{"./lib/condition.js":"./lib/condition.browser.js"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"bf7deab69996449cb99c2217dff75e65855eb2c1","scripts":{"test":"npm run build && npm run test-coverage","build":"rimraf \"lib/**/*.d.ts\" \"test/**/*.d.ts\" \"*.d.ts\" && tsc && type-coverage","prepack":"npm run build","test-api":"uvu test \"^(compile|evaluate)\\.js$\"","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/mdx"},"_npmVersion":"8.5.5","description":"MDX compiler","directories":{},"sideEffects":false,"_nodeVersion":"17.4.0","dependencies":{"vfile":"^5.0.0","astring":"^1.6.0","unified":"^10.0.0","@types/mdx":"^2.0.0","periscopic":"^3.0.0","remark-mdx":"^2.0.0","remark-parse":"^10.0.0","estree-walker":"^3.0.0","remark-rehype":"^10.0.0","unist-util-visit":"^4.0.0","@types/estree-jsx":"^0.0.1","hast-util-to-estree":"^2.0.0","markdown-extensions":"^1.0.0","estree-util-build-jsx":"^2.0.0","unist-util-stringify-position":"^3.0.0","estree-util-is-identifier-name":"^2.0.0","unist-util-position-from-estree":"^1.0.0"},"react-native":{"./lib/condition.js":"./lib/condition.browser.js"},"typeCoverage":{"detail":true,"strict":true,"atLeast":100,"ignoreCatch":true,"ignoreFiles":["lib/util/resolve-evaluate-options.{d.ts,js}"]},"_hasShrinkwrap":false,"devDependencies":{"react":"^18.0.0-beta-24dd07bd2-20211208","nanoid":"^3.0.0","preact":"^10.0.0","react-dom":"^18.0.0-beta-24dd07bd2-20211208","rehype-raw":"^6.0.0","remark-gfm":"^3.0.0","source-map":"^0.7.0","remark-math":"^5.0.0","rehype-katex":"^6.0.0","@mdx-js/react":"^2.0.0","@emotion/react":"^11.0.0","remark-frontmatter":"^4.0.0","source-map-support":"^0.5.0","preact-render-to-string":"^5.0.0","unist-util-remove-position":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/mdx_2.1.1_1648746221596_0.24098174710522313","host":"s3://npm-registry-packages"}},"2.1.2":{"name":"@mdx-js/mdx","version":"2.1.2","keywords":["mdx","markdown","jsx","remark","mdxast"],"author":{"url":"https://johno.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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://johno.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"},{"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":"d13fb811809fda37967dc0eebd5bb36adce89a81","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-2.1.2.tgz","fileCount":55,"integrity":"sha512-ASN1GUH0gXsgJ2UD/Td7FzJo1SwFkkQ5V1i9at5o/ROra7brkyMcBsotsOWJWRzmXZaLw2uXWn4aN8B3PMNFMA==","signatures":[{"sig":"MEUCIQDKlwqPx7tFVnRb5/xDEkKpPxg4Rxj+OCMO5r+7mtq38wIgTk0JmfJJ0dk22X4jjp715Hcr5/7Zff09wjIyn5chCd8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":135220,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJircYHACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrhZA/7BGQVrYCWeibB6HWBKh+sXXbE2ubwz6Z7zp/rvZWyJk0btU4j\r\nVnI4xQ854/eYePXfptdJ7xADVknCXVV4aKlNh9nzpjKK9EfpHwNyIB3sjPIT\r\n+0B45sbJzPI/anY3ZsJWThCr3XnLOmzmKUMJmfIr8hiY1F2x4CGvezrSWLwY\r\nUkTqO+R74YuMZSHEnSF3Tf5jv8JFthXPZhcklVCSEjpv5deGnRQ2BbumkCjN\r\ncLtu5DgdDbav5FuOiw31bvpAvDuMTbKwaGIrdYBlIJbu5tyD/GY8V+fAOyyQ\r\nEIWaFaP4dVmbj30R4f8jGJe59H5KhEyqhS8fuA1KFZSKl7K/aZ/YFdsnvPwj\r\nh8RVb7sKzxVvX7G0ijgu5bwCJSkxHJfeVkTx93PtGF49V6e3oRbnw579nLcu\r\nLZp0oPYOz9hh5/hDhU96kZQwF2QOt/5vc/Q22YX8A8PBD59+Z+7ljXIbevt2\r\nGyTJbXX1XS5jQaR+hqfsVTwl+d9abn4S6mTB5JRczP13ZFQ6CEeiUrUoOoQ1\r\nFtO73uck7JSAJOK8J98n6rohUhKCCg0uAdkmgk94gWWg1dpaTRTUFz2WrRod\r\ntCYRm4bdJ9b29ObKw+jXnRXt4c6b6xKnvxvpnMZJ7/C11YMUB5pbVQrO6N2a\r\n6U1GFIUv1h2Y4AyaNi+hs4xVzaKKPLpSCPo=\r\n=j9QM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","type":"module","types":"index.d.ts","browser":{"./lib/condition.js":"./lib/condition.browser.js"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"bf7deab69996449cb99c2217dff75e65855eb2c1","scripts":{"test":"npm run build && npm run test-coverage","build":"rimraf \"lib/**/*.d.ts\" \"test/**/*.d.ts\" \"*.d.ts\" && tsc && type-coverage","prepack":"npm run build","test-api":"uvu test \"^(compile|evaluate)\\.js$\"","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/mdx"},"_npmVersion":"8.9.0","description":"MDX compiler","directories":{},"sideEffects":false,"_nodeVersion":"18.2.0","dependencies":{"vfile":"^5.0.0","astring":"^1.6.0","unified":"^10.0.0","@types/mdx":"^2.0.0","periscopic":"^3.0.0","remark-mdx":"^2.0.0","remark-parse":"^10.0.0","estree-walker":"^3.0.0","remark-rehype":"^10.0.0","unist-util-visit":"^4.0.0","@types/estree-jsx":"^0.0.1","hast-util-to-estree":"^2.0.0","markdown-extensions":"^1.0.0","estree-util-build-jsx":"^2.0.0","unist-util-stringify-position":"^3.0.0","estree-util-is-identifier-name":"^2.0.0","unist-util-position-from-estree":"^1.0.0"},"react-native":{"./lib/condition.js":"./lib/condition.browser.js"},"typeCoverage":{"detail":true,"strict":true,"atLeast":100,"ignoreCatch":true,"ignoreFiles":["lib/util/resolve-evaluate-options.{d.ts,js}"]},"_hasShrinkwrap":false,"devDependencies":{"react":"^18.0.0","nanoid":"^4.0.0","preact":"^10.0.0","react-dom":"^18.0.0","rehype-raw":"^6.0.0","remark-gfm":"^3.0.0","source-map":"^0.7.0","remark-math":"^5.0.0","rehype-katex":"^6.0.0","@mdx-js/react":"^2.0.0","@emotion/react":"^11.0.0","remark-frontmatter":"^4.0.0","source-map-support":"^0.5.0","preact-render-to-string":"^5.0.0","unist-util-remove-position":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/mdx_2.1.2_1655555591515_0.34210198289947424","host":"s3://npm-registry-packages"}},"2.1.3":{"name":"@mdx-js/mdx","version":"2.1.3","keywords":["mdx","markdown","jsx","remark","mdxast"],"author":{"url":"https://johno.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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://johno.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"},{"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":"d5821920ebe546b45192f4c7a64dcc68a658f7f9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-2.1.3.tgz","fileCount":55,"integrity":"sha512-ahbb47HJIJ4xnifaL06tDJiSyLEy1EhFAStO7RZIm3GTa7yGW3NGhZaj+GUCveFgl5oI54pY4BgiLmYm97y+zg==","signatures":[{"sig":"MEYCIQC2sbla58z/IYInRlMO7BXsZo/ql2sQMbNPOgnacR29qAIhAK2WBADACHd3hgA+Bimvuof5eqMC+qxhg2eRdwFqVFQJ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":123602,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi/TetACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoQFQ//atxLl6Ob/Bxve96kLjAWzABKd7NFWRlmPJyckfrLv74oru7b\r\nL8AHkP0US751r6zbbsrNCQVQZDhYeKOK+c9wZe+9X7iIgDWkH0pgd3sqN8nR\r\nObeFlUbcX7zHV6xVx+Qcbnd8+A46K5BxMUT3buSDsAurC5Z4jJL4vExs3cbh\r\nJ5yS2xlgJBlPHftkjBQMWUonCIEcxjoZAv7fqi7YnK27vTtNuEzaZ7iumRNy\r\nPE2aDKfmJyULvXufPOcf6cox1W+PBd5VPQPOnjlFUPkr5tUCGDQt6M/bvDRT\r\nxP/9cC7z179odBPal88gIxcnwXfjH5yCZlrNV6zmb/UqhdNigblY12UzezKV\r\ny8r5zczKtklzS+Mu7o8Gf04L7M0wQj9P1RdL4iSlL04AV4QDv5xa7m6X8LWL\r\n5Hp4/eee9AtFF7V/U8l+SrBsJUuLun20DdTorIaBqDGGOE67GZi5RNurgNPj\r\nuwwIK82t3npYADNFVswhKJEbs3Ti6CEOXsYQE7K72CJ4dxurAsDoh8ACtHrm\r\ndcPF/aZW3huPlOUFh9vT3QwzbWJg4tae0Sg4hVrjgV7HuI+vQ+5tj4k7S4A4\r\nENsgsaeA0wMp5NLbSipcYKk/o5rY6LDoDtKn42tQ0yUg8KCdvht6xox0pCI5\r\nwf1bWrChOat4TTScvbPQtpidZMuO6GGNoec=\r\n=Qiys\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","type":"module","types":"index.d.ts","browser":{"./lib/condition.js":"./lib/condition.browser.js"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"bf7deab69996449cb99c2217dff75e65855eb2c1","scripts":{"test":"npm run build && npm run test-coverage","build":"rimraf \"lib/**/*.d.ts\" \"test/**/*.d.ts\" \"*.d.ts\" && tsc && type-coverage","prepack":"npm run build","test-api":"uvu test \"^(compile|evaluate)\\.js$\"","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/mdx"},"_npmVersion":"8.13.2","description":"MDX compiler","directories":{},"sideEffects":false,"_nodeVersion":"18.2.0","dependencies":{"vfile":"^5.0.0","unified":"^10.0.0","@types/mdx":"^2.0.0","periscopic":"^3.0.0","remark-mdx":"^2.0.0","remark-parse":"^10.0.0","estree-walker":"^3.0.0","remark-rehype":"^10.0.0","unist-util-visit":"^4.0.0","@types/estree-jsx":"^1.0.0","estree-util-to-js":"^1.1.0","hast-util-to-estree":"^2.0.0","markdown-extensions":"^1.0.0","estree-util-build-jsx":"^2.0.0","unist-util-stringify-position":"^3.0.0","estree-util-is-identifier-name":"^2.0.0","unist-util-position-from-estree":"^1.0.0"},"react-native":{"./lib/condition.js":"./lib/condition.browser.js"},"typeCoverage":{"detail":true,"strict":true,"atLeast":100,"ignoreCatch":true,"ignoreFiles":["lib/util/resolve-evaluate-options.{d.ts,js}"]},"_hasShrinkwrap":false,"devDependencies":{"react":"^18.0.0","nanoid":"^4.0.0","preact":"^10.0.0","react-dom":"^18.0.0","rehype-raw":"^6.0.0","remark-gfm":"^3.0.0","source-map":"^0.7.0","remark-math":"^5.0.0","rehype-katex":"^6.0.0","@mdx-js/react":"^2.0.0","@emotion/react":"^11.0.0","remark-frontmatter":"^4.0.0","source-map-support":"^0.5.0","preact-render-to-string":"^5.0.0","unist-util-remove-position":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/mdx_2.1.3_1660762029438_0.23127460258890875","host":"s3://npm-registry-packages"}},"2.1.4":{"name":"@mdx-js/mdx","version":"2.1.4","keywords":["mdx","markdown","jsx","remark","mdxast"],"author":{"url":"https://johno.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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://johno.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"},{"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":"547c99c459d8ad89138bdc2bc104fffdbc5ea4bd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-2.1.4.tgz","fileCount":55,"integrity":"sha512-47drTDRr6QiMx1SXIoIyjTL8izoC+IBP5nmOLTUbuFJZYXdV9TPLuZJic0i96FGKfL7DpRN4WylpsxOVlpufMg==","signatures":[{"sig":"MEQCIHa62C6qiTOMbR8taEe6mjw7tg2DLlJtzRPf14A1TPK/AiA/K8JLqPHWSfqETWDWmB8bjzvLi4Ew55AsBGjc5tIS2w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":123602,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjPxmBACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmonBA//dlOcC6bSCQLqxpZExLOcar1r1lHc+sHxf5RDHGKvQmzV8yYZ\r\n2tMmzT39FfnpPOt7z9p8a1+vYLV4zhf8d+5oilm5NtPCDrtE6G1ji5pg9C/a\r\njl/SXgSUkp/rfwPFT/+hELjLIMExGz6FhsMGUMf+G8W4kXg7oXnh5serm9v7\r\nhdJ9nt/gaLCoFYDtkjAH2K27bW0kL+uXM44ojZ6nykq6ybnuTTFvgKkgWNXZ\r\nmS27Km7SJ0p6B8AL+dOe1MYoGQAeAkhSDOGBfS3ZntVN421zyXWNcdEgUFgK\r\nVCsIGCPwmWbQDHHIF1ogOIxbLRKi675kQ+DEizQcItlWttxgLmyrj8XWApGq\r\nbBecg9V95F0N7w9kPjJ6tztd+NDiYyVnozTNo67VXYJgAJps0ynie7gZwq0Q\r\nX5klKx6HC3vmY56gg4cNp1QKPMAPFOQTfXlPfwABxw4W2+wXkBvOMKlN0SkK\r\npfBA4BCAbjy0L6htjul+nD9eYG3iF7u3z84LTbtNWCLN9VZyfIQ+n4GG7OZb\r\nWdnH/jIx248dizX/Nhfk2d1E9i4EtHPWtEFlW4DJAIM6F5aYht9lUBfvTnEz\r\nlHn3jYRbDk/uWNVIwjM/5UHeVGjED4MLbKgRH6KMpYUsnNVny9I4KdcVeb5v\r\n56gQ9d6T1I81ez5OKL6R0FFVyTAM2q+3bTs=\r\n=D+dx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","type":"module","types":"index.d.ts","browser":{"./lib/condition.js":"./lib/condition.browser.js"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"bf7deab69996449cb99c2217dff75e65855eb2c1","scripts":{"test":"npm run build && npm run test-coverage","build":"rimraf \"lib/**/*.d.ts\" \"test/**/*.d.ts\" \"*.d.ts\" && tsc && type-coverage","prepack":"npm run build","test-api":"uvu test \"^(compile|evaluate)\\.js$\"","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/mdx"},"_npmVersion":"8.19.1","description":"MDX compiler","directories":{},"sideEffects":false,"_nodeVersion":"18.2.0","dependencies":{"vfile":"^5.0.0","unified":"^10.0.0","@types/mdx":"^2.0.0","periscopic":"^3.0.0","remark-mdx":"^2.0.0","remark-parse":"^10.0.0","estree-walker":"^3.0.0","remark-rehype":"^10.0.0","unist-util-visit":"^4.0.0","@types/estree-jsx":"^1.0.0","estree-util-to-js":"^1.1.0","hast-util-to-estree":"^2.0.0","markdown-extensions":"^1.0.0","estree-util-build-jsx":"^2.0.0","unist-util-stringify-position":"^3.0.0","estree-util-is-identifier-name":"^2.0.0","unist-util-position-from-estree":"^1.0.0"},"react-native":{"./lib/condition.js":"./lib/condition.browser.js"},"typeCoverage":{"detail":true,"strict":true,"atLeast":100,"ignoreCatch":true,"ignoreFiles":["lib/util/resolve-evaluate-options.{d.ts,js}"]},"_hasShrinkwrap":false,"devDependencies":{"react":"^18.0.0","nanoid":"^4.0.0","preact":"^10.0.0","react-dom":"^18.0.0","rehype-raw":"^6.0.0","remark-gfm":"^3.0.0","source-map":"^0.7.0","remark-math":"^5.0.0","rehype-katex":"^6.0.0","@mdx-js/react":"^2.0.0","@emotion/react":"^11.0.0","remark-frontmatter":"^4.0.0","source-map-support":"^0.5.0","preact-render-to-string":"^5.0.0","unist-util-remove-position":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/mdx_2.1.4_1665079681036_0.9383478893454533","host":"s3://npm-registry-packages"}},"2.1.5":{"name":"@mdx-js/mdx","version":"2.1.5","keywords":["mdx","markdown","jsx","remark","mdxast"],"author":{"url":"https://johno.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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://johno.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"},{"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":"577937349fd555154382c2f805f5f52834a64903","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-2.1.5.tgz","fileCount":55,"integrity":"sha512-zEG0lt+Bl/r5U6e0TOS7qDbsXICtemfAPquxWFsMbdzrvlWaqMGemLl+sjVpqlyaaiCiGVQBSGdCk0t1qXjkQg==","signatures":[{"sig":"MEUCIDavjUadXEkB8LQLbrqqzDJeElTT0PoNnx9+O5mcJU/2AiEAsIb+xrZu9niuB5zecD5fFMlCQsrPBinvw8KYQhfSZBw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":123850,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjRaW3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqLwg//Y70OQSYPOT16Y3Y0RQ1ZUw4Ck1CA3yHyOguSrwaZE3pKewAs\r\njiKeQfmyFlibZtrqQQ4I2sVujdgT+svaQewXFyzZt8y+DxltVJCs2eHVhODO\r\nu1AUvhuQGra7U2XfMn8QA33yAsTYCzih+n3sj6qMlI/F6rKWsY118VqwE0aN\r\nfS7bfLy+VqyMZEC2/Vq2R8N1scQvon74MUNpguA1/uBluqql7ArHqOOZPIui\r\n/8K7PK2WceC1q+TcWIn68M/qs9Q5Xq9yzM8OVuQ6+ItOGs7uv+kL9UBMyIBh\r\ngMHwULjWKz2gdQlD4QzxLnHYgbJ97NbpnS/sbjst3c7EygUKO/wXSkczgFfd\r\nTh45LTqz+ASS5NQLL/GTlF8uHvBBwJ6A8ZiAiAa/HFl7hwMhwrjPmKclzZGi\r\nhBHQ4pS7D/uqhzRGBSzqrNJTPhywjnP1at8Qp6A4UdqJ8sx0eX2QLi9Ee66c\r\nFqaRQwVIPCmJNGwkD08RU9/dhgJUQDVcHpjeyW5lUMd63AiloPKEWJwpLl7u\r\nsMvZ2i7VD4caTVpzmFIPoqKgy8kv8XE75RG4pTbwLNbaaJHCWwNEHvs2K4X3\r\ncpVtPesWVrwvry0dwauAbrnqJbCgGB6/JlUSd9KOeRvX7AxvD46kJPVMpmX5\r\ngIC+VS6yVBNA7juzjOIFECSoN/by86GarSw=\r\n=mH82\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","type":"module","types":"index.d.ts","browser":{"./lib/condition.js":"./lib/condition.browser.js"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"bf7deab69996449cb99c2217dff75e65855eb2c1","scripts":{"test":"npm run build && npm run test-coverage","build":"rimraf \"lib/**/*.d.ts\" \"test/**/*.d.ts\" \"*.d.ts\" && tsc && type-coverage","prepack":"npm run build","test-api":"uvu test \"^(compile|evaluate)\\.js$\"","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/mdx"},"_npmVersion":"8.19.1","description":"MDX compiler","directories":{},"sideEffects":false,"_nodeVersion":"18.2.0","dependencies":{"vfile":"^5.0.0","unified":"^10.0.0","@types/mdx":"^2.0.0","periscopic":"^3.0.0","remark-mdx":"^2.0.0","remark-parse":"^10.0.0","estree-walker":"^3.0.0","remark-rehype":"^10.0.0","unist-util-visit":"^4.0.0","@types/estree-jsx":"^1.0.0","estree-util-to-js":"^1.1.0","hast-util-to-estree":"^2.0.0","markdown-extensions":"^1.0.0","estree-util-build-jsx":"^2.0.0","unist-util-stringify-position":"^3.0.0","estree-util-is-identifier-name":"^2.0.0","unist-util-position-from-estree":"^1.0.0"},"react-native":{"./lib/condition.js":"./lib/condition.browser.js"},"typeCoverage":{"detail":true,"strict":true,"atLeast":100,"ignoreCatch":true,"ignoreFiles":["lib/util/resolve-evaluate-options.{d.ts,js}"]},"_hasShrinkwrap":false,"devDependencies":{"react":"^18.0.0","nanoid":"^4.0.0","preact":"^10.0.0","react-dom":"^18.0.0","rehype-raw":"^6.0.0","remark-gfm":"^3.0.0","source-map":"^0.7.0","remark-math":"^5.0.0","rehype-katex":"^6.0.0","@mdx-js/react":"^2.0.0","@emotion/react":"^11.0.0","remark-frontmatter":"^4.0.0","source-map-support":"^0.5.0","preact-render-to-string":"^5.0.0","unist-util-remove-position":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/mdx_2.1.5_1665508791249_0.9687498102172734","host":"s3://npm-registry-packages"}},"2.2.0":{"name":"@mdx-js/mdx","version":"2.2.0","keywords":["mdx","markdown","jsx","remark","mdxast"],"author":{"url":"https://johno.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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://johno.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"},{"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":"9057f84525ccee2379d769dacd798ca13d2610d7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-2.2.0.tgz","fileCount":55,"integrity":"sha512-JT81QNOAVZ519X6P0MvcbLQWx3GkKgtHnrpAGVlaHvAW8eHGG9m/V/3qLDaVqMKOJrggtDzB6pXN53ilICQQCw==","signatures":[{"sig":"MEQCIH1pldlp3Yd+4x2mO6f4OPdtQmWAoeRGSzxPviwoLqrhAiAnerwfO66wufVVp/9KGBB9NL/f3i4fG7jMaX6PGkXNPw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":124362,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjmYosACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpZOw//XzPps5MFSFZ4oj96U1FStDC9uf9Wi8RADmnsvTe5E1C6tI/a\r\nT2Q4hw8GuaV59SCm3qLxDeDCHO0Fn2SmRRoJULN4uiiMFnVkkbD3cm7UAm3l\r\nOyXULVDMNrlLVcvHxNLQ6pPfJtIOcLFq0Sgv+G3b7QWPlfxYAHFZZvXdzfe6\r\nsgqblToOnHLAeRw9y5hAq409cjejn35ElJRfE7BMHt1DJUd8p7P+4vy+3EDW\r\nZitzsr0wxsuWBRib5L/z9EGV0rJSMxPpYoVKT83uVTXou/lOHE07yfHrE+uv\r\nPJRBg4u5oVU+WRMimXlT8JGBR5rC69ZKhHRZEtm8Tfliym1eKqsLgzsIb+HS\r\nNMbJU4h7i/J/vsHbtU+/DMGZczMU7Cd1fvx4YtwptfT6NgN/tRZGTqWaxQgj\r\nbxOztuYSlwoLG3bR4qJlBFz5VXNDr/QaI/+/DUsW6sA39xwH9W3YALUCj+L1\r\nIOci3P6qb1rSUVEaeBLJScIxmRkmt1acpcaMp+Xc0ra8gmshk32nuv/ZehZp\r\nN8YedfevUChqaEzR5jWnFXVvNYEcZbEBTRpPFn7w7Ej9mTrveTT50rfoLmlt\r\nVujzwbFVNud9lntU1Av1mwGqs93njC+7kJVGQnEuJB2TrWs9I/f5sVYFJOaD\r\n68+s9siFCK3AITSWOEA4LuYQ0d4RhRkdEsI=\r\n=joZs\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","type":"module","types":"index.d.ts","browser":{"./lib/condition.js":"./lib/condition.browser.js"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"bf7deab69996449cb99c2217dff75e65855eb2c1","scripts":{"test":"npm run build && npm run test-coverage","build":"rimraf \"lib/**/*.d.ts\" \"test/**/*.d.ts\" \"*.d.ts\" && tsc && type-coverage","prepack":"npm run build","test-api":"uvu test \"^(compile|evaluate)\\.js$\"","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/mdx"},"_npmVersion":"8.19.2","description":"MDX compiler","directories":{},"sideEffects":false,"_nodeVersion":"19.0.0","dependencies":{"vfile":"^5.0.0","unified":"^10.0.0","@types/mdx":"^2.0.0","periscopic":"^3.0.0","remark-mdx":"^2.0.0","remark-parse":"^10.0.0","estree-walker":"^3.0.0","remark-rehype":"^10.0.0","unist-util-visit":"^4.0.0","@types/estree-jsx":"^1.0.0","estree-util-to-js":"^1.1.0","hast-util-to-estree":"^2.0.0","markdown-extensions":"^1.0.0","estree-util-build-jsx":"^2.0.0","unist-util-stringify-position":"^3.0.0","estree-util-is-identifier-name":"^2.0.0","unist-util-position-from-estree":"^1.0.0"},"react-native":{"./lib/condition.js":"./lib/condition.browser.js"},"typeCoverage":{"detail":true,"strict":true,"atLeast":100,"ignoreCatch":true,"ignoreFiles":["lib/util/resolve-evaluate-options.{d.ts,js}"]},"_hasShrinkwrap":false,"devDependencies":{"react":"^18.0.0","nanoid":"^4.0.0","preact":"^10.0.0","react-dom":"^18.0.0","rehype-raw":"^6.0.0","remark-gfm":"^3.0.0","source-map":"^0.7.0","remark-math":"^5.0.0","rehype-katex":"^6.0.0","@mdx-js/react":"^2.0.0","@emotion/react":"^11.0.0","remark-frontmatter":"^4.0.0","source-map-support":"^0.5.0","preact-render-to-string":"^5.0.0","unist-util-remove-position":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/mdx_2.2.0_1671006764719_0.5002973818207399","host":"s3://npm-registry-packages"}},"2.2.1":{"name":"@mdx-js/mdx","version":"2.2.1","keywords":["mdx","markdown","jsx","remark","mdxast"],"author":{"url":"https://johno.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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://johno.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"},{"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":"611af1b68135c94eb467eb07e006fa1d8eebe029","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-2.2.1.tgz","fileCount":55,"integrity":"sha512-hZ3ex7exYLJn6FfReq8yTvA6TE53uW9UHJQM9IlSauOuS55J9y8RtA7W+dzp6Yrzr00/U1sd7q+Wf61q6SfiTQ==","signatures":[{"sig":"MEYCIQDQFTo5x0WN/qlHpViKY8JtcRyxadqYa/0+cVS4i4hyrAIhANlp4YfzrVYNoGmopoqScb/emVJw7/EJqW70sEDfSj+o","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":124362,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjmY3vACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrw5g/+ISEyFoAUM9wOvj1xKoii2k7PDIpR/0v/5XzS079CJbV+GCEj\r\nwZeW4gDH77vq3xNAyLEjUgiujBt/hM18L3SvxvV0lljkkRYudTsXfeLUWEI9\r\nvgmXlVM6sxcMQlIgNiYbcd5XaCKZvoHKU7W9iz87B09kU2c6prGuMU4XOj6O\r\n6zHheperrEovIJ1mGcWC9febaal8eo224wlXiTsOr2753yzH+gCMaimgxW7A\r\nb6FNI2wjDbxQ89IjIKoD1Cmx44cP0XvnHDiiHVmuwWaR0JVm2FIoOAPlr3Z4\r\nCeEcL7KUK/w7yT/DggwIrSkHizPDaal6GAPaZ3YVnnITNVFeJ4D2ctZ3WZWK\r\n1lcBg3jxRZKLNxyasRi40EDWnzD1qtsHWz47ew5CM61xEzCc4RZYBM5RGajw\r\n9+R93FBWnszazN8MxZTSzwtoTITZf5yD8nyJ0xRP6EdAsQmBzim9msy+5Y1J\r\ndj/DeZOHL9jRCxQYg7Hr2Cs5HLwHYdmsP2i2kkRBD4E3Y5MmvSntVhXHCHaa\r\n2xIQCwpvTVR1DkP1QjGdxWU6bx1RuIHhJ9ISI8AxeFQ9M/epW+iGUGfnK4j4\r\nYSPNY4ol7BwkKWTpfncj9ZFikfhbpWU7xTxf1JeyOIiFSa9nv81ohoPwB64W\r\nYQbAYkrJHx0OIQBFKUhYT4NT8iG9AWkSSFA=\r\n=/eh+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","type":"module","types":"index.d.ts","browser":{"./lib/condition.js":"./lib/condition.browser.js"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"bf7deab69996449cb99c2217dff75e65855eb2c1","scripts":{"test":"npm run build && npm run test-coverage","build":"rimraf \"lib/**/*.d.ts\" \"test/**/*.d.ts\" \"*.d.ts\" && tsc && type-coverage","prepack":"npm run build","test-api":"uvu test \"^(compile|evaluate)\\.js$\"","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/mdx"},"_npmVersion":"8.19.2","description":"MDX compiler","directories":{},"sideEffects":false,"_nodeVersion":"19.0.0","dependencies":{"vfile":"^5.0.0","unified":"^10.0.0","@types/mdx":"^2.0.0","periscopic":"^3.0.0","remark-mdx":"^2.0.0","remark-parse":"^10.0.0","estree-walker":"^3.0.0","remark-rehype":"^10.0.0","unist-util-visit":"^4.0.0","@types/estree-jsx":"^1.0.0","estree-util-to-js":"^1.1.0","hast-util-to-estree":"^2.0.0","markdown-extensions":"^1.0.0","estree-util-build-jsx":"^2.0.0","unist-util-stringify-position":"^3.0.0","estree-util-is-identifier-name":"^2.0.0","unist-util-position-from-estree":"^1.0.0"},"react-native":{"./lib/condition.js":"./lib/condition.browser.js"},"typeCoverage":{"detail":true,"strict":true,"atLeast":100,"ignoreCatch":true,"ignoreFiles":["lib/util/resolve-evaluate-options.{d.ts,js}"]},"_hasShrinkwrap":false,"devDependencies":{"react":"^18.0.0","nanoid":"^4.0.0","preact":"^10.0.0","react-dom":"^18.0.0","rehype-raw":"^6.0.0","remark-gfm":"^3.0.0","source-map":"^0.7.0","remark-math":"^5.0.0","rehype-katex":"^6.0.0","@mdx-js/react":"^2.0.0","@emotion/react":"^11.0.0","remark-frontmatter":"^4.0.0","source-map-support":"^0.5.0","preact-render-to-string":"^5.0.0","unist-util-remove-position":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/mdx_2.2.1_1671007726833_0.19736659529336653","host":"s3://npm-registry-packages"}},"2.3.0":{"name":"@mdx-js/mdx","version":"2.3.0","keywords":["mdx","markdown","jsx","remark","mdxast"],"author":{"url":"https://johno.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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://johno.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"},{"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":"d65d8c3c28f3f46bb0e7cb3bf7613b39980671a9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-2.3.0.tgz","fileCount":55,"integrity":"sha512-jLuwRlz8DQfQNiUCJR50Y09CGPq3fLtmtUQfVrj79E0JWu3dvsVcxVIcfhR5h0iXu+/z++zDrYeiJqifRynJkA==","signatures":[{"sig":"MEYCIQDwC07Uc7UmtK/RKqfcvEaFVyqiA5nayMLT+yb26cyWMAIhAP3foHq+NBsBWHtREWUyd4DrXK732hpJuTfcZiNih0A9","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":132916,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj5UOqACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpLkw/+MN+nSnzapOWEclkQlKJFKNCw0JSRB+ASK48uunsvmTrPG39S\r\nr78y9bS/Ej3Q8gkqjXyaL0wldOlj3gpQP5zA35Xr/s/XviwvDw35+jZG9LU5\r\n8J5yeNIb0QHvIo8MUZy0dHOeXUCE4RuUFrwCjGloiGM0ccRKViWauTm0Hpbo\r\nG8CoW6b+jcYEP0JzWe0yHxYpKx3u8qWqE2Dcb96Wli2VMPKCheeDoGmYmOcJ\r\nHQqKlLmP2n8+EGZjOpFDgEE7bQDMzObuN/Irbk9ts19xWP0xidWaJf+cxJH/\r\nQqsD/999WvTwmDsMDMC/6VX/GxrCxtjrygCeyg6liPStFRNPc3N9i7inv3ro\r\n+EvLK9Mm+4+eY6AZo3dZLSwkb/3lGSF8SwCNx6y6N2KDvcnJaEV2NvDloTHb\r\nSJb6G3S8LKizKotawxZqxLZenBzUSoFhKyfDJluzIbnOp8b3jNtJwl+zBUlf\r\n+ObfOfI/J7WTdFPBhbLgaBqFsoST1Q7OszjygPIZbMPAc7bXbjQNbFaNvD/6\r\noKRbAHAfMvWJ6IduuKB2cSJHR/QjxYhTRzlmTyfYw84rtSe0f8eDgBCQPwmn\r\nfYLXPEuGdMm/SkUx5a98hgNTMA77DZVv/oJGKq+ppswPLPHgjJ4htcco9f9t\r\nb3ZfMYrxt4DGFdYVk3d5lm0w0POAAIj+Ci8=\r\n=duxQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","type":"module","types":"index.d.ts","browser":{"./lib/condition.js":"./lib/condition.browser.js"},"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 \"^(compile|evaluate)\\.js$\"","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/mdx"},"_npmVersion":"9.2.0","description":"MDX compiler","directories":{},"sideEffects":false,"_nodeVersion":"19.3.0","dependencies":{"vfile":"^5.0.0","unified":"^10.0.0","@types/mdx":"^2.0.0","periscopic":"^3.0.0","remark-mdx":"^2.0.0","remark-parse":"^10.0.0","estree-walker":"^3.0.0","remark-rehype":"^10.0.0","unist-util-visit":"^4.0.0","@types/estree-jsx":"^1.0.0","estree-util-to-js":"^1.1.0","hast-util-to-estree":"^2.0.0","markdown-extensions":"^1.0.0","estree-util-build-jsx":"^2.0.0","unist-util-stringify-position":"^3.0.0","estree-util-is-identifier-name":"^2.0.0","unist-util-position-from-estree":"^1.0.0"},"react-native":{"./lib/condition.js":"./lib/condition.browser.js"},"typeCoverage":{"detail":true,"strict":true,"atLeast":100,"ignoreCatch":true,"ignoreFiles":["lib/util/resolve-evaluate-options.{d.ts,js}"]},"_hasShrinkwrap":false,"devDependencies":{"react":"^18.0.0","nanoid":"^4.0.0","preact":"^10.0.0","react-dom":"^18.0.0","rehype-raw":"^6.0.0","remark-gfm":"^3.0.0","source-map":"^0.7.0","remark-math":"^5.0.0","rehype-katex":"^6.0.0","@mdx-js/react":"^2.0.0","@emotion/react":"^11.0.0","remark-frontmatter":"^4.0.0","source-map-support":"^0.5.0","preact-render-to-string":"^5.0.0","unist-util-remove-position":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/mdx_2.3.0_1675969449948_0.947731527119752","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"@mdx-js/mdx","version":"3.0.0","keywords":["jsx","markdown","mdx","remark"],"author":{"url":"https://johno.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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://johno.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"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"xo":{"rules":{"max-depth":"off","complexity":"off","unicorn/prefer-at":"off","unicorn/prefer-code-point":"off","n/file-extension-in-import":"off"},"prettier":true,"overrides":[{"files":["**/*.ts"],"rules":{"@typescript-eslint/ban-types":"off","@typescript-eslint/array-type":"off","@typescript-eslint/consistent-type-definitions":"off"}}]},"dist":{"shasum":"37ef87685143fafedf1165f0a79e9fe95fbe5154","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-3.0.0.tgz","fileCount":52,"integrity":"sha512-Icm0TBKBLYqroYbNW3BPnzMGn+7mwpQOK310aZ7+fkCtiU3aqv2cdcX+nd0Ydo3wI5Rx8bX2Z2QmGb/XcAClCw==","signatures":[{"sig":"MEQCIH1I+UaOpbFTfJSOUpNMAmaivF8zUge0KjfDDJy7tQyuAiBoTqRKqK/BBYHCc6r06CCQsXKaHhgH7WjgpLg+08+LNw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":161976},"type":"module","types":"./index.d.ts","exports":{".":"./index.js","./internal-extnames-to-regex":"./lib/util/extnames-to-regex.js","./internal-resolve-evaluate-options":"./lib/util/resolve-evaluate-options.js","./internal-create-format-aware-processors":"./lib/util/create-format-aware-processors.js"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"9a40e181db5afe06500b9119787be908429c6ca8","scripts":{"test":"npm run test-coverage","test-api":"node --conditions development --enable-source-maps 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/mdx/"},"_npmVersion":"10.2.0","description":"MDX compiler","directories":{},"sideEffects":false,"_nodeVersion":"21.0.0","dependencies":{"vfile":"^6.0.0","devlop":"^1.0.0","unified":"^11.0.0","@types/mdx":"^2.0.0","periscopic":"^3.0.0","remark-mdx":"^3.0.0","source-map":"^0.7.0","@types/hast":"^3.0.0","remark-parse":"^11.0.0","@types/estree":"^1.0.0","estree-walker":"^3.0.0","remark-rehype":"^11.0.0","unist-util-visit":"^5.0.0","@types/estree-jsx":"^1.0.0","estree-util-to-js":"^2.0.0","hast-util-to-estree":"^3.0.0","markdown-extensions":"^2.0.0","collapse-white-space":"^2.0.0","estree-util-build-jsx":"^3.0.0","hast-util-to-jsx-runtime":"^2.0.0","unist-util-stringify-position":"^4.0.0","estree-util-is-identifier-name":"^3.0.0","unist-util-position-from-estree":"^2.0.0"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/mdx_3.0.0_1698172167177_0.7816380737936164","host":"s3://npm-registry-packages"}},"3.0.1":{"name":"@mdx-js/mdx","version":"3.0.1","keywords":["jsx","markdown","mdx","remark"],"author":{"url":"https://johno.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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://johno.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"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"xo":{"rules":{"max-depth":"off","complexity":"off","unicorn/prefer-at":"off","unicorn/prefer-code-point":"off","n/file-extension-in-import":"off","logical-assignment-operators":"off"},"prettier":true,"overrides":[{"files":["test/**/*.js"],"rules":{"no-restricted-globals":"off"}},{"files":["**/*.ts"],"rules":{"@typescript-eslint/ban-types":"off","@typescript-eslint/array-type":"off","@typescript-eslint/consistent-type-definitions":"off"}}]},"dist":{"shasum":"617bd2629ae561fdca1bb88e3badd947f5a82191","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-3.0.1.tgz","fileCount":76,"integrity":"sha512-eIQ4QTrOWyL3LWEe/bu6Taqzq2HQvHcyTMaOrI95P2/LmJE7AsfPfgJGuFLPVqBUE1BC1rik3VIhU+s9u72arA==","signatures":[{"sig":"MEUCIQDIQOi3rNN4Yl+WljbO5NW+S0Jp0JZifRrC3ILFpy6lvgIgSKgiFz3Jjtg50PkKEfPz+NP4icxqM6v6NFSVC3wgc3I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":175140},"type":"module","types":"./index.d.ts","exports":{".":"./index.js","./internal-extnames-to-regex":"./lib/util/extnames-to-regex.js","./internal-create-format-aware-processors":"./lib/util/create-format-aware-processors.js"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"78aee48581241bd6d3cc6e0e7fad8cac5ef27c65","scripts":{"test":"npm run test-coverage","test-api":"node --conditions development --enable-source-maps 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/mdx/"},"_npmVersion":"10.2.3","description":"MDX compiler","directories":{},"sideEffects":false,"_nodeVersion":"21.2.0","dependencies":{"vfile":"^6.0.0","devlop":"^1.0.0","unified":"^11.0.0","@types/mdx":"^2.0.0","periscopic":"^3.0.0","remark-mdx":"^3.0.0","source-map":"^0.7.0","@types/hast":"^3.0.0","remark-parse":"^11.0.0","@types/estree":"^1.0.0","estree-walker":"^3.0.0","remark-rehype":"^11.0.0","unist-util-visit":"^5.0.0","@types/estree-jsx":"^1.0.0","estree-util-to-js":"^2.0.0","hast-util-to-estree":"^3.0.0","markdown-extensions":"^2.0.0","collapse-white-space":"^2.0.0","estree-util-build-jsx":"^3.0.0","hast-util-to-jsx-runtime":"^2.0.0","unist-util-stringify-position":"^4.0.0","estree-util-is-identifier-name":"^3.0.0","unist-util-position-from-estree":"^2.0.0"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/mdx_3.0.1_1707735024521_0.30665978415381767","host":"s3://npm-registry-packages"}},"3.1.0":{"name":"@mdx-js/mdx","version":"3.1.0","keywords":["jsx","markdown","mdx","remark"],"author":{"url":"https://johno.com","name":"John Otander","email":"johnotander@gmail.com"},"license":"MIT","_id":"@mdx-js/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://johno.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"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"homepage":"https://mdxjs.com","bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"xo":{"rules":{"max-depth":"off","complexity":"off","unicorn/prefer-at":"off","unicorn/prefer-code-point":"off","n/file-extension-in-import":"off","logical-assignment-operators":"off"},"prettier":true,"overrides":[{"files":["test/**/*.js"],"rules":{"no-restricted-globals":"off"}},{"files":["**/*.ts"],"rules":{"@typescript-eslint/ban-types":"off","@typescript-eslint/array-type":"off","@typescript-eslint/consistent-type-definitions":"off"}}]},"dist":{"shasum":"10235cab8ad7d356c262e8c21c68df5850a97dc3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-3.1.0.tgz","fileCount":70,"integrity":"sha512-/QxEhPAvGwbQmy1Px8F899L5Uc2KZ6JtXwlCgJmjSTBedwOZkByYcBG4GceIGPXRDsmfxhHazuS+hlOShRLeDw==","signatures":[{"sig":"MEUCIFPCcU4nKU7JWchsYhi3DCoCblesQH/kelQ2kFq+x5NvAiEA5QNFMh4YOQmftZ3lH1tQtDMVwXg3ZU1iozhi1V1flQ4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":163693},"type":"module","types":"./index.d.ts","exports":{".":"./index.js","./internal-extnames-to-regex":"./lib/util/extnames-to-regex.js","./internal-create-format-aware-processors":"./lib/util/create-format-aware-processors.js"},"funding":{"url":"https://opencollective.com/unified","type":"opencollective"},"gitHead":"eee85d54152499c526cf8c06076be5b563037ff8","scripts":{"test":"npm run test-coverage","test-api":"node --conditions development --enable-source-maps 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/mdx/"},"_npmVersion":"10.9.0","description":"MDX compiler","directories":{},"sideEffects":false,"_nodeVersion":"23.0.0","dependencies":{"vfile":"^6.0.0","devlop":"^1.0.0","unified":"^11.0.0","recma-jsx":"^1.0.0","@types/mdx":"^2.0.0","remark-mdx":"^3.0.0","source-map":"^0.7.0","@types/hast":"^3.0.0","rehype-recma":"^1.0.0","remark-parse":"^11.0.0","@types/estree":"^1.0.0","estree-walker":"^3.0.0","remark-rehype":"^11.0.0","recma-build-jsx":"^1.0.0","recma-stringify":"^1.0.0","unist-util-visit":"^5.0.0","@types/estree-jsx":"^1.0.0","estree-util-scope":"^1.0.0","markdown-extensions":"^2.0.0","collapse-white-space":"^2.0.0","hast-util-to-jsx-runtime":"^2.0.0","unist-util-stringify-position":"^4.0.0","estree-util-is-identifier-name":"^3.0.0","unist-util-position-from-estree":"^2.0.0"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/mdx_3.1.0_1729264739861_0.10040879274895875","host":"s3://npm-registry-packages"}},"3.1.1":{"name":"@mdx-js/mdx","version":"3.1.1","description":"MDX compiler","license":"MIT","keywords":["jsx","markdown","mdx","remark"],"homepage":"https://mdxjs.com","repository":{"type":"git","url":"git+https://github.com/mdx-js/mdx.git","directory":"packages/mdx/"},"bugs":{"url":"https://github.com/mdx-js/mdx/issues"},"funding":{"type":"opencollective","url":"https://opencollective.com/unified"},"author":{"name":"John Otander","email":"johnotander@gmail.com","url":"https://johno.com"},"contributors":[{"name":"John Otander","email":"johnotander@gmail.com","url":"https://johno.com"},{"name":"Tim Neutkens","email":"tim@vercel.com"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},{"name":"JounQin","email":"admin@1stg.me","url":"https://www.1stg.me"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"type":"module","sideEffects":false,"exports":{".":"./index.js","./internal-create-format-aware-processors":"./lib/util/create-format-aware-processors.js","./internal-extnames-to-regex":"./lib/util/extnames-to-regex.js"},"dependencies":{"@types/estree":"^1.0.0","@types/estree-jsx":"^1.0.0","@types/hast":"^3.0.0","@types/mdx":"^2.0.0","acorn":"^8.0.0","collapse-white-space":"^2.0.0","devlop":"^1.0.0","estree-util-is-identifier-name":"^3.0.0","estree-util-scope":"^1.0.0","estree-walker":"^3.0.0","hast-util-to-jsx-runtime":"^2.0.0","markdown-extensions":"^2.0.0","recma-build-jsx":"^1.0.0","recma-jsx":"^1.0.0","recma-stringify":"^1.0.0","rehype-recma":"^1.0.0","remark-mdx":"^3.0.0","remark-parse":"^11.0.0","remark-rehype":"^11.0.0","source-map":"^0.7.0","unified":"^11.0.0","unist-util-position-from-estree":"^2.0.0","unist-util-stringify-position":"^4.0.0","unist-util-visit":"^5.0.0","vfile":"^6.0.0"},"scripts":{"test":"npm run test-coverage","test-api":"node --conditions development --enable-source-maps test/index.js","test-coverage":"c8 --100 --reporter lcov npm run test-api"},"xo":{"overrides":[{"files":["test/**/*.js"],"rules":{"no-restricted-globals":"off"}},{"files":["**/*.ts"],"rules":{"@typescript-eslint/array-type":"off","@typescript-eslint/ban-types":"off","@typescript-eslint/consistent-type-definitions":"off"}}],"prettier":true,"rules":{"complexity":"off","logical-assignment-operators":"off","max-depth":"off","n/file-extension-in-import":"off","unicorn/prefer-at":"off","unicorn/prefer-code-point":"off"}},"_id":"@mdx-js/mdx@3.1.1","gitHead":"50aa8df0b027c893dec9f97a2b7c51539e9f1a4b","types":"./index.d.ts","_nodeVersion":"23.9.0","_npmVersion":"11.5.2","dist":{"integrity":"sha512-f6ZO2ifpwAQIpzGWaBQT2TXxPv6z3RBzQKpVftEWN78Vl/YweF1uwussDx8ECAXVtr3Rs89fKyG9YlzUs9DyGQ==","shasum":"c5ffd991a7536b149e17175eee57a1a2a511c6d1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@mdx-js/mdx/-/mdx-3.1.1.tgz","fileCount":70,"unpackedSize":163721,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEYCIQCmRmXq8AETid/E87EhJtMyQFvSWyvcjpImkPUiB9gOWAIhALYY1ZjxX4+/tkbC3TtseXmR0eGiXbcL38fkHItZSNTK"}]},"_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/mdx_3.1.1_1756490574536_0.9684372939173109"},"_hasShrinkwrap":false}},"name":"@mdx-js/mdx","time":{"created":"2018-03-23T13:51:18.027Z","modified":"2025-08-29T18:02:55.047Z","0.4.0":"2018-03-23T13:51:18.259Z","0.5.0":"2018-03-23T13:55:59.309Z","0.7.0-0":"2018-04-02T22:23:23.894Z","0.7.0-1":"2018-04-02T22:25:03.962Z","0.7.0-2":"2018-04-02T22:28:07.729Z","0.7.0":"2018-04-02T22:31:23.039Z","0.7.1":"2018-04-02T22:40:06.098Z","0.7.2":"2018-04-24T04:15:14.154Z","0.7.3":"2018-04-24T04:22:50.197Z","0.7.4":"2018-04-27T23:48:48.650Z","0.8.0":"2018-04-28T14:34:05.692Z","0.8.1-0":"2018-04-30T22:00:29.860Z","0.8.1":"2018-04-30T22:17:59.185Z","0.9.0":"2018-05-07T07:26:45.363Z","0.10.0":"2018-06-08T15:38:26.980Z","0.10.1":"2018-06-13T14:03:10.264Z","0.11.1-0":"2018-06-25T18:41:55.368Z","0.11.1":"2018-06-25T20:13:50.528Z","0.12.0":"2018-06-26T14:38:12.246Z","0.13.0-0":"2018-07-01T15:32:32.633Z","0.13.1-0":"2018-07-06T14:48:16.107Z","0.13.1-1":"2018-07-06T15:01:52.825Z","0.14.0":"2018-07-12T13:08:07.279Z","0.14.1":"2018-07-22T14:29:43.468Z","0.15.0-0":"2018-07-23T14:57:33.919Z","0.15.0-1":"2018-07-27T14:31:45.109Z","0.15.0-2":"2018-07-31T18:12:21.689Z","0.15.0-3":"2018-08-10T21:49:58.428Z","0.15.0-4":"2018-08-10T22:09:15.681Z","0.15.0":"2018-08-10T22:12:41.694Z","0.15.1":"2018-09-07T17:54:04.292Z","0.15.2":"2018-09-07T19:14:51.197Z","0.15.3-0":"2018-09-20T16:39:27.699Z","0.15.3":"2018-09-20T17:01:20.107Z","0.15.4":"2018-09-24T18:53:27.676Z","0.15.5":"2018-10-02T19:16:44.803Z","0.15.6":"2018-10-30T16:08:56.492Z","0.15.7":"2018-11-03T16:52:23.178Z","0.16.0":"2018-11-05T21:30:03.464Z","0.16.1":"2018-11-20T12:01:08.259Z","0.16.2":"2018-11-20T21:56:03.301Z","0.16.3":"2018-11-21T06:08:45.050Z","0.16.4":"2018-11-23T17:01:37.751Z","0.16.5":"2018-11-23T19:30:37.949Z","0.16.6":"2018-12-08T19:39:50.668Z","0.16.8":"2019-01-24T16:05:46.062Z","0.17.0":"2019-02-11T17:26:29.412Z","0.17.3":"2019-02-14T19:30:13.206Z","0.17.4":"2019-02-15T16:35:24.211Z","0.17.5":"2019-02-15T21:21:02.077Z","0.18.0":"2019-02-25T16:16:06.323Z","0.18.1":"2019-02-26T20:12:18.890Z","0.18.2":"2019-02-28T02:01:47.572Z","0.19.0-alpha.0":"2019-02-28T22:20:27.472Z","0.19.0":"2019-03-01T01:29:42.752Z","0.20.0-alpha.0":"2019-03-02T01:10:10.148Z","0.20.0":"2019-03-02T01:27:42.453Z","0.20.1":"2019-03-02T21:12:28.152Z","0.20.2":"2019-03-05T22:41:48.063Z","1.0.0-alpha.0":"2019-03-06T04:10:43.017Z","0.20.3":"2019-03-06T17:22:51.890Z","1.0.0-alpha.1":"2019-03-06T22:30:39.840Z","1.0.0-alpha.5":"2019-03-08T19:14:27.180Z","1.0.0-alpha.6":"2019-03-11T16:48:44.145Z","1.0.0-alpha.7":"2019-03-13T18:47:05.983Z","1.0.0-alpha.8":"2019-03-21T15:04:08.662Z","1.0.0-alpha.9":"2019-03-21T18:12:43.458Z","1.0.0-alpha.10":"2019-03-27T20:33:56.308Z","1.0.0-alpha.11":"2019-03-28T19:17:40.117Z","1.0.0-alpha.12":"2019-03-28T20:33:51.344Z","1.0.0-alpha.13":"2019-03-28T21:23:05.604Z","1.0.0-alpha.16":"2019-03-29T18:26:32.455Z","1.0.0-alpha.17":"2019-03-30T15:34:09.526Z","1.0.0-rc.0":"2019-04-04T16:39:29.367Z","1.0.0-rc.2":"2019-04-11T19:33:27.599Z","1.0.0-rc.3":"2019-04-11T20:22:27.631Z","1.0.0-rc.4":"2019-04-11T22:18:44.568Z","1.0.0-ci.0":"2019-04-12T01:13:19.718Z","1.0.1":"2019-04-12T01:34:12.192Z","1.0.2":"2019-04-12T06:49:16.101Z","1.0.3":"2019-04-12T16:48:14.856Z","1.0.3-ci.2":"2019-04-12T16:50:37.081Z","1.0.4-ci.0":"2019-04-12T17:54:09.691Z","1.0.4":"2019-04-12T17:55:57.034Z","1.0.5":"2019-04-15T14:39:35.904Z","1.0.5-ci.0":"2019-04-15T14:42:31.985Z","1.0.6":"2019-04-16T18:01:38.185Z","1.0.7":"2019-04-16T19:40:45.356Z","1.0.8":"2019-04-16T20:15:54.236Z","1.0.9":"2019-04-16T20:55:53.620Z","1.0.10":"2019-04-16T21:12:05.893Z","1.0.14":"2019-04-22T13:45:21.381Z","1.0.15":"2019-04-25T14:56:31.614Z","1.0.16-ci.0":"2019-04-25T19:37:47.534Z","1.0.16":"2019-05-01T16:34:45.927Z","1.0.18":"2019-05-07T17:46:25.430Z","1.0.19":"2019-05-13T18:14:08.536Z","1.0.19-ci.5":"2019-05-13T18:15:12.881Z","1.0.20-ci.2":"2019-05-14T13:37:15.425Z","1.0.20":"2019-05-25T13:34:09.638Z","1.0.21":"2019-06-18T14:45:18.155Z","1.0.22":"2019-07-09T19:29:09.355Z","1.0.23":"2019-07-09T19:33:20.475Z","1.0.24-ci.3":"2019-07-11T15:57:31.055Z","1.0.24-ci.5":"2019-07-11T16:45:40.576Z","1.0.24":"2019-07-11T17:28:56.412Z","1.0.25":"2019-07-12T16:07:36.702Z","1.0.26":"2019-07-12T20:09:23.519Z","1.0.27":"2019-07-12T20:29:01.321Z","1.0.27-ci.0":"2019-07-12T20:32:42.613Z","1.1.0":"2019-07-15T16:21:59.378Z","1.1.1":"2019-07-30T13:20:28.280Z","1.1.2-ci.2":"2019-07-31T18:38:53.776Z","1.1.2":"2019-07-31T18:39:55.746Z","1.1.4":"2019-07-31T18:42:46.595Z","1.1.5":"2019-08-02T21:16:39.761Z","1.1.6":"2019-08-06T16:49:35.720Z","1.2.1":"2019-08-08T22:54:00.593Z","1.2.2":"2019-08-08T22:58:13.447Z","1.3.0":"2019-08-13T23:00:00.540Z","1.3.1":"2019-08-18T15:51:56.681Z","1.3.2":"2019-08-25T18:56:17.282Z","1.4.0":"2019-08-26T14:01:47.940Z","1.4.1":"2019-09-03T16:57:12.124Z","1.4.2":"2019-09-03T18:50:07.845Z","1.4.3":"2019-09-04T16:29:25.928Z","1.4.4":"2019-09-05T14:14:40.608Z","1.4.5":"2019-09-09T15:09:43.043Z","1.5.0":"2019-09-23T19:39:23.981Z","1.5.1":"2019-10-07T15:02:07.203Z","1.5.2":"2019-12-16T15:13:21.756Z","1.5.3":"2019-12-20T18:42:04.806Z","1.5.4":"2020-01-15T14:57:21.245Z","1.5.5":"2020-01-16T20:16:46.216Z","1.5.6-ci.0":"2020-01-31T14:56:22.506Z","1.5.6-alpha.0":"2020-02-04T02:46:44.466Z","1.5.6":"2020-02-20T19:47:36.670Z","1.5.7-alpha.0":"2020-02-20T20:13:15.696Z","1.5.7":"2020-02-21T22:22:06.884Z","1.5.8-alpha.0":"2020-02-21T22:30:36.226Z","1.5.8-ci.13":"2020-03-26T19:13:33.052Z","1.5.8":"2020-03-26T19:21:16.375Z","1.5.9-ci.5":"2020-04-22T18:37:17.580Z","1.5.9":"2020-04-22T18:38:52.248Z","1.6.0":"2020-04-27T20:02:46.056Z","1.6.1":"2020-05-01T18:27:42.415Z","1.6.2-ci.1":"2020-05-09T03:13:57.876Z","1.6.2":"2020-05-20T17:08:00.392Z","1.6.3":"2020-05-20T17:26:44.958Z","2.0.0-next.0":"2020-05-20T19:13:15.836Z","1.6.4":"2020-05-20T19:25:17.347Z","2.0.0-next.1":"2020-05-21T14:11:32.042Z","1.6.5":"2020-05-29T14:58:00.407Z","1.6.6":"2020-06-17T23:52:50.328Z","1.6.7-ci.4":"2020-07-10T04:21:38.957Z","1.6.7":"2020-07-15T19:41:25.094Z","1.6.8-ci.4":"2020-07-16T18:34:56.122Z","1.6.8":"2020-07-16T18:52:23.194Z","1.6.9":"2020-07-16T23:05:30.777Z","1.6.9-ci.0":"2020-07-16T23:16:24.431Z","1.6.10":"2020-07-17T00:21:34.239Z","1.6.10-ci.0":"2020-07-17T00:51:09.988Z","1.6.11-ci.0":"2020-07-17T04:24:20.082Z","1.6.11":"2020-07-17T13:29:34.836Z","2.0.0-next.3":"2020-07-17T21:42:59.262Z","1.6.12":"2020-07-20T13:45:04.283Z","1.6.12-ci.2":"2020-07-20T13:47:16.435Z","1.6.13":"2020-07-20T14:58:15.808Z","1.6.13-ci.1":"2020-07-20T15:09:54.346Z","2.0.0-next.4":"2020-07-22T19:15:33.211Z","1.6.14":"2020-07-22T23:53:18.843Z","2.0.0-next.5":"2020-07-27T20:10:27.003Z","2.0.0-next.6":"2020-07-27T20:12:37.066Z","1.6.15":"2020-07-29T14:33:13.699Z","1.6.16":"2020-07-29T21:47:02.966Z","1.6.16-ci.0":"2020-07-29T21:50:08.987Z","2.0.0-next.7":"2020-07-30T21:48:04.570Z","1.6.17":"2020-09-14T18:14:05.004Z","1.6.18":"2020-09-17T13:51:41.708Z","2.0.0-next.8":"2020-09-18T21:45:50.593Z","1.6.19":"2020-10-20T21:49:52.046Z","1.6.20":"2020-11-07T14:54:44.294Z","1.6.21":"2020-11-07T15:09:05.121Z","1.6.22":"2020-12-01T17:54:04.588Z","2.0.0-next.9":"2021-03-18T15:27:07.496Z","2.0.0-ci.3":"2021-04-01T14:35:00.191Z","2.0.0-ci.4":"2021-04-07T17:18:15.913Z","2.0.0-ci.18":"2021-08-28T18:39:43.873Z","2.0.0-ci.35":"2021-09-07T14:51:10.395Z","2.0.0-ci.39":"2021-09-08T07:17:52.437Z","2.0.0-ci.40":"2021-09-08T10:44:58.903Z","2.0.0-ci.42":"2021-09-12T19:27:07.203Z","2.0.0-ci.43":"2021-09-12T19:32:33.194Z","2.0.0-ci.50":"2021-09-13T14:20:58.009Z","2.0.0-ci.53":"2021-09-13T17:05:03.635Z","2.0.0-rc.1":"2021-10-19T17:19:27.671Z","2.0.0-rc.2":"2021-11-15T20:51:34.839Z","2.0.0":"2022-02-01T16:10:58.746Z","2.1.0":"2022-03-16T10:47:31.658Z","2.1.1":"2022-03-31T17:03:41.781Z","2.1.2":"2022-06-18T12:33:11.685Z","2.1.3":"2022-08-17T18:47:09.669Z","2.1.4":"2022-10-06T18:08:01.229Z","2.1.5":"2022-10-11T17:19:51.512Z","2.2.0":"2022-12-14T08:32:44.892Z","2.2.1":"2022-12-14T08:48:47.023Z","2.3.0":"2023-02-09T19:04:10.125Z","3.0.0":"2023-10-24T18:29:27.665Z","3.0.1":"2024-02-12T10:50:24.721Z","3.1.0":"2024-10-18T15:19:00.115Z","3.1.1":"2025-08-29T18:02:54.780Z"},"contributors":[{"name":"John Otander","email":"johnotander@gmail.com","url":"https://johno.com"},{"name":"Tim Neutkens","email":"tim@vercel.com"},{"name":"Matija Marohnić","email":"matija.marohnic@gmail.com"},{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},{"name":"JounQin","email":"admin@1stg.me","url":"https://www.1stg.me"},{"name":"Christian Murphy","email":"christian.murphy.42@gmail.com"}],"readmeFilename":"readme.md","homepage":"https://mdxjs.com"}