-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.22 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
{
"name": "scootloops",
"version": "2.0.0",
"description": "Advanced JavaScript iteration utilities providing powerful patterns for array operations, async flows, tree traversal, and performance optimization not available in native JavaScript.",
"main": "./src/index.js",
"type": "module",
"types": "./src/index.d.ts",
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PxPerfectMike/scootloops.git"
},
"keywords": [
"loops",
"iteration",
"utilities",
"helpers",
"async-iteration",
"concurrency-control",
"tree-traversal",
"depth-first-search",
"breadth-first-search",
"memoization",
"throttle",
"debounce",
"performance-optimization",
"functional-programming",
"pipe",
"compose",
"filter",
"array-utilities",
"sliding-window",
"chunking",
"zipping",
"retry",
"parallel-processing",
"async-control-flow",
"times",
"early-exit",
"step-iteration"
],
"author": "Michael Baker",
"license": "MIT",
"bugs": {
"url": "https://github.com/PxPerfectMike/scootloops/issues"
},
"homepage": "https://github.com/PxPerfectMike/scootloops#readme",
"devDependencies": {
"jest": "^29.4.1"
}
}