-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.19 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.19 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
{
"name": "cve-lite-cli",
"version": "1.11.0",
"description": "Developer-friendly CLI for scanning JS/TS projects for dependency vulnerabilities using local lockfiles and OSV",
"type": "module",
"bin": {
"cve-lite": "./dist/index.js"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsx src/index.ts .",
"start": "node dist/index.js .",
"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --passWithNoTests",
"test:watch": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --watch --passWithNoTests"
},
"dependencies": {
"better-sqlite3": "^12.8.0",
"fflate": "^0.8.2",
"yaml": "^2.7.1",
"yarn-lockfile": "^1.1.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.0",
"jest": "^30.3.0",
"ts-jest": "^29.4.9",
"tsx": "^4.19.2",
"typescript": "^5.8.2"
},
"keywords": [
"security",
"cve",
"vulnerability",
"cli",
"osv",
"owasp",
"npm",
"pnpm",
"yarn",
"bun"
],
"license": "MIT",
"engines": {
"node": ">=18"
},
"files": [
"dist",
"README.md",
"LICENSE"
]
}