iterflow 0.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,111 @@
1
+ {
2
+ "name": "iterflow",
3
+ "version": "0.2.2",
4
+ "description": "Powerful iterator utilities for ES2022+ with statistical operations, windowing, and lazy evaluation. Forward compatible with ES2025 iterator helpers.",
5
+ "type": "module",
6
+ "main": "./dist/index.cjs",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.js",
13
+ "require": "./dist/index.cjs"
14
+ },
15
+ "./fn": {
16
+ "types": "./dist/fn/index.d.ts",
17
+ "import": "./dist/fn/index.js",
18
+ "require": "./dist/fn/index.cjs"
19
+ }
20
+ },
21
+ "files": [
22
+ "dist"
23
+ ],
24
+ "scripts": {
25
+ "build": "tsup",
26
+ "test": "vitest run --exclude \"**/async.test.ts\"",
27
+ "test:watch": "vitest",
28
+ "test:coverage": "vitest run --coverage",
29
+ "test:types": "tsd",
30
+ "bench": "vitest bench",
31
+ "bench:transformations": "vitest bench benchmarks/transformations.bench.ts",
32
+ "bench:terminals": "vitest bench benchmarks/terminals.bench.ts",
33
+ "bench:statistics": "vitest bench benchmarks/statistics.bench.ts",
34
+ "bench:windowing": "vitest bench benchmarks/windowing.bench.ts",
35
+ "bench:lazy": "vitest bench benchmarks/lazy-evaluation.bench.ts",
36
+ "bench:memory": "vitest bench benchmarks/memory-profiling.bench.ts",
37
+ "bench:production": "vitest bench benchmarks/production-profiling.bench.ts",
38
+ "test:production": "vitest run tests/production/",
39
+ "profile:production": "node scripts/production-profiler.js",
40
+ "analyze:bundle": "bash scripts/analyze-bundle.sh",
41
+ "lint": "eslint src --ext .ts",
42
+ "format": "prettier --write \"src/**/*.ts\"",
43
+ "docs": "typedoc src/index.ts",
44
+ "security": "bash scripts/security-check.sh",
45
+ "security:audit": "npm audit --audit-level=moderate",
46
+ "security:fix": "npm audit fix",
47
+ "changelog": "node scripts/generate-changelog.js",
48
+ "release": "node scripts/release.js",
49
+ "validate-commits": "node scripts/validate-commits.js",
50
+ "prepublishOnly": "npm run build && npm test && npm run test:types",
51
+ "website:dev": "cd website && npm run dev",
52
+ "website:build": "npm run build && cd website && npm run build && cd .. && npm run docs"
53
+ },
54
+ "keywords": [
55
+ "iterator",
56
+ "iterable",
57
+ "helpers",
58
+ "utilities",
59
+ "es2022",
60
+ "es2025",
61
+ "typescript",
62
+ "functional",
63
+ "statistics",
64
+ "windowing",
65
+ "lazy",
66
+ "stream",
67
+ "pipeline",
68
+ "data-processing",
69
+ "collection",
70
+ "aggregation",
71
+ "mean",
72
+ "median",
73
+ "variance",
74
+ "tree-shakeable"
75
+ ],
76
+ "author": {
77
+ "name": "Gaurav Singh",
78
+ "email": "hi@gvsh.cc",
79
+ "url": "https://github.com/gv-sh"
80
+ },
81
+ "license": "Unlicense",
82
+ "repository": {
83
+ "type": "git",
84
+ "url": "https://github.com/mathscapes/iterflow.git"
85
+ },
86
+ "bugs": {
87
+ "url": "https://github.com/mathscapes/iterflow/issues"
88
+ },
89
+ "homepage": "https://github.com/mathscapes/iterflow#readme",
90
+ "engines": {
91
+ "node": ">=18"
92
+ },
93
+ "devDependencies": {
94
+ "@eslint/js": "^9.0.0",
95
+ "@types/lodash": "^4.17.20",
96
+ "@types/node": "^20.0.0",
97
+ "@types/ramda": "^0.31.1",
98
+ "@vitest/coverage-v8": "^2.1.9",
99
+ "eslint": "^9.0.0",
100
+ "fast-check": "^4.3.0",
101
+ "lodash": "^4.17.21",
102
+ "prettier": "^3.0.0",
103
+ "ramda": "^0.32.0",
104
+ "tsd": "^0.33.0",
105
+ "tsup": "^8.0.0",
106
+ "typedoc": "^0.26.0",
107
+ "typescript": "^5.6.0",
108
+ "typescript-eslint": "^8.0.0",
109
+ "vitest": "^2.0.0"
110
+ }
111
+ }