@merupatel/reachable 1.0.3 → 1.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/README.md +15 -1
- package/dist/cli/index.d.cts +6 -0
- package/dist/cli/index.js +210949 -0
- package/dist/package.json +3 -0
- package/package.json +17 -4
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@merupatel/reachable",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.0.5",
|
|
4
|
+
"description": "Local-first vulnerability reachability CLI for JavaScript and TypeScript",
|
|
5
5
|
"bin": {
|
|
6
6
|
"reachable": "dist/cli/index.js"
|
|
7
7
|
},
|
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
"scripts": {
|
|
18
18
|
"build": "tsup && node scripts/postbuild.cjs",
|
|
19
19
|
"lint": "eslint . --ext .ts",
|
|
20
|
+
"prepack": "npm run build",
|
|
20
21
|
"test": "vitest run --coverage",
|
|
21
22
|
"test-integration": "vitest run --config vitest.integration.config.ts",
|
|
22
23
|
"typecheck": "tsc --noEmit",
|
|
@@ -28,10 +29,22 @@
|
|
|
28
29
|
"keywords": [
|
|
29
30
|
"cli",
|
|
30
31
|
"security",
|
|
31
|
-
"dependency",
|
|
32
|
+
"dependency-analysis",
|
|
32
33
|
"reachability",
|
|
33
34
|
"osv",
|
|
34
|
-
"audit"
|
|
35
|
+
"audit",
|
|
36
|
+
"nodejs",
|
|
37
|
+
"javascript",
|
|
38
|
+
"typescript",
|
|
39
|
+
"npm",
|
|
40
|
+
"vulnerability-scanner",
|
|
41
|
+
"static-analysis",
|
|
42
|
+
"devsecops",
|
|
43
|
+
"sast",
|
|
44
|
+
"sarif",
|
|
45
|
+
"github-actions",
|
|
46
|
+
"supply-chain-security",
|
|
47
|
+
"tree-sitter"
|
|
35
48
|
],
|
|
36
49
|
"author": "merupatel",
|
|
37
50
|
"license": "MIT",
|