UNPKG

itertools-ts

Version:

Extended itertools port for TypeScript and JavaScript. Provides a huge set of functions for working with iterable collections (including async ones)

91 lines (90 loc) 2.2 kB
{ "name": "itertools-ts", "version": "2.2.0", "description": "Extended itertools port for TypeScript and JavaScript. Provides a huge set of functions for working with iterable collections (including async ones)", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/Smoren/itertools-ts.git" }, "author": { "name": "Smoren", "email": "ofigate@gmail.com", "url": "https://github.com/Smoren" }, "homepage": "https://github.com/Smoren/itertools-ts#readme", "bugs": { "url": "https://github.com/Smoren/itertools-ts/issues" }, "main": "./lib/index.js", "module": "./es/index.js", "scripts": { "build": "npm run build:commonjs && npm run build:es", "build:commonjs": "rimraf lib && tsc --downlevelIteration --target es5 --outDir lib --module commonjs --declaration", "build:es": "rimraf es && tsc --target es6 --outDir es --module es6", "test": "jest --coverage", "jest": "jest", "format": "ts-scripts format", "lint": "ts-scripts lint", "prepublishOnly": "npm run build" }, "files": [ "es", "lib", "src", "tests/examples", "tests/fixture.ts", "tests/tools" ], "keywords": [ "itertools", "itertool", "async-itertools", "async-itertool", "itertools-library", "itertools-lib", "iterable", "iterator", "iteration", "generator", "async-iterable", "async-iterator", "async-iteration", "async-generator", "stream", "async-stream", "streams", "fluentinterface", "map", "async-map", "filter", "zip", "async-zip", "loops", "async-loops", "looping", "combinatorics", "set-theory", "pipe", "pipes", "pipeline" ], "devDependencies": { "@borderless/ts-scripts": "^0.13.6", "@types/jest": "^29.2.4", "jest": "^29.3.1", "rimraf": "^4.4.0", "ts-expect": "^1.1.0", "ts-jest": "^29.0.3", "typescript": "^5.7.3" }, "types": "./lib/index.d.ts", "contributors": [ { "name": "Anastasiya Golubeva", "url": "https://github.com/anastansa" } ], "jsnext:main": "./es/index.js", "sideEffects": false }