package.json Generator
Create a package.json File
Fill in the fields below to generate a valid package.json for your Node.js project.
About package.json
The package.json file sits at the root of a Node.js project. It records the project's name, version, dependencies, and scripts, and is read by npm and other package managers.
The scripts section defines commands you can run with npm run <name>, such as npm start or npm test.