UNPKG

@codibre/fluent-iterable

Version:

Provides LINQ-like fluent api operations for iterables and async iterables (ES2018+).

141 lines (140 loc) 4.34 kB
{ "name": "@codibre/fluent-iterable", "description": "Provides LINQ-like fluent api operations for iterables and async iterables (ES2018+).", "version": "1.39.2", "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 [skip ci]'", "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": "nest build", "test": "jest test/unit", "test:watch": "jest test/unit --watch", "test:coverage": "jest test/unit --coverage", "test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand", "test:e2e": "jest test/e2e", "test:benchmark": "node test/benchmark/general-benchmark.spec.js", "test:benchmark:branch": "node test/benchmark/branch-benchmark.spec.js", "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", "prepare": "husky install" }, "repository": { "type": "git", "url": "git+https://github.com/codibre/fluent-iterable.git" }, "homepage": "https://codibre.github.io/fluent-iterable", "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" }, "peerDependenciesMeta": { "for-emit-of": { "optional": true } }, "dependencies": { "augmentative-iterable": "^1.6.0", "typed-emitter": "^1.4.0" }, "devDependencies": { "@codibre/confs": "^1.1.2", "@nestjs/cli": "^10.4.5", "@types/benchmark": "^2.1.5", "@types/jest": "^29.5.13", "@types/node": "^22.5.5", "@typescript-eslint/eslint-plugin": "^7.0.0", "@typescript-eslint/eslint-plugin-tslint": "^7.0.0", "@typescript-eslint/parser": "^7.0.0", "benchmark": "^2.1.4", "del-cli": "^5.1.0", "delay": "^5.0.0", "eslint": "^8.56.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-prettier": "^5.2.1", "eslint-plugin-unused-imports": "^3.0.0", "expect": "^29.7.0", "for-emit-of": "^1.4.0", "husky": "^9.1.6", "iter-ops": "^3.5.0", "iter-tools-es": "^7.5.3", "iterare": "^1.2.1", "jest": "^29.7.0", "jest-callslike": "^0.2.1", "jest-extended": "^4.0.2", "nyc": "^17.0.0", "prettier": "^3.3.3", "random-int": "^2.0.1", "reflect-metadata": "^0.2.2", "rxjs": "^7.8.1", "stream-mock": "^2.0.5", "ts-jest": "^29.2.5", "ts-node": "^10.9.2", "tsconfig-paths": "^4.2.0", "typedoc": "^0.26.7", "typedoc-plugin-markdown": "^4.2.10", "typescript": "^5.6.2" } }