Hi i cant figure this out 7

Managing Packages with Npm - Manage npm Dependencies By Understanding Semantic Versioning

Versions of the npm packages in the dependencies section of your package.json file follow what’s called Semantic Versioning (SemVer), an industry standard for software versioning aiming to make it easier to manage dependencies. Libraries, frameworks or other tools published on npm should use SemVer in order to clearly communicate what kind of changes

Hello there,

What can you not figure out? Do you not understand the paragraph? Or, are you struggling to pass the tests?

If you are struggling to pass the tests, we will need to see your code to be able to help.

this is my code and it isnt passing

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

I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (’).


Would you mind sharing a link to your project code?

hi here it is https://repl.it/@SokunNget/boilerplate-npm-1#package.json

This is what I see:

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

Here are the instructions:

change the version of moment to match MAJOR version 2, MINOR version 10 and PATCH version 2

Did you restart? Did you skip some of the lessons, because it appears you have not completed the previous lesson:

Add version “2.14.0” of the “moment” package to the dependencies field of your package.json file.