precision-math
Version:
Allows for precise decimal operations without the use of floats.
34 lines (33 loc) • 740 B
JSON
{
"name": "precision-math",
"version": "0.0.3",
"description": "Allows for precise decimal operations without the use of floats.",
"repository": {
"type": "git",
"url": "https://github.com/ralusek/precision-math"
},
"main": "src/index.js",
"scripts": {
"compile": "babel --presets es2015,stage-0 -d lib/ src/",
"prepublish": "npm run compile"
},
"keywords": [
"precision",
"decimal",
"math",
"operations",
"bigint",
"big integer",
"arbitrary precision",
"float",
"int",
"number"
],
"author": "Tomas Savigliano",
"license": "MIT",
"devDependencies": {
"babel-cli": "6.26.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-0": "6.24.1"
}
}