-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsbom.cdx.json
More file actions
84 lines (84 loc) · 1.79 KB
/
sbom.cdx.json
File metadata and controls
84 lines (84 loc) · 1.79 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
82
83
84
{
"bomFormat": "CycloneDX",
"specVersion": "1.6",
"version": 1,
"metadata": {
"component": {
"type": "library",
"name": "keel",
"version": "1.0.0",
"purl": "pkg:github/artalis-io/keel@1.0.0",
"licenses": [
{
"license": {
"id": "MIT"
}
}
],
"description": "Minimal C11 HTTP client/server library built on raw epoll/kqueue/io_uring/poll"
}
},
"components": [
{
"type": "library",
"name": "llhttp",
"version": "9.3.1",
"purl": "pkg:github/nodejs/llhttp@9.3.1",
"scope": "required",
"licenses": [
{
"license": {
"id": "MIT"
}
}
],
"evidence": {
"identity": {
"field": "version",
"methods": [
{
"technique": "source-code-analysis",
"value": "LLHTTP_VERSION_MAJOR=9, LLHTTP_VERSION_MINOR=3, LLHTTP_VERSION_PATCH=1 in vendor/llhttp/llhttp.h"
}
]
}
}
},
{
"type": "library",
"name": "utest.h",
"version": "unversioned",
"purl": "pkg:github/sheredom/utest.h",
"scope": "excluded",
"licenses": [
{
"license": {
"id": "Unlicense"
}
}
],
"hashes": [
{
"alg": "SHA-256",
"content": "f20f27a4fa3f8a32e5044f5609ffcd2407db72bbb55afcb676f873c756988bf4"
}
]
}
],
"dependencies": [
{
"ref": "pkg:github/artalis-io/keel@1.0.0",
"dependsOn": [
"pkg:github/nodejs/llhttp@9.3.1"
]
},
{
"ref": "pkg:github/nodejs/llhttp@9.3.1",
"dependsOn": []
},
{
"ref": "pkg:github/sheredom/utest.h",
"dependsOn": []
}
]
}