forked from microsoft/rushstack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 840 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 840 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
{
"name": "@rushstack/cpu-profile-summarizer",
"version": "0.1.33",
"description": "CLI tool for running analytics on multiple V8 .cpuprofile files",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/rushstack.git",
"directory": "apps/cpu-profile-summarizer"
},
"bin": {
"cpu-profile-summarizer": "./bin/cpu-profile-summarizer"
},
"license": "MIT",
"scripts": {
"start": "node lib/start",
"build": "heft build --clean",
"_phase:build": "heft run --only build -- --clean",
"_phase:test": "heft run --only test -- --clean"
},
"dependencies": {
"@rushstack/ts-command-line": "workspace:*",
"@rushstack/worker-pool": "workspace:*"
},
"devDependencies": {
"@rushstack/heft": "workspace:*",
"eslint": "~9.37.0",
"local-node-rig": "workspace:*"
}
}