@conterra/vuln-scan 0.0.29 → 0.0.31
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/README.md +4 -4
- package/dist/add-project.js +15 -15
- package/dist/add-statement.js +14 -14
- package/dist/remove-project.js +15 -15
- package/dist/vuln-scan.js +29 -14
- package/package.json +55 -51
package/package.json
CHANGED
|
@@ -1,52 +1,56 @@
|
|
|
1
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
|
-
|
|
2
|
+
"name": "@conterra/vuln-scan",
|
|
3
|
+
"version": "0.0.31",
|
|
4
|
+
"description": "con terra vulnerability scan process",
|
|
5
|
+
"author": "con terra GmbH",
|
|
6
|
+
"license": "Apache-2.0",
|
|
7
|
+
"type": "commonjs",
|
|
8
|
+
"files": [
|
|
9
|
+
"./dist/**",
|
|
10
|
+
"LICENSE.txt",
|
|
11
|
+
"README.md"
|
|
12
|
+
],
|
|
13
|
+
"bin": {
|
|
14
|
+
"ct-vuln-scan": "dist/vuln-scan.js",
|
|
15
|
+
"ct-vuln-add-vex": "dist/add-statement.js",
|
|
16
|
+
"ct-vuln-add-project": "dist/add-project.js",
|
|
17
|
+
"ct-vuln-remove-project": "dist/remove-project.js"
|
|
18
|
+
},
|
|
19
|
+
"engines": {
|
|
20
|
+
"node": ">= 20",
|
|
21
|
+
"pnpm": ">= 10.0.0"
|
|
22
|
+
},
|
|
23
|
+
"dependencies": {
|
|
24
|
+
"zx": "8.8.5"
|
|
25
|
+
},
|
|
26
|
+
"devDependencies": {
|
|
27
|
+
"@types/node": "^22",
|
|
28
|
+
"@types/escape-html": "1.0.4",
|
|
29
|
+
"@types/sarif": "^2.1.7",
|
|
30
|
+
"copyfiles": "2.4.1",
|
|
31
|
+
"esbuild": "0.27.0",
|
|
32
|
+
"escape-html": "1.0.3",
|
|
33
|
+
"eslint-plugin-headers": "1.3.3",
|
|
34
|
+
"eslint": "^9.39.1",
|
|
35
|
+
"globals": "16.5.0",
|
|
36
|
+
"json-schema-to-typescript": "15.0.4",
|
|
37
|
+
"node-sarif-builder": "3.2.0",
|
|
38
|
+
"rimraf": "6.1.0",
|
|
39
|
+
"typescript": "5.9.3",
|
|
40
|
+
"typescript-eslint": "8.46.4",
|
|
41
|
+
"vitest": "3.2.4",
|
|
42
|
+
"@inquirer/prompts": "7.10.1"
|
|
43
|
+
},
|
|
44
|
+
"scripts": {
|
|
45
|
+
"full-build": "pnpm run clean && pnpm run type-check && pnpm run lint && pnpm run prod",
|
|
46
|
+
"build": "pnpm run test run && node esbuild.config.mjs build",
|
|
47
|
+
"prod": "pnpm run test run && node esbuild.config.mjs prod",
|
|
48
|
+
"watch": "node esbuild.config.mjs watch",
|
|
49
|
+
"type-check": "tsc --noEmit",
|
|
50
|
+
"type-watch": "tsc -w --noEmit",
|
|
51
|
+
"update-openvex-types": "json2ts --input ./src/types/openvex-schema.json --output ./src/types/openvex_json.ts --no-style.semi --style.tabWidth 4",
|
|
52
|
+
"lint": "eslint",
|
|
53
|
+
"clean": "rimraf dist",
|
|
54
|
+
"test": "vitest"
|
|
55
|
+
}
|
|
56
|
+
}
|