2014-04-02 15:28:08 +00:00
|
|
|
{
|
|
|
|
"name": "decimal.js",
|
|
|
|
"description": "An arbitrary-precision Decimal type for JavaScript.",
|
2017-04-05 18:03:17 +00:00
|
|
|
"version": "7.1.2",
|
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"
|
|
|
|
},
|
2016-04-04 20:00:57 +00:00
|
|
|
"main": "decimal.js",
|
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-04-05 18:03:17 +00:00
|
|
|
"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 */\""
|
2014-04-02 15:28:08 +00:00
|
|
|
}
|
2016-04-04 20:00:57 +00:00
|
|
|
}
|