-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.13 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
{
"name": "workflow-guard-lite",
"version": "0.1.0",
"description": "Scan GitHub Actions workflows for risky defaults and easy hardening wins.",
"type": "module",
"bin": {
"workflow-guard-lite": "bin/workflow-guard-lite.js",
"wfguard": "bin/workflow-guard-lite.js"
},
"scripts": {
"test": "node --test",
"check": "node --test && node bin/workflow-guard-lite.js --help && node bin/workflow-guard-lite.js examples --format text && node bin/workflow-guard-lite.js examples --format json > /tmp/workflow-guard-lite.json && node -e \"JSON.parse(require('fs').readFileSync('/tmp/workflow-guard-lite.json','utf8'))\""
},
"keywords": [
"github-actions",
"workflow",
"security",
"cli",
"developer-tools",
"ci",
"devsecops"
],
"author": "Funny HCat",
"license": "MIT",
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/funnyhcat-dotcom/workflow-guard-lite.git"
},
"bugs": {
"url": "https://github.com/funnyhcat-dotcom/workflow-guard-lite/issues"
},
"homepage": "https://github.com/funnyhcat-dotcom/workflow-guard-lite#readme"
}