UNPKG

2.08 kBJSONView Raw
1{
2 "name": "streaming-iterables",
3 "version": "7.1.0",
4 "description": "A collection of utilities for async iterables. Designed to replace your streams.",
5 "main": "./dist/index.js",
6 "module": "./dist/index.mjs",
7 "exports": {
8 "require": "./dist/index.js",
9 "import": "./dist/index.mjs"
10 },
11 "types": "dist/index.d.ts",
12 "repository": "git@github.com:reconbot/streaming-iterables.git",
13 "homepage": "https://github.com/reconbot/streaming-iterables",
14 "runkitExampleFilename": "example.js",
15 "scripts": {
16 "test": "npm run unit-test && npm run lint",
17 "unit-test": "c8 -r html -r text mocha",
18 "check-coverage": "c8 check-coverage --lines 95 --functions 95 --branches 94",
19 "lint": "tsc && eslint lib/*.ts",
20 "format": "eslint lib/*.ts --fix",
21 "build": "tsc -p tsconfig-build.json && rollup -c && api-extractor run --local --verbose",
22 "prepare": "npm run build"
23 },
24 "keywords": [
25 "async",
26 "generators",
27 "async generators",
28 "async iterables",
29 "iterators",
30 "async iterators",
31 "promise",
32 "stream",
33 "fp",
34 "transform",
35 "generator functions",
36 "async generator functions",
37 "bluestream",
38 "ramda"
39 ],
40 "author": "reconbot",
41 "license": "MIT",
42 "devDependencies": {
43 "@microsoft/api-extractor": "7.29.5",
44 "@types/chai": "4.3.3",
45 "@types/mocha": "9.1.1",
46 "@types/node": "17.0.30",
47 "@types/sinon": "10.0.13",
48 "@typescript-eslint/eslint-plugin": "5.34.0",
49 "@typescript-eslint/parser": "5.34.0",
50 "benchmark": "2.1.4",
51 "bluestream": "10.3.3",
52 "c8": "7.12.0",
53 "chai": "4.3.6",
54 "eslint": "8.22.0",
55 "eslint-config-airbnb-base": "15.0.0",
56 "eslint-plugin-import": "2.26.0",
57 "mocha": "10.0.0",
58 "prettier": "2.7.1",
59 "rollup": "2.78.1",
60 "sinon": "14.0.0",
61 "through2-concurrent": "2.0.0",
62 "ts-node": "10.9.1",
63 "tslib": "2.4.0",
64 "typescript": "4.7.4"
65 },
66 "engines": {
67 "node": ">=14"
68 },
69 "mocha": {
70 "bail": true,
71 "require": [
72 "ts-node/register"
73 ],
74 "spec": "lib/*-test.ts"
75 }
76}