-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 993 Bytes
/
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
{
"name": "perftrace",
"version": "1.3.0",
"description": "Record PerformanceEntry objects from Node.js and the Web in the Trace Event Format, so that it can be visualized on https://ui.perfetto.dev.",
"repository": {
"type": "git",
"url": "[email protected]:RaisinTen/perftrace.git"
},
"homepage": "https://github.com/RaisinTen/perftrace?tab=readme-ov-file#perftrace",
"exports": {
"import": "./index.mjs",
"require": "./index.cjs"
},
"scripts": {
"test": "npm run test:node && npm run test:browser",
"test:node": "node --test \"test/node-test.cjs\"",
"test:browser": "wtr --playwright --browsers chromium firefox webkit --node-resolve test/browser-test.mjs"
},
"keywords": [
"performance",
"tracing",
"trace event",
"perfetto"
],
"author": "Darshan Sen",
"license": "MIT",
"devDependencies": {
"@esm-bundle/chai": "^4.3.4-fix.0",
"@web/test-runner": "^0.18.1",
"@web/test-runner-playwright": "^0.11.0"
}
}