From 93e65641bc795d85800170700b2b3ede839945f7 Mon Sep 17 00:00:00 2001 From: Jose Toledo Date: Tue, 15 Jan 2019 13:51:52 -0800 Subject: [PATCH] Added a license code example for Package.json (#25488) --- .../add-a-license-to-your-package.json/index.md | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/guide/english/certifications/apis-and-microservices/managing-packages-with-npm/add-a-license-to-your-package.json/index.md b/guide/english/certifications/apis-and-microservices/managing-packages-with-npm/add-a-license-to-your-package.json/index.md index 361d8f594c..c2c3629e23 100644 --- a/guide/english/certifications/apis-and-microservices/managing-packages-with-npm/add-a-license-to-your-package.json/index.md +++ b/guide/english/certifications/apis-and-microservices/managing-packages-with-npm/add-a-license-to-your-package.json/index.md @@ -3,8 +3,11 @@ title: Add a License to Your package.json --- ## Add a License to Your package.json -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. Licenses follow a similar convention as this: + +```code +"license": "ExampleLicense" +``` + +Help our community expand these hints and guides.