-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.63 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.63 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
69
70
71
72
73
74
75
{
"name": "vulnify",
"version": "1.0.2",
"description": "CLI tool for vulnerability analysis using Vulnify SCA API - similar to Snyk CLI",
"main": "dist/index.js",
"bin": {
"vulnify": "dist/cli.js"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "ts-node src/cli.ts",
"start": "node dist/cli.js",
"watch": "nodemon --exec ts-node src/cli.ts",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "echo \"Linting not configured\" && exit 0"
},
"keywords": [
"security",
"vulnerability",
"sca",
"cli",
"dependencies",
"npm",
"pypi",
"maven",
"nuget",
"composer",
"cargo",
"go",
"rubygems",
"audit",
"scan",
"vulnify"
],
"author": {
"name": "Vulnify Team",
"email": "team@vulnify.io",
"url": "https://vulnify.io"
},
"license": "MIT",
"homepage": "https://github.com/vulnify/vulnify-cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/vulnify/vulnify-cli.git"
},
"bugs": {
"url": "https://github.com/vulnify/vulnify-cli/issues"
},
"engines": {
"node": ">=14.0.0"
},
"preferGlobal": true,
"dependencies": {
"axios": "^1.11.0",
"chalk": "^4.1.2",
"cli-table3": "^0.6.5",
"commander": "^14.0.0",
"fs-extra": "^11.3.1",
"ora": "^5.4.1"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^24.3.0",
"nodemon": "^3.1.10",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
}
}