diff --git a/guide/english/certifications/apis-and-microservices/managing-packages-with-npm/how-to-use-package-json-the-core-of-any-node-js-project-or-npm-package/index.md b/guide/english/certifications/apis-and-microservices/managing-packages-with-npm/how-to-use-package-json-the-core-of-any-node-js-project-or-npm-package/index.md
index 5223231472..25d0462b61 100644
--- a/guide/english/certifications/apis-and-microservices/managing-packages-with-npm/how-to-use-package-json-the-core-of-any-node-js-project-or-npm-package/index.md
+++ b/guide/english/certifications/apis-and-microservices/managing-packages-with-npm/how-to-use-package-json-the-core-of-any-node-js-project-or-npm-package/index.md
@@ -3,8 +3,11 @@ title: How to Use package.json, the Core of Any Node.js Project or npm Package
---
## How to Use package.json, the Core of Any Node.js Project or npm Package
-This is a stub. Help our community expand it.
-
-This quick style guide will help ensure your pull request gets accepted.
-
+You should go over to the `package.json` file in your project. As mentioned in the instructional section of the lesson, JSON is written in key pairs like this:
+
+```code
+"author": "Jane Doe",
+```
+
+This is a stub. Help our community expand it.