🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

migrate-mongo

Package Overview
Dependencies
Maintainers
1
Versions
71
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

migrate-mongo - npm Package Compare versions

Comparing version

to
3.0.3

22

package.json
{
"name": "migrate-mongo",
"version": "3.0.2",
"version": "3.0.3",
"description": "A database migration tool for MongoDB in Node",

@@ -25,9 +25,9 @@ "main": "lib/migrate-mongo.js",

"dependencies": {
"async": "2.6.0",
"async": "2.6.1",
"cli-table": "0.3.1",
"commander": "2.15.1",
"fs-extra": "6.0.0",
"commander": "2.16.0",
"fs-extra": "6.0.1",
"lodash": "4.17.10",
"moment": "2.22.1",
"mongodb": "3.0.7",
"moment": "2.22.2",
"mongodb": "3.1.1",
"shifting": "1.2.5"

@@ -37,10 +37,10 @@ },

"chai": "4.1.2",
"coveralls": "3.0.1",
"eslint": "4.19.1",
"eslint-plugin-mocha": "5.0.0",
"coveralls": "3.0.2",
"eslint": "5.1.0",
"eslint-plugin-mocha": "5.1.0",
"istanbul": "0.4.5",
"mocha": "5.1.1",
"mocha": "5.2.0",
"proxyquire": "2.0.1",
"sinon": "5.0.7"
"sinon": "6.1.3"
}
}

@@ -15,9 +15,7 @@ 'use strict';

// uncomment and edit to specify Mongo client connect options (eg. increase the timeouts)
// see https://mongodb.github.io/node-mongodb-native/2.2/api/MongoClient.html
//
// options: {
// connectTimeoutMS: 3600000, // 1 hour
// socketTimeoutMS: 3600000, // 1 hour
// }
options: {
useNewUrlParser: true, // removes a deprecation warning when connecting
// connectTimeoutMS: 3600000, // increase connection timeout to 1 hour
// socketTimeoutMS: 3600000, // increase socket timeout to 1 hour
}
},

@@ -24,0 +22,0 @@

@@ -14,2 +14,3 @@ 'use strict';

beforeEach(function () {
this.timeout(10000);
configObj = createConfigObj();

@@ -16,0 +17,0 @@ client = mockClient();