1
0
mirror of https://github.com/MikeMcl/decimal.js.git synced 2026-09-23 04:14:32 +00:00
This commit is contained in:
Michael Mclaughlin
2017-12-10 18:32:38 +00:00
parent fd668fea70
commit dbf681be4a
10 changed files with 39 additions and 29 deletions

View File

@@ -1,7 +1,7 @@
{
"name": "decimal.js",
"description": "An arbitrary-precision Decimal type for JavaScript.",
"version": "7.5.1",
"version": "8.0.0",
"keywords": [
"arbitrary",
"precision",
@@ -20,8 +20,8 @@
"type": "git",
"url": "https://github.com/MikeMcl/decimal.js.git"
},
"main": "decimal.js",
"module": "decimal.mjs",
"main": "./decimal",
"module": "./decimal.mjs",
"author": {
"name": "Michael Mclaughlin",
"email": "M8ch88l@gmail.com"
@@ -29,7 +29,7 @@
"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.5.1 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 v8.0.0 https://github.com/MikeMcl/decimal.js/LICENCE */\""
},
"types": "decimal.d.ts"
}