-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.09 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.09 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
{
"name": "submit-sbom-action",
"version": "1.0.0",
"description": "A GitHub Action that submits Software Bill of Materials (SBOM) files to the bifrost API to analyze your services for known vulnerabilities and security risks.",
"author": "bifrost security",
"private": true,
"main": "dist/index.js",
"keywords": ["actions", "sbom", "security", "bifrost"],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "npx @vercel/ncc build src/index.ts && npx convert-action",
"format:write": "npx prettier --write .",
"format:check": "npx prettier --check ."
},
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/http-client": "^2.2.3",
"convert-action": "^0.4.0"
},
"devDependencies": {
"@types/node": "^22.5.5",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0",
"eslint-plugin-jsonc": "^2.16.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"prettier-eslint": "^16.3.0",
"typescript": "^5.6.2"
}
}