{
  "name": "fast-max",
  "version": "0.5.1",
  "description": "Quickest Way to get the Maximum Value of an Array of Numbers (Typed or Untyped)",
  "main": "./index.js",
  "types": "index.d.ts",
  "files": [
    "index.d.ts",
    "index.js"
  ],
  "scripts": {
    "f": "npm run format",
    "format": "npx prettier --arrow-parens=avoid --print-width=120 --trailing-comma=none --write *.js *.ts",
    "setup": "node setup.js",
    "perf": "./perf",
    "test": "npm run test:js && npm run test:ts",
    "test:js": "node test.js",
    "test:ts": "npx ts-node ./test.ts"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/DanielJDufour/fast-max.git"
  },
  "keywords": [
    "array",
    "fast",
    "max",
    "maximum",
    "numbers",
    "nums",
    "quick",
    "speed",
    "typed",
    "uint8array",
    "int8array",
    "uint16array",
    "int16array"
  ],
  "author": "Daniel J. Dufour",
  "license": "CC0-1.0",
  "bugs": {
    "url": "https://github.com/DanielJDufour/fast-max/issues"
  },
  "homepage": "https://github.com/DanielJDufour/fast-max#readme",
  "devDependencies": {
    "flug": "^2.7.2",
    "lodash.max": "^4.0.1",
    "underscore": "^1.13.6"
  },
  "dependencies": {
    "typed-array-ranges": "^0.0.0"
  }
}
