2014-04-02 15:28:08 +00:00
|
|
|
{
|
|
|
|
"name": "decimal.js",
|
|
|
|
"description": "An arbitrary-precision Decimal type for JavaScript.",
|
2021-06-25 11:55:36 +00:00
|
|
|
"version": "10.3.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"
|
|
|
|
},
|
2018-05-24 15:41:43 +00:00
|
|
|
"main": "decimal",
|
|
|
|
"module": "decimal.mjs",
|
|
|
|
"browser": "decimal.js",
|
2022-05-31 23:58:01 +00:00
|
|
|
"exports": {
|
|
|
|
".": {
|
|
|
|
"import": {
|
|
|
|
"types": "./decimal.d.ts",
|
|
|
|
"default": "./decimal.mjs"
|
|
|
|
},
|
|
|
|
"require": "./decimal.js"
|
|
|
|
}
|
|
|
|
},
|
2014-04-02 15:28:08 +00:00
|
|
|
"author": {
|
|
|
|
"name": "Michael Mclaughlin",
|
|
|
|
"email": "M8ch88l@gmail.com"
|
|
|
|
},
|
|
|
|
"license": "MIT",
|
|
|
|
"scripts": {
|
2021-06-22 18:20:14 +00:00
|
|
|
"test": "node ./test/test.js"
|
2017-11-25 23:42:03 +00:00
|
|
|
},
|
2021-06-22 18:20:14 +00:00
|
|
|
"types": "decimal.d.ts",
|
|
|
|
"files": [
|
|
|
|
"decimal.js",
|
|
|
|
"decimal.mjs",
|
|
|
|
"decimal.d.ts"
|
|
|
|
]
|
2016-04-04 20:00:57 +00:00
|
|
|
}
|