{
  "name": "array-reduce-compare",
  "version": "0.0.2",
  "description": "Reduces an array like Array.prototype.reduce, but with an additional compare function to stop the reduction.",
  "scripts": {
    "build": "rollup -c",
    "lint": "eslint ./src/array-reduce-compare.ts",
    "start": "npm run build",
    "watch": "chokidar ./src/array-reduce-compare.ts -c \"npm run lint && npm run build\"",
    "test": "jest --coverage"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/StefanJelner/array-reduce-compare.git"
  },
  "keywords": [
    "javascript",
    "typescript",
    "array",
    "reduce",
    "break",
    "stop",
    "compare"
  ],
  "author": "Stefan Jelner",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/StefanJelner/array-reduce-compare/issues"
  },
  "homepage": "https://github.com/StefanJelner/array-reduce-compare#readme",
  "devDependencies": {
    "@babel/core": "^7.17.9",
    "@babel/preset-env": "^7.16.11",
    "@rollup/plugin-babel": "^5.3.1",
    "@rollup/plugin-commonjs": "^22.0.0",
    "@rollup/plugin-node-resolve": "^13.2.1",
    "@rollup/plugin-typescript": "^8.3.2",
    "@types/jest": "^28.1.1",
    "@typescript-eslint/eslint-plugin": "^5.21.0",
    "@typescript-eslint/parser": "^5.21.0",
    "@typescript-eslint/typescript-estree": "^5.21.0",
    "eslint": "^8.14.0",
    "eslint-plugin-import": "^2.26.0",
    "eslint-plugin-typescript-sort-keys": "^2.1.0",
    "jest": "^28.1.0",
    "jest-environment-jsdom": "^28.1.0",
    "rollup": "^2.70.2",
    "rollup-plugin-filesize": "^9.1.2",
    "rollup-plugin-progress": "^1.1.2",
    "rollup-plugin-terser": "^7.0.2",
    "rollup-plugin-visualizer": "^5.6.0",
    "ts-jest": "^28.0.4",
    "typescript": "^4.6.3"
  },
  "browser": "dist/array-reduce-compare.iife.js",
  "module": "dist/array-reduce-compare.es.js",
  "main": "dist/array-reduce-compare.umd.js"
}
