-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.88 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.88 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
68
{
"name": "@synsoftworks/depgraph-cli",
"version": "0.3.0",
"description": "Graph-first dependency risk analysis for npm packages and dependency trees",
"type": "module",
"keywords": [
"security",
"supply-chain",
"supply-chain-security",
"dependencies",
"dependency-security",
"npm-audit",
"risk-scoring",
"cli",
"terminal-ui"
],
"author": {
"name": "Synthesis Softworks",
"email": "sara@synthesis.software"
},
"license": "MIT",
"homepage": "https://depgraph.sh",
"repository": {
"type": "git",
"url": "https://github.com/synsoftworks/depgraph-cli.git"
},
"bugs": {
"url": "https://github.com/synsoftworks/depgraph-cli/issues"
},
"engines": {
"node": ">=20.0.0"
},
"main": "./dist/cli/index.js",
"bin": {
"depgraph": "./dist/cli/index.js",
"depgraph-cli": "./dist/cli/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"benchmark": "node dist/benchmark/index.js",
"dev": "tsx src/cli/index.ts",
"pack:dry-run": "npm --cache .npm-pack-cache pack --dry-run",
"release:check": "pnpm test && pnpm run build && pnpm run test:e2e && pnpm run pack:dry-run",
"test": "node --import tsx --test test/**/*.test.ts",
"test:e2e": "node --import tsx --test test/**/*.e2e.ts",
"test:smoke": "node --import tsx --test test/json-renderer.test.ts test/review-renderer.test.ts test/evaluation-renderer.test.ts test/integrated-scenarios.test.ts",
"lint": "tsc --noEmit",
"prepublishOnly": "pnpm run release:check"
},
"packageManager": "pnpm@10.33.0",
"dependencies": {
"chalk": "^5.6.2",
"commander": "^14.0.3",
"ink": "^5.0.0",
"react": "^18.3.1",
"semver": "^7.7.2",
"yaml": "^2.8.3"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@types/react": "^18.3.12",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
}
}