-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.1 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
{
"name": "devshield-action",
"version": "1.0.0",
"description": "Developer-first application security scanner for GitHub Actions.",
"license": "MIT",
"main": "sdk/agent.js",
"engines": {
"node": ">=20.0.0"
},
"bin": {
"devshield": "./devshield/bin/devshield.js"
},
"scripts": {
"devshield": "node devshield/bin/devshield.js",
"scan": "node devshield/bin/devshield.js scan .",
"deploy-check": "node devshield/bin/devshield.js deploy-check ."
},
"keywords": [
"security",
"github-actions",
"devsecops",
"sast",
"sarif",
"scanner",
"owasp",
"application-security",
"code-scanning",
"devshield"
],
"repository": {
"type": "git",
"url": "https://github.com/devshieldhq/devshield-action.git"
},
"homepage": "https://devshield.site",
"bugs": {
"url": "https://github.com/devshieldhq/devshield-action/issues"
},
"author": "DevShield",
"dependencies": {
"@supabase/supabase-js": "^2.39.0",
"adm-zip": "^0.6.0",
"nodemailer": "^6.9.14",
"resend": "^4.0.0",
}
}