{"maintainers":[{"name":"anonymous","email":"berlier.v@gmail.com"}],"keywords":["latex","katex","tex","math"],"dist-tags":{"latest":"1.2.3"},"author":{"name":"Valentin Berlier","email":"berlier.v@gmail.com"},"description":"Extract TeX math environments","readme":"# extract-math\n\n[![Build Status](https://travis-ci.com/vberlier/extract-math.svg?branch=master)](https://travis-ci.com/vberlier/extract-math)\n[![npm](https://img.shields.io/npm/v/extract-math.svg)](https://www.npmjs.com/package/extract-math)\n[![npm bundle size](https://img.shields.io/bundlephobia/minzip/extract-math.svg)](https://bundlephobia.com/result?p=extract-math)\n\n> Extract TeX math environments.\n\nThis package parses [TeX shorthands](https://en.wikibooks.org/wiki/LaTeX/Mathematics#Mathematics_environments) for mathematics environments and extracts inline formulas (e.g.: `$x + 1$`) and displayed equations (e.g.: `$$\\sum_{i=1}^n 2^i$$`).\n\n```js\nimport { extractMath } from 'extract-math'\n\nconst segments = extractMath('hello $e^{i\\\\pi}$')\n\nconsole.log(segments)\n// Output: [\n//   { type: 'text', math: false, value: 'hello ', raw: 'hello ' },\n//   { type: 'inline', math: true, value: 'e^{i\\\\pi}', raw: 'e^{i\\\\pi}' }\n// ]\n```\n\nThe primary use-case is to process the math segments with a math typesetting library like [KaTeX](https://katex.org/).\n\n## Installation\n\nYou can install `extract-math` with your `npm` client of choice.\n\n```bash\n$ npm install extract-math\n```\n\n## Usage\n\n### extractMath(input, options?)\n\nParse the input string and return an array of `Segment` objects. `Segment` objects are defined by the following typescript interface:\n\n```ts\ninterface Segment {\n  type: 'text' | 'display' | 'inline'\n  math: boolean\n  value: string\n  raw: string\n}\n```\n\n> The `Segment` interface can be imported with `import { Segment } from 'extract-math'`\n\nThe function splits the input string into 3 different types of segments:\n\n- Plain text segments have a `text` type and the `math` property set to `false`\n- Displayed equations have a `display` type and the `math` property set to `true`\n- Inline formulas have an `inline` type and the `math` property set to `true`\n\nThe function will check that the closing delimiter isn't immediately followed by a digit before extracting a math segment. This prevents input like `$20,000 and $30,000` from being interpreted as inline math.\n\nThe second parameter is optional and lets you specify custom options:\n\n```ts\ninterface ExtractMathOptions {\n  escape?: string\n  delimiters?: {\n    inline?: [string, string]\n    display?: [string, string]\n  }\n  allowSurroundingSpace?: Array<'display' | 'inline'>\n}\n```\n\n> The `ExtractMathOptions` interface can be imported with `import { ExtractMathOptions } from 'extract-math'`\n\nHere are the default values:\n\n```js\n{\n  escape: '\\\\',\n  delimiters: {\n    inline: ['$', '$'],\n    display: ['$$', '$$']\n  },\n  allowSurroundingSpace: ['display']\n}\n```\n\nYou can extract formulas that use LaTeX math delimiters with the following options:\n\n```js\nconst segments = extractMath('hello \\\\(e^{i\\\\pi}\\\\)', {\n  delimiters: {\n    inline: ['\\\\(', '\\\\)'],\n    display: ['\\\\[', '\\\\]']\n  }\n})\n\nconsole.log(segments)\n// Output: [\n//   { type: 'text', math: false, value: 'hello ', raw: 'hello ' },\n//   { type: 'inline', math: true, value: 'e^{i\\\\pi}', raw: 'e^{i\\\\pi}' }\n// ]\n```\n\nBy default, only the `display` mode allows the formula to be surrounded by space. You can change this with the `allowSurroundingSpace` option:\n\n```js\nsegments = extractMath('$ 42 $$$ 42 $$', {\n  allowSurroundingSpace: ['inline', 'display']\n})\n\nconsole.log(segments)\n// Output: [\n//   { type: 'inline', math: true, value: ' 42 ', raw: ' 42 ' },\n//   { type: 'display', math: true, value: ' 42 ', raw: ' 42 ' }\n// ]\n```\n\n### Escaping\n\nAny delimiter immediately preceded by a backslash `\\` will be automatically escaped.\n\n```js\nconst segments = extractMath('in plain \\\\$ text $$in \\\\$ equation$$')\n\nconsole.log(segments)\n// Output: [\n//   { type: 'text', math: false, value: 'in plain $ text ', raw: 'in plain $ text ' },\n//   { type: 'display', math: true, value: 'in $ equation', raw: 'in \\\\$ equation' }\n// ]\n```\n\nThe `raw` property is set to the original string without interpreting the escape sequences. For plain text segments, the property is equal to the `value` property.\n\nThis comes in handy if you're feeding the math expressions to a math typesetting library like [KaTeX](https://katex.org/) that expects dollar signs to be escaped.\n\n```js\nkatex.render(segments[1].raw, ...)\n```\n\n## Contributing\n\nContributions are welcome. This project uses [jest](https://jestjs.io/) for testing.\n\n```bash\n$ npm test\n```\n\nThe code follows the [javascript standard](https://standardjs.com/) style guide [adapted for typescript](https://github.com/standard/eslint-config-standard-with-typescript).\n\n```bash\n$ npm run lint\n```\n\n---\n\nLicense - [MIT](https://github.com/vberlier/extract-math/blob/master/LICENSE)\n","repository":{"type":"git","url":"git+https://github.com/vberlier/extract-math.git"},"bugs":{"url":"https://github.com/vberlier/extract-math/issues"},"license":"MIT","versions":{"0.1.0":{"name":"extract-math","version":"0.1.0","description":"Extract TeX math environments","author":{"name":"Valentin Berlier","email":"berlier.v@gmail.com"},"license":"MIT","keywords":["latex","katex","tex","math"],"homepage":"https://github.com/vberlier/extract-math#readme","repository":{"type":"git","url":"git+https://github.com/vberlier/extract-math.git"},"bugs":{"url":"https://github.com/vberlier/extract-math/issues"},"main":"lib/index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","dev":"tsc --watch","build":"tsc","clean":"rimraf lib","prepare":"npm run clean && npm run build"},"devDependencies":{"rimraf":"^2.6.3","typescript":"^3.3.4000"},"gitHead":"02c515dba4025db5d1302b1422b8bc5c63f0b273","_id":"extract-math@0.1.0","_nodeVersion":"11.11.0","_npmVersion":"6.9.0","dist":{"integrity":"sha512-2Lnpp9K51iEdrjq9SSAkp/qtIhR9sG9gzmWlg0SxjLl/+I+5vcw+O7eSlMzomYEp2vRAMEJ6HvVfaiT9OigA2A==","shasum":"6aec4c8d2d3c97b1f50b416e8cf600bba411cd64","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/extract-math/-/extract-math-0.1.0.tgz","fileCount":8,"unpackedSize":3231,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJclPx5CRA9TVsSAnZWagAAGMUP/0toHHJgu/3vld3vN4r6\nXNfeXvpVjSJxBHlP2xtdlCbwmUhzwtCkj+9v/zjm4Ia6kgX0hRWcBLOxonvd\nKdShCHLAFj57sNOZOyCsU2PQllhJx5LSVnG+EB/br2gomB8WB6kQhZlbWZmG\nsCfxlJR/9xjWlNLFF/A8bprUm9Z5YRJtHisUB0rxH8bo9mfes8oudn2j+8af\nFuGlGhlFu45FVj/6HDZVP1/SsHhl36R6l/7171KaO/CxsIDPDj/eBFOyX4At\npSPvpeimmsYvxCEdAvy2FGpL1ob4L1Et4C6GL+FzCnSwGcsvTYRktXvqkHXl\nRHvllHia4dptKJgcflfdBSzXIHZxn1zK8XnDnY2NCL5gzvRcbMxekMGQ9Qxj\nvtamfICkkzWWJSJI4BK5ChR12Qq2IF+9Qk0+7NpLEuAPLQ5KxXnuaxcpTpPD\nJC53yK9jl2bJZkhKaf+/xQ6rYpR92ZeH85tShKdVE8eqnxBs3vvM4YT1M/ct\nnaX4OYWQ6jg2jBipDV0iU+hjvmUx8Hv0VIJ4dbGdYtXaKGILSB+VnV2F86gg\n6E0IaGUxfZNbcueVa04Ft06F7EakNii4iearF03k9Guk020Pj1bIJ8yOc4TH\nOX0OxhyNojs0JnPgo4pzimZcewETv+UylXQ0bh0nGMyTtunJng+pW2/XhBGr\nhe1m\r\n=75E+\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDUSeUJAadDL/JDx7GKQPAojVokP7WYLx+7j5bcii3SmAiEApdWMR/dYns8VlQVzSmbBTqUQdk9BpjHro1ucOjTfQys="}]},"maintainers":[{"name":"anonymous","email":"berlier.v@gmail.com"}],"_npmUser":{"name":"anonymous","email":"berlier.v@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/extract-math_0.1.0_1553267832292_0.13915526887354823"},"_hasShrinkwrap":false},"0.1.1":{"name":"extract-math","version":"0.1.1","description":"Extract TeX math environments","author":{"name":"Valentin Berlier","email":"berlier.v@gmail.com"},"license":"MIT","keywords":["latex","katex","tex","math"],"homepage":"https://github.com/vberlier/extract-math#readme","repository":{"type":"git","url":"git+https://github.com/vberlier/extract-math.git"},"bugs":{"url":"https://github.com/vberlier/extract-math/issues"},"main":"lib/index.js","scripts":{"test":"jest","dev":"tsc --watch","build":"tsc","clean":"rimraf lib","prepare":"npm run clean && npm run build"},"devDependencies":{"@types/jest":"^24.0.11","jest":"^24.5.0","rimraf":"^2.6.3","ts-jest":"^24.0.0","typescript":"^3.3.4000"},"gitHead":"667068e4629e3b2d30c2429d58e82a777dc74a49","_id":"extract-math@0.1.1","_nodeVersion":"11.11.0","_npmVersion":"6.9.0","dist":{"integrity":"sha512-ASf3HmsyWHNPPhBi7G1Y2YQfyIywLSo+FrIg0JAhOOei8mhQD7YxK0Dq00JumMsnA2RjC6HMa0Omub/ZcIKfyg==","shasum":"a5a37697cfcced4250055622f3e63119c44f1396","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/extract-math/-/extract-math-0.1.1.tgz","fileCount":8,"unpackedSize":7306,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJclQ2vCRA9TVsSAnZWagAA9C4P/3T05mMseeIxCy0eHdhO\nOmPmr5cCU8xVPmGsxtZC171fi0uhPNDs1rVrMb96T8smS3JAySbo+Subajx/\nAQh+XBaiA5JXpxA56xfaNSIBfKkjhx9WGv91b9nLboG45+pVn5KFnnlHEbSv\nNOpqxuW49PP4kVSizeCrBAsd6xv09CQ9D0FwEQp6oHqx5uzb6P3hhbvvteG0\nESqLnspg5GfWshQ741Sh7r6vdrO3S/9jyTJSAVcvyzYaSN/VDyAy412KwFLv\nWED1vBNcZfaCG8etNIBTuXaV9LioeltBmZ3CJ4d7skSqZ1NTBh9uGkt8ASms\nDt6lXvsVTXJfvL+M4LFmZfppDhH4rY2V0oXdUzFVRSqc/FntsKo2+ZOilzDf\nqRCQsFVgYOqni+mtjznE9zQk96R7Sht6ueUU8SRrEL5JOStqTonkwkYpMZ85\nOw080SYrz/amOhHnlOGuSd+JjbsFyb47HerxR6CgQPSZ7J97poednZBQvz/q\n0gynQPuOY4QECyHQA21V6SkZ+ZqBMhR8YLn+Dv4BAzhbEl4Tf2kYXmyfI1Oi\n+EviUQog7i9kQqitoDtXFqrOI12UIICM70SxX6FDtg74NTllGEcThgZ9AvU/\nVVgMNEGSTvzdbFUml4zCArJP2/eO6ApF2Dp7tVTzIpQ6eKtWGPhBoqcmxG/Q\nuxK3\r\n=MpOi\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCjV1E0QFVHOXNQRVQGEWud1N/p86PPHPu+sVKP/ugNVAIgZOW1fyP294dgystdNO3Oht/5dNKwhcebU3qoL8O8aws="}]},"maintainers":[{"name":"anonymous","email":"berlier.v@gmail.com"}],"_npmUser":{"name":"anonymous","email":"berlier.v@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/extract-math_0.1.1_1553272238499_0.547576133345244"},"_hasShrinkwrap":false},"0.1.2":{"name":"extract-math","version":"0.1.2","description":"Extract TeX math environments","author":{"name":"Valentin Berlier","email":"berlier.v@gmail.com"},"license":"MIT","keywords":["latex","katex","tex","math"],"homepage":"https://github.com/vberlier/extract-math#readme","repository":{"type":"git","url":"git+https://github.com/vberlier/extract-math.git"},"bugs":{"url":"https://github.com/vberlier/extract-math/issues"},"main":"lib/index.js","scripts":{"test":"jest","dev":"tsc --watch","build":"tsc","clean":"rimraf lib","prepare":"npm run clean && npm run build"},"devDependencies":{"@types/jest":"^24.0.11","jest":"^24.5.0","rimraf":"^2.6.3","ts-jest":"^24.0.0","typescript":"^3.3.4000"},"gitHead":"668c96e063e74e3d138550e08498665ef572ae5d","_id":"extract-math@0.1.2","_nodeVersion":"11.11.0","_npmVersion":"6.9.0","dist":{"integrity":"sha512-+QlFPjtL21fdAoEwHsXa+lMtsllzDILOGfaDOIcdfB5KXrj/tuT38uGQ5HBsEDdE9PKKuIcH7yq9iOld+TE0pg==","shasum":"9a121b16833c8695312a9177126089d31cc77c63","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/extract-math/-/extract-math-0.1.2.tgz","fileCount":8,"unpackedSize":7323,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJclQ7cCRA9TVsSAnZWagAAPSEP/0/d2uGzx6kWWdJIFpug\nJiBWEbGDye6WdEqNmO2uvY2jS1BKjmUIlz9ewGo+7//oujHAK42yNkwn7wLF\nCe437t6rMADWzC0vEsL8ohvCHaxd+RrHqwl6t/f/ra1Tfv6+KVUlxtNV2uxa\nUxMjrjGvrxbal7U8238BPD5m6QXQc1UbWC4Y14A2QmSVSM54VMXY/qvd10rq\nTJ1645HA2tyF4MrTrv26bW0sRlsMPQs75KXk8vSBPWlfCzMvwMvQOvFtib/I\nTJdCDh2QvCTO9/5l9132QgLqKIlUePjovJ0TfGyPAAOIjdSS5Z0iREZxLp/9\na1He8g2sFrQbx2HtIQrG5312x+Obn4z6JScrOQDy3SWr0nHe/aOwuw/e/SnK\nsln/Fb0gQuKKHiGqMbfLjK4EayisayN/IgMuZE4dwrznPcMLSsljm/Fqtthb\n4hDO0Wg9gFXHZVc4xAl1qXvIfLUc3ETstWpYGtgLtIm8E8W4AIEetFfW40GN\n0QyShqEOUNiKHxItaf7wP9S1bVB39wwOUAbP40z/pVUCCYvHiRoirpXeSCYE\nEuDviUi58tEmEplMcqROYC4Ti2mQxehR5g18rhqNpSXY1x6G57mh7XGOenRE\nDrY54nV67fZD+u659nDbjcx/gRjgDoYypbeiYOrFT8ScpeSQUlm01XKpTIHw\nVvv6\r\n=H7je\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIE9j4NC1a4b6yBiTVeh5kfd6ugalC6Lz5qq3ElnbNkNMAiEAm70p/JAe9b54LjggT4zN3ouJGVcp/ZJY81J7R4UEbkM="}]},"maintainers":[{"name":"anonymous","email":"berlier.v@gmail.com"}],"_npmUser":{"name":"anonymous","email":"berlier.v@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/extract-math_0.1.2_1553272539974_0.27219927629075347"},"_hasShrinkwrap":false},"0.1.3":{"name":"extract-math","version":"0.1.3","description":"Extract TeX math environments","author":{"name":"Valentin Berlier","email":"berlier.v@gmail.com"},"license":"MIT","keywords":["latex","katex","tex","math"],"homepage":"https://github.com/vberlier/extract-math#readme","repository":{"type":"git","url":"git+https://github.com/vberlier/extract-math.git"},"bugs":{"url":"https://github.com/vberlier/extract-math/issues"},"main":"lib/index.js","scripts":{"test":"jest","dev":"tsc --watch","build":"tsc","clean":"rimraf lib","prepare":"npm run clean && npm run build"},"devDependencies":{"@types/jest":"^24.0.11","jest":"^24.5.0","rimraf":"^2.6.3","ts-jest":"^24.0.0","typescript":"^3.3.4000"},"gitHead":"5fa34197f1ba8c0f3fa1a8f9aad4304b038b4b44","_id":"extract-math@0.1.3","_nodeVersion":"11.11.0","_npmVersion":"6.9.0","dist":{"integrity":"sha512-fCqZmzfumi6TTpXB8ubTvzb8T9blvO7HnD2Rt8zNYoHMGfgA/3is9Tu+4UJIB/LJBxRUkqxTu+tH6OtzjEagIQ==","shasum":"45fb584ef7183a6cc2751cfa9662e681a6ebb79b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/extract-math/-/extract-math-0.1.3.tgz","fileCount":8,"unpackedSize":7306,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJclRAOCRA9TVsSAnZWagAABSAQAIsCYOW5Bu2gcyGuEONt\nyTdBgV5VKq9//xG2zUokrHgJho4HiPVScx5b4a3xWSx3WYY5Jd/11KaO09ZH\ntgx5C1lC578+LiM722RGrofDEUZFFws8gWURBbnMMesmdtLqVoMt1gPc+yUk\nZRvkgSD565LfBq7VwB5vT/bQwYnC2eGnRGq7IH3z4Y4Kno9j/NwLXIIZ6SLT\n8OPtgy0BroM8xhp63WF7lENTAOVNh55GkvcCm1Voa6VzCyjTkMj5dWByhaQ1\nQjVCm20w+8/4hovAnqZI3mFGMDUNFzVKIuh6FD+guF6MLHjLYfEeMK4/h0+V\nSrrMZ0YmD1JVzi24Cni381uv5SXoLlJu943u+XI9UsYHddWSkzeU7Ures89O\nkDJwY237x2q6th1qP/c07/myuB2LzjfbxkHky3Y0Lu/iA08QsSk9RPIGATpW\nR7aYN/GxSl0jdbBoe3LCif57KPyQQptE8mDxsuN2qPbWHbpMH8YOs/TQY1T6\nSuPHMhzQlLEwdJoyDRn0VXipiFjwRmg0pIbA+lvFD3549ODjx6hbpqTGoeWG\nas2g+d2cfaBLlIiJ4t+tpj0Y41GLhf38j/aqDDhZ9tRKftqRoWBqdZlnwfof\nd4Kj7cglPHLcWD9Ep4PAFCtXx6pTdC02OKFZQhjVHaWqa9zLsNifmeZ6bHvm\n5WZ5\r\n=pjpL\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDRzMID6PtF+amEf7PXKTHV9nvRDyx/9i0vz04tfyeb8AIhAMSIr/GHOM8anyX96wwcS3WcJRJQjpHDuavHsY1e4oDn"}]},"maintainers":[{"name":"anonymous","email":"berlier.v@gmail.com"}],"_npmUser":{"name":"anonymous","email":"berlier.v@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/extract-math_0.1.3_1553272845494_0.9863669586940271"},"_hasShrinkwrap":false},"0.1.4":{"name":"extract-math","version":"0.1.4","description":"Extract TeX math environments","author":{"name":"Valentin Berlier","email":"berlier.v@gmail.com"},"license":"MIT","keywords":["latex","katex","tex","math"],"homepage":"https://github.com/vberlier/extract-math#readme","repository":{"type":"git","url":"git+https://github.com/vberlier/extract-math.git"},"bugs":{"url":"https://github.com/vberlier/extract-math/issues"},"main":"lib/index.js","scripts":{"lint":"tslint --project tsconfig.lint.json","test":"jest","dev":"tsc --watch","build":"tsc","clean":"rimraf lib","prepare":"npm run clean && npm run build","postversion":"git push --follow-tags"},"devDependencies":{"@types/jest":"^24.0.11","jest":"^24.5.0","rimraf":"^2.6.3","ts-jest":"^24.0.0","tslint":"^5.14.0","tslint-config-standard":"^8.0.1","typescript":"^3.3.4000"},"gitHead":"78282bbaab03646a403d58990d24627d1835fe8f","_id":"extract-math@0.1.4","_nodeVersion":"11.12.0","_npmVersion":"6.7.0","dist":{"integrity":"sha512-qB0OMAB0uDF7wc+Nhb+nkpLTkPcfHBDjhmOxeiHDGKe+i4YdPyZBnQgm/PVkh9Na4tioVe6eS4XW5yMw4R6mKw==","shasum":"ccb825c2f3c6f19ac0b59e2f549ed3b1e5ba86f2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/extract-math/-/extract-math-0.1.4.tgz","fileCount":8,"unpackedSize":7428,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJclSThCRA9TVsSAnZWagAA9C8QAIk9BKfbBws8J6BX4r+q\nF63GZAaSYTLI5CuxhKJKmOjkhhe/PjBHrXHFXV8fzQKV34agmlTEJzK0cdAw\nifdk+xTuojue//3UGod7u/ejvRuK1m8Bd+BgVAvx4lQkq/r23IgA3CjJmhzm\nlslh4fqFu+sGm1wPb551XeX+3ixEFcojJvUBI1pPMl7Peqt+iHYMCw+XvPrg\nVwfXGugHbaLr/HabVQFzAT54sy8TahSSnB9CsCAbQluY6HciyrTgVA1zJNqP\n9pxlghz4GcpG7lBPJO2muKQKHpbdWe5eqhpthHPv/3ZwDGJ+5c/Q9IIErSEj\nPum+jx533pbT16hzkyXxzmoD/1VDl4rpOuRAcpp4yy7ZbamiDEYBX9DCvJQ+\nk/6yFh+3cwEFj1RDjIU77/KZK/R6qnyCoUo8KGK5WnFLUsNnd3pjXGkmoyfP\nrHgi9wXQmOXGnhEobk9eGF6/0oTGP/IqxdrZA6GZYmyFUvQH3dRF3+lxnD7+\nlSJoT/F8E3vTa+euMMmmrplLwNo7ItDEsEqMBDrhRLsisH7lWWc+mNvhV3/m\novTf97jIrkJ4W6XY/kOt56HIZI5kTvYX8doRETi5raLwCWiZRGb1zRempS8s\nJAYaQE7skwFFzxY0NAZqs7ldzxmksuDmAAafpAGtvMsbJ11xyDau3A708fHI\nRz0Z\r\n=cesT\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC+zptT8nU/rsXwWe7M3GJyP0g6+LaMDyevPl25GabUbAIhAOsUPwUq3rwAtHIVojtpjMAG4ifb9cXAvu4Wm0tmq5PH"}]},"maintainers":[{"name":"anonymous","email":"berlier.v@gmail.com"}],"_npmUser":{"name":"anonymous","email":"berlier.v@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/extract-math_0.1.4_1553278176584_0.4836815958472278"},"_hasShrinkwrap":false},"0.1.5":{"name":"extract-math","version":"0.1.5","description":"Extract TeX math environments","author":{"name":"Valentin Berlier","email":"berlier.v@gmail.com"},"license":"MIT","keywords":["latex","katex","tex","math"],"homepage":"https://github.com/vberlier/extract-math#readme","repository":{"type":"git","url":"git+https://github.com/vberlier/extract-math.git"},"bugs":{"url":"https://github.com/vberlier/extract-math/issues"},"main":"lib/index.js","scripts":{"lint":"tslint --project tsconfig.lint.json","test":"jest","dev":"tsc --watch","build":"tsc","clean":"rimraf lib","prepare":"npm run clean && npm run build","postversion":"git push --follow-tags"},"devDependencies":{"@types/jest":"^24.0.11","jest":"^24.5.0","rimraf":"^2.6.3","ts-jest":"^24.0.0","tslint":"^5.14.0","tslint-config-standard":"^8.0.1","typescript":"^3.3.4000"},"gitHead":"fadaa5cd522e280734e976d93db6a999325bea77","_id":"extract-math@0.1.5","_nodeVersion":"11.12.0","_npmVersion":"6.7.0","dist":{"integrity":"sha512-4PaNt2RCPjS5D1f3dcVSN7ExK/Hicm3YM/7ICinoTSZpRNryhuEi1d4e8WZpmIjfGo36YocMfUMng49fqztvpQ==","shasum":"42fe7efbe4d2f78c6e993bdb934eb19cdb6566f6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/extract-math/-/extract-math-0.1.5.tgz","fileCount":8,"unpackedSize":7662,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJclS4ICRA9TVsSAnZWagAAfA4P/iUrgWsO/CrdJvotDel6\nGVbRaPemPOdfpY6GJ1bbsqLDoxPC1TalMzjsjtp21icdrpfiGimSiem8bERD\nqrdZwHBzdQvLsH04i1knhzHlnWG6ZVIkwtlxa+qj60YmksT7nRzzbD03c+jI\nXMvX/caWsTDbiR2VaMa48jS+zoA9YAGvc8wTn1lF9HgAKO3H4qxgl/g/9LP2\nnpmy95Cf4L2aEHB9/8PYW3pMypMNnVepiIEP6m7vdxezZdzj8USTjBkrWuN/\nwQZR/57rBVrsQ8N77QOsvpv4bZOIyJlXExWivftzAj1K6QRD9wExWNZ3nPrC\n37a11lIc8CGmcNsowpVRBGvjrv0u143QwmjStQsjND0z08cOj8UGe1O2TgoO\n2YhuSbtXAw66sNlbkUxE7SYclZJdEl09jyEwoBceJws4v8Qj0z66QA7fcQAL\n4+34UG7LT0yzrI90jnxhA/71g7FJR82E4XDZZmCBUogq6tDCG67h3QQugIwL\nc5Brj5CV1W9bNBbV06aD41bDXSv/RHfOi55nnNLbXt94y6k5Uszcfm+nk9yA\npyU3lOzl3ZdbjfnzYtj8dzg6biDbDkflGobocgsJeiMnacENWDYQb6z17xeK\nPm54FdVqsGk4zfn0yoFQ9Qzh3SOFWw83nwogIPP+u+iBfK9kdSAtiGhfLdfr\nO8Du\r\n=1moO\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEr/tmWLifyuSTmJ744631uNTpkB7wiokJsSgzrnLNDxAiEAuvHn/4siUNJbPCHv5JVcXTFINiw7h4QBhlChFG2g/Ps="}]},"maintainers":[{"name":"anonymous","email":"berlier.v@gmail.com"}],"_npmUser":{"name":"anonymous","email":"berlier.v@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/extract-math_0.1.5_1553280520019_0.51697396526783"},"_hasShrinkwrap":false},"0.1.6":{"name":"extract-math","version":"0.1.6","description":"Extract TeX math environments","author":{"name":"Valentin Berlier","email":"berlier.v@gmail.com"},"license":"MIT","keywords":["latex","katex","tex","math"],"homepage":"https://github.com/vberlier/extract-math#readme","repository":{"type":"git","url":"git+https://github.com/vberlier/extract-math.git"},"bugs":{"url":"https://github.com/vberlier/extract-math/issues"},"main":"lib/index.js","scripts":{"lint":"tslint --project tsconfig.lint.json","test":"jest","dev":"tsc --watch","build":"tsc","clean":"rimraf lib","prepare":"npm run clean && npm run build","postversion":"git push --follow-tags"},"devDependencies":{"@types/jest":"^24.0.11","jest":"^24.5.0","rimraf":"^2.6.3","ts-jest":"^24.0.0","tslint":"^5.14.0","tslint-config-standard":"^8.0.1","typescript":"^3.3.4000"},"gitHead":"0727e0d2431ee3fbfc64dfc22735cd8d2b9418a0","_id":"extract-math@0.1.6","_nodeVersion":"11.12.0","_npmVersion":"6.7.0","dist":{"integrity":"sha512-uXdWC9P8lbcu1ekEDvVJToVpK+Herr0vhXW62QT+ISXh1rN+3eRWlBjN0OIfioYxj52Dl8EkpqJO9La+a2ntXQ==","shasum":"72db31a696a212aa196aca09bbf4bfb6bd8eab29","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/extract-math/-/extract-math-0.1.6.tgz","fileCount":8,"unpackedSize":9711,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJclUJfCRA9TVsSAnZWagAAfsUQAInsZeYY/yDKKBMtKiq/\nEEU6olKpW5FAea20CfzvNcI72CC9E2keGL4COVIV7v3H9B5TxlntF/vN+7El\nNfLZRPsQvEtojEfSsRYA6k1vPODpapfHXjTZ1B/QDUfivCtZBn1VUCCHyTRj\n70WhBQZy8xjQWEReGRY+r2nvkG088S6Q1gOyeuW699VM16Xs6Y7MDa3lfQAq\nsSQLwYH13T2oWutvAcApLf94XzsHuFwdpXen+F4wHalBN4uHssK5LpdaRj9O\nlM9+OuiDoCJQrOMvMy0NqbmMptCWbwQgMT24tuTkiQfjjQBRnLp+pQa+yPF2\nKgLRE4dYOfA3XqEqEkhdI4JIWvwJCcFA3eMWVTSkHehe+q1zjaA/HTFgfJzC\nBfs7xHndgmYzpEOsDrs3yJhW5Ybc/K/9nJq1WfQW3jPQS6AEkoERidSCaQuc\nAMD/85aLK1hqQNSmMMDpOmMpbCz6ZSPdJjGx29E23fBXnivNtD85KwUShabz\nYkA/c4Nmk2RXSowr09DXw1YMnEAXd0nL6/cD9LHzazwvmHmcSlcX9tmdp/EV\n9i4+1jztHgWSklnp9w3tHfLOiqEOBq9mrqnwbAPRwgvHyYp3uB44i1WbDHG9\nZt0OQ4ajqABSYMISzfzLyjOvWeCIkv3z2vSFKoeg8EfzzkU6TIlkjNUv7NWr\nbR1B\r\n=LADy\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCk8tkbWJ6amPcrP5FKRfowXaLTktuJoTVL80K4or/KygIgIFFareVQPlP/nhL7trboFtOmT1ShzIBnqodDNhWu1+g="}]},"maintainers":[{"name":"anonymous","email":"berlier.v@gmail.com"}],"_npmUser":{"name":"anonymous","email":"berlier.v@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/extract-math_0.1.6_1553285727132_0.3386470649710096"},"_hasShrinkwrap":false},"1.0.0":{"name":"extract-math","version":"1.0.0","description":"Extract TeX math environments","author":{"name":"Valentin Berlier","email":"berlier.v@gmail.com"},"license":"MIT","keywords":["latex","katex","tex","math"],"homepage":"https://github.com/vberlier/extract-math#readme","repository":{"type":"git","url":"git+https://github.com/vberlier/extract-math.git"},"bugs":{"url":"https://github.com/vberlier/extract-math/issues"},"main":"lib/index.js","scripts":{"lint":"tslint --project tsconfig.lint.json","test":"jest","dev":"tsc --watch","build":"tsc","clean":"rimraf lib","prepare":"npm run clean && npm run build","postversion":"git push --follow-tags"},"devDependencies":{"@types/jest":"^24.0.11","jest":"^24.5.0","rimraf":"^2.6.3","ts-jest":"^24.0.0","tslint":"^5.14.0","tslint-config-standard":"^8.0.1","typescript":"^3.3.4000"},"gitHead":"091a4dd470caa88454f48bbfb0a06c9ffdfe7208","_id":"extract-math@1.0.0","_nodeVersion":"11.12.0","_npmVersion":"6.7.0","dist":{"integrity":"sha512-8Gs8m6/APUw2wjwhvs7JsYopYAY+yL1IPi9QDCtKz+xoGGTLAw6uBjBCipsLvWZlQeq5POaywO8Aoslxaf4llw==","shasum":"2071d4a7b17991f93163387b7a586a52bde34c39","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/extract-math/-/extract-math-1.0.0.tgz","fileCount":8,"unpackedSize":9841,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJclVYMCRA9TVsSAnZWagAArVgP/jXB1Q0hmMnCiBTmCIho\nD2AhvWbE03wld0c5238IC/LY69ndFKyA6gLRYjOo1jkeHC1Q9F6xDa2tc5h7\nfPNMMcJK8om5SedSdLDF+gWrennut+4/S+7Vg13s5N0SAdS3fWR2Z5D7Hr0W\nEPi+gVK8dpSThMdxG9GnM9TZIwGT0zMQjh4UiTHlj+2pVAKywOWLSCwBCw7O\n8UL7Vzp1TJucFOqTpRyuYQQKujPJeT7Lp8Khr4okvBJ4iKTxYns4lZ5yT0qm\nrlKuvnjR41O3uKs+kJA3Hl8nhpmqEft6KRNPg4nQLyYWMF46s9tvZ7YcjH0R\n3FvnhvEm7X0nTWPPWmbixbMRtw5TtvmBMWKp5fvzvx3PObjQRIWhyoMCADox\nQ5aMJLiOc12dVBMX4wNOywzgCBF134LblM7ePhI9oZXFJl8GJXkSegf/fkO3\n6RBVre1Cx96uMoBNmRLsmfS0J0kh111gvaZ0j8OphzZfIfoogNHLbKftw+FF\n6C/Z5fqAR5Q/NKqIu7xNWfXWuqk1kpEcnWoPTImPYGSpljY7edtpRWz6JkF8\nQTXfm998TJc3Py7fZBoIjVeXEQT1QHAKKnqtNb6ORgjETzIZaflXPEvFI78v\nTgtrqf5gCcbpvIhWWliqNk9TX90FePy+KXsm8T4emNKAxn1am55PQ5OcDor5\nxr4f\r\n=3Nuh\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCGazU3o41FOBVtSrf9firc57gCoS59NS+BTNr0ocrswQIhANLgmuCpzQcdoyuV4QhD3suCYLyKJeuAT5ModtWtPRbZ"}]},"maintainers":[{"name":"anonymous","email":"berlier.v@gmail.com"}],"_npmUser":{"name":"anonymous","email":"berlier.v@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/extract-math_1.0.0_1553290763879_0.7135650299216603"},"_hasShrinkwrap":false},"1.0.1":{"name":"extract-math","version":"1.0.1","description":"Extract TeX math environments","author":{"name":"Valentin Berlier","email":"berlier.v@gmail.com"},"license":"MIT","keywords":["latex","katex","tex","math"],"homepage":"https://github.com/vberlier/extract-math#readme","repository":{"type":"git","url":"git+https://github.com/vberlier/extract-math.git"},"bugs":{"url":"https://github.com/vberlier/extract-math/issues"},"main":"lib/index.js","scripts":{"lint":"tslint --project tsconfig.lint.json","test":"jest","dev":"tsc --watch","build":"tsc","clean":"rimraf lib","prepare":"npm run clean && npm run build","postversion":"git push --follow-tags"},"devDependencies":{"@types/jest":"^24.0.11","jest":"^24.5.0","rimraf":"^2.6.3","ts-jest":"^24.0.0","tslint":"^5.14.0","tslint-config-standard":"^8.0.1","typescript":"^3.3.4000"},"gitHead":"78debaab124667cb598254718582862bab0aff17","_id":"extract-math@1.0.1","_nodeVersion":"11.12.0","_npmVersion":"6.7.0","dist":{"integrity":"sha512-JWDyXW3urcvq/wfq6cxCfNth90K5iBMIGFR6zAni93SDD51AvQohbMVKl0rk8znljBplPnEh2aOIy0N5pCGnww==","shasum":"585cf5e0e01256f88a01ca7cc2b706a1e83b23c6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/extract-math/-/extract-math-1.0.1.tgz","fileCount":8,"unpackedSize":9832,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJclVlECRA9TVsSAnZWagAA8y4P/iFCN8AeBKLucjZ6Ko4B\nxU5gYGht341XywtCpa6oEWl+W7+BlV012g8c+XYVZ7aEaCgdrS3stjVld1Pd\nD8SOShI/6+b1po19gFINSmzN+lEW6EzK+0xpzZW0mX+h3n53ra2DK7tRwsLT\nx57IiQKnACvDjy5n0Eynn4GkNDk8CT2cAlDwCEnyNrwqYsGHZ6C17R+pai9S\n6cCii/+1AWaJErCQCkJWNgKxMnx54rOvkIg48F8AVcuxmXY5F5NcLh+ZhwuL\nZe9EH7svqwPy8wsgC7ZC6Ur7HXGfdyZxD64erH6EVz/V+yjfSVJ3FGPTr2Mr\nHQ+wgnS8kuBfoneoDipNeMd15AccOBiWnBCvLclgkC645G3CEbMkvMFBzBkV\nu1CR+vsP8AKwke31usQgmuFNwL9vHwpkkn2yHziKAEXY4D8ZV78kBYi1B2X1\nmNGP0tKco5rG4bZkJCVtPxcLUFDaL67DOgRq063LyQNhLCFnmTTU8Q5s1xl6\n56i7JZ+xOiaPumfuTwkMtQxXS8qtsHBfTMl46gDzQNc9HVqTL47B7FeQTz7n\nDqKB5RUmaJ+vHgK22MzAIolkXeSf5gqm3O2ckEWHaNCU/I+n0fK/AHnzH6Nt\n88tKmP9MsxYwHvMi4BGBsFhNGs5rNaWZKwIhurZpXULnio9sw4hH+STBP2uz\nzKkZ\r\n=3jQX\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC3ogmnOhHMsiT5igJ+EJGQzml/Kr+dcuNVoKuMPqFQmwIgOtNMJhpvxgo5WjGs6wKpv7AW0E2mRQvM/yUHaWekyEc="}]},"maintainers":[{"name":"anonymous","email":"berlier.v@gmail.com"}],"_npmUser":{"name":"anonymous","email":"berlier.v@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/extract-math_1.0.1_1553291587925_0.6664974123306853"},"_hasShrinkwrap":false},"1.0.2":{"name":"extract-math","version":"1.0.2","description":"Extract TeX math environments","author":{"name":"Valentin Berlier","email":"berlier.v@gmail.com"},"license":"MIT","keywords":["latex","katex","tex","math"],"homepage":"https://github.com/vberlier/extract-math#readme","repository":{"type":"git","url":"git+https://github.com/vberlier/extract-math.git"},"bugs":{"url":"https://github.com/vberlier/extract-math/issues"},"main":"lib/index.js","scripts":{"lint":"tslint --project tsconfig.lint.json","test":"jest","dev":"tsc --watch","build":"tsc","clean":"rimraf lib","prepare":"npm run clean && npm run build","postversion":"git push --follow-tags"},"devDependencies":{"@types/jest":"^24.0.11","jest":"^24.5.0","rimraf":"^2.6.3","ts-jest":"^24.0.0","tslint":"^5.14.0","tslint-config-standard":"^8.0.1","typescript":"^3.3.4000"},"gitHead":"ae7e19107408db13c36d67451b5d61b8c8e15e5d","_id":"extract-math@1.0.2","_nodeVersion":"11.12.0","_npmVersion":"6.7.0","dist":{"integrity":"sha512-G/QFaNkRwoi1x1qLC1v+Y2WMG3lLcrjMqvx7/Vw9L//Ucrs5am+rX9r5vQFPmb+qkUf+9YoxbMsyHDoDwJmc4g==","shasum":"d503f66fe55b3c368e4b7006ecce0c027f2b3c78","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/extract-math/-/extract-math-1.0.2.tgz","fileCount":8,"unpackedSize":9725,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJclVnMCRA9TVsSAnZWagAAmMkP/iSFR57iOW3RXcf+7S+j\nPvENqYQSJD6v5A7AGR75sClpiWaumQatwgsBrGbXHk++pBQoTZUAabBXl/Oj\nNP/pqpzPpyJOHiY/GsXQa7QFlTr5DpRLmfg8MBBjuADoa8FywikcQwjMQ5cS\npSI8Q4dJBHLlns3fNk6qDn394C10rgPfcE86kYTeG1yl8QC039m0+w/y6CnZ\nPJ7tXTRMTjfWgbMkRSP6Y9pjLt9Hw7agZ4md+7So0Vi5/rNWVtxtrK1IkSgo\n2C+eK58N1Ok772ZzXFOy+/Ls+NsxQbvgYsEnOb0sRvxeSnUZ/vt1pHJbN0wq\n8i54IjjVRuwrdQYH1EnjdHzvE94hoc4J+76oPXxUlyD+Tr6H8Iqfrs47Dsfp\nMzcndlZS+Sv6x4xaVce1KlX/kLMBFBoR0TKa6nw5bmVZSbb9uNZ8fVkHQuij\nTFmWgEjtaX5nO4Ud9o27+vdXkXXskJ8Or6zvtxw4ApVy1+MYj/hhKC6x4muB\nCDQS9W+95MP5/yYXO7/JPklPxT5D8tmh+l1NgF9KVvWsaZgXSKdBgxo+cD0u\nWMZXlUMkTQHVEUBPQsBjY0821E2Lgmjyz/JvW9QSlCsh5Wcg1IEsoQHBvbaS\nRf0e5bbyZCeP2sLhZd5n1LBmt2utHDTFpTXFbt/coGW6u7ZH4ePsBHTRJsIo\nxI4/\r\n=w2Gi\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIC0of8sSVUYF9fAvXKnnPRE7jWZsL84LQl7oSfeSBBhEAiBlK/4ohuPNMMHQis99mBLkTKuky3B7+RLjNpUnrF0T1g=="}]},"maintainers":[{"name":"anonymous","email":"berlier.v@gmail.com"}],"_npmUser":{"name":"anonymous","email":"berlier.v@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/extract-math_1.0.2_1553291723495_0.20726788080691638"},"_hasShrinkwrap":false},"1.0.3":{"name":"extract-math","version":"1.0.3","description":"Extract TeX math environments","author":{"name":"Valentin Berlier","email":"berlier.v@gmail.com"},"license":"MIT","keywords":["latex","katex","tex","math"],"homepage":"https://github.com/vberlier/extract-math#readme","repository":{"type":"git","url":"git+https://github.com/vberlier/extract-math.git"},"bugs":{"url":"https://github.com/vberlier/extract-math/issues"},"main":"lib/index.js","scripts":{"lint":"tslint --project tsconfig.lint.json","test":"jest","dev":"tsc --watch","build":"tsc","clean":"rimraf lib","prepare":"npm run clean && npm run build","postversion":"git push --follow-tags"},"devDependencies":{"@types/jest":"^24.0.11","jest":"^24.5.0","rimraf":"^2.6.3","ts-jest":"^24.0.0","tslint":"^5.14.0","tslint-config-standard":"^8.0.1","typescript":"^3.3.4000"},"gitHead":"d20ac9d47f66e59ed62d26eee2f33f8cd56c867b","_id":"extract-math@1.0.3","_nodeVersion":"11.13.0","_npmVersion":"6.7.0","dist":{"integrity":"sha512-43FgsTr0B5yLCBihb7CNAPNgQ73dKGU5EpUY7CG4QexgQJ4GlFB0cQBPJeqIL2kOE8qugeo98KE5jyJbHgirvw==","shasum":"37f6260ea508aafea6a041e9886af020205eee35","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/extract-math/-/extract-math-1.0.3.tgz","fileCount":8,"unpackedSize":10482,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcoP5ACRA9TVsSAnZWagAA7w0P/0iFSlk1LBm6knURiiR0\nJpCbLP+uKkYGrRfuQ37t9UKf1Hi1N8OVwBKmFv5E/RUKJ6ztLC3DD+0QYkE0\nCzbwDJOXnSCGF6ICN8R2v1zRDDr9dAtH26tN/t64yJFru2hqIXQ7i8Ydo4BJ\ny/KjR/JGCLN+N+33mQ0PnD6+86XAlvDpbt/mgMsWygekYr2bBGQ8m78X4lS6\nrKRRPL9oMc3frYxO5EyaDsrVuzQlaRjq1HbWlxia10O/wZiQmhTvj+7XJhe3\nd9EEcrrH9lowPViuYh1Qzdx5BxXzla5cOKd+M3H3MsV+p3I2foNFC77g6vTK\njmpKe60XW7aI59yxOoj8+tj6v7eaG+wIPBHekX+0yoxeq9Bs+dBahWBiQzK7\nJdkbFZ8xH0J9+gPvyeEir0HxP08R7Ga3b1O/ves9rS9zPfFJFje3tFxin/sp\nIE0k8yHBqfnBdDDRF7oTnEHCb4Gf17cGG5GOq+oyBFnUzSkBrCbvWB0pYaM3\nEgujdBVaeQVEf67ZG4jHWUWeP31+KYoQiYizI7TeVi0XuRqjek3jfh9ntN98\n7A+q2HSCEKnevU9O0TqHwGjgA4/e1B/KDOQm7pB7nof2E7aqRL6XlUFxERQ3\nDeA4nORlhZBN+Kh03KobMffE3sseMimAxhz4m/+gjnA+nOlgOLyKAsHtvQ6W\nYpc5\r\n=KYNx\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC7RWA2KyZT3pb10yw5eskKDQHaK85kkFJVr9lCLnxUKQIhAKrGOQXBethUuIeDSusRUsQTa95077djsNSeSGIrBftb"}]},"maintainers":[{"name":"anonymous","email":"berlier.v@gmail.com"}],"_npmUser":{"name":"anonymous","email":"berlier.v@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/extract-math_1.0.3_1554054719463_0.3205147746274717"},"_hasShrinkwrap":false},"1.0.4":{"name":"extract-math","version":"1.0.4","description":"Extract TeX math environments","author":{"name":"Valentin Berlier","email":"berlier.v@gmail.com"},"license":"MIT","keywords":["latex","katex","tex","math"],"homepage":"https://github.com/vberlier/extract-math#readme","repository":{"type":"git","url":"git+https://github.com/vberlier/extract-math.git"},"bugs":{"url":"https://github.com/vberlier/extract-math/issues"},"main":"lib/index.js","scripts":{"lint":"tslint --project tsconfig.lint.json","test":"jest","dev":"tsc --watch","build":"tsc","clean":"rimraf lib","prepare":"npm run clean && npm run build","postversion":"git push --follow-tags"},"devDependencies":{"@types/jest":"^24.0.11","jest":"^24.5.0","rimraf":"^2.6.3","ts-jest":"^24.0.0","tslint":"^5.14.0","tslint-config-standard":"^8.0.1","typescript":"^3.3.4000"},"gitHead":"d00d67cc1d39ea1b33bf27ec88f3fd4910a7669b","_id":"extract-math@1.0.4","_nodeVersion":"11.15.0","_npmVersion":"6.7.0","dist":{"integrity":"sha512-+4iQ29yawfNXKnkpZemnOAl1x+x3LvvZykHKBd5+sLDeWaYOHT6IFoLi6PUl+fnTHoiD2ayecyd0WXsgcv181Q==","shasum":"5397e408e3792a9d407ebe90bc99052f95e6e76c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/extract-math/-/extract-math-1.0.4.tgz","fileCount":8,"unpackedSize":10482,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdLDo3CRA9TVsSAnZWagAAKrgP/AzFkisOcbqut1F9j2rd\nGumnqZ7lJm0HKWYnXpBoMjf/4sRJNCop8FLOGPDg52E6YDo2VjoFsvDiQDsZ\nhdle/vsDtvvyD/AqgsGb6I701SpFh4sN0DsNA80zoUVT1NxkIjbVncSN6/f0\nxvyMRh7J7UYGsrTKry6GX2cB6mX+Z33loXi8R9EN66AJZSYCuJtYK8xE2Ox0\ntw8p23EWP2YXTO+sqOT4jGzzyVH3aqUcHMV8eQSelhFbOfvNBt6nNcMFnvwf\n3jyMVfZK+4guOejVB8ChYqdDRiuAIYQintKQCIXiML30f/NQGEb1MLMzlrxs\n8Qj3yQwy6WcscadjAfu768zQmD0jyI5GHQSieV/4p4H2U6oclrwNbzAbBITd\nQMYzF1YHJ8H/stiMh0KERxZS2yBTHLxoko6FuGFtVSA2F8gM4TvoowEOKveH\nA37p5fGAaHcvvpzV7kIO3o50x/XQhTQOyMsGag9yOklLaelmZ5PvnN4eDtIZ\nlys/BqMvMqCmxm3NdYvwaO+kMIhb/lSCPhtU/AiRJxjbXaHjSSc201VTirZx\nstZs4b7L2Jpjx7DIAlqL7dQeFK4i51NwDTdMJR3Jrrj2VRvjyOgOlqy5TLzV\ntagM8dAdm3djLnk+4oj5Sn09jjNlXpxixtNO04+yJ7YLnTmKVZupxtZJ2VTg\nssAs\r\n=xFb+\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDqwlmrvRvz+fK4Rv9CgBEtjsg+AhWwNqGtA76zl5qkHAIhAL20497Kyn6C4eVS2HS5r8oOgqmeTab0GyOfs9YVeNOl"}]},"maintainers":[{"name":"anonymous","email":"berlier.v@gmail.com"}],"_npmUser":{"name":"anonymous","email":"berlier.v@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/extract-math_1.0.4_1563179574545_0.11480603313225468"},"_hasShrinkwrap":false},"1.0.5":{"name":"extract-math","version":"1.0.5","description":"Extract TeX math environments","author":{"name":"Valentin Berlier","email":"berlier.v@gmail.com"},"license":"MIT","keywords":["latex","katex","tex","math"],"homepage":"https://github.com/vberlier/extract-math#readme","repository":{"type":"git","url":"git+https://github.com/vberlier/extract-math.git"},"bugs":{"url":"https://github.com/vberlier/extract-math/issues"},"main":"lib/index.js","scripts":{"lint":"tslint --project tsconfig.lint.json","test":"jest","dev":"tsc --watch","build":"tsc","clean":"rimraf lib","prepare":"npm run clean && npm run build","postversion":"git push --follow-tags"},"devDependencies":{"@types/jest":"^24.0.11","jest":"^24.5.0","rimraf":"^3.0.0","ts-jest":"^24.0.0","tslint":"^5.14.0","tslint-config-standard":"^8.0.1","typescript":"^3.3.4000"},"gitHead":"64777d5ddd528b2ea8ebe7d02ed487f44a9bc418","_id":"extract-math@1.0.5","_nodeVersion":"11.15.0","_npmVersion":"6.7.0","dist":{"integrity":"sha512-uilrQFjtc2ghQDwax4FqKpsgUsyeD4591fKEYxAAa7NAWKqg00qvXDpiDJzG3Ae2zvDuYIE9wNJcFEG3tgNQ6g==","shasum":"228c4fa9ca5700de536c175c6ab10da1a093ba96","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/extract-math/-/extract-math-1.0.5.tgz","fileCount":8,"unpackedSize":10482,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdXfelCRA9TVsSAnZWagAA5L8P+gOAfpXwBUzGTBVTOZ0X\nId6efRdN9EjkR3rhs+IZv3zUWliTU4SCoJBVteYEoBPJdAsqjKlxHFQI9LCx\njiQ+uRhWrJggLEflzfPJSRvKc/fnL+2a5PWRrw4AZBVuUDf1EZ5W2SABF4bm\nIokVPauDLfA3GwnqugGlzY9ENGbqfktAWMY2FIQJtpzRLUcUdhuKgK5dEST9\nQz1v3Ob97mMZ4M2mTeIUjVSvjuPfYhJhIAF7LYIWyLlc8yuxfLjCFnaxLcrO\n2YSA21dF5T/jm+gZHJw7Xs7svX1pCSkf63UwhPMdTRJo80zBFjVOXLmkUTKw\n9pPqSoG1DIt/2PcgmsRoMg2TFcRRfP/KiBaghmr5SfuGp0RlfgiIVFW07jo4\ngpDLglsnYI4MzAnGWy8lqwrURxDBDyqG2panHg8Wu6dww0nrqXn+80NdYKcA\nlb0BvZy1XBuBcyF4IA9VgQe3l0hqtqFteP4JMLkJ4bedsll6GGHGp0mBZwj0\nPd4fo1bnHUTwwbbffGaahG/DNE7CFWz3Y5ECD7BqmLql4cI0ay0lL5bfrIWo\nOs5aRSiqLgikrGSNySY130j48urAj7FiCiWbEFvl7KHQdkfWnjfnaPEhHtoW\nJ3MbeoOG+mx4yxE71MQGDrorWWfzDdM3R+Ui0nyDiwlGBz2KytgJf8XZKvNT\nnUDn\r\n=2OeN\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC7gpIJXUAXan6D/1juy9yLO/nmDzASHT+9u6S1EsOFYgIgBRd43zCm7H8Rm7yIqYupOcPzOp85Aayd50biCqjW8vk="}]},"maintainers":[{"name":"anonymous","email":"berlier.v@gmail.com"}],"_npmUser":{"name":"anonymous","email":"berlier.v@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/extract-math_1.0.5_1566439332947_0.07534729195174239"},"_hasShrinkwrap":false},"1.1.0":{"name":"extract-math","version":"1.1.0","description":"Extract TeX math environments","author":{"name":"Valentin Berlier","email":"berlier.v@gmail.com"},"license":"MIT","keywords":["latex","katex","tex","math"],"homepage":"https://github.com/vberlier/extract-math#readme","repository":{"type":"git","url":"git+https://github.com/vberlier/extract-math.git"},"bugs":{"url":"https://github.com/vberlier/extract-math/issues"},"main":"lib/index.js","scripts":{"lint":"tslint --project tsconfig.lint.json","test":"jest","dev":"tsc --watch","build":"tsc","clean":"rimraf lib","prepare":"npm run clean && npm run build","postversion":"git push --follow-tags"},"devDependencies":{"@types/jest":"^25.1.1","jest":"^25.1.0","rimraf":"^3.0.0","ts-jest":"^25.0.0","tslint":"^5.14.0","tslint-config-standard":"^9.0.0","typescript":"^3.3.4000"},"dependencies":{"escape-string-regexp":"^2.0.0"},"gitHead":"31520998ad12436d9b4ffa0c143f7eb118864fe6","_id":"extract-math@1.1.0","_nodeVersion":"11.15.0","_npmVersion":"6.7.0","dist":{"integrity":"sha512-YDbUcfio8SSXayqVz+MscpaJhTt1mUoFtLbrZKL7yVwjQZK9TVI9ebriSIBFH+Jy9YHctgS7OriMFxmr/dpWww==","shasum":"9f073d5709e22675aa6f1554f9a528c26d386eaf","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/extract-math/-/extract-math-1.1.0.tgz","fileCount":8,"unpackedSize":15635,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJed7cXCRA9TVsSAnZWagAAZtYP/R7RnH+06tAg698Bko4r\nf0vgqyA44LdmlWphTcCiGGREWweQp62ov7UkMvT4rE4yy5alSn8qAvxDkP5b\nigK+7cThALD9Z9bmp0xiur7lI6q0IpJp275qN2s0Wgxsw995DkfOmORRkCRZ\nMxt/sw8Shvn6XHNJt7DEK8FAdmVMO8lWxhoNqgFu9dU3VMSdaL2iWTHvLnsw\n3eamJl3L1Gn8WqlYkeoynEaMg6/VxT06VGxqDI7/uF/OfrET2wnM1OwSn2ji\nN1/pcULeAQUAvnP57CExGqc2IlmUKTQkkTG9q8oMVJzVkXHmwt4XK6WgiHvj\n2HU2YSGC7gOST6a3Q42SqqrTADaTwUPOaUnEMq9EKV48cRPM1reIEeXZzPwF\nchuK4nwvlCJ4w6hU/DfFXIngcr//xpiaGt8RRPIClJ8ryavhCq0AhHRWh5e1\n1JLPzgDobhs8TUTeVpOOqvQiJTNEodFPjUF6VgsBF8anj3kCd8B3aMu7tF+s\n65jsdNotURptV6yyW0wKB/zU71RRS2o5BzfdcidDJChCVIaVZyOf8WFEc0CT\nNMW9p8T8KxOPb6bPh1oxcOW/8Okul+UX+SIEhml1JnXDeieJRbyu93dplkGE\nD+t4Kcxwmuk382EPib+0aUDYPB2OYeNzWn2qLNSJbsC+I9H5ZiLSJMPmyzP1\nnhR+\r\n=GXoA\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHYtdVw7wKlE/IGQGZKrTLPSodG7BEsAVlfnHWCdEbgKAiA1EIctYFZeZaw0+hbULNXbyT1dSj8aKqfxV+dE0adVyQ=="}]},"maintainers":[{"name":"anonymous","email":"berlier.v@gmail.com"}],"_npmUser":{"name":"anonymous","email":"berlier.v@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/extract-math_1.1.0_1584903958487_0.11497715794255203"},"_hasShrinkwrap":false},"1.2.0":{"name":"extract-math","version":"1.2.0","description":"Extract TeX math environments","author":{"name":"Valentin Berlier","email":"berlier.v@gmail.com"},"license":"MIT","keywords":["latex","katex","tex","math"],"homepage":"https://github.com/vberlier/extract-math#readme","repository":{"type":"git","url":"git+https://github.com/vberlier/extract-math.git"},"bugs":{"url":"https://github.com/vberlier/extract-math/issues"},"main":"lib/index.js","types":"lib/index.d.ts","scripts":{"lint":"eslint --ignore-path ./.gitignore .","test":"jest","dev":"tsc --watch","build":"tsc","clean":"rimraf lib","prepare":"npm run clean && npm run build","postversion":"git push --follow-tags"},"devDependencies":{"@types/jest":"^26.0.0","@typescript-eslint/eslint-plugin":"^3.4.0","eslint":"^7.3.1","eslint-config-standard-with-typescript":"^18.0.2","eslint-plugin-import":"^2.21.2","eslint-plugin-node":"^11.1.0","eslint-plugin-promise":"^4.2.1","eslint-plugin-standard":"^4.0.1","jest":"^25.1.0","rimraf":"^3.0.0","ts-jest":"^25.0.0","typescript":"^3.9.5"},"dependencies":{"escape-string-regexp":"^4.0.0"},"gitHead":"3f8527a796b190454eaaf7fbab4527c5490801ee","_id":"extract-math@1.2.0","_nodeVersion":"11.15.0","_npmVersion":"6.7.0","dist":{"integrity":"sha512-FcawAyzKX8gLSftNDLU5XCh5KAgX6N+O1u1qf18qQf1iDJJJUw6tCkEv+0w/bM82M611uZCLv2wCLjVrbLeFkw==","shasum":"a217926e52289be9a851b68fd77cad003205d6ec","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/extract-math/-/extract-math-1.2.0.tgz","fileCount":8,"unpackedSize":19149,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe9faiCRA9TVsSAnZWagAAjtYP/iT2lPQisTvP4F+woJ9/\nnQQb94bc42Wvn5+OJK/W8qEXl/Als3iV9T+Baw0RfxeQ/PC2wtHaSRR41jdi\nBZhwLVCj/q5/xeIbwlS5vfzLAdKRdKRgIjiBFYgznTiwMoH8gzJUWkXQ1nqh\nxNY+QzYUpCSjEbDXY/bzPmnwv30TMTBPXoUGItPhuKvu2SdWK7MV9NqcXHjj\n3oqPgtYjucEEJfpzCEyqThnv9GRGK8eZ9lktqdiIsxqd2Gf42LHWVlEE2mLN\nsP6xwxGVh7yCadSCQA32zU1ZyY85LGIBOSm3G1AnzPEeFeAHwVOSOixVoG10\niwqzRH/ig5oA0KaTTnoFpX4MUEuD94n77pEmrysKoN3u/uaDNMhfgGjDlFF/\nBcZ/ofqJvm4PjiHeF5jeBEyWx2qNAnklqCVw1C41l867wzjAxH75hp7zr6lb\nswBUTBlHy5HscxskBszirDj0TI2SHFqkBEz51zgDOO13b9HhDii/MABGeeeL\nuAGlEFnh8uwMfvNYCXYAMWKFRrLEBk0OtSnGrYXwvI2g0wCH2F4lzv28pguI\nBrCS3pruu1XwYAX/Iuh3iy9hzhIyJTMWiEl8hvovqNxYkkB62FVozU9doL5s\nRfX/empp4FssK78IkttKZlafzkbDqyiYA8TEaYzgWfoNxiZHK+IeKuY459ox\njij9\r\n=6xnZ\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDwycAcK816wSJe4yld72pcyKZSOo9ZNaAX11tdiyFcHAIhAJVAc5ls//wx2cXF6fkt33yLRw2DnT4/PlKa3WIF2Ogm"}]},"maintainers":[{"name":"anonymous","email":"berlier.v@gmail.com"}],"_npmUser":{"name":"anonymous","email":"berlier.v@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/extract-math_1.2.0_1593177761556_0.6404679213166069"},"_hasShrinkwrap":false},"1.2.1":{"name":"extract-math","version":"1.2.1","description":"Extract TeX math environments","author":{"name":"Valentin Berlier","email":"berlier.v@gmail.com"},"license":"MIT","keywords":["latex","katex","tex","math"],"homepage":"https://github.com/vberlier/extract-math#readme","repository":{"type":"git","url":"git+https://github.com/vberlier/extract-math.git"},"bugs":{"url":"https://github.com/vberlier/extract-math/issues"},"main":"lib/index.js","types":"lib/index.d.ts","scripts":{"lint":"eslint --ignore-path ./.gitignore .","test":"jest","dev":"tsc --watch","build":"tsc","clean":"rimraf lib","prepare":"npm run clean && npm run build","postversion":"git push --follow-tags"},"devDependencies":{"@types/jest":"^26.0.0","@typescript-eslint/eslint-plugin":"^3.4.0","eslint":"^7.3.1","eslint-config-standard-with-typescript":"^18.0.2","eslint-plugin-import":"^2.21.2","eslint-plugin-node":"^11.1.0","eslint-plugin-promise":"^4.2.1","eslint-plugin-standard":"^4.0.1","jest":"^25.1.0","rimraf":"^3.0.0","ts-jest":"^25.0.0","typescript":"^3.9.5"},"dependencies":{"escape-string-regexp":"^4.0.0"},"gitHead":"ccbaec3266c58a9d08c58d7a10a70d83e9e53254","_id":"extract-math@1.2.1","_nodeVersion":"11.15.0","_npmVersion":"6.7.0","dist":{"integrity":"sha512-YxTGbayJ9woyxpFcn8kqhZo3YREMdEQlVAjB7/oCq23kr+/TqAZ8TWVvmdsz0y+41r9YT4vFdsOaxtzoCXEA1Q==","shasum":"ff68c445610895d5c289e98fdaadc94d8009c8a6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/extract-math/-/extract-math-1.2.1.tgz","fileCount":8,"unpackedSize":19166,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe9g1RCRA9TVsSAnZWagAAcB8QAIPzUkE4d7Mxwl2P1UK9\nW1reFA3ejR+8eYPM3LShluX/X2SsTzjs/+54nPfVJKqr0m9ez9uSX2Csx4Gy\nVwLJ8xcGcrPa1Kst2b2Yl6/k8tGTxNhLI0+laiaiGkGcVWtFEjm7iWC6EWlA\nt0hhCGWYftewDMXyhKM/JVhjcq/J/QreK+DX2Es/DpMIhL2XRoug6B/HsKMr\nP8YX/rk+KTX9HL1dyZWi58fDuS4XTcyNYJoBzdjelgc2sXA8U/4Cy/C47GAh\nyYMyqWIVq1D8j6sa9lcIKG5IoVcPYZaZhVWNj28Md8Ozw99RhJz4C32Q1zCb\nZqZIAzcQuYAqIIsMDH8nJ7W1/33+Imw1svD0F1c06n5ITlfE0H3O9Dv9zbwR\nZMo6UdNYvLXubyW0oo/S6zOGfvgj51dYdVpFU9+0R/v7RH2rJOcBva3UiHMU\ncYrFRE+cJkXsYtgWKE2JhEwOOQukAnTpX8PZKh3MM5EIjErqflpNC5C+jc9k\nJ0yaIc2cH4LPLr8NV27OyPEgAzJVgLWrFj5D58wlTe49RvZ6XDxeuiLK3LLa\n6t6TGRBZhO4Ee0CPSeJamzGnVyW3uMRpc62a8KNRMow2UtfSZr9I1IugFU4q\nLHagiGIGkgUN0GVx8vOp/IpnbDLbzYJEzDF0uVrAxmbsNyoyZpMeBqHOZRaD\nOjkR\r\n=7Sgc\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFUYTDJsACfFrkx4JLwmCtC1+lYpjg4A5v61Q3EdPrCRAiBqUzZhm1q7QLOXYo/92SslO6VDgjDTvuwT526u20USWQ=="}]},"maintainers":[{"name":"anonymous","email":"berlier.v@gmail.com"}],"_npmUser":{"name":"anonymous","email":"berlier.v@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/extract-math_1.2.1_1593183568661_0.7030196404170825"},"_hasShrinkwrap":false},"1.2.2":{"name":"extract-math","version":"1.2.2","description":"Extract TeX math environments","author":{"name":"Valentin Berlier","email":"berlier.v@gmail.com"},"license":"MIT","keywords":["latex","katex","tex","math"],"homepage":"https://github.com/vberlier/extract-math#readme","repository":{"type":"git","url":"git+https://github.com/vberlier/extract-math.git"},"bugs":{"url":"https://github.com/vberlier/extract-math/issues"},"main":"lib/index.js","types":"lib/index.d.ts","scripts":{"lint":"eslint --ignore-path ./.gitignore .","test":"jest","dev":"tsc --watch","build":"tsc","clean":"rimraf lib","prepare":"npm run clean && npm run build","postversion":"git push --follow-tags"},"devDependencies":{"@types/jest":"^26.0.0","@typescript-eslint/eslint-plugin":"^3.4.0","eslint":"^7.3.1","eslint-config-standard-with-typescript":"^18.0.2","eslint-plugin-import":"^2.21.2","eslint-plugin-node":"^11.1.0","eslint-plugin-promise":"^4.2.1","eslint-plugin-standard":"^4.0.1","jest":"^25.1.0","rimraf":"^3.0.0","ts-jest":"^25.0.0","typescript":"^3.9.5"},"dependencies":{"escape-string-regexp":"^4.0.0"},"gitHead":"3fdeffa1ef63cb682e4c72ccafd027667eb24ebf","_id":"extract-math@1.2.2","_nodeVersion":"11.15.0","_npmVersion":"6.7.0","dist":{"integrity":"sha512-Sz6timw7PeaeT+3U1+4WmrBPcDMeAj8WM//jIOgqHxwwKGNz/YBTk/NmyJVoFwb/Fb8xA9X2gEEYN64jfaQ89Q==","shasum":"552ccced086dc6f159e1cb9483298500668ecc81","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/extract-math/-/extract-math-1.2.2.tgz","fileCount":8,"unpackedSize":19053,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfE5DLCRA9TVsSAnZWagAABh4P/ilRmBgv1J1trmL7rama\npJB/4ZCDp9o2Q9gDhUCjh1qZIple0HBjjgQNIW5AaUVspLL/ke0zRyGvNUTc\nvzwBllYg21mZOuXc251MKSWHGUEZNDFsHl0Kbn9YJUo8Wg8PFJFRDANb3wuY\nIDl36PGxUsiA10Qx0BSl5kttuDARNeFCnOFe4V4b9DWD0WI6/Y9f8nPT22R2\nE8CGkOhyE46dB5UIgsGHu0BiGYdp6ud9tA8JlxkEJU1iQOWHhMWz5I9uXExH\n1VrBRmg4wxqun56QvNcdsuejEFMMaAlbYh/cbrRgXjewdkQqpem4Swzzc77H\njF3ziCr54eotVI8KEdNNLGcH/LKS/ii0J8VAyEkhjkqAoJ1XSR9tv+PcC1ud\nFWDH2n7p+Yq/EkYseJyqxkCicAK3VPcCbOFqhNBCGYjoFNO4MG1hQTjEM+o8\nFiNVjAYqBtt8EtRPGQ1UbX87vBv/Wdp3mFCoywc4ctnUyRG9XMVT9tpr7LZn\nI632TEOBsKCIdcr0Cz/W9nwCNOB0PJlna/CcQvuoHjhRlit/Aex8PREQ5vb6\nz6LS5+DWBmBuERHsNMHXVdnuiaxgrD6fEI3L73Ju454268pSqOYtveACnHDe\nBba+HP3uH2xi9sCjwie6kO3wJGgZA7FD8TWX2BRnKiqKXJql2BLNekdF3G4B\nWEnX\r\n=vayU\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCJeQ2tgE+vORRwNYktQOVkBMBbBZlEvslkkJEds+rd5AIhAJmAyQGxqS9xgGnOgyselELc+Mm3XpnTVPew1rCncTfh"}]},"maintainers":[{"name":"anonymous","email":"berlier.v@gmail.com"}],"_npmUser":{"name":"anonymous","email":"berlier.v@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/extract-math_1.2.2_1595117770603_0.44823499790608756"},"_hasShrinkwrap":false},"1.2.3":{"name":"extract-math","version":"1.2.3","description":"Extract TeX math environments","author":{"name":"Valentin Berlier","email":"berlier.v@gmail.com"},"license":"MIT","keywords":["latex","katex","tex","math"],"homepage":"https://github.com/vberlier/extract-math#readme","repository":{"type":"git","url":"git+https://github.com/vberlier/extract-math.git"},"bugs":{"url":"https://github.com/vberlier/extract-math/issues"},"main":"lib/index.js","types":"lib/index.d.ts","scripts":{"lint":"eslint --ignore-path ./.gitignore .","test":"jest","dev":"tsc --watch","build":"tsc","clean":"rimraf lib","prepare":"npm run clean && npm run build","postversion":"git push --follow-tags"},"devDependencies":{"@types/jest":"^26.0.0","@typescript-eslint/eslint-plugin":"^3.4.0","eslint":"^7.3.1","eslint-config-standard-with-typescript":"^18.0.2","eslint-plugin-import":"^2.21.2","eslint-plugin-node":"^11.1.0","eslint-plugin-promise":"^4.2.1","eslint-plugin-standard":"^4.0.1","jest":"^25.1.0","rimraf":"^3.0.0","ts-jest":"^25.0.0","typescript":"^3.9.5"},"dependencies":{"escape-string-regexp":"^4.0.0"},"gitHead":"732118d6905cc897af046b8910bcd15ca497137f","_id":"extract-math@1.2.3","_nodeVersion":"11.15.0","_npmVersion":"6.7.0","dist":{"integrity":"sha512-p/cuJe1ryOb2smpbVUdNccBhlbgCLk6Ay55JWEIPEALMHqWRIiRlI4rtYbyxz9dbWLaLGrPx7cwuUE/lCy8maQ==","shasum":"a2f77b61b16bc36bdcd27f8f888acd9252fea688","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/extract-math/-/extract-math-1.2.3.tgz","fileCount":8,"unpackedSize":19053,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfE5IxCRA9TVsSAnZWagAACAMP/R5rDlGsdRiHJ917JvMT\nb36CA/YSyGSWFd27uH3sXbMpD04GptVw4A4vXOX0+JCbnnApa/KRKRvAKXPE\ndklvnnB4dc7BndFIzDyy1pvMB+dEo5pxLsfDWqkXFRYbsArXGTO/hsj5vori\nP6yQpPqeMf/C0e2MIu6+/op0161KzWVSrHz4oKpVm8w6ADJeu2qBt4LawmYk\nUZAQPNiZ81TDZL26X/2V/YD1UHFFoMN8ZOi7/CPxS10L6m8usvKeFIR4pcAe\np8xivKci1aCfOnQJ1mvEkl3EJUkHx2JC31hovZxZsqRUEe0nwZryDz5nQtiu\n7oPdF6JiJMC2cAO5F35/gNOZqw7KojQ1YTpCAeNftBfnMAZb6cA0CjlYFJC+\njFo2z3TTDGqP0nqATo5U+rae7dMpYDUJIP336dOww8VYfJKP01EFl7AUdodD\nfv/VaqW6L1QcpfVFkIwlJXA+vsY4KAb/Y1mqnzeKSCYYG/R/09O0nelzfFlN\n+1Brl6568qi2o2uxTgR1SdZ+meGRLYH5+gdT9cWvq2+mtN9Ht9sTLkE2FCyq\netjxcQdM6kSExjXVJ9+5S4roUg5onMpD0HfpZGIP9oEWbpjmmQbJwSzoHjE9\nDvnWm9zCA2QwROG59zJuRkXXmr1swkSsiqtawFsEEfZX87X3yG0TKpBKAyI+\ngQdS\r\n=hBpm\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICcKHJ0ewUlO920q1ZsjvKaAHq4B42RhJ0wFfDICCn9HAiEAj44cCyCihL7/PYJGQJx0yQJ1SSe3IEtxy/8HZ+Y3fvw="}]},"maintainers":[{"name":"anonymous","email":"berlier.v@gmail.com"}],"_npmUser":{"name":"anonymous","email":"berlier.v@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/extract-math_1.2.3_1595118128801_0.5213635591711301"},"_hasShrinkwrap":false}},"name":"extract-math","time":{"created":"2019-03-22T15:17:12.290Z","0.1.0":"2019-03-22T15:17:12.510Z","modified":"2022-05-02T01:14:25.856Z","0.1.1":"2019-03-22T16:30:38.660Z","0.1.2":"2019-03-22T16:35:40.181Z","0.1.3":"2019-03-22T16:40:45.733Z","0.1.4":"2019-03-22T18:09:36.694Z","0.1.5":"2019-03-22T18:48:40.113Z","0.1.6":"2019-03-22T20:15:27.234Z","1.0.0":"2019-03-22T21:39:24.135Z","1.0.1":"2019-03-22T21:53:08.056Z","1.0.2":"2019-03-22T21:55:23.615Z","1.0.3":"2019-03-31T17:51:59.673Z","1.0.4":"2019-07-15T08:32:54.763Z","1.0.5":"2019-08-22T02:02:13.084Z","1.1.0":"2020-03-22T19:05:58.658Z","1.2.0":"2020-06-26T13:22:41.721Z","1.2.1":"2020-06-26T14:59:29.106Z","1.2.2":"2020-07-19T00:16:10.815Z","1.2.3":"2020-07-19T00:22:08.900Z"},"readmeFilename":"README.md","homepage":"https://github.com/vberlier/extract-math#readme"}