UNPKG

2.12 kBJSONView Raw
1{
2 "name": "streaming-iterables",
3 "version": "7.0.2",
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.23.0",
44 "@types/chai": "4.3.1",
45 "@types/mocha": "9.1.1",
46 "@types/node": "17.0.30",
47 "@types/sinon": "10.0.11",
48 "@typescript-eslint/eslint-plugin": "5.21.0",
49 "@typescript-eslint/parser": "5.21.0",
50 "benchmark": "2.1.4",
51 "bluestream": "10.3.3",
52 "c8": "7.11.2",
53 "chai": "4.3.6",
54 "eslint": "8.14.0",
55 "eslint-config-airbnb-base": "15.0.0",
56 "eslint-plugin-import": "2.26.0",
57 "mocha": "9.2.2",
58 "prettier": "2.5.1",
59 "rollup": "2.67.0",
60 "rollup-plugin-node-resolve": "5.2.0",
61 "sinon": "13.0.2",
62 "through2-concurrent": "2.0.0",
63 "ts-node": "10.7.0",
64 "tslib": "2.4.0",
65 "typescript": "4.6.3"
66 },
67 "engines": {
68 "node": ">=14"
69 },
70 "mocha": {
71 "bail": true,
72 "require": [
73 "ts-node/register"
74 ],
75 "spec": "lib/*-test.ts"
76 }
77}