nano-benchmark 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 +7 -8
package/README.md
CHANGED
|
@@ -112,6 +112,8 @@ BSD 3-Clause License
|
|
|
112
112
|
|
|
113
113
|
## Release history
|
|
114
114
|
|
|
115
|
+
* 1.0.6: *Updated dependencies.*
|
|
116
|
+
* 1.0.5: *Updated dependencies.*
|
|
115
117
|
* 1.0.4: *Updated dependencies + added more tests.*
|
|
116
118
|
* 1.0.3: *Updated dependencies.*
|
|
117
119
|
* 1.0.2: *Added the `--self` option.*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nano-benchmark",
|
|
3
|
-
"version": "1.0.
|
|
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,11 +15,10 @@
|
|
|
15
15
|
"scripts": {
|
|
16
16
|
"test": "tape6 --flags FO",
|
|
17
17
|
"test:bun": "tape6-bun --flags FO",
|
|
18
|
-
"test:deno
|
|
19
|
-
"test:deno": "deno run -A `tape6-runner main` --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 -A"
|
|
23
22
|
},
|
|
24
23
|
"repository": {
|
|
25
24
|
"type": "git",
|
|
@@ -44,12 +43,12 @@
|
|
|
44
43
|
"src"
|
|
45
44
|
],
|
|
46
45
|
"devDependencies": {
|
|
47
|
-
"tape-six": "^1.
|
|
48
|
-
"tape-six-proc": "^1.
|
|
46
|
+
"tape-six": "^1.4.4",
|
|
47
|
+
"tape-six-proc": "^1.1.5"
|
|
49
48
|
},
|
|
50
49
|
"dependencies": {
|
|
51
|
-
"commander": "^
|
|
52
|
-
"console-toolkit": "^1.2.
|
|
50
|
+
"commander": "^14.0.2",
|
|
51
|
+
"console-toolkit": "^1.2.6"
|
|
53
52
|
},
|
|
54
53
|
"tape6": {
|
|
55
54
|
"tests": [
|