Skip to content

Commit 1e235fb

Browse files
authored
minimal correction to out-of-date package.json kb article (#3867)
Refs: #3862
1 parent 1136e7e commit 1e235fb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

locale/en/knowledge/getting-started/npm/what-is-the-file-package-json.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ layout: knowledge-post.hbs
1111

1212
All npm packages contain a file, usually in the project root, called `package.json` - this file holds various metadata relevant to the project. This file is used to give information to `npm` that allows it to identify the project as well as handle the project's dependencies. It can also contain other metadata such as a project description, the version of the project in a particular distribution, license information, even configuration data - all of which can be vital to both `npm` and to the end users of the package. The `package.json` file is normally located at the root directory of a Node.js project.
1313

14-
Node.js itself is only aware of two fields in the `package.json`:
14+
Here is a minimal `package.json`:
1515

1616
```json
1717
{

0 commit comments

Comments
 (0)