-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.01 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
{
"name": "dep-inspector-cli",
"version": "2.0.0",
"description": "DevOps-grade dependency, security & infrastructure scanner for Node.js projects",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"dependency",
"inspector",
"analyzer",
"security",
"vulnerability",
"devops",
"security-scanner",
"secrets-scanner",
"docker",
"cli",
"ci-cd",
"github-actions",
"groq",
"ai",
"nodejs"
],
"scripts": {
"build": "tsc",
"dev": "ts-node src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Nevin Bali",
"license": "MIT",
"type": "module",
"dependencies": {
"chalk": "^5.6.2",
"commander": "^14.0.3",
"dotenv": "^17.4.2",
"groq-sdk": "^1.2.0",
"ora": "^9.3.0",
"semver": "^7.7.4",
"treeify": "^1.1.0"
},
"devDependencies": {
"@types/node": "^25.6.0",
"@types/semver": "^7.7.1",
"ts-node": "^10.9.2",
"typescript": "^6.0.2"
},
"bin": {
"dep-inspector": "dist/index.js"
}
}