stats-accumulator
Version:
A simple tool for calculating incremental stats on numeric streams. Forked from https://github.com/brycebaril/stats-incremental
59 lines (58 loc) • 1.4 kB
JSON
{
"name": "stats-accumulator",
"version": "1.3.0",
"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",
"types": "dist/cjs/index.d.cts",
"files": [
"dist"
],
"scripts": {
"build": "tsds build",
"format": "biome check --write --unsafe",
"test": "tsds link && ts-swc tape test/**/*.test.cjs && tsds unlink",
"test:engines": "nvu engines npm test",
"version": "tsds version"
},
"devDependencies": {
"@types/mocha": "*",
"@types/node": "*",
"stats-lite": "*",
"tape": "*",
"ts-swc-loaders": "*"
},
"engines": {
"node": ">=0.8"
},
"tsds": {
"source": "src/index.ts"
}
}