@npmcli/config 6.3.0 → 6.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1225,6 +1225,33 @@ define('local-address', {
|
|
|
1225
1225
|
flatten,
|
|
1226
1226
|
})
|
|
1227
1227
|
|
|
1228
|
+
define('sbom-format', {
|
|
1229
|
+
default: null,
|
|
1230
|
+
type: [
|
|
1231
|
+
'cyclonedx',
|
|
1232
|
+
'spdx',
|
|
1233
|
+
],
|
|
1234
|
+
description: `
|
|
1235
|
+
SBOM format to use when generating SBOMs.
|
|
1236
|
+
`,
|
|
1237
|
+
flatten,
|
|
1238
|
+
})
|
|
1239
|
+
|
|
1240
|
+
define('sbom-type', {
|
|
1241
|
+
default: 'library',
|
|
1242
|
+
type: [
|
|
1243
|
+
'library',
|
|
1244
|
+
'application',
|
|
1245
|
+
'framework',
|
|
1246
|
+
],
|
|
1247
|
+
description: `
|
|
1248
|
+
The type of package described by the generated SBOM. For SPDX, this is the
|
|
1249
|
+
value for the \`primaryPackagePurpose\` field. For CycloneDX, this is the
|
|
1250
|
+
value for the \`type\` field.
|
|
1251
|
+
`,
|
|
1252
|
+
flatten,
|
|
1253
|
+
})
|
|
1254
|
+
|
|
1228
1255
|
define('location', {
|
|
1229
1256
|
default: 'user',
|
|
1230
1257
|
short: 'L',
|