From 9d0d023c4bdf5730127608d72b7da89713c21675 Mon Sep 17 00:00:00 2001 From: Jose Toledo Date: Tue, 15 Jan 2019 13:58:14 -0800 Subject: [PATCH] Added an author code example for package.json (#25501) --- .../index.md | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) 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.