bignumber.js/package.json

37 lines
840 B
JSON
Raw Normal View History

2012-11-09 12:07:27 +00:00
{
"name": "bignumber.js",
"description": "A library for arbitrary-precision decimal and non-decimal arithmetic",
2017-05-03 18:30:39 +00:00
"version": "4.0.2",
2012-11-09 12:07:27 +00:00
"keywords": [
"arbitrary",
"precision",
"arithmetic",
"big",
"number",
"decimal",
"float",
"biginteger",
"bigdecimal",
"bignumber",
"bigint",
"bignum"
],
"repository" : {
"type": "git",
"url": "https://github.com/MikeMcl/bignumber.js.git"
},
2016-04-04 15:44:18 +00:00
"main": "bignumber.js",
2012-11-09 12:07:27 +00:00
"author": {
"name": "Michael Mclaughlin",
"email": "M8ch88l@gmail.com"
},
"engines": {
"node": "*"
},
"license": "MIT",
"scripts": {
"test": "node ./test/every-test.js",
2017-08-11 20:34:13 +00:00
"build": "uglifyjs bignumber.js --source-map -c -m -o bignumber.min.js --preamble \"/* bignumber.js v4.0.2 https://github.com/MikeMcl/bignumber.js/LICENCE */\""
2012-11-09 12:07:27 +00:00
}
2016-04-04 15:44:18 +00:00
}