nano-binary-search 1.0.6 → 1.0.7
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 +4 -3
- package/package.json +6 -7
package/README.md
CHANGED
|
@@ -144,9 +144,10 @@ This project is licensed under the BSD-3-Clause license.
|
|
|
144
144
|
|
|
145
145
|
## Release history
|
|
146
146
|
|
|
147
|
-
* 1.0.
|
|
148
|
-
* 1.0.
|
|
149
|
-
* 1.0.
|
|
147
|
+
* 1.0.7 *Updated dev deps*
|
|
148
|
+
* 1.0.6 *Updated dev deps*
|
|
149
|
+
* 1.0.5 *Updated dev deps*
|
|
150
|
+
* 1.0.4 *Updated dev deps*
|
|
150
151
|
* 1.0.3 *Added a reference to the TS types*
|
|
151
152
|
* 1.0.2 *Improved docs*
|
|
152
153
|
* 1.0.1 *Added TS typings*
|
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.7",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"types": "index.d.ts",
|
|
@@ -15,11 +15,10 @@
|
|
|
15
15
|
"start": "tape6-server --trace",
|
|
16
16
|
"test": "tape6 --flags FO",
|
|
17
17
|
"test:bun": "tape6-bun --flags FO",
|
|
18
|
-
"test:deno": "
|
|
19
|
-
"test:deno-original": "tape6-deno --flags FO",
|
|
18
|
+
"test:deno": "tape6-deno --flags FO",
|
|
20
19
|
"test:proc": "tape6-proc --flags FO",
|
|
21
20
|
"test:proc:bun": "bun run `npx tape6-proc --self` --flags FO",
|
|
22
|
-
"test:proc:deno": "deno run -A `npx tape6-proc --self` --flags FO --
|
|
21
|
+
"test:proc:deno": "deno run -A `npx tape6-proc --self` --flags FO -r --allow-env",
|
|
23
22
|
"ts-check": "tsc --noEmit"
|
|
24
23
|
},
|
|
25
24
|
"repository": {
|
|
@@ -57,8 +56,8 @@
|
|
|
57
56
|
}
|
|
58
57
|
},
|
|
59
58
|
"devDependencies": {
|
|
60
|
-
"tape-six": "^1.
|
|
61
|
-
"tape-six-proc": "^
|
|
62
|
-
"typescript": "^5.
|
|
59
|
+
"tape-six": "^1.4.1",
|
|
60
|
+
"tape-six-proc": "^1.1.1",
|
|
61
|
+
"typescript": "^5.9.3"
|
|
63
62
|
}
|
|
64
63
|
}
|