{"maintainers":[{"name":"mikemcl","email":"M8ch88l@gmail.com"}],"keywords":["arbitrary","precision","arithmetic","big","number","decimal","float","biginteger","bigdecimal","bignumber","bigint","bignum"],"dist-tags":{"version4":"4.0.4","latest":"10.2.0"},"author":{"name":"Michael Mclaughlin","email":"M8ch88l@gmail.com"},"description":"An arbitrary-precision Decimal type for JavaScript.","readme":"![decimal.js](https://raw.githubusercontent.com/MikeMcl/decimal.js/gh-pages/decimaljs.png)\r\n\r\nAn arbitrary-precision Decimal type for JavaScript.\r\n\r\n[![Build Status](https://travis-ci.org/MikeMcl/decimal.js.svg)](https://travis-ci.org/MikeMcl/decimal.js)\r\n[![CDNJS](https://img.shields.io/cdnjs/v/decimal.js.svg)](https://cdnjs.com/libraries/decimal.js)\r\n\r\n<br>\r\n\r\n## Features\r\n\r\n  - Integers and floats\r\n  - Simple but full-featured API\r\n  - Replicates many of the methods of JavaScript's `Number.prototype` and `Math` objects\r\n  - Also handles hexadecimal, binary and octal values\r\n  - Faster, smaller, and perhaps easier to use than JavaScript versions of Java's BigDecimal\r\n  - No dependencies\r\n  - Wide platform compatibility: uses JavaScript 1.5 (ECMAScript 3) features only\r\n  - Comprehensive [documentation](http://mikemcl.github.io/decimal.js/) and test set\r\n  - Includes a TypeScript declaration file: *decimal.d.ts*\r\n\r\n![API](https://raw.githubusercontent.com/MikeMcl/decimal.js/gh-pages/API.png)\r\n\r\nThe library is similar to [bignumber.js](https://github.com/MikeMcl/bignumber.js/), but here\r\nprecision is specified in terms of significant digits rather than decimal places, and all\r\ncalculations are rounded to the precision (similar to Python's decimal module) rather than just\r\nthose involving division.\r\n\r\nThis library also adds the trigonometric functions, among others, and supports non-integer powers,\r\nwhich makes it a significantly larger library than *bignumber.js* and the even smaller\r\n[big.js](https://github.com/MikeMcl/big.js/).\r\n\r\nFor a lighter version of this library without the trigonometric functions see [decimal.js-light](https://github.com/MikeMcl/decimal.js-light/).\r\n\r\n## Load\r\n\r\nThe library is the single JavaScript file *decimal.js* (or minified, *decimal.min.js*).\r\n\r\nBrowser:\r\n\r\n```html\r\n<script src='path/to/decimal.js'></script>\r\n```\r\n\r\n[Node.js](http://nodejs.org):\r\n\r\n```bash\r\n$ npm install --save decimal.js\r\n```\r\n\r\n```js\r\nvar Decimal = require('decimal.js');\r\n```\r\n\r\nES6 module (*decimal.mjs*):\r\n\r\n```js\r\n//import Decimal from 'decimal.js';\r\nimport {Decimal} from 'decimal.js';\r\n```\r\n\r\nAMD loader libraries such as [requireJS](http://requirejs.org/):\r\n\r\n```js\r\nrequire(['decimal'], function(Decimal) {\r\n    // Use Decimal here in local scope. No global Decimal.\r\n});\r\n```\r\n\r\n## Use\r\n\r\n*In all examples below, `var`, semicolons and `toString` calls are not shown.\r\nIf a commented-out value is in quotes it means `toString` has been called on the preceding expression.*\r\n\r\nThe library exports a single function object, `Decimal`, the constructor of Decimal instances.\r\n\r\nIt accepts a value of type number, string or Decimal.\r\n\r\n```js\r\nx = new Decimal(123.4567)\r\ny = new Decimal('123456.7e-3')\r\nz = new Decimal(x)\r\nx.equals(y) && y.equals(z) && x.equals(z)        // true\r\n```\r\n\r\nA value can also be in binary, hexadecimal or octal if the appropriate prefix is included.\r\n\r\n```js\r\nx = new Decimal('0xff.f')            // '255.9375'\r\ny = new Decimal('0b10101100')        // '172'\r\nz = x.plus(y)                        // '427.9375'\r\n\r\nz.toBinary()                         // '0b110101011.1111'\r\nz.toBinary(13)                       // '0b1.101010111111p+8'\r\n```\r\n\r\nUsing binary exponential notation to create a Decimal with the value of `Number.MAX_VALUE`:\r\n\r\n```js\r\nx = new Decimal('0b1.1111111111111111111111111111111111111111111111111111p+1023')\r\n```\r\n\r\nA Decimal is immutable in the sense that it is not changed by its methods.\r\n\r\n```js\r\n0.3 - 0.1                     // 0.19999999999999998\r\nx = new Decimal(0.3)\r\nx.minus(0.1)                  // '0.2'\r\nx                             // '0.3'\r\n```\r\n\r\nThe methods that return a Decimal can be chained.\r\n\r\n```js\r\nx.dividedBy(y).plus(z).times(9).floor()\r\nx.times('1.23456780123456789e+9').plus(9876.5432321).dividedBy('4444562598.111772').ceil()\r\n```\r\n\r\nMany method names have a shorter alias.\r\n\r\n```js\r\nx.squareRoot().dividedBy(y).toPower(3).equals(x.sqrt().div(y).pow(3))         // true\r\nx.cmp(y.mod(z).neg()) == 1 && x.comparedTo(y.modulo(z).negated()) == 1        // true\r\n```\r\n\r\nLike JavaScript's Number type, there are `toExponential`, `toFixed` and `toPrecision` methods,\r\n\r\n```js\r\nx = new Decimal(255.5)\r\nx.toExponential(5)              // '2.55500e+2'\r\nx.toFixed(5)                    // '255.50000'\r\nx.toPrecision(5)                // '255.50'\r\n```\r\n\r\nand almost all of the methods of JavaScript's Math object are also replicated.\r\n\r\n```js\r\nDecimal.sqrt('6.98372465832e+9823')      // '8.3568682281821340204e+4911'\r\nDecimal.pow(2, 0.0979843)                // '1.0702770511687781839'\r\n```\r\n\r\nThere are `isNaN` and `isFinite` methods, as `NaN` and `Infinity` are valid `Decimal` values,\r\n\r\n```js\r\nx = new Decimal(NaN)                                           // 'NaN'\r\ny = new Decimal(Infinity)                                      // 'Infinity'\r\nx.isNaN() && !y.isNaN() && !x.isFinite() && !y.isFinite()      // true\r\n```\r\n\r\nand a `toFraction` method with an optional *maximum denominator* argument\r\n\r\n```js\r\nz = new Decimal(355)\r\npi = z.dividedBy(113)        // '3.1415929204'\r\npi.toFraction()              // [ '7853982301', '2500000000' ]\r\npi.toFraction(1000)          // [ '355', '113' ]\r\n```\r\n\r\nAll calculations are rounded according to the number of significant digits and rounding mode\r\nspecified by the `precision` and `rounding` properties of the Decimal constructor.\r\n\r\nFor advanced usage, multiple Decimal constructors can be created, each with their own independent configuration which\r\napplies to all Decimal numbers created from it.\r\n\r\n```js\r\n// Set the precision and rounding of the default Decimal constructor\r\nDecimal.set({ precision: 5, rounding: 4 })\r\n\r\n// Create another Decimal constructor, optionally passing in a configuration object\r\nDecimal9 = Decimal.clone({ precision: 9, rounding: 1 })\r\n\r\nx = new Decimal(5)\r\ny = new Decimal9(5)\r\n\r\nx.div(3)                           // '1.6667'\r\ny.div(3)                           // '1.66666666'\r\n```\r\n\r\nThe value of a Decimal is stored in a floating point format in terms of its digits, exponent and sign.\r\n\r\n```js\r\nx = new Decimal(-12345.67);\r\nx.d                            // [ 12345, 6700000 ]    digits (base 10000000)\r\nx.e                            // 4                     exponent (base 10)\r\nx.s                            // -1                    sign\r\n```\r\n\r\nFor further information see the [API](http://mikemcl.github.io/decimal.js/) reference in the *doc* directory.\r\n\r\n## Test\r\n\r\nThe library can be tested using Node.js or a browser.\r\n\r\nThe *test* directory contains the file *test.js* which runs all the tests when executed by Node,\r\nand the file *test.html* which runs all the tests when opened in a browser.\r\n\r\nTo run all the tests, from a command-line at the root directory using npm\r\n\r\n```bash\r\n$ npm test\r\n```\r\n\r\nor at the *test* directory using Node\r\n\r\n```bash\r\n$ node test\r\n```\r\n\r\nEach separate test module can also be executed individually, for example, at the *test/modules* directory\r\n\r\n```bash\r\n$ node toFraction\r\n```\r\n\r\n## Build\r\n\r\nFor Node, if [uglify-js](https://github.com/mishoo/UglifyJS2) is installed\r\n\r\n```bash\r\nnpm install uglify-js -g\r\n```\r\n\r\nthen\r\n\r\n```bash\r\nnpm run build\r\n```\r\n\r\nwill create *decimal.min.js*, and a source map will also be added to the *doc* directory.\r\n\r\n## Licence\r\n\r\nMIT.\r\n\r\nSee *LICENCE.md*\r\n","repository":{"type":"git","url":"git+https://github.com/MikeMcl/decimal.js.git"},"users":{"marco.jahn":true,"ocd_lionel":true,"tracker1":true,"antanst":true,"burninator":true,"abuelwafa":true,"brainpoint":true,"nogirev":true,"zanner":true,"rahulraghavankklm":true,"sharper":true,"jimzhuangdev":true,"pedromsilva":true,"raycharles":true,"edob":true,"hugonasciutti":true,"zhangaz1":true},"bugs":{"url":"https://github.com/MikeMcl/decimal.js/issues"},"license":"MIT","versions":{"1.0.0":{"name":"decimal.js","description":"An arbitrary-precision Decimal type for JavaScript.","version":"1.0.0","keywords":["arbitrary","precision","arithmetic","big","number","decimal","float","biginteger","bigdecimal","bignumber","bigint","bignum"],"repository":{"type":"git","url":"https://github.com/MikeMcl/decimal.js.git"},"main":"decimal","author":{"name":"Michael Mclaughlin","email":"M8ch88l@gmail.com"},"engines":{"node":"*"},"license":"MIT","scripts":{"test":"node ./test/every-test.js","build":"uglifyjs decimal.js -c -m -o decimal.min.js --preamble '/* decimal.js v1.0.0 https://github.com/MikeMcl/decimal.js/LICENCE */'"},"bugs":{"url":"https://github.com/MikeMcl/decimal.js/issues"},"homepage":"https://github.com/MikeMcl/decimal.js","_id":"decimal.js@1.0.0","dist":{"shasum":"7a7bade13d3be2a5aa050c4453ce2b4c4ecf0868","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/decimal.js/-/decimal.js-1.0.0.tgz"},"_from":".","_npmVersion":"1.3.21","_npmUser":{"name":"mikemcl","email":"M8ch88l@gmail.com"},"maintainers":[{"name":"mikemcl","email":"M8ch88l@gmail.com"}],"directories":{}},"1.0.1":{"name":"decimal.js","description":"An arbitrary-precision Decimal type for JavaScript.","version":"1.0.1","keywords":["arbitrary","precision","arithmetic","big","number","decimal","float","biginteger","bigdecimal","bignumber","bigint","bignum"],"repository":{"type":"git","url":"https://github.com/MikeMcl/decimal.js.git"},"main":"decimal","author":{"name":"Michael Mclaughlin","email":"M8ch88l@gmail.com"},"engines":{"node":"*"},"license":"MIT","scripts":{"test":"node ./test/every-test.js","build":"uglifyjs decimal.js -c -m -o decimal.min.js --preamble '/* decimal.js v1.0.0 https://github.com/MikeMcl/decimal.js/LICENCE */'"},"bugs":{"url":"https://github.com/MikeMcl/decimal.js/issues"},"homepage":"https://github.com/MikeMcl/decimal.js","_id":"decimal.js@1.0.1","dist":{"shasum":"54c7dc9947edd328ae1d7e9f744a84b7843b3486","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/decimal.js/-/decimal.js-1.0.1.tgz"},"_from":".","_npmVersion":"1.3.21","_npmUser":{"name":"mikemcl","email":"M8ch88l@gmail.com"},"maintainers":[{"name":"mikemcl","email":"M8ch88l@gmail.com"}],"directories":{}},"2.0.0":{"name":"decimal.js","description":"An arbitrary-precision Decimal type for JavaScript.","version":"2.0.0","keywords":["arbitrary","precision","arithmetic","big","number","decimal","float","biginteger","bigdecimal","bignumber","bigint","bignum"],"repository":{"type":"git","url":"https://github.com/MikeMcl/decimal.js.git"},"main":"decimal","author":{"name":"Michael Mclaughlin","email":"M8ch88l@gmail.com"},"engines":{"node":"*"},"license":"MIT","scripts":{"test":"node ./test/every-test.js","build":"uglifyjs decimal.js -c -m -o decimal.min.js --preamble '/* decimal.js v2.0.0 https://github.com/MikeMcl/decimal.js/LICENCE */'"},"bugs":{"url":"https://github.com/MikeMcl/decimal.js/issues"},"homepage":"https://github.com/MikeMcl/decimal.js","_id":"decimal.js@2.0.0","dist":{"shasum":"417c3bb70f07292621e69508487b5a836bdcfd36","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/decimal.js/-/decimal.js-2.0.0.tgz"},"_from":".","_npmVersion":"1.3.21","_npmUser":{"name":"mikemcl","email":"M8ch88l@gmail.com"},"maintainers":[{"name":"mikemcl","email":"M8ch88l@gmail.com"}],"directories":{}},"2.0.1":{"name":"decimal.js","description":"An arbitrary-precision Decimal type for JavaScript.","version":"2.0.1","keywords":["arbitrary","precision","arithmetic","big","number","decimal","float","biginteger","bigdecimal","bignumber","bigint","bignum"],"repository":{"type":"git","url":"https://github.com/MikeMcl/decimal.js.git"},"main":"decimal","author":{"name":"Michael Mclaughlin","email":"M8ch88l@gmail.com"},"engines":{"node":"*"},"license":"MIT","scripts":{"test":"node ./test/every-test.js","build":"uglifyjs decimal.js -c -m -o decimal.min.js --preamble '/* decimal.js v2.0.0 https://github.com/MikeMcl/decimal.js/LICENCE */'"},"bugs":{"url":"https://github.com/MikeMcl/decimal.js/issues"},"homepage":"https://github.com/MikeMcl/decimal.js","_id":"decimal.js@2.0.1","dist":{"shasum":"ecc2cf67ccc67f9341f7e37602102ee4fc36c73c","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/decimal.js/-/decimal.js-2.0.1.tgz"},"_from":".","_npmVersion":"1.3.21","_npmUser":{"name":"mikemcl","email":"M8ch88l@gmail.com"},"maintainers":[{"name":"mikemcl","email":"M8ch88l@gmail.com"}],"directories":{}},"2.0.2":{"name":"decimal.js","description":"An arbitrary-precision Decimal type for JavaScript.","version":"2.0.2","keywords":["arbitrary","precision","arithmetic","big","number","decimal","float","biginteger","bigdecimal","bignumber","bigint","bignum"],"repository":{"type":"git","url":"https://github.com/MikeMcl/decimal.js.git"},"main":"decimal","author":{"name":"Michael Mclaughlin","email":"M8ch88l@gmail.com"},"engines":{"node":"*"},"license":"MIT","scripts":{"test":"node ./test/every-test.js","build":"uglifyjs decimal.js -c -m -o decimal.min.js --preamble '/* decimal.js v2.0.2 https://github.com/MikeMcl/decimal.js/LICENCE */'"},"bugs":{"url":"https://github.com/MikeMcl/decimal.js/issues"},"homepage":"https://github.com/MikeMcl/decimal.js","_id":"decimal.js@2.0.2","dist":{"shasum":"65bbfba37d73320bebe189916b04061b75d760cf","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/decimal.js/-/decimal.js-2.0.2.tgz"},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"mikemcl","email":"M8ch88l@gmail.com"},"maintainers":[{"name":"mikemcl","email":"M8ch88l@gmail.com"}],"directories":{}},"2.0.3":{"name":"decimal.js","description":"An arbitrary-precision Decimal type for JavaScript.","version":"2.0.3","keywords":["arbitrary","precision","arithmetic","big","number","decimal","float","biginteger","bigdecimal","bignumber","bigint","bignum"],"repository":{"type":"git","url":"https://github.com/MikeMcl/decimal.js.git"},"main":"decimal","author":{"name":"Michael Mclaughlin","email":"M8ch88l@gmail.com"},"engines":{"node":"*"},"license":"MIT","scripts":{"test":"node ./test/every-test.js","build":"uglifyjs decimal.js -c -m -o decimal.min.js --preamble '/* decimal.js v2.0.3 https://github.com/MikeMcl/decimal.js/LICENCE */'"},"bugs":{"url":"https://github.com/MikeMcl/decimal.js/issues"},"homepage":"https://github.com/MikeMcl/decimal.js","_id":"decimal.js@2.0.3","dist":{"shasum":"3b5e151f61f78f6305b169f3bcc0ec24418be6f8","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/decimal.js/-/decimal.js-2.0.3.tgz"},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"mikemcl","email":"M8ch88l@gmail.com"},"maintainers":[{"name":"mikemcl","email":"M8ch88l@gmail.com"}],"directories":{}},"3.0.0":{"name":"decimal.js","description":"An arbitrary-precision Decimal type for JavaScript.","version":"3.0.0","keywords":["arbitrary","precision","arithmetic","big","number","decimal","float","biginteger","bigdecimal","bignumber","bigint","bignum"],"repository":{"type":"git","url":"https://github.com/MikeMcl/decimal.js.git"},"main":"decimal","author":{"name":"Michael Mclaughlin","email":"M8ch88l@gmail.com"},"engines":{"node":"*"},"license":"MIT","scripts":{"test":"node ./test/every-test.js","build":"uglifyjs decimal.js -c -m -o decimal.min.js --preamble '/* decimal.js v3.0.0 https://github.com/MikeMcl/decimal.js/LICENCE */'"},"bugs":{"url":"https://github.com/MikeMcl/decimal.js/issues"},"homepage":"https://github.com/MikeMcl/decimal.js","_id":"decimal.js@3.0.0","dist":{"shasum":"ef20537863357492a29393c5ba21108e4af22d2b","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/decimal.js/-/decimal.js-3.0.0.tgz"},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"mikemcl","email":"M8ch88l@gmail.com"},"maintainers":[{"name":"mikemcl","email":"M8ch88l@gmail.com"}],"directories":{}},"3.0.1":{"name":"decimal.js","description":"An arbitrary-precision Decimal type for JavaScript.","version":"3.0.1","keywords":["arbitrary","precision","arithmetic","big","number","decimal","float","biginteger","bigdecimal","bignumber","bigint","bignum"],"repository":{"type":"git","url":"https://github.com/MikeMcl/decimal.js.git"},"main":"decimal","author":{"name":"Michael Mclaughlin","email":"M8ch88l@gmail.com"},"engines":{"node":"*"},"license":"MIT","scripts":{"test":"node ./test/every-test.js","build":"uglifyjs decimal.js -c -m -o decimal.min.js --preamble '/* decimal.js v3.0.1 https://github.com/MikeMcl/decimal.js/LICENCE */'"},"bugs":{"url":"https://github.com/MikeMcl/decimal.js/issues"},"homepage":"https://github.com/MikeMcl/decimal.js","_id":"decimal.js@3.0.1","dist":{"shasum":"4609a5a343f8b7af429fa76ea4a4c4427c6d065e","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/decimal.js/-/decimal.js-3.0.1.tgz"},"_from":".","_npmVersion":"1.4.6","_npmUser":{"name":"mikemcl","email":"M8ch88l@gmail.com"},"maintainers":[{"name":"mikemcl","email":"M8ch88l@gmail.com"}],"directories":{}},"4.0.0":{"name":"decimal.js","description":"An arbitrary-precision Decimal type for JavaScript.","version":"4.0.0","keywords":["arbitrary","precision","arithmetic","big","number","decimal","float","biginteger","bigdecimal","bignumber","bigint","bignum"],"repository":{"type":"git","url":"https://github.com/MikeMcl/decimal.js.git"},"main":"decimal","author":{"name":"Michael Mclaughlin","email":"M8ch88l@gmail.com"},"engines":{"node":"*"},"license":"MIT","scripts":{"test":"node ./test/every-test.js","build":"uglifyjs decimal.js -c -m -o decimal.min.js --preamble '/* decimal.js v4.0.0 https://github.com/MikeMcl/decimal.js/LICENCE */'"},"gitHead":"8d7a9969de32cdab3075bef0729ab6b050da3510","bugs":{"url":"https://github.com/MikeMcl/decimal.js/issues"},"homepage":"https://github.com/MikeMcl/decimal.js","_id":"decimal.js@4.0.0","_shasum":"941942ed30eb72fb922b4400d56d7b591ce64cd9","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"mikemcl","email":"M8ch88l@gmail.com"},"maintainers":[{"name":"mikemcl","email":"M8ch88l@gmail.com"}],"dist":{"shasum":"941942ed30eb72fb922b4400d56d7b591ce64cd9","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/decimal.js/-/decimal.js-4.0.0.tgz"},"directories":{}},"4.0.1":{"name":"decimal.js","description":"An arbitrary-precision Decimal type for JavaScript.","version":"4.0.1","keywords":["arbitrary","precision","arithmetic","big","number","decimal","float","biginteger","bigdecimal","bignumber","bigint","bignum"],"repository":{"type":"git","url":"https://github.com/MikeMcl/decimal.js.git"},"main":"decimal","author":{"name":"Michael Mclaughlin","email":"M8ch88l@gmail.com"},"engines":{"node":"*"},"license":"MIT","scripts":{"test":"node ./test/every-test.js","build":"uglifyjs decimal.js -c -m -o decimal.min.js --preamble '/* decimal.js v4.0.1 https://github.com/MikeMcl/decimal.js/LICENCE */'"},"gitHead":"d136e91d66125171a0452b95123b3b455f472900","bugs":{"url":"https://github.com/MikeMcl/decimal.js/issues"},"homepage":"https://github.com/MikeMcl/decimal.js","_id":"decimal.js@4.0.1","_shasum":"7b15e933f4294219e73d7b01123e970342a1a8bf","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"mikemcl","email":"M8ch88l@gmail.com"},"maintainers":[{"name":"mikemcl","email":"M8ch88l@gmail.com"}],"dist":{"shasum":"7b15e933f4294219e73d7b01123e970342a1a8bf","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/decimal.js/-/decimal.js-4.0.1.tgz"},"directories":{}},"4.0.2":{"name":"decimal.js","description":"An arbitrary-precision Decimal type for JavaScript.","version":"4.0.2","keywords":["arbitrary","precision","arithmetic","big","number","decimal","float","biginteger","bigdecimal","bignumber","bigint","bignum"],"repository":{"type":"git","url":"https://github.com/MikeMcl/decimal.js.git"},"main":"decimal","author":{"name":"Michael Mclaughlin","email":"M8ch88l@gmail.com"},"engines":{"node":"*"},"license":"MIT","scripts":{"test":"node ./test/every-test.js","build":"uglifyjs decimal.js --source-map doc/decimal.js.map -c -m -o decimal.min.js --preamble \"/* decimal.js v4.0.2 https://github.com/MikeMcl/decimal.js/LICENCE */\""},"gitHead":"aaa0794f69cf8cde935048bc75ef9c45097d03b4","bugs":{"url":"https://github.com/MikeMcl/decimal.js/issues"},"homepage":"https://github.com/MikeMcl/decimal.js","_id":"decimal.js@4.0.2","_shasum":"3473bbfaa66d5ba48cb576fa9e2cd2065ccaec98","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"mikemcl","email":"M8ch88l@gmail.com"},"maintainers":[{"name":"mikemcl","email":"M8ch88l@gmail.com"}],"dist":{"shasum":"3473bbfaa66d5ba48cb576fa9e2cd2065ccaec98","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/decimal.js/-/decimal.js-4.0.2.tgz"},"directories":{}},"4.0.3":{"name":"decimal.js","description":"An arbitrary-precision Decimal type for JavaScript.","version":"4.0.3","keywords":["arbitrary","precision","arithmetic","big","number","decimal","float","biginteger","bigdecimal","bignumber","bigint","bignum"],"repository":{"type":"git","url":"git+https://github.com/MikeMcl/decimal.js.git"},"main":"decimal","author":{"name":"Michael Mclaughlin","email":"M8ch88l@gmail.com"},"engines":{"node":"*"},"license":"MIT","scripts":{"test":"node ./test/every-test.js","build":"uglifyjs decimal.js --source-map doc/decimal.js.map -c -m -o decimal.min.js --preamble \"/* decimal.js v4.0.3 https://github.com/MikeMcl/decimal.js/LICENCE */\""},"gitHead":"bc66aa91a5104408f14cec147fcc4c847c8f8e73","bugs":{"url":"https://github.com/MikeMcl/decimal.js/issues"},"homepage":"https://github.com/MikeMcl/decimal.js#readme","_id":"decimal.js@4.0.3","_shasum":"ecbe1f21570d602e75e62a118c700e314a77dea0","_from":".","_npmVersion":"2.14.2","_nodeVersion":"4.0.0","_npmUser":{"name":"mikemcl","email":"M8ch88l@gmail.com"},"maintainers":[{"name":"mikemcl","email":"M8ch88l@gmail.com"}],"dist":{"shasum":"ecbe1f21570d602e75e62a118c700e314a77dea0","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/decimal.js/-/decimal.js-4.0.3.tgz"},"directories":{}},"5.0.0":{"name":"decimal.js","description":"An arbitrary-precision Decimal type for JavaScript.","version":"5.0.0","keywords":["arbitrary","precision","arithmetic","big","number","decimal","float","biginteger","bigdecimal","bignumber","bigint","bignum"],"repository":{"type":"git","url":"git+https://github.com/MikeMcl/decimal.js.git"},"main":"decimal","author":{"name":"Michael Mclaughlin","email":"M8ch88l@gmail.com"},"license":"MIT","scripts":{"test":"node ./test/test.js","build":"uglifyjs decimal.js --source-map doc/decimal.js.map -c -m -o decimal.min.js --preamble \"/* decimal.js v5.0.0 https://github.com/MikeMcl/decimal.js/LICENCE */\""},"gitHead":"8a6f8fe412fe8ace311724a40b5d59f0343b5f9a","bugs":{"url":"https://github.com/MikeMcl/decimal.js/issues"},"homepage":"https://github.com/MikeMcl/decimal.js#readme","_id":"decimal.js@5.0.0","_shasum":"07d6ef69299ca27ebd8edfca5b0758e041f32311","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"mikemcl","email":"M8ch88l@gmail.com"},"maintainers":[{"name":"mikemcl","email":"M8ch88l@gmail.com"}],"dist":{"shasum":"07d6ef69299ca27ebd8edfca5b0758e041f32311","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/decimal.js/-/decimal.js-5.0.0.tgz"},"directories":{}},"5.0.1":{"name":"decimal.js","description":"An arbitrary-precision Decimal type for JavaScript.","version":"5.0.1","keywords":["arbitrary","precision","arithmetic","big","number","decimal","float","biginteger","bigdecimal","bignumber","bigint","bignum"],"repository":{"type":"git","url":"git+https://github.com/MikeMcl/decimal.js.git"},"main":"decimal","author":{"name":"Michael Mclaughlin","email":"M8ch88l@gmail.com"},"license":"MIT","scripts":{"test":"node ./test/test.js","build":"uglifyjs decimal.js --source-map doc/decimal.js.map -c -m -o decimal.min.js --preamble \"/* decimal.js v5.0.1 https://github.com/MikeMcl/decimal.js/LICENCE */\""},"gitHead":"b8b2ed7a2b0bde8fbbdc543b2f6eed98f1a0c7da","bugs":{"url":"https://github.com/MikeMcl/decimal.js/issues"},"homepage":"https://github.com/MikeMcl/decimal.js#readme","_id":"decimal.js@5.0.1","_shasum":"350223e8134659ae53409e4fe78151631c0ad695","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"mikemcl","email":"M8ch88l@gmail.com"},"maintainers":[{"name":"mikemcl","email":"M8ch88l@gmail.com"}],"dist":{"shasum":"350223e8134659ae53409e4fe78151631c0ad695","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/decimal.js/-/decimal.js-5.0.1.tgz"},"directories":{}},"5.0.2":{"name":"decimal.js","description":"An arbitrary-precision Decimal type for JavaScript.","version":"5.0.2","keywords":["arbitrary","precision","arithmetic","big","number","decimal","float","biginteger","bigdecimal","bignumber","bigint","bignum"],"repository":{"type":"git","url":"git+https://github.com/MikeMcl/decimal.js.git"},"main":"decimal","author":{"name":"Michael Mclaughlin","email":"M8ch88l@gmail.com"},"license":"MIT","scripts":{"test":"node ./test/test.js","build":"uglifyjs decimal.js --source-map doc/decimal.js.map -c -m -o decimal.min.js --preamble \"/* decimal.js v5.0.2 https://github.com/MikeMcl/decimal.js/LICENCE */\""},"gitHead":"587b9fe82f9a20dcebe8280a31030f9bb5a8c0f9","bugs":{"url":"https://github.com/MikeMcl/decimal.js/issues"},"homepage":"https://github.com/MikeMcl/decimal.js#readme","_id":"decimal.js@5.0.2","_shasum":"17ba5343f9d57c495f571166fe728add7569f65e","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"mikemcl","email":"M8ch88l@gmail.com"},"maintainers":[{"name":"mikemcl","email":"M8ch88l@gmail.com"}],"dist":{"shasum":"17ba5343f9d57c495f571166fe728add7569f65e","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/decimal.js/-/decimal.js-5.0.2.tgz"},"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/decimal.js-5.0.2.tgz_1454630921176_0.2635290625039488"},"directories":{}},"5.0.3":{"name":"decimal.js","description":"An arbitrary-precision Decimal type for JavaScript.","version":"5.0.3","keywords":["arbitrary","precision","arithmetic","big","number","decimal","float","biginteger","bigdecimal","bignumber","bigint","bignum"],"repository":{"type":"git","url":"git+https://github.com/MikeMcl/decimal.js.git"},"main":"decimal","author":{"name":"Michael Mclaughlin","email":"M8ch88l@gmail.com"},"license":"MIT","scripts":{"test":"node ./test/test.js","build":"uglifyjs decimal.js --source-map doc/decimal.js.map -c -m -o decimal.min.js --preamble \"/* decimal.js v5.0.3 https://github.com/MikeMcl/decimal.js/LICENCE */\""},"gitHead":"ea61253cbcbf56490c1dd5d609e3864e57676b33","bugs":{"url":"https://github.com/MikeMcl/decimal.js/issues"},"homepage":"https://github.com/MikeMcl/decimal.js#readme","_id":"decimal.js@5.0.3","_shasum":"6a4dfe4d79559d6e7118707dd54f41b36460416e","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"mikemcl","email":"M8ch88l@gmail.com"},"maintainers":[{"name":"mikemcl","email":"M8ch88l@gmail.com"}],"dist":{"shasum":"6a4dfe4d79559d6e7118707dd54f41b36460416e","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/decimal.js/-/decimal.js-5.0.3.tgz"},"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/decimal.js-5.0.3.tgz_1454781279493_0.5571386788506061"},"directories":{}},"5.0.4":{"name":"decimal.js","description":"An arbitrary-precision Decimal type for JavaScript.","version":"5.0.4","keywords":["arbitrary","precision","arithmetic","big","number","decimal","float","biginteger","bigdecimal","bignumber","bigint","bignum"],"repository":{"type":"git","url":"git+https://github.com/MikeMcl/decimal.js.git"},"main":"decimal","author":{"name":"Michael Mclaughlin","email":"M8ch88l@gmail.com"},"license":"MIT","scripts":{"test":"node ./test/test.js","build":"uglifyjs decimal.js --source-map doc/decimal.js.map -c -m -o decimal.min.js --preamble \"/* decimal.js v5.0.4 https://github.com/MikeMcl/decimal.js/LICENCE */\""},"gitHead":"50f63bec5c03f6b2024a8979cb543179fd1ad678","bugs":{"url":"https://github.com/MikeMcl/decimal.js/issues"},"homepage":"https://github.com/MikeMcl/decimal.js#readme","_id":"decimal.js@5.0.4","_shasum":"a153dadfc6e30aaf8be6f49dc46c45d2f6b74cc4","_from":".","_npmVersion":"3.7.1","_nodeVersion":"5.1.1","_npmUser":{"name":"mikemcl","email":"M8ch88l@gmail.com"},"dist":{"shasum":"a153dadfc6e30aaf8be6f49dc46c45d2f6b74cc4","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/decimal.js/-/decimal.js-5.0.4.tgz"},"maintainers":[{"name":"mikemcl","email":"M8ch88l@gmail.com"}],"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/decimal.js-5.0.4.tgz_1455484596985_0.6469057672657073"},"directories":{}},"4.0.4":{"name":"decimal.js","description":"An arbitrary-precision Decimal type for JavaScript.","version":"4.0.4","keywords":["arbitrary","precision","arithmetic","big","number","decimal","float","biginteger","bigdecimal","bignumber","bigint","bignum"],"repository":{"type":"git","url":"git+https://github.com/MikeMcl/decimal.js.git"},"main":"decimal","author":{"name":"Michael Mclaughlin","email":"M8ch88l@gmail.com"},"engines":{"node":"*"},"license":"MIT","scripts":{"test":"node ./test/every-test.js","build":"uglifyjs decimal.js --source-map doc/decimal.js.map -c -m -o decimal.min.js --preamble \"/* decimal.js v4.0.4 https://github.com/MikeMcl/decimal.js/LICENCE */\""},"gitHead":"b060c291844e4435e35816d010d88d1fbd21cbb7","bugs":{"url":"https://github.com/MikeMcl/decimal.js/issues"},"homepage":"https://github.com/MikeMcl/decimal.js#readme","_id":"decimal.js@4.0.4","_shasum":"af3249465e133988c30750f77eaaf44505caa5e3","_from":".","_npmVersion":"3.7.1","_nodeVersion":"5.1.1","_npmUser":{"name":"mikemcl","email":"M8ch88l@gmail.com"},"dist":{"shasum":"af3249465e133988c30750f77eaaf44505caa5e3","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/decimal.js/-/decimal.js-4.0.4.tgz"},"maintainers":[{"name":"mikemcl","email":"M8ch88l@gmail.com"}],"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/decimal.js-4.0.4.tgz_1455832333045_0.4148755129426718"},"directories":{}},"5.0.6":{"name":"decimal.js","description":"An arbitrary-precision Decimal type for JavaScript.","version":"5.0.6","keywords":["arbitrary","precision","arithmetic","big","number","decimal","float","biginteger","bigdecimal","bignumber","bigint","bignum"],"repository":{"type":"git","url":"git+https://github.com/MikeMcl/decimal.js.git"},"main":"decimal","author":{"name":"Michael Mclaughlin","email":"M8ch88l@gmail.com"},"license":"MIT","scripts":{"test":"node ./test/test.js","build":"uglifyjs decimal.js --source-map doc/decimal.js.map -c -m -o decimal.min.js --preamble \"/* decimal.js v5.0.6 https://github.com/MikeMcl/decimal.js/LICENCE */\""},"gitHead":"6a663287f088de62aecd81e4ac56342ea7462143","bugs":{"url":"https://github.com/MikeMcl/decimal.js/issues"},"homepage":"https://github.com/MikeMcl/decimal.js#readme","_id":"decimal.js@5.0.6","_shasum":"3dab1be1c30fc3ba7947e81d12a623e7bc9f8466","_from":".","_npmVersion":"3.7.1","_nodeVersion":"5.1.1","_npmUser":{"name":"mikemcl","email":"M8ch88l@gmail.com"},"dist":{"shasum":"3dab1be1c30fc3ba7947e81d12a623e7bc9f8466","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/decimal.js/-/decimal.js-5.0.6.tgz"},"maintainers":[{"name":"mikemcl","email":"M8ch88l@gmail.com"}],"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/decimal.js-5.0.6.tgz_1456253218687_0.6440202121157199"},"directories":{}},"5.0.5":{"name":"decimal.js","description":"An arbitrary-precision Decimal type for JavaScript.","version":"5.0.5","keywords":["arbitrary","precision","arithmetic","big","number","decimal","float","biginteger","bigdecimal","bignumber","bigint","bignum"],"repository":{"type":"git","url":"git+https://github.com/MikeMcl/decimal.js.git"},"main":"decimal","author":{"name":"Michael Mclaughlin","email":"M8ch88l@gmail.com"},"license":"MIT","scripts":{"test":"node ./test/test.js","build":"uglifyjs decimal.js --source-map doc/decimal.js.map -c -m -o decimal.min.js --preamble \"/* decimal.js v5.0.5 https://github.com/MikeMcl/decimal.js/LICENCE */\""},"gitHead":"6effe2db278318c639beba3c10ce6eb0decf32b6","bugs":{"url":"https://github.com/MikeMcl/decimal.js/issues"},"homepage":"https://github.com/MikeMcl/decimal.js#readme","_id":"decimal.js@5.0.5","_shasum":"771ba0367299eb1b3f65a7dbc50ed1da00c3a5fe","_from":".","_npmVersion":"3.7.1","_nodeVersion":"5.1.1","_npmUser":{"name":"mikemcl","email":"M8ch88l@gmail.com"},"dist":{"shasum":"771ba0367299eb1b3f65a7dbc50ed1da00c3a5fe","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/decimal.js/-/decimal.js-5.0.5.tgz"},"maintainers":[{"name":"mikemcl","email":"M8ch88l@gmail.com"}],"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/decimal.js-5.0.5.tgz_1456253904712_0.46634548786096275"},"directories":{}},"5.0.7":{"name":"decimal.js","description":"An arbitrary-precision Decimal type for JavaScript.","version":"5.0.7","keywords":["arbitrary","precision","arithmetic","big","number","decimal","float","biginteger","bigdecimal","bignumber","bigint","bignum"],"repository":{"type":"git","url":"git+https://github.com/MikeMcl/decimal.js.git"},"main":"decimal","author":{"name":"Michael Mclaughlin","email":"M8ch88l@gmail.com"},"license":"MIT","scripts":{"test":"node ./test/test.js","build":"uglifyjs decimal.js --source-map doc/decimal.js.map -c -m -o decimal.min.js --preamble \"/* decimal.js v5.0.7 https://github.com/MikeMcl/decimal.js/LICENCE */\""},"gitHead":"6785556026b80065e3bbb18bbee0e55dd48d44ec","bugs":{"url":"https://github.com/MikeMcl/decimal.js/issues"},"homepage":"https://github.com/MikeMcl/decimal.js#readme","_id":"decimal.js@5.0.7","_shasum":"d793ed763048b482ddabc43730e4177b07b81df5","_from":".","_npmVersion":"3.7.1","_nodeVersion":"5.7.0","_npmUser":{"name":"mikemcl","email":"M8ch88l@gmail.com"},"dist":{"shasum":"d793ed763048b482ddabc43730e4177b07b81df5","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/decimal.js/-/decimal.js-5.0.7.tgz"},"maintainers":[{"name":"mikemcl","email":"M8ch88l@gmail.com"}],"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/decimal.js-5.0.7.tgz_1456774227977_0.9199237092398107"},"directories":{}},"5.0.8":{"name":"decimal.js","description":"An arbitrary-precision Decimal type for JavaScript.","version":"5.0.8","keywords":["arbitrary","precision","arithmetic","big","number","decimal","float","biginteger","bigdecimal","bignumber","bigint","bignum"],"repository":{"type":"git","url":"git+https://github.com/MikeMcl/decimal.js.git"},"main":"decimal","author":{"name":"Michael Mclaughlin","email":"M8ch88l@gmail.com"},"license":"MIT","scripts":{"test":"node ./test/test.js","build":"uglifyjs decimal.js --source-map doc/decimal.js.map -c -m -o decimal.min.js --preamble \"/* decimal.js v5.0.8 https://github.com/MikeMcl/decimal.js/LICENCE */\""},"gitHead":"8a631cc3271f97643a6ba401c1641303a17dd3f4","bugs":{"url":"https://github.com/MikeMcl/decimal.js/issues"},"homepage":"https://github.com/MikeMcl/decimal.js#readme","_id":"decimal.js@5.0.8","_shasum":"b48c3fb7d73a2d4d4940e0b38f1cd21db5b367ce","_from":".","_npmVersion":"3.7.1","_nodeVersion":"5.7.0","_npmUser":{"name":"mikemcl","email":"M8ch88l@gmail.com"},"dist":{"shasum":"b48c3fb7d73a2d4d4940e0b38f1cd21db5b367ce","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/decimal.js/-/decimal.js-5.0.8.tgz"},"maintainers":[{"name":"mikemcl","email":"M8ch88l@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/decimal.js-5.0.8.tgz_1457564302596_0.7746151681058109"},"directories":{}},"6.0.0":{"name":"decimal.js","description":"An arbitrary-precision Decimal type for JavaScript.","version":"6.0.0","keywords":["arbitrary","precision","arithmetic","big","number","decimal","float","biginteger","bigdecimal","bignumber","bigint","bignum"],"repository":{"type":"git","url":"git+https://github.com/MikeMcl/decimal.js.git"},"main":"decimal.js","author":{"name":"Michael Mclaughlin","email":"M8ch88l@gmail.com"},"license":"MIT","scripts":{"test":"node ./test/test.js","build":"uglifyjs decimal.js --source-map doc/decimal.js.map -c -m -o decimal.min.js --preamble \"/* decimal.js v6.0.0 https://github.com/MikeMcl/decimal.js/LICENCE */\""},"gitHead":"fb37ca6bde56676d6d5a98df2bf8721e8fa81085","bugs":{"url":"https://github.com/MikeMcl/decimal.js/issues"},"homepage":"https://github.com/MikeMcl/decimal.js#readme","_id":"decimal.js@6.0.0","_shasum":"4fd58d0637f36fdbc1aba1320bc3f2cee83ca0f2","_from":".","_npmVersion":"3.8.1","_nodeVersion":"5.7.0","_npmUser":{"name":"mikemcl","email":"M8ch88l@gmail.com"},"dist":{"shasum":"4fd58d0637f36fdbc1aba1320bc3f2cee83ca0f2","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/decimal.js/-/decimal.js-6.0.0.tgz"},"maintainers":[{"name":"mikemcl","email":"M8ch88l@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/decimal.js-6.0.0.tgz_1467311784281_0.44673580257222056"},"directories":{}},"7.0.0":{"name":"decimal.js","description":"An arbitrary-precision Decimal type for JavaScript.","version":"7.0.0","keywords":["arbitrary","precision","arithmetic","big","number","decimal","float","biginteger","bigdecimal","bignumber","bigint","bignum"],"repository":{"type":"git","url":"git+https://github.com/MikeMcl/decimal.js.git"},"main":"decimal.js","author":{"name":"Michael Mclaughlin","email":"M8ch88l@gmail.com"},"license":"MIT","scripts":{"test":"node ./test/test.js","build":"uglifyjs decimal.js --source-map doc/decimal.js.map -c -m -o decimal.min.js --preamble \"/* decimal.js v7.0.0 https://github.com/MikeMcl/decimal.js/LICENCE */\""},"gitHead":"e48bddf45ab07302a12e0e0d455cae125344347d","bugs":{"url":"https://github.com/MikeMcl/decimal.js/issues"},"homepage":"https://github.com/MikeMcl/decimal.js#readme","_id":"decimal.js@7.0.0","_shasum":"b7d3d684163a3437b31d3643178abe1b619da7f3","_from":".","_npmVersion":"3.8.1","_nodeVersion":"7.0.0","_npmUser":{"name":"mikemcl","email":"M8ch88l@gmail.com"},"dist":{"shasum":"b7d3d684163a3437b31d3643178abe1b619da7f3","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/decimal.js/-/decimal.js-7.0.0.tgz"},"maintainers":[{"name":"mikemcl","email":"M8ch88l@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/decimal.js-7.0.0.tgz_1478711907497_0.6797959669493139"},"directories":{}},"7.1.0":{"name":"decimal.js","description":"An arbitrary-precision Decimal type for JavaScript.","version":"7.1.0","keywords":["arbitrary","precision","arithmetic","big","number","decimal","float","biginteger","bigdecimal","bignumber","bigint","bignum"],"repository":{"type":"git","url":"git+https://github.com/MikeMcl/decimal.js.git"},"main":"decimal.js","author":{"name":"Michael Mclaughlin","email":"M8ch88l@gmail.com"},"license":"MIT","scripts":{"test":"node ./test/test.js","build":"uglifyjs decimal.js --source-map doc/decimal.js.map -c -m -o decimal.min.js --preamble \"/* decimal.js v7.1.0 https://github.com/MikeMcl/decimal.js/LICENCE */\""},"gitHead":"3e2d380a41e18b36254de926c03145ef2e3ccaf5","bugs":{"url":"https://github.com/MikeMcl/decimal.js/issues"},"homepage":"https://github.com/MikeMcl/decimal.js#readme","_id":"decimal.js@7.1.0","_shasum":"348a65d3c708e641738bb391c97eefc15af10ed2","_from":".","_npmVersion":"3.8.1","_nodeVersion":"7.0.0","_npmUser":{"name":"mikemcl","email":"M8ch88l@gmail.com"},"dist":{"shasum":"348a65d3c708e641738bb391c97eefc15af10ed2","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/decimal.js/-/decimal.js-7.1.0.tgz"},"maintainers":[{"name":"mikemcl","email":"M8ch88l@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/decimal.js-7.1.0.tgz_1478736107713_0.40735107846558094"},"directories":{}},"7.1.1":{"name":"decimal.js","description":"An arbitrary-precision Decimal type for JavaScript.","version":"7.1.1","keywords":["arbitrary","precision","arithmetic","big","number","decimal","float","biginteger","bigdecimal","bignumber","bigint","bignum"],"repository":{"type":"git","url":"git+https://github.com/MikeMcl/decimal.js.git"},"main":"decimal.js","author":{"name":"Michael Mclaughlin","email":"M8ch88l@gmail.com"},"license":"MIT","scripts":{"test":"node ./test/test.js","build":"uglifyjs decimal.js --source-map doc/decimal.js.map -c -m -o decimal.min.js --preamble \"/* decimal.js v7.1.1 https://github.com/MikeMcl/decimal.js/LICENCE */\""},"gitHead":"45eec0b8631758e0fc709c3a8ecfe5775e984e2c","bugs":{"url":"https://github.com/MikeMcl/decimal.js/issues"},"homepage":"https://github.com/MikeMcl/decimal.js#readme","_id":"decimal.js@7.1.1","_shasum":"1adcad7d70d7a91c426d756f1eb6566c3be6cbcf","_from":".","_npmVersion":"3.8.1","_nodeVersion":"7.2.0","_npmUser":{"name":"mikemcl","email":"M8ch88l@gmail.com"},"dist":{"shasum":"1adcad7d70d7a91c426d756f1eb6566c3be6cbcf","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/decimal.js/-/decimal.js-7.1.1.tgz"},"maintainers":[{"name":"mikemcl","email":"M8ch88l@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/decimal.js-7.1.1.tgz_1484076941466_0.4462222612928599"},"directories":{}},"7.1.2":{"name":"decimal.js","description":"An arbitrary-precision Decimal type for JavaScript.","version":"7.1.2","keywords":["arbitrary","precision","arithmetic","big","number","decimal","float","biginteger","bigdecimal","bignumber","bigint","bignum"],"repository":{"type":"git","url":"git+https://github.com/MikeMcl/decimal.js.git"},"main":"decimal.js","author":{"name":"Michael Mclaughlin","email":"M8ch88l@gmail.com"},"license":"MIT","scripts":{"test":"node ./test/test.js","build":"uglifyjs decimal.js --source-map doc/decimal.js.map -c -m -o decimal.min.js --preamble \"/* decimal.js v7.1.2 https://github.com/MikeMcl/decimal.js/LICENCE */\""},"gitHead":"85a499eb86959088f69b72cfefc044b927439d6c","bugs":{"url":"https://github.com/MikeMcl/decimal.js/issues"},"homepage":"https://github.com/MikeMcl/decimal.js#readme","_id":"decimal.js@7.1.2","_shasum":"af71a1e2e89a1493bbd456ac746a1a92263a707b","_from":".","_npmVersion":"3.8.1","_nodeVersion":"7.7.3","_npmUser":{"name":"mikemcl","email":"M8ch88l@gmail.com"},"dist":{"shasum":"af71a1e2e89a1493bbd456ac746a1a92263a707b","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/decimal.js/-/decimal.js-7.1.2.tgz"},"maintainers":[{"name":"mikemcl","email":"M8ch88l@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/decimal.js-7.1.2.tgz_1491415503570_0.7435064231976867"},"directories":{}},"7.2.0":{"name":"decimal.js","description":"An arbitrary-precision Decimal type for JavaScript.","version":"7.2.0","keywords":["arbitrary","precision","arithmetic","big","number","decimal","float","biginteger","bigdecimal","bignumber","bigint","bignum"],"repository":{"type":"git","url":"git+https://github.com/MikeMcl/decimal.js.git"},"main":"decimal.js","module":"decimal.es6.js","author":{"name":"Michael Mclaughlin","email":"M8ch88l@gmail.com"},"license":"MIT","scripts":{"test":"node ./test/test.js","build":"uglifyjs decimal.js --source-map doc/decimal.js.map -c -m -o decimal.min.js --preamble \"/* decimal.js v7.2.0 https://github.com/MikeMcl/decimal.js/LICENCE */\""},"gitHead":"2be14dfdd74a8b992c58999824efc9abd58240ad","bugs":{"url":"https://github.com/MikeMcl/decimal.js/issues"},"homepage":"https://github.com/MikeMcl/decimal.js#readme","_id":"decimal.js@7.2.0","_shasum":"abb95d934f527664256ba213087f013f3cdc4fdf","_from":".","_npmVersion":"3.8.1","_nodeVersion":"7.7.3","_npmUser":{"name":"mikemcl","email":"M8ch88l@gmail.com"},"dist":{"shasum":"abb95d934f527664256ba213087f013f3cdc4fdf","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/decimal.js/-/decimal.js-7.2.0.tgz"},"maintainers":[{"name":"mikemcl","email":"M8ch88l@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/decimal.js-7.2.0.tgz_1491775718956_0.25847311574034393"},"directories":{}},"7.2.1":{"name":"decimal.js","description":"An arbitrary-precision Decimal type for JavaScript.","version":"7.2.1","keywords":["arbitrary","precision","arithmetic","big","number","decimal","float","biginteger","bigdecimal","bignumber","bigint","bignum"],"repository":{"type":"git","url":"git+https://github.com/MikeMcl/decimal.js.git"},"main":"decimal.js","module":"decimal.es6.js","author":{"name":"Michael Mclaughlin","email":"M8ch88l@gmail.com"},"license":"MIT","scripts":{"test":"node ./test/test.js","build":"uglifyjs decimal.js --source-map doc/decimal.js.map -c -m -o decimal.min.js --preamble \"/* decimal.js v7.2.1 https://github.com/MikeMcl/decimal.js/LICENCE */\""},"gitHead":"3566299686993864f1a795954f189cdfbf8e4ff9","bugs":{"url":"https://github.com/MikeMcl/decimal.js/issues"},"homepage":"https://github.com/MikeMcl/decimal.js#readme","_id":"decimal.js@7.2.1","_shasum":"5766c5424919b3a4dcfba10c34f32c73bc7d3ddf","_from":".","_npmVersion":"3.8.1","_nodeVersion":"7.7.3","_npmUser":{"name":"mikemcl","email":"M8ch88l@gmail.com"},"dist":{"shasum":"5766c5424919b3a4dcfba10c34f32c73bc7d3ddf","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/decimal.js/-/decimal.js-7.2.1.tgz"},"maintainers":[{"name":"mikemcl","email":"M8ch88l@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/decimal.js-7.2.1.tgz_1493925177397_0.2835980267263949"},"directories":{}},"7.2.2":{"name":"decimal.js","description":"An arbitrary-precision Decimal type for JavaScript.","version":"7.2.2","keywords":["arbitrary","precision","arithmetic","big","number","decimal","float","biginteger","bigdecimal","bignumber","bigint","bignum"],"repository":{"type":"git","url":"git+https://github.com/MikeMcl/decimal.js.git"},"main":"decimal.js","module":"decimal.es6.js","author":{"name":"Michael Mclaughlin","email":"M8ch88l@gmail.com"},"license":"MIT","scripts":{"test":"node ./test/test.js","build":"uglifyjs decimal.js --source-map doc/decimal.js.map -c -m -o decimal.min.js --preamble \"/* decimal.js v7.2.2 https://github.com/MikeMcl/decimal.js/LICENCE */\""},"gitHead":"32f0a63095c680bb56875fe7fe407611986a0d41","bugs":{"url":"https://github.com/MikeMcl/decimal.js/issues"},"homepage":"https://github.com/MikeMcl/decimal.js#readme","_id":"decimal.js@7.2.2","_npmVersion":"5.0.0","_nodeVersion":"8.0.0","_npmUser":{"name":"mikemcl","email":"M8ch88l@gmail.com"},"dist":{"integrity":"sha512-wNJTphn+waw28B9FWcGeF+sH4g2/S+ghuHrOHJdYE07Zcab9mQUPXs1x0dKpgEqFTVxwucmPRDosxZgM82vdWA==","shasum":"aff343b6d7ac14689657622789466ac70a5b7938","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/decimal.js/-/decimal.js-7.2.2.tgz"},"maintainers":[{"name":"mikemcl","email":"M8ch88l@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/decimal.js-7.2.2.tgz_1498430500544_0.3914556864183396"},"directories":{}},"7.2.3":{"name":"decimal.js","description":"An arbitrary-precision Decimal type for JavaScript.","version":"7.2.3","keywords":["arbitrary","precision","arithmetic","big","number","decimal","float","biginteger","bigdecimal","bignumber","bigint","bignum"],"repository":{"type":"git","url":"git+https://github.com/MikeMcl/decimal.js.git"},"main":"decimal.js","module":"decimal.es6.js","author":{"name":"Michael Mclaughlin","email":"M8ch88l@gmail.com"},"license":"MIT","scripts":{"test":"node ./test/test.js","build":"uglifyjs decimal.js --source-map doc/decimal.js.map -c -m -o decimal.min.js --preamble \"/* decimal.js v7.2.3 https://github.com/MikeMcl/decimal.js/LICENCE */\""},"gitHead":"784a38a8dbe04f829bb2bb1499de1189f9740c80","bugs":{"url":"https://github.com/MikeMcl/decimal.js/issues"},"homepage":"https://github.com/MikeMcl/decimal.js#readme","_id":"decimal.js@7.2.3","_npmVersion":"5.0.0","_nodeVersion":"8.0.0","_npmUser":{"name":"mikemcl","email":"M8ch88l@gmail.com"},"dist":{"integrity":"sha512-AoFI37QS0S87Ft0r3Bdz4q9xSpm1Paa9lSeKLXgMPk/u/+QPIM5Gy4DHcZQS1seqPJH4gHLauPGn347z0HbsrA==","shasum":"6434c3b8a8c375780062fc633d0d2bbdb264cc78","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/decimal.js/-/decimal.js-7.2.3.tgz"},"maintainers":[{"name":"mikemcl","email":"M8ch88l@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/decimal.js-7.2.3.tgz_1498597800866_0.17457267409190536"},"directories":{}},"7.2.4":{"name":"decimal.js","description":"An arbitrary-precision Decimal type for JavaScript.","version":"7.2.4","keywords":["arbitrary","precision","arithmetic","big","number","decimal","float","biginteger","bigdecimal","bignumber","bigint","bignum"],"repository":{"type":"git","url":"git+https://github.com/MikeMcl/decimal.js.git"},"main":"decimal.js","module":"decimal.es6.js","author":{"name":"Michael Mclaughlin","email":"M8ch88l@gmail.com"},"license":"MIT","scripts":{"test":"node ./test/test.js","build":"uglifyjs decimal.js --source-map doc/decimal.js.map -c -m -o decimal.min.js --preamble \"/* decimal.js v7.2.4 https://github.com/MikeMcl/decimal.js/LICENCE */\""},"gitHead":"2ed8a040c7b644d20362c27976bb40402bdff443","bugs":{"url":"https://github.com/MikeMcl/decimal.js/issues"},"homepage":"https://github.com/MikeMcl/decimal.js#readme","_id":"decimal.js@7.2.4","_npmVersion":"5.0.4","_nodeVersion":"8.1.3","_npmUser":{"name":"mikemcl","email":"M8ch88l@gmail.com"},"dist":{"integrity":"sha512-lQ+Tr6VKhsHgfzkTLLqxOXDwMHj5ZBdThKsZZo0PeK9H7OOvS8O5hjCNogRElYrLIx7mc1pfN9RiLkZDpVdkHA==","shasum":"794db1dd5e7071e132a59ced9cc9aad3cce2551d","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/decimal.js/-/decimal.js-7.2.4.tgz"},"maintainers":[{"name":"mikemcl","email":"M8ch88l@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/decimal.js-7.2.4.tgz_1504979673164_0.3485030112788081"},"directories":{}},"7.3.0":{"name":"decimal.js","description":"An arbitrary-precision Decimal type for JavaScript.","version":"7.3.0","keywords":["arbitrary","precision","arithmetic","big","number","decimal","float","biginteger","bigdecimal","bignumber","bigint","bignum"],"repository":{"type":"git","url":"git+https://github.com/MikeMcl/decimal.js.git"},"main":"decimal.js","module":"decimal.mjs","author":{"name":"Michael Mclaughlin","email":"M8ch88l@gmail.com"},"license":"MIT","scripts":{"test":"node ./test/test.js","build":"uglifyjs decimal.js --source-map doc/decimal.js.map -c -m -o decimal.min.js --preamble \"/* decimal.js v7.3.0 https://github.com/MikeMcl/decimal.js/LICENCE */\""},"gitHead":"433759294a32b1daf97db0b154fecdfdd8395922","bugs":{"url":"https://github.com/MikeMcl/decimal.js/issues"},"homepage":"https://github.com/MikeMcl/decimal.js#readme","_id":"decimal.js@7.3.0","_npmVersion":"5.0.4","_nodeVersion":"8.5.0","_npmUser":{"name":"mikemcl","email":"M8ch88l@gmail.com"},"dist":{"integrity":"sha512-VVahlspSseBpHAPbf9ofz4iSJNIpaPIzrNUnY3NUoNkQQ3+0/Uh8+Jndz8gzRwOXWKwvbS556lcjqucj8f3hMw==","shasum":"39f6c8dfc39385c3f3c540aec59f7d2cc1b93d1c","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/decimal.js/-/decimal.js-7.3.0.tgz"},"maintainers":[{"name":"mikemcl","email":"M8ch88l@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/decimal.js-7.3.0.tgz_1506446677699_0.6502211999613792"},"directories":{}},"7.4.0":{"name":"decimal.js","description":"An arbitrary-precision Decimal type for JavaScript.","version":"7.4.0","keywords":["arbitrary","precision","arithmetic","big","number","decimal","float","biginteger","bigdecimal","bignumber","bigint","bignum"],"repository":{"type":"git","url":"git+https://github.com/MikeMcl/decimal.js.git"},"main":"decimal.js","module":"decimal.mjs","author":{"name":"Michael Mclaughlin","email":"M8ch88l@gmail.com"},"license":"MIT","scripts":{"test":"node ./test/test.js","build":"uglifyjs decimal.js --source-map doc/decimal.js.map -c -m -o decimal.min.js --preamble \"/* decimal.js v7.4.0 https://github.com/MikeMcl/decimal.js/LICENCE */\""},"types":"decimal.d.ts","gitHead":"a0b78b62752b98a0b8cec2e0787c068ec896c653","bugs":{"url":"https://github.com/MikeMcl/decimal.js/issues"},"homepage":"https://github.com/MikeMcl/decimal.js#readme","_id":"decimal.js@7.4.0","_npmVersion":"5.0.4","_nodeVersion":"8.9.0","_npmUser":{"name":"mikemcl","email":"M8ch88l@gmail.com"},"dist":{"integrity":"sha512-KzTSy3MhbAiOWgE+Z5j51Ya2RytbxCdwgkj3V5tMIhI1J6d0teaQ7hM00i8OWOK6gyETMA8uVoOeK6fpubr/PQ==","shasum":"591c87b79a9b4d1c686458821ec1cfcc528e20f2","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/decimal.js/-/decimal.js-7.4.0.tgz"},"maintainers":[{"name":"mikemcl","email":"M8ch88l@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/decimal.js-7.4.0.tgz_1511653541464_0.4658490668516606"},"directories":{}},"7.5.0":{"name":"decimal.js","description":"An arbitrary-precision Decimal type for JavaScript.","version":"7.5.0","keywords":["arbitrary","precision","arithmetic","big","number","decimal","float","biginteger","bigdecimal","bignumber","bigint","bignum"],"repository":{"type":"git","url":"git+https://github.com/MikeMcl/decimal.js.git"},"main":"decimal.js","module":"decimal.mjs","author":{"name":"Michael Mclaughlin","email":"M8ch88l@gmail.com"},"license":"MIT","scripts":{"test":"node ./test/test.js","build":"uglifyjs decimal.js --source-map doc/decimal.js.map -c -m -o decimal.min.js --preamble \"/* decimal.js v7.5.0 https://github.com/MikeMcl/decimal.js/LICENCE */\""},"types":"decimal.d.ts","gitHead":"35a8cddde990fd34529185d017d9dd6b059f5740","bugs":{"url":"https://github.com/MikeMcl/decimal.js/issues"},"homepage":"https://github.com/MikeMcl/decimal.js#readme","_id":"decimal.js@7.5.0","_npmVersion":"5.0.4","_nodeVersion":"8.9.0","_npmUser":{"name":"mikemcl","email":"M8ch88l@gmail.com"},"dist":{"integrity":"sha512-XW0hzhwepELhHeh33DGQX9x1D6lke2THPvTwt7ZMqhpl4+PkWhpXluyjkYwF5UV7kVHXpE0YQ7C3wAjW8+LfGA==","shasum":"de645490051880798ff336c8313ace809f674cfd","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/decimal.js/-/decimal.js-7.5.0.tgz"},"maintainers":[{"name":"mikemcl","email":"M8ch88l@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/decimal.js-7.5.0.tgz_1512324671267_0.5417363464366645"},"directories":{}},"7.5.1":{"name":"decimal.js","description":"An arbitrary-precision Decimal type for JavaScript.","version":"7.5.1","keywords":["arbitrary","precision","arithmetic","big","number","decimal","float","biginteger","bigdecimal","bignumber","bigint","bignum"],"repository":{"type":"git","url":"git+https://github.com/MikeMcl/decimal.js.git"},"main":"decimal.js","module":"decimal.mjs","author":{"name":"Michael Mclaughlin","email":"M8ch88l@gmail.com"},"license":"MIT","scripts":{"test":"node ./test/test.js","build":"uglifyjs decimal.js --source-map doc/decimal.js.map -c -m -o decimal.min.js --preamble \"/* decimal.js v7.5.1 https://github.com/MikeMcl/decimal.js/LICENCE */\""},"types":"decimal.d.ts","gitHead":"1cbf5ffb44a74f7183c58d39d434339ec209ee11","bugs":{"url":"https://github.com/MikeMcl/decimal.js/issues"},"homepage":"https://github.com/MikeMcl/decimal.js#readme","_id":"decimal.js@7.5.1","_npmVersion":"5.0.4","_nodeVersion":"8.9.0","_npmUser":{"name":"mikemcl","email":"M8ch88l@gmail.com"},"dist":{"integrity":"sha512-1K5Y6MykxQYfHBcFfAj2uBaLmwreq4MsjsvrlgcEOvg+X82IeeXlIVIVkBMiypksu+yo9vcYP6lfU3qTedofSQ==","shasum":"cf4cf5eeb9faa24fc4ee6af361faebb7bfcca2ce","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/decimal.js/-/decimal.js-7.5.1.tgz"},"maintainers":[{"name":"mikemcl","email":"M8ch88l@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/decimal.js-7.5.1.tgz_1512339738560_0.4849155826959759"},"directories":{}},"8.0.0":{"name":"decimal.js","description":"An arbitrary-precision Decimal type for JavaScript.","version":"8.0.0","keywords":["arbitrary","precision","arithmetic","big","number","decimal","float","biginteger","bigdecimal","bignumber","bigint","bignum"],"repository":{"type":"git","url":"git+https://github.com/MikeMcl/decimal.js.git"},"main":"./decimal","module":"./decimal.mjs","author":{"name":"Michael Mclaughlin","email":"M8ch88l@gmail.com"},"license":"MIT","scripts":{"test":"node ./test/test.js","build":"uglifyjs decimal.js --source-map doc/decimal.js.map -c -m -o decimal.min.js --preamble \"/* decimal.js v8.0.0 https://github.com/MikeMcl/decimal.js/LICENCE */\""},"types":"decimal.d.ts","gitHead":"dbf681be4a13328f3e5d1ed6198397087e87be8b","bugs":{"url":"https://github.com/MikeMcl/decimal.js/issues"},"homepage":"https://github.com/MikeMcl/decimal.js#readme","_id":"decimal.js@8.0.0","_npmVersion":"5.0.4","_nodeVersion":"9.2.1","_npmUser":{"name":"mikemcl","email":"M8ch88l@gmail.com"},"dist":{"integrity":"sha512-/lNvPocnhUcDCpIVSjr2L12pD12b5XFCf8wfs6IU+8Tk8cvtOI8UqkH7sJvODZMCBue9jtXmb2Td4UidaGOt1A==","shasum":"f073424c59c217c62b1467b470970e921aea77be","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/decimal.js/-/decimal.js-8.0.0.tgz"},"maintainers":[{"name":"mikemcl","email":"M8ch88l@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/decimal.js-8.0.0.tgz_1512931146075_0.25741464737802744"},"directories":{}},"9.0.0":{"name":"decimal.js","description":"An arbitrary-precision Decimal type for JavaScript.","version":"9.0.0","keywords":["arbitrary","precision","arithmetic","big","number","decimal","float","biginteger","bigdecimal","bignumber","bigint","bignum"],"repository":{"type":"git","url":"git+https://github.com/MikeMcl/decimal.js.git"},"main":"./decimal","module":"./decimal.mjs","author":{"name":"Michael Mclaughlin","email":"M8ch88l@gmail.com"},"license":"MIT","scripts":{"test":"node ./test/test.js","build":"uglifyjs decimal.js --source-map doc/decimal.js.map -c -m -o decimal.min.js --preamble \"/* decimal.js v9.0.0 https://github.com/MikeMcl/decimal.js/LICENCE */\""},"types":"decimal.d.ts","gitHead":"dbba3d5b184f7574d86cf29f9312cd64a20eb0e8","bugs":{"url":"https://github.com/MikeMcl/decimal.js/issues"},"homepage":"https://github.com/MikeMcl/decimal.js#readme","_id":"decimal.js@9.0.0","_npmVersion":"5.0.4","_nodeVersion":"9.2.1","_npmUser":{"name":"mikemcl","email":"M8ch88l@gmail.com"},"dist":{"integrity":"sha512-PGAEksEbk/XXpVwKdtC8QqJe2tseGmpwGIoMDB6SBdq98JR4S46ZpA2jRd4AFY3SakMV+mPhm5knUniNbdItZw==","shasum":"c76c7067bfb930eb221f5678d83521b5c5268722","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/decimal.js/-/decimal.js-9.0.0.tgz"},"maintainers":[{"name":"mikemcl","email":"M8ch88l@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/decimal.js-9.0.0.tgz_1513247485867_0.9035261552780867"},"directories":{}},"9.0.1":{"name":"decimal.js","description":"An arbitrary-precision Decimal type for JavaScript.","version":"9.0.1","keywords":["arbitrary","precision","arithmetic","big","number","decimal","float","biginteger","bigdecimal","bignumber","bigint","bignum"],"repository":{"type":"git","url":"git+https://github.com/MikeMcl/decimal.js.git"},"main":"./decimal","module":"./decimal.mjs","author":{"name":"Michael Mclaughlin","email":"M8ch88l@gmail.com"},"license":"MIT","scripts":{"test":"node ./test/test.js","build":"uglifyjs decimal.js --source-map doc/decimal.js.map -c -m -o decimal.min.js --preamble \"/* decimal.js v9.0.1 https://github.com/MikeMcl/decimal.js/LICENCE */\""},"types":"decimal.d.ts","gitHead":"875f6d0f7aea9e008eb3b6302fde890715f662f5","bugs":{"url":"https://github.com/MikeMcl/decimal.js/issues"},"homepage":"https://github.com/MikeMcl/decimal.js#readme","_id":"decimal.js@9.0.1","_npmVersion":"5.0.4","_nodeVersion":"9.2.1","_npmUser":{"name":"mikemcl","email":"M8ch88l@gmail.com"},"dist":{"integrity":"sha512-2h0iKbJwnImBk4TGk7CG1xadoA0g3LDPlQhQzbZ221zvG0p2YVUedbKIPsOZXKZGx6YmZMJKYOalpCMxSdDqTQ==","shasum":"1cc8b228177da7ab6498c1cc06eb130a290e6e1e","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/decimal.js/-/decimal.js-9.0.1.tgz"},"maintainers":[{"name":"mikemcl","email":"M8ch88l@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/decimal.js-9.0.1.tgz_1513334362593_0.6519628006499261"},"directories":{}},"10.0.0":{"name":"decimal.js","description":"An arbitrary-precision Decimal type for JavaScript.","version":"10.0.0","keywords":["arbitrary","precision","arithmetic","big","number","decimal","float","biginteger","bigdecimal","bignumber","bigint","bignum"],"repository":{"type":"git","url":"git+https://github.com/MikeMcl/decimal.js.git"},"main":"./decimal","module":"./decimal.mjs","author":{"name":"Michael Mclaughlin","email":"M8ch88l@gmail.com"},"license":"MIT","scripts":{"test":"node ./test/test.js","build":"uglifyjs decimal.js --source-map doc/decimal.js.map -c -m -o decimal.min.js --preamble \"/* decimal.js v10.0.0 https://github.com/MikeMcl/decimal.js/LICENCE */\""},"types":"decimal.d.ts","gitHead":"2e75623cc388df7f231c455046c4b125fbf46f51","bugs":{"url":"https://github.com/MikeMcl/decimal.js/issues"},"homepage":"https://github.com/MikeMcl/decimal.js#readme","_id":"decimal.js@10.0.0","_npmVersion":"5.0.4","_nodeVersion":"9.4.0","_npmUser":{"name":"mikemcl","email":"M8ch88l@gmail.com"},"dist":{"integrity":"sha512-oTJ6FdBXq28TSDB/e0CfuXWxZE1+Jj3vV9+6eL73d+YpryRqD/+R4O5kAmZjNHiL2zw9lXrnZR8NhJtualzufg==","shasum":"f24855f7ee301d0dfaa458df0fdf4d5aaa182fdc","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/decimal.js/-/decimal.js-10.0.0.tgz","fileCount":12,"unpackedSize":485782},"maintainers":[{"name":"mikemcl","email":"M8ch88l@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/decimal.js_10.0.0_1520722259798_0.13072430429983872"},"_hasShrinkwrap":false},"10.0.1":{"name":"decimal.js","description":"An arbitrary-precision Decimal type for JavaScript.","version":"10.0.1","keywords":["arbitrary","precision","arithmetic","big","number","decimal","float","biginteger","bigdecimal","bignumber","bigint","bignum"],"repository":{"type":"git","url":"git+https://github.com/MikeMcl/decimal.js.git"},"main":"decimal","module":"decimal.mjs","browser":"decimal.js","author":{"name":"Michael Mclaughlin","email":"M8ch88l@gmail.com"},"license":"MIT","scripts":{"test":"node ./test/test.js","build":"uglifyjs decimal.js --source-map doc/decimal.js.map -c -m -o decimal.min.js --preamble \"/* decimal.js v10.0.1 https://github.com/MikeMcl/decimal.js/LICENCE */\""},"types":"decimal.d.ts","gitHead":"bf504624f8e7b83b84bed5d202a7d6664292f47f","bugs":{"url":"https://github.com/MikeMcl/decimal.js/issues"},"homepage":"https://github.com/MikeMcl/decimal.js#readme","_id":"decimal.js@10.0.1","_npmVersion":"5.0.4","_nodeVersion":"10.0.0","_npmUser":{"name":"mikemcl","email":"M8ch88l@gmail.com"},"dist":{"integrity":"sha512-vklWB5C4Cj423xnaOtsUmAv0/7GqlXIgDv2ZKDyR64OV3OSzGHNx2mk4p/1EKnB5s70k73cIOOEcG9YzF0q4Lw==","shasum":"d04b16b277f0f9af09671cee225c4882e8857c58","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/decimal.js/-/decimal.js-10.0.1.tgz","fileCount":12,"unpackedSize":485841,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbBt5gCRA9TVsSAnZWagAA6UgP/37d75np9XvahaadGlWJ\nk5/va7dfAFcoegIpbEVkYPEgDJWvHNxyXiIJH8udAAUmMZ1UtyEYhK4Y9lI/\n6uORaesWS5tX9f0SANrHSISqtRGs1uuaA7IwRR4UGHHmg3Up4jqH2CQ2ZdOS\n8bFQg0Eg0+pmY155diKUCzmsQ7I3HbwLZYxHut2I+jchJIPtZOonJCnAey6S\ncpjIBsBA58K+VnV9a0QfrIMJkkCv+P/N4OBzM/PdZ1Y7cc9N5ZGyQYNNXKtO\nmMhcQBd2Y+KjkgYFWbp+/q2jDSnfOVe8aSEi3HDeZEb5nUIxz24R4l5mb70c\nGEOSNxMyNBB0nqB8tVnw6dVHXo2Z7qfHx9/aqGDSYJRdNFVdlMTA8Jsd/8fq\ncP8ViejoGRfo6tJz7DchDczGXudyYPSHRTrvPkcnkfRxFRm2pr7Ikz+hqpAC\nr5/Prmz/MMzUjE8fbOrONjS+cgRJnejabop5qpET5JJQo9KwDiMZXHdNN3J5\nExcgBp90gfJU2J0BeWGj0Q0glNgaddPE2wu3rFZl3rQvxGxTuvsPyapBkWFw\nG8RYbpxY2N3Rh2xMXx9T00cNxAalUgTgiviWfrUZaNw5i5e6DcbM0zX0oDg5\n7ciMmrLuxi57KC6OYs+bzwyDud7GLi+vCACXg4QJvSKfR5wUiVT0wqYDVf19\nMf5l\r\n=a5m2\r\n-----END PGP SIGNATURE-----\r\n"},"maintainers":[{"name":"mikemcl","email":"M8ch88l@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/decimal.js_10.0.1_1527176799511_0.25891742624104497"},"_hasShrinkwrap":false},"10.0.2":{"name":"decimal.js","description":"An arbitrary-precision Decimal type for JavaScript.","version":"10.0.2","keywords":["arbitrary","precision","arithmetic","big","number","decimal","float","biginteger","bigdecimal","bignumber","bigint","bignum"],"repository":{"type":"git","url":"git+https://github.com/MikeMcl/decimal.js.git"},"main":"decimal","module":"decimal.mjs","browser":"decimal.js","author":{"name":"Michael Mclaughlin","email":"M8ch88l@gmail.com"},"license":"MIT","scripts":{"test":"node ./test/test.js","build":"uglifyjs decimal.js --source-map doc/decimal.js.map -c -m -o decimal.min.js --preamble \"/* decimal.js v10.0.2 https://github.com/MikeMcl/decimal.js/LICENCE */\""},"types":"decimal.d.ts","gitHead":"9106f0a010693ff4caee482c1f9f20c957278e5d","bugs":{"url":"https://github.com/MikeMcl/decimal.js/issues"},"homepage":"https://github.com/MikeMcl/decimal.js#readme","_id":"decimal.js@10.0.2","_npmVersion":"6.5.0","_nodeVersion":"10.12.0","_npmUser":{"name":"mikemcl","email":"M8ch88l@gmail.com"},"dist":{"integrity":"sha512-qL5tUTXAWjB5cSBfm0V2a4jO5FaDLumCfwc/0f7WaTOT3WU8pIeq2HHrd98eXHtbey4qFWlaPzfml1JWIoO9TQ==","shasum":"50fd0f9184139f543e5b84c97681534292deb640","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/decimal.js/-/decimal.js-10.0.2.tgz","fileCount":11,"unpackedSize":485299,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcEqUvCRA9TVsSAnZWagAAjzUP/2E3HjHn3ZO6eGfJo1Yt\nrFhe0Tf5Wqto035JZGpXrtAYzCtqemyW8CL6DGgAHyxx6MyvEIQR224dD0Jq\n9ILliEZughQe0JuHM1QgcPkkvaEDdNK8yO8boQzuMllQsapioJYO+xFBYz5e\nYwZvWCZiJBGye3v52CwSkwM0Q1taoZsgI/NsNMlVu/BnXr8CuUx5caLy5/RH\nHFfydacnExnjSlFfhpTb0uZBB3VoLnHnj1Re9xrVJofRFKRYf3mYc9n2UaCq\nlyrkSdy31FgwAjXKlAMt6SJEmsgjkA6Pad7JY5zh+5DnAYrmapODmHOE1UO8\nChXY/iJdRq2kvaqs90N08YsokrX8Ti9W/v2dlmq7eYG4+cd/U1XEwjFTE7ci\nkxkmRwrxnqD7BkApPDv+o/+0mGPuTBLRR5mvjC/pvFMin7FRa0URuG1WcPFP\n4phJSEAe8Xjga+CH16F7eisg9hIaJJu/a63nwbCaKZfb0B7NsK7Wd6FhGzb1\nwFGsi0jJedf+cYzdZh4aRZZh+3/opFpcN4vESKSbiwLCr57mJ4Bg6ywmRbxw\njouPogSv5G9VaJukeVQnsBJ5OWWHPsC4Tw4jon0QZRAkxczbxHheLD1Wnry1\nTebSCYoZDJxVm0easHsHdSiKlprIzpM9uoisbN4E5x9YuSwsVDp9XgFCfl7y\nA0oY\r\n=C4Qs\r\n-----END PGP SIGNATURE-----\r\n"},"maintainers":[{"name":"mikemcl","email":"M8ch88l@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/decimal.js_10.0.2_1544725807193_0.0584404101812912"},"_hasShrinkwrap":false},"10.1.1":{"name":"decimal.js","description":"An arbitrary-precision Decimal type for JavaScript.","version":"10.1.1","keywords":["arbitrary","precision","arithmetic","big","number","decimal","float","biginteger","bigdecimal","bignumber","bigint","bignum"],"repository":{"type":"git","url":"git+https://github.com/MikeMcl/decimal.js.git"},"main":"decimal","module":"decimal.mjs","browser":"decimal.js","author":{"name":"Michael Mclaughlin","email":"M8ch88l@gmail.com"},"license":"MIT","scripts":{"test":"node ./test/test.js","build":"uglifyjs decimal.js --source-map url=decimal.min.js.map -c -m -o decimal.min.js"},"types":"decimal.d.ts","gitHead":"b041339e2a45ab9d97871c7838b19776fcef0b12","bugs":{"url":"https://github.com/MikeMcl/decimal.js/issues"},"homepage":"https://github.com/MikeMcl/decimal.js#readme","_id":"decimal.js@10.1.1","_nodeVersion":"11.10.0","_npmVersion":"6.7.0","dist":{"integrity":"sha512-vEEgyk1fWVEnv7lPjkNedAIjzxQDue5Iw4FeX4UkNUDSVyD/jZTD0Bw2kAO7k6iyyJRAhM9oxxI0D1ET6k0Mmg==","shasum":"fb541922a2e8fc618f5e6fbb474e281ed3d2a64c","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/decimal.js/-/decimal.js-10.1.1.tgz","fileCount":11,"unpackedSize":485918,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcdmIqCRA9TVsSAnZWagAAYo0P/00V6MwuYaMsAqKGlWFi\n63WBb8ySSdsYai5+ouxHyvW+AhvVuR4PNkgVaege3G7MsN+7avJGdlTgLQuU\nmIFy9Ec1of2IVRVMWd3L6Q2TMJTNekvvJtPJPurt0sqW1I/7W1XRTD2jTNam\ntJUU6zJtA6ArA/zamGnwKzcgsZYkghsr+QA+drbyzk1PwO6LFrS35a2oG+t7\ni4J+YtE/CbfUGhOWEY0kHrVhEIXXUEJI9V39F/pPaj0kHM2dmb58jIK7Ie/J\n5ynSctjjcVCxiQhYOL5SZq893dsGIodECLQeEOKGKb0Gh6QBbAzbfJxNM0ML\nuatOcA8TxjvZVTZN5fHzuSVHenyN8n1PcYqbga+WNFriORCmCyWMThlOjhF2\nZlEyGCZ9ffgei5q7LzVcWP5BwOMvDnzAuW4+1tv0pq/EQa/rLwlhblgNq7Wt\nsmPKh1PArx5+06bo9uEwQlvGSAK3OM7UppyLsvKKMhTLpjuVi9Yl6twOjecj\njVvTMAG/JSvhFXxlvBmzb05uFlDuHaVnYJvBEKLW8nyjJaUUXhN5elFSP3c2\n+aftUWM4ZMPiyAhxtHX3ThJTgtgNlMQE0aPnVEUzXVfiXhF2hCEn9SqM6Psv\n7wc1+KhMO+Ag4l7rfxmD96IYmSZMoPvCXot09UzlKzzReeGb7bjqN+pFIYBb\nepL1\r\n=8dOt\r\n-----END PGP SIGNATURE-----\r\n"},"maintainers":[{"name":"mikemcl","email":"M8ch88l@gmail.com"}],"_npmUser":{"name":"mikemcl","email":"M8ch88l@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/decimal.js_10.1.1_1551262250251_0.3041117553504775"},"_hasShrinkwrap":false},"10.2.0":{"name":"decimal.js","description":"An arbitrary-precision Decimal type for JavaScript.","version":"10.2.0","keywords":["arbitrary","precision","arithmetic","big","number","decimal","float","biginteger","bigdecimal","bignumber","bigint","bignum"],"repository":{"type":"git","url":"git+https://github.com/MikeMcl/decimal.js.git"},"main":"decimal","module":"decimal.mjs","browser":"decimal.js","author":{"name":"Michael Mclaughlin","email":"M8ch88l@gmail.com"},"license":"MIT","scripts":{"test":"node ./test/test.js","build":"uglifyjs decimal.js --source-map url=decimal.min.js.map -c -m -o decimal.min.js"},"types":"decimal.d.ts","gitHead":"30828c01a6d12ec4afb05fa5c990c972226142d8","bugs":{"url":"https://github.com/MikeMcl/decimal.js/issues"},"homepage":"https://github.com/MikeMcl/decimal.js#readme","_id":"decimal.js@10.2.0","_nodeVersion":"12.0.0","_npmVersion":"6.9.0","dist":{"integrity":"sha512-vDPw+rDgn3bZe1+F/pyEwb1oMG2XTlRVgAa6B4KccTEpYgF8w6eQllVbQcfIJnZyvzFtFpxnpGtx8dd7DJp/Rw==","shasum":"39466113a9e036111d02f82489b5fd6b0b5ed231","tarball":"http://118.190.78.212:8081/nexus/content/repositories/npmjs/decimal.js/-/decimal.js-10.2.0.tgz","fileCount":11,"unpackedSize":486696,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc0v+7CRA9TVsSAnZWagAA944P/iCJxZnjONsVGT8KRGJs\n+WED0ndex4mW6+vZiDVNI9YK7UCDiy56iDYkEAZLDUY6XSkkIotJ5O0OBGhQ\nzU7qx+5m/H4QB0RQFzcKV7Ra1qPlQSbSEzfOr3hpaqt3+Qaa7+mx3T2wGRPJ\n/6CfMUdr7d1CVQJrEe0/VKDLSuh/HOPVJpuN8O7pRxlzl7EPR6mjsHpMAckn\nolL4CpsYAMftJSGZGxQLEFV0HU0brntXAaZdM/XrpF/ez8iQKzwrd3At8PhY\nj5/YDRCzuLo+9wwxd9JxSQUNq5s0X/JRiloRU/f44xOHkQWNQsjRPT6ZYt/B\nk83dWffYJKz15GoIfIHJVQPr8Z06QdsHZ/H4OIXwYiIKta4rSKp3m69/Mkce\nXFDLdQmqnOM9y0DOdpftrx1z0OeJ2lD0U9DN/Z19aoP94rthyXIL1M1NKg3A\nKVe73Zu0adnoKt1o4emjLe5prg9hoxuQIBun65U6xxKb/ZEpvlao8+VguMAy\nQf8kWEGGX8g44CcPqgcmF/lbAO2zGfxxamc3GwHtk50oHzE3CS8qd+59Cqd/\n1KS++4Zk947WquvvivJ8MKeJWe3s14BxwGpdO9gI19ZPcQbmA2t6vOtPUmVj\nEl7RTj5Ei7ZY/oBn43uuoPT6g24Lv8quxlc3ukwJe4wDd2EooFGip58nlIgs\nyk/t\r\n=VDUM\r\n-----END PGP SIGNATURE-----\r\n"},"maintainers":[{"name":"mikemcl","email":"M8ch88l@gmail.com"}],"_npmUser":{"name":"mikemcl","email":"M8ch88l@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/decimal.js_10.2.0_1557331899228_0.5704580716550192"},"_hasShrinkwrap":false}},"name":"decimal.js","time":{"modified":"2019-05-08T16:11:43.445Z","created":"2014-04-02T15:46:49.397Z","1.0.0":"2014-04-02T15:46:49.397Z","1.0.1":"2014-04-07T16:19:41.478Z","2.0.0":"2014-04-10T18:51:35.593Z","2.0.1":"2014-04-10T18:57:15.643Z","2.0.2":"2014-04-30T16:44:51.697Z","2.0.3":"2014-05-08T18:33:34.392Z","3.0.0":"2014-06-04T23:08:51.951Z","3.0.1":"2014-06-08T22:18:58.284Z","4.0.0":"2014-11-10T16:06:52.614Z","4.0.1":"2014-12-11T17:41:30.596Z","4.0.2":"2015-02-20T16:06:58.692Z","4.0.3":"2015-10-07T18:45:58.539Z","5.0.0":"2016-01-25T00:18:32.528Z","5.0.1":"2016-01-28T23:15:02.599Z","5.0.2":"2016-02-05T00:08:43.845Z","5.0.3":"2016-02-06T17:54:42.120Z","5.0.4":"2016-02-14T21:16:40.968Z","4.0.4":"2016-02-18T21:52:17.234Z","5.0.6":"2016-02-23T18:47:02.253Z","5.0.5":"2016-02-23T18:58:30.068Z","5.0.7":"2016-02-29T19:30:31.439Z","5.0.8":"2016-03-09T22:58:25.197Z","6.0.0":"2016-06-30T18:36:26.661Z","7.0.0":"2016-11-09T17:18:28.177Z","7.1.0":"2016-11-10T00:01:49.826Z","7.1.1":"2017-01-10T19:35:43.860Z","7.1.2":"2017-04-05T18:05:04.214Z","7.2.0":"2017-04-09T22:08:39.799Z","7.2.1":"2017-05-04T19:12:58.236Z","7.2.2":"2017-06-25T22:41:42.070Z","7.2.3":"2017-06-27T21:10:02.171Z","7.2.4":"2017-09-09T17:54:34.367Z","7.3.0":"2017-09-26T17:24:39.022Z","7.4.0":"2017-11-25T23:45:41.543Z","7.5.0":"2017-12-03T18:11:12.616Z","7.5.1":"2017-12-03T22:22:19.702Z","8.0.0":"2017-12-10T18:39:06.173Z","9.0.0":"2017-12-14T10:31:27.260Z","9.0.1":"2017-12-15T10:39:23.677Z","10.0.0":"2018-03-10T22:50:59.848Z","10.0.1":"2018-05-24T15:46:39.598Z","10.0.2":"2018-12-13T18:30:07.360Z","10.1.0":"2019-02-26T23:28:40.311Z","10.1.1":"2019-02-27T10:10:50.420Z","10.2.0":"2019-05-08T16:11:39.432Z"},"readmeFilename":"README.md","homepage":"https://github.com/MikeMcl/decimal.js#readme"}