bigint-fraction
Version:
Fraction composed of bigint
60 lines (59 loc) • 1.61 kB
JSON
{
"author": {
"email": "km.8k6ce+npm@gmail.com",
"name": "kei-g"
},
"bugs": {
"url": "https://github.com/kei-g/bigint-fraction.js/issues"
},
"categories": [
"Data Science"
],
"description": "Fraction composed of bigint",
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"chai": "^4.3.7",
"esbuild": "^0.17.1",
"eslint": "^8.32.0",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"rimraf": "^4.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"engines": {
"node": ">=14.17.5"
},
"homepage": "https://github.com/kei-g/bigint-fraction.js",
"keywords": [
"bigfraction",
"bigint",
"fraction"
],
"license": "BSD-3-Clause",
"main": "index.js",
"name": "bigint-fraction",
"publishConfig": {
"access": "public"
},
"repository": "github:kei-g/bigint-fraction.js",
"scripts": {
"build": "npm-run-all -p clean lint -p build:bundle build:tsc",
"build:bundle": "esbuild src/index.ts --bundle --minify --outfile=index.js --platform=node",
"build:tsc": "tsc",
"clean": "rimraf .nyc_output/ coverage/ index.d.ts index.js lib/",
"cover": "nyc --check-coverage -r html -r text _mocha",
"lint": "eslint src/**/*.ts",
"postpublish": "run-s clean",
"prepublishOnly": "run-s build",
"start": "ts-node src/index.ts",
"test": "run-p cover lint"
},
"types": "index.d.ts",
"version": "1.0.6"
}