forked from microsoft/rushstack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.06 KB
/
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
33
34
35
36
37
{
"name": "@rushstack/trace-import",
"version": "0.2.22",
"description": "CLI tool for understanding how require() and \"import\" statements get resolved",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/rushstack.git",
"directory": "apps/trace-import"
},
"bin": {
"trace-import": "./bin/trace-import"
},
"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/node-core-library": "workspace:*",
"@rushstack/ts-command-line": "workspace:*",
"colors": "~1.2.1",
"resolve": "~1.22.1",
"semver": "~7.3.0",
"typescript": "~5.0.4"
},
"devDependencies": {
"@rushstack/eslint-config": "workspace:*",
"@rushstack/heft": "workspace:*",
"@rushstack/heft-node-rig": "workspace:*",
"@types/heft-jest": "1.0.1",
"@types/node": "14.18.36",
"@types/resolve": "1.20.2",
"@types/semver": "7.3.5"
}
}