mirror of
https://github.com/MikeMcl/decimal.js.git
synced 2024-10-27 20:34:12 +00:00
7818dff1ca
#122 Add custom `util.inspect()` function. Add `Symbol.toStringTag`. #121 Constructor: add range check for arguments of type number and Decimal. Remove premable from uglifyjs build script. Move *decimal.min.js.map* to root directory.
37 lines
784 B
JSON
37 lines
784 B
JSON
{
|
|
"name": "decimal.js",
|
|
"description": "An arbitrary-precision Decimal type for JavaScript.",
|
|
"version": "10.1.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",
|
|
"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"
|
|
}
|