@npmcli/config 7.2.0 → 8.0.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.
@@ -963,6 +963,7 @@ define('include-workspace-root', {
963
963
 
964
964
  define('init-author-email', {
965
965
  default: '',
966
+ hint: '<email>',
966
967
  type: String,
967
968
  description: `
968
969
  The value \`npm init\` should use by default for the package author's
@@ -972,6 +973,7 @@ define('init-author-email', {
972
973
 
973
974
  define('init-author-name', {
974
975
  default: '',
976
+ hint: '<name>',
975
977
  type: String,
976
978
  description: `
977
979
  The value \`npm init\` should use by default for the package author's name.
@@ -981,6 +983,7 @@ define('init-author-name', {
981
983
  define('init-author-url', {
982
984
  default: '',
983
985
  type: ['', url],
986
+ hint: '<url>',
984
987
  description: `
985
988
  The value \`npm init\` should use by default for the package author's homepage.
986
989
  `,
@@ -988,6 +991,7 @@ define('init-author-url', {
988
991
 
989
992
  define('init-license', {
990
993
  default: 'ISC',
994
+ hint: '<license>',
991
995
  type: String,
992
996
  description: `
993
997
  The value \`npm init\` should use by default for the package license.
@@ -997,6 +1001,7 @@ define('init-license', {
997
1001
  define('init-module', {
998
1002
  default: '~/.npm-init.js',
999
1003
  type: path,
1004
+ hint: '<module>',
1000
1005
  description: `
1001
1006
  A module that will be loaded by the \`npm init\` command. See the
1002
1007
  documentation for the
@@ -1008,6 +1013,7 @@ define('init-module', {
1008
1013
  define('init-version', {
1009
1014
  default: '1.0.0',
1010
1015
  type: semver,
1016
+ hint: '<version>',
1011
1017
  description: `
1012
1018
  The value that \`npm init\` should use by default for the package
1013
1019
  version number, if not already set in package.json.
@@ -1207,6 +1213,33 @@ define('local-address', {
1207
1213
  flatten,
1208
1214
  })
1209
1215
 
1216
+ define('sbom-format', {
1217
+ default: null,
1218
+ type: [
1219
+ 'cyclonedx',
1220
+ 'spdx',
1221
+ ],
1222
+ description: `
1223
+ SBOM format to use when generating SBOMs.
1224
+ `,
1225
+ flatten,
1226
+ })
1227
+
1228
+ define('sbom-type', {
1229
+ default: 'library',
1230
+ type: [
1231
+ 'library',
1232
+ 'application',
1233
+ 'framework',
1234
+ ],
1235
+ description: `
1236
+ The type of package described by the generated SBOM. For SPDX, this is the
1237
+ value for the \`primaryPackagePurpose\` fieled. For CycloneDX, this is the
1238
+ value for the \`type\` field.
1239
+ `,
1240
+ flatten,
1241
+ })
1242
+
1210
1243
  define('location', {
1211
1244
  default: 'user',
1212
1245
  short: 'L',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@npmcli/config",
3
- "version": "7.2.0",
3
+ "version": "8.0.0",
4
4
  "files": [
5
5
  "bin/",
6
6
  "lib/"
@@ -19,8 +19,8 @@
19
19
  "snap": "tap",
20
20
  "lint": "eslint \"**/*.js\"",
21
21
  "postlint": "template-oss-check",
22
- "lintfix": "node ../.. run lint -- --fix",
23
- "posttest": "node ../.. run lint",
22
+ "lintfix": "npm run lint -- --fix",
23
+ "posttest": "npm run lint",
24
24
  "template-oss-apply": "template-oss-apply --force"
25
25
  },
26
26
  "tap": {
@@ -32,7 +32,7 @@
32
32
  "devDependencies": {
33
33
  "@npmcli/eslint-config": "^4.0.0",
34
34
  "@npmcli/mock-globals": "^1.0.0",
35
- "@npmcli/template-oss": "4.18.0",
35
+ "@npmcli/template-oss": "4.19.0",
36
36
  "tap": "^16.3.8"
37
37
  },
38
38
  "dependencies": {
@@ -46,10 +46,12 @@
46
46
  "walk-up-path": "^3.0.1"
47
47
  },
48
48
  "engines": {
49
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
49
+ "node": "^16.14.0 || >=18.0.0"
50
50
  },
51
51
  "templateOSS": {
52
52
  "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
53
- "version": "4.18.0"
53
+ "version": "4.19.0",
54
+ "content": "../../scripts/template-oss/index.js",
55
+ "npm": "npm"
54
56
  }
55
57
  }