1
0
mirror of https://github.com/MikeMcl/decimal.js.git synced 2024-09-28 22:40:48 +00:00
MikeMcl_decimal.js/package.json

36 lines
790 B
JSON
Raw Permalink Normal View History

2014-04-02 15:28:08 +00:00
{
"name": "decimal.js",
"description": "An arbitrary-precision Decimal type for JavaScript.",
2014-04-10 18:55:23 +00:00
"version": "2.0.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"
},
"main": "decimal",
"author": {
"name": "Michael Mclaughlin",
"email": "M8ch88l@gmail.com"
},
"engines": {
"node": "*"
},
"license": "MIT",
"scripts": {
"test": "node ./test/every-test.js",
"build": "uglifyjs decimal.js -c -m -o decimal.min.js --preamble '/* decimal.js v2.0.0 https://github.com/MikeMcl/decimal.js/LICENCE */'"
2014-04-02 15:28:08 +00:00
}
}