-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.56 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.56 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "list-toolkit",
"version": "2.4.1",
"description": "Zero-dependency data structures: linked lists (doubly/singly linked, circular), deques, ring buffers, unrolled lists, caches (LRU, LFU, SLRU, Clock, FIFO), heaps (binary, indexed, pairing), timer wheels, object pools, queues, stacks, splay trees, skip lists.",
"type": "module",
"exports": {
"./*": "./src/*"
},
"scripts": {
"lint": "prettier --check .",
"lint:fix": "prettier --write .",
"ts-check": "tsc --noEmit",
"ts-test": "tape6 --flags FO '/tests/test-*.*ts'",
"ts-test:bun": "tape6-bun --flags FO '/tests/test-*.*ts'",
"ts-test:deno": "tape6-deno --flags FO '/tests/test-*.*ts'",
"start": "tape6-server --trace",
"test": "tape6 --flags FO",
"test:bun": "tape6-bun --flags FO",
"test:deno": "tape6-deno --flags FO",
"test:proc": "tape6-proc --flags FO",
"test:proc:bun": "bun run `tape6-proc --self` --flags FO",
"test:proc:deno": "deno run -A `tape6-proc --self` --flags FO -r -A",
"test:seq": "tape6-seq --flags FO",
"test:seq:bun": "bun run `tape6-seq --self` --flags FO",
"test:seq:deno": "deno run -A `tape6-seq --self` --flags FO"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uhop/list-toolkit.git"
},
"keywords": [
"list",
"lists",
"linked-list",
"doubly-linked-list",
"singly-linked-list",
"circular-list",
"cache",
"lru-cache",
"lfu-cache",
"fifo-cache",
"heap",
"min-heap",
"priority-queue",
"queue",
"stack",
"splay-tree",
"skip-list",
"deque",
"ring-buffer",
"unrolled-list",
"timer-wheel",
"object-pool",
"data-structures",
"esm",
"zero-dependency"
],
"author": "Eugene Lazutkin <eugene.lazutkin@gmail.com> (http://www.lazutkin.com/)",
"funding": "https://github.com/sponsors/uhop",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/uhop/list-toolkit/issues"
},
"github": "http://github.com/uhop/list-toolkit",
"homepage": "https://github.com/uhop/list-toolkit#readme",
"devDependencies": {
"nano-benchmark": "^1.2.0",
"prettier": "^3.9.5",
"tape-six": "^1.15.0",
"tape-six-proc": "^1.3.1",
"typescript": "^7.0.2"
},
"files": [
"/src",
"llms.txt",
"llms-full.txt"
],
"tape6": {
"tests": [
"/tests/test-*.js",
"/tests/test-*.mjs"
],
"cli": [
"/tests/test-*.cjs"
],
"importmap": {
"imports": {
"tape-six": "/node_modules/tape-six/index.js",
"list-toolkit/": "/src/"
}
}
}
}