{
  "name": "fast-iterable",
  "description": "Provides LINQ-like fluent api operations for iterables and async iterables (ES2018+).",
  "version": "1.22.0",
  "private": false,
  "author": {
    "name": "Thiago O Santos <tos.oliveira@gmail.com>"
  },
  "contributors": [
    "Thiago O Santos <tos.oliveira@gmail.com>",
    "Gentilhomme <gentilhomme.thomas@gmail.fr>"
  ],
  "engines": {
    "node": ">=10"
  },
  "files": [
    "dist"
  ],
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "scripts": {
    "doc": "rm -rf docs && npx typedoc && git add . && git commit -m 'chore: generating docs'",
    "format": "prettier --write src/**/*.ts tst/**/*.ts",
    "lint": "npm run lint:format && npm run lint:style",
    "lint:fix": "npm run lint:format:fix && npm run lint:style:fix",
    "build": "tsc",
    "test": "mocha --exit",
    "test:coverage": "nyc npm test",
    "test:benchmark": "npm run build && mocha --config .mocharc-benchmark.json",
    "test:memory": "ts-node test-memory/run.ts",
    "test:memory-native": "ts-node test-memory/run.ts",
    "prepublishOnly": "npm run build && npm run test:coverage",
    "preversion": "npm run build && npm run test:coverage",
    "clear": "npm run clear:build && npm run clear:modules",
    "clear:build": "del-cli ./dist",
    "clear:modules": "del-cli ./node_modules",
    "prebuild": "npm run clear:build && del-cli tsconfig.tsbuildinfo",
    "preaction:verify:update-modules": "npm run action:verify:update-modules:check",
    "action:verify:update-modules": "npm run action:verify:update-modules:reinstall && npm run action:verify:update-modules:clean",
    "action:verify:update-modules:clean": "del-cli .check",
    "lint:format": "prettier --check '{src,test}/**/*.ts'",
    "lint:format:fix": "prettier --write '{src,test}/**/*.ts'",
    "lint:style": "eslint '**/*.ts'",
    "lint:style:fix": "eslint '**/*.ts' --fix",
    "get:version": "echo $npm_package_version"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/codibre/fluent-iterable.git"
  },
  "homepage": "https://github.com/codibre/fluent-iterable#readme",
  "bugs": {
    "url": "https://github.com/codibre/fluent-iterable/issues"
  },
  "keywords": [
    "iterable",
    "asyncIterable",
    "linq",
    "map",
    "filter",
    "fluent",
    "stream",
    "streams",
    "readable",
    "merge",
    "combine",
    "iterator",
    "asyncIterator",
    "iteration",
    "functional",
    "collection",
    "array",
    "map",
    "set",
    "filter",
    "reduce",
    "flatten",
    "concat",
    "every",
    "some",
    "flat",
    "flatMap"
  ],
  "license": "MIT",
  "peerDependencies": {
    "for-emit-of": "^1.3.3"
  },
  "dependencies": {
    "augmentative-iterable": "^1.5.8",
    "extension-methods": "^1.0.1",
    "typed-emitter": "^1.4.0"
  },
  "devDependencies": {
    "@codibre/confs": "^1.1.0",
    "@types/benchmark": "^2.1.1",
    "@types/chai": "^4.2.22",
    "@types/mocha": "^9.0.0",
    "@types/node": "^16.11.6",
    "@types/sinon": "^10.0.6",
    "@types/sinon-chai": "^3.2.5",
    "@typescript-eslint/eslint-plugin": "^5.2.0",
    "@typescript-eslint/eslint-plugin-tslint": "^5.2.0",
    "@typescript-eslint/parser": "^5.2.0",
    "benchmark": "^2.1.4",
    "chai": "^4.3.4",
    "chai-callslike": "^1.2.6",
    "del-cli": "^3.0.1",
    "delay": "^5.0.0",
    "eslint": "^7.1.0",
    "eslint-config-prettier": "^8.3.0",
    "eslint-plugin-prettier": "^4.0.0",
    "expect": "^27.3.1",
    "for-emit-of": "^1.3.3",
    "husky": "^7.0.4",
    "iter-tools-es": "^7.1.4",
    "iterare": "^1.2.1",
    "mocha": "^9.2.2",
    "nyc": "^15.1.0",
    "prettier": "^2.4.1",
    "random-int": "^2.0.1",
    "reflect-metadata": "^0.1.13",
    "rxjs": "^7.4.0",
    "sinon": "^11.1.2",
    "sinon-chai": "^3.7.0",
    "stream-mock": "^2.0.5",
    "ts-node": "^10.4.0",
    "tsconfig-paths": "^3.11.0",
    "typedoc": "^0.22.17",
    "typedoc-plugin-markdown": "^3.11.3",
    "typescript": "^4.4.4"
  }
}
