The first step is adding “author” field to JSON.package. Here’s exactly what the package with my addition looks like.
{
"name": "fcc-learn-npm-package-json",
"dependencies": {
"express": "^4.14.0"
},
"main": "server.js",
"scripts": {
"start": "node server.js"
},
"engines": {
"node": "4.4.5"
},
"repository": {
"type": "git",
"url": "https://idontknow/todo.git"
},
"author": "Steven Brawer"
}
Error message is: “package.json should have a valid “author” key”.
Here’s my Glitch URL: