diff --git a/pages/articles/getting-started/npm/what-is-the-file-package-json/content.md b/pages/articles/getting-started/npm/what-is-the-file-package-json/content.md index b3c73dc..b083b27 100644 --- a/pages/articles/getting-started/npm/what-is-the-file-package-json/content.md +++ b/pages/articles/getting-started/npm/what-is-the-file-package-json/content.md @@ -4,7 +4,7 @@ Node itself is only aware of two fields in the `package.json`: { "name" : "barebones", - "version" : "0.0.0", + "version" : "0.0.0" } The `name` field should explain itself: this is the name of your project. The `version` field is used by npm to make sure the right version of the package is being installed. Generally, it takes the form of `major.minor.patch` where `major`, `minor`, and `patch` are integers which increase after each new release. For more details, look at this spec: http://semver.org .