Add Keywords to Your package.json
The keywords
field is where you can describe your project using related keywords. Here's an example:
"keywords": [ "descriptive", "related", "words" ],
As you can see, this field is structured as an array of double-quoted strings.
Add an array of suitable strings to the keywords
field in the package.json file of your project.
One of the keywords should be "freecodecamp".
/** * * Your test output will go here * * */
Tests
- Waiting: 1. package.json should have a valid "keywords" key
- Waiting: 2. "keywords" field should be an Array
- Waiting: 3. "keywords" should include "freecodecamp"