mongodb 3.0.1 → 3.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGES_3.0.0.md +66 -5
- package/HISTORY.md +19 -0
- package/README.md +1 -1
- package/lib/bulk/ordered.js +8 -1
- package/lib/bulk/unordered.js +8 -1
- package/lib/change_stream.js +2 -2
- package/lib/collection.js +20 -7
- package/lib/db.js +1 -2
- package/lib/mongo_client.js +26 -9
- package/lib/topologies/topology_base.js +2 -0
- package/lib/url_parser.js +2 -1
- package/package.json +3 -2
- package/yarn.lock +245 -125
package/CHANGES_3.0.0.md
CHANGED
|
@@ -101,10 +101,6 @@ MongoClient.connect('mongodb://localhost:27017/test', (err, client) => {
|
|
|
101
101
|
});
|
|
102
102
|
```
|
|
103
103
|
|
|
104
|
-
`Collection.prototype.aggregate` now returns a cursor if a callback is provided. It used to return
|
|
105
|
-
the resulting documents which is the same as calling `cursor.toArray()` on the cursor we now pass to
|
|
106
|
-
the callback.
|
|
107
|
-
|
|
108
104
|
## Other Changes
|
|
109
105
|
|
|
110
106
|
Below are more updates to the driver in the 3.0.0 release.
|
|
@@ -177,7 +173,72 @@ in on the options object . Additionally, `find` does not support individual opti
|
|
|
177
173
|
`limit` as positional parameters. You must either pass in these parameters in the `options` object,
|
|
178
174
|
or add them via `Cursor` methods like `Cursor.prototype.skip`.
|
|
179
175
|
|
|
180
|
-
###
|
|
176
|
+
### `Collection.prototype.aggregate`
|
|
177
|
+
|
|
178
|
+
`Collection.prototype.aggregate` no longer accepts variadic arguments. While this
|
|
179
|
+
was originally added to improve compatibility with the mongo shell, it has never
|
|
180
|
+
been a documented feature, and has led to more bugs and maintenance burden.
|
|
181
|
+
Pipeline stages are now only accepted as an `Array` of stages as the first argument.
|
|
182
|
+
|
|
183
|
+
2.x syntax:
|
|
184
|
+
|
|
185
|
+
```js
|
|
186
|
+
collection.prototype.aggregate(
|
|
187
|
+
{$match: {a: 1}},
|
|
188
|
+
{$project: {b: 1, _id: 0}},
|
|
189
|
+
function (err, result) {
|
|
190
|
+
...
|
|
191
|
+
}
|
|
192
|
+
);
|
|
193
|
+
```
|
|
194
|
+
|
|
195
|
+
3.x syntax
|
|
196
|
+
|
|
197
|
+
```js
|
|
198
|
+
collection.prototype.aggregate(
|
|
199
|
+
[
|
|
200
|
+
{$match: {a: 1}},
|
|
201
|
+
{$project: {b: 1, _id: 0}}
|
|
202
|
+
],
|
|
203
|
+
function (err, cursor) {
|
|
204
|
+
...
|
|
205
|
+
}
|
|
206
|
+
);
|
|
207
|
+
```
|
|
208
|
+
|
|
209
|
+
`Collection.prototype.aggregate` now returns a cursor if a callback is provided. It used to return
|
|
210
|
+
the resulting documents which is the same as calling `cursor.toArray()` on the cursor we now pass to
|
|
211
|
+
the callback.
|
|
212
|
+
|
|
213
|
+
2.x syntax
|
|
214
|
+
|
|
215
|
+
```js
|
|
216
|
+
collection.prototype.aggregate(
|
|
217
|
+
[
|
|
218
|
+
{$match: {a: 1}},
|
|
219
|
+
{$project: {b: 1, _id: 0}}
|
|
220
|
+
],
|
|
221
|
+
function (err, result) {
|
|
222
|
+
console.log(result);
|
|
223
|
+
}
|
|
224
|
+
);
|
|
225
|
+
```
|
|
226
|
+
|
|
227
|
+
3.x syntax
|
|
228
|
+
|
|
229
|
+
```js
|
|
230
|
+
collection.prototype.aggregate(
|
|
231
|
+
[
|
|
232
|
+
{$match: {a: 1}},
|
|
233
|
+
{$project: {b: 1, _id: 0}}
|
|
234
|
+
],
|
|
235
|
+
function (err, cursor) {
|
|
236
|
+
cursor.toArray(function(err, result) {
|
|
237
|
+
console.log(result);
|
|
238
|
+
});
|
|
239
|
+
}
|
|
240
|
+
);
|
|
241
|
+
```
|
|
181
242
|
|
|
182
243
|
Support added for `comment` in the aggregation command. Support also added for a `hint` field in the
|
|
183
244
|
aggregation `options`.
|
package/HISTORY.md
CHANGED
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
<a name="3.0.2"></a>
|
|
2
|
+
## [3.0.2](https://github.com/mongodb/node-mongodb-native/compare/v3.0.1...v3.0.2) (2018-01-29)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* **collection:** ensure dynamic require of `db` is wrapped in parentheses ([efa78f0](https://github.com/mongodb/node-mongodb-native/commit/efa78f0))
|
|
8
|
+
* **db:** only callback with MongoError NODE-1293 ([#1652](https://github.com/mongodb/node-mongodb-native/issues/1652)) ([45bc722](https://github.com/mongodb/node-mongodb-native/commit/45bc722))
|
|
9
|
+
* **topology base:** allow more than 10 event listeners ([#1630](https://github.com/mongodb/node-mongodb-native/issues/1630)) ([d9fb750](https://github.com/mongodb/node-mongodb-native/commit/d9fb750))
|
|
10
|
+
* **url parser:** preserve auth creds when composing conn string ([#1640](https://github.com/mongodb/node-mongodb-native/issues/1640)) ([eddca5e](https://github.com/mongodb/node-mongodb-native/commit/eddca5e))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* **bulk:** forward 'checkKeys' option for ordered and unordered bulk operations ([421a6b2](https://github.com/mongodb/node-mongodb-native/commit/421a6b2))
|
|
16
|
+
* **collection:** expose `dbName` property of collection ([6fd05c1](https://github.com/mongodb/node-mongodb-native/commit/6fd05c1))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
1
20
|
<a name="3.0.1"></a>
|
|
2
21
|
## [3.0.1](https://github.com/mongodb/node-mongodb-native/compare/v3.0.0...v3.0.1) (2017-12-24)
|
|
3
22
|
|
package/README.md
CHANGED
|
@@ -15,7 +15,7 @@ The official [MongoDB](https://www.mongodb.com/) driver for Node.js. Provides a
|
|
|
15
15
|
| what | where |
|
|
16
16
|
|---------------|------------------------------------------------|
|
|
17
17
|
| documentation | http://mongodb.github.io/node-mongodb-native |
|
|
18
|
-
| api-doc | http://mongodb.github.io/node-mongodb-native/
|
|
18
|
+
| api-doc | http://mongodb.github.io/node-mongodb-native/3.0/api |
|
|
19
19
|
| source | https://github.com/mongodb/node-mongodb-native |
|
|
20
20
|
| mongodb | http://www.mongodb.org |
|
|
21
21
|
|
package/lib/bulk/ordered.js
CHANGED
|
@@ -303,7 +303,9 @@ function OrderedBulkOperation(topology, collection, options) {
|
|
|
303
303
|
bypassDocumentValidation:
|
|
304
304
|
typeof options.bypassDocumentValidation === 'boolean'
|
|
305
305
|
? options.bypassDocumentValidation
|
|
306
|
-
: false
|
|
306
|
+
: false,
|
|
307
|
+
// check keys
|
|
308
|
+
checkKeys: typeof options.checkKeys === 'boolean' ? options.checkKeys : true
|
|
307
309
|
};
|
|
308
310
|
}
|
|
309
311
|
|
|
@@ -513,6 +515,11 @@ var executeCommands = function(self, options, callback) {
|
|
|
513
515
|
finalOptions.bypassDocumentValidation = true;
|
|
514
516
|
}
|
|
515
517
|
|
|
518
|
+
// Is the checkKeys option disabled
|
|
519
|
+
if (self.s.checkKeys === false) {
|
|
520
|
+
finalOptions.checkKeys = false;
|
|
521
|
+
}
|
|
522
|
+
|
|
516
523
|
try {
|
|
517
524
|
if (batch.batchType === common.INSERT) {
|
|
518
525
|
self.s.topology.insert(
|
package/lib/bulk/unordered.js
CHANGED
|
@@ -312,7 +312,9 @@ var UnorderedBulkOperation = function(topology, collection, options) {
|
|
|
312
312
|
bypassDocumentValidation:
|
|
313
313
|
typeof options.bypassDocumentValidation === 'boolean'
|
|
314
314
|
? options.bypassDocumentValidation
|
|
315
|
-
: false
|
|
315
|
+
: false,
|
|
316
|
+
// check keys
|
|
317
|
+
checkKeys: typeof options.checkKeys === 'boolean' ? options.checkKeys : true
|
|
316
318
|
};
|
|
317
319
|
};
|
|
318
320
|
|
|
@@ -474,6 +476,11 @@ var executeBatch = function(self, batch, options, callback) {
|
|
|
474
476
|
finalOptions.bypassDocumentValidation = true;
|
|
475
477
|
}
|
|
476
478
|
|
|
479
|
+
// Is the checkKeys option disabled
|
|
480
|
+
if (self.s.checkKeys === false) {
|
|
481
|
+
finalOptions.checkKeys = false;
|
|
482
|
+
}
|
|
483
|
+
|
|
477
484
|
try {
|
|
478
485
|
if (batch.batchType === common.INSERT) {
|
|
479
486
|
self.s.topology.insert(
|
package/lib/change_stream.js
CHANGED
|
@@ -13,7 +13,7 @@ var cursorOptionNames = ['maxAwaitTimeMS', 'collation', 'readPreference'];
|
|
|
13
13
|
* @param {(Db|Collection)} changeDomain The collection against which to create the change stream
|
|
14
14
|
* @param {Array} pipeline An array of {@link https://docs.mongodb.com/manual/reference/operator/aggregation-pipeline/|aggregation pipeline stages} through which to pass change stream documents
|
|
15
15
|
* @param {object} [options=null] Optional settings
|
|
16
|
-
* @param {string} [options.fullDocument=
|
|
16
|
+
* @param {string} [options.fullDocument='default'] Allowed values: ‘default’, ‘updateLookup’. When set to ‘updateLookup’, the change stream will include both a delta describing the changes to the document, as well as a copy of the entire document that was changed from some time after the change occurred.
|
|
17
17
|
* @param {number} [options.maxAwaitTimeMS] The maximum amount of time for the server to wait on new documents to satisfy a change stream query
|
|
18
18
|
* @param {object} [options.resumeAfter=null] Specifies the logical starting point for the new change stream. This should be the _id field from a previously returned change stream document.
|
|
19
19
|
* @param {number} [options.batchSize=null] The number of documents to return per batch. See {@link https://docs.mongodb.com/manual/reference/command/aggregate|aggregation documentation}.
|
|
@@ -335,7 +335,7 @@ var processNewChange = function(self, err, change, callback) {
|
|
|
335
335
|
// Cache the resume token if it is present. If it is not present return an error.
|
|
336
336
|
if (!change || !change._id) {
|
|
337
337
|
var noResumeTokenError = new Error(
|
|
338
|
-
'A change stream document has been
|
|
338
|
+
'A change stream document has been received that lacks a resume token (_id).'
|
|
339
339
|
);
|
|
340
340
|
if (typeof callback === 'function') return callback(noResumeTokenError, null);
|
|
341
341
|
if (self.listenerCount('error')) return self.emit('error', noResumeTokenError);
|
package/lib/collection.js
CHANGED
|
@@ -143,6 +143,13 @@ var Collection = function(db, topology, dbName, name, pkFactory, options) {
|
|
|
143
143
|
|
|
144
144
|
var define = (Collection.define = new Define('Collection', Collection, false));
|
|
145
145
|
|
|
146
|
+
Object.defineProperty(Collection.prototype, 'dbName', {
|
|
147
|
+
enumerable: true,
|
|
148
|
+
get: function() {
|
|
149
|
+
return this.s.dbName;
|
|
150
|
+
}
|
|
151
|
+
});
|
|
152
|
+
|
|
146
153
|
Object.defineProperty(Collection.prototype, 'collectionName', {
|
|
147
154
|
enumerable: true,
|
|
148
155
|
get: function() {
|
|
@@ -1288,6 +1295,13 @@ define.classMethod('save', { callback: true, promise: true });
|
|
|
1288
1295
|
* @param {object} result The result object if the command was executed successfully.
|
|
1289
1296
|
*/
|
|
1290
1297
|
|
|
1298
|
+
/**
|
|
1299
|
+
* The callback format for an aggregation call
|
|
1300
|
+
* @callback Collection~aggregationCallback
|
|
1301
|
+
* @param {MongoError} error An error instance representing the error during the execution.
|
|
1302
|
+
* @param {AggregationCursor} cursor The cursor if the aggregation command was executed successfully.
|
|
1303
|
+
*/
|
|
1304
|
+
|
|
1291
1305
|
/**
|
|
1292
1306
|
* Fetches the first document that matches the query
|
|
1293
1307
|
* @method
|
|
@@ -2380,7 +2394,7 @@ function decorateWithReadConcern(command, self, options) {
|
|
|
2380
2394
|
* @param {object} [options.collation=null] Specify collation (MongoDB 3.4 or higher) settings for update operation (see 3.4 documentation for available fields).
|
|
2381
2395
|
* @param {string} [options.comment] Add a comment to an aggregation command
|
|
2382
2396
|
* @param {ClientSession} [options.session] optional session to use for this operation
|
|
2383
|
-
* @param {Collection~
|
|
2397
|
+
* @param {Collection~aggregationCallback} callback The command result callback
|
|
2384
2398
|
* @return {(null|AggregationCursor)}
|
|
2385
2399
|
*/
|
|
2386
2400
|
Collection.prototype.aggregate = function(pipeline, options, callback) {
|
|
@@ -2512,7 +2526,7 @@ define.classMethod('aggregate', { callback: true, promise: false });
|
|
|
2512
2526
|
* @since 3.0.0
|
|
2513
2527
|
* @param {Array} [pipeline=null] An array of {@link https://docs.mongodb.com/manual/reference/operator/aggregation-pipeline/|aggregation pipeline stages} through which to pass change stream documents. This allows for filtering (using $match) and manipulating the change stream documents.
|
|
2514
2528
|
* @param {object} [options=null] Optional settings
|
|
2515
|
-
* @param {string} [options.fullDocument=
|
|
2529
|
+
* @param {string} [options.fullDocument='default'] Allowed values: ‘default’, ‘updateLookup’. When set to ‘updateLookup’, the change stream will include both a delta describing the changes to the document, as well as a copy of the entire document that was changed from some time after the change occurred.
|
|
2516
2530
|
* @param {object} [options.resumeAfter=null] Specifies the logical starting point for the new change stream. This should be the _id field from a previously returned change stream document.
|
|
2517
2531
|
* @param {number} [options.maxAwaitTimeMS] The maximum amount of time for the server to wait on new documents to satisfy a change stream query
|
|
2518
2532
|
* @param {number} [options.batchSize=null] The number of documents to return per batch. See {@link https://docs.mongodb.com/manual/reference/command/aggregate|aggregation documentation}.
|
|
@@ -2994,11 +3008,10 @@ var mapReduce = function(self, map, reduce, options, callback) {
|
|
|
2994
3008
|
if (result.result != null && typeof result.result === 'object') {
|
|
2995
3009
|
var doc = result.result;
|
|
2996
3010
|
// Return a collection from another db
|
|
2997
|
-
|
|
2998
|
-
|
|
2999
|
-
|
|
3000
|
-
|
|
3001
|
-
).collection(doc.collection);
|
|
3011
|
+
var Db = require('./db');
|
|
3012
|
+
collection = new Db(doc.db, self.s.db.s.topology, self.s.db.s.options).collection(
|
|
3013
|
+
doc.collection
|
|
3014
|
+
);
|
|
3002
3015
|
} else {
|
|
3003
3016
|
// Create a collection object that wraps the result collection
|
|
3004
3017
|
collection = self.s.db.collection(result.result);
|
package/lib/db.js
CHANGED
|
@@ -445,8 +445,7 @@ Db.prototype.collection = function(name, options, callback) {
|
|
|
445
445
|
if (callback) callback(null, collection);
|
|
446
446
|
return collection;
|
|
447
447
|
} catch (err) {
|
|
448
|
-
|
|
449
|
-
if (callback) return callback(err);
|
|
448
|
+
if (err instanceof MongoError && callback) return callback(err);
|
|
450
449
|
throw err;
|
|
451
450
|
}
|
|
452
451
|
}
|
package/lib/mongo_client.js
CHANGED
|
@@ -22,6 +22,22 @@ var parse = require('./url_parser'),
|
|
|
22
22
|
* @fileOverview The **MongoClient** class is a class that allows for making Connections to MongoDB.
|
|
23
23
|
*
|
|
24
24
|
* @example
|
|
25
|
+
* // Connect using a MongoClient instance
|
|
26
|
+
* const MongoClient = require('mongodb').MongoClient;
|
|
27
|
+
* const test = require('assert');
|
|
28
|
+
* // Connection url
|
|
29
|
+
* const url = 'mongodb://localhost:27017';
|
|
30
|
+
* // Database Name
|
|
31
|
+
* const dbName = 'test';
|
|
32
|
+
* // Connect using MongoClient
|
|
33
|
+
* const mongoClient = new MongoClient(url);
|
|
34
|
+
* mongoClient.connect(function(err, client) {
|
|
35
|
+
* const db = client.db(dbName);
|
|
36
|
+
* client.close();
|
|
37
|
+
* });
|
|
38
|
+
*
|
|
39
|
+
* @example
|
|
40
|
+
* // Connect using the MongoClient.connect static method
|
|
25
41
|
* const MongoClient = require('mongodb').MongoClient;
|
|
26
42
|
* const test = require('assert');
|
|
27
43
|
* // Connection url
|
|
@@ -140,7 +156,8 @@ function validOptions(options) {
|
|
|
140
156
|
* @param {boolean} [options.keepAlive=true] TCP Connection keep alive enabled
|
|
141
157
|
* @param {number} [options.keepAliveInitialDelay=30000] The number of milliseconds to wait before initiating keepAlive on the TCP socket
|
|
142
158
|
* @param {number} [options.connectTimeoutMS=30000] TCP Connection timeout setting
|
|
143
|
-
* @param {number} [options.family=
|
|
159
|
+
* @param {number} [options.family=null] Version of IP stack. Can be 4, 6 or null (default).
|
|
160
|
+
* If null, will attempt to connect with IPv6, and will fall back to IPv4 on failure
|
|
144
161
|
* @param {number} [options.socketTimeoutMS=360000] TCP Socket timeout setting
|
|
145
162
|
* @param {number} [options.reconnectTries=30] Server attempt to reconnect #times
|
|
146
163
|
* @param {number} [options.reconnectInterval=1000] Server will wait # milliseconds between retries
|
|
@@ -218,7 +235,7 @@ var define = (MongoClient.define = new Define('MongoClient', MongoClient, false)
|
|
|
218
235
|
* The callback format for results
|
|
219
236
|
* @callback MongoClient~connectCallback
|
|
220
237
|
* @param {MongoError} error An error instance representing the error during the execution.
|
|
221
|
-
* @param {
|
|
238
|
+
* @param {MongoClient} client The connected client.
|
|
222
239
|
*/
|
|
223
240
|
|
|
224
241
|
/**
|
|
@@ -230,8 +247,7 @@ var define = (MongoClient.define = new Define('MongoClient', MongoClient, false)
|
|
|
230
247
|
*
|
|
231
248
|
* @method
|
|
232
249
|
* @param {MongoClient~connectCallback} [callback] The command result callback
|
|
233
|
-
* @return {Promise} returns Promise if no callback passed
|
|
234
|
-
* @deprecated MongoClient.connect is deprecated, please use new MongoClient().connect() to connect.
|
|
250
|
+
* @return {Promise<MongoClient>} returns Promise if no callback passed
|
|
235
251
|
*/
|
|
236
252
|
MongoClient.prototype.connect = function(callback) {
|
|
237
253
|
// Validate options object
|
|
@@ -382,7 +398,7 @@ MongoClient.prototype.db = function(dbName, options) {
|
|
|
382
398
|
* @param {object} [options=null] Optional settings.
|
|
383
399
|
* @param {boolean} [options.noListener=false] Do not make the db an event listener to the original connection.
|
|
384
400
|
* @param {boolean} [options.returnNonCachedInstance=false] Control if you want to return a cached instance or have a new one created
|
|
385
|
-
* @return {
|
|
401
|
+
* @return {boolean}
|
|
386
402
|
*/
|
|
387
403
|
MongoClient.prototype.isConnected = function(options) {
|
|
388
404
|
options = options || {};
|
|
@@ -415,7 +431,8 @@ MongoClient.prototype.isConnected = function(options) {
|
|
|
415
431
|
* @param {boolean} [options.keepAlive=true] TCP Connection keep alive enabled
|
|
416
432
|
* @param {boolean} [options.keepAliveInitialDelay=30000] The number of milliseconds to wait before initiating keepAlive on the TCP socket
|
|
417
433
|
* @param {number} [options.connectTimeoutMS=30000] TCP Connection timeout setting
|
|
418
|
-
* @param {number} [options.family=
|
|
434
|
+
* @param {number} [options.family=null] Version of IP stack. Can be 4, 6 or null (default).
|
|
435
|
+
* If null, will attempt to connect with IPv6, and will fall back to IPv4 on failure
|
|
419
436
|
* @param {number} [options.socketTimeoutMS=360000] TCP Socket timeout setting
|
|
420
437
|
* @param {number} [options.reconnectTries=30] Server attempt to reconnect #times
|
|
421
438
|
* @param {number} [options.reconnectInterval=1000] Server will wait # milliseconds between retries
|
|
@@ -458,7 +475,7 @@ MongoClient.prototype.isConnected = function(options) {
|
|
|
458
475
|
* @param {number} [options.numberOfRetries=5] The number of retries for a tailable cursor
|
|
459
476
|
* @param {boolean} [options.auto_reconnect=true] Enable auto reconnecting for single server instances
|
|
460
477
|
* @param {MongoClient~connectCallback} [callback] The command result callback
|
|
461
|
-
* @return {Promise} returns Promise if no callback passed
|
|
478
|
+
* @return {Promise<MongoClient>} returns Promise if no callback passed
|
|
462
479
|
*/
|
|
463
480
|
MongoClient.connect = function(url, options, callback) {
|
|
464
481
|
var args = Array.prototype.slice.call(arguments, 1);
|
|
@@ -467,9 +484,9 @@ MongoClient.connect = function(url, options, callback) {
|
|
|
467
484
|
options = options || {};
|
|
468
485
|
|
|
469
486
|
// Create client
|
|
470
|
-
var
|
|
487
|
+
var mongoClient = new MongoClient(url, options);
|
|
471
488
|
// Execute the connect method
|
|
472
|
-
return
|
|
489
|
+
return mongoClient.connect(callback);
|
|
473
490
|
};
|
|
474
491
|
|
|
475
492
|
define.staticMethod('connect', { callback: true, promise: true });
|
package/lib/url_parser.js
CHANGED
|
@@ -48,8 +48,9 @@ module.exports = function(url, options, callback) {
|
|
|
48
48
|
}
|
|
49
49
|
}
|
|
50
50
|
|
|
51
|
+
let base = result.auth ? `mongodb://${result.auth}@` : `mongodb://`;
|
|
51
52
|
let connectionStrings = addresses.map(function(address, i) {
|
|
52
|
-
if (i === 0) return
|
|
53
|
+
if (i === 0) return `${base}${address.name}:${address.port}`;
|
|
53
54
|
else return `${address.name}:${address.port}`;
|
|
54
55
|
});
|
|
55
56
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mongodb",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.2",
|
|
4
4
|
"description": "The official MongoDB driver for Node.js",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"repository": {
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"official"
|
|
14
14
|
],
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"mongodb-core": "3.0.
|
|
16
|
+
"mongodb-core": "3.0.2"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"betterbenchmarks": "^0.1.0",
|
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
"istanbul": "^0.4.5",
|
|
29
29
|
"jsdoc": "3.5.4",
|
|
30
30
|
"mongodb-extended-json": "^1.10.0",
|
|
31
|
+
"mongodb-mock-server": "^1.0.0",
|
|
31
32
|
"mongodb-test-runner": "^1.1.18",
|
|
32
33
|
"prettier": "^1.5.3",
|
|
33
34
|
"semver": "5.4.1",
|
package/yarn.lock
CHANGED
|
@@ -28,8 +28,8 @@ acorn@^3.0.4:
|
|
|
28
28
|
resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a"
|
|
29
29
|
|
|
30
30
|
acorn@^5.2.1:
|
|
31
|
-
version "5.
|
|
32
|
-
resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.
|
|
31
|
+
version "5.3.0"
|
|
32
|
+
resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.3.0.tgz#7446d39459c54fb49a80e6ee6478149b940ec822"
|
|
33
33
|
|
|
34
34
|
add-stream@^1.0.0:
|
|
35
35
|
version "1.0.0"
|
|
@@ -121,6 +121,10 @@ ansi@^0.3.0, ansi@~0.3.1:
|
|
|
121
121
|
version "0.3.1"
|
|
122
122
|
resolved "https://registry.yarnpkg.com/ansi/-/ansi-0.3.1.tgz#0c42d4fb17160d5a9af1e484bace1c66922c1b21"
|
|
123
123
|
|
|
124
|
+
aproba@^1.0.3:
|
|
125
|
+
version "1.2.0"
|
|
126
|
+
resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a"
|
|
127
|
+
|
|
124
128
|
are-we-there-yet@~1.1.2:
|
|
125
129
|
version "1.1.4"
|
|
126
130
|
resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d"
|
|
@@ -173,8 +177,8 @@ assert-plus@^0.2.0:
|
|
|
173
177
|
resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234"
|
|
174
178
|
|
|
175
179
|
assertion-error@^1.0.1:
|
|
176
|
-
version "1.0
|
|
177
|
-
resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.0.
|
|
180
|
+
version "1.1.0"
|
|
181
|
+
resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.1.0.tgz#e60b6b0e8f301bd97e5375215bda406c85118c0b"
|
|
178
182
|
|
|
179
183
|
async@1.x, async@^1.4.0:
|
|
180
184
|
version "1.5.2"
|
|
@@ -325,8 +329,8 @@ babylon@^6.18.0:
|
|
|
325
329
|
resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3"
|
|
326
330
|
|
|
327
331
|
babylon@~7.0.0-beta.19:
|
|
328
|
-
version "7.0.0-beta.
|
|
329
|
-
resolved "https://registry.yarnpkg.com/babylon/-/babylon-7.0.0-beta.
|
|
332
|
+
version "7.0.0-beta.38"
|
|
333
|
+
resolved "https://registry.yarnpkg.com/babylon/-/babylon-7.0.0-beta.38.tgz#9b3a33e571a47464a2d20cb9dd5a570f00e3f996"
|
|
330
334
|
|
|
331
335
|
balanced-match@^1.0.0:
|
|
332
336
|
version "1.0.0"
|
|
@@ -354,12 +358,22 @@ betterbenchmarks@^0.1.0:
|
|
|
354
358
|
fast-stats "0.0.3"
|
|
355
359
|
table "^3.7.4"
|
|
356
360
|
|
|
361
|
+
bindings@^1.3.0:
|
|
362
|
+
version "1.3.0"
|
|
363
|
+
resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.3.0.tgz#b346f6ecf6a95f5a815c5839fc7cdb22502f1ed7"
|
|
364
|
+
|
|
357
365
|
bl@^1.0.0:
|
|
358
366
|
version "1.2.1"
|
|
359
367
|
resolved "https://registry.yarnpkg.com/bl/-/bl-1.2.1.tgz#cac328f7bee45730d404b692203fcb590e172d5e"
|
|
360
368
|
dependencies:
|
|
361
369
|
readable-stream "^2.0.5"
|
|
362
370
|
|
|
371
|
+
block-stream@*:
|
|
372
|
+
version "0.0.9"
|
|
373
|
+
resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a"
|
|
374
|
+
dependencies:
|
|
375
|
+
inherits "~2.0.0"
|
|
376
|
+
|
|
363
377
|
bluebird@3.5.0:
|
|
364
378
|
version "3.5.0"
|
|
365
379
|
resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.0.tgz#791420d7f551eea2897453a8a77653f96606d67c"
|
|
@@ -617,8 +631,8 @@ commander@2.9.0:
|
|
|
617
631
|
graceful-readlink ">= 1.0.0"
|
|
618
632
|
|
|
619
633
|
commander@^2.9.0:
|
|
620
|
-
version "2.
|
|
621
|
-
resolved "https://registry.yarnpkg.com/commander/-/commander-2.
|
|
634
|
+
version "2.13.0"
|
|
635
|
+
resolved "https://registry.yarnpkg.com/commander/-/commander-2.13.0.tgz#6964bca67685df7c1f1430c584f07d7597885b9c"
|
|
622
636
|
|
|
623
637
|
commander@~2.8.1:
|
|
624
638
|
version "2.8.1"
|
|
@@ -652,50 +666,54 @@ config-chain@^1.1.11:
|
|
|
652
666
|
ini "^1.3.4"
|
|
653
667
|
proto-list "~1.2.1"
|
|
654
668
|
|
|
669
|
+
console-control-strings@^1.0.0, console-control-strings@~1.1.0:
|
|
670
|
+
version "1.1.0"
|
|
671
|
+
resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
|
|
672
|
+
|
|
655
673
|
content-disposition@^0.5.2:
|
|
656
674
|
version "0.5.2"
|
|
657
675
|
resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4"
|
|
658
676
|
|
|
659
|
-
conventional-changelog-angular@^1.
|
|
660
|
-
version "1.6.
|
|
661
|
-
resolved "https://registry.yarnpkg.com/conventional-changelog-angular/-/conventional-changelog-angular-1.6.
|
|
677
|
+
conventional-changelog-angular@^1.6.1:
|
|
678
|
+
version "1.6.1"
|
|
679
|
+
resolved "https://registry.yarnpkg.com/conventional-changelog-angular/-/conventional-changelog-angular-1.6.1.tgz#e1434d017c854032b272f690424a8c0ca16dc318"
|
|
662
680
|
dependencies:
|
|
663
681
|
compare-func "^1.3.1"
|
|
664
682
|
q "^1.4.1"
|
|
665
683
|
|
|
666
|
-
conventional-changelog-atom@^0.
|
|
667
|
-
version "0.
|
|
668
|
-
resolved "https://registry.yarnpkg.com/conventional-changelog-atom/-/conventional-changelog-atom-0.
|
|
684
|
+
conventional-changelog-atom@^0.2.0:
|
|
685
|
+
version "0.2.0"
|
|
686
|
+
resolved "https://registry.yarnpkg.com/conventional-changelog-atom/-/conventional-changelog-atom-0.2.0.tgz#72f18e5c74e3d8807411252fe013818ddffa7157"
|
|
669
687
|
dependencies:
|
|
670
688
|
q "^1.4.1"
|
|
671
689
|
|
|
672
690
|
conventional-changelog-cli@^1.3.5:
|
|
673
|
-
version "1.3.
|
|
674
|
-
resolved "https://registry.yarnpkg.com/conventional-changelog-cli/-/conventional-changelog-cli-1.3.
|
|
691
|
+
version "1.3.8"
|
|
692
|
+
resolved "https://registry.yarnpkg.com/conventional-changelog-cli/-/conventional-changelog-cli-1.3.8.tgz#3b3f3591cb8d1f154bdb28e1819c5fcd8d967536"
|
|
675
693
|
dependencies:
|
|
676
694
|
add-stream "^1.0.0"
|
|
677
|
-
conventional-changelog "^1.1.
|
|
695
|
+
conventional-changelog "^1.1.10"
|
|
678
696
|
lodash "^4.1.0"
|
|
679
697
|
meow "^3.7.0"
|
|
680
698
|
tempfile "^1.1.1"
|
|
681
699
|
|
|
682
|
-
conventional-changelog-codemirror@^0.
|
|
683
|
-
version "0.
|
|
684
|
-
resolved "https://registry.yarnpkg.com/conventional-changelog-codemirror/-/conventional-changelog-codemirror-0.
|
|
700
|
+
conventional-changelog-codemirror@^0.3.0:
|
|
701
|
+
version "0.3.0"
|
|
702
|
+
resolved "https://registry.yarnpkg.com/conventional-changelog-codemirror/-/conventional-changelog-codemirror-0.3.0.tgz#4dd8abb9f521a638cab49f683496c26b8a5c6d31"
|
|
685
703
|
dependencies:
|
|
686
704
|
q "^1.4.1"
|
|
687
705
|
|
|
688
|
-
conventional-changelog-core@^
|
|
689
|
-
version "
|
|
690
|
-
resolved "https://registry.yarnpkg.com/conventional-changelog-core/-/conventional-changelog-core-
|
|
706
|
+
conventional-changelog-core@^2.0.0:
|
|
707
|
+
version "2.0.0"
|
|
708
|
+
resolved "https://registry.yarnpkg.com/conventional-changelog-core/-/conventional-changelog-core-2.0.0.tgz#1bdf7d21f3d066427ff9e07db0a2c5dd60015b9f"
|
|
691
709
|
dependencies:
|
|
692
|
-
conventional-changelog-writer "^
|
|
710
|
+
conventional-changelog-writer "^3.0.0"
|
|
693
711
|
conventional-commits-parser "^2.1.0"
|
|
694
712
|
dateformat "^1.0.12"
|
|
695
713
|
get-pkg-repo "^1.0.0"
|
|
696
714
|
git-raw-commits "^1.3.0"
|
|
697
715
|
git-remote-origin-url "^2.0.0"
|
|
698
|
-
git-semver-tags "^1.
|
|
716
|
+
git-semver-tags "^1.3.0"
|
|
699
717
|
lodash "^4.0.0"
|
|
700
718
|
normalize-package-data "^2.3.5"
|
|
701
719
|
q "^1.4.1"
|
|
@@ -703,21 +721,21 @@ conventional-changelog-core@^1.9.3:
|
|
|
703
721
|
read-pkg-up "^1.0.1"
|
|
704
722
|
through2 "^2.0.0"
|
|
705
723
|
|
|
706
|
-
conventional-changelog-ember@^0.
|
|
707
|
-
version "0.
|
|
708
|
-
resolved "https://registry.yarnpkg.com/conventional-changelog-ember/-/conventional-changelog-ember-0.
|
|
724
|
+
conventional-changelog-ember@^0.3.1:
|
|
725
|
+
version "0.3.1"
|
|
726
|
+
resolved "https://registry.yarnpkg.com/conventional-changelog-ember/-/conventional-changelog-ember-0.3.1.tgz#bc71dc0a57e5c7ed0bf0538c32e44220691871d1"
|
|
709
727
|
dependencies:
|
|
710
728
|
q "^1.4.1"
|
|
711
729
|
|
|
712
|
-
conventional-changelog-eslint@^0.
|
|
713
|
-
version "0.
|
|
714
|
-
resolved "https://registry.yarnpkg.com/conventional-changelog-eslint/-/conventional-changelog-eslint-0.
|
|
730
|
+
conventional-changelog-eslint@^1.0.0:
|
|
731
|
+
version "1.0.0"
|
|
732
|
+
resolved "https://registry.yarnpkg.com/conventional-changelog-eslint/-/conventional-changelog-eslint-1.0.0.tgz#c63cd9d6f09d4e204530ae7369d7a20a167bc6bc"
|
|
715
733
|
dependencies:
|
|
716
734
|
q "^1.4.1"
|
|
717
735
|
|
|
718
|
-
conventional-changelog-express@^0.
|
|
719
|
-
version "0.
|
|
720
|
-
resolved "https://registry.yarnpkg.com/conventional-changelog-express/-/conventional-changelog-express-0.
|
|
736
|
+
conventional-changelog-express@^0.3.0:
|
|
737
|
+
version "0.3.0"
|
|
738
|
+
resolved "https://registry.yarnpkg.com/conventional-changelog-express/-/conventional-changelog-express-0.3.0.tgz#5ed006f48682d8615ee0ab5f53cacb26fbd3e1c8"
|
|
721
739
|
dependencies:
|
|
722
740
|
q "^1.4.1"
|
|
723
741
|
|
|
@@ -733,16 +751,16 @@ conventional-changelog-jscs@^0.1.0:
|
|
|
733
751
|
dependencies:
|
|
734
752
|
q "^1.4.1"
|
|
735
753
|
|
|
736
|
-
conventional-changelog-jshint@^0.
|
|
737
|
-
version "0.
|
|
738
|
-
resolved "https://registry.yarnpkg.com/conventional-changelog-jshint/-/conventional-changelog-jshint-0.
|
|
754
|
+
conventional-changelog-jshint@^0.3.0:
|
|
755
|
+
version "0.3.0"
|
|
756
|
+
resolved "https://registry.yarnpkg.com/conventional-changelog-jshint/-/conventional-changelog-jshint-0.3.0.tgz#0393fd468113baf73cba911d17c5826423366a28"
|
|
739
757
|
dependencies:
|
|
740
758
|
compare-func "^1.3.1"
|
|
741
759
|
q "^1.4.1"
|
|
742
760
|
|
|
743
|
-
conventional-changelog-writer@^
|
|
744
|
-
version "
|
|
745
|
-
resolved "https://registry.yarnpkg.com/conventional-changelog-writer/-/conventional-changelog-writer-
|
|
761
|
+
conventional-changelog-writer@^3.0.0:
|
|
762
|
+
version "3.0.0"
|
|
763
|
+
resolved "https://registry.yarnpkg.com/conventional-changelog-writer/-/conventional-changelog-writer-3.0.0.tgz#e106154ed94341e387d717b61be2181ff53254cc"
|
|
746
764
|
dependencies:
|
|
747
765
|
compare-func "^1.3.1"
|
|
748
766
|
conventional-commits-filter "^1.1.1"
|
|
@@ -755,20 +773,20 @@ conventional-changelog-writer@^2.0.3:
|
|
|
755
773
|
split "^1.0.0"
|
|
756
774
|
through2 "^2.0.0"
|
|
757
775
|
|
|
758
|
-
conventional-changelog@^1.1.
|
|
759
|
-
version "1.1.
|
|
760
|
-
resolved "https://registry.yarnpkg.com/conventional-changelog/-/conventional-changelog-1.1.
|
|
761
|
-
dependencies:
|
|
762
|
-
conventional-changelog-angular "^1.
|
|
763
|
-
conventional-changelog-atom "^0.
|
|
764
|
-
conventional-changelog-codemirror "^0.
|
|
765
|
-
conventional-changelog-core "^
|
|
766
|
-
conventional-changelog-ember "^0.
|
|
767
|
-
conventional-changelog-eslint "^0.
|
|
768
|
-
conventional-changelog-express "^0.
|
|
776
|
+
conventional-changelog@^1.1.10:
|
|
777
|
+
version "1.1.10"
|
|
778
|
+
resolved "https://registry.yarnpkg.com/conventional-changelog/-/conventional-changelog-1.1.10.tgz#d9bb3aad9086152d283e4707fb45a5b7a28e9e98"
|
|
779
|
+
dependencies:
|
|
780
|
+
conventional-changelog-angular "^1.6.1"
|
|
781
|
+
conventional-changelog-atom "^0.2.0"
|
|
782
|
+
conventional-changelog-codemirror "^0.3.0"
|
|
783
|
+
conventional-changelog-core "^2.0.0"
|
|
784
|
+
conventional-changelog-ember "^0.3.1"
|
|
785
|
+
conventional-changelog-eslint "^1.0.0"
|
|
786
|
+
conventional-changelog-express "^0.3.0"
|
|
769
787
|
conventional-changelog-jquery "^0.1.0"
|
|
770
788
|
conventional-changelog-jscs "^0.1.0"
|
|
771
|
-
conventional-changelog-jshint "^0.
|
|
789
|
+
conventional-changelog-jshint "^0.3.0"
|
|
772
790
|
|
|
773
791
|
conventional-commits-filter@^1.1.1:
|
|
774
792
|
version "1.1.1"
|
|
@@ -989,9 +1007,9 @@ docopt@^0.6.2:
|
|
|
989
1007
|
version "0.6.2"
|
|
990
1008
|
resolved "https://registry.yarnpkg.com/docopt/-/docopt-0.6.2.tgz#b28e9e2220da5ec49f7ea5bb24a47787405eeb11"
|
|
991
1009
|
|
|
992
|
-
doctrine@^2.0
|
|
993
|
-
version "2.0
|
|
994
|
-
resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.
|
|
1010
|
+
doctrine@^2.1.0:
|
|
1011
|
+
version "2.1.0"
|
|
1012
|
+
resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d"
|
|
995
1013
|
dependencies:
|
|
996
1014
|
esutils "^2.0.2"
|
|
997
1015
|
|
|
@@ -1079,8 +1097,8 @@ ecc-jsbn@~0.1.1:
|
|
|
1079
1097
|
jsbn "~0.1.0"
|
|
1080
1098
|
|
|
1081
1099
|
end-of-stream@^1.0.0:
|
|
1082
|
-
version "1.4.
|
|
1083
|
-
resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.
|
|
1100
|
+
version "1.4.1"
|
|
1101
|
+
resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.1.tgz#ed29634d19baba463b6ce6b80a37213eab71ec43"
|
|
1084
1102
|
dependencies:
|
|
1085
1103
|
once "^1.4.0"
|
|
1086
1104
|
|
|
@@ -1120,8 +1138,8 @@ escodegen@1.8.x:
|
|
|
1120
1138
|
source-map "~0.2.0"
|
|
1121
1139
|
|
|
1122
1140
|
eslint-plugin-prettier@^2.2.0:
|
|
1123
|
-
version "2.
|
|
1124
|
-
resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-2.
|
|
1141
|
+
version "2.5.0"
|
|
1142
|
+
resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-2.5.0.tgz#39a91dd7528eaf19cd42c0ee3f2c1f684606a05f"
|
|
1125
1143
|
dependencies:
|
|
1126
1144
|
fast-diff "^1.1.1"
|
|
1127
1145
|
jest-docblock "^21.0.0"
|
|
@@ -1138,8 +1156,8 @@ eslint-visitor-keys@^1.0.0:
|
|
|
1138
1156
|
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d"
|
|
1139
1157
|
|
|
1140
1158
|
eslint@^4.5.0:
|
|
1141
|
-
version "4.
|
|
1142
|
-
resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.
|
|
1159
|
+
version "4.16.0"
|
|
1160
|
+
resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.16.0.tgz#934ada9e98715e1d7bbfd6f6f0519ed2fab35cc1"
|
|
1143
1161
|
dependencies:
|
|
1144
1162
|
ajv "^5.3.0"
|
|
1145
1163
|
babel-code-frame "^6.22.0"
|
|
@@ -1147,7 +1165,7 @@ eslint@^4.5.0:
|
|
|
1147
1165
|
concat-stream "^1.6.0"
|
|
1148
1166
|
cross-spawn "^5.1.0"
|
|
1149
1167
|
debug "^3.1.0"
|
|
1150
|
-
doctrine "^2.0
|
|
1168
|
+
doctrine "^2.1.0"
|
|
1151
1169
|
eslint-scope "^3.7.1"
|
|
1152
1170
|
eslint-visitor-keys "^1.0.0"
|
|
1153
1171
|
espree "^3.5.2"
|
|
@@ -1409,6 +1427,15 @@ fs.realpath@^1.0.0:
|
|
|
1409
1427
|
version "1.0.0"
|
|
1410
1428
|
resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
|
|
1411
1429
|
|
|
1430
|
+
fstream@^1.0.0, fstream@^1.0.2:
|
|
1431
|
+
version "1.0.11"
|
|
1432
|
+
resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171"
|
|
1433
|
+
dependencies:
|
|
1434
|
+
graceful-fs "^4.1.2"
|
|
1435
|
+
inherits "~2.0.0"
|
|
1436
|
+
mkdirp ">=0.5 0"
|
|
1437
|
+
rimraf "2"
|
|
1438
|
+
|
|
1412
1439
|
functional-red-black-tree@^1.0.1:
|
|
1413
1440
|
version "1.0.1"
|
|
1414
1441
|
resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"
|
|
@@ -1423,6 +1450,19 @@ gauge@~1.2.5:
|
|
|
1423
1450
|
lodash.padend "^4.1.0"
|
|
1424
1451
|
lodash.padstart "^4.1.0"
|
|
1425
1452
|
|
|
1453
|
+
gauge@~2.7.3:
|
|
1454
|
+
version "2.7.4"
|
|
1455
|
+
resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7"
|
|
1456
|
+
dependencies:
|
|
1457
|
+
aproba "^1.0.3"
|
|
1458
|
+
console-control-strings "^1.0.0"
|
|
1459
|
+
has-unicode "^2.0.0"
|
|
1460
|
+
object-assign "^4.1.0"
|
|
1461
|
+
signal-exit "^3.0.0"
|
|
1462
|
+
string-width "^1.0.1"
|
|
1463
|
+
strip-ansi "^3.0.1"
|
|
1464
|
+
wide-align "^1.1.0"
|
|
1465
|
+
|
|
1426
1466
|
generate-function@^2.0.0:
|
|
1427
1467
|
version "2.0.0"
|
|
1428
1468
|
resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74"
|
|
@@ -1505,9 +1545,9 @@ git-remote-origin-url@^2.0.0:
|
|
|
1505
1545
|
gitconfiglocal "^1.0.0"
|
|
1506
1546
|
pify "^2.3.0"
|
|
1507
1547
|
|
|
1508
|
-
git-semver-tags@^1.
|
|
1509
|
-
version "1.
|
|
1510
|
-
resolved "https://registry.yarnpkg.com/git-semver-tags/-/git-semver-tags-1.
|
|
1548
|
+
git-semver-tags@^1.3.0:
|
|
1549
|
+
version "1.3.0"
|
|
1550
|
+
resolved "https://registry.yarnpkg.com/git-semver-tags/-/git-semver-tags-1.3.0.tgz#b154833a6ab5c360c0ad3b1aa9b8f12ea06de919"
|
|
1511
1551
|
dependencies:
|
|
1512
1552
|
meow "^3.3.0"
|
|
1513
1553
|
semver "^5.0.1"
|
|
@@ -1551,8 +1591,8 @@ glob@^7.0.3, glob@^7.0.5, glob@^7.1.2:
|
|
|
1551
1591
|
path-is-absolute "^1.0.0"
|
|
1552
1592
|
|
|
1553
1593
|
globals@^11.0.1:
|
|
1554
|
-
version "11.
|
|
1555
|
-
resolved "https://registry.yarnpkg.com/globals/-/globals-11.
|
|
1594
|
+
version "11.2.0"
|
|
1595
|
+
resolved "https://registry.yarnpkg.com/globals/-/globals-11.2.0.tgz#aa2ece052a787563ba70a3dcd9dc2eb8a9a0488c"
|
|
1556
1596
|
|
|
1557
1597
|
globals@^9.18.0:
|
|
1558
1598
|
version "9.18.0"
|
|
@@ -1755,7 +1795,7 @@ inflight@^1.0.4:
|
|
|
1755
1795
|
once "^1.3.0"
|
|
1756
1796
|
wrappy "1"
|
|
1757
1797
|
|
|
1758
|
-
inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.1, inherits@~2.0.3:
|
|
1798
|
+
inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3:
|
|
1759
1799
|
version "2.0.3"
|
|
1760
1800
|
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
|
|
1761
1801
|
|
|
@@ -1872,8 +1912,8 @@ is-property@^1.0.0:
|
|
|
1872
1912
|
resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84"
|
|
1873
1913
|
|
|
1874
1914
|
is-resolvable@^1.0.0:
|
|
1875
|
-
version "1.0
|
|
1876
|
-
resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.
|
|
1915
|
+
version "1.1.0"
|
|
1916
|
+
resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88"
|
|
1877
1917
|
|
|
1878
1918
|
is-retry-allowed@^1.0.0:
|
|
1879
1919
|
version "1.1.0"
|
|
@@ -2329,8 +2369,8 @@ map-stream@~0.1.0:
|
|
|
2329
2369
|
resolved "https://registry.yarnpkg.com/map-stream/-/map-stream-0.1.0.tgz#e56aa94c4c8055a16404a0674b78f215f7c8e194"
|
|
2330
2370
|
|
|
2331
2371
|
marked@~0.3.6:
|
|
2332
|
-
version "0.3.
|
|
2333
|
-
resolved "https://registry.yarnpkg.com/marked/-/marked-0.3.
|
|
2372
|
+
version "0.3.12"
|
|
2373
|
+
resolved "https://registry.yarnpkg.com/marked/-/marked-0.3.12.tgz#7cf25ff2252632f3fe2406bde258e94eee927519"
|
|
2334
2374
|
|
|
2335
2375
|
mem@^1.1.0:
|
|
2336
2376
|
version "1.1.0"
|
|
@@ -2399,7 +2439,7 @@ minimist@~0.0.1:
|
|
|
2399
2439
|
version "0.0.10"
|
|
2400
2440
|
resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf"
|
|
2401
2441
|
|
|
2402
|
-
mkdirp@0.5.1, mkdirp@0.5.x, mkdirp@^0.5.1, mkdirp@~0.5.1:
|
|
2442
|
+
mkdirp@0.5.1, mkdirp@0.5.x, "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.1:
|
|
2403
2443
|
version "0.5.1"
|
|
2404
2444
|
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
|
|
2405
2445
|
dependencies:
|
|
@@ -2430,16 +2470,16 @@ moment@^2.10.6:
|
|
|
2430
2470
|
version "2.20.1"
|
|
2431
2471
|
resolved "https://registry.yarnpkg.com/moment/-/moment-2.20.1.tgz#d6eb1a46cbcc14a2b2f9434112c1ff8907f313fd"
|
|
2432
2472
|
|
|
2433
|
-
mongodb-core@2.1.
|
|
2434
|
-
version "2.1.
|
|
2435
|
-
resolved "https://registry.yarnpkg.com/mongodb-core/-/mongodb-core-2.1.
|
|
2473
|
+
mongodb-core@2.1.18:
|
|
2474
|
+
version "2.1.18"
|
|
2475
|
+
resolved "https://registry.yarnpkg.com/mongodb-core/-/mongodb-core-2.1.18.tgz#4c46139bdf3a1f032ded91db49f38eec01659050"
|
|
2436
2476
|
dependencies:
|
|
2437
2477
|
bson "~1.0.4"
|
|
2438
2478
|
require_optional "~1.0.0"
|
|
2439
2479
|
|
|
2440
|
-
mongodb-core@3.0.
|
|
2441
|
-
version "3.0.
|
|
2442
|
-
resolved "https://registry.yarnpkg.com/mongodb-core/-/mongodb-core-3.0.
|
|
2480
|
+
mongodb-core@3.0.2, mongodb-core@^3.0.0-rc0:
|
|
2481
|
+
version "3.0.2"
|
|
2482
|
+
resolved "https://registry.yarnpkg.com/mongodb-core/-/mongodb-core-3.0.2.tgz#914896092dd45427d9a4f98a7997a0bfb81d163b"
|
|
2443
2483
|
dependencies:
|
|
2444
2484
|
bson "~1.0.4"
|
|
2445
2485
|
require_optional "^1.0.1"
|
|
@@ -2469,9 +2509,15 @@ mongodb-extended-json@^1.10.0:
|
|
|
2469
2509
|
moment "^2.10.6"
|
|
2470
2510
|
raf "^3.1.0"
|
|
2471
2511
|
|
|
2512
|
+
mongodb-mock-server@^1.0.0:
|
|
2513
|
+
version "1.0.0"
|
|
2514
|
+
resolved "https://registry.yarnpkg.com/mongodb-mock-server/-/mongodb-mock-server-1.0.0.tgz#6dec212d22cc116cfd2257c8f9be3fa4dd34123d"
|
|
2515
|
+
dependencies:
|
|
2516
|
+
snappy "^6.0.1"
|
|
2517
|
+
|
|
2472
2518
|
mongodb-test-runner@^1.1.18:
|
|
2473
|
-
version "1.
|
|
2474
|
-
resolved "https://registry.yarnpkg.com/mongodb-test-runner/-/mongodb-test-runner-1.
|
|
2519
|
+
version "1.3.1"
|
|
2520
|
+
resolved "https://registry.yarnpkg.com/mongodb-test-runner/-/mongodb-test-runner-1.3.1.tgz#c6a28e9b4851a8cac97a56339b0750e68207641e"
|
|
2475
2521
|
dependencies:
|
|
2476
2522
|
metamocha "^1.2.5"
|
|
2477
2523
|
mongodb-topology-manager "^2.0.0"
|
|
@@ -2523,11 +2569,11 @@ mongodb-version-manager@^1.0.7:
|
|
|
2523
2569
|
untildify "^3.0.2"
|
|
2524
2570
|
|
|
2525
2571
|
mongodb@^2.0.39:
|
|
2526
|
-
version "2.2.
|
|
2527
|
-
resolved "https://registry.yarnpkg.com/mongodb/-/mongodb-2.2.
|
|
2572
|
+
version "2.2.34"
|
|
2573
|
+
resolved "https://registry.yarnpkg.com/mongodb/-/mongodb-2.2.34.tgz#a34f59bbeb61754aec432de72c3fe21526a44c1a"
|
|
2528
2574
|
dependencies:
|
|
2529
2575
|
es6-promise "3.2.1"
|
|
2530
|
-
mongodb-core "2.1.
|
|
2576
|
+
mongodb-core "2.1.18"
|
|
2531
2577
|
readable-stream "2.2.7"
|
|
2532
2578
|
|
|
2533
2579
|
ms@2.0.0:
|
|
@@ -2538,6 +2584,10 @@ mute-stream@0.0.7:
|
|
|
2538
2584
|
version "0.0.7"
|
|
2539
2585
|
resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab"
|
|
2540
2586
|
|
|
2587
|
+
nan@^2.6.1:
|
|
2588
|
+
version "2.8.0"
|
|
2589
|
+
resolved "https://registry.yarnpkg.com/nan/-/nan-2.8.0.tgz#ed715f3fe9de02b57a5e6252d90a96675e1f085a"
|
|
2590
|
+
|
|
2541
2591
|
nan@~2.5.1:
|
|
2542
2592
|
version "2.5.1"
|
|
2543
2593
|
resolved "https://registry.yarnpkg.com/nan/-/nan-2.5.1.tgz#d5b01691253326a97a2bbee9e61c55d8d60351e2"
|
|
@@ -2546,7 +2596,25 @@ natural-compare@^1.4.0:
|
|
|
2546
2596
|
version "1.4.0"
|
|
2547
2597
|
resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
|
|
2548
2598
|
|
|
2549
|
-
|
|
2599
|
+
node-gyp@^3.6.2:
|
|
2600
|
+
version "3.6.2"
|
|
2601
|
+
resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-3.6.2.tgz#9bfbe54562286284838e750eac05295853fa1c60"
|
|
2602
|
+
dependencies:
|
|
2603
|
+
fstream "^1.0.0"
|
|
2604
|
+
glob "^7.0.3"
|
|
2605
|
+
graceful-fs "^4.1.2"
|
|
2606
|
+
minimatch "^3.0.2"
|
|
2607
|
+
mkdirp "^0.5.0"
|
|
2608
|
+
nopt "2 || 3"
|
|
2609
|
+
npmlog "0 || 1 || 2 || 3 || 4"
|
|
2610
|
+
osenv "0"
|
|
2611
|
+
request "2"
|
|
2612
|
+
rimraf "2"
|
|
2613
|
+
semver "~5.3.0"
|
|
2614
|
+
tar "^2.0.0"
|
|
2615
|
+
which "1"
|
|
2616
|
+
|
|
2617
|
+
"nopt@2 || 3", nopt@3.x:
|
|
2550
2618
|
version "3.0.6"
|
|
2551
2619
|
resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9"
|
|
2552
2620
|
dependencies:
|
|
@@ -2574,6 +2642,15 @@ npm-run-path@^2.0.0:
|
|
|
2574
2642
|
dependencies:
|
|
2575
2643
|
path-key "^2.0.0"
|
|
2576
2644
|
|
|
2645
|
+
"npmlog@0 || 1 || 2 || 3 || 4":
|
|
2646
|
+
version "4.1.2"
|
|
2647
|
+
resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b"
|
|
2648
|
+
dependencies:
|
|
2649
|
+
are-we-there-yet "~1.1.2"
|
|
2650
|
+
console-control-strings "~1.1.0"
|
|
2651
|
+
gauge "~2.7.3"
|
|
2652
|
+
set-blocking "~2.0.0"
|
|
2653
|
+
|
|
2577
2654
|
npmlog@^2.0.3:
|
|
2578
2655
|
version "2.0.4"
|
|
2579
2656
|
resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-2.0.4.tgz#98b52530f2514ca90d09ec5b22c8846722375692"
|
|
@@ -2596,7 +2673,7 @@ oauth-sign@~0.8.1, oauth-sign@~0.8.2:
|
|
|
2596
2673
|
version "0.8.2"
|
|
2597
2674
|
resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43"
|
|
2598
2675
|
|
|
2599
|
-
object-assign@^4.0.1:
|
|
2676
|
+
object-assign@^4.0.1, object-assign@^4.1.0:
|
|
2600
2677
|
version "4.1.1"
|
|
2601
2678
|
resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
|
|
2602
2679
|
|
|
@@ -2646,6 +2723,13 @@ os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.2:
|
|
|
2646
2723
|
version "1.0.2"
|
|
2647
2724
|
resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
|
|
2648
2725
|
|
|
2726
|
+
osenv@0:
|
|
2727
|
+
version "0.1.4"
|
|
2728
|
+
resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644"
|
|
2729
|
+
dependencies:
|
|
2730
|
+
os-homedir "^1.0.0"
|
|
2731
|
+
os-tmpdir "^1.0.0"
|
|
2732
|
+
|
|
2649
2733
|
p-cancelable@^0.3.0:
|
|
2650
2734
|
version "0.3.0"
|
|
2651
2735
|
resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-0.3.0.tgz#b9e123800bcebb7ac13a479be195b507b98d30fa"
|
|
@@ -2661,8 +2745,10 @@ p-finally@^1.0.0:
|
|
|
2661
2745
|
resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
|
|
2662
2746
|
|
|
2663
2747
|
p-limit@^1.1.0:
|
|
2664
|
-
version "1.
|
|
2665
|
-
resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.
|
|
2748
|
+
version "1.2.0"
|
|
2749
|
+
resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.2.0.tgz#0e92b6bedcb59f022c13d0f1949dc82d15909f1c"
|
|
2750
|
+
dependencies:
|
|
2751
|
+
p-try "^1.0.0"
|
|
2666
2752
|
|
|
2667
2753
|
p-locate@^2.0.0:
|
|
2668
2754
|
version "2.0.0"
|
|
@@ -2676,6 +2762,10 @@ p-timeout@^1.1.1:
|
|
|
2676
2762
|
dependencies:
|
|
2677
2763
|
p-finally "^1.0.0"
|
|
2678
2764
|
|
|
2765
|
+
p-try@^1.0.0:
|
|
2766
|
+
version "1.0.0"
|
|
2767
|
+
resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3"
|
|
2768
|
+
|
|
2679
2769
|
parse-github-repo-url@^1.3.0:
|
|
2680
2770
|
version "1.4.1"
|
|
2681
2771
|
resolved "https://registry.yarnpkg.com/parse-github-repo-url/-/parse-github-repo-url-1.4.1.tgz#9e7d8bb252a6cb6ba42595060b7bf6df3dbc1f50"
|
|
@@ -2771,8 +2861,8 @@ prepend-http@^1.0.1:
|
|
|
2771
2861
|
resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc"
|
|
2772
2862
|
|
|
2773
2863
|
prettier@^1.5.3:
|
|
2774
|
-
version "1.
|
|
2775
|
-
resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.
|
|
2864
|
+
version "1.10.2"
|
|
2865
|
+
resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.10.2.tgz#1af8356d1842276a99a5b5529c82dd9e9ad3cc93"
|
|
2776
2866
|
|
|
2777
2867
|
private@^0.1.7:
|
|
2778
2868
|
version "0.1.8"
|
|
@@ -2908,32 +2998,7 @@ repeating@^2.0.0:
|
|
|
2908
2998
|
dependencies:
|
|
2909
2999
|
is-finite "^1.0.0"
|
|
2910
3000
|
|
|
2911
|
-
request@2.
|
|
2912
|
-
version "2.79.0"
|
|
2913
|
-
resolved "https://registry.yarnpkg.com/request/-/request-2.79.0.tgz#4dfe5bf6be8b8cdc37fcf93e04b65577722710de"
|
|
2914
|
-
dependencies:
|
|
2915
|
-
aws-sign2 "~0.6.0"
|
|
2916
|
-
aws4 "^1.2.1"
|
|
2917
|
-
caseless "~0.11.0"
|
|
2918
|
-
combined-stream "~1.0.5"
|
|
2919
|
-
extend "~3.0.0"
|
|
2920
|
-
forever-agent "~0.6.1"
|
|
2921
|
-
form-data "~2.1.1"
|
|
2922
|
-
har-validator "~2.0.6"
|
|
2923
|
-
hawk "~3.1.3"
|
|
2924
|
-
http-signature "~1.1.0"
|
|
2925
|
-
is-typedarray "~1.0.0"
|
|
2926
|
-
isstream "~0.1.2"
|
|
2927
|
-
json-stringify-safe "~5.0.1"
|
|
2928
|
-
mime-types "~2.1.7"
|
|
2929
|
-
oauth-sign "~0.8.1"
|
|
2930
|
-
qs "~6.3.0"
|
|
2931
|
-
stringstream "~0.0.4"
|
|
2932
|
-
tough-cookie "~2.3.0"
|
|
2933
|
-
tunnel-agent "~0.4.1"
|
|
2934
|
-
uuid "^3.0.0"
|
|
2935
|
-
|
|
2936
|
-
request@^2.65.0, request@^2.69.0:
|
|
3001
|
+
request@2, request@^2.65.0, request@^2.69.0:
|
|
2937
3002
|
version "2.83.0"
|
|
2938
3003
|
resolved "https://registry.yarnpkg.com/request/-/request-2.83.0.tgz#ca0b65da02ed62935887808e6f510381034e3356"
|
|
2939
3004
|
dependencies:
|
|
@@ -2960,6 +3025,31 @@ request@^2.65.0, request@^2.69.0:
|
|
|
2960
3025
|
tunnel-agent "^0.6.0"
|
|
2961
3026
|
uuid "^3.1.0"
|
|
2962
3027
|
|
|
3028
|
+
request@2.79.0:
|
|
3029
|
+
version "2.79.0"
|
|
3030
|
+
resolved "https://registry.yarnpkg.com/request/-/request-2.79.0.tgz#4dfe5bf6be8b8cdc37fcf93e04b65577722710de"
|
|
3031
|
+
dependencies:
|
|
3032
|
+
aws-sign2 "~0.6.0"
|
|
3033
|
+
aws4 "^1.2.1"
|
|
3034
|
+
caseless "~0.11.0"
|
|
3035
|
+
combined-stream "~1.0.5"
|
|
3036
|
+
extend "~3.0.0"
|
|
3037
|
+
forever-agent "~0.6.1"
|
|
3038
|
+
form-data "~2.1.1"
|
|
3039
|
+
har-validator "~2.0.6"
|
|
3040
|
+
hawk "~3.1.3"
|
|
3041
|
+
http-signature "~1.1.0"
|
|
3042
|
+
is-typedarray "~1.0.0"
|
|
3043
|
+
isstream "~0.1.2"
|
|
3044
|
+
json-stringify-safe "~5.0.1"
|
|
3045
|
+
mime-types "~2.1.7"
|
|
3046
|
+
oauth-sign "~0.8.1"
|
|
3047
|
+
qs "~6.3.0"
|
|
3048
|
+
stringstream "~0.0.4"
|
|
3049
|
+
tough-cookie "~2.3.0"
|
|
3050
|
+
tunnel-agent "~0.4.1"
|
|
3051
|
+
uuid "^3.0.0"
|
|
3052
|
+
|
|
2963
3053
|
require-directory@^2.1.1:
|
|
2964
3054
|
version "2.1.1"
|
|
2965
3055
|
resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
|
|
@@ -3013,7 +3103,7 @@ right-align@^0.1.1:
|
|
|
3013
3103
|
dependencies:
|
|
3014
3104
|
align-text "^0.1.1"
|
|
3015
3105
|
|
|
3016
|
-
rimraf@^2.2.8, rimraf@^2.5.2, rimraf@^2.6.2:
|
|
3106
|
+
rimraf@2, rimraf@^2.2.8, rimraf@^2.5.2, rimraf@^2.6.2:
|
|
3017
3107
|
version "2.6.2"
|
|
3018
3108
|
resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36"
|
|
3019
3109
|
dependencies:
|
|
@@ -3045,11 +3135,19 @@ seek-bzip@^1.0.5:
|
|
|
3045
3135
|
dependencies:
|
|
3046
3136
|
commander "~2.8.1"
|
|
3047
3137
|
|
|
3048
|
-
"semver@2 || 3 || 4 || 5", semver
|
|
3138
|
+
"semver@2 || 3 || 4 || 5", semver@^5.0.1, semver@^5.0.3, semver@^5.1.0, semver@^5.3.0, semver@^5.4.1:
|
|
3139
|
+
version "5.5.0"
|
|
3140
|
+
resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab"
|
|
3141
|
+
|
|
3142
|
+
semver@5.4.1:
|
|
3049
3143
|
version "5.4.1"
|
|
3050
3144
|
resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e"
|
|
3051
3145
|
|
|
3052
|
-
|
|
3146
|
+
semver@~5.3.0:
|
|
3147
|
+
version "5.3.0"
|
|
3148
|
+
resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f"
|
|
3149
|
+
|
|
3150
|
+
set-blocking@^2.0.0, set-blocking@~2.0.0:
|
|
3053
3151
|
version "2.0.0"
|
|
3054
3152
|
resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
|
|
3055
3153
|
|
|
@@ -3081,6 +3179,14 @@ slice-ansi@1.0.0:
|
|
|
3081
3179
|
dependencies:
|
|
3082
3180
|
is-fullwidth-code-point "^2.0.0"
|
|
3083
3181
|
|
|
3182
|
+
snappy@^6.0.1:
|
|
3183
|
+
version "6.0.1"
|
|
3184
|
+
resolved "https://registry.yarnpkg.com/snappy/-/snappy-6.0.1.tgz#747d23853102e6a1b8fa382f5245ab94bb43484e"
|
|
3185
|
+
dependencies:
|
|
3186
|
+
bindings "^1.3.0"
|
|
3187
|
+
nan "^2.6.1"
|
|
3188
|
+
node-gyp "^3.6.2"
|
|
3189
|
+
|
|
3084
3190
|
sntp@1.x.x:
|
|
3085
3191
|
version "1.0.9"
|
|
3086
3192
|
resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198"
|
|
@@ -3183,7 +3289,7 @@ stream-combiner@~0.0.4:
|
|
|
3183
3289
|
dependencies:
|
|
3184
3290
|
duplexer "~0.1.1"
|
|
3185
3291
|
|
|
3186
|
-
string-width@^1.0.1:
|
|
3292
|
+
string-width@^1.0.1, string-width@^1.0.2:
|
|
3187
3293
|
version "1.0.2"
|
|
3188
3294
|
resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
|
|
3189
3295
|
dependencies:
|
|
@@ -3317,6 +3423,14 @@ tar-stream@^1.5.2:
|
|
|
3317
3423
|
readable-stream "^2.0.0"
|
|
3318
3424
|
xtend "^4.0.0"
|
|
3319
3425
|
|
|
3426
|
+
tar@^2.0.0:
|
|
3427
|
+
version "2.2.1"
|
|
3428
|
+
resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1"
|
|
3429
|
+
dependencies:
|
|
3430
|
+
block-stream "*"
|
|
3431
|
+
fstream "^1.0.2"
|
|
3432
|
+
inherits "2"
|
|
3433
|
+
|
|
3320
3434
|
tempfile@^1.1.1:
|
|
3321
3435
|
version "1.1.1"
|
|
3322
3436
|
resolved "https://registry.yarnpkg.com/tempfile/-/tempfile-1.1.1.tgz#5bcc4eaecc4ab2c707d8bc11d99ccc9a2cb287f2"
|
|
@@ -3415,8 +3529,8 @@ type-check@~0.3.2:
|
|
|
3415
3529
|
prelude-ls "~1.1.2"
|
|
3416
3530
|
|
|
3417
3531
|
type-detect@^4.0.0:
|
|
3418
|
-
version "4.0.
|
|
3419
|
-
resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.
|
|
3532
|
+
version "4.0.7"
|
|
3533
|
+
resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.7.tgz#862bd2cf6058ad92799ff5a5b8cf7b6cec726198"
|
|
3420
3534
|
|
|
3421
3535
|
typedarray@^0.0.6:
|
|
3422
3536
|
version "0.0.6"
|
|
@@ -3483,8 +3597,8 @@ uuid@^2.0.1:
|
|
|
3483
3597
|
resolved "https://registry.yarnpkg.com/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a"
|
|
3484
3598
|
|
|
3485
3599
|
uuid@^3.0.0, uuid@^3.1.0:
|
|
3486
|
-
version "3.1
|
|
3487
|
-
resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.
|
|
3600
|
+
version "3.2.1"
|
|
3601
|
+
resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14"
|
|
3488
3602
|
|
|
3489
3603
|
validate-npm-package-license@^3.0.1:
|
|
3490
3604
|
version "3.0.1"
|
|
@@ -3505,12 +3619,18 @@ which-module@^2.0.0:
|
|
|
3505
3619
|
version "2.0.0"
|
|
3506
3620
|
resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
|
|
3507
3621
|
|
|
3508
|
-
which@^1.1.1, which@^1.2.9:
|
|
3622
|
+
which@1, which@^1.1.1, which@^1.2.9:
|
|
3509
3623
|
version "1.3.0"
|
|
3510
3624
|
resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a"
|
|
3511
3625
|
dependencies:
|
|
3512
3626
|
isexe "^2.0.0"
|
|
3513
3627
|
|
|
3628
|
+
wide-align@^1.1.0:
|
|
3629
|
+
version "1.1.2"
|
|
3630
|
+
resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710"
|
|
3631
|
+
dependencies:
|
|
3632
|
+
string-width "^1.0.2"
|
|
3633
|
+
|
|
3514
3634
|
window-size@0.1.0:
|
|
3515
3635
|
version "0.1.0"
|
|
3516
3636
|
resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d"
|