-
-
Notifications
You must be signed in to change notification settings - Fork 156
/
package.json
141 lines (141 loc) · 3.85 KB
/
package.json
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "@cyclonedx/cdxgen",
"version": "11.0.0",
"description": "Creates CycloneDX Software Bill of Materials (SBOM) from source or container image",
"homepage": "http://github.com/cyclonedx/cdxgen",
"author": "Prabhu Subramanian <[email protected]>",
"license": "Apache-2.0",
"keywords": [
"sbom",
"bom",
"inventory",
"spdx",
"package-url",
"purl",
"owasp",
"component",
"dependency",
"appsec",
"scrm"
],
"contributors": [
{
"name": "Erlend Oftedal"
},
{
"name": "Steve Springett",
"email": "[email protected]",
"url": "https://about.me/stevespringett"
},
{
"name": "Prabhu Subramanian",
"url": "https://github.com/prabhu"
},
{
"name": "Adam Setch",
"url": "https://github.com/setchy"
}
],
"type": "module",
"exports": "./lib/cli/index.js",
"types": "./types/index.d.ts",
"bin": {
"cdxgen": "bin/cdxgen.js",
"obom": "bin/cdxgen.js",
"cbom": "bin/cdxgen.js",
"cdxi": "bin/repl.js",
"evinse": "bin/evinse.js",
"cdx-verify": "bin/verify.js"
},
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --inject-globals false lib/managers/docker.test.js lib/helpers/utils.test.js lib/helpers/display.test.js lib/stages/postgen/postgen.test.js lib/evinser/swiftsem.test.js",
"watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch --inject-globals false",
"lint:check": "biome check",
"lint": "biome check --fix",
"lint:errors": "biome check --diagnostic-level=error",
"gen-types": "npx -p typescript tsc"
},
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CycloneDX/cdxgen.git"
},
"bugs": {
"url": "https://github.com/cyclonedx/cdxgen/issues"
},
"packageManager": "[email protected]",
"lint-staged": {
"*": "biome check --fix --no-errors-on-unmatched"
},
"dependencies": {
"@babel/parser": "^7.26.2",
"@babel/traverse": "^7.25.7",
"@npmcli/arborist": "8.0.0",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"cheerio": "^1.0.0",
"edn-data": "1.1.2",
"find-up": "7.0.0",
"glob": "^11.0.0",
"global-agent": "^3.0.0",
"got": "^14.4.4",
"iconv-lite": "^0.6.3",
"js-yaml": "^4.1.0",
"jws": "^4.0.0",
"node-stream-zip": "^1.15.0",
"packageurl-js": "1.0.2",
"prettify-xml": "^1.2.0",
"properties-reader": "^2.3.0",
"semver": "^7.6.3",
"ssri": "^12.0.0",
"table": "^6.8.2",
"tar": "^7.4.3",
"toml": "^3.0.0",
"uuid": "^11.0.2",
"validate-iri": "^1.0.1",
"xml-js": "^1.6.11",
"yargs": "^17.7.2"
},
"optionalDependencies": {
"@appthreat/atom": "2.0.21",
"@appthreat/cdx-proto": "1.0.1",
"@cyclonedx/cdxgen-plugins-bin": "1.6.7",
"@cyclonedx/cdxgen-plugins-bin-arm": "1.6.7",
"@cyclonedx/cdxgen-plugins-bin-arm64": "1.6.7",
"@cyclonedx/cdxgen-plugins-bin-darwin-amd64": "1.6.7",
"@cyclonedx/cdxgen-plugins-bin-darwin-arm64": "1.6.7",
"@cyclonedx/cdxgen-plugins-bin-ppc64": "1.6.7",
"@cyclonedx/cdxgen-plugins-bin-windows-amd64": "1.6.7",
"@cyclonedx/cdxgen-plugins-bin-windows-arm64": "1.6.7",
"body-parser": "^2.0.1",
"compression": "^1.7.5",
"connect": "^3.7.0",
"jsonata": "^2.0.5",
"sequelize": "^6.37.4",
"sqlite3": "^5.1.7"
},
"files": ["*.js", "lib/**", "bin/", "data/", "types/"],
"devDependencies": {
"@biomejs/biome": "1.9.4",
"jest": "^29.7.0",
"typescript": "^5.6.2"
},
"pnpm": {
"overrides": {
"glob": "^11.0.0",
"node-gyp": "^10.2.0",
"prebuild": "^13.0.0",
"pacote": "^20.0.0",
"negotiator": "^0.6.4"
}
},
"overrides": {
"glob": "^11.0.0",
"node-gyp": "^10.2.0",
"prebuild": "^13.0.0",
"pacote": "^20.0.0",
"negotiator": "^0.6.4"
}
}