Tell us what’s happening:
Describe your issue in detail here.
Your project link(s)
solution: https://replit.com/@keshavarora3/boilerplate-npm-4
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.60 Safari/537.36 Edg/100.0.1185.29
Challenge: How to Use package.json, the Core of Any Node.js Project or npm Package
Link to the challenge:
following is my solution but console keep telling “// running tests
package.json should have a valid “author” key
// tests completed
package.json should have a valid “author” key”
{
“name”: “fcc-learn-npm-package-json”,
“author”: “Keshav”,
“dependencies”: {
“express”: “^4.14.0”
},
“main”: “server.js”,
“scripts”: {
“start”: “node server.js”
},
“repository”: {
“type”: “git”,
“url”: “https://idontknow/todo.git”
}
}