You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
MikeMcl_decimal.js/package.json

36 lines
843 B

10 years ago
{
"name": "decimal.js",
"description": "An arbitrary-precision Decimal type for JavaScript.",
6 years ago
"version": "10.0.0",
10 years ago
"keywords": [
"arbitrary",
"precision",
"arithmetic",
"big",
"number",
"decimal",
"float",
"biginteger",
"bigdecimal",
"bignumber",
"bigint",
"bignum"
],
"repository" : {
"type": "git",
"url": "https://github.com/MikeMcl/decimal.js.git"
},
7 years ago
"main": "./decimal",
"module": "./decimal.mjs",
10 years ago
"author": {
"name": "Michael Mclaughlin",
"email": "M8ch88l@gmail.com"
},
"license": "MIT",
"scripts": {
8 years ago
"test": "node ./test/test.js",
6 years ago
"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"
8 years ago
}