NPM Expand Your Project with External Packages. Tests not passing

Getting this error:

// running tests
"dependencies" does not include "moment"
Wrong version of "moment" installed. It should be 2.14.0
// tests completed

Here is the code. you can plainly see that “moment” is there and it is the correct version.

{
  "name": "fcc-learn-npm-package-json",
  "author": "Mark Jones",
  "version": "1.0.0",
  "description": "A project that does something awesome",
  "main": "server.js",
  "scripts": {
    "start": "node server.js"
  },
  "engines": {
    "node": "8.x"
  },
    "repository": {
    "url": "https://glitch.com/edit/#!/hello-express"
  },
  "dependencies": {
  "express": "4.14.0",
  "moment": "2.14.0"  
  },
  "license": "MIT",
  "keywords": [
    "node",
    "freecodecamp",
    "express"
  ]
}

Tried a number of things…nothing works to make it pass. Any ideas?