UNPKG

bigfloat.js

Version:

A library for arbitrary precision floating point arithmetic.

63 lines (62 loc) 1.42 kB
{ "name": "bigfloat.js", "version": "3.0.1", "description": "A library for arbitrary precision floating point arithmetic.", "main": "lib/cjs/mod.js", "module": "lib/esm/mod.js", "types": "lib/cjs/mod.d.ts", "unpkg": "lib/", "scripts": { "build": "tsc -p tsconfig.json && tsc -p tsconfig.cjs.json", "prepublishOnly": "npm run build", "version": "git add -A src", "postversion": "git push && git push --tags" }, "keywords": [ "bigfloat", "float", "decimal", "bigdecimal", "number", "math", "arithmetic", "floating point", "point", "mathematics", "calculator", "precision", "decimal float", "big integer", "typescript", "bigfloat-ts", "bigfloat-esnext", "decimal.js", "node" ], "author": "David Martínez", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/davidmartinez10/bigfloat.git" }, "bugs": { "url": "https://github.com/davidmartinez10/bigfloat/issues" }, "homepage": "https://github.com/davidmartinez10/bigfloat#readme", "devDependencies": { "@types/node": "^14.11.8", "@typescript-eslint/eslint-plugin": "^4.4.0", "@typescript-eslint/parser": "^4.4.0", "eslint": "^7.11.0", "typescript": "^4.0.3" }, "files": [ "lib/**/*" ], "dependencies": { "jsbi": "^3.1.4" }, "directories": { "lib": "lib" } }