2014-04-02 15:28:08 +00:00
|
|
|
{
|
|
|
|
"name": "decimal.js",
|
|
|
|
"description": "An arbitrary-precision Decimal type for JavaScript.",
|
2017-12-15 10:38:51 +00:00
|
|
|
"version": "9.0.1",
|
2014-04-02 15:28:08 +00:00
|
|
|
"keywords": [
|
|
|
|
"arbitrary",
|
|
|
|
"precision",
|
|
|
|
"arithmetic",
|
|
|
|
"big",
|
|
|
|
"number",
|
|
|
|
"decimal",
|
|
|
|
"float",
|
|
|
|
"biginteger",
|
|
|
|
"bigdecimal",
|
|
|
|
"bignumber",
|
|
|
|
"bigint",
|
|
|
|
"bignum"
|
|
|
|
],
|
|
|
|
"repository" : {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/MikeMcl/decimal.js.git"
|
|
|
|
},
|
2017-12-10 18:32:38 +00:00
|
|
|
"main": "./decimal",
|
|
|
|
"module": "./decimal.mjs",
|
2014-04-02 15:28:08 +00:00
|
|
|
"author": {
|
|
|
|
"name": "Michael Mclaughlin",
|
|
|
|
"email": "M8ch88l@gmail.com"
|
|
|
|
},
|
|
|
|
"license": "MIT",
|
|
|
|
"scripts": {
|
2016-01-25 00:11:32 +00:00
|
|
|
"test": "node ./test/test.js",
|
2017-12-15 10:38:51 +00:00
|
|
|
"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 */\""
|
2017-11-25 23:42:03 +00:00
|
|
|
},
|
|
|
|
"types": "decimal.d.ts"
|
2016-04-04 20:00:57 +00:00
|
|
|
}
|