UNPKG

streaming-iterables

Version:

A collection of utilities for async iterables. Designed to replace your streams.

76 lines (75 loc) 2.04 kB
{ "name": "streaming-iterables", "version": "5.0.3", "description": "A collection of utilities for async iterables. Designed to replace your streams.", "main": "./dist/index.js", "module": "./dist/index.mjs", "exports": { "require": "./dist/index.js", "import": "./dist/index.mjs" }, "types": "dist/index.d.ts", "repository": "git@github.com:reconbot/streaming-iterables.git", "homepage": "https://github.com/reconbot/streaming-iterables", "runkitExampleFilename": "example.js", "scripts": { "test": "npm run unit-test && npm run lint", "unit-test": "c8 -r html -r text mocha", "check-coverage": "c8 check-coverage --lines 95 --functions 95 --branches 95", "lint": "tsc && tslint lib/*.ts", "format": "tslint lib/*.ts --fix", "build": "tsc -p tsconfig-build.json && rollup -c && api-extractor run --local --verbose", "prepare": "npm run build" }, "keywords": [ "async", "generators", "async generators", "async iterables", "iterators", "async iterators", "promise", "stream", "fp", "transform", "generator functions", "async generator functions", "bluestream", "ramda" ], "author": "reconbot", "license": "MIT", "dependencies": {}, "devDependencies": { "@microsoft/api-extractor": "^7.8.15", "@types/chai": "^4.2.11", "@types/mocha": "^8.0.0", "@types/node": "^14.0.14", "benchmark": "^2.1.4", "bluestream": "^10.3.3", "c8": "^7.2.0", "chai": "^4.2.0", "mocha": "^8.0.1", "prettier": "^2.0.5", "rollup": "^2.18.1", "rollup-plugin-node-resolve": "^5.2.0", "through2-concurrent": "^2.0.0", "ts-node": "^8.10.2", "tslib": "^2.0.0", "tslint": "^6.1.2", "tslint-config-prettier": "^1.18.0", "tslint-plugin-prettier": "^2.3.0", "typescript": "3.9.7" }, "engines": { "node": ">=10" }, "mocha": { "bail": true, "require": [ "ts-node/register", "chai/register-assert" ], "spec": "lib/*-test.ts" } }