freeCodeCamp Challenge Guide: Add a Version to Your package.json

Add a Version to Your package.json


Hints

Hint 1

You should go over to the package.json file in your project. Versions follow a similar convention as this:

"version": "x.x.x"

This convention is also known as semantic versioning where the versions follow the format MAJOR.MINOR.PATCH whenever a new release is made.

1 Like