forked from bestiejs/benchmark.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.49 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.49 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
{
"name": "@satisfactory-dev/benchmark",
"description": "A benchmarking library that supports high-resolution timers & returns statistically significant results.",
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": "./benchmark.js",
"require": "./benchmark.umd.js",
"types": "./benchmark.d.ts",
"default": "./benchmark.umd.js"
},
"./integrations/bencher": {
"import": "./lib/integrations/Bencher.js",
"types": "./lib/integrations/Bencher.d.ts"
}
},
"keywords": [
"bencher",
"benchmark",
"performance",
"speed"
],
"author": "SignpostMarv",
"contributors": [
"Mathias Bynens <mathias@qiwi.be>",
"John-David Dalton <john.david.dalton@gmail.com>",
"Kit Cambridge <github@kitcambridge.be>"
],
"repository": {
"type": "git",
"url": "git+https://github.com/satisfactory-dev/benchmark.js.git"
},
"funding": "https://github.com/satisfactory-dev/benchmark.js?sponsor=1",
"devDependencies": {
"@satisfactory-dev/docdown": "^0.1.1",
"@types/node": "^25.0.10",
"c8": "^10.1.3",
"playwright": "^1.57.0",
"qunit": "^2.25.0",
"rolldown": "^1.0.0-rc.1",
"typescript": "^5.9.3"
},
"engines": {
"node": "^20.20.0 || >= 22.22.0"
},
"files": [
"benchmark.ts",
"lib",
"version.json",
"benchmark.d.ts",
"benchmark.js.map",
"benchmark.js",
"benchmark.umd.js.map",
"benchmark.umd.js"
],
"optionalDependencies": {
"microtime": "^3.1.1"
}
}