{
  "name": "migrate-mongo",
  "version": "12.1.3",
  "description": "A database migration tool for MongoDB in Node",
  "main": "lib/migrate-mongo.js",
  "bin": {
    "migrate-mongo": "bin/migrate-mongo.js"
  },
  "scripts": {
    "test": "nyc --reporter=html --reporter=text mocha --recursive",
    "test-coverage": "nyc --reporter=text-lcov mocha --recursive | coveralls",
    "lint": "eslint lib/ test/"
  },
  "author": "Sebastian Van Sande",
  "license": "MIT",
  "keywords": [
    "migrate mongo mongodb migrations database"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/seppevs/migrate-mongo.git"
  },
  "engines": {
    "node": ">=8"
  },
  "preferGlobal": true,
  "dependencies": {
    "cli-table3": "^0.6.1",
    "commander": "^9.1.0",
    "date-fns": "^2.28.0",
    "fn-args": "^5.0.0",
    "fs-extra": "^10.0.1",
    "lodash.filter": "^4.6.0",
    "lodash.find": "^4.6.0",
    "lodash.get": "^4.4.2",
    "lodash.isempty": "^4.4.0",
    "lodash.last": "^3.0.0",
    "lodash.values": "^4.3.0",
    "p-each-series": "^2.2.0"
  },
  "peerDependencies": {
    "mongodb": "^4.4.1 || ^5.0.0 || ^6.0.0  || ^7.0.0"
  },
  "devDependencies": {
    "chai": "^4.3.6",
    "coveralls": "^3.1.1",
    "eslint": "^9.15.0",
    "eslint-config-prettier": "^8.5.0",
    "eslint-plugin-mocha": "^10.5.0",
    "mocha": "^9.2.2",
    "nyc": "^15.1.0",
    "proxyquire": "^2.1.3",
    "sinon": "^13.0.1"
  },
  "eslintConfig": {
    "extends": [
      "prettier"
    ],
    "parserOptions": {
      "ecmaVersion": 2018
    }
  }
}
