-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.67 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
{
"name": "perfy",
"version": "2.1.0",
"description": "A tiny, zero-dependency utility for measuring code execution time in high-resolution real time. Works in Node.js, browsers, Deno and Bun.",
"author": "Onur Yıldırım <onur@cutepilot.com>",
"license": "MIT",
"type": "module",
"main": "./lib/index.js",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./package.json": "./package.json"
},
"files": [
"lib",
"LICENSE"
],
"engines": {
"node": ">=22"
},
"scripts": {
"lint": "biome check src test",
"format": "biome check --write src test",
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit -p tsconfig.json",
"pretest": "npm run lint && npm run typecheck",
"test": "vitest run",
"cover": "vitest run --coverage",
"mutation": "stryker run",
"prepublishOnly": "npm run build"
},
"repository": "onury/perfy",
"bugs": {
"url": "https://github.com/onury/perfy/issues"
},
"homepage": "https://github.com/onury/perfy#readme",
"keywords": [
"perfy",
"perf",
"performance",
"measure",
"execution",
"time",
"timer",
"high-resolution",
"hrtime",
"benchmark",
"profile",
"elapsed"
],
"devDependencies": {
"@biomejs/biome": "^2.5.5",
"@stryker-mutator/core": "^9.6.1",
"@stryker-mutator/vitest-runner": "^9.6.1",
"@types/node": "^26.1.1",
"@vitest/coverage-istanbul": "^4.1.10",
"biome-config-oy": "^1.1.0",
"tsconfig-oy": "^2.0.1",
"typescript": "^6.0.3",
"vitest": "^4.1.10"
}
}