UNPKG

streaming-iterables

Version:

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

77 lines (76 loc) 2.08 kB
{ "name": "streaming-iterables", "version": "7.1.0", "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 94", "lint": "tsc && eslint lib/*.ts", "format": "eslint 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", "devDependencies": { "@microsoft/api-extractor": "7.29.5", "@types/chai": "4.3.3", "@types/mocha": "9.1.1", "@types/node": "17.0.30", "@types/sinon": "10.0.13", "@typescript-eslint/eslint-plugin": "5.34.0", "@typescript-eslint/parser": "5.34.0", "benchmark": "2.1.4", "bluestream": "10.3.3", "c8": "7.12.0", "chai": "4.3.6", "eslint": "8.22.0", "eslint-config-airbnb-base": "15.0.0", "eslint-plugin-import": "2.26.0", "mocha": "10.0.0", "prettier": "2.7.1", "rollup": "2.78.1", "sinon": "14.0.0", "through2-concurrent": "2.0.0", "ts-node": "10.9.1", "tslib": "2.4.0", "typescript": "4.7.4" }, "engines": { "node": ">=14" }, "mocha": { "bail": true, "require": [ "ts-node/register" ], "spec": "lib/*-test.ts" } }