-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.02 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "streaming-iterables",
"version": "8.0.1",
"description": "A collection of utilities for async iterables. Designed to replace your streams.",
"main": "./dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"repository": "git@github.com:reconbot/streaming-iterables.git",
"homepage": "https://github.com/reconbot/streaming-iterables",
"runkitExampleFilename": "example.js",
"packageManager": "pnpm@8.8.0",
"scripts": {
"test": "pnpm run unit-test && pnpm run lint",
"unit-test": "c8 -r html -r text node -r ts-node/register --test lib/*-test.ts",
"check-coverage": "c8 check-coverage --lines 95 --functions 95 --branches 94",
"lint": "tsc && eslint lib/*.ts",
"format": "eslint lib/*.ts --fix",
"build": "rollup -c && node bundle-types.mjs",
"prepare": "pnpm 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": {
"@rollup/plugin-typescript": "^12.0.0",
"@types/chai": "5.2.3",
"@types/node": "24.12.2",
"@types/sinon": "21.0.1",
"@typescript-eslint/eslint-plugin": "8.59.1",
"@typescript-eslint/parser": "8.59.1",
"benchmark": "2.1.4",
"bluestream": "10.3.3",
"c8": "11.0.0",
"chai": "6.2.2",
"dts-buddy": "0.7.0",
"eslint": "10.2.1",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.32.0",
"prettier": "3.8.3",
"rollup": "4.60.2",
"sinon": "21.1.2",
"through2-concurrent": "2.0.0",
"ts-node": "^10.9.1",
"tslib": "^2.6.1",
"typescript": "6.0.3"
},
"engines": {
"node": ">=18"
}
}