-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.47 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.47 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
76
77
78
79
80
81
{
"name": "@stelnyx/secgate",
"version": "0.2.14",
"description": "Tiny security gate for CI/CD — orchestrates Semgrep, Gitleaks, osv-scanner, Trivy, and npm audit with a premium HTML report.",
"type": "module",
"bin": {
"secgate": "secgate.js"
},
"main": "secgate.js",
"engines": {
"node": ">=18"
},
"files": [
"secgate.js",
"lib/",
"README.md",
"CHANGELOG.md",
"LICENSE",
"SECURITY.md",
".secgate.config.example.json"
],
"keywords": [
"security",
"sast",
"secrets",
"sca",
"iac",
"ci",
"cd",
"gate",
"semgrep",
"gitleaks",
"trivy",
"osv-scanner",
"npm-audit",
"devsecops"
],
"author": "Stelnyx",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Stelnyx/secgate.git"
},
"bugs": {
"url": "https://github.com/Stelnyx/SecGate/issues"
},
"homepage": "https://stelnyx.github.io/SecGate/",
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "node test/engine.mjs && node test/score.mjs && node test/walk.mjs && SECGATE_INTERNAL_TEST=1 node test/smoke.mjs && node test/schema.mjs && node test/sarif.mjs && node test/trivy-image.mjs && node test/no-lockfile.mjs && node test/config.mjs && node test/baseline.mjs && node test/suppression.mjs && node test/confidence.mjs && node test/timeout.mjs && node test/determinism.mjs && node test/golden-secgate.mjs",
"test:smoke": "SECGATE_INTERNAL_TEST=1 node test/smoke.mjs",
"test:schema": "node test/schema.mjs",
"test:sarif": "node test/sarif.mjs",
"test:trivy-image": "node test/trivy-image.mjs",
"test:no-lockfile": "node test/no-lockfile.mjs",
"test:config": "node test/config.mjs",
"test:baseline": "node test/baseline.mjs",
"test:suppression": "node test/suppression.mjs",
"test:confidence": "node test/confidence.mjs",
"test:engine": "node test/engine.mjs",
"test:score": "node test/score.mjs",
"test:determinism": "node test/determinism.mjs",
"test:golden": "node test/golden-secgate.mjs",
"test:coverage": "c8 --reporter=text --reporter=lcov npm test",
"lint": "eslint .",
"scan": "node secgate.js .",
"check:deps": "node scripts/check-deps.mjs",
"prepublishOnly": "npm run check:deps && npm test && npm run lint"
},
"dependencies": {
"@stelnyx/report-theme": "^0.1.4"
},
"devDependencies": {
"@eslint/js": "^9.27.0",
"c8": "^10.1.3",
"eslint": "^9.27.0",
"globals": "^16.1.0"
}
}