-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.14 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
{
"name": "sbomix",
"version": "1.0.4",
"description": "Fast, accurate SBOM generation from GitHub repos and local lock files",
"homepage": "https://sbomix.com",
"repository": {
"type": "git",
"url": "git+https://github.com/RunTimeAdmin/sbomix.git"
},
"bugs": {
"url": "https://github.com/RunTimeAdmin/sbomix/issues"
},
"main": "src/pipeline.js",
"bin": {
"sbomix": "bin/sbomix.js"
},
"type": "commonjs",
"scripts": {
"test": "node --test tests/*.test.js",
"serve": "node src/api/server.js",
"e2e": "node scripts/e2e.js",
"bench": "node scripts/benchmark.js",
"lint": "eslint src/ bin/",
"test:parsers": "node --test tests/parsers.test.js",
"audit:deps": "npm audit --omit=dev --audit-level=high"
},
"dependencies": {
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"fast-xml-parser": "^5.9.3",
"openai": "^6.44.0",
"smol-toml": "^1.3.1",
"yaml": "^2.4.5"
},
"devDependencies": {
"eslint": "^8.57.0"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"sbom",
"cyclonedx",
"spdx",
"supply-chain",
"security"
],
"license": "MIT"
}