-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.44 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "nano-benchmark",
"version": "1.2.0",
"description": "CLI micro- and macro-benchmarking for Node, Deno, and Bun — hot loops, ms-scale operations, and whole commands — with nonparametric statistics and significance testing.",
"type": "module",
"main": "src/index.js",
"exports": {
".": "./src/index.js",
"./*": "./src/*"
},
"bin": {
"nano-bench": "./bin/nano-bench.js",
"nano-bench-io": "./bin/nano-bench-io.js",
"nano-watch": "./bin/nano-watch.js",
"nano-bench-compare": "./bin/nano-bench-compare.js"
},
"scripts": {
"test": "tape6 --flags FO",
"test:bun": "tape6-bun --flags FO",
"test:deno": "tape6-deno --flags FO",
"test:proc": "tape6-proc --flags FO",
"test:proc:bun": "bun run `tape6-proc --self` --flags FO",
"test:proc:deno": "deno run -A `tape6-proc --self` --flags FO -r -A",
"test:seq": "tape6-seq --flags FO",
"test:seq:bun": "bun run `tape6-seq --self` --flags FO",
"test:seq:deno": "deno run -A `tape6-seq --self` --flags FO",
"lint": "prettier --check .",
"lint:fix": "prettier --write .",
"js-check": "tsc --project tsconfig.check.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uhop/nano-bench.git"
},
"keywords": [
"benchmark",
"micro-benchmark",
"macro-benchmark",
"hyperfine",
"latency",
"percentiles",
"effect-size",
"warmup",
"performance",
"statistics",
"nonparametric",
"significance",
"confidence-interval",
"bootstrap",
"mann-whitney",
"kruskal-wallis",
"cli",
"watch",
"compare",
"cross-runtime",
"nodejs",
"deno",
"bun"
],
"author": "Eugene Lazutkin <eugene.lazutkin@gmail.com> (https://www.lazutkin.com/)",
"license": "BSD-3-Clause",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/uhop"
},
"bugs": {
"url": "https://github.com/uhop/nano-bench/issues"
},
"homepage": "https://github.com/uhop/nano-bench#readme",
"files": [
"src",
"bin",
"skills",
"llms.txt",
"llms-full.txt"
],
"devDependencies": {
"@types/node": "^26.2.0",
"prettier": "^3.9.6",
"tape-six": "^1.16.2",
"tape-six-proc": "^1.3.1",
"typescript": "^7.0.2"
},
"dependencies": {
"commander": "^15.0.0",
"console-toolkit": "^1.4.0",
"emoji-regex": "^10.6.0",
"get-east-asian-width": "^1.6.0"
},
"tape6": {
"tests": [
"tests/test-*.*js"
]
}
}