Managing Packages with NPM - Expand Your Project with External Packages from npm

Tell us what’s happening:

Its telling me there is some wrong here and I am not sure what is wrong.

{
“author”: “Dustin Trimmer”,
“description”: “A simple node.js module to get the current time and date.”,
“keywords”: [
“freecodecamp”,
“node”,
“npm”,
“time”,
“date”
],
“license”: “MIT”,
“dependencies”: {
“package-name”: “version”,
“express”: “4.14.0”,
@freecodecamp/example”: “1.1.0”
},
“version”: “1.0.0”,
“name”: “fcc-learn-npm-package-json”,
“dependencies”: {
“express”: “^4.14.0”
},
“main”: “server.js”,
“scripts”: {
“start”: “node server.js”
},
“repository”: {
“type”: “git”,
“url”: “GitHub - freeCodeCamp/boilerplate-npm: A boilerplate for the freeCodeCamp curriculum.
}
}

Specifically this:

// running tests

"dependencies"

should include

"@freecodecamp/example"

.

"@freecodecamp/example"

version should be

"1.1.0"

. // tests completed

Actually figured it out you don’t need to make another dependencies section you add to the one already there.