Managing Packages with NPM - How to Use package.json, the Core of Any Node.js Project or npm Package

im passing this JSON file:

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

but the test is showing that i should pass a valid “author”

Challenge: Managing Packages with NPM - How to Use package.json, the Core of Any Node.js Project or npm Package

Link to the challenge:

Hi there and welcome to the forum!

Could you share a link to your full code please?

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