stats-accumulator
Version:
A simple tool for calculating incremental stats on numeric streams. Forked from https://github.com/brycebaril/stats-incremental
61 lines (60 loc) • 1.53 kB
JSON
{
"name": "stats-accumulator",
"version": "1.3.8",
"description": "A simple tool for calculating incremental stats on numeric streams. Forked from https://github.com/brycebaril/stats-incremental",
"keywords": [
"stats",
"statistics",
"numbers",
"math",
"sum",
"mean",
"average",
"variance",
"deviation",
"accumulator",
"incremental"
],
"homepage": "https://github.com/kmalakoff/stats-accumulator",
"repository": {
"type": "git",
"url": "git://github.com/kmalakoff/stats-accumulator.git"
},
"license": "MIT",
"author": "Kevin Malakoff <kmalakoff@gmail.com> (https://github.com/kmalakoff)",
"type": "module",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./package.json": "./package.json"
},
"main": "dist/cjs/index.js",
"source": "src/index.ts",
"types": "dist/cjs/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsds build",
"format": "tsds format",
"prepublishOnly": "tsds validate",
"test": "tsds link && ts-swc tape test/**/*.test.cjs && tsds unlink",
"test:engines": "nvu engines npm test",
"version": "tsds version"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "^25.0.1",
"node-version-use": "^2.1.5",
"stats-lite": "^2.2.0",
"tape": "^5.9.0",
"ts-dev-stack": "^1.21.3",
"ts-swc-loaders": "^2.5.3",
"tsds-config": "^0.2.1"
},
"engines": {
"node": ">=0.8"
}
}