1
0
mirror of https://github.com/MikeMcl/decimal.js.git synced 2026-09-23 20:35:04 +00:00

v7.2.0 Add decimal.es6.js

This commit is contained in:
Michael Mclaughlin
2017-04-09 23:07:52 +01:00
parent 85a499eb86
commit 2be14dfdd7
6 changed files with 4780 additions and 7 deletions

View File

@@ -1,7 +1,7 @@
{
"name": "decimal.js",
"description": "An arbitrary-precision Decimal type for JavaScript.",
"version": "7.1.2",
"version": "7.2.0",
"keywords": [
"arbitrary",
"precision",
@@ -21,6 +21,7 @@
"url": "https://github.com/MikeMcl/decimal.js.git"
},
"main": "decimal.js",
"module": "decimal.es6.js",
"author": {
"name": "Michael Mclaughlin",
"email": "M8ch88l@gmail.com"
@@ -28,6 +29,6 @@
"license": "MIT",
"scripts": {
"test": "node ./test/test.js",
"build": "uglifyjs decimal.js --source-map doc/decimal.js.map -c -m -o decimal.min.js --preamble \"/* decimal.js v7.1.2 https://github.com/MikeMcl/decimal.js/LICENCE */\""
"build": "uglifyjs decimal.js --source-map doc/decimal.js.map -c -m -o decimal.min.js --preamble \"/* decimal.js v7.2.0 https://github.com/MikeMcl/decimal.js/LICENCE */\""
}
}