2014-04-02 15:28:08 +00:00
|
|
|
{
|
|
|
|
"name": "decimal.js",
|
|
|
|
"description": "An arbitrary-precision Decimal type for JavaScript.",
|
2017-12-15 10:38:51 +00:00
|
|
|
"version": "9.0.1",
|
2014-04-02 15:28:08 +00:00
|
|
|
"keywords": [
|
|
|
|
"arbitrary",
|
|
|
|
"precision",
|
|
|
|
"arithmetic",
|
|
|
|
"big",
|
|
|
|
"number",
|
|
|
|
"decimal",
|
|
|
|
"float",
|
|
|
|
"biginteger",
|
|
|
|
"bigdecimal",
|
|
|
|
"bignumber",
|
|
|
|
"bigint",
|
|
|
|
"bignum"
|
|
|
|
],
|
2018-01-18 20:11:26 +00:00
|
|
|
"repository": {
|
2014-04-02 15:28:08 +00:00
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/MikeMcl/decimal.js.git"
|
|
|
|
},
|
2017-12-10 18:32:38 +00:00
|
|
|
"main": "./decimal",
|
|
|
|
"module": "./decimal.mjs",
|
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",
|
2018-01-18 20:11:26 +00:00
|
|
|
"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 */\""
|
2017-11-25 23:42:03 +00:00
|
|
|
},
|
2018-01-18 20:11:26 +00:00
|
|
|
"types": "decimal.d.ts",
|
|
|
|
"devDependencies": {
|
|
|
|
"uglify-js": "^3.3.7"
|
|
|
|
}
|
2016-04-04 20:00:57 +00:00
|
|
|
}
|