-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.46 KB
/
package.json
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
{
"name": "nano-benchmark",
"version": "1.0.4",
"description": "Small utilities to benchmark code with Node.",
"type": "module",
"main": "src/index.js",
"exports": {
".": "./src/index.js",
"./*": "./src/*"
},
"bin": {
"nano-bench": "./bin/nano-bench.js",
"nano-watch": "./bin/nano-watch.js"
},
"scripts": {
"test": "tape6 --flags FO",
"test:bun": "tape6-bun --flags FO",
"test:deno-original": "tape6-deno --flags FO",
"test:deno": "deno run -A `tape6-runner main` --flags FO",
"test:proc": "tape6-proc --flags FO",
"test:proc:bun": "bun run `npx tape6-proc --self` --flags FO",
"test:proc:deno": "deno run -A `npx tape6-proc --self` --flags FO --runFileArgs -A"
},
"repository": {
"type": "git",
"url": "git https://github.com/uhop/nano-bench.git"
},
"keywords": [
"benchmark",
"performance",
"statistics"
],
"author": "Eugene Lazutkin <[email protected]> (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"
],
"devDependencies": {
"tape-six": "^1.0.2",
"tape-six-proc": "^1.0.0"
},
"dependencies": {
"commander": "^12.1.0",
"console-toolkit": "^1.2.3"
},
"tape6": {
"tests": [
"tests/test-*.*js"
]
}
}