Help me modifying file

Tell us what’s happening:
i don’t understand with these problems, can someone help me to find out?

Your project link(s)

solution: https://replit.com/@moehammadrizky/boilerplate-npm

Your browser information:

User Agent is: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36

Challenge: How to Use package.json, the Core of Any Node.js Project or npm Package

Link to the challenge:

The failing test is:

package.json should have a valid “author” key

When I look at your package.json, I see:

{
	"name": "fcc-learn-npm-package-json",
	"dependencies": {
		"express": "^4.14.0"
	},
	"main": "server.js",
	"scripts": {
		"start": "node server.js"
	},
	"repository": {
		"type": "git",
		"url": "https://idontknow/todo.git"
	}
}

You need to add an author key/value pair.

Do you understand? If not, please be specific.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.