-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 851 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 851 Bytes
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
{
"name": "flamebearer",
"version": "2.1.0",
"description": "A JavaScript CPU trace analysis tool for agents and humans",
"main": "index.js",
"type": "module",
"bin": {
"flamebearer": "./bin/flamebearer",
"flamebearer-node": "./bin/flamebearer-node"
},
"files": [
"bin",
"index.js"
],
"repository": {
"type": "git",
"url": "https://github.com/mapbox/flamebearer.git"
},
"devDependencies": {
"eslint": "^10.5.0",
"eslint-config-mourner": "^5.0.1"
},
"scripts": {
"pretest": "eslint",
"test": "node --test test/*.test.js"
},
"keywords": [
"performance",
"profiling",
"v8",
"node",
"traces",
"cpuprofile",
"agent",
"llm"
],
"author": "Volodymyr Agafonkin",
"license": "ISC",
"dependencies": {
"@jridgewell/trace-mapping": "^0.3.31"
}
}