nano-binary-search 1.0.4 → 1.0.6
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/README.md +2 -0
- package/package.json +8 -4
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nano-binary-search",
|
|
3
3
|
"description": "Binary search for JavaScript done right.",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.6",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"types": "index.d.ts",
|
|
@@ -15,8 +15,11 @@
|
|
|
15
15
|
"start": "tape6-server --trace",
|
|
16
16
|
"test": "tape6 --flags FO",
|
|
17
17
|
"test:bun": "tape6-bun --flags FO",
|
|
18
|
-
"test:deno": "deno run -A `tape6-runner
|
|
18
|
+
"test:deno": "deno run -A `npx tape6-runner main` --flags FO",
|
|
19
19
|
"test:deno-original": "tape6-deno --flags FO",
|
|
20
|
+
"test:proc": "tape6-proc --flags FO",
|
|
21
|
+
"test:proc:bun": "bun run `npx tape6-proc --self` --flags FO",
|
|
22
|
+
"test:proc:deno": "deno run -A `npx tape6-proc --self` --flags FO --runFileArgs -A",
|
|
20
23
|
"ts-check": "tsc --noEmit"
|
|
21
24
|
},
|
|
22
25
|
"repository": {
|
|
@@ -54,7 +57,8 @@
|
|
|
54
57
|
}
|
|
55
58
|
},
|
|
56
59
|
"devDependencies": {
|
|
57
|
-
"tape-six": "^0.
|
|
58
|
-
"
|
|
60
|
+
"tape-six": "^1.0.2",
|
|
61
|
+
"tape-six-proc": "^0.12.1",
|
|
62
|
+
"typescript": "^5.6.3"
|
|
59
63
|
}
|
|
60
64
|
}
|