UNPKG

@hastom/fixed-point

Version:

Light lib for fixed point math made around native bigint

46 lines (45 loc) 1.2 kB
{ "name": "@hastom/fixed-point", "version": "4.4.0", "description": "Light lib for fixed point math made around native bigint", "private": false, "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "prepublishOnly": "npm run lint && npm run build && npm run test", "lint": "eslint . --ext .ts,.tsx --fix", "prebuild": "rimraf dist", "build": "tsc", "test": "jest", "dev": "ts-node src/index.ts", "bench": "npm run build && node benchmarks/run.js" }, "repository": { "type": "git", "url": "git@github.com:hastom/fixed-point.git" }, "keywords": [ "fixed-point", "math", "bigint", "bigdecimal" ], "author": "Aleksandr Klyavlin", "license": "MIT", "devDependencies": { "@hastom/eslint-config": "^1.0.2", "@types/benchmark": "^2.1.5", "@types/jest": "^29.5.11", "@typescript-eslint/eslint-plugin": "^6.14.0", "@typescript-eslint/parser": "^6.14.0", "benchmark": "^2.1.4", "bignumber.js": "^9.3.1", "dnum": "^2.17.0", "eslint": "^8.55.0", "jest": "^29.7.0", "rimraf": "^5.0.5", "ts-jest": "^29.1.1", "ts-node": "^10.9.2", "typescript": "^5.3.3" } }