{"maintainers":[{"name":"anonymous","email":"bugwheels94@gmail.com"}],"keywords":["math","expression","evaluator","parser"],"dist-tags":{"latest":"2.0.7"},"author":{"name":"bugwheels94","email":"bugwheels94@gmail.com"},"description":"A flexible math expression evaluator","readme":"📬 **Available for contract or other opportunities(full time):**  \n[📧 Email Me](mailto:bugwheels94@gmail.com)\n\n\n# math-expression-evaluator\nAn extremely efficient, flexible and amazing evaluator for Math expression in Javascript.\n\n## Use cases\n|Input|Result|Explanation|\n|:---:|:---:| --- |\n|**2+3-1**|4| Addition and Subtraction operator |\n|**2\\*5/10**|1| Multiplication and Division operator |\n|**tan45** *or* **tan(45)**|1| Trigonometric Function (tan in Degree mode) |\n|**tan45** *or* **tan(45)**|1.619775190543862| Trigonometric Function (tan in Radian mode) |\n|**Pi1,15,n** *or* **Pi(1,15,n)**|1307674368000| Product of Sequence |\n|**Sigma1,15,n** *or* **Sigma(1,15,n)**|120| Sum of Sequence (also called summation)  |\n|**2^3**|8| Exponent (note this operator is left associative like MS Office) |\n|**5P3**|60| Permutaion Method to calculate all the permutaions |\n|**sincostan90** *or* **sin(cos(tan(90)))**|0.017261434031253| Multiple functions with or without parenthesis (both works) |\n\n### [Fiddle Yourself](https://jsbin.com/romatuc/edit?html,output)\n\n## Installation\n### Node JS\n **Using npm**\n\n    npm install math-expression-evaluator\n\n### Browser\n **Using bower**\n\n    bower install math-expression-evaluator\n\n## Usage\n\n### Using eval method of mexp object\n\nconst mexp = new Mexp()\nvar value = mexp.eval(exp);  // 2 + 2\n\n### Using constituents of eval methods of mexp object\n\n1. Create mexp object\n\n        const mexp = new Mexp\n   \n2. Parse an expression and then add additional detail to the tokens using\n\n        var lexed = mexp.lex(\"expression\");\n    which returns an array of token which will be further processed by methods toPostfix and postfixEval\n\n3. Now, that array is needed to be converted to postfix notation using\n\n        var postfixed = mexp.toPostfix(lexed);  \n    which converts the array to postfix notation and return new array\n\n4. Now to get the value of expression use postfixEval\n\n        var result = mexp.postfixEval(postfixed);  \n    where result contains the result.\n\n\n### Extending tokens\n\n1. Defining a token\n\n    A token is defined similar way as [1.x version](http://bugwheels94.github.io/math-expression-evaluator/). You may refer to test file on examples on how to add tokens. Since this package is TS compatible, you will get autocomplete on `mexp.addToken`\n\n\n2. Adding tokens using addToken method of mexp object\n\n        const mexp = new Mexp()\n        mexp.addToken([token1, token2]) // tokens once added will be preserved in later evaluations\n\n3. Adding tokens using eval method of mexp object\n\n        const mexp = new Mexp()\n        mexp.eval(\"expression\", [token1, token2]) // tokens once added will be preserved in later evaluations\n\n4. Adding token using constituents of eval method of mexp object\n\n        const mexp = new Mexp()\n        const answer = mexp.postfixEval(mexp.toPostfix(mexp.lexed(\"expression\", [token1, token2]))) // tokens once added will be preserved in later evaluations\n        console.log(answer)\n## How to run test\n\n    npm test\n\n## Supported symbols\n\n|Symbol|Explanation|\n|:---:|:---:|\n|**+**| Addition Operator eg. 2+3 results 5 |\n|**-**| Subtraction Operator eg. 2-3 results -1 |\n|**/**| Division operator eg 3/2 results 1.5 |\n|**\\***| Multiplication Operator eg. 2\\*3 results 6 |\n|**Mod**| Modulus Operator eg. 3 Mod 2 results 1 |\n|**(**| Opening Parenthesis |\n|**)**| Closing Parenthesis |\n|**&**| Bitwise AND eg. 3&1 results 1 |\n|**Sigma**| Summation eg. Sigma(1,100,n) results 5050 |\n|**Pi**| Product eg. Pi(1,10,n) results 3628800 |\n|**n**| Variable for Summation or Product |\n|**pi**| Math constant pi returns 3.14 |\n|**e**| Math constant e returns 2.71 |\n|**C**| Combination operator eg. 4C2 returns 6 |\n|**P**| Permutation operator eg. 4P2 returns 12 |\n|**!**| factorial operator eg. 4! returns 24 |\n|**log**| logarithmic function with base 10 eg. log 1000 returns 3 |\n|**ln**| natural log function with base e eg. ln 2 returns .3010 |\n|**pow**| power function with two operator pow(2,3) returns 8 |\n|**^**| power operator eg. 2^3 returns 8 |\n|**root**| underroot function root 4 returns 2 |\n|**sin**| Sine function |\n|**cos**| Cosine function |\n|**tan**| Tangent function |\n|**asin**| Inverse Sine function |\n|**acos**| Inverse Cosine function |\n|**atan**| Inverse Tangent function |\n|**sinh**| Hyperbolic Sine function |\n|**cosh**| Hyperbolic Cosine function |\n|**tanh**| Hyperbolic Tangent function |\n|**asinh**| Inverse Hyperbolic Sine function |\n|**acosh**| Inverse Hyperbolic Cosine function |\n|**atanh**| Inverse Hyperbolic Tangent function |\n\n## Features\n\n### Amazing support for Sigma and Pi\nThis is a fantastic feature of this calculator that it is capable of evaluating expressions containing **Sigma and Pi**.\nPassing `Sigma(1,100,n)` will evaluate to 5050 as n is summationed from 1 to 100.\nand Pi(1,15,n) will evaluate to 1307674368000 as n is multiplied from 1 to 15 which is equal to 15!\n\n### Parenthesis less expression\nIf a expression is readable by human then it is readable by this evaluator. There is no need to wrap every function inside parenthesis.\nFor eg. sin90 will work totally fine instead of sin(90)\n\n##Changelog\n\n### Removed lodash.indexof and used native Array.prototype.indexOf hence dropping suppports for IE8 and below.\nThis will reflect in next release named v1.2.16\n","repository":{"type":"git","url":"git+https://github.com/redhivesoftware/math-expression-evaluator.git"},"users":{"atool":true,"snowdream":true,"rocket0191":true,"shoresh319":true,"anlijudavid":true,"alejandrofelipe":true},"bugs":{"url":"https://github.com/redhivesoftware/math-expression-evaluator/issues"},"license":"MIT","versions":{"1.0.1":{"name":"math-expression-evaluator","version":"1.0.1","keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit G.","email":"ankit31894@gmail.com"},"license":"MIT","_id":"math-expression-evaluator@1.0.1","maintainers":[{"name":"anonymous","email":"ankit31894@gmail.com"}],"homepage":"https://github.com/ankit2038/math-expression-evaluator#readme","bugs":{"url":"https://github.com/ankit2038/math-expression-evaluator/issues"},"dist":{"shasum":"d724b0fe004d6873abb594c7fb6cf74f2b973ac7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/math-expression-evaluator/-/math-expression-evaluator-1.0.1.tgz","integrity":"sha512-a/FxGWBHB4UYevX+44tXVPTJsLUOPL437r7Wz5uX2dQqmqQIfk630DWQA3TNESE7kWdHscgEUG2NjPGmTg/GMQ==","signatures":[{"sig":"MEUCIDDbNO7zj469v+WZk7XgdEFtur5JpiKZLlEtivIMFNVKAiEAoxnCT/WQWsEikU0rsL2Hj67tLqFrJ6xNpQ/EWiTdzx8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/postfix_evaluator.js","_from":".","_shasum":"d724b0fe004d6873abb594c7fb6cf74f2b973ac7","gitHead":"6e084c5274c87f05d0e7eedd1ea2a65d303ec042","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"ankit31894@gmail.com"},"repository":{"url":"git+https://github.com/ankit31894/math-expression-evaluator.git","type":"git"},"_npmVersion":"2.9.1","description":"A flexible math expression evaluator","directories":{},"_nodeVersion":"0.12.3","devDependencies":{"grunt":"^0.4.5","mocha":"^2.2.5","grunt-browserify":"^3.8.0","grunt-contrib-jshint":"^0.11.2","grunt-contrib-uglify":"^0.9.1"}},"1.0.2":{"name":"math-expression-evaluator","version":"1.0.2","keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit G.","email":"ankit31894@gmail.com"},"license":"MIT","_id":"math-expression-evaluator@1.0.2","maintainers":[{"name":"anonymous","email":"ankit31894@gmail.com"}],"homepage":"https://github.com/ankit2038/math-expression-evaluator#readme","bugs":{"url":"https://github.com/ankit2038/math-expression-evaluator/issues"},"dist":{"shasum":"d391478fb0b9cc9cd62fa768c4259423b5736cf0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/math-expression-evaluator/-/math-expression-evaluator-1.0.2.tgz","integrity":"sha512-WXbU7i03W2NP2RKF6I7xQQ1Oi9IjQjf/0ZNQi2NuE7eaC3sDr08vZDNE584UjqEfSLGDw4nmQ29+/0iM6WesLQ==","signatures":[{"sig":"MEYCIQDuSYgtZHhQKZFs4kA4P6QYfEZhsWOAaW/dqlI4WVJ3dgIhAMCXXpQ6kSHP57PPGHvc3Ls5xZz0znNDQaWOv6nHL105","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/postfix_evaluator.js","_from":".","_shasum":"d391478fb0b9cc9cd62fa768c4259423b5736cf0","gitHead":"9c6582dfddca8f28cad19ae6254188fff3c8642b","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"ankit31894@gmail.com"},"repository":{"url":"git+https://github.com/ankit31894/math-expression-evaluator.git","type":"git"},"_npmVersion":"2.9.1","description":"A flexible math expression evaluator","directories":{},"_nodeVersion":"0.12.3","devDependencies":{"grunt":"^0.4.5","mocha":"^2.2.5","grunt-browserify":"^3.8.0","grunt-contrib-jshint":"^0.11.2","grunt-contrib-uglify":"^0.9.1"}},"1.0.3":{"name":"math-expression-evaluator","version":"1.0.3","keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit G.","email":"ankit31894@gmail.com"},"license":"MIT","_id":"math-expression-evaluator@1.0.3","maintainers":[{"name":"anonymous","email":"ankit31894@gmail.com"}],"homepage":"https://github.com/ankit2038/math-expression-evaluator#readme","bugs":{"url":"https://github.com/ankit2038/math-expression-evaluator/issues"},"dist":{"shasum":"2fd928ef7740c174588075983eb3de89ce8a4074","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/math-expression-evaluator/-/math-expression-evaluator-1.0.3.tgz","integrity":"sha512-n0cLUcoxoqS4vHdcJpPbVhN73WhzRyCPYb1yfQH8LYab/E0ef/o0burr338aiMohNnozlXFWuDtNak3h5jq4+g==","signatures":[{"sig":"MEYCIQDo54E9EDkOLIKFQg+bhnuur70elbnkEH4flnt36sxJ8wIhAIQZsx+a71d0k+hZ3v7r9suZPLzR6x0WB7iyV5SBeLRK","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/formula_evaluator.js","_from":".","_shasum":"2fd928ef7740c174588075983eb3de89ce8a4074","gitHead":"b6bb51595dc1075a5ca1964503dc42a0627ca041","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"ankit31894@gmail.com"},"repository":{"url":"git+https://github.com/ankit31894/math-expression-evaluator.git","type":"git"},"_npmVersion":"2.9.1","description":"A flexible math expression evaluator","directories":{},"_nodeVersion":"0.12.3","devDependencies":{"grunt":"^0.4.5","mocha":"^2.2.5","grunt-browserify":"^3.8.0","grunt-contrib-jshint":"^0.11.2","grunt-contrib-uglify":"^0.9.1"}},"1.0.4":{"name":"math-expression-evaluator","version":"1.0.4","keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit G.","email":"ankit31894@gmail.com"},"license":"MIT","_id":"math-expression-evaluator@1.0.4","maintainers":[{"name":"anonymous","email":"ankit31894@gmail.com"}],"homepage":"https://github.com/ankit2038/math-expression-evaluator#readme","bugs":{"url":"https://github.com/ankit2038/math-expression-evaluator/issues"},"dist":{"shasum":"4dc4180c104a77680a9ba97ef51c81d169062ad3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/math-expression-evaluator/-/math-expression-evaluator-1.0.4.tgz","integrity":"sha512-zls9R81Q83Pd24ULOypddSzpdkLaEVZhLqo8i5GnkqYFf+7jnsjJ/aK5aOkYxC8xiYkDuycdll2M2pwYtusMNA==","signatures":[{"sig":"MEUCIQCd1r2EMQfcUCKPnDq3tQBjcJyNtIN5tjr56J47u+54/gIgFWujU1CAAEuW0zQYXs2qWReOVh4U5HZcuKcXvW2MQsk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/formula_evaluator.js","_from":".","_shasum":"4dc4180c104a77680a9ba97ef51c81d169062ad3","gitHead":"b1f259deb8be328526dd85cc0e2ca7c1f790de2a","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"ankit31894@gmail.com"},"repository":{"url":"git+https://github.com/ankit31894/math-expression-evaluator.git","type":"git"},"_npmVersion":"2.9.1","description":"A flexible math expression evaluator","directories":{},"_nodeVersion":"0.12.3","devDependencies":{"grunt":"^0.4.5","mocha":"^2.2.5","grunt-browserify":"^3.8.0","grunt-contrib-jshint":"^0.11.2","grunt-contrib-uglify":"^0.9.1"}},"1.0.5":{"name":"math-expression-evaluator","version":"1.0.5","keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit G.","email":"ankit31894@gmail.com"},"license":"MIT","_id":"math-expression-evaluator@1.0.5","maintainers":[{"name":"anonymous","email":"ankit31894@gmail.com"}],"homepage":"https://github.com/ankit2038/math-expression-evaluator#readme","bugs":{"url":"https://github.com/ankit2038/math-expression-evaluator/issues"},"dist":{"shasum":"9f595aafb2ad3b758dfde0ca48bcb19e7db32d10","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/math-expression-evaluator/-/math-expression-evaluator-1.0.5.tgz","integrity":"sha512-2E3t3DU9PmOCALDsG55ASZtQoopLV4cMhWMHLVpDleHGYS8g0hSDGnU57Gv/6d0xpoLhQyt/oe2hQMeN/fnfZw==","signatures":[{"sig":"MEUCIQCKTR4H34owS+4z0Nhp7KRmMTT3qlHMYQ17W7yt0Wn9dAIgTLfFHy/d4/9TuB5k3u+OwrcOHiYFInfaQnRuuESgKm8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/formula_evaluator.js","_from":".","_shasum":"9f595aafb2ad3b758dfde0ca48bcb19e7db32d10","gitHead":"91a0dcc875ecef5c76d713e032a5b0b5c083b319","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"ankit31894@gmail.com"},"repository":{"url":"git+https://github.com/ankit31894/math-expression-evaluator.git","type":"git"},"_npmVersion":"2.9.1","description":"A flexible math expression evaluator","directories":{},"_nodeVersion":"0.12.3","devDependencies":{"grunt":"^0.4.5","mocha":"^2.2.5","grunt-browserify":"^3.8.0","grunt-contrib-jshint":"^0.11.2","grunt-contrib-uglify":"^0.9.1"}},"1.0.6":{"name":"math-expression-evaluator","version":"1.0.6","keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit G.","email":"ankit31894@gmail.com"},"license":"MIT","_id":"math-expression-evaluator@1.0.6","maintainers":[{"name":"anonymous","email":"ankit31894@gmail.com"}],"homepage":"https://github.com/ankit2038/math-expression-evaluator#readme","bugs":{"url":"https://github.com/ankit2038/math-expression-evaluator/issues"},"dist":{"shasum":"d9208ca3fd20a6027baf65ab7f1b6b9a8b9a1b5f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/math-expression-evaluator/-/math-expression-evaluator-1.0.6.tgz","integrity":"sha512-u9x9Anrnldo72JKoEZ81PasV9r4SMqFA7HBM1+u9E3CYuoBCqwqND8YoK1Z1+MjwspuaY4ujIileBZjpgI458g==","signatures":[{"sig":"MEQCID9alAhtr+eNYz8+Dqkb6XM1HfnRpfNo5lvHOBMsQ10WAiAgVd4Pq7eHXb24XhMLkq8KYuVmsA0lKtoSf2CnOZWPzA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/formula_evaluator.js","_from":".","_shasum":"d9208ca3fd20a6027baf65ab7f1b6b9a8b9a1b5f","gitHead":"99d60122577ceef93a026773f3c28f5c92e6a441","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"ankit31894@gmail.com"},"repository":{"url":"git+https://github.com/ankit31894/math-expression-evaluator.git","type":"git"},"_npmVersion":"2.9.1","description":"A flexible math expression evaluator","directories":{},"_nodeVersion":"0.12.3","devDependencies":{"grunt":"^0.4.5","mocha":"^2.2.5","grunt-browserify":"^3.8.0","grunt-contrib-jshint":"^0.11.2","grunt-contrib-uglify":"^0.9.1"}},"1.0.7":{"name":"math-expression-evaluator","version":"1.0.7","keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit G.","email":"ankit31894@gmail.com"},"license":"MIT","_id":"math-expression-evaluator@1.0.7","maintainers":[{"name":"anonymous","email":"ankit31894@gmail.com"}],"homepage":"https://github.com/ankit2038/math-expression-evaluator#readme","bugs":{"url":"https://github.com/ankit2038/math-expression-evaluator/issues"},"dist":{"shasum":"ae3ac47afb2f891cfe7d2d51871f6ca63dfecfda","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/math-expression-evaluator/-/math-expression-evaluator-1.0.7.tgz","integrity":"sha512-iQtuB9hMQDioyr2lU4lh9Kb3AKnBrAKJe74EIf0Jb9Q57e7zPdOvKjNALVegYxPNIvZ35V9B05KfK7k0qBKjcg==","signatures":[{"sig":"MEUCIQCWLCPi4K0+IW774NtEB98kE2p1e/KS4HXYSVFLQ7ByFQIgSqsffurXZoIb2IVeKeyJ3JLmWwZhgsglf6QHnSR/u1s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/formula_evaluator.js","_from":".","_shasum":"ae3ac47afb2f891cfe7d2d51871f6ca63dfecfda","gitHead":"99d60122577ceef93a026773f3c28f5c92e6a441","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"ankit31894@gmail.com"},"repository":{"url":"git+https://github.com/ankit31894/math-expression-evaluator.git","type":"git"},"_npmVersion":"2.9.1","description":"A flexible math expression evaluator","directories":{},"_nodeVersion":"0.12.3","devDependencies":{"grunt":"^0.4.5","mocha":"^2.2.5","grunt-browserify":"^3.8.0","grunt-contrib-jshint":"^0.11.2","grunt-contrib-uglify":"^0.9.1"}},"1.1.0":{"name":"math-expression-evaluator","version":"1.1.0","keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit G.","email":"ankit31894@gmail.com"},"license":"MIT","_id":"math-expression-evaluator@1.1.0","maintainers":[{"name":"anonymous","email":"ankit31894@gmail.com"}],"homepage":"https://github.com/ankit2038/math-expression-evaluator#readme","bugs":{"url":"https://github.com/ankit2038/math-expression-evaluator/issues"},"dist":{"shasum":"a3b76d017420043a75cbcfd3d4d8f76ee226e6ee","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/math-expression-evaluator/-/math-expression-evaluator-1.1.0.tgz","integrity":"sha512-HKQTfjToz2yZTHR045KmEchO9H/brEWEL51QOW56U4dTsOSX8nTInz9n31uSyTflm+kytMAFTbazdSCJxQzOTg==","signatures":[{"sig":"MEUCIQCspOiW+nEbGM40+YPEolPuAQlM9Lijd92s/cJTF0mE8AIgb+jimg+ODTdi5NQcJUnpUX7E3vdDdAbZfG3+GN10qS0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/formula_evaluator.js","_from":".","_shasum":"a3b76d017420043a75cbcfd3d4d8f76ee226e6ee","gitHead":"2d5353d3ca5fd7bf09a8b9d8fca0b8050b1d2e1f","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"ankit31894@gmail.com"},"repository":{"url":"git+https://github.com/ankit31894/math-expression-evaluator.git","type":"git"},"_npmVersion":"2.9.1","description":"A flexible math expression evaluator","directories":{},"_nodeVersion":"0.12.3","devDependencies":{"grunt":"^0.4.5","mocha":"^2.2.5","grunt-browserify":"^3.8.0","grunt-contrib-jshint":"^0.11.2","grunt-contrib-uglify":"^0.9.1"}},"1.2.0":{"name":"math-expression-evaluator","version":"1.2.0","keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit G.","email":"ankit31894@gmail.com"},"license":"MIT","_id":"math-expression-evaluator@1.2.0","maintainers":[{"name":"anonymous","email":"ankit31894@gmail.com"}],"homepage":"https://github.com/ankit2038/math-expression-evaluator#readme","bugs":{"url":"https://github.com/ankit2038/math-expression-evaluator/issues"},"dist":{"shasum":"462bc56a29cfbca8f5b331b074d3eebadf40fb10","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/math-expression-evaluator/-/math-expression-evaluator-1.2.0.tgz","integrity":"sha512-vCNjCNutdjzYtvzkbOtceTMOkoTgdPquP8yaIKvlM9PKrSubKFDjrrIdzhr6BNi5aT1g2WVyASfEwpmUD/Ir8A==","signatures":[{"sig":"MEUCIAbQWG54sQK4NARkVjZ05Q4ouDmVqWs0FobZlV4OqQEtAiEAnGDBAmexcwld0Z1mGtV/sZ3UEsCfknmhssInbajkWZM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/formula_evaluator.js","_from":".","_shasum":"462bc56a29cfbca8f5b331b074d3eebadf40fb10","gitHead":"91dcb8bc17dd56142bdb0d8ac054944ce5ff9b92","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"ankit31894@gmail.com"},"repository":{"url":"git+https://github.com/ankit31894/math-expression-evaluator.git","type":"git"},"_npmVersion":"2.9.1","description":"A flexible math expression evaluator","directories":{},"_nodeVersion":"0.12.3","devDependencies":{"grunt":"^0.4.5","mocha":"^2.2.5","grunt-browserify":"^3.8.0","grunt-contrib-jshint":"^0.11.2","grunt-contrib-uglify":"^0.9.1"}},"1.2.1":{"name":"math-expression-evaluator","version":"1.2.1","keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit G.","email":"ankit31894@gmail.com"},"license":"MIT","_id":"math-expression-evaluator@1.2.1","maintainers":[{"name":"anonymous","email":"ankit31894@gmail.com"}],"homepage":"https://github.com/ankit2038/math-expression-evaluator#readme","bugs":{"url":"https://github.com/ankit2038/math-expression-evaluator/issues"},"dist":{"shasum":"49c89a5daac2c1acfec745e7e52dba8df8b04f43","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/math-expression-evaluator/-/math-expression-evaluator-1.2.1.tgz","integrity":"sha512-qPVTQWNTVfPDE0spGLyIBskgxsMlgyV5FK8Dde1DjW+OFASp6dYCi5oUXokr21urCJOml1w9uyT7qGBM+ASrIw==","signatures":[{"sig":"MEUCIFE4GOZy+NxdO+XBKj7oW106Odt2vuXVyRhij2CDP+FwAiEA74nLrkH834cfeoeJUQwGbyUydsB0xhPWO7Pb37qNht0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/formula_evaluator.js","_from":".","_shasum":"49c89a5daac2c1acfec745e7e52dba8df8b04f43","gitHead":"8e044593d0318fa05ef7d476502f47b1c8f4f98a","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"ankit31894@gmail.com"},"repository":{"url":"git+https://github.com/ankit31894/math-expression-evaluator.git","type":"git"},"_npmVersion":"2.9.1","description":"A flexible math expression evaluator","directories":{},"_nodeVersion":"0.12.3","devDependencies":{"grunt":"^0.4.5","mocha":"^2.2.5","grunt-browserify":"^3.8.0","grunt-contrib-jshint":"^0.11.2","grunt-contrib-uglify":"^0.9.1"}},"1.2.2":{"name":"math-expression-evaluator","version":"1.2.2","keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit G.","email":"ankit31894@gmail.com"},"license":"MIT","_id":"math-expression-evaluator@1.2.2","maintainers":[{"name":"anonymous","email":"ankit31894@gmail.com"}],"homepage":"https://github.com/ankit2038/math-expression-evaluator#readme","bugs":{"url":"https://github.com/ankit2038/math-expression-evaluator/issues"},"dist":{"shasum":"4159487b4e1e806e145f6bdfc004258e57a664d3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/math-expression-evaluator/-/math-expression-evaluator-1.2.2.tgz","integrity":"sha512-AHszF7FLmQsqWwbOZBP4fN82GjHLPaGJqf6xl0X5rIUHiGvOWSOrtCR2TIMf1VwYWMI4Qqy/WpGqbZtrK8gCSg==","signatures":[{"sig":"MEUCIQCwio83lmWpZCpt1q/hSXN4Z+DQUXtQZ0JUdvt60n+mwQIgcvnnfN5FVhPyHrqIUj0l+EZgRV3fkPr4AGXubkP9QEE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/formula_evaluator.js","_from":".","_shasum":"4159487b4e1e806e145f6bdfc004258e57a664d3","gitHead":"563e3b09a9440b4b7bd409a6e0d76a4d7dea0b9a","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"ankit31894@gmail.com"},"repository":{"url":"git+https://github.com/ankit31894/math-expression-evaluator.git","type":"git"},"_npmVersion":"2.9.1","description":"A flexible math expression evaluator","directories":{},"_nodeVersion":"0.12.3","devDependencies":{"grunt":"^0.4.5","mocha":"^2.2.5","grunt-browserify":"^3.8.0","grunt-contrib-jshint":"^0.11.2","grunt-contrib-uglify":"^0.9.1"}},"1.2.3":{"name":"math-expression-evaluator","version":"1.2.3","keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit G.","email":"ankit31894@gmail.com"},"license":"MIT","_id":"math-expression-evaluator@1.2.3","maintainers":[{"name":"anonymous","email":"ankit31894@gmail.com"}],"homepage":"https://github.com/ankit2038/math-expression-evaluator#readme","bugs":{"url":"https://github.com/ankit2038/math-expression-evaluator/issues"},"dist":{"shasum":"7d01c8ebebd9092486eeba2a76519f3ac533e91e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/math-expression-evaluator/-/math-expression-evaluator-1.2.3.tgz","integrity":"sha512-AKa0oZj+6mXnbKfaAqlYKrcFQ48Wsv/d0d9xRpstPSUXUvCnnh9qfR4j1xFSJWSoCqSNrDuXj3ZS1l7SOI3Ntg==","signatures":[{"sig":"MEUCIQCasoh7JvgHVo/jnWa43lteySHjrGKO24YUIgnTvnZ5IwIgAnd2IPJr2fyB0QYQkkV6b14OzbxCa8PXW9vCgYZQ81o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/formula_evaluator.js","_from":".","_shasum":"7d01c8ebebd9092486eeba2a76519f3ac533e91e","gitHead":"91a8a415e054a5fa9190ee72ecd1c90236ccd920","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"ankit31894@gmail.com"},"repository":{"url":"git+https://github.com/ankit31894/math-expression-evaluator.git","type":"git"},"_npmVersion":"2.9.1","description":"A flexible math expression evaluator","directories":{},"_nodeVersion":"0.12.3","devDependencies":{"grunt":"^0.4.5","mocha":"^2.2.5","grunt-browserify":"^3.8.0","grunt-contrib-jshint":"^0.11.2","grunt-contrib-uglify":"^0.9.1"}},"1.2.4":{"name":"math-expression-evaluator","version":"1.2.4","keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit G.","email":"ankit31894@gmail.com"},"license":"MIT","_id":"math-expression-evaluator@1.2.4","maintainers":[{"name":"anonymous","email":"ankit31894@gmail.com"}],"homepage":"https://github.com/ankit2038/math-expression-evaluator#readme","bugs":{"url":"https://github.com/ankit2038/math-expression-evaluator/issues"},"dist":{"shasum":"32e780e5a62654eda306b37e819bb5f9796486b0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/math-expression-evaluator/-/math-expression-evaluator-1.2.4.tgz","integrity":"sha512-tMtbE6Z5AtK21Fld4Eet6ulA34LH1jjwM8ui7YbXL2XN2wKuLhz9JbeyjXnR25+ebNB0F3qw+HKI35c042enOg==","signatures":[{"sig":"MEUCIA2ILFjt7ZqYze/NnYwQ8P0ZfR86W/9+lGFPDyL1BsNNAiEA65pB/HoBWfjTGNf4jvOPwwIhY6XklATjP6+Ha40SNV4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/formula_evaluator.js","_from":".","_shasum":"32e780e5a62654eda306b37e819bb5f9796486b0","gitHead":"ff7d43cb38f9bbe2b2483de378d89126d17609a0","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"ankit31894@gmail.com"},"repository":{"url":"git+https://github.com/ankit31894/math-expression-evaluator.git","type":"git"},"_npmVersion":"2.9.1","description":"A flexible math expression evaluator","directories":{},"_nodeVersion":"0.12.3","devDependencies":{"grunt":"^0.4.5","mocha":"^2.2.5","grunt-browserify":"^3.8.0","grunt-contrib-jshint":"^0.11.2","grunt-contrib-uglify":"^0.9.1"}},"1.2.5":{"name":"math-expression-evaluator","version":"1.2.5","keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit G.","email":"ankit31894@gmail.com"},"license":"MIT","_id":"math-expression-evaluator@1.2.5","maintainers":[{"name":"anonymous","email":"ankit31894@gmail.com"}],"homepage":"https://github.com/ankit2038/math-expression-evaluator#readme","bugs":{"url":"https://github.com/ankit2038/math-expression-evaluator/issues"},"dist":{"shasum":"34fa6e0142e414db50f6d68aa4f571e33f697448","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/math-expression-evaluator/-/math-expression-evaluator-1.2.5.tgz","integrity":"sha512-iaWUgzRkRixQQwnCLWNEEX0fUN0qX6cxjdA6KGISuTTa7X9QVUxofdrxv7enYhDWgEZLN+x+3AHgu/egL430FQ==","signatures":[{"sig":"MEUCIDA0fcdqCPW3jjs/+sytmeJehfAjfqNMGiWp1Y/1tpvlAiEA2JkusoG1PE0WkiqeZ089/lEhIoOwdqiemqNdoplNHaI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/formula_evaluator.js","_from":".","_shasum":"34fa6e0142e414db50f6d68aa4f571e33f697448","gitHead":"834b8b898f7b0757c2d8918cb85f830ca9266c61","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"ankit31894@gmail.com"},"repository":{"url":"git+https://github.com/ankit31894/math-expression-evaluator.git","type":"git"},"_npmVersion":"2.9.1","description":"A flexible math expression evaluator","directories":{},"_nodeVersion":"0.12.3","devDependencies":{"grunt":"^0.4.5","mocha":"^2.2.5","grunt-browserify":"^3.8.0","grunt-contrib-jshint":"^0.11.2","grunt-contrib-uglify":"^0.9.1"}},"1.2.7":{"name":"math-expression-evaluator","version":"1.2.7","keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit G.","email":"ankit31894@gmail.com"},"license":"MIT","_id":"math-expression-evaluator@1.2.7","maintainers":[{"name":"anonymous","email":"ankit31894@gmail.com"}],"homepage":"https://github.com/ankit2038/math-expression-evaluator#readme","bugs":{"url":"https://github.com/ankit2038/math-expression-evaluator/issues"},"dist":{"shasum":"3d9025b1a70e1232d5bb5c7724817c5e0225122e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/math-expression-evaluator/-/math-expression-evaluator-1.2.7.tgz","integrity":"sha512-EIwmXWFgguBzxAv9iQRLuxtM3hk5DOWnlwnU1C4Z3Mb9xiPH+fYh2hdaiEosffk7uti1PmofukbYU59qqczRWA==","signatures":[{"sig":"MEUCIQDJJ3nr8ym/Z6ZoFhh3S2B+9VELJSg6zOeoiIf7Af3z0wIgP1aEoCTVLYdZSo9/iRubzJD9c6ncKGgwu/jFogVBqgs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/formula_evaluator.js","_from":".","_shasum":"3d9025b1a70e1232d5bb5c7724817c5e0225122e","gitHead":"c92691080d2a46447d9413a6856dd30696a584c1","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"ankit31894@gmail.com"},"repository":{"url":"git+https://github.com/ankit31894/math-expression-evaluator.git","type":"git"},"_npmVersion":"2.9.1","description":"A flexible math expression evaluator","directories":{},"_nodeVersion":"0.12.3","devDependencies":{"grunt":"^0.4.5","mocha":"^2.2.5","grunt-browserify":"^3.8.0","grunt-contrib-jshint":"^0.11.2","grunt-contrib-uglify":"^0.9.1"}},"1.2.8":{"name":"math-expression-evaluator","version":"1.2.8","keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit G.","email":"ankit31894@gmail.com"},"license":"MIT","_id":"math-expression-evaluator@1.2.8","maintainers":[{"name":"anonymous","email":"ankit31894@gmail.com"}],"homepage":"https://github.com/ankit2038/math-expression-evaluator#readme","bugs":{"url":"https://github.com/ankit2038/math-expression-evaluator/issues"},"dist":{"shasum":"973c98442bcad4abe71a4322440762895f5db823","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/math-expression-evaluator/-/math-expression-evaluator-1.2.8.tgz","integrity":"sha512-abZlO40WGGQZ1+MYaStEBP0S4jpwnd4YjKT+rCDDw/KE0CXgss71gCmNT0emZvyDzyqCI4wV9KfX8RcPT/Pl3w==","signatures":[{"sig":"MEYCIQCmwIyhvDva2Vx3SrlI13xZmVx++NBoIBnNH3IiuoPacQIhAKq2PZaXD4zHjQnLKBZSSCe+gyyCcLbjTOywviKh2eKU","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/formula_evaluator.js","_from":".","_shasum":"973c98442bcad4abe71a4322440762895f5db823","gitHead":"c92691080d2a46447d9413a6856dd30696a584c1","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"ankit31894@gmail.com"},"repository":{"url":"git+https://github.com/ankit31894/math-expression-evaluator.git","type":"git"},"_npmVersion":"2.9.1","description":"A flexible math expression evaluator","directories":{},"_nodeVersion":"0.12.3","devDependencies":{"grunt":"^0.4.5","mocha":"^2.2.5","grunt-browserify":"^3.8.0","grunt-contrib-jshint":"^0.11.2","grunt-contrib-uglify":"^0.9.1"}},"1.2.9":{"name":"math-expression-evaluator","version":"1.2.9","keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit G.","email":"ankit31894@gmail.com"},"license":"MIT","_id":"math-expression-evaluator@1.2.9","maintainers":[{"name":"anonymous","email":"ankit31894@gmail.com"}],"homepage":"https://github.com/ankit2038/math-expression-evaluator#readme","bugs":{"url":"https://github.com/ankit2038/math-expression-evaluator/issues"},"dist":{"shasum":"8c85319b23ec89a1f61d5d373351f135cb67ae3b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/math-expression-evaluator/-/math-expression-evaluator-1.2.9.tgz","integrity":"sha512-GJf6Ll+rTEEmP1+xzwcpvrXSU7xFCZaU598LraZ+0ZNI3suFGZVYfq612ulXOwC1C9b7fe15aU+ccwflCgdYUw==","signatures":[{"sig":"MEUCIQCNblWy/umGPoJb6DZCaaeg/dQnmie8/qrE7gtDSm4bdgIgMOWO6DFP8FiCqv0t1RpdwSVfzOB6uxZTApXsrmymmTc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/formula_evaluator.js","_from":".","_shasum":"8c85319b23ec89a1f61d5d373351f135cb67ae3b","gitHead":"cbb4ca283bdec5b00ba2fd348c82f6a68f4efee4","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"ankit31894@gmail.com"},"repository":{"url":"git+https://github.com/ankit31894/math-expression-evaluator.git","type":"git"},"_npmVersion":"1.4.28","description":"A flexible math expression evaluator","directories":{},"devDependencies":{"grunt":"^0.4.5","mocha":"^2.2.5","grunt-browserify":"^3.8.0","grunt-contrib-jshint":"^0.11.2","grunt-contrib-uglify":"^0.9.1"},"_npmOperationalInternal":{"tmp":"tmp/math-expression-evaluator-1.2.9.tgz_1465669764662_0.07058706902898848","host":"packages-16-east.internal.npmjs.com"}},"1.2.11":{"name":"math-expression-evaluator","version":"1.2.11","keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit G.","email":"ankit31894@gmail.com"},"license":"MIT","_id":"math-expression-evaluator@1.2.11","maintainers":[{"name":"anonymous","email":"ankit31894@gmail.com"}],"homepage":"https://github.com/ankit2038/math-expression-evaluator#readme","bugs":{"url":"https://github.com/ankit2038/math-expression-evaluator/issues"},"dist":{"shasum":"4b17cbc73a424de6043f279593f83aef685b91f9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/math-expression-evaluator/-/math-expression-evaluator-1.2.11.tgz","integrity":"sha512-oLw2cXz6Ps2K3HEpThrEIAhO3gDICE0k4MiFvtXaCVjUOMurAY0tGmVPNR+67baKrkvId8mPm3LPJNPFTnk3gg==","signatures":[{"sig":"MEYCIQDuqUs+HcV8QoSE/+vXcnWhFSJc6iKGp/hQVuhQo2Y5bgIhAP5k9u5G6fllgDcyx/NkCpTFbWr7X/pMYfUO24CwV8Lb","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/formula_evaluator.js","_from":".","_shasum":"4b17cbc73a424de6043f279593f83aef685b91f9","gitHead":"3d5afe2a57e3d4f6d6d4e86e69c337174b3aacc0","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"ankit31894@gmail.com"},"repository":{"url":"git+https://github.com/ankit31894/math-expression-evaluator.git","type":"git"},"_npmVersion":"2.15.8","description":"A flexible math expression evaluator","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"grunt":"^0.4.5","mocha":"^2.2.5","grunt-browserify":"^3.8.0","grunt-contrib-jshint":"^0.11.2","grunt-contrib-uglify":"^0.9.1"},"_npmOperationalInternal":{"tmp":"tmp/math-expression-evaluator-1.2.11.tgz_1471864229361_0.8241103691980243","host":"packages-12-west.internal.npmjs.com"}},"1.2.12":{"name":"math-expression-evaluator","version":"1.2.12","keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit G.","email":"ankit31894@gmail.com"},"license":"MIT","_id":"math-expression-evaluator@1.2.12","maintainers":[{"name":"anonymous","email":"ankit31894@gmail.com"}],"homepage":"https://github.com/ankit2038/math-expression-evaluator#readme","bugs":{"url":"https://github.com/ankit2038/math-expression-evaluator/issues"},"dist":{"shasum":"c7636251e0d08b54215a09827eacd46eaed6e201","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/math-expression-evaluator/-/math-expression-evaluator-1.2.12.tgz","integrity":"sha512-U5BaaOTRjoEBWFih5l/S0CiRcEYDHtPYN5qEZu4bCceKdq4SqLKd5Q8Gu9dqgkZ/mvepBl1L9Lk1nP7JDrtf6w==","signatures":[{"sig":"MEQCIGvy8oDaTR9CGVJxilzCS+/C7OotjbBFxoM1FNsRMDbTAiAFhhrk0xaxE8Q8yY4AtSQC2GIu2CS5lTQSmKX+wFYXJw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/formula_evaluator.js","_from":".","_shasum":"c7636251e0d08b54215a09827eacd46eaed6e201","gitHead":"5b1e6b3b092840704a6ec3255975ca4527d8de92","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"ankit31894@gmail.com"},"repository":{"url":"git+https://github.com/ankit31894/math-expression-evaluator.git","type":"git"},"_npmVersion":"2.15.8","description":"A flexible math expression evaluator","directories":{},"_nodeVersion":"4.4.7","dependencies":{"lodash.indexof":"^4.0.5"},"devDependencies":{"grunt":"^0.4.5","mocha":"^2.2.5","grunt-browserify":"^3.8.0","grunt-contrib-jshint":"^0.11.2","grunt-contrib-uglify":"^0.9.1"},"_npmOperationalInternal":{"tmp":"tmp/math-expression-evaluator-1.2.12.tgz_1471871107693_0.3718010850716382","host":"packages-16-east.internal.npmjs.com"}},"1.2.13":{"name":"math-expression-evaluator","version":"1.2.13","keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit G.","email":"ankit31894@gmail.com"},"license":"MIT","_id":"math-expression-evaluator@1.2.13","maintainers":[{"name":"anonymous","email":"ankit31894@gmail.com"}],"homepage":"https://github.com/ankit2038/math-expression-evaluator#readme","bugs":{"url":"https://github.com/ankit2038/math-expression-evaluator/issues"},"dist":{"shasum":"fe76e9255a460780618c45a3ddb948be432e41c7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/math-expression-evaluator/-/math-expression-evaluator-1.2.13.tgz","integrity":"sha512-EEUidSQdF93wk/EeSgsKzse7524FrOal//SXu9hpb8ZcDyxQ7lrxVrJahgTB4dZj5D9AHLxLZFlANZn8iSPXZw==","signatures":[{"sig":"MEYCIQDOmBXORWOMOHsW117bUSxn7oFqq9xlzOWcfCs48baD9gIhAJRy0R81tc8AvabIagbYmWgacVDBoZ7+SN/KYvAw4KuM","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/formula_evaluator.js","_from":".","_shasum":"fe76e9255a460780618c45a3ddb948be432e41c7","gitHead":"92c11671d135d60e66629097b6f9db6c69c184ea","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"ankit31894@gmail.com"},"repository":{"url":"git+https://github.com/ankit31894/math-expression-evaluator.git","type":"git"},"_npmVersion":"2.15.8","description":"A flexible math expression evaluator","directories":{},"_nodeVersion":"4.4.7","dependencies":{"lodash.indexof":"^4.0.5"},"devDependencies":{"grunt":"^0.4.5","mocha":"^2.2.5","grunt-browserify":"^3.8.0","grunt-contrib-jshint":"^0.11.2","grunt-contrib-uglify":"^0.9.1"},"_npmOperationalInternal":{"tmp":"tmp/math-expression-evaluator-1.2.13.tgz_1471921106414_0.6540297095198184","host":"packages-16-east.internal.npmjs.com"}},"1.2.14":{"name":"math-expression-evaluator","version":"1.2.14","keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit G.","email":"ankit31894@gmail.com"},"license":"MIT","_id":"math-expression-evaluator@1.2.14","maintainers":[{"name":"anonymous","email":"ankit31894@gmail.com"}],"homepage":"https://github.com/ankit2038/math-expression-evaluator#readme","bugs":{"url":"https://github.com/ankit2038/math-expression-evaluator/issues"},"dist":{"shasum":"39511771ed9602405fba9affff17eb4d2a3843ab","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/math-expression-evaluator/-/math-expression-evaluator-1.2.14.tgz","integrity":"sha512-yIgxOWJpuPViNR1QU47BRz3G8TpZsm9/XUAYhDVVF1mVrs3U+4fbYKXS2BVCfHG4l+tkRZIPd/eEJOwJompOSw==","signatures":[{"sig":"MEUCIQDTMbx0c6WuXKzV1Lam/0r02TzxGDlO7ozSkToev3GuGwIgRrdIHlf/Sw3eCm0ucOlDflfpxPnRKQPV/iwBt/oD3xw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/formula_evaluator.js","_from":".","_shasum":"39511771ed9602405fba9affff17eb4d2a3843ab","gitHead":"a9c0ce91efd784ede71f13febb5ee6c9b569be4e","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"ankit31894@gmail.com"},"repository":{"url":"git+https://github.com/ankit31894/math-expression-evaluator.git","type":"git"},"_npmVersion":"2.15.8","description":"A flexible math expression evaluator","directories":{},"_nodeVersion":"4.4.7","dependencies":{"lodash.indexof":"^4.0.5"},"devDependencies":{"grunt":"^0.4.5","mocha":"^2.2.5","grunt-browserify":"^3.8.0","grunt-contrib-jshint":"^0.11.2","grunt-contrib-uglify":"^0.9.1"},"_npmOperationalInternal":{"tmp":"tmp/math-expression-evaluator-1.2.14.tgz_1472113084747_0.16513858549296856","host":"packages-16-east.internal.npmjs.com"}},"1.2.15":{"name":"math-expression-evaluator","version":"1.2.15","keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit","email":"ankitbug94@gmail.com"},"license":"MIT","_id":"math-expression-evaluator@1.2.15","maintainers":[{"name":"anonymous","email":"ankitbug94@gmail.com"}],"homepage":"https://github.com/redhivesoftware/math-expression-evaluator#readme","bugs":{"url":"https://github.com/redhivesoftware/math-expression-evaluator/issues"},"dist":{"shasum":"38dc5f0194c5bf5ff1c690ad4c4b64df71ac0187","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/math-expression-evaluator/-/math-expression-evaluator-1.2.15.tgz","integrity":"sha512-fjCu2MiDfdCcCEh2Ge4Jnh7O5P53aP5POmL3OlU8sRsK4OZ5kquckS1gaJJGeyNdERsKqKPT2iZyPt4j1lhFSg==","signatures":[{"sig":"MEQCIFkIXn9WYT1EQyfqxqz8XYx0CqYkFvgCfl0aOAMWKUdWAiB7zsyc3ikw+UMqV+5ERtyenLk7np+aNAhOlxGpH+gQSQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/formula_evaluator.js","_from":".","_shasum":"38dc5f0194c5bf5ff1c690ad4c4b64df71ac0187","gitHead":"592072aa9e45469a0ce0aa4fd5a5a076ff31d8f4","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"ankitbug94@gmail.com"},"repository":{"url":"git+https://github.com/redhivesoftware/math-expression-evaluator.git#readme","type":"git"},"_npmVersion":"4.0.3","description":"A flexible math expression evaluator","directories":{},"_nodeVersion":"4.6.2","dependencies":{"lodash.indexof":"^4.0.5"},"devDependencies":{"grunt":"^0.4.5","mocha":"^2.2.5","grunt-browserify":"^3.8.0","grunt-contrib-jshint":"^0.11.2","grunt-contrib-uglify":"^0.9.1"},"_npmOperationalInternal":{"tmp":"tmp/math-expression-evaluator-1.2.15.tgz_1484953088609_0.8097164633218199","host":"packages-18-east.internal.npmjs.com"}},"1.2.16":{"name":"math-expression-evaluator","version":"1.2.16","keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit","email":"ankitbug94@gmail.com"},"license":"MIT","_id":"math-expression-evaluator@1.2.16","maintainers":[{"name":"anonymous","email":"ankitbug94@gmail.com"}],"homepage":"https://github.com/redhivesoftware/math-expression-evaluator#readme","bugs":{"url":"https://github.com/redhivesoftware/math-expression-evaluator/issues"},"dist":{"shasum":"b357fa1ca9faefb8e48d10c14ef2bcb2d9f0a7c9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/math-expression-evaluator/-/math-expression-evaluator-1.2.16.tgz","integrity":"sha512-5VI+K0azze0ZTZVG21HID/BuPfhy83Oulpkb8gdkfdXjlvCjR88sDKv2JVINx5heX9w7NNS8Fr8b5fV78rppPA==","signatures":[{"sig":"MEUCIQD2lSGbWlEivVNYSXCXztBROVONp+pVnTjoL/cPjxHfZAIgDawY8JZydk6urx7D6E943K0i2bZgaNUw3C3F/BVfIzQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/formula_evaluator.js","_from":".","_shasum":"b357fa1ca9faefb8e48d10c14ef2bcb2d9f0a7c9","gitHead":"da665f21c0dbe96217df824cfe0dfc4b874d71a7","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"ankitbug94@gmail.com"},"repository":{"url":"git+https://github.com/redhivesoftware/math-expression-evaluator.git#readme","type":"git"},"_npmVersion":"4.1.1","description":"A flexible math expression evaluator","directories":{},"_nodeVersion":"4.6.1","devDependencies":{"grunt":"^0.4.5","mocha":"^2.2.5","grunt-browserify":"^3.8.0","grunt-contrib-jshint":"^0.11.2","grunt-contrib-uglify":"^0.9.1"},"_npmOperationalInternal":{"tmp":"tmp/math-expression-evaluator-1.2.16.tgz_1486021946682_0.778420809423551","host":"packages-12-west.internal.npmjs.com"}},"1.2.17":{"name":"math-expression-evaluator","version":"1.2.17","keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit","email":"ankitbug94@gmail.com"},"license":"MIT","_id":"math-expression-evaluator@1.2.17","maintainers":[{"name":"anonymous","email":"ankitbug94@gmail.com"}],"homepage":"https://github.com/redhivesoftware/math-expression-evaluator#readme","bugs":{"url":"https://github.com/redhivesoftware/math-expression-evaluator/issues"},"dist":{"shasum":"de819fdbcd84dccd8fae59c6aeb79615b9d266ac","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/math-expression-evaluator/-/math-expression-evaluator-1.2.17.tgz","integrity":"sha512-NE0er6hC8jGXQ8ANbZvtovNS4jQDaZlJZkajBYbCsk+nktzTUfS67dTzrxY92iJ3LCGks4IQeNVdUbjCa8vhHg==","signatures":[{"sig":"MEUCID8gF0A4bZaUG/rPtgtf04YXdAzkXMz1KHIERsmVbYpaAiEAjtHguLTO1cErELWGSGwr2itnuJ162RoOCMK9hZcsfNY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"src/formula_evaluator.js","_from":".","_shasum":"de819fdbcd84dccd8fae59c6aeb79615b9d266ac","gitHead":"4ab734ed659f1ccddde850d21b24b90e895d42fc","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"ankitbug94@gmail.com"},"repository":{"url":"git+https://github.com/redhivesoftware/math-expression-evaluator.git#readme","type":"git"},"_npmVersion":"3.10.10","description":"A flexible math expression evaluator","directories":{},"_nodeVersion":"6.10.2","devDependencies":{"grunt":"^0.4.5","mocha":"^2.2.5","grunt-browserify":"^3.8.0","grunt-contrib-jshint":"^0.11.2","grunt-contrib-uglify":"^0.9.1"},"_npmOperationalInternal":{"tmp":"tmp/math-expression-evaluator-1.2.17.tgz_1493387390378_0.6613296787254512","host":"packages-12-west.internal.npmjs.com"}},"1.2.18":{"name":"math-expression-evaluator","version":"1.2.18","keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit","email":"ankitbug94@gmail.com"},"license":"MIT","_id":"math-expression-evaluator@1.2.18","maintainers":[{"name":"anonymous","email":"ankitbug94@gmail.com"}],"homepage":"https://github.com/redhivesoftware/math-expression-evaluator#readme","bugs":{"url":"https://github.com/redhivesoftware/math-expression-evaluator/issues"},"dist":{"shasum":"942248f6df6b46345d638985e6ee7e882a782c47","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/math-expression-evaluator/-/math-expression-evaluator-1.2.18.tgz","fileCount":14,"integrity":"sha512-eBiMYnXxRQnAQG+PEhDIM5svkoWL7aMB04A224SR72Qd4qA7HnbzQwg/6IW7lVD5BkwstBC/6Bdznxf3FROBgw==","signatures":[{"sig":"MEQCIGgOPoB3u+R/fvTjYm+PlSz0XXzpjpKGuOoogsjxZn10AiAWKMraXOsUJneFXrnen9eFEKzGdzTOsJDTWBhE2peM+w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64991,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeK3aKCRA9TVsSAnZWagAAjUoQAJm6KMEr2gJUE/ytpEow\ns5u9Rz7cduU56nphpNGEFTzYGAurBTKZNmqYFbfAcyx/GK42gcK58nsoZNLn\numuIo2qEi2nVla4scXMBqTill8PY5CyikvWLiuKSMA2iRDaSbDp3byfqBPhk\nm0IGD5E5f0CbBf4dmhhjZUglDHDJ4iNLDWZXsGxY81k0/VjyLAaPUEYNtuH4\n8L0hTso9PFm8+u2dQg1RE3HFm9MzJlPFvvBlhlZAuHMaRz7P9s1iHAAFpgpV\nhr4LOj71/+NViHfxykdFKDo0PQ0lczzQnwgsVLWE5SXM/HchPqCs4+2n7h1b\np7MuFX7xHjwHqLSWhNYNJ+ZPJTjM3T6leJpRNUxNUHKnR4ToubkEnvKj/X4A\n2ftVyWAVOg/6qWwnOJKjc+F+V0Zf80VRtmg26X1vYDB/yDxkcl+A35uLiEFl\nfFsSuDAmM7kFMtbGGMlDR6/R/U7HimVyakXO+cM7XKzLvUm7EzJyZygKbyMn\n0d3wauuZoE2OhdppLYlfIZzH1tccg9Z1ag5EPrOZV2Gl2axL0LbJpnjinZ7l\n2KdzR0x3/RzP+pL2q+6ZDw/t5T+uW4jDzIRYc2wQjyHZOY4cmSqN0rpv1zrq\nOxvGSxr17igGHx52Ilo64UlwQtvmySorDkqh4XvCUlpp20wIv8Mt95aGT2lg\n0Li3\r\n=fCVe\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/formula_evaluator.js","gitHead":"9b2273ee1605ba96702ecb07c0df6e91bdf1b33a","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"ankitbug94@gmail.com"},"repository":{"url":"git+https://github.com/redhivesoftware/math-expression-evaluator.git","type":"git"},"_npmVersion":"6.13.4","description":"A flexible math expression evaluator","directories":{},"_nodeVersion":"12.14.0","_hasShrinkwrap":false,"devDependencies":{"grunt":"^0.4.5","mocha":"^2.2.5","eslint":"^6.6.0","grunt-eslint":"^19.0.0","grunt-browserify":"^3.8.0","eslint-plugin-node":"^4.2.2","grunt-contrib-watch":"^1.0.0","eslint-plugin-import":"^2.2.0","grunt-contrib-uglify":"^0.9.1","eslint-plugin-promise":"^3.5.0","eslint-config-standard":"^10.2.1","eslint-plugin-standard":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/math-expression-evaluator_1.2.18_1579906697565_0.06450699800829818","host":"s3://npm-registry-packages"}},"1.2.19":{"name":"math-expression-evaluator","version":"1.2.19","keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit","email":"ankitbug94@gmail.com"},"license":"MIT","_id":"math-expression-evaluator@1.2.19","maintainers":[{"name":"anonymous","email":"ankitbug94@gmail.com"}],"homepage":"https://github.com/redhivesoftware/math-expression-evaluator#readme","bugs":{"url":"https://github.com/redhivesoftware/math-expression-evaluator/issues"},"dist":{"shasum":"d7590f47bfd1cb9fb0c4c7c5b580ea2571678c00","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/math-expression-evaluator/-/math-expression-evaluator-1.2.19.tgz","fileCount":14,"integrity":"sha512-MJe6zV3Uq4z2JQQDGK2zDCp4/3SDqRfWLN41jKDyBcePWgGq/ixA6MK1XB/Ipcot0R+VfywihTJgVoQut3xMcQ==","signatures":[{"sig":"MEQCIHvA0XvnuBt8Vr+T264g86kM5T+19itWIap8zFb//Ps7AiAYLbKINvqfXRBByZduHsExrTpkx+/fcGKO7rUWHbGnfw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65347,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeK3scCRA9TVsSAnZWagAAV+EP/0j7vHweSxVu6377MvNj\n8Jy5ZEaDFmIPWE+kM4QFRyYs94lOKJNdYTyYvgYKCl2jcktDHyUpiY5N8I6h\nJgQXP0Vn97PrwfRdsBaYBzKi2zfQxkOykET6rehszNZ1390gHiETJFWfZhtB\nkQXURhnfGzC/Fd+K5/YRcW5capR+KqWJ9DZgwXoRt+pP5A8Bg6Iy8TAQ+8Om\n6r/stLVE/AbLB1/RjQvpZrG15JIw10kOUAidNV9+TWRvzKSZwvP8JfTz8zu/\nJERI9UTp2zgdZTa5OIKLfpoXpm6jR7UBd9HSKqhTOqIONV339JEdGPK9DzIH\nUyiTirr0VfTZ+kegV4m447sB+zE8LutjwHLbJjVmyA39itb2vtCwAezGVlrn\nQx+Gyo+A51PdE6cBo6vsXGmy3SvIfsyVPiJxvOrtH09aw2F9McCs4Ynn7tzB\nSj6Nv2nuYnW8TMETcr8zLLIEOFmVq6GCVKCPvqT9jSSqO+OcCSOgpRz01D1O\nNJc84RvVH1zMAzllw1ZPa2gEj4wynqKQy41MD4Zts/+viWE0f9vjO1EKfKCL\nSHUTsnB66BZfq9SR4RFDP5MUZZqrBOVNvQ1xdqj7UExoKOagBA5tMRg4KLyu\nHlD5dfWd2nGY8KtiSFg95pdzpD4KAy86gNORt2OcUcjn+Z4YFRBMuDpVs3eO\nniv3\r\n=6Ncg\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/formula_evaluator.js","gitHead":"cbb2a0d4953cd6024e2dcbcb8d137a0468b5769c","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"ankitbug94@gmail.com"},"repository":{"url":"git+https://github.com/redhivesoftware/math-expression-evaluator.git","type":"git"},"_npmVersion":"6.13.4","description":"A flexible math expression evaluator","directories":{},"_nodeVersion":"12.14.0","_hasShrinkwrap":false,"devDependencies":{"grunt":"^0.4.5","mocha":"^2.2.5","eslint":"^6.6.0","grunt-eslint":"^19.0.0","grunt-browserify":"^3.8.0","eslint-plugin-node":"^4.2.2","grunt-contrib-watch":"^1.0.0","eslint-plugin-import":"^2.2.0","grunt-contrib-uglify":"^0.9.1","eslint-plugin-promise":"^3.5.0","eslint-config-standard":"^10.2.1","eslint-plugin-standard":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/math-expression-evaluator_1.2.19_1579907868407_0.012129795163232204","host":"s3://npm-registry-packages"}},"1.2.20":{"name":"math-expression-evaluator","version":"1.2.20","keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit","email":"ankitbug94@gmail.com"},"license":"MIT","_id":"math-expression-evaluator@1.2.20","maintainers":[{"name":"anonymous","email":"ankitbug94@gmail.com"}],"homepage":"https://github.com/redhivesoftware/math-expression-evaluator#readme","bugs":{"url":"https://github.com/redhivesoftware/math-expression-evaluator/issues"},"dist":{"shasum":"df613ee2f08b59a67d72613dad13580221e97f34","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/math-expression-evaluator/-/math-expression-evaluator-1.2.20.tgz","fileCount":14,"integrity":"sha512-dJpN6qqwC3PaFAvOvmBvzzm4HcQLSMFWyjRnvy1QcPxXnxy7P4AGdLddpm89HEhNjJs43vLO1b5raABwSSsYvA==","signatures":[{"sig":"MEUCID6vRdh9my8+0e5UPJFW/5YtewN1o86FA8iW2puB/VXPAiEAy5cL7Mv5AuuCUAO3M8ifT9ikG8wbK/TP7FwUUn1+Qok=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65821,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeK35OCRA9TVsSAnZWagAA01sP/3CtexmHM6BwNQEOrDfA\n5IoyYiYgQkKnaOfrEeWK0F/PbwdTpwz67Vm3D41kyiYm5NDoZcWeE1PDb/Bl\na6WEWsSojmC1bioKc3k385jZ7bdjgGrWp3/YjMKxvB6lWZeAv5wgh7dL5w72\noJhY4/rJT2GoGxJ/NE6CoaOA5PkpMiaOf8ph6QWrADBZ/2XMByuQkcSM1mpG\nh2NTwsTwqTt+d4g/Ajh3Z2nKAJmue75jKUq2yARKWAqHduqKWC6sMAj+LRMH\nrJ7ZNPvGr5vrjC7vIzgkQLFByU+ATX0dcVsluFliMvloBrjdLB7DfKudv9p7\n6Ebn6uJ7sBo0rKZ3iEqY0dzkdRg2ZRINjZkffAi39Dayb9iFBTTTbn73Rk7O\neO5M5EuWREEAoprFh6V26wUw/Pn5ePhQugg4ogh+myOdQ3e+4+8DdaFSqOTS\nwL3O5y/TnfGdTiqU17eiRuJ8tQel9mrmxJDMR3L6gtSuZq95gYM6NftCzQzg\nErvIE6RLy08jzxogjIfY6QjORfgYOz6YAsmTe+LawGxT4MbhDAFhV5mnAV+B\n1sx5L9nYPcR0qcyWoyS4ub4ywkxbb69dSL/nMjxmz0v+ZyBSHvDjO7GN9opK\neRod3nxPpqjXvk38gOOqY2MerarIAqwFqa4AkvpDGZ0PBZBZ88NKGSeQuFIF\n3AYc\r\n=yGUN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/formula_evaluator.js","gitHead":"4dc7095668de72a9c24ce2465f69bbe2514b369c","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"ankitbug94@gmail.com"},"repository":{"url":"git+https://github.com/redhivesoftware/math-expression-evaluator.git","type":"git"},"_npmVersion":"6.13.4","description":"A flexible math expression evaluator","directories":{},"_nodeVersion":"12.14.0","_hasShrinkwrap":false,"devDependencies":{"grunt":"^0.4.5","mocha":"^2.2.5","eslint":"^6.6.0","grunt-eslint":"^19.0.0","grunt-browserify":"^3.8.0","eslint-plugin-node":"^4.2.2","grunt-contrib-watch":"^1.0.0","eslint-plugin-import":"^2.2.0","grunt-contrib-uglify":"^0.9.1","eslint-plugin-promise":"^3.5.0","eslint-config-standard":"^10.2.1","eslint-plugin-standard":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/math-expression-evaluator_1.2.20_1579908686587_0.156463189777992","host":"s3://npm-registry-packages"}},"1.2.21":{"name":"math-expression-evaluator","version":"1.2.21","keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit","email":"ankitbug94@gmail.com"},"license":"MIT","_id":"math-expression-evaluator@1.2.21","maintainers":[{"name":"anonymous","email":"ankitbug94@gmail.com"}],"homepage":"https://github.com/redhivesoftware/math-expression-evaluator#readme","bugs":{"url":"https://github.com/redhivesoftware/math-expression-evaluator/issues"},"dist":{"shasum":"205dd5ed2649217c0cb24e2344e4daa7c4f4e18a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/math-expression-evaluator/-/math-expression-evaluator-1.2.21.tgz","fileCount":14,"integrity":"sha512-vJ1IuZ5BrRofXiVf/eEVIg5DWYtWLz+YDtgCWPbudMUGIYO02BRC90rJuQTW93sMvkWWT16JE2dHEzaVA1jmyg==","signatures":[{"sig":"MEUCIQDQuSPKgyHJBbb7lyZM4o7qBLyEbeK2shLzXC/qhrUsRwIgfSyjktZ9TxdokOGONgmMouAS0U5yPg1voSUfdFs8hus=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65796,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeLAksCRA9TVsSAnZWagAAvJwP/ikmdirE9qdTr/TOweof\nPReVXmOfbBo9KSmWsXvPpm+rXsEcP/NFIbNQL7JATVhntTQNUZjuDZlY7NgU\ny6CJd0EG238jWtld0IABuxskmrdqepvpkGm7a+d2dmTwpS++J5geOLyzduYf\nb7R3osZvUyqwWrbJSqomGOonLI+7vbQMfg10c2J1LCkfatfck3l7OoOITEsS\n/b04voEAi6kVPRux5hno6QEMk2VorwFYi2Y/r8RjSPMxUOK1d/0hxAgJrsCX\n2rAZlYU0QihTuy5GL7E0kxOez7tMtROu8kJIFqkbnc8GkRrJCMwf3bhbzq6g\nJEFqDF5/q/Z/+riRTXRt6qy0oc+MfGkTLMq1YwszAWWw2FxG/p6O/BN/he5i\n1TFLBtyn9/Yw/4QgP3YZJ/mC1SkMv5PhTweh9jY9IWkhtipdTNn5NlMQu03S\n1Yj6wg7o4jYVHjPTMZDoGvB9P3ojJPxwfDB1vYrT1y8Qi590zXTJk/PIU0wP\nBUouD+K3ewUEkWB0lXNMVUxh7aekv6LEFID7H6NeVFOBwfI7Ddpa+OY5RRB8\nNHP4kR2o3tAlhH5I+DtiqoaXX0XJJPV5VgXB6aHGCiiEnjBsNpr9xZqqj3ee\nbYoL9ZFWNmaCMqGdpLtBl3VRtDuxXEwkXyHs+8SbpjBRCRtpOv+3gsvAhmn+\nmFaV\r\n=k77C\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/formula_evaluator.js","gitHead":"d4ed5d2b01bdf613606ebbbc705fe5588e8f1e99","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"ankitbug94@gmail.com"},"repository":{"url":"git+https://github.com/redhivesoftware/math-expression-evaluator.git","type":"git"},"_npmVersion":"6.13.4","description":"A flexible math expression evaluator","directories":{},"_nodeVersion":"12.14.0","_hasShrinkwrap":false,"devDependencies":{"grunt":"^0.4.5","mocha":"^2.2.5","eslint":"^6.6.0","grunt-eslint":"^19.0.0","grunt-browserify":"^3.8.0","eslint-plugin-node":"^4.2.2","grunt-contrib-watch":"^1.0.0","eslint-plugin-import":"^2.2.0","grunt-contrib-uglify":"^0.9.1","eslint-plugin-promise":"^3.5.0","eslint-config-standard":"^10.2.1","eslint-plugin-standard":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/math-expression-evaluator_1.2.21_1579944236161_0.4599474708756883","host":"s3://npm-registry-packages"}},"1.2.22":{"name":"math-expression-evaluator","version":"1.2.22","keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit","email":"ankitbug94@gmail.com"},"license":"MIT","_id":"math-expression-evaluator@1.2.22","maintainers":[{"name":"anonymous","email":"ankitbug94@gmail.com"}],"homepage":"https://github.com/bugwheels94/math-expression-evaluator#readme","bugs":{"url":"https://github.com/bugwheels94/math-expression-evaluator/issues"},"dist":{"shasum":"c14dcb3d8b4d150e5dcea9c68c8dad80309b0d5e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/math-expression-evaluator/-/math-expression-evaluator-1.2.22.tgz","fileCount":14,"integrity":"sha512-L0j0tFVZBQQLeEjmWOvDLoRciIY8gQGWahvkztXUal8jH8R5Rlqo9GCvgqvXcy9LQhEWdQCVvzqAbxgYNt4blQ==","signatures":[{"sig":"MEUCIHS65M80bJcfDVl7llcsOcrjnXdEsoIvUzZQ8vrM9Vc4AiEA4gdUsRqUpiM3rsJiSUbVs2w7oYmkVLEXlPszBFK6Vhk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65780,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeLMMTCRA9TVsSAnZWagAAhOoP/3xUjWn8O3//lxXcxpqs\nyxoZifov2M5VNnDkJrWHWPlAQGALUl6qnc5IXerPSH5k6sqIU47zU9BcI3bc\n6UUbwBdA/kaQgBNQKWtNJNRPEKGFWsi7+KGv/KizT/G0GsoRuX86/QDy1eR/\nR9aKLB9r1BFicR2Kg8XlL32Qb7MfaWQB2V+f9Q+aofwN4yzdekqKwiVGRGYu\nAhyek1/gcaChaYm7jtro3fNQ5rLYOXu2+AsQknQErY2OjwfAnIKqkQlzoRk+\nhSj5BVmBxXl/RALmUaLNlEcsyDLNDqZM2V4jJHi3ikDKwr5E2aJka1p0RJtj\nlCYmom6WJcf8rw1yzQrAMkd5wH+kIhfOxTPfO2+EftgdcHqhrnCmE8vlgIBZ\nfXru/jbT9ypFX/lWFiDJyjaZ0NAYtUg2/d4og6kGl3zJJlIN/UWLD6U/jOso\nTmPRdN/Be0eaGH8NKuZhvEtN6cIHnl4fOgwWIMEroAC7Jrv40aVrjJEbPzrf\n8YEaQUs0IhrVqF70bp9Teb3FU4GU2df/CxyHs1ZIieGwqVag8mKuWFlCqa6N\nrxZotecCphtias1OuUw39dNO1cTpBV74EO4XplbTWGJqlFi8bHSZnOyIAVVb\nkOp8z+xFTzSI8PTP3AjOoMsWsqBuhGvKFMvXL9q0CQRlCk8+WryB6Z5CC0Nb\nelRr\r\n=C5Z0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/formula_evaluator.js","gitHead":"84c8ff4a46b3244c84ee0f3aa767a07ca4971b5c","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"ankitbug94@gmail.com"},"repository":{"url":"git+https://github.com/bugwheels94/math-expression-evaluator.git","type":"git"},"_npmVersion":"6.13.4","description":"A flexible math expression evaluator","directories":{},"_nodeVersion":"12.14.0","_hasShrinkwrap":false,"devDependencies":{"grunt":"^0.4.5","mocha":"^2.2.5","eslint":"^6.6.0","grunt-eslint":"^19.0.0","grunt-browserify":"^3.8.0","eslint-plugin-node":"^4.2.2","grunt-contrib-watch":"^1.0.0","eslint-plugin-import":"^2.2.0","grunt-contrib-uglify":"^0.9.1","eslint-plugin-promise":"^3.5.0","eslint-config-standard":"^10.2.1","eslint-plugin-standard":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/math-expression-evaluator_1.2.22_1579991826969_0.3190759991538412","host":"s3://npm-registry-packages"}},"1.3.0":{"name":"math-expression-evaluator","version":"1.3.0","keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit","email":"ankitbug94@gmail.com"},"license":"MIT","_id":"math-expression-evaluator@1.3.0","maintainers":[{"name":"anonymous","email":"ankitbug94@gmail.com"}],"homepage":"https://github.com/redhivesoftware/math-expression-evaluator#readme","bugs":{"url":"https://github.com/redhivesoftware/math-expression-evaluator/issues"},"dist":{"shasum":"0ad267af7d47e2d95d17e26293b565388e0ab129","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/math-expression-evaluator/-/math-expression-evaluator-1.3.0.tgz","fileCount":14,"integrity":"sha512-mEVP0USU9A8/pTD6EIsCTxriO8IQfoSzLv2Xa+EPoP0SYAr/gOK/2nUwJOx2KUxLwPo6x/EEvStlNJdv/EbB3g==","signatures":[{"sig":"MEUCIQDqC+2xJuNTy969OH2TBcgcjBVRcn/frh3bdyio6f3G8AIgNsmD6caOCQ8dw3YIER4kHTQXZH37uRYM4dh+5DxZRlA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67916,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfseHBCRA9TVsSAnZWagAAuZ4P/R5VexFspkKMulh2tqel\nIGNeleUsL+8f8PU/bNMywYT1tH44pcYwlZDqEfBpBu/ak+Vd/oiKmNQdGN8z\nOeQGm5qiq/Wl+IITJH/JJIUYrQSnRGod9FONDfykvrceVKyTcAPBNU7w8FSo\ngPdIx5M8b3YqzrfHWDOrQEkwyMxtkf/I70q0fOqlkNHA1XdajDFPUtrC0HyJ\nA8sC+h45N/XtftoFha9dY2GgOSGJphAhdDwYxFcDPpMqhMwb5eYIW5yvfmHf\nvjrlPg826Xzd6WZTAy07GgoehACP7aT88+GzK39v+Fhc9HVYkMjXe/iULZtb\nhJK/8YlhtcVXF+ctbCMVsXsJ1MgP6/gg6bUcQBNJW4YiAJrpTQPiXR/Os23M\nt871+YLQPRbeUf9VORmwrVuh5YUQAUdux5I9y2KnqqyknMKzWHH/ng4O/HHM\npxSGx618aYOxc7qRdUzkVaVMUT4RFwtyqa3Go0IMwfv10zYw9HUxoEfixaMO\nwUO455shc9kFX/Z2OByga2YmJBCc79BzPzuTVb9dNPwB3P5bmVr/bYvlJGRI\nEnSWTDlL8atAEnIfxGo3PRdIRK4MlxuksGKY2p1/wCTmdN4zzJOySFs6nIXk\nzOzhzh7/kxzcXKFgtXZFvFrW+1uNvOB6qcDj4D1PnVzE6cktUlEe1SiHGnkG\nAI0z\r\n=1t2g\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/formula_evaluator.js","gitHead":"8aa23092152b490dde7c650e048ded8e3efd62e9","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"ankitbug94@gmail.com"},"repository":{"url":"git+https://github.com/redhivesoftware/math-expression-evaluator.git","type":"git"},"_npmVersion":"6.13.4","description":"A flexible math expression evaluator","directories":{},"_nodeVersion":"12.14.1","_hasShrinkwrap":false,"devDependencies":{"grunt":"^0.4.5","mocha":"^2.2.5","eslint":"^6.6.0","grunt-eslint":"^19.0.0","grunt-browserify":"^3.8.0","eslint-plugin-node":"^4.2.2","grunt-contrib-watch":"^1.0.0","eslint-plugin-import":"^2.2.0","grunt-contrib-uglify":"^0.9.1","eslint-plugin-promise":"^3.5.0","eslint-config-standard":"^10.2.1","eslint-plugin-standard":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/math-expression-evaluator_1.3.0_1605493184565_0.8752107604180082","host":"s3://npm-registry-packages"}},"1.3.1":{"name":"math-expression-evaluator","version":"1.3.1","keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit","email":"ankitbug94@gmail.com"},"license":"MIT","_id":"math-expression-evaluator@1.3.1","maintainers":[{"name":"anonymous","email":"ankitbug94@gmail.com"}],"homepage":"https://github.com/redhivesoftware/math-expression-evaluator#readme","bugs":{"url":"https://github.com/redhivesoftware/math-expression-evaluator/issues"},"dist":{"shasum":"df59c2481cf514badd46b9826a60e3eed004f510","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/math-expression-evaluator/-/math-expression-evaluator-1.3.1.tgz","fileCount":14,"integrity":"sha512-N1Rj0ZfsjPSKDH97ceiDgV1KTD2TsvQJmMzx6JsXIJj20YxLz/W9kdgIFiSc0oiPOheu/TyjD3imeGgCCduO0g==","signatures":[{"sig":"MEQCIDdioCSmi6IDOZ5m3z8s4UTrqPm+KYrO274atM1tnoe0AiAk1cLXK61uXD60wAXPbObZ8PgHBGSsRoiSQ/Pb9xXgwg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67811,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfsecMCRA9TVsSAnZWagAAY+IP/jfJZxbiHkx0ghKwgAaA\nzUDoWSZLmmkYFf3676Ejlgj7omSov9crSV4rrtqqUoKvwY3eRhJFqF3T4kTc\natksdyTZN0xTXscVZjMzuLjc6v6h2nEeLrcMfNHaO8pX9aJrNlEwzFW1vm11\n3Z1zMGtrUrT1OJwNDnXwWBq8Cap0lnEN3hmTh6ANceukGPnIfjlNg7SHsrn3\njIr8tWeysXcRX+vOBn01BiulFUr76NhV0RF5yGv0+cTtnfzFffecfn2dwAtX\nzivELPKNEWsOvCzfP7wFCmeQJjc6wxYaiaEvS4r+wCi84V9B6IoXhJAyzztX\nm/rx/FdOFeXiD/fKhKAD1ClkZRIqJNyABh6Ucpf1nI98ZaeCRd/t455GFlp2\nWT7GGW2Rm3gX0+Z3/BzNPIxfbRZ0zhtBNMMNul9ebveXq62GKbhFpjWoWfhF\nUwiH0C7rzxipH1FsEtBLbPEyQ8hUaq18x8Gj9UuJAOIkw3EGCT+mU0DB9xNO\noCgxZCSUjMKj0cg6gtUomTVXDxM4bmVuNqPkg/Sw27Q5k3FpBQVum9rDxYIc\nbP23mP1j62ZYTeAcZ4e4iPz1Ms0mtgmIe7k/YVuPVBbY9QUYGcIxdZc0YXUu\ncCXBZf/Jlj7AvYHuRKyl//bFN8isb1deDUuyYv1cj1zqbjvr4p92XCujbT+N\nZA0t\r\n=Btgu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/formula_evaluator.js","gitHead":"eaff9c06d80307003a47132152aa8cc27764f8e9","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"ankitbug94@gmail.com"},"repository":{"url":"git+https://github.com/redhivesoftware/math-expression-evaluator.git","type":"git"},"_npmVersion":"6.13.4","description":"A flexible math expression evaluator","directories":{},"_nodeVersion":"12.14.1","_hasShrinkwrap":false,"devDependencies":{"grunt":"^0.4.5","mocha":"^2.2.5","eslint":"^6.6.0","grunt-eslint":"^19.0.0","grunt-browserify":"^3.8.0","eslint-plugin-node":"^4.2.2","grunt-contrib-watch":"^1.0.0","eslint-plugin-import":"^2.2.0","grunt-contrib-uglify":"^0.9.1","eslint-plugin-promise":"^3.5.0","eslint-config-standard":"^10.2.1","eslint-plugin-standard":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/math-expression-evaluator_1.3.1_1605494539989_0.321616949539018","host":"s3://npm-registry-packages"}},"1.3.3":{"name":"math-expression-evaluator","version":"1.3.3","keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit","email":"ankitbug94@gmail.com"},"license":"MIT","_id":"math-expression-evaluator@1.3.3","maintainers":[{"name":"anonymous","email":"ankitbug94@gmail.com"}],"homepage":"https://github.com/redhivesoftware/math-expression-evaluator#readme","bugs":{"url":"https://github.com/redhivesoftware/math-expression-evaluator/issues"},"dist":{"shasum":"8b61badc2aadffb166c3847707057ca955c1684f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/math-expression-evaluator/-/math-expression-evaluator-1.3.3.tgz","fileCount":14,"integrity":"sha512-geKTlqoxnjqHoWqB71h0kchWIC23a3yfwwbZu4E2amjvGLF+fTjCCwBQOHkE0/oHc6KdnSVmMt3QB82KaPmKEA==","signatures":[{"sig":"MEQCICpoCpXy8rIgKsDITlTAtH46buJUYJsaZJN/IONafb0NAiASs+1M+eddYGZy5pXsF6xTg8q1lYWbJRZ87mk5AV52CA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":69779,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJftDBwCRA9TVsSAnZWagAAcoMP/0W5YU/L4TLLZvWXWZ1V\nRLMmw7XjNyfDMXPYLCQdTb8/shUJTksEGOmc8eDyGouzbzf+urKNrpkTLN4i\n7lMQ2fn6sdGBJZGR6Gs5OGeu6Np9nKmcSGBrLo1PPEgMmQK50JAHtZfChBI/\nJXQ4YgQg9n4JKojaC1izOW375KZQGBPxH5RhuNXvRMlnLyiyLpkwq62TfeHn\nv39J4AkeSupigNYbtZSfnstHQqMkN5qct1SGrCbmeYOMa3RdZpoWdSzTrJTV\n5ZXVsK8PDxm0QmxbVnDzao9BtcNXug89Mk4OOR5u74c0u28BHJaxiM1UrFbT\ntSfWgWtOy1h7HLSA4bZjidx6xIJagUOJpVBIvZLzEGdcUGEsf5PsdhWXRD9+\ni4kqVenTI1+e2rLJCktCkN0q0/okCVSgQecwWuRlSS3wyO4xXa3kkNTiKpv7\nDUdvJyZWwReuhBPpFBklAzVDgpulyoznZqitvw/CHjlGpF+QvI8Y+RiGd7Kj\ncDpf5qAGZZcyND+UUKpC0tOWmMghGtVKpk5MGfg8DVTVeNyP3RZADjj/FDkO\nB9bqexxbGiW9ZNBGlgDSa7q/w4CAdl9pR2Ypqc3TgvvhYWRdlwJjnuDsn7p+\n3gLYA1rixixu4motPw5rzpU6C98MezmGBEi8Y2E/FPRiD67HVqrJlKzv6rX8\nA+Sb\r\n=zZLr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/formula_evaluator.js","gitHead":"eaff9c06d80307003a47132152aa8cc27764f8e9","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"ankitbug94@gmail.com"},"repository":{"url":"git+https://github.com/redhivesoftware/math-expression-evaluator.git","type":"git"},"_npmVersion":"6.13.4","description":"A flexible math expression evaluator","directories":{},"_nodeVersion":"12.14.1","_hasShrinkwrap":false,"devDependencies":{"grunt":"^0.4.5","mocha":"^2.2.5","eslint":"^6.6.0","grunt-eslint":"^19.0.0","grunt-browserify":"^3.8.0","eslint-plugin-node":"^4.2.2","grunt-contrib-watch":"^1.0.0","eslint-plugin-import":"^2.2.0","grunt-contrib-uglify":"^0.9.1","eslint-plugin-promise":"^3.5.0","eslint-config-standard":"^10.2.1","eslint-plugin-standard":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/math-expression-evaluator_1.3.3_1605644399854_0.10985634013275969","host":"s3://npm-registry-packages"}},"1.3.4":{"name":"math-expression-evaluator","version":"1.3.4","keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit","email":"ankitbug94@gmail.com"},"license":"MIT","_id":"math-expression-evaluator@1.3.4","maintainers":[{"name":"anonymous","email":"ankitbug94@gmail.com"}],"homepage":"https://github.com/redhivesoftware/math-expression-evaluator#readme","bugs":{"url":"https://github.com/redhivesoftware/math-expression-evaluator/issues"},"dist":{"shasum":"2e0a8741536af10398825d5b26f0a2fb21efd6c6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/math-expression-evaluator/-/math-expression-evaluator-1.3.4.tgz","fileCount":14,"integrity":"sha512-LS4R6PlPJhtHcuowWXuwCmbdlQaWCnE6uduKnu/5cFI4wEfan3umvg1nJRD4QOh/eBC36soWVsHssc8xbYtSnA==","signatures":[{"sig":"MEQCIFQNigPIVdejEeEwfm2/P2KqifTSZdsH8RsJPswoMN1pAiBgv5QfK+xnloG4Tf7L5T3KOxwlTgpMTin9paYEYHvQIQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":69644,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfyf/sCRA9TVsSAnZWagAAc1YP/2pwZ8R6L2dnkyUqI99c\nEnv4S/XFoaINMngnrLkgRLnoJVW99Pq1658iufJEjnTHoyIKGCiOlUw1Bzlf\n0DxxA/OZFVgjE5RgmKG48jKesy9Fi7jFUDdhlEStvv2Iq+oBi+1gPoK19lVP\n8iuKAUP80C8Ri6u7NmOiTzDRuX1f+sdfhnB6DVIum/qiMA8SNsQC6crfQllI\n+G6K9nUIKB8l00GnCjvbk2qLm81ZYkHHoWQIdlORR9idxfqoe2hJwsbNf9nh\ngOipUGLEGtMyenMVTQCDqXBjF8bi8O9HK0Vbjxmac8wKi10DofEHurboAoCt\n6E2zore7cQaG2PrJHDi4HGTi/mp6whDII0Pkea7qCChy3Ma3VXvx/Nkbaaoe\niKMMpk4qkDNdkWHv+vGzG+1dU1YMxflF9F2snfZq8m90diHBEdR5Yr82Y5GP\nnm8qiWFsODUvwrf+2Wne0ymTigj+WfYat19MGGbocRSiPfMvDqPYziTs8xhZ\nQIUjp+rZFiCCos5CViG1Dry6CLOKWW1Q1EAHc0B7Vt7a8ZC+yHFvYCLYzeO7\nKGLdNOtFXIjYPJlt4VuNtX+lJgJwrSTJAC44R4Xno0mEAROqnm7+f/0/QZqz\njN5759LgkiNgpRI9gAH57pZJTRJic6r7wVgauC8wdcR1hSOnQPweySBi8r6C\nbFIe\r\n=38ba\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/formula_evaluator.js","gitHead":"444287b2ace9e5fd239b39bdea06814a1cfe7198","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"ankitbug94@gmail.com"},"repository":{"url":"git+https://github.com/redhivesoftware/math-expression-evaluator.git","type":"git"},"_npmVersion":"6.13.4","description":"A flexible math expression evaluator","directories":{},"_nodeVersion":"12.14.1","_hasShrinkwrap":false,"devDependencies":{"grunt":"^0.4.5","mocha":"^2.2.5","eslint":"^6.6.0","grunt-eslint":"^19.0.0","grunt-browserify":"^3.8.0","eslint-plugin-node":"^4.2.2","grunt-contrib-watch":"^1.0.0","eslint-plugin-import":"^2.2.0","grunt-contrib-uglify":"^0.9.1","eslint-plugin-promise":"^3.5.0","eslint-config-standard":"^10.2.1","eslint-plugin-standard":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/math-expression-evaluator_1.3.4_1607073771653_0.2288118980883742","host":"s3://npm-registry-packages"}},"1.3.5":{"name":"math-expression-evaluator","version":"1.3.5","keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit","email":"ankitbug94@gmail.com"},"license":"MIT","_id":"math-expression-evaluator@1.3.5","maintainers":[{"name":"anonymous","email":"ankitbug94@gmail.com"}],"homepage":"https://github.com/redhivesoftware/math-expression-evaluator#readme","bugs":{"url":"https://github.com/redhivesoftware/math-expression-evaluator/issues"},"dist":{"shasum":"b92fb979bcf7171035eb01a0a99e78b85851be37","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/math-expression-evaluator/-/math-expression-evaluator-1.3.5.tgz","fileCount":14,"integrity":"sha512-wTnsWeEIKZ0DfAzQXzXpP3IiHCpzxznhg5yDdoeOjXGOo33bLqyawq9xPCBZhHqaGKtfth5aNBSKFguXJOzKQA==","signatures":[{"sig":"MEUCIFFKjsPLWHNMKKTNHDG8P0fLhC7jzZlVTnsPYslR7lx1AiEA3BWQtqvUljfJ9SnbY2DCLQO8l0gimqWaf26cVMhdrI8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":69687,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfykylCRA9TVsSAnZWagAA9FMQAJX9D0L7gDVtH3GC+hXs\niFe/22/XFxN69au+BM7sxjtSAzVWsH9XsBq9PVLEv/D9QxxPHIqWUnyYgE+u\n/bVhATMbdcBtdhUoVsFb6sXX8knffXMx1TAEz55WePgsBWsPDjB4C3CUT7zT\nlKE/SXf/uF8smZpiZiTtu7ezsSJD9dyFoExzzaOu6esDUwjbS4hpA9k32nvS\n8uFbWU0RrNpwZ3S7A55ICO4B35B6RYCSmRc7S9U49gcAxphxxVRZsH8imiDJ\n/MysP8KXfP97NzjQimswoJuXMC5pHum0916xrYKFJc+iu7K2nx4SRHHlpmMz\noVH1fJcjux3G5jLvR7m+WDJuwmyrp4zFiPt6w7xcRCionxqgM8ZKg+Yfoead\nD6f5brPWkN7j4uKExTenmvZTr0VM6CxZStruoOHfJMlTIe1oMF6jsKBSKq0j\nFWIwzN8KYuofmEbQpH6jr4VUkWp2gBQ+lWvYtA7WXeq7bldbHTYBhr2s80zu\ni4rAZRwIVSxbbsh2+Wmno5Q4F40LwZn2epGOdaAgVVb3xYmUjTdSie8suEFr\nRrzgiRk9enaAR1FcvkmS+UMW2DaHfPiAM9a2vpUbK4UjCk0O/Qb2RDnGMVe+\nWqu2MQB1XHZ973xUTPxZpgJGzx1s4YTKKLEooWFtDtxdq2jJCgRvML3qOl75\n4MiA\r\n=+iN+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/formula_evaluator.js","gitHead":"e60329b1416a113b14e11acdec7784cec4c6a4fe","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"ankitbug94@gmail.com"},"repository":{"url":"git+https://github.com/redhivesoftware/math-expression-evaluator.git","type":"git"},"_npmVersion":"6.13.4","description":"A flexible math expression evaluator","directories":{},"_nodeVersion":"12.14.1","_hasShrinkwrap":false,"devDependencies":{"grunt":"^0.4.5","mocha":"^2.2.5","eslint":"^6.6.0","grunt-eslint":"^19.0.0","grunt-browserify":"^3.8.0","eslint-plugin-node":"^4.2.2","grunt-contrib-watch":"^1.0.0","eslint-plugin-import":"^2.2.0","grunt-contrib-uglify":"^0.9.1","eslint-plugin-promise":"^3.5.0","eslint-config-standard":"^10.2.1","eslint-plugin-standard":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/math-expression-evaluator_1.3.5_1607093412724_0.8982385129808019","host":"s3://npm-registry-packages"}},"1.3.6":{"name":"math-expression-evaluator","version":"1.3.6","keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit","email":"ankitbug94@gmail.com"},"license":"MIT","_id":"math-expression-evaluator@1.3.6","maintainers":[{"name":"anonymous","email":"ankitbug94@gmail.com"}],"homepage":"https://github.com/redhivesoftware/math-expression-evaluator#readme","bugs":{"url":"https://github.com/redhivesoftware/math-expression-evaluator/issues"},"dist":{"shasum":"fb8c447110093dd5f32e7aec877dd247e3c98eb1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/math-expression-evaluator/-/math-expression-evaluator-1.3.6.tgz","fileCount":14,"integrity":"sha512-gbzsZEUgefao+OqOUOr03GlpjkdOySxVNHQDuiUZXPbLHgDZqiMtOgDSxuzBEtyt9BDXWS503a16bAmlJW/oFA==","signatures":[{"sig":"MEQCIG0nYkhMgoycp/48etJYb/vex/Ub1lAr8geCnZF5N2GEAiAgkbrX5ywpid4ytHewkSl0sKVyiiwGvozusieK7+6ztA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":69737,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfyk0ACRA9TVsSAnZWagAAk8gQAJ2obOd0+a3Spaa0zC5L\nVpvA17VJ7hhCF6UG68RxbSfM8i8fzutHlKL8SWpSboKAGZtjelJH5mpgla8R\nEmbbvPAyXnilDHt9DG5WMAnxA/K57uqMoTmHnqtU4WC1W2ak7hrW6HM2Rgoq\nLaRVQ/ykY6iGbbHAoRNZmgVdeNIacsNKIsWn7B0UBFC45muZyF4a+DdN5jdy\nRsvxFAGZKMN5t7KLB3yieBctGQM4xAQTbOo3ZPM0fRcmXRxAXmSSZeUaaTWg\nxUUsm24kFkqfy14opXbM+8/WyBwpbF+upEdqQlwRtUFXf5EziSSeyDbLUDJe\n1GVh+zKCxMmPyswdJBbs7Hvy7hs5gz01EetR1Gq+QTg4tYvlJyEetEQFq0xn\nKULpJlVmMmDG3XoF9vkR7GzZOfocSI+SICvfQsePJnnDgL4CiQnNGdoTSU5D\nVOcYUSiqH1X4a8vPvXcWe2ScdGxiWeUkctzvncwNXFv577KdaAra2pmzt9lQ\n3yymxXWhnVBYRCVCX6ABbBE2jb3oiTmy+RY0L8U6jPrUjZZEdebFvFKi5wPt\nt1/7KGr2GB3Ip5jL8ARouRIbJBqp5vPaQsd74SaePdSY3VOqppJA9tKHvR3m\nAB0Ssr5rzrnmJBxSZ5lVPa515xQGJEnFPhVLKkQPuq6SYRCDusi1JE0GL/Eq\npP13\r\n=PhBY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/formula_evaluator.js","gitHead":"e60329b1416a113b14e11acdec7784cec4c6a4fe","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"ankitbug94@gmail.com"},"repository":{"url":"git+https://github.com/redhivesoftware/math-expression-evaluator.git","type":"git"},"_npmVersion":"6.13.4","description":"A flexible math expression evaluator","directories":{},"_nodeVersion":"12.14.1","_hasShrinkwrap":false,"devDependencies":{"grunt":"^0.4.5","mocha":"^2.2.5","eslint":"^6.6.0","grunt-eslint":"^19.0.0","grunt-browserify":"^3.8.0","eslint-plugin-node":"^4.2.2","grunt-contrib-watch":"^1.0.0","eslint-plugin-import":"^2.2.0","grunt-contrib-uglify":"^0.9.1","eslint-plugin-promise":"^3.5.0","eslint-config-standard":"^10.2.1","eslint-plugin-standard":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/math-expression-evaluator_1.3.6_1607093503778_0.18603528103979405","host":"s3://npm-registry-packages"}},"1.3.7":{"name":"math-expression-evaluator","version":"1.3.7","keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit","email":"ankitbug94@gmail.com"},"license":"MIT","_id":"math-expression-evaluator@1.3.7","maintainers":[{"name":"anonymous","email":"ankitbug94@gmail.com"}],"homepage":"https://github.com/redhivesoftware/math-expression-evaluator#readme","bugs":{"url":"https://github.com/redhivesoftware/math-expression-evaluator/issues"},"dist":{"shasum":"1b62225db86af06f7ea1fd9576a34af605a5b253","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/math-expression-evaluator/-/math-expression-evaluator-1.3.7.tgz","fileCount":14,"integrity":"sha512-nrbaifCl42w37hYd6oRLvoymFK42tWB+WQTMFtksDGQMi5GvlJwnz/CsS30FFAISFLtX+A0csJ0xLiuuyyec7w==","signatures":[{"sig":"MEUCIQCzMlCaQK71eta1884Ua17NGxDPwpbzl0RksMBsOtHatAIgXApstrviKxWLS7UFdNHpnyaWx2cMNjlQMvWCQ5vuKDw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":69669,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf3qORCRA9TVsSAnZWagAAFrUQAILgZgU6ZYylOK49dJMu\nnNUeuA5Y0Ij/iuCEN71wTUmd4dE3boXzG725jzm0Tx947MclOLqcxgfpuL1b\n6wg5fciyc+Rev8u33pT188KS2ZQDI/9gVJX+EwfZXwvWWQto85d5o9qjYZe4\nLb/sJ/xebiGlqr0F5BgD3yWxYi/L7AoXMkxtE1BKRm/CIHr9LtXfkIk1RISX\nKs2pybb/yvhHxyEGf9OoV5vpaCdGm3u8kvRwA/+pn+GpgUkt8Mls0OQs5r59\nWhsHA+AwOuQlkvtAfI+0AYbr37FLdsjCzu/nAKkXsfTEQds4GwTeEmBp/jMq\nI9F3+YOrA02kS1a1XhwM0L4AHpWR/g9wWbuNbDZMFvb4GH2iYG/EWxRMI111\nYLNtVT6aQIM3+kB3oEQuSrwgx9n1vKwuV5ghcjjrwKnfds3vVAuCzZ2vMlrB\n4bp2Xq1swZbWeIXDtyL7tBmipSsKr3eluHeUY7K39NC4VSF7WKsIXsJXxWvB\nhkQOBb3Yc/f+IywD5qJphSXFZ+srAHedGIFdgxJUlk6UmSBrIfUcHq3gFwyH\noqhUgqUp21ugTPXevuxg9vi+ctT1zeKUqakI7/ud1Nvczy8V10obe5ihxKFh\nxe/uf3zMCZxGx8J9Gvm5hxpvNOdNvG1CSvxLwIPOJrtZAD3vvrt4DKQ0P+SL\nHS5a\r\n=c8C8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/formula_evaluator.js","gitHead":"f47a81e4a938ffbb0210766fa47e3c4b82df2f57","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"ankitbug94@gmail.com"},"repository":{"url":"git+https://github.com/redhivesoftware/math-expression-evaluator.git","type":"git"},"_npmVersion":"6.13.4","description":"A flexible math expression evaluator","directories":{},"_nodeVersion":"12.14.1","_hasShrinkwrap":false,"devDependencies":{"grunt":"^0.4.5","mocha":"^2.2.5","eslint":"^6.6.0","grunt-eslint":"^19.0.0","grunt-browserify":"^3.8.0","eslint-plugin-node":"^4.2.2","grunt-contrib-watch":"^1.0.0","eslint-plugin-import":"^2.2.0","grunt-contrib-uglify":"^0.9.1","eslint-plugin-promise":"^3.5.0","eslint-config-standard":"^10.2.1","eslint-plugin-standard":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/math-expression-evaluator_1.3.7_1608426384599_0.7855417986745385","host":"s3://npm-registry-packages"}},"1.3.8":{"name":"math-expression-evaluator","version":"1.3.8","keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit","email":"ankitbug94@gmail.com"},"license":"MIT","_id":"math-expression-evaluator@1.3.8","maintainers":[{"name":"anonymous","email":"ankitbug94@gmail.com"}],"homepage":"https://github.com/redhivesoftware/math-expression-evaluator#readme","bugs":{"url":"https://github.com/redhivesoftware/math-expression-evaluator/issues"},"dist":{"shasum":"320da3b2bc1512f4f50fc3020b2b1cd5c8e9d577","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/math-expression-evaluator/-/math-expression-evaluator-1.3.8.tgz","fileCount":14,"integrity":"sha512-9FbRY3i6U+CbHgrdNbAUaisjWTozkm1ZfupYQJiZ87NtYHk2Zh9DvxMgp/fifxVhqTLpd5fCCLossUbpZxGeKw==","signatures":[{"sig":"MEYCIQD1wS+bBCg86PZ51vKQi86PrHKAZZgFvtFzyxPhTk2zogIhAMmspRob8H7ihQLeF1REnWtxuawyKOUO4hkYZCz2oPas","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":71529,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg35YSCRA9TVsSAnZWagAAHSAP/3C+C1d+Me88hVbReFoB\n44Eu+vpeGjT9/W2mOpO/87on22bxHuqkgAup18dG739teUirm+ET7IuHWqJv\n/mG8g/5y9wW4b500tKD3rT4aIEznNSrv5IhNFz5tP66b+sI040ZTiWw2P3Ku\naCcJ/8wTJxvdYBZOVtcn7gmsPuzQ+KDpdOP5ehDUhb8e5+DpaILRY5rqRw/x\n+HBHwfnHvwxIZBm6lYGFRFYIpGakivYPJEizC2IPtEKacnQvpaLAF7zI5XWD\n8tYW3wH9zIl3T7jkcMOb1AutOTvF3iBZQx91cj5TCw2MYBOVZlYBFX6Bl62m\nxRS1//xa2RmQekZZUzEUiQNjJFOkbjRyobIkAmqmW2XOWjNoDwdGZYmOqPIL\ntnmTcgWWWO8Uw8+URAVoKdELGpG1PQCdwziB7DVHJixutxP+cDt6AdnQ0I6j\nU2hkz0WXJna5iwgT3RsJEEuTJVNGj67K77SDNQCfjsNfzte7wP7U7KqoMUkV\ni/vy6m+pKYgHcCnY++auE9eAeQhJFMm0YHWmxsyP2S9M/QFzgB6XiaX/k2hR\nY7uKWkjzzkmLL5aNqvsGzUlWE/hf1nfpUDvzbgQxY5W8OrmgGXl1gFZSCVr1\nm03CpVsfQiCq7PEvoivZewguZ7s0XslbeW3XPGQV63RaQGKtxgR8Sd9i6sFu\naHfl\r\n=AytG\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/formula_evaluator.js","gitHead":"d3506ca45a88242b01f2b80f908d47e164b76347","scripts":{"test":"mocha"},"_npmUser":{"name":"anonymous","email":"ankitbug94@gmail.com"},"repository":{"url":"git+https://github.com/redhivesoftware/math-expression-evaluator.git","type":"git"},"_npmVersion":"7.11.2","description":"A flexible math expression evaluator","directories":{},"_nodeVersion":"16.1.0","_hasShrinkwrap":false,"devDependencies":{"grunt":"^0.4.5","mocha":"^2.2.5","eslint":"^6.6.0","grunt-eslint":"^19.0.0","grunt-browserify":"^3.8.0","eslint-plugin-node":"^4.2.2","grunt-contrib-watch":"^1.0.0","eslint-plugin-import":"^2.2.0","grunt-contrib-uglify":"^0.9.1","eslint-plugin-promise":"^3.5.0","eslint-config-standard":"^10.2.1","eslint-plugin-standard":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/math-expression-evaluator_1.3.8_1625265682009_0.3705229176941216","host":"s3://npm-registry-packages"}},"1.3.9":{"name":"math-expression-evaluator","version":"1.3.9","keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit","email":"ankitbug94@gmail.com"},"license":"MIT","_id":"math-expression-evaluator@1.3.9","maintainers":[{"name":"anonymous","email":"bugwheels94@gmail.com"}],"homepage":"https://github.com/redhivesoftware/math-expression-evaluator#readme","bugs":{"url":"https://github.com/redhivesoftware/math-expression-evaluator/issues"},"dist":{"shasum":"94e9f39942a2e557ca1133f7136c9ca48a045f8c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/math-expression-evaluator/-/math-expression-evaluator-1.3.9.tgz","fileCount":18,"integrity":"sha512-EDJ6jDSjMZBlOXUI03BwKTTMwigpOzuWQ0RI1XfAcuGDW9jB8/dlOU3Kt1hv4ojI4npJpJXvXBI6NTAZQ0PRPw==","signatures":[{"sig":"MEUCIGpvIdO+WXpy5PPBQukOEe9RyQL38h5cfioMZUd/NXBcAiEAys/A0V6W2pUQswRmcojfv0UuMxFPNNe2wIQkWH9MqGI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":84207,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh8CXICRA9TVsSAnZWagAAiTIQAIeec8G0gjm2p1xqk30L\n6vimHTW+eTTMnjGdMiKe/BPLnDFlUJkxZxBtWdDaASukKG0Xnn7z9/cX2oPV\nQPUSwXTKro+sQkdPyMV2R4i92khANG+DhvB6Md+TYaNn+2Qap/dCbsXmt3k4\ngyfbmm/e7feygckoky2y0CIrjyAqjoAM/eezMBjKOC8dmvYUy/SL0P5EqYUe\nN2dWfVI6doYrXAYpR1vqcGLFMDh0zwng9s/ggO8VlyOUCGxweRhWPRM/r34e\n4P+17fDZZBjhR8dTzpN800+KYhmLM6fWvsm017F4SGu80G3JbWUXtuLUCW0z\nzU7lCcO4i8ZS8c+gnl9LShPEzUZ6au67X4dsbfoiKCjKPFKRwliJ7KdfoMM2\naqZ1QBXyNy9xyr1aBxuYqWKqweffaDIVX9jDmMbVv0+jKd7q0G5UIrzo8OOr\nTIAPfUAs1ztf8+1K8BTpDAdXPjbt1hZx7yTh1wEvFVjxp7O5HojT0A/NUaFv\nBThJiis9vtTCymc6oolNQP3kqR0GufDqExovGuqgOnoChPxWHMhISlFZTxsr\nnQtHzdFAFBXc5aauI4dG+V3b0as6xrx/rxmHVWRKky2zNJE6izQguuydFn0s\nk1gNuBgWocu5w1ar7JhxBya7ASibEzyUl/oJLPiQFDgPU9q/6rXJQxX4THO/\nAYfE\r\n=7OL9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/formula_evaluator.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"fb3dabafab94db28807ae866c111ea4fa2b15797","scripts":{"test":"mocha","build":"grunt uglify","prepare":"husky install"},"_npmUser":{"name":"anonymous","email":"bugwheels94@gmail.com"},"repository":{"url":"git+https://github.com/redhivesoftware/math-expression-evaluator.git","type":"git"},"_npmVersion":"8.3.2","description":"A flexible math expression evaluator","directories":{},"_nodeVersion":"16.13.2","_hasShrinkwrap":false,"devDependencies":{"grunt":"^1.3.0","husky":"^7.0.4","mocha":"^2.2.5","eslint":"^6.6.0","grunt-eslint":"^19.0.0","grunt-browserify":"^3.8.0","semantic-release":"^19.0.2","eslint-plugin-node":"^4.2.2","grunt-contrib-watch":"^1.0.0","eslint-plugin-import":"^2.2.0","grunt-contrib-uglify":"^0.9.1","eslint-plugin-promise":"^3.5.0","eslint-config-standard":"^10.2.1","eslint-plugin-standard":"^3.0.1","cz-conventional-changelog":"^3.3.0"},"_npmOperationalInternal":{"tmp":"tmp/math-expression-evaluator_1.3.9_1643128264693_0.7770185678522257","host":"s3://npm-registry-packages"}},"1.3.10":{"name":"math-expression-evaluator","version":"1.3.10","keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit","email":"ankitbug94@gmail.com"},"license":"MIT","_id":"math-expression-evaluator@1.3.10","maintainers":[{"name":"anonymous","email":"bugwheels94@gmail.com"}],"homepage":"https://github.com/redhivesoftware/math-expression-evaluator#readme","bugs":{"url":"https://github.com/redhivesoftware/math-expression-evaluator/issues"},"dist":{"shasum":"9a5a6285de8cc056c1836a04991d443d77569110","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/math-expression-evaluator/-/math-expression-evaluator-1.3.10.tgz","fileCount":18,"integrity":"sha512-Js2WSyQ853nk7mCNb8XDUzHrI20ZNlewfFyp4jU678zQ5K4VTLEX5Qms42EZGwtbpppwmf44Q5EaIsYA96/Jww==","signatures":[{"sig":"MEUCIQCeFAE2QnLs1yloXhRWvJSiJQ4Spk94tvYIke3oCPjUugIgZL3etgz2oKJ8K+/3eYe7uGJFKPKS4pKnp3EE7bRBQmw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":84164,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh8GD0CRA9TVsSAnZWagAAk50P/iEo5SQHpJDqf7flT7P4\nALQ0VGfLGIuT4311FqaxbCq2hVJlsfdjSlE6Ud2ZMJfuvcxUjfY6vzPOGokB\nlkRsO5BraXuPWImDoQCj8AnsjL7Rc9QCjUMGDrkyamalVDNdm2XaWBjnalcl\neUkIA/GlzidvR2XdUVcol4gR/V6t04Wpv2OaXWElp2BuRWFos/BUtRBHUUkr\niZCm9MDCq84HY7Oq8aJisREzuOerdAxKohIVsSWLPEf/0KI5xNDgLuU0HPJr\nakCLn7PGDIMdo+qHz5TWcBXJfc2eCpDGWVMi/vefWlfYIi8xytDFgAI2BS8+\nZbcRlxSFAFSFMMRvvkz1ADkYx+TIcSUg44dnJsHeTOAba+zSwIlyGDb7KSyU\nbiGZGwHxjYZE7LFUeODSUvdJb2SpxDS072SE1R0maPveG9uH0IXCXceo3XvY\n5nWXMd+AgVvPv35Cy75o0pw8zFRWvoBr4VWrxnybMby4UBm8tLuMmcRIRniE\nJInSB70g1HAUo2MkOJEmkuLqGuADNoaBBNv+JQxzhDhXXQdyZbhabXA/n/tK\nCZlu4erl6o90raO6LWL2lZptP5sCiKX1oklHUjd5caOSB/2e2668s29ykI9E\nYlwW+F9bRGr5q16Ogq3RIw2cu6/aQ/1Ciwfkc+bVHCrFD8X4BRQjUCgI+6Ba\n3N+Q\r\n=Kizu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/formula_evaluator.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"c2fba76ad0ad86f9e2ffb94d2d021cac0a106e0a","scripts":{"test":"mocha","build":"grunt uglify","prepare":"husky install"},"_npmUser":{"name":"anonymous","email":"bugwheels94@gmail.com"},"repository":{"url":"git+https://github.com/redhivesoftware/math-expression-evaluator.git","type":"git"},"_npmVersion":"8.3.2","description":"A flexible math expression evaluator","directories":{},"_nodeVersion":"16.13.2","_hasShrinkwrap":false,"devDependencies":{"grunt":"^1.3.0","husky":"^7.0.4","mocha":"^2.2.5","eslint":"^6.6.0","grunt-eslint":"^19.0.0","grunt-browserify":"^3.8.0","semantic-release":"^19.0.2","eslint-plugin-node":"^4.2.2","grunt-contrib-watch":"^1.0.0","eslint-plugin-import":"^2.2.0","grunt-contrib-uglify":"^0.9.1","eslint-plugin-promise":"^3.5.0","eslint-config-standard":"^10.2.1","eslint-plugin-standard":"^3.0.1","cz-conventional-changelog":"^3.3.0"},"_npmOperationalInternal":{"tmp":"tmp/math-expression-evaluator_1.3.10_1643143412615_0.834764227709833","host":"s3://npm-registry-packages"}},"1.3.11":{"name":"math-expression-evaluator","version":"1.3.11","keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit","email":"ankitbug94@gmail.com"},"license":"MIT","_id":"math-expression-evaluator@1.3.11","maintainers":[{"name":"anonymous","email":"bugwheels94@gmail.com"}],"homepage":"https://github.com/redhivesoftware/math-expression-evaluator#readme","bugs":{"url":"https://github.com/redhivesoftware/math-expression-evaluator/issues"},"dist":{"shasum":"37828095bd29c37f1974c7b11e7410c8758df851","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/math-expression-evaluator/-/math-expression-evaluator-1.3.11.tgz","fileCount":18,"integrity":"sha512-xOm6QnxKj4aS216gb2YMFbEl7PP4+BkvBjy0cphVq2FTaU6O3BWVPqMA4bsTeCTaMWDeLrC2fymbRQ98GACkeg==","signatures":[{"sig":"MEUCIQCNyhatCRkW3oFG3eKdyO3qHpToaeN8foi7k+Ws3wtOEgIgQNitO3h5vsSo2094+NCIBEZTfzTdoBUF9AYMaKsE3TU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":84576,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh8V6hCRA9TVsSAnZWagAAQ3AP/1XcGtBdD2Edoh4e92Lv\nkXwHnfs3OLfvwtVj79d8wGhE1BYBzW6jzT9+Hg9qZafkaH4hdS6loa4Aa4X/\nEROcrOkPShdMXXb8qlZ44ghSMce2SDRBqZKmTlkyaSIa836LUnHt+CZuRmqS\nLx0hkd6QxdYD5q9ETIbP6AgnkIdjTudunUK7iw/s8fgG8RJ0hX/gyltfeohy\ndHSmbl3nLdE3pteCPVS/ikfY8oeq9BwIfSdslRNn9jGhCbsRtNpnYASrK9/h\nnzRHW7JvTIzY0498uFOTFF2iyDLK4wLVW2fHzHTcQsDtv7yYxbbEbtD4gI2Y\n+H7VF8FN68LI9aF6GawH/2mgN74SS1SCywYRhoEX5AK7ByfpXA8V5gh0WB9D\nGThxMNGdvViQqktuGAxdgbZmvggxz1Am9su3qGuUzSshSjeH/HX0X0XLlUB4\nX8JA43OmKOqOrIO3ARULUliSArhTT5ADUxOzCBi3+nxeCv+UCYZudJOLdSbi\nNR9gztSW2PFBmCw/MbYsRPpiGgZosYYCi7uhTS++kIWqjriRl2HNpqhlrpL9\nNhGizDSIdCH567/B8Hr+5++J9DyUNDOdgFrXuovfeuev54w2fqlbsp7Vqzqt\naWH+cNcGjsCCB1/7XO6rpWdRoF58MUVdsCwHIQPnjgCMEhVr7HaZ2LBe3u+z\nE8Yk\r\n=1bxl\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/formula_evaluator.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"afffcb40430bfb5bfaaba8e7bab355ec4d0d7cf7","scripts":{"test":"mocha","build":"grunt uglify","prepare":"husky install"},"_npmUser":{"name":"anonymous","email":"bugwheels94@gmail.com"},"repository":{"url":"git+https://github.com/redhivesoftware/math-expression-evaluator.git","type":"git"},"_npmVersion":"8.3.2","description":"A flexible math expression evaluator","directories":{},"_nodeVersion":"16.13.2","_hasShrinkwrap":false,"devDependencies":{"grunt":"^1.3.0","husky":"^7.0.4","mocha":"^2.2.5","eslint":"^6.6.0","grunt-eslint":"^19.0.0","grunt-browserify":"^3.8.0","semantic-release":"^19.0.2","eslint-plugin-node":"^4.2.2","grunt-contrib-watch":"^1.0.0","eslint-plugin-import":"^2.2.0","grunt-contrib-uglify":"^0.9.1","eslint-plugin-promise":"^3.5.0","eslint-config-standard":"^10.2.1","eslint-plugin-standard":"^3.0.1","cz-conventional-changelog":"^3.3.0"},"_npmOperationalInternal":{"tmp":"tmp/math-expression-evaluator_1.3.11_1643208353626_0.5225403847106409","host":"s3://npm-registry-packages"}},"1.3.12":{"name":"math-expression-evaluator","version":"1.3.12","keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit","email":"ankitbug94@gmail.com"},"license":"MIT","_id":"math-expression-evaluator@1.3.12","maintainers":[{"name":"anonymous","email":"bugwheels94@gmail.com"}],"homepage":"https://github.com/redhivesoftware/math-expression-evaluator#readme","bugs":{"url":"https://github.com/redhivesoftware/math-expression-evaluator/issues"},"dist":{"shasum":"778074798f51721b082bc8f8beb2e5669f60294a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/math-expression-evaluator/-/math-expression-evaluator-1.3.12.tgz","fileCount":19,"integrity":"sha512-eWZlsh5styWcOv0pORMmh92fMKOOA/kgv0y8ADKDBEu4XK2ouSnT7G7QASOCmSsVKiY7jr0a7tpJzAfYIC/PMg==","signatures":[{"sig":"MEUCIDBiIOBV+POBmPnr+b9HrFp3O4hQupG1RjPV7K/jRb5NAiEA+WdQT18StBeud5/6Mb7NorElhK9wszwMQMPMMagzbj8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":82763,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh8up5CRA9TVsSAnZWagAAECUQAIDxBqAXwHN8Rf6J1tG2\n1JhIcWvm8CWltpEt8/EB/qUWZQKYjBgh24/thg+Ft/EyBKftGZiMn/sQegJN\nt+FZSE7pYXI6TLfpu5bkec6SSioCkNBmNVOTcZZlqXei8Awc10N1W3DSKUnf\nIUOqiD9/gltJIYWmbdjMbvxZm+B04UT0hUo9QJOnJlofYMfoCYBCw1ZF+82V\nhc03owftGBoVLDwpnyiS+75B7fOr2CtdOvOV6k8jN5fTMbzezaDpdVpmXt6o\nrEg4kMWi9TXHoodd6O5nINNQfXcI+l1ltBLnNpF2v++9cF58NdYEXRQxbLFb\n+LCd/2YM1tLPBY9LtO/p8Sidpsrk5OsB43hRrlsif4YdMBBn2s1QVVO0hyRw\nIQOK0GGmrSRo7T/qzPeSU0/Lsmk8AtU0NT9aId4hT47jsq5E46ekNrfgmW8L\ndI6JYKDspOWtT9a6E5jzUnNqBTDlA9sTkoGoMP690BED/+OoqUhYQKSZx/Z8\nkyRyuH+psuf9dtNbTmnyfXJpNNwmwxm2xbnyPoephH/FR8VAcVFIZnv29gMR\nfDxwrdTpNFdIX6Sdn+6KOfntjLDjc2Gmw8ysiseaychB+wPtUo9WTEcZo6tl\ni8uDj64/l6DESuCLNkoQpjBE0iBIPU4c/0a3mRXiEmkNXdFz+GAiyMmjKSMU\nW2tn\r\n=9nnY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/formula_evaluator.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"db9e32732a530eed990ba02fc4ee5422a25dd18e","scripts":{"test":"mocha","build":"webpack && NODE_ENV=production webpack","prepare":"husky install"},"_npmUser":{"name":"anonymous","email":"bugwheels94@gmail.com"},"repository":{"url":"git+https://github.com/redhivesoftware/math-expression-evaluator.git","type":"git"},"_npmVersion":"8.3.2","description":"A flexible math expression evaluator","directories":{},"_nodeVersion":"16.13.2","dependencies":{"webpack":"^5.67.0"},"_hasShrinkwrap":false,"devDependencies":{"husky":"^7.0.4","mocha":"^2.2.5","eslint":"^6.6.0","webpack-cli":"^4.9.2","semantic-release":"^19.0.2","eslint-plugin-node":"^4.2.2","eslint-plugin-import":"^2.2.0","eslint-plugin-promise":"^3.5.0","eslint-config-standard":"^10.2.1","eslint-plugin-standard":"^3.0.1","cz-conventional-changelog":"^3.3.0"},"_npmOperationalInternal":{"tmp":"tmp/math-expression-evaluator_1.3.12_1643309689145_0.17073730584116453","host":"s3://npm-registry-packages"}},"1.3.13":{"name":"math-expression-evaluator","version":"1.3.13","keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit","email":"ankitbug94@gmail.com"},"license":"MIT","_id":"math-expression-evaluator@1.3.13","maintainers":[{"name":"anonymous","email":"bugwheels94@gmail.com"}],"homepage":"https://github.com/redhivesoftware/math-expression-evaluator#readme","bugs":{"url":"https://github.com/redhivesoftware/math-expression-evaluator/issues"},"dist":{"shasum":"bcb92f9e5a23ed9e9a4f92ada94f459592a1eca7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/math-expression-evaluator/-/math-expression-evaluator-1.3.13.tgz","fileCount":19,"integrity":"sha512-ebm28Ec6XoChCRcEPXawPJVoLb3xsrH6L814Vy/EE4zusADCVBJwmKCs1EtcYRd5dBzE53g1HuoAf4TUGHD+gg==","signatures":[{"sig":"MEYCIQDrhyeocvF6oi/chuBdUVGI1JEN9IXBx0IiYVgYi8ibZgIhAOggngH6budzVoW9iYrkDP9VTMbVYnj1cvP6AcKqRQ53","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":82739,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh83sICRA9TVsSAnZWagAA3xkP/0M56KauU10++KII0u9q\nt+HEDbfkCf1xIn3wejQiCW+XvP4jT6816n+v4/40oCpZ0/ZY/HF083QHaWaI\nqgwZxXsl8L9X/wYTQmoDfnQ9lKp03Mrwq6+w1km9q1gnqgMwNjThUS1eIlVf\nqfXIMA0muUFKkxFJtbNchysHInWjuKLkDB4xwYnghTllZ7QMayG9WFJCYFVh\nCzifaxs5HjzLSkOs0ivr0z+jnuWxBceK0JJPZpjmlgqgPX16Nrvam66N35nM\nEJOISow50s1jkYHpoJ/Nnm359BU/xCEifnVqw/3Hg8DBE60U5s5HJI2fvqEJ\nSYJTdmmGHHLasJns6IAv9mnv3FbpmmaEWeWKycUUwJ6GmSWjXhRLBbehUAcB\nsOAl0lqoP4adFVVQIF2vfHCz2iWSEquiO+jovH5uODHDwFJ9yBMOyPeiSo2C\nhkdCGdAmg/h3ipX7TSoOReb7yZmr61ut3rVcXjQfyjv64n8gKhwfCNwwtN/b\n9BeTNDFiRZ7v3tErBbO3d9kcVSKd3SFD5nMQKKRXDzRFwtmC/iAP0jRxmHN8\nHGfH1AmYzRFHRlFE0+DbT/2NYgjmq+JiNWVFk9YI33kUdl1NUEq+SLxjuVHY\nJISdlaAPXObxknP2xETReRNezu++7UYZKLc+pKJzIisstTwYOnaK+i5jeVwb\nY7Ja\r\n=jY4k\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/formula_evaluator.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"c0fd582e065d3b5b5e8e7df03d6d227822ff9e24","scripts":{"test":"mocha","build":"webpack && NODE_ENV=production webpack","prepare":"husky install"},"_npmUser":{"name":"anonymous","email":"bugwheels94@gmail.com"},"repository":{"url":"git+https://github.com/redhivesoftware/math-expression-evaluator.git","type":"git"},"_npmVersion":"8.3.2","description":"A flexible math expression evaluator","directories":{},"_nodeVersion":"16.13.2","_hasShrinkwrap":false,"devDependencies":{"husky":"^7.0.4","mocha":"^2.2.5","eslint":"^6.6.0","webpack":"^5.67.0","webpack-cli":"^4.9.2","semantic-release":"^19.0.2","eslint-plugin-node":"^4.2.2","eslint-plugin-import":"^2.2.0","eslint-plugin-promise":"^3.5.0","eslint-config-standard":"^10.2.1","eslint-plugin-standard":"^3.0.1","cz-conventional-changelog":"^3.3.0"},"_npmOperationalInternal":{"tmp":"tmp/math-expression-evaluator_1.3.13_1643346696775_0.2142810237392112","host":"s3://npm-registry-packages"}},"1.3.14":{"name":"math-expression-evaluator","version":"1.3.14","keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit","email":"ankitbug94@gmail.com"},"license":"MIT","_id":"math-expression-evaluator@1.3.14","maintainers":[{"name":"anonymous","email":"bugwheels94@gmail.com"}],"homepage":"https://github.com/redhivesoftware/math-expression-evaluator#readme","bugs":{"url":"https://github.com/redhivesoftware/math-expression-evaluator/issues"},"dist":{"shasum":"0ebeaccf65fea0f6f5a626f88df41814e5fcd9bf","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/math-expression-evaluator/-/math-expression-evaluator-1.3.14.tgz","fileCount":19,"integrity":"sha512-M6AMrvq9bO8uL42KvQHPA2/SbAobA0R7gviUmPrcTcGfdwpaLitz4q2Euzx2lP9Oy88vxK3HOrsISgSwKsYS4A==","signatures":[{"sig":"MEYCIQD8c2jgns0ot6A7qsJ0lbKtMAozpiinA3LTrigqnn6J0wIhAJIbvwTumAkD3ilFOOaP6UofeU+PjxS9Jssd0WqgeQjP","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":83625,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh9P89CRA9TVsSAnZWagAAg5EQAIGOsg1MajKV2Uh8oVgU\n0ZbcQvqB7WKNwTwN/PAhPhQ9QnOivP82dd+afr4JtVZkvfDJu3+EGu5sPkjk\nE11U5yhWEZzCudh8ZveVNmkKDOQxbtIJIhl2jnuI060yf55VnGam9oEFUPp3\nAzOiDnfnq10s0MuLhWf5eDRMJBszuRajGQ/HnJzw43jyTt9YDIoB0AoLe+bf\nes8rPXU/VkDgkN6TH7e/2MLwrIbTXpGFsvV2MCtWCeCI8t8gpMbntMMVL889\nZZbSa1zPH4usfHxPg05WiUXo3bW/md3UittYpBUXTkwyHz2vRju3218jFnTV\npYKGOrbp9NLbdjrN/5DyUhk4wVYZLn7HYKTB4Z9Ri6VO+HMspVBYiYaA+C1U\n6DGEjp/h4dGrSP9SSu9hPi5XDcVJA9QrA7Upv3m1VO2zV/AdIj+Ao/RCAYDZ\nP/qM22D29eWvuH9yxfhFVKN9Ul1RYdCN9jqKteKfVnhhWG0q6mRQmg+1TZSe\nsdF61qwz3EgrDRsEctj+wTiwIk2ltQ68EHnFZvEPGbsONuxZ7zeXEDfWCO2a\n085s9ge6gx92yHwzEtN/4IwjS0h+jk5SZPiTeG7EPeEqGrT8VX3bRWFpXTl6\nQ37cx9vNFIlH/z6bbJ3R+Lm0ryF5C/viPIIKg/eCH2w/Y8apgrqcfAtxfmWv\njRsm\r\n=T5cm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/formula_evaluator.js","config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"78248c5ad550163ad40d24b6cce599bf6b57ffca","scripts":{"test":"mocha","build":"webpack && NODE_ENV=production webpack","prepare":"husky install"},"_npmUser":{"name":"anonymous","email":"bugwheels94@gmail.com"},"repository":{"url":"git+https://github.com/redhivesoftware/math-expression-evaluator.git","type":"git"},"_npmVersion":"8.3.2","description":"A flexible math expression evaluator","directories":{},"_nodeVersion":"16.13.2","_hasShrinkwrap":false,"devDependencies":{"husky":"^7.0.4","mocha":"^2.2.5","eslint":"^6.6.0","webpack":"^5.67.0","webpack-cli":"^4.9.2","semantic-release":"^19.0.2","eslint-plugin-node":"^4.2.2","eslint-plugin-import":"^2.2.0","eslint-plugin-promise":"^3.5.0","eslint-config-standard":"^10.2.1","eslint-plugin-standard":"^3.0.1","cz-conventional-changelog":"^3.3.0"},"_npmOperationalInternal":{"tmp":"tmp/math-expression-evaluator_1.3.14_1643446076858_0.9644278565987039","host":"s3://npm-registry-packages"}},"1.4.0":{"name":"math-expression-evaluator","version":"1.4.0","keywords":["math","expression","evaluator","parser"],"author":{"name":"Ankit","email":"ankitbug94@gmail.com"},"license":"MIT","_id":"math-expression-evaluator@1.4.0","maintainers":[{"name":"anonymous","email":"bugwheels94@gmail.com"}],"homepage":"https://github.com/redhivesoftware/math-expression-evaluator#readme","bugs":{"url":"https://github.com/redhivesoftware/math-expression-evaluator/issues"},"dist":{"shasum":"3d66031117fbb7b9715ea6c9c68c2cd2eebd37e2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/math-expression-evaluator/-/math-expression-evaluator-1.4.0.tgz","fileCount":10,"integrity":"sha512-4vRUvPyxdO8cWULGTh9dZWL2tZK6LDBvj+OGHBER7poH9Qdt7kXEoj20wiz4lQUbUXQZFjPbe5mVDo9nutizCw==","signatures":[{"sig":"MEUCIG1o5errrfuISbP7s2JinHTpef4oCs44JkWzKDGOaDC9AiEArHiR980DQtl0l2W++EKYdH8UOgy/qJ0WXs96xUSBMr0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64034,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiwZEUACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoREA/8DECXEKKZFiip8oJKJ+yRqgL1GXuas4nHm3DYqPXvO0Gmdxwv\r\nr4H5k75K+Vf133kXddbvi/IDJztOldMHsvzA++CWWNEI3e2or4ERtD8VX8wq\r\n+cWoYl5jzUdD9RZwf/wiqv25m867KW3Xbzqw/s0ViGoxvoTrakBPPD71cI4K\r\nSOHB4l6Xm9OET7ThdRzA7SkuF6IIJEjd6Zz20dIrsQpcXqW7gzQEAbMJ4pc1\r\nJ0cxLI1iT2TF01u0u3Y3kafn0SqjioO702MhPdM5bzqEqefL0++sbFM5q9Nn\r\nZ39ZKuNhDdbWEyLhVxmVWNPBaFLYyliFzLi4wN7B+DBJU9SviS+iyjkeJM8V\r\nsTwBoeO82EOr9oJ5Bxau+hqh9AZtQNvkRBIhW9HHhE0OqtGRG3y/tis5oFTC\r\nYBdyQXfbNqrYUKorYHaoh/5dPfbyiigVU1yUKVmPEKs9NiYB1/WZ+OCeZaWG\r\nz22hV0Q6rek/7lg9MPY15fK+l6xQeHfLHg1uguZwZY1Fub/MYEJYPQFVtsDg\r\ni16cLfMfJQrRA/AgUWQpSQ36lPTEEB6JBx9iHyAEL8+GMHgnPZljRbflNzX+\r\n7ZuBroSGDOf5lshs8sYUPwT3cjx84bTsS2heBkm7NTvbL3ZXE6vxDjiRjVsC\r\nUaTpx2pYa9Wr2eCawzqUk7t5GaifJZx+JLo=\r\n=UApE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/formula_evaluator.js","config":{"commitizen":{"path":"cz-conventional-changelog"}},"gitHead":"b7592c9551a027bf01c5acb4e3beae43d2a014da","scripts":{"test":"mocha","build":"webpack && NODE_ENV=production webpack","prepare":"husky install"},"_npmUser":{"name":"anonymous","email":"bugwheels94@gmail.com"},"repository":{"url":"git+https://github.com/redhivesoftware/math-expression-evaluator.git","type":"git"},"_npmVersion":"8.3.2","description":"A flexible math expression evaluator","directories":{},"_nodeVersion":"16.15.1","_hasShrinkwrap":false,"devDependencies":{"husky":"^7.0.4","mocha":"^2.2.5","eslint":"^6.6.0","webpack":"^5.67.0","webpack-cli":"^4.9.2","semantic-release":"^19.0.2","eslint-plugin-node":"^4.2.2","eslint-plugin-import":"^2.2.0","eslint-plugin-promise":"^3.5.0","eslint-config-standard":"^10.2.1","eslint-plugin-standard":"^3.0.1","cz-conventional-changelog":"^3.3.0"},"_npmOperationalInternal":{"tmp":"tmp/math-expression-evaluator_1.4.0_1656852756386_0.6740667046329714","host":"s3://npm-registry-packages"}},"2.0.0":{"name":"math-expression-evaluator","version":"2.0.0","keywords":["math","expression","evaluator","parser"],"author":{"name":"bugwheels94","email":"bugwheels94@gmail.com"},"license":"MIT","_id":"math-expression-evaluator@2.0.0","maintainers":[{"name":"anonymous","email":"bugwheels94@gmail.com"}],"homepage":"https://github.com/redhivesoftware/math-expression-evaluator#readme","bugs":{"url":"https://github.com/redhivesoftware/math-expression-evaluator/issues"},"dist":{"shasum":"4d68bff4721333e0b4d9b892204f250341148345","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/math-expression-evaluator/-/math-expression-evaluator-2.0.0.tgz","fileCount":30,"integrity":"sha512-y7DME6Wbzfn6zqsoF1oRWDSv1lDCiRwHF97xudPHDKBfMf7zEZ9gSSKqr4pCpKO5awUFV5gc94WDrXsrDjb8yA==","signatures":[{"sig":"MEUCIQCsaN1ac/9rWPuDqv2gHJfnj+L1MDEDOULLciopnwjQ9wIgB14/WLZ5ZEmeu80V2fsOKucBrdzuBTiTVUUHYaTbWSE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63556,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjqgjxACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo8sA//cTbB/81CpaxOtYgWaQgK/VWeqkMee1KwrFdZvAIl05vX4s0Q\r\n4yXjhPgj3U2/tUmzw7Li1maW4ki2yoXAfq5smWNWD/+so5UHm/4rGhO16Wko\r\ne4bRWoeokgsad60nhY1EbyrakD4vJzn8qPaCBk3fEYIB09b54KPXyXJO+Z7L\r\nkGG9T2T+bJwa7Xe+z/WF/0N0YaVJp5NwIjiRWLTRe2AiOdllMcLwaxt0VPdI\r\n2wnP/zWX9uNrOE+TvwhZWptM+MgheboxWm3rIQ4G/UAaYfQHG+szmhunDjMq\r\nVP5KRUgOXOk8Cm+Fm0wiHIHl+4kMHEF4gvxMo5j7Dj+v8VMF8VCwWWWs+T9C\r\n6i1zSxNTDE7WaWvqBckm8NLdHD2D+VkcFlZjXVsg9zZzLwyzOB4Rg+5t/hxB\r\n3o83aoHQrwYyfyNB8UMsPJH6vkY6GML0XSwAmQ2W9gtweJPmWYi1HoRdU/FH\r\nxVevVH7TekoD8aeGeygMwehSLToNYMqd+uyMLzRvjI+EGW9NQY3zWSC0TAaj\r\nMhv1T7Vj45H2EQjb0IPGCKjAIijq9+OkDT9y5TARm2LuJUqCSY6Lzoac1znE\r\nSD7Vo1IOcffa/A2rpyjHtsMDOry4NVyt2BVTsO11B/8KEkt0++guxiGEXgri\r\nNC7JkT9n8odMw3JTSggzxOl9wnp1hF9QmcE=\r\n=HGiT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/es/index.js","types":"dist/types/index.d.ts","config":{"commitizen":{"path":"cz-conventional-changelog"}},"gitHead":"4f561313750d2d3e4c3c60272d7e988162accf13","scripts":{"test":"mocha","build":"run-p build:code build:types","prepare":"husky install","build:code":"rollup -c","build:types":"tsc --project ./tsconfig.types.json && replace 'import type' 'import' ./dist/types -r --silent && replace 'export type' 'export' ./dist/types -r --silent","build:watch":"run-p build:code:watch build:types:watch","build:code:watch":"rollup -c -w","build:types:watch":"tsc --watch --project ./tsconfig.types.json && replace 'import type' 'import' ./types -r --silent && replace 'export type' 'export' ./types -r --silent"},"_npmUser":{"name":"anonymous","email":"bugwheels94@gmail.com"},"repository":{"url":"git+https://github.com/redhivesoftware/math-expression-evaluator.git","type":"git"},"_npmVersion":"8.3.2","description":"A flexible math expression evaluator","directories":{},"_nodeVersion":"16.18.1","_hasShrinkwrap":false,"devDependencies":{"husky":"^7.0.4","mocha":"^2.2.5","eslint":"^6.6.0","replace":"^1.2.2","webpack":"^5.67.0","fast-glob":"^3.2.12","typescript":"^4.9.4","npm-run-all":"^4.1.5","webpack-cli":"^4.9.2","semantic-release":"^19.0.2","@babel/preset-env":"^7.20.2","eslint-plugin-node":"^4.2.2","@rollup/plugin-babel":"^6.0.3","eslint-plugin-import":"^2.2.0","rollup-plugin-terser":"^7.0.2","eslint-plugin-promise":"^3.5.0","eslint-config-standard":"^10.2.1","eslint-plugin-standard":"^3.0.1","@babel/preset-typescript":"^7.18.6","cz-conventional-changelog":"^3.3.0","@rollup/plugin-node-resolve":"^15.0.1","rollup-plugin-peer-deps-external":"^2.2.4"},"_npmOperationalInternal":{"tmp":"tmp/math-expression-evaluator_2.0.0_1672087793775_0.47370607629426065","host":"s3://npm-registry-packages"}},"2.0.1":{"name":"math-expression-evaluator","version":"2.0.1","keywords":["math","expression","evaluator","parser"],"author":{"name":"bugwheels94","email":"bugwheels94@gmail.com"},"license":"MIT","_id":"math-expression-evaluator@2.0.1","maintainers":[{"name":"anonymous","email":"bugwheels94@gmail.com"}],"homepage":"https://github.com/redhivesoftware/math-expression-evaluator#readme","bugs":{"url":"https://github.com/redhivesoftware/math-expression-evaluator/issues"},"dist":{"shasum":"05940800f62250ec04eca90e29f4a500e3d9943d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/math-expression-evaluator/-/math-expression-evaluator-2.0.1.tgz","fileCount":30,"integrity":"sha512-raIaQY5ZxoBPSQYObY//v7hBkCN6D8P3ExRnG01aMMrd4en5/F5ps9JyA/dVCq39dBgXeQYnulb8R82uRzC06g==","signatures":[{"sig":"MEYCIQDD4yaBnvEbdW6DLOOp6qpDZCSVOSCRNBP3MyZiLK/bEQIhAL3vkVlyoMZgHh0k4d7c8zLeCdIPsT6K24xnvVMDF3a7","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63355,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjzS0/ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoOZA//ezBWwGs3s2Q1D1yYXoDU3BPnizQPnduOXJ4/IJ6xiKQoYcMa\r\nPYRkc2u/+3N86N6xvxjyas4Gt1TBGggqEQ37vb5a1j6tDWHwZiqrQ4vdxkob\r\nrFFSZzaEb2DxQd3dXQPrhx9mBur2scwSnU0VaxjykTJg6VNJ/wpYC74OIpgf\r\nNunbbdUuJt7Y48to8qLGnWfR52Zw5OTT3hklXagosdUmxQVIS0y+mgmUqaAc\r\noXFpMekBmv/8QIjGTcGbE87DRKuA2xqq61q5SK55EQRtcrKxvnjrB2KUSM4A\r\nOZqeEnPnS5aiZsYsGkXPJ7Bf+aWrH6I/OMNVK2VFa2mqMhgqYDuun1EiyRU9\r\nRDoGIrAFxeeDGD1kL9ciJPoYkj6vkaNffyWxrukNsIq6GxvjhQbD+w7fFoPP\r\n9c8XhNJbqQRyUMqJuiSA9cFjUZdWqX2sIxKgV6akeL52Pwi8pIaeDOXXV5eB\r\nrMZtpCCxi47N/PpIYUBD1cQ3xGu3NoDxGggFhy5y78WaJdYxoL3UEpiGnH6w\r\nn0RqasHtnmqtdAXefwumH0OIWO4jmkVZ6sYQV8voSMafVpgBi4hM1vnJATqY\r\nAPdxAR2yymjIoZc3vc/SUyL6csNjqJzOfT43SL69SuA6yPYmNjy/x78gYYoP\r\n4oykotc0dNXvFWxwU/1sx5gY2gO8drnlJ24=\r\n=JRft\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/es/index.js","types":"dist/types/index.d.ts","config":{"commitizen":{"path":"cz-conventional-changelog"}},"gitHead":"4a27f92048a186c05e4e4473b8c4f14542f33e0d","scripts":{"test":"mocha","build":"run-p build:code build:types","prepare":"husky install","build:code":"rollup -c","build:types":"tsc --project ./tsconfig.types.json","build:watch":"run-p build:code:watch build:types:watch","build:code:watch":"rollup -c -w","build:types:watch":"tsc --watch --project ./tsconfig.types.json"},"_npmUser":{"name":"anonymous","email":"bugwheels94@gmail.com"},"repository":{"url":"git+https://github.com/redhivesoftware/math-expression-evaluator.git","type":"git"},"_npmVersion":"8.3.2","description":"A flexible math expression evaluator","directories":{},"_nodeVersion":"16.19.0","_hasShrinkwrap":false,"devDependencies":{"husky":"^7.0.4","mocha":"^2.2.5","eslint":"^6.6.0","replace":"^1.2.2","webpack":"^5.67.0","fast-glob":"^3.2.12","typescript":"^4.9.4","npm-run-all":"^4.1.5","webpack-cli":"^4.9.2","semantic-release":"^19.0.2","@babel/preset-env":"^7.20.2","eslint-plugin-node":"^4.2.2","@rollup/plugin-babel":"^6.0.3","eslint-plugin-import":"^2.2.0","rollup-plugin-terser":"^7.0.2","eslint-plugin-promise":"^3.5.0","eslint-config-standard":"^10.2.1","eslint-plugin-standard":"^3.0.1","@babel/preset-typescript":"^7.18.6","cz-conventional-changelog":"^3.3.0","@rollup/plugin-node-resolve":"^15.0.1","rollup-plugin-peer-deps-external":"^2.2.4"},"_npmOperationalInternal":{"tmp":"tmp/math-expression-evaluator_2.0.1_1674390847069_0.8491902721724449","host":"s3://npm-registry-packages"}},"2.0.2":{"name":"math-expression-evaluator","version":"2.0.2","keywords":["math","expression","evaluator","parser"],"author":{"name":"bugwheels94","email":"bugwheels94@gmail.com"},"license":"MIT","_id":"math-expression-evaluator@2.0.2","maintainers":[{"name":"anonymous","email":"bugwheels94@gmail.com"}],"homepage":"https://github.com/redhivesoftware/math-expression-evaluator#readme","bugs":{"url":"https://github.com/redhivesoftware/math-expression-evaluator/issues"},"dist":{"shasum":"1ab3b7f511df8dba222354a6d2c5dbd727c0ca98","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/math-expression-evaluator/-/math-expression-evaluator-2.0.2.tgz","fileCount":30,"integrity":"sha512-NeM3+TcbLqlx0wijwVtz0bJeCAlfUIlIBUSp8pjmTi6YfBJ52GnbtVOyFhphC0vTjj1ZQjVlbV4QvNR7Rbweiw==","signatures":[{"sig":"MEYCIQCGZcfl+5KZgYZ+9ZItqOxqEBz+80QSfDpWxrBuvhGGlAIhAIVGfFufxAcsshhFBrTVLbqoveOYR0eTfUUeSoH+YCfv","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63411,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj0XzfACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqgWw/+NxYd7m4paLsJHlYxtcPOFIWnGYnIGt4KnHGQYrx3VpNLkiUq\r\n0bZzZARY+kGg55U/MD6paOI0GTvGtH4y5KLHigphPjBx69Qq51qQl1/LrVOj\r\nPSlkWTicLlu3vFbPbrV22gOUk9CRU2a61gXAEcnXw4jGNC9EY4dr7sk/+3I/\r\nnS9/Ezdd1IFWBH0zdtQ0dlkYg+iWhhHeth4zokbS+KXRBLiLjv1G0oSqXBB2\r\n9klwJQMJbvWmZNKGB+MwxXPiP4lKW4/90wniEp0ShNPM2ba3Wj8PkafCtVTG\r\n8q76sHgOq1oAUJA52jJUp7kEIDS+x0CBlRv97yYNysZdjeVS41wtIeu/yWEY\r\nNme+SXEber+/oM4u3NHK5yE651nEmTIFeTVGvl4cuiuTkBiHi6PSmtBavXdK\r\n9FG43UomfcOnKUkDchc26z9anAjFCxvBcndt6jtHtVdKBDELNGXjX/P7IcCW\r\nRgGpoL0BlIHSK5vZPqLHzAc+kUrRVPMz1DJWjNb9rYNHPLe1wyYvWdrl34p5\r\nK7TwiLblUlwk+L9Z+WyKiHgFmjVVIxHmoFuvw3omTcYoqnHo0ldKJXVtKXwg\r\nsYGSX9ZgKoQKsP5ZN8aUtKeGKqu4GFEapROd6XPMzjO2Ub1QQoiUrlB7tW01\r\nvmyYw56auyk5kcefQeGO1htMX9ismVeudKM=\r\n=Cyr9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/es/index.js","types":"dist/types/index.d.ts","config":{"commitizen":{"path":"cz-conventional-changelog"}},"gitHead":"ed9ebfd6af8ddea939a55a64eee9a5ff953863c0","scripts":{"test":"mocha","build":"run-p build:code build:types","prepare":"husky install","build:code":"rollup -c","build:types":"tsc --project ./tsconfig.types.json","build:watch":"run-p build:code:watch build:types:watch","build:code:watch":"rollup -c -w","build:types:watch":"tsc --watch --project ./tsconfig.types.json"},"_npmUser":{"name":"anonymous","email":"bugwheels94@gmail.com"},"repository":{"url":"git+https://github.com/redhivesoftware/math-expression-evaluator.git","type":"git"},"_npmVersion":"8.3.2","description":"A flexible math expression evaluator","directories":{},"_nodeVersion":"16.19.0","_hasShrinkwrap":false,"devDependencies":{"husky":"^7.0.4","mocha":"^2.2.5","eslint":"^6.6.0","replace":"^1.2.2","webpack":"^5.67.0","fast-glob":"^3.2.12","typescript":"^4.9.4","npm-run-all":"^4.1.5","webpack-cli":"^4.9.2","semantic-release":"^19.0.2","@babel/preset-env":"^7.20.2","eslint-plugin-node":"^4.2.2","@rollup/plugin-babel":"^6.0.3","eslint-plugin-import":"^2.2.0","rollup-plugin-terser":"^7.0.2","eslint-plugin-promise":"^3.5.0","eslint-config-standard":"^10.2.1","eslint-plugin-standard":"^3.0.1","@babel/preset-typescript":"^7.18.6","cz-conventional-changelog":"^3.3.0","@rollup/plugin-node-resolve":"^15.0.1","rollup-plugin-peer-deps-external":"^2.2.4"},"_npmOperationalInternal":{"tmp":"tmp/math-expression-evaluator_2.0.2_1674673375727_0.26949765092776934","host":"s3://npm-registry-packages"}},"2.0.3":{"name":"math-expression-evaluator","version":"2.0.3","keywords":["math","expression","evaluator","parser"],"author":{"name":"bugwheels94","email":"bugwheels94@gmail.com"},"license":"MIT","_id":"math-expression-evaluator@2.0.3","maintainers":[{"name":"anonymous","email":"bugwheels94@gmail.com"}],"homepage":"https://github.com/redhivesoftware/math-expression-evaluator#readme","bugs":{"url":"https://github.com/redhivesoftware/math-expression-evaluator/issues"},"dist":{"shasum":"c7c2e66b7ef5b462846a137ca124aca21f3b4a62","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/math-expression-evaluator/-/math-expression-evaluator-2.0.3.tgz","fileCount":30,"integrity":"sha512-sAuxMtmCVjVnp70mT1kDHdVpiVSQtpLP4crI67wvJfoOfSSB2CBpQ9MtYtEhZL87lVnFviKK2d/sSfgOCKQ+mg==","signatures":[{"sig":"MEYCIQDxLIBBXXUjzsdjb16Zk9t1w1wLeFNmIeEHMX8G1v2CuwIhAOeXxgfwEJrOE6bNsBZbu4JgnqLwdgKhHleW37UUi7CX","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63411},"main":"dist/es/index.js","types":"dist/types/index.d.ts","config":{"commitizen":{"path":"cz-conventional-changelog"}},"gitHead":"b731588892d90e6c55eea003ec64be4213bd530d","scripts":{"test":"mocha","build":"run-p build:code build:types","prepare":"husky install","build:code":"rollup -c","build:types":"tsc --project ./tsconfig.types.json","build:watch":"run-p build:code:watch build:types:watch","build:code:watch":"rollup -c -w","build:types:watch":"tsc --watch --project ./tsconfig.types.json"},"_npmUser":{"name":"anonymous","email":"bugwheels94@gmail.com"},"repository":{"url":"git+https://github.com/redhivesoftware/math-expression-evaluator.git","type":"git"},"_npmVersion":"8.3.2","description":"A flexible math expression evaluator","directories":{},"_nodeVersion":"16.20.0","_hasShrinkwrap":false,"devDependencies":{"husky":"^7.0.4","mocha":"^2.2.5","eslint":"^6.6.0","replace":"^1.2.2","webpack":"^5.67.0","fast-glob":"^3.2.12","typescript":"^4.9.4","npm-run-all":"^4.1.5","webpack-cli":"^4.9.2","semantic-release":"^19.0.2","@babel/preset-env":"^7.20.2","eslint-plugin-node":"^4.2.2","@rollup/plugin-babel":"^6.0.3","eslint-plugin-import":"^2.2.0","rollup-plugin-terser":"^7.0.2","eslint-plugin-promise":"^3.5.0","eslint-config-standard":"^10.2.1","eslint-plugin-standard":"^3.0.1","@babel/preset-typescript":"^7.18.6","cz-conventional-changelog":"^3.3.0","@rollup/plugin-node-resolve":"^15.0.1","rollup-plugin-peer-deps-external":"^2.2.4"},"_npmOperationalInternal":{"tmp":"tmp/math-expression-evaluator_2.0.3_1686324830638_0.03861317683256016","host":"s3://npm-registry-packages"}},"2.0.4":{"name":"math-expression-evaluator","version":"2.0.4","keywords":["math","expression","evaluator","parser"],"author":{"name":"bugwheels94","email":"bugwheels94@gmail.com"},"license":"MIT","_id":"math-expression-evaluator@2.0.4","maintainers":[{"name":"anonymous","email":"bugwheels94@gmail.com"}],"homepage":"https://github.com/redhivesoftware/math-expression-evaluator#readme","bugs":{"url":"https://github.com/redhivesoftware/math-expression-evaluator/issues"},"dist":{"shasum":"dc12809017ff806125c15383080151557c8875c8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/math-expression-evaluator/-/math-expression-evaluator-2.0.4.tgz","fileCount":30,"integrity":"sha512-qFITJw8W6x1K5pwHsOHEczD2ylabqwYEVt4eF9XkhnFFmyF+fkgGAs3YSumcbaTdKrBwtpHssqTduces8Vw+yg==","signatures":[{"sig":"MEUCIGE+ux2p5qoxFsVDrMTBO7BshVslFiznCYzdQ12mTJfaAiEAt9Z/Vksl7VgPgtFVtbO2TImCXtgenTe6mULcvxRcQRA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67974},"main":"dist/es/index.js","types":"dist/types/index.d.ts","config":{"commitizen":{"path":"cz-conventional-changelog"}},"gitHead":"9d05bb1675c419c599373257c8ed895035cc1ddd","scripts":{"test":"mocha","build":"run-p build:code build:types","prepare":"husky install","build:code":"rollup -c","build:types":"tsc --project ./tsconfig.types.json","build:watch":"run-p build:code:watch build:types:watch","build:code:watch":"rollup -c -w","build:types:watch":"tsc --watch --project ./tsconfig.types.json"},"_npmUser":{"name":"anonymous","email":"bugwheels94@gmail.com"},"repository":{"url":"git+https://github.com/redhivesoftware/math-expression-evaluator.git","type":"git"},"_npmVersion":"8.3.2","description":"A flexible math expression evaluator","directories":{},"_nodeVersion":"16.20.2","_hasShrinkwrap":false,"devDependencies":{"husky":"^7.0.4","mocha":"^2.2.5","eslint":"^6.6.0","replace":"^1.2.2","webpack":"^5.67.0","fast-glob":"^3.2.12","typescript":"^4.9.4","npm-run-all":"^4.1.5","webpack-cli":"^4.9.2","semantic-release":"^19.0.2","@babel/preset-env":"^7.20.2","eslint-plugin-node":"^4.2.2","@rollup/plugin-babel":"^6.0.3","eslint-plugin-import":"^2.2.0","rollup-plugin-terser":"^7.0.2","eslint-plugin-promise":"^3.5.0","eslint-config-standard":"^10.2.1","eslint-plugin-standard":"^3.0.1","@babel/preset-typescript":"^7.18.6","cz-conventional-changelog":"^3.3.0","@rollup/plugin-node-resolve":"^15.0.1","rollup-plugin-peer-deps-external":"^2.2.4"},"_npmOperationalInternal":{"tmp":"tmp/math-expression-evaluator_2.0.4_1698003554990_0.01953325120026772","host":"s3://npm-registry-packages"}},"2.0.5":{"name":"math-expression-evaluator","version":"2.0.5","keywords":["math","expression","evaluator","parser"],"author":{"name":"bugwheels94","email":"bugwheels94@gmail.com"},"license":"MIT","_id":"math-expression-evaluator@2.0.5","maintainers":[{"name":"anonymous","email":"bugwheels94@gmail.com"}],"homepage":"https://github.com/redhivesoftware/math-expression-evaluator#readme","bugs":{"url":"https://github.com/redhivesoftware/math-expression-evaluator/issues"},"dist":{"shasum":"df2852dc7afdcf0e5105603e2a0e54e817de8ba6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/math-expression-evaluator/-/math-expression-evaluator-2.0.5.tgz","fileCount":30,"integrity":"sha512-C8Ifr3BpZ1E8ncWiHltndUkimvkzBwEiXPRyDJVxspo/G7zSN8tLHwFVfrGotvWzu2wuRkjnxaEayFblepmN5Q==","signatures":[{"sig":"MEUCIQCDs8GkCW4yvPrpZq6s0zO/7lLXKUeynJSQlcw/WUGY2QIgBWBx5flnOpWHqpUPqQJG+2H+E0fcbvmhAgOni62SfyM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":68008},"main":"dist/es/index.js","types":"dist/types/index.d.ts","config":{"commitizen":{"path":"cz-conventional-changelog"}},"gitHead":"dc925959887990de3b1d014f76a7950912196726","scripts":{"test":"mocha","build":"run-p build:code build:types","prepare":"husky install","build:code":"rollup -c","build:types":"tsc --project ./tsconfig.types.json","build:watch":"run-p build:code:watch build:types:watch","build:code:watch":"rollup -c -w","build:types:watch":"tsc --watch --project ./tsconfig.types.json"},"_npmUser":{"name":"anonymous","email":"bugwheels94@gmail.com"},"repository":{"url":"git+https://github.com/redhivesoftware/math-expression-evaluator.git","type":"git"},"_npmVersion":"8.3.2","description":"A flexible math expression evaluator","directories":{},"_nodeVersion":"16.20.2","_hasShrinkwrap":false,"devDependencies":{"husky":"^7.0.4","mocha":"^2.2.5","eslint":"^6.6.0","replace":"^1.2.2","webpack":"^5.67.0","fast-glob":"^3.2.12","typescript":"^4.9.4","npm-run-all":"^4.1.5","webpack-cli":"^4.9.2","semantic-release":"^19.0.2","@babel/preset-env":"^7.20.2","eslint-plugin-node":"^4.2.2","@rollup/plugin-babel":"^6.0.3","eslint-plugin-import":"^2.2.0","rollup-plugin-terser":"^7.0.2","eslint-plugin-promise":"^3.5.0","eslint-config-standard":"^10.2.1","eslint-plugin-standard":"^3.0.1","@babel/preset-typescript":"^7.18.6","cz-conventional-changelog":"^3.3.0","@rollup/plugin-node-resolve":"^15.0.1","rollup-plugin-peer-deps-external":"^2.2.4"},"_npmOperationalInternal":{"tmp":"tmp/math-expression-evaluator_2.0.5_1707125381152_0.6539688869834899","host":"s3://npm-registry-packages"}},"2.0.6":{"name":"math-expression-evaluator","version":"2.0.6","keywords":["math","expression","evaluator","parser"],"author":{"name":"bugwheels94","email":"bugwheels94@gmail.com"},"license":"MIT","_id":"math-expression-evaluator@2.0.6","maintainers":[{"name":"anonymous","email":"bugwheels94@gmail.com"}],"homepage":"https://github.com/redhivesoftware/math-expression-evaluator#readme","bugs":{"url":"https://github.com/redhivesoftware/math-expression-evaluator/issues"},"dist":{"shasum":"a33028e4d55e7dcfcca17a696738e1a25b8e2c22","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/math-expression-evaluator/-/math-expression-evaluator-2.0.6.tgz","fileCount":30,"integrity":"sha512-DRung1qNcKbgkhFeQ0fBPUFB6voRUMY7KyRyp1TRQ2v95Rp2egC823xLRooM1mDx1rmbkY7ym6ZWmpaE/VimOA==","signatures":[{"sig":"MEUCIQCktRt6uQVxgE5nt0IMMjGVFFLSjmzIpawDK42Pet9YiAIgeMqOK5x3zrx9pjo1WPtKLfcNrDB6d1tcUxXp2XwJqxo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":68008},"main":"dist/es/index.js","types":"dist/types/index.d.ts","config":{"commitizen":{"path":"cz-conventional-changelog"}},"gitHead":"23aee50b1c406071e04ce710bec431f116fb6f11","scripts":{"test":"mocha","build":"run-p build:code build:types","prepare":"husky install","build:code":"rollup -c","build:types":"tsc --project ./tsconfig.types.json","build:watch":"run-p build:code:watch build:types:watch","build:code:watch":"rollup -c -w","build:types:watch":"tsc --watch --project ./tsconfig.types.json"},"_npmUser":{"name":"anonymous","email":"bugwheels94@gmail.com"},"repository":{"url":"git+https://github.com/redhivesoftware/math-expression-evaluator.git","type":"git"},"_npmVersion":"8.3.2","description":"A flexible math expression evaluator","directories":{},"_nodeVersion":"16.20.2","_hasShrinkwrap":false,"devDependencies":{"husky":"^7.0.4","mocha":"^2.2.5","eslint":"^6.6.0","replace":"^1.2.2","webpack":"^5.67.0","fast-glob":"^3.2.12","typescript":"^4.9.4","npm-run-all":"^4.1.5","webpack-cli":"^4.9.2","semantic-release":"^19.0.2","@babel/preset-env":"^7.20.2","eslint-plugin-node":"^4.2.2","@rollup/plugin-babel":"^6.0.3","eslint-plugin-import":"^2.2.0","rollup-plugin-terser":"^7.0.2","eslint-plugin-promise":"^3.5.0","eslint-config-standard":"^10.2.1","eslint-plugin-standard":"^3.0.1","@babel/preset-typescript":"^7.18.6","cz-conventional-changelog":"^3.3.0","@rollup/plugin-node-resolve":"^15.0.1","rollup-plugin-peer-deps-external":"^2.2.4"},"_npmOperationalInternal":{"tmp":"tmp/math-expression-evaluator_2.0.6_1731902124702_0.06674478421304197","host":"s3://npm-registry-packages"}},"2.0.7":{"name":"math-expression-evaluator","version":"2.0.7","description":"A flexible math expression evaluator","main":"dist/es/index.js","types":"dist/types/index.d.ts","scripts":{"test":"mocha","prepare":"husky install","build:code:watch":"rollup -c -w","build:code":"rollup -c","build:types:watch":"tsc --watch --project ./tsconfig.types.json","build:types":"tsc --project ./tsconfig.types.json","build:watch":"run-p build:code:watch build:types:watch","build":"run-p build:code build:types"},"repository":{"type":"git","url":"git+https://github.com/redhivesoftware/math-expression-evaluator.git"},"keywords":["math","expression","evaluator","parser"],"author":{"name":"bugwheels94","email":"bugwheels94@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/redhivesoftware/math-expression-evaluator/issues"},"homepage":"https://github.com/redhivesoftware/math-expression-evaluator#readme","devDependencies":{"@babel/preset-env":"^7.20.2","@babel/preset-typescript":"^7.18.6","@rollup/plugin-babel":"^6.0.3","@rollup/plugin-node-resolve":"^15.0.1","cz-conventional-changelog":"^3.3.0","eslint":"^6.6.0","eslint-config-standard":"^10.2.1","eslint-plugin-import":"^2.2.0","eslint-plugin-node":"^4.2.2","eslint-plugin-promise":"^3.5.0","eslint-plugin-standard":"^3.0.1","fast-glob":"^3.2.12","husky":"^7.0.4","mocha":"^2.2.5","npm-run-all":"^4.1.5","replace":"^1.2.2","rollup-plugin-peer-deps-external":"^2.2.4","rollup-plugin-terser":"^7.0.2","semantic-release":"^19.0.2","typescript":"^4.9.4","webpack":"^5.67.0","webpack-cli":"^4.9.2"},"config":{"commitizen":{"path":"cz-conventional-changelog"}},"gitHead":"d71894e3b13254164c51375d5944505139d504e2","_id":"math-expression-evaluator@2.0.7","_nodeVersion":"20.19.2","_npmVersion":"10.8.2","dist":{"integrity":"sha512-uwliJZ6BPHRq4eiqNWxZBDzKUiS5RIynFFcgchqhBOloVLVBpZpNG8jRYkedLcBvhph8TnRyWEuxPqiQcwIdog==","shasum":"dc99a80ce2bf7f9b7df878126feb5c506c1fdf5f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/math-expression-evaluator/-/math-expression-evaluator-2.0.7.tgz","fileCount":30,"unpackedSize":68259,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEQCIG4n4DfLtvRCVoF9sVOdCkvZxs7Wwn1tqxFDj1XOgaP+AiBqxnT9syS2PoIbD4JqKJ40k8dBYikyT963hJbyBqskow=="}]},"_npmUser":{"name":"anonymous","email":"bugwheels94@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"bugwheels94@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/math-expression-evaluator_2.0.7_1749213399234_0.038581310900651644"},"_hasShrinkwrap":false}},"name":"math-expression-evaluator","time":{"created":"2015-07-15T20:50:21.993Z","modified":"2025-06-06T12:36:39.599Z","1.0.0":"2015-07-15T20:50:21.993Z","1.0.1":"2015-07-15T21:38:06.194Z","1.0.2":"2015-07-15T22:10:22.251Z","1.0.3":"2015-07-15T23:45:38.846Z","1.0.4":"2015-07-18T17:36:39.314Z","1.0.5":"2015-07-18T19:58:12.771Z","1.0.6":"2015-07-18T20:30:10.552Z","1.0.7":"2015-07-21T12:06:31.710Z","1.1.0":"2015-07-30T10:41:13.918Z","1.2.0":"2015-07-31T21:30:43.890Z","1.2.1":"2015-08-01T09:34:06.439Z","1.2.2":"2015-08-02T18:32:16.588Z","1.2.3":"2015-08-02T18:34:33.238Z","1.2.4":"2015-08-02T20:00:56.197Z","1.2.5":"2015-08-04T07:18:19.118Z","1.2.7":"2015-08-05T12:06:34.793Z","1.2.8":"2015-08-10T13:20:03.330Z","1.2.9":"2016-06-11T18:29:28.861Z","1.2.11":"2016-08-22T11:10:31.504Z","1.2.12":"2016-08-22T13:05:09.437Z","1.2.13":"2016-08-23T02:58:28.346Z","1.2.14":"2016-08-25T08:18:09.074Z","1.2.15":"2017-01-20T22:58:10.583Z","1.2.16":"2017-02-02T07:52:26.936Z","1.2.17":"2017-04-28T13:49:52.201Z","1.2.18":"2020-01-24T22:58:17.670Z","1.2.19":"2020-01-24T23:17:48.554Z","1.2.20":"2020-01-24T23:31:26.715Z","1.2.21":"2020-01-25T09:23:56.272Z","1.2.22":"2020-01-25T22:37:07.122Z","1.3.0":"2020-11-16T02:19:44.778Z","1.3.1":"2020-11-16T02:42:20.115Z","1.3.3":"2020-11-17T20:19:59.981Z","1.3.4":"2020-12-04T09:22:51.765Z","1.3.5":"2020-12-04T14:50:12.845Z","1.3.6":"2020-12-04T14:51:43.921Z","1.3.7":"2020-12-20T01:06:24.736Z","1.3.8":"2021-07-02T22:41:22.146Z","1.3.9":"2022-01-25T16:31:04.833Z","1.3.10":"2022-01-25T20:43:32.764Z","1.3.11":"2022-01-26T14:45:53.768Z","1.3.12":"2022-01-27T18:54:49.319Z","1.3.13":"2022-01-28T05:11:36.909Z","1.3.14":"2022-01-29T08:47:57.013Z","1.4.0":"2022-07-03T12:52:36.605Z","2.0.0":"2022-12-26T20:49:53.922Z","2.0.1":"2023-01-22T12:34:07.250Z","2.0.2":"2023-01-25T19:02:55.942Z","2.0.3":"2023-06-09T15:33:50.793Z","2.0.4":"2023-10-22T19:39:15.160Z","2.0.5":"2024-02-05T09:29:41.330Z","2.0.6":"2024-11-18T03:55:24.856Z","2.0.7":"2025-06-06T12:36:39.407Z"},"readmeFilename":"README.md","homepage":"https://github.com/redhivesoftware/math-expression-evaluator#readme"}