1
0
mirror of https://github.com/MikeMcl/decimal.js.git synced 2025-06-13 12:54:17 +00:00
MikeMcl_decimal.js/package.json

39 lines
882 B
JSON

{
"name": "decimal.js",
"description": "An arbitrary-precision Decimal type for JavaScript.",
"version": "9.0.1",
"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",
"author": {
"name": "Michael Mclaughlin",
"email": "M8ch88l@gmail.com"
},
"license": "MIT",
"scripts": {
"test": "node ./test/test.js",
"build": "./node_modules/.bin/uglifyjs decimal.js -c -m -o decimal.min.js --preamble \"/* decimal.js v9.0.1 https://github.com/MikeMcl/decimal.js/LICENCE */\""
},
"types": "decimal.d.ts",
"devDependencies": {
"uglify-js": "^3.3.7"
}
}