1The npm init command is a step-by-step tool to scaffold out your project.
2It will prompt you for input for a few aspects of the project
3in the following order:
4
5The project's name,
6The project's initial version,
7The project's description,
8The project's entry point (meaning the project's main file),
9The project's test command (to trigger testing with something like Standard)
10The project's git repository (where the project source can be found)
11The project's keywords (basically, tags related to the project)
12The project's license (this defaults to ISC - most open-source Node.js projects are MIT)