nano-benchmark 1.0.3 → 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.
Files changed (2) hide show
  1. package/README.md +3 -0
  2. package/package.json +11 -8
package/README.md CHANGED
@@ -112,6 +112,9 @@ BSD 3-Clause License
112
112
 
113
113
  ## Release history
114
114
 
115
+ * 1.0.6: *Updated dependencies.*
116
+ * 1.0.5: *Updated dependencies.*
117
+ * 1.0.4: *Updated dependencies + added more tests.*
115
118
  * 1.0.3: *Updated dependencies.*
116
119
  * 1.0.2: *Added the `--self` option.*
117
120
  * 1.0.1: *Added "self" argument to utilities so it can be used with Deno, Bun, etc.*
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nano-benchmark",
3
- "version": "1.0.3",
3
+ "version": "1.0.6",
4
4
  "description": "Small utilities to benchmark code with Node.",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -15,8 +15,10 @@
15
15
  "scripts": {
16
16
  "test": "tape6 --flags FO",
17
17
  "test:bun": "tape6-bun --flags FO",
18
- "test:deno-original": "tape6-deno --flags FO",
19
- "test:deno": "deno run -A `tape6-runner main` --flags FO"
18
+ "test:deno": "tape6-deno --flags FO",
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 -A"
20
22
  },
21
23
  "repository": {
22
24
  "type": "git",
@@ -41,15 +43,16 @@
41
43
  "src"
42
44
  ],
43
45
  "devDependencies": {
44
- "tape-six": "^0.12.2"
46
+ "tape-six": "^1.4.4",
47
+ "tape-six-proc": "^1.1.5"
48
+ },
49
+ "dependencies": {
50
+ "commander": "^14.0.2",
51
+ "console-toolkit": "^1.2.6"
45
52
  },
46
53
  "tape6": {
47
54
  "tests": [
48
55
  "tests/test-*.*js"
49
56
  ]
50
- },
51
- "dependencies": {
52
- "commander": "^12.1.0",
53
- "console-toolkit": "^1.2.1"
54
57
  }
55
58
  }