{"_id":"mathjax-node","_rev":"28-22e2b6b754f9f82c80d066b8d27ca8d4","name":"mathjax-node","time":{"modified":"2022-06-19T16:52:04.164Z","created":"2014-11-17T13:12:30.242Z","0.1.1":"2014-11-17T13:12:30.242Z","0.4.0":"2015-10-28T17:10:34.964Z","0.5.0-rc.1":"2016-02-15T11:05:48.504Z","0.5.0":"2016-02-15T11:24:58.375Z","0.5.1":"2016-02-22T10:23:52.937Z","0.5.2":"2016-11-30T08:13:39.608Z","1.0.0-beta.0":"2017-02-21T19:05:32.458Z","1.0.0":"2017-03-14T16:50:10.450Z","1.0.1":"2017-04-07T09:50:37.243Z","1.0.2":"2017-05-02T14:22:36.930Z","1.0.3":"2017-05-02T15:00:48.242Z","1.1.0":"2017-05-04T06:32:19.667Z","1.1.1":"2017-08-16T14:14:16.284Z","1.2.0-beta.0":"2017-08-23T06:57:07.297Z","1.2.0":"2017-08-23T07:22:23.812Z","1.2.1":"2017-09-26T07:30:18.223Z","1.3.0":"2017-12-29T16:27:54.586Z","2.0.0":"2018-02-06T00:50:10.123Z","2.0.1":"2018-02-06T21:10:54.814Z","2.1.0":"2018-03-20T13:02:43.278Z","2.1.1":"2018-06-05T13:35:48.321Z"},"maintainers":[{"email":"manager@mathjax.org","name":"mjadmin"}],"dist-tags":{"latest":"2.1.1"},"description":"API's for calling MathJax from node.js","readme":"# mathjax-node [![Build Status](https://travis-ci.org/mathjax/MathJax-node.svg?branch=develop)](https://travis-ci.org/mathjax/MathJax-node)\n\nThis repository contains a library that provides an API to call [MathJax](https://github.com/mathjax/mathjax) from Node.js programs. The API converts individual math expressions (in any of MathJax's input formats) into HTML (with CSS), SVG, or MathML code.\n\nUse\n\n```\nnpm install mathjax-node\n```\n\nto install mathjax-node and its dependencies.\n\n**Note:**\nThe current version of mathjax-node requires Node.js v6 or later, and uses jsdom version 11.\n\n## Getting started\n\nmathjax-node provides a library, `./lib/main.js`. Below is a very minimal example for using it - the tests and the examples mentioned above provide more advanced examples.\n\n```javascript\n// a simple TeX-input example\nvar mjAPI = require(\"mathjax-node\");\nmjAPI.config({\n  MathJax: {\n    // traditional MathJax configuration\n  }\n});\nmjAPI.start();\n\nvar yourMath = 'E = mc^2';\n\nmjAPI.typeset({\n  math: yourMath,\n  format: \"TeX\", // or \"inline-TeX\", \"MathML\"\n  mml:true,      // or svg:true, or html:true\n}, function (data) {\n  if (!data.errors) {console.log(data.mml)}\n  // will produce:\n  // <math xmlns=\"http://www.w3.org/1998/Math/MathML\" display=\"block\">\n  //   <mi>E</mi>\n  //   <mo>=</mo>\n  //   <mi>m</mi>\n  //   <msup>\n  //     <mi>c</mi>\n  //     <mn>2</mn>\n  //   </msup>\n  // </math>\n});\n```\n\n## Documentation\n\nmathjax-node exports three methods, `config`, `start`, `typeset`.\n\n### `config(options)`\n\nThe `config` method is used to set _global_ configuration options. Its default options are\n\n```javascript\n{\n  displayMessages: false,    // determines whether Message.Set() calls are logged\n  displayErrors:   true,     // determines whether error messages are shown on the console\n  undefinedCharError: false, // determines whether \"unknown characters\" (i.e., no glyph in the configured fonts) are saved in the error array\n  extensions: '',            // a convenience option to add MathJax extensions\n  fontURL: 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/fonts/HTML-CSS', // for webfont urls in the CSS for HTML output\n  paths: {},                  // configures custom path variables (e.g., for third party extensions, cf. test/config-third-party-extensions.js)\n  MathJax: { }               // standard MathJax configuration options, see https://docs.mathjax.org for more detail.\n}\n```\n\n**Note.** Changes to these options require a restart of the API using the `start()` method (see below).\n\n### `start()`\n\nThe `start` method start (and restarts) mathjax-node. This allows reconfiguration.\n\n**Note.** This is done automatically when `typeset` is first called (see below).\n\n### `typeset(options[, callback])`\n\nThe `typeset` method is the main method of mathjax-node. It expects a configuration object `options` and optionally a callback.\n\nIf no `callback` is passed, it will return a Promise.\n\nOnce called, `typeset` can be called repeatedly and will optionally store information across calls (see `state` below).\n\nThe following are the default input options.\n\n```javascript\n{\n  ex: 6,                          // ex-size in pixels\n  width: 100,                     // width of container (in ex) for linebreaking and tags\n  useFontCache: true,             // use <defs> and <use> in svg output?\n  useGlobalCache: false,          // use common <defs> for all equations?\n  linebreaks: false,              // automatic linebreaking\n  equationNumbers: \"none\",        // automatic equation numbering (\"none\", \"AMS\" or \"all\")\n  cjkCharWidth: 13,               // width of CJK character\n\n  math: \"\",                       // the math string to typeset\n  format: \"TeX\",                  // the input format (TeX, inline-TeX, AsciiMath, or MathML)\n  xmlns: \"mml\",                   // the namespace to use for MathML\n\n  html: false,                    // generate HTML output\n  htmlNode: false,                // generate HTML output as jsdom node\n  css: false,                     // generate CSS for HTML output\n  mml: false,                     // generate MathML output\n  mmlNode: false,                 // generate MathML output as jsdom node\n  svg: false,                     // generate SVG output\n  svgNode: false,                 // generate SVG output as jsdom node\n\n  speakText: true,                // add textual alternative (for TeX/asciimath the input string, for MathML a dummy string)\n\n  state: {},                      // an object to store information from multiple calls (e.g., <defs> if useGlobalCache, counter for equation numbering if equationNumbers ar )\n  timeout: 10 * 1000,             // 10 second timeout before restarting MathJax\n}\n```\n\n### `Promise.resolve(result,options)` / `Promise.reject(errors)` / `callback(result, options)`\n\nmathjax-node returns two objects to `Promise.resolve` or `callback`: a `result` object and the original input `options`.\n\nThe `result` object will contain (at most) the following structure:\n\n```javascript\n{\n  errors:                     // an array of MathJax error messages if any errors occurred\n  mml:                        // a string of MathML markup if requested\n  mmlNode:                    // a jsdom node of MathML markup if requested\n  html:                       // a string of HTML markup if requested\n  htmlNode:                   // a jsdom node of HTML markup if requested\n  css:                        // a string of CSS if HTML was requested\n  svg:                        // a string of SVG markup if requested\n  svgNode:                    // a jsdom node of SVG markup if requested\n  style:                      // a string of CSS inline style if SVG requested\n  height:                     // a string containing the height of the SVG output if SVG was requested\n  width:                      // a string containing the width of the SVG output if SVG was requested\n  speakText:                  // a string of speech text if requested\n\n  state: {                    // the state object (if useGlobalCache or equationNumbers is set)\n           glyphs:            // a collection of glyph data\n           defs :             // a string containing SVG def elements\n           AMS: {\n                startNumber:  // the current starting equation number\n                labels:       // the set of labels\n                IDs:          // IDs used in previous equations\n             }\n         }\n}\n```\n\nIf the `errors` array is non-empty, the Promise will reject, and be passed the `errors` array.\n\nThe `options` contains the configuration object passed to `typeset`; this can be useful for passing other data along or for identifying which `typeset()` call is associated with this (`callback`) call (in case you use the same `callback` function for more than one `typeset()`).\n\n## Change History\n\n### Breaking Changes in v2.0:\n\nmathjax-node v2.0 makes breaking changes as follows:\n\n- [CHANGED] mathjax-node now requires version 6 of Node.js (the minimum used to be Node.js version 4).\n- [CHANGED] mathjax-node now uses version 10 of jsdom.  Since the jsdom API changed from 9 to 10, that means if you used jsdom in your code that calls mathjax-node, you may need to update how you call jsdom.\n\n\n### Breaking Changes in v1.0:\n\nmathjax-node v1.0 makes breaking changes to the following features from the pre-releases.\n\n- [CHANGED] `lib/mj-single.js` has been renamed to `lib/main.js` (and set as `main` in `package.json`, i.e., `require('mathjax-node')` will load it.\n- [REMOVED] `lib/mj-page.js` (API for processing HTML-fragments) and related CLI tools\n- [REMOVED] speech-rule-engine integration\n- [REMOVED] PNG generation\n- [REMOVED] CLI tools in `bin/`\n\nThese features can easily be recreated in separate modules for greater flexibility. For examples, see\n\n- [mathjax-node-cli](https://github.com/mathjax/mathjax-node-cli/)\n- [mathjax-node-page](https://github.com/pkra/mathjax-node-page/)\n- [mathjax-node-sre](https://github.com/pkra/mathjax-node-sre)\n- [mathjax-node-svg2png](https://github.com/pkra/mathjax-node-svg2png)\n\n---\n\nBe sure to also check out other [projects on NPM that depend on mathjax-node](https://www.npmjs.com/browse/depended/mathjax-node).\n\n","versions":{"0.4.0":{"name":"mathjax-node","version":"0.4.0","description":"API's for calling MathJax from node.js","keywords":["MathJax","math","svg","MathML","TeX","AsciiMath"],"maintainers":[{"name":"mathjax","email":"manager@mathjax.org"}],"bugs":{"url":"http://github.com/mathjax/MathJax-node/issues"},"license":"Apache-2.0","repository":{"type":"git","url":"git://github.com/mathjax/MathJax-node.git"},"dependencies":{"jsdom":"^6.0.0","speech-rule-engine":"*","yargs":"^3.0.0","MathJax":"https://github.com/mathjax/MathJax/tarball/mathjax-node-2.5.1"},"scripts":{"test":"tape test/*.js"},"main":"./lib/mj-page.js","devDependencies":{"tape":"^4.0.3"},"gitHead":"b643191e91082916940577685e2b0813e37b7d3a","homepage":"https://github.com/mathjax/MathJax-node#readme","_id":"mathjax-node@0.4.0","_shasum":"b590639f3e5c9af5a45be98d3a2f372d9eba6576","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.1","_npmUser":{"name":"mathjax","email":"manager@mathjax.org"},"dist":{"shasum":"b590639f3e5c9af5a45be98d3a2f372d9eba6576","tarball":"https://registry.npmjs.org/mathjax-node/-/mathjax-node-0.4.0.tgz","integrity":"sha512-oKJm3yK7ZaJ5U6UDw4enCRfZfS8wakskdbTBqBzOpIJF9Uld24QqTvHw2vGU32jJx8ZFT4cBQfve94Nf+e7S6A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFiyO1BMozuSJknFMWPZwxNhEhrv+LPqh3I3NP8Jt3emAiBMtjV144Mty7Xe+WtgXSEN8EmyqSqjr86W9WgEtzawhw=="}]},"directories":{}},"0.5.0-rc.1":{"name":"mathjax-node","version":"0.5.0-rc.1","description":"API's for calling MathJax from node.js","keywords":["MathJax","math","svg","HTML","MathML","TeX","AsciiMath"],"maintainers":[{"name":"mathjax","email":"manager@mathjax.org"}],"bugs":{"url":"http://github.com/mathjax/MathJax-node/issues"},"license":"Apache-2.0","repository":{"type":"git","url":"git://github.com/mathjax/MathJax-node.git"},"dependencies":{"jsdom":"7.*","mathjax":"*","speech-rule-engine":"*","yargs":"3.*"},"scripts":{"test":"tape test/*.js"},"main":"./lib/mj-single.js","devDependencies":{"tape":"^4.0.3"},"gitHead":"cb33e7774eb7caf879434108d099d9a5d67e16b9","homepage":"https://github.com/mathjax/MathJax-node#readme","_id":"mathjax-node@0.5.0-rc.1","_shasum":"e97c76e08c0dcdb8bb375edb661039cc0e353155","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.3.0","_npmUser":{"name":"mathjax","email":"manager@mathjax.org"},"dist":{"shasum":"e97c76e08c0dcdb8bb375edb661039cc0e353155","tarball":"https://registry.npmjs.org/mathjax-node/-/mathjax-node-0.5.0-rc.1.tgz","integrity":"sha512-70i8hDYBxefrnHdcJ+ESBGBDUk9edGG43yOPgmctTsl2s0Me76hx+S6cRxOKb5ybNNyp+fFfuht+zneFh/r6hw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDsPwau4mDHMeM9bHnwGOADJg+fpQ9Qc19FQr0OnJdU2gIhAJfrmIJmi9WGuKDZhoE3bo2+3ECoAyCdOoeRkNjL6AVs"}]},"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/mathjax-node-0.5.0-rc.1.tgz_1455534346274_0.06273776246234775"},"directories":{}},"0.5.0":{"name":"mathjax-node","version":"0.5.0","description":"API's for calling MathJax from node.js","keywords":["MathJax","math","svg","HTML","MathML","TeX","AsciiMath"],"maintainers":[{"name":"mathjax","email":"manager@mathjax.org"}],"bugs":{"url":"http://github.com/mathjax/MathJax-node/issues"},"license":"Apache-2.0","repository":{"type":"git","url":"git://github.com/mathjax/MathJax-node.git"},"dependencies":{"jsdom":"7.*","mathjax":"*","speech-rule-engine":"*","yargs":"3.*"},"scripts":{"test":"tape test/*.js"},"main":"./lib/mj-single.js","devDependencies":{"tape":"^4.0.3"},"gitHead":"f3f93426b0d609e86b06d06c73d1034ab21b0ca3","homepage":"https://github.com/mathjax/MathJax-node#readme","_id":"mathjax-node@0.5.0","_shasum":"d149b0c98eacc94eb6c4ec46a4045fbc6dc27e8f","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.3.0","_npmUser":{"name":"mathjax","email":"manager@mathjax.org"},"dist":{"shasum":"d149b0c98eacc94eb6c4ec46a4045fbc6dc27e8f","tarball":"https://registry.npmjs.org/mathjax-node/-/mathjax-node-0.5.0.tgz","integrity":"sha512-uD6zFvFJSoQ1HRMqN5MUY4UmtD29/1cwBtaT1wrOL8PcA7ZdSBwQAyfrJBH2nCzoqndJx7F6Ca4C77/rRHB+zg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGB8TpB4ol5udKYQqoUXVl47JT0a11nzd70J0dy1nvTrAiA+m3oDR+hLveKy/GLJ+e+Y3hGO7OGNaIGStimaGJNDxQ=="}]},"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/mathjax-node-0.5.0.tgz_1455535496097_0.7076487981248647"},"directories":{}},"0.5.1":{"name":"mathjax-node","version":"0.5.1","description":"API's for calling MathJax from node.js","keywords":["MathJax","math","svg","HTML","MathML","TeX","AsciiMath"],"maintainers":[{"name":"mathjax","email":"manager@mathjax.org"}],"bugs":{"url":"http://github.com/mathjax/MathJax-node/issues"},"license":"Apache-2.0","repository":{"type":"git","url":"git://github.com/mathjax/MathJax-node.git"},"dependencies":{"jsdom":"7.*","mathjax":"*","speech-rule-engine":"*","yargs":"3.*"},"scripts":{"test":"tape test/*.js"},"main":"./lib/mj-single.js","devDependencies":{"tape":"^4.0.3"},"gitHead":"83e67a29482b2f63e1b0e83bb8778a81a0685e4f","homepage":"https://github.com/mathjax/MathJax-node#readme","_id":"mathjax-node@0.5.1","_shasum":"7ff68b6d3b6bcb71312722b3be2aa8d14cf6aace","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.3.1","_npmUser":{"name":"mathjax","email":"manager@mathjax.org"},"dist":{"shasum":"7ff68b6d3b6bcb71312722b3be2aa8d14cf6aace","tarball":"https://registry.npmjs.org/mathjax-node/-/mathjax-node-0.5.1.tgz","integrity":"sha512-6ySj+i5UfELC8H1jNtg+43o4ZVm5Fs5o4VoREvRNDAWXeJ/VllslEvkU0p1YKI4QjAVMEd2SvHTtOzgn1l3rGA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDQ6LM3nqP3WqTujh3LVSuhK9ZzK4/b96CqhmG2l5ttoAiEA9S1ppcApxQK7JLucsAJsTQcOFE1+X0J7omJI3WzRjmg="}]},"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/mathjax-node-0.5.1.tgz_1456136629417_0.7284265658818185"},"directories":{}},"0.5.2":{"name":"mathjax-node","version":"0.5.2","description":"API's for calling MathJax from node.js","keywords":["MathJax","math","svg","HTML","MathML","TeX","AsciiMath"],"maintainers":[{"name":"mathjax","email":"manager@mathjax.org"}],"bugs":{"url":"http://github.com/mathjax/MathJax-node/issues"},"license":"Apache-2.0","repository":{"type":"git","url":"git://github.com/mathjax/MathJax-node.git"},"dependencies":{"jsdom":"7.*","mathjax":"*","speech-rule-engine":"*","yargs":"3.*"},"scripts":{"test":"tape test/*.js"},"main":"./lib/mj-single.js","devDependencies":{"tape":"^4.0.3"},"gitHead":"2811aad5d066f9d54dbb35562ea3b035089db33d","homepage":"https://github.com/mathjax/MathJax-node#readme","_id":"mathjax-node@0.5.2","_shasum":"24ce7a9e1abf695e7c17cb73ee72fc2754a49f8f","_from":".","_npmVersion":"2.15.11","_nodeVersion":"4.6.2","_npmUser":{"name":"mathjax","email":"manager@mathjax.org"},"dist":{"shasum":"24ce7a9e1abf695e7c17cb73ee72fc2754a49f8f","tarball":"https://registry.npmjs.org/mathjax-node/-/mathjax-node-0.5.2.tgz","integrity":"sha512-YSGv0cQTiIg9d+QEDGCCB2EPdShP7mhdXOw/8hMhBVbJiYzcaqT5kskdaXQyLkp9uucHZEHK9TXZSZ6sGzt0LA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIE2d6KiNo142E2iSZaLBetIYSTu8GOYOzxaC0snQAyNwAiEAkWMVco2FCmgc8Zt7Sr3OT5Bsj4LI/QARV2q1MmIzhZA="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/mathjax-node-0.5.2.tgz_1480493617725_0.3254264439456165"},"directories":{}},"1.0.0-beta.0":{"name":"mathjax-node","version":"1.0.0-beta.0","description":"API's for calling MathJax from node.js","keywords":["MathJax","math","svg","HTML","MathML","TeX","AsciiMath"],"maintainers":[{"name":"mathjax","email":"manager@mathjax.org"}],"bugs":{"url":"http://github.com/mathjax/MathJax-node/issues"},"license":"Apache-2.0","repository":{"type":"git","url":"git://github.com/mathjax/MathJax-node.git"},"dependencies":{"jsdom":"7.0 - 9.8","mathjax":"*","yargs":"3.*"},"scripts":{"test":"tape test/*.js"},"main":"./lib/main.js","devDependencies":{"tape":"^4.0.3"},"gitHead":"c013207fd9957a6ac91042bad7d956dbeed9764e","homepage":"https://github.com/mathjax/MathJax-node#readme","_id":"mathjax-node@1.0.0-beta.0","_shasum":"6ade91d8762f63c7005dc7b38bdc4fa7983b2c38","_from":".","_npmVersion":"2.15.11","_nodeVersion":"4.7.3","_npmUser":{"name":"mathjax","email":"manager@mathjax.org"},"dist":{"shasum":"6ade91d8762f63c7005dc7b38bdc4fa7983b2c38","tarball":"https://registry.npmjs.org/mathjax-node/-/mathjax-node-1.0.0-beta.0.tgz","integrity":"sha512-YT7+jVe9sezhSgV+SHkhMbUloj1IT/qN1TXZY/WYf2qAMvAlvvXLa3dZ3zYZnD6J2CLRAx2yqoxB87TP2D6NOw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDYYyAdw0lCm5l0xfttV1EV4DcoXPzyBzKSi7GSomQV1AIgK06jq2m9ZxkA6bMrrOP7uaozJMkGf1hNzX/M4QykFsc="}]},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/mathjax-node-1.0.0-beta.0.tgz_1487703931754_0.9281658662948757"},"directories":{}},"1.0.0":{"name":"mathjax-node","version":"1.0.0","description":"API's for calling MathJax from node.js","keywords":["MathJax","math","svg","HTML","MathML","TeX","AsciiMath"],"maintainers":[{"name":"mathjax","email":"manager@mathjax.org"}],"bugs":{"url":"http://github.com/mathjax/MathJax-node/issues"},"license":"Apache-2.0","repository":{"type":"git","url":"git://github.com/mathjax/MathJax-node.git"},"dependencies":{"jsdom":"7.0 - 9.8","mathjax":"*"},"scripts":{"test":"tape test/*.js"},"main":"./lib/main.js","devDependencies":{"tape":"^4.0.3"},"gitHead":"f96453e12848ed8c42c0e38f9867317b595163f1","homepage":"https://github.com/mathjax/MathJax-node#readme","_id":"mathjax-node@1.0.0","_shasum":"d35a3989783814c61a949a21d61309e3b68f9112","_from":".","_npmVersion":"2.15.11","_nodeVersion":"4.8.0","_npmUser":{"name":"mathjax","email":"manager@mathjax.org"},"dist":{"shasum":"d35a3989783814c61a949a21d61309e3b68f9112","tarball":"https://registry.npmjs.org/mathjax-node/-/mathjax-node-1.0.0.tgz","integrity":"sha512-70+YklyJTAv/ETvf0rlXJL0lx3dBLLcD0vMykg1HLu+PDuwGk5+y/VN8dcKpJbjco8qKkX6TDfJAuguvYrhBYw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDDjyQX1BGKNShIvZYj+FHbJ3EgNSiGSJclCV3Z03mJDgIhAPaT1IMeRLRaPB5cLDfX4riZ3VWjK34vZUuwJabws70w"}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/mathjax-node-1.0.0.tgz_1489510208469_0.41614230745472014"},"directories":{}},"1.0.1":{"name":"mathjax-node","version":"1.0.1","description":"API's for calling MathJax from node.js","keywords":["MathJax","math","svg","HTML","MathML","TeX","AsciiMath"],"maintainers":[{"name":"mathjax","email":"manager@mathjax.org"}],"bugs":{"url":"http://github.com/mathjax/MathJax-node/issues"},"license":"Apache-2.0","repository":{"type":"git","url":"git://github.com/mathjax/MathJax-node.git"},"dependencies":{"jsdom":"7.0 - 9.8","mathjax":"*"},"scripts":{"test":"tape test/*.js"},"main":"./lib/main.js","devDependencies":{"tape":"^4.0.3"},"gitHead":"b5139730a5ce072031a7c5e20694be460a2f0a11","homepage":"https://github.com/mathjax/MathJax-node#readme","_id":"mathjax-node@1.0.1","_shasum":"756ca144326626b9fa489ca06d47f6bcbb3422ca","_from":".","_npmVersion":"2.15.11","_nodeVersion":"4.8.2","_npmUser":{"name":"mathjax","email":"manager@mathjax.org"},"dist":{"shasum":"756ca144326626b9fa489ca06d47f6bcbb3422ca","tarball":"https://registry.npmjs.org/mathjax-node/-/mathjax-node-1.0.1.tgz","integrity":"sha512-b+ZdQ0SoBoeILQCcwzfRktl5L5XGQq2TFFa7d13ghR7n0eqYtPrkym6PLqsXPXDltwXhvaxbvkYLDbeCB1eoyw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDcAgBjTt5l50/gAdh8YZpM7AopJMoQ1H0eJSqnslkk5AIgUeEG+bin/zWgSELxq3CdJ1t1XFaUKmenvw6x2hua3hw="}]},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/mathjax-node-1.0.1.tgz_1491558636377_0.9091077949851751"},"directories":{}},"1.0.2":{"name":"mathjax-node","version":"1.0.2","description":"API's for calling MathJax from node.js","keywords":["MathJax","math","svg","HTML","MathML","TeX","AsciiMath"],"maintainers":[{"name":"mathjax","email":"manager@mathjax.org"}],"bugs":{"url":"http://github.com/mathjax/MathJax-node/issues"},"license":"Apache-2.0","repository":{"type":"git","url":"git://github.com/mathjax/MathJax-node.git"},"dependencies":{"jsdom":"7.0 - 9.8","mathjax":"*"},"scripts":{"test":"tape test/*.js"},"main":"./lib/main.js","devDependencies":{"tape":"^4.0.3"},"gitHead":"356e3cd05abcc8fa53dc91868bf841594247c8d9","homepage":"https://github.com/mathjax/MathJax-node#readme","_id":"mathjax-node@1.0.2","_shasum":"ade26b72b64443e4b7e92f36e56c1a1e4b4bfad9","_from":".","_npmVersion":"2.15.11","_nodeVersion":"4.8.2","_npmUser":{"name":"mathjax","email":"manager@mathjax.org"},"dist":{"shasum":"ade26b72b64443e4b7e92f36e56c1a1e4b4bfad9","tarball":"https://registry.npmjs.org/mathjax-node/-/mathjax-node-1.0.2.tgz","integrity":"sha512-M1IQRvt5FMLgFZ7c++IMUR49yeeGYLAHhA5y5FQke9kV9V0ocWcqGFaSfj9Oz4Spz0FSdegenQqjGog/br64vA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHxickMwGrxApnMtZkRmCsHO7C9OGrLRWEQbjvuu6MauAiAj6qSYeBZSLD8Os65PWX5GkQLjSezkTPPwHb4YJ/4R9g=="}]},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/mathjax-node-1.0.2.tgz_1493734956017_0.47525774827226996"},"directories":{}},"1.0.3":{"name":"mathjax-node","version":"1.0.3","description":"API's for calling MathJax from node.js","keywords":["MathJax","math","svg","HTML","MathML","TeX","AsciiMath"],"maintainers":[{"name":"mathjax","email":"manager@mathjax.org"}],"bugs":{"url":"http://github.com/mathjax/MathJax-node/issues"},"license":"Apache-2.0","repository":{"type":"git","url":"git://github.com/mathjax/MathJax-node.git"},"dependencies":{"jsdom":"7.0 - 9.8","mathjax":"*"},"scripts":{"test":"tape test/*.js"},"main":"./lib/main.js","devDependencies":{"tape":"^4.0.3"},"gitHead":"2f4bf95f837da3a361fe600f8460795a1852a964","homepage":"https://github.com/mathjax/MathJax-node#readme","_id":"mathjax-node@1.0.3","_shasum":"9e2aebf5424ef40d1bcedfe0f23b1f0de45b19ad","_from":".","_npmVersion":"2.15.11","_nodeVersion":"4.8.2","_npmUser":{"name":"mathjax","email":"manager@mathjax.org"},"dist":{"shasum":"9e2aebf5424ef40d1bcedfe0f23b1f0de45b19ad","tarball":"https://registry.npmjs.org/mathjax-node/-/mathjax-node-1.0.3.tgz","integrity":"sha512-6zzq3FFYidpEG+oVwjh8+pPECmkCEsj2lQVkqkIa6z8e6+yHSgEHgYENkZ8IBuXD84fiDChTJw/ihTbN6PSODw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCfQfEq97gFquUtqeE6sSghu//o+zHmg4W3lFnPhGOZJAIhAOt9osGUkJ2D5qRuggSgpZnOkx1OBbwhQENE9+alNqlg"}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/mathjax-node-1.0.3.tgz_1493737246259_0.8554412878584117"},"directories":{}},"1.1.0":{"name":"mathjax-node","version":"1.1.0","description":"API's for calling MathJax from node.js","keywords":["MathJax","math","svg","HTML","MathML","TeX","AsciiMath"],"maintainers":[{"name":"mathjax","email":"manager@mathjax.org"}],"bugs":{"url":"http://github.com/mathjax/MathJax-node/issues"},"license":"Apache-2.0","repository":{"type":"git","url":"git://github.com/mathjax/MathJax-node.git"},"dependencies":{"jsdom":"7.0 - 9.8","mathjax":"*"},"scripts":{"test":"tape test/*.js"},"main":"./lib/main.js","devDependencies":{"tape":"^4.0.3"},"gitHead":"8720f3067b4ff65c9272e1a36de91c12331a1121","homepage":"https://github.com/mathjax/MathJax-node#readme","_id":"mathjax-node@1.1.0","_shasum":"96cce47fa2900245322e10cd79ec97f47f6a8ab6","_from":".","_npmVersion":"2.15.11","_nodeVersion":"4.8.3","_npmUser":{"name":"mathjax","email":"manager@mathjax.org"},"dist":{"shasum":"96cce47fa2900245322e10cd79ec97f47f6a8ab6","tarball":"https://registry.npmjs.org/mathjax-node/-/mathjax-node-1.1.0.tgz","integrity":"sha512-kg9zOe9e5HqwSUJbwHTiVoCug4FNSobVxPXE1KDX3LEn/JvGTJ7mu+8danhlZFToyyqB+azUshZoneYJgOf+1Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCES1DK0Fkd7+GP9VWX3MxyebN0TmKyHzSJx7cK4IJo+gIgJ7sLix8scyG9ymeV/0/l/wAo9YpkjyMFhkh4JPficZw="}]},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/mathjax-node-1.1.0.tgz_1493879538296_0.029447984416037798"},"directories":{}},"1.1.1":{"name":"mathjax-node","version":"1.1.1","description":"API's for calling MathJax from node.js","keywords":["MathJax","math","svg","HTML","MathML","TeX","AsciiMath"],"maintainers":[{"email":"manager@mathjax.org","name":"mjadmin"}],"bugs":{"url":"http://github.com/mathjax/MathJax-node/issues"},"license":"Apache-2.0","repository":{"type":"git","url":"git://github.com/mathjax/MathJax-node.git"},"dependencies":{"jsdom":"7.0 - 9.12","mathjax":"*"},"scripts":{"test":"tape test/*.js"},"main":"./lib/main.js","devDependencies":{"tape":"^4.0.3"},"gitHead":"41eb7bf124cb4177a0b03a33a7330b01f4934145","homepage":"https://github.com/mathjax/MathJax-node#readme","_id":"mathjax-node@1.1.1","_npmVersion":"5.3.0","_nodeVersion":"8.3.0","_npmUser":{"name":"mjadmin","email":"manager@mathjax.org"},"dist":{"integrity":"sha512-hXG7yqcu5IG37803RykaAhe+LaggqX8eay2cU7zmN1kog1r2B6SCv2s8PmISsKhf+aXEKI3NBFxa/7757y9QXw==","shasum":"c9cb4c4d55f08e5116c9c49d01a8d226404a0405","tarball":"https://registry.npmjs.org/mathjax-node/-/mathjax-node-1.1.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDwp0m4OTqQmtUsG3Y9qt1l3vtPFIjIbXNbApw7jCka3QIgFHCFj3jXbpTUyRdSV5k0KYUZ4vJIS0f/HxYgAHxGMvU="}]},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mathjax-node-1.1.1.tgz_1502892855171_0.06489141820929945"},"directories":{}},"1.2.0-beta.0":{"name":"mathjax-node","version":"1.2.0-beta.0","description":"API's for calling MathJax from node.js","keywords":["MathJax","math","svg","HTML","MathML","TeX","AsciiMath"],"maintainers":[{"email":"manager@mathjax.org","name":"mjadmin"}],"bugs":{"url":"http://github.com/mathjax/MathJax-node/issues"},"license":"Apache-2.0","repository":{"type":"git","url":"git://github.com/mathjax/MathJax-node.git"},"dependencies":{"jsdom":"7.0 - 9.12","mathjax":"*"},"scripts":{"test":"tape test/*.js"},"main":"./lib/main.js","devDependencies":{"tape":"^4.0.3"},"gitHead":"3f811c787eddcf460e05ea3a77f14838f2bc094e","homepage":"https://github.com/mathjax/MathJax-node#readme","_id":"mathjax-node@1.2.0-beta.0","_npmVersion":"5.3.0","_nodeVersion":"8.4.0","_npmUser":{"name":"mjadmin","email":"manager@mathjax.org"},"dist":{"integrity":"sha512-RDImv9ryujOnP+0/KfikFuWPVqdb9eit/I+j9S7y9ck8h3SVNP3o+NgW9qPzh+W3nKtGvXIbhERLWyZaDK95JQ==","shasum":"64f9ee79e063e396984f38f070f826200038cdf9","tarball":"https://registry.npmjs.org/mathjax-node/-/mathjax-node-1.2.0-beta.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCaNC9zuguajhuVvtz3ixsSmnSGwG+PVUqs4wB0JanaygIhAMsHxrhXTowz3gOZOqY9DCrtRANImrw6+CcViDRO90R5"}]},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mathjax-node-1.2.0-beta.0.tgz_1503471426186_0.476528468541801"},"directories":{}},"1.2.0":{"name":"mathjax-node","version":"1.2.0","description":"API's for calling MathJax from node.js","keywords":["MathJax","math","svg","HTML","MathML","TeX","AsciiMath"],"maintainers":[{"email":"manager@mathjax.org","name":"mjadmin"}],"bugs":{"url":"http://github.com/mathjax/MathJax-node/issues"},"license":"Apache-2.0","repository":{"type":"git","url":"git://github.com/mathjax/MathJax-node.git"},"dependencies":{"jsdom":"7.0 - 9.12","mathjax":"*"},"scripts":{"test":"tape test/*.js"},"main":"./lib/main.js","devDependencies":{"tape":"^4.0.3"},"gitHead":"fa4d0452c9e39b0b9e661997ec47ce3dbbb6fa59","homepage":"https://github.com/mathjax/MathJax-node#readme","_id":"mathjax-node@1.2.0","_shasum":"538d01f85ca18b90f3cc6ce68c7caeed44bb9f7f","_from":".","_npmVersion":"2.15.11","_nodeVersion":"4.8.4","_npmUser":{"name":"mjadmin","email":"manager@mathjax.org"},"dist":{"shasum":"538d01f85ca18b90f3cc6ce68c7caeed44bb9f7f","tarball":"https://registry.npmjs.org/mathjax-node/-/mathjax-node-1.2.0.tgz","integrity":"sha512-xAHZd8hFcyHNDhFKVAA27TDkC8SsOIISmeJm1HzCqGvXt2wX8SJjU8F9yvAzpbINCUNYgqfabCLENoWP7cQI7A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD33P6JV0V3FkuhPi2jI/nsVWm8SqP+NPVBMZJICYfe1gIgX3HsSigsD2Mt1n0SoJ6M17K4ww34xbqIDPWvKvsGN6Q="}]},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mathjax-node-1.2.0.tgz_1503472942742_0.6482283570803702"},"directories":{}},"1.2.1":{"name":"mathjax-node","version":"1.2.1","description":"API's for calling MathJax from node.js","keywords":["MathJax","math","svg","HTML","MathML","TeX","AsciiMath"],"maintainers":[{"email":"manager@mathjax.org","name":"mjadmin"}],"bugs":{"url":"http://github.com/mathjax/MathJax-node/issues"},"license":"Apache-2.0","repository":{"type":"git","url":"git://github.com/mathjax/MathJax-node.git"},"dependencies":{"jsdom":"7.0 - 9.12","mathjax":"*"},"scripts":{"test":"tape test/*.js"},"main":"./lib/main.js","devDependencies":{"tape":"^4.0.3"},"gitHead":"b1618f8e480ee70a12bc405fe8c60ee6c32e513d","homepage":"https://github.com/mathjax/MathJax-node#readme","_id":"mathjax-node@1.2.1","_shasum":"f4a0e272149104f2e00a3d268c81e42bee1324fd","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.12.0","_npmUser":{"name":"mjadmin","email":"manager@mathjax.org"},"dist":{"shasum":"f4a0e272149104f2e00a3d268c81e42bee1324fd","tarball":"https://registry.npmjs.org/mathjax-node/-/mathjax-node-1.2.1.tgz","integrity":"sha512-jHvaPOhYsSicQ38PdeEY9mTmhWxMCfKE0gZW3veoMCJTQWn3WMt0HQvSZ2qBc+71p/eeaedzwLp4mxxqgrC4PQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEzEuSBrMiqLXb8cWAs+sb8l1bAYUwPhYBCG8ypuI0G6AiAw/uNEwr8XqxQ7VmtDnogHykgf1gXk+W8Q1dwbjDpFNA=="}]},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mathjax-node-1.2.1.tgz_1506411017047_0.7370980165433139"},"directories":{}},"1.3.0":{"name":"mathjax-node","version":"1.3.0","description":"API's for calling MathJax from node.js","keywords":["MathJax","math","svg","HTML","MathML","TeX","AsciiMath"],"maintainers":[{"email":"manager@mathjax.org","name":"mjadmin"}],"bugs":{"url":"http://github.com/mathjax/MathJax-node/issues"},"license":"Apache-2.0","repository":{"type":"git","url":"git://github.com/mathjax/MathJax-node.git"},"dependencies":{"is-fullwidth-code-point":"^2.0.0","jsdom":"7.0 - 9.12","mathjax":"^2.7.2"},"scripts":{"test":"tape test/*.js"},"main":"./lib/main.js","devDependencies":{"tape":"^4.0.3"},"gitHead":"a30432fccffdc85f5363212161f2fd38ac861d6f","homepage":"https://github.com/mathjax/MathJax-node#readme","_id":"mathjax-node@1.3.0","_shasum":"a58c90a185d909b6323b19c0db1501d14ac0070c","_from":".","_npmVersion":"2.15.11","_nodeVersion":"4.8.7","_npmUser":{"name":"mjadmin","email":"manager@mathjax.org"},"dist":{"shasum":"a58c90a185d909b6323b19c0db1501d14ac0070c","tarball":"https://registry.npmjs.org/mathjax-node/-/mathjax-node-1.3.0.tgz","integrity":"sha512-lD9SdOtBaUHNcY0W+Y9EKcHBWJpKNtYmyala0vJqb5ITxpxzWdPUHLBoveHhSe/wTfHjnaUo8vkiSsfx6U+PnQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEsPJ4YW+hHSHtMpyLLo8Uu35FE1JvbK+pv9k3gsslz9AiEAkc5l001dYVT/pevxVRTpEJOcUdSyoqoDmJQ/ES73YSY="}]},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mathjax-node-1.3.0.tgz_1514564873550_0.7807744834572077"},"directories":{}},"2.0.0":{"name":"mathjax-node","version":"2.0.0","description":"API's for calling MathJax from node.js","keywords":["MathJax","math","svg","HTML","MathML","TeX","AsciiMath"],"maintainers":[{"email":"manager@mathjax.org","name":"mjadmin"}],"bugs":{"url":"http://github.com/mathjax/MathJax-node/issues"},"license":"Apache-2.0","repository":{"type":"git","url":"git://github.com/mathjax/MathJax-node.git"},"dependencies":{"is-fullwidth-code-point":"^2.0.0","jsdom":"^10.0.0","mathjax":"^2.7.2"},"engines":{"node":">=6.0.0"},"scripts":{"test":"tape test/*.js"},"main":"./lib/main.js","devDependencies":{"tape":"^4.0.3"},"gitHead":"89d1e0af912eb2666592195a555f9edaa325f1e5","homepage":"https://github.com/mathjax/MathJax-node#readme","_id":"mathjax-node@2.0.0","_npmVersion":"5.6.0","_nodeVersion":"8.9.4","_npmUser":{"name":"mjadmin","email":"manager@mathjax.org"},"dist":{"integrity":"sha512-YxvcqumhYC9QY8i234wOHp27STayB3yf8WPlQ7qxY3KbOqKULcvASmnMI0PADVkIvmS9FRw+IR/Qdd921GAgBA==","shasum":"d53fa23b41ef1320b813442b4524611f74b4a814","tarball":"https://registry.npmjs.org/mathjax-node/-/mathjax-node-2.0.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEE6CV0yfsvL5onNgP+8zFr6XIqUIEcxi6yRQxdkumb+AiEA4/kP8zpgZf9Z++VW/BLWoiIrP9OXqTXqJbCzvp0cwSs="}]},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mathjax-node-2.0.0.tgz_1517878209017_0.07134102936834097"},"directories":{}},"2.0.1":{"name":"mathjax-node","version":"2.0.1","description":"API's for calling MathJax from node.js","keywords":["MathJax","math","svg","HTML","MathML","TeX","AsciiMath"],"maintainers":[{"email":"manager@mathjax.org","name":"mjadmin"}],"bugs":{"url":"http://github.com/mathjax/MathJax-node/issues"},"license":"Apache-2.0","repository":{"type":"git","url":"git://github.com/mathjax/MathJax-node.git"},"dependencies":{"is-fullwidth-code-point":"^2.0.0","jsdom":"^10.0.0","mathjax":"^2.7.2"},"engines":{"node":">=6.0.0"},"scripts":{"test":"tape test/*.js"},"main":"./lib/main.js","devDependencies":{"tape":"^4.0.3"},"gitHead":"4b29b9a5ea553cb3054a0a95e80f589fde4864a2","homepage":"https://github.com/mathjax/MathJax-node#readme","_id":"mathjax-node@2.0.1","_npmVersion":"5.6.0","_nodeVersion":"8.9.4","_npmUser":{"name":"mjadmin","email":"manager@mathjax.org"},"dist":{"integrity":"sha512-FNSs6UonZ7EEaOEqR7+7kDzSxLPWXHCxG8nQztMYHfMxfHYr7PXBl4OKFf5S+RkFkehFTtd6aXeyuDzGbiobaA==","shasum":"9b5e56d20fac5f7dfe54bb7f74e891b03e511de7","tarball":"https://registry.npmjs.org/mathjax-node/-/mathjax-node-2.0.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD2+zwNhJq05L7iUWT1gZaSzw+W3uu6GdlK0Pc7xRAG6QIhAKN0aJpacJ4ZCBNkrbIIhfnY+j17cSO9dEqi4HOp83OK"}]},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mathjax-node-2.0.1.tgz_1517951453810_0.17103721713647246"},"directories":{}},"2.1.0":{"name":"mathjax-node","version":"2.1.0","description":"API's for calling MathJax from node.js","keywords":["MathJax","math","svg","HTML","MathML","TeX","AsciiMath"],"maintainers":[{"email":"manager@mathjax.org","name":"mjadmin"}],"bugs":{"url":"http://github.com/mathjax/MathJax-node/issues"},"license":"Apache-2.0","repository":{"type":"git","url":"git://github.com/mathjax/MathJax-node.git"},"dependencies":{"is-fullwidth-code-point":"^2.0.0","jsdom":"^11.0.0","mathjax":"^2.7.2"},"engines":{"node":">=6.0.0"},"scripts":{"test":"tape test/*.js"},"main":"./lib/main.js","devDependencies":{"tape":"^4.0.3"},"gitHead":"a3c71820b5c0cf0848a48d86df9828aed9c796d2","homepage":"https://github.com/mathjax/MathJax-node#readme","_id":"mathjax-node@2.1.0","_npmVersion":"5.6.0","_nodeVersion":"9.8.0","_npmUser":{"name":"mjadmin","email":"manager@mathjax.org"},"dist":{"integrity":"sha512-AwQ5Hdow0gDQXnsXSfVgSC57NbGPd0bcUah8dRTN3+6u3F2VYDOXOHIJZd5e2e38Asm3IaYCu42xjPBG/Q/RpA==","shasum":"f5f945fc85d6fa6478a91dc7ae068eca1da73e13","tarball":"https://registry.npmjs.org/mathjax-node/-/mathjax-node-2.1.0.tgz","fileCount":35,"unpackedSize":77081,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDDgsDiK3hintvaRu63YQ2uzRV1wW5izawGKc4OV8MrswIgRrcDAETKFthXUlCG47cWyKa0hs5lyYHlmAbxKK7Clv8="}]},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mathjax-node_2.1.0_1521550963182_0.7006794318967893"},"_hasShrinkwrap":false},"2.1.1":{"name":"mathjax-node","version":"2.1.1","description":"API's for calling MathJax from node.js","keywords":["MathJax","math","svg","HTML","MathML","TeX","AsciiMath"],"maintainers":[{"email":"manager@mathjax.org","name":"mjadmin"}],"bugs":{"url":"http://github.com/mathjax/MathJax-node/issues"},"license":"Apache-2.0","repository":{"type":"git","url":"git://github.com/mathjax/MathJax-node.git"},"dependencies":{"is-fullwidth-code-point":"^2.0.0","jsdom":"^11.0.0","mathjax":"^2.7.2"},"engines":{"node":">=6.0.0"},"scripts":{"test":"tape test/*.js"},"main":"./lib/main.js","devDependencies":{"tape":"^4.0.3"},"gitHead":"08f566cffb7c4c55098b1ce9315dc0efc9c443a0","homepage":"https://github.com/mathjax/MathJax-node#readme","_id":"mathjax-node@2.1.1","_shasum":"25c80f494f7540418ffcfa9cc756dfd2150201bd","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.10.1","_npmUser":{"name":"mjadmin","email":"manager@mathjax.org"},"dist":{"shasum":"25c80f494f7540418ffcfa9cc756dfd2150201bd","tarball":"https://registry.npmjs.org/mathjax-node/-/mathjax-node-2.1.1.tgz","fileCount":39,"unpackedSize":113937,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbFpG1CRA9TVsSAnZWagAAlhMP/0H4FjhK6sTqejAlk5r8\nQWszgdoG2N/vFtbYeFBWi98aImlWvvjDn2N9ReCe7laXGseTKzU055ttvBSI\n8YMUQhWdQmTK9TWC+SHacAf2TH5E62sOh1Fz9E9lJbyU1CjCM5NuDbkLK7yv\nxyRO1uvZJSzx0cIkDfwdjDYIF0ZHEfgLkT4ZhGR6dSRNx2/9d4VMwWmIHthO\nahZTbFOvd3o57P/cqXWT12xFhAVdyzYeUQjIEAXx6nawDmZ6Uccf0BgiwuTp\neSUqgg6BCFlfAwRyM43l3XfbvfibG0wQQI1Yi0e5rLp10+fZz0WSMOaO5S/C\nX6UKY2VeAUGr9gypJ1VfuQ8Eni1nLYVC6mMbtGVL/Xt4UawlypeasR4jmh4Z\n1GKJtVy2ZktERdR5Pi9DtZxh6zC0WFXuAecrCBBehYTVmG2bcGgevkg7Ez4a\n+ImGUCwWgYcpY555OPpeZ5l39Pn6vgd4lKrw5c7A98rFNrGnsMQtDqQZVvJp\nVxmNbXO4/p2BmQG5hb912RRbCxUYQA4koakoPIibe0xDA3KwDCnRRWUZzm9T\n6rPVnppFZgaviTz+cXn8cIhE7uX+xT6mW5ByvbAlTO6va0PM15iz3If+V65T\nPjVOSU6g63PiYCi5Q3KQ2UMi4fF+PDlhoW8Ly+VD8uERy0ye9EKzKaLKl5wt\nW9NI\r\n=u2tv\r\n-----END PGP SIGNATURE-----\r\n","integrity":"sha512-i29tvqD8yHPB2WhrGV5rvliYnKwTT8a/TO8SCnuYtatpSHxLGy3aF7lDTVLD6B1bfuVMTFB6McZu2TBxk0XGeg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDtFU/PXQXWDiibkhOvu2oK7+2DZ5exc9vyJnwOsqKHUQIhANKoZzh/sBaKhgwbeCeJgasLiMzdIr6xK44loGMTvjMw"}]},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/mathjax-node_2.1.1_1528205748270_0.2789532892124458"},"_hasShrinkwrap":false}},"homepage":"https://github.com/mathjax/MathJax-node#readme","keywords":["MathJax","math","svg","HTML","MathML","TeX","AsciiMath"],"repository":{"type":"git","url":"git://github.com/mathjax/MathJax-node.git"},"bugs":{"url":"http://github.com/mathjax/MathJax-node/issues"},"license":"Apache-2.0","readmeFilename":"README.md","users":{"ciaranashton":true}}