{
  "name": "faster-median",
  "version": "1.0.0",
  "description": "🔥 A Quick and Precise Way to get the Median Value of an Array of Numbers (Typed or Untyped)",
  "main": "src/index.js",
  "types": "src/index.d.ts",
  "files": [
    "src/index.d.ts",
    "src/index.js",
    "src/count.js",
    "src/mean.js",
    "src/median-of-a-few.js",
    "src/median-of-a-lot.js"
  ],
  "scripts": {
    "cleanup": "npm uninstall median median-quickselect simple-statistics",
    "f": "npm run format",
    "format": "npx prettier --arrow-parens=avoid --write *.js src/*.js",
    "perf": "node perf.js",
    "setup": "npm install -D median median-quickselect simple-statistics",
    "test": "npx ts-node test.ts"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/DanielJDufour/faster-median.git"
  },
  "keywords": [
    "fast",
    "faster",
    "fastest",
    "image",
    "integers",
    "math",
    "median",
    "no-data",
    "numbers",
    "pixels",
    "quick",
    "speed",
    "stats"
  ],
  "author": "Daniel J. Dufour",
  "license": "CC0-1.0",
  "bugs": {
    "url": "https://github.com/DanielJDufour/faster-median/issues"
  },
  "homepage": "https://github.com/DanielJDufour/faster-median#readme",
  "devDependencies": {
    "flug": "^2.3.1",
    "median-quickselect": "^1.0.1",
    "simple-statistics": "^7.7.5"
  },
  "dependencies": {
    "preciso": "^0.5.0"
  }
}
