UNPKG

2.04 kBJSONView Raw
1{
2 "name": "streaming-iterables",
3 "version": "5.0.3",
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 95",
19 "lint": "tsc && tslint lib/*.ts",
20 "format": "tslint 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 "dependencies": {},
43 "devDependencies": {
44 "@microsoft/api-extractor": "^7.8.15",
45 "@types/chai": "^4.2.11",
46 "@types/mocha": "^8.0.0",
47 "@types/node": "^14.0.14",
48 "benchmark": "^2.1.4",
49 "bluestream": "^10.3.3",
50 "c8": "^7.2.0",
51 "chai": "^4.2.0",
52 "mocha": "^8.0.1",
53 "prettier": "^2.0.5",
54 "rollup": "^2.18.1",
55 "rollup-plugin-node-resolve": "^5.2.0",
56 "through2-concurrent": "^2.0.0",
57 "ts-node": "^8.10.2",
58 "tslib": "^2.0.0",
59 "tslint": "^6.1.2",
60 "tslint-config-prettier": "^1.18.0",
61 "tslint-plugin-prettier": "^2.3.0",
62 "typescript": "3.9.7"
63 },
64 "engines": {
65 "node": ">=10"
66 },
67 "mocha": {
68 "bail": true,
69 "require": [
70 "ts-node/register",
71 "chai/register-assert"
72 ],
73 "spec": "lib/*-test.ts"
74 }
75}