oddball
Version:
collection of mathematical analysis and simulation tools
83 lines (82 loc) • 1.98 kB
JSON
{
"name": "oddball",
"version": "0.2.2",
"description": "collection of mathematical analysis and simulation tools",
"author": "Dom Mandy",
"license": "MIT",
"type": "module",
"main": "index.js",
"types": "typings/index.d.ts",
"homepage": "https://domrally.github.io/oddball",
"files": [
"typings/**/*"
],
"exports": {
".": "./index.js"
},
"bugs": {
"url": "https://github.com/domrally/oddball/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/domrally/oddball.git"
},
"scripts": {
"restart": "node --no-warnings --experimental-modules --loader ts-node/esm --inspect --experimental-specifier-resolution=node",
"prestart": "rm -rf typings && npx tsc",
"start": "rollup dist/src/index.js --compact -f es -o index.js && terser index.js -c -m --mangle-props --module --toplevel -f semicolons=false -o index.js",
"poststart": "mv typings/src/* typings && rm -rf dist && rm -rf typings/test && rm -rf typings/src",
"stop": "npm update && npx eslint --fix && npx prettier --write .",
"test": "npm restart test && npx eslint && npx prettier --check ."
},
"dependencies": {
"functional-red-black-tree": "*",
"ml-pca": "*",
"yallist": "*"
},
"devDependencies": {
"@tsconfig/node18-strictest": "*",
"@types/functional-red-black-tree": "*",
"@types/node": "*",
"@types/yallist": "*",
"@typescript-eslint/eslint-plugin": "*",
"@typescript-eslint/parser": "*",
"eslint": "*",
"eslint-config-alloy": "*",
"eslint-config-prettier": "*",
"prettier": "*",
"rollup": "*",
"terser": "*",
"ts-node": "*",
"typescript": "*"
},
"keywords": [
"analysis",
"bayes",
"bijection",
"causal",
"conditional",
"discrepancy",
"door",
"entropy",
"error",
"exponential",
"factor",
"filter",
"frequentist",
"front",
"function",
"mean",
"median",
"odds",
"probability",
"random",
"sample",
"sawtooth",
"sharpen",
"simulation",
"smooth",
"statistics",
"wave"
]
}