nano-binary-search 1.0.9 → 1.0.10

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.
Files changed (2) hide show
  1. package/README.md +1 -0
  2. package/package.json +8 -5
package/README.md CHANGED
@@ -144,6 +144,7 @@ This project is licensed under the BSD-3-Clause license.
144
144
 
145
145
  ## Release history
146
146
 
147
+ - 1.0.10 _Updated dev deps_
147
148
  - 1.0.9 _Updated dev deps_
148
149
  - 1.0.8 _Updated dev deps_
149
150
  - 1.0.7 _Updated dev deps_
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.9",
4
+ "version": "1.0.10",
5
5
  "type": "module",
6
6
  "main": "index.js",
7
7
  "types": "index.d.ts",
@@ -17,8 +17,11 @@
17
17
  "test:bun": "tape6-bun --flags FO",
18
18
  "test:deno": "tape6-deno --flags FO",
19
19
  "test:proc": "tape6-proc --flags FO",
20
- "test:proc:bun": "bun run `npx tape6-proc --self` --flags FO",
21
- "test:proc:deno": "deno run -A `npx tape6-proc --self` --flags FO -r --allow-env",
20
+ "test:proc:bun": "bun run `tape6-proc --self` --flags FO",
21
+ "test:proc:deno": "deno run -A `tape6-proc --self` --flags FO -r --allow-env",
22
+ "test:seq": "tape6-seq --flags FO",
23
+ "test:seq:bun": "bun run `tape6-seq --self` --flags FO",
24
+ "test:seq:deno": "deno run -A `tape6-seq --self` --flags FO",
22
25
  "ts-check": "tsc --noEmit",
23
26
  "lint": "prettier --check .",
24
27
  "lint:fix": "prettier --write ."
@@ -58,8 +61,8 @@
58
61
  }
59
62
  },
60
63
  "devDependencies": {
61
- "tape-six": "^1.4.5",
62
- "tape-six-proc": "^1.1.6",
64
+ "tape-six": "^1.7.0",
65
+ "tape-six-proc": "^1.2.2",
63
66
  "typescript": "^5.9.3"
64
67
  }
65
68
  }