File tree Expand file tree Collapse file tree 3 files changed +14
-1
lines changed Expand file tree Collapse file tree 3 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,11 @@ const BaseCommand = require('../base-command.js')
1616class Init extends BaseCommand {
1717 static description = 'Create a package.json file'
1818 static params = [
19+ 'init-author-name' ,
20+ 'init-author-url' ,
21+ 'init-license' ,
22+ 'init-module' ,
23+ 'init-version' ,
1924 'yes' ,
2025 'force' ,
2126 'scope' ,
Original file line number Diff line number Diff line change @@ -315,6 +315,7 @@ exports[`test/lib/commands/publish.js TAP re-loads publishConfig.registry if add
315315`
316316
317317exports [ `test/lib/commands/publish.js TAP respects publishConfig.registry, runs appropriate scripts > new package version 1` ] = `
318+
318319`
319320
320321exports [ `test/lib/commands/publish.js TAP restricted access > must match snapshot 1` ] = `
Original file line number Diff line number Diff line change @@ -3160,7 +3160,9 @@ npm init <package-spec> (same as \`npx <package-spec>\`)
31603160npm init <@scope> (same as \`npx <@scope>/create\`)
31613161
31623162Options:
3163- [-y|--yes] [-f|--force] [--scope <@scope>]
3163+ [--init-author-name <init-author-name>] [--init-author-url <init-author-url>]
3164+ [--init-license <init-license>] [--init-module <init-module>]
3165+ [--init-version <init-version>] [-y|--yes] [-f|--force] [--scope <@scope>]
31643166[-w|--workspace <workspace-name> [-w|--workspace <workspace-name> ...]]
31653167[-ws|--workspaces] [--no-workspaces-update] [--include-workspace-root]
31663168
@@ -3175,6 +3177,11 @@ npm init <@scope> (same as \`npx <@scope>/create\`)
31753177aliases: create, innit
31763178\`\`\`
31773179
3180+ #### \`init-author-name\`
3181+ #### \`init-author-url\`
3182+ #### \`init-license\`
3183+ #### \`init-module\`
3184+ #### \`init-version\`
31783185#### \`yes\`
31793186#### \`force\`
31803187#### \`scope\`
You can’t perform that action at this time.
0 commit comments