Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKat Marchán <kzm@sykosomatic.org>2016-02-11 03:49:22 +0300
committerKat Marchán <kzm@sykosomatic.org>2016-02-12 01:23:05 +0300
commit987cabe8a18abcb5a685685958bf74c7258a979c (patch)
tree1f00752ff819ac5313e8c5f1f09720dbab93ea69 /node_modules/lodash.union
parent5c641f05fdc153c6bb06a89c46fe2a345ce413db (diff)
lodash.union@4.1.0
Credit: @jdalton
Diffstat (limited to 'node_modules/lodash.union')
-rw-r--r--node_modules/lodash.union/README.md4
-rw-r--r--node_modules/lodash.union/index.js48
-rw-r--r--node_modules/lodash.union/node_modules/lodash._root/LICENSE22
-rw-r--r--node_modules/lodash.union/node_modules/lodash._root/README.md18
-rw-r--r--node_modules/lodash.union/node_modules/lodash._root/index.js53
-rw-r--r--node_modules/lodash.union/node_modules/lodash._root/package.json94
-rw-r--r--node_modules/lodash.union/node_modules/lodash._setcache/node_modules/lodash._mapcache/README.md4
-rw-r--r--node_modules/lodash.union/node_modules/lodash._setcache/node_modules/lodash._mapcache/index.js46
-rw-r--r--node_modules/lodash.union/node_modules/lodash._setcache/node_modules/lodash._mapcache/package.json44
-rw-r--r--node_modules/lodash.union/package.json57
10 files changed, 248 insertions, 142 deletions
diff --git a/node_modules/lodash.union/README.md b/node_modules/lodash.union/README.md
index 657281e22..373d62f2e 100644
--- a/node_modules/lodash.union/README.md
+++ b/node_modules/lodash.union/README.md
@@ -1,4 +1,4 @@
-# lodash.union v4.0.2
+# lodash.union v4.1.0
The [lodash](https://lodash.com/) method `_.union` exported as a [Node.js](https://nodejs.org/) module.
@@ -15,4 +15,4 @@ In Node.js:
var union = require('lodash.union');
```
-See the [documentation](https://lodash.com/docs#union) or [package source](https://github.com/lodash/lodash/blob/4.0.2-npm-packages/lodash.union) for more details.
+See the [documentation](https://lodash.com/docs#union) or [package source](https://github.com/lodash/lodash/blob/4.1.0-npm-packages/lodash.union) for more details.
diff --git a/node_modules/lodash.union/index.js b/node_modules/lodash.union/index.js
index ab0637bba..db1ec1194 100644
--- a/node_modules/lodash.union/index.js
+++ b/node_modules/lodash.union/index.js
@@ -1,5 +1,5 @@
/**
- * lodash 4.0.2 (Custom Build) <https://lodash.com/>
+ * lodash 4.1.0 (Custom Build) <https://lodash.com/>
* Build: `lodash modularize exports="npm" -o ./`
* Copyright 2012-2016 The Dojo Foundation <http://dojofoundation.org/>
* Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
@@ -11,7 +11,8 @@ var SetCache = require('lodash._setcache'),
arrayIncludesWith = require('lodash._arrayincludeswith'),
baseFlatten = require('lodash._baseflatten'),
cacheHas = require('lodash._cachehas'),
- rest = require('lodash.rest');
+ rest = require('lodash.rest'),
+ root = require('lodash._root');
/** Used as the size to enable large array optimizations. */
var LARGE_ARRAY_SIZE = 200;
@@ -26,49 +27,6 @@ var reRegExpChar = /[\\^$.*+?()[\]{}|]/g;
/** Used to detect host constructors (Safari > 5). */
var reIsHostCtor = /^\[object .+?Constructor\]$/;
-/** Used to determine if values are of the language type `Object`. */
-var objectTypes = {
- 'function': true,
- 'object': true
-};
-
-/** Detect free variable `exports`. */
-var freeExports = (objectTypes[typeof exports] && exports && !exports.nodeType) ? exports : null;
-
-/** Detect free variable `module`. */
-var freeModule = (objectTypes[typeof module] && module && !module.nodeType) ? module : null;
-
-/** Detect free variable `global` from Node.js. */
-var freeGlobal = checkGlobal(freeExports && freeModule && typeof global == 'object' && global);
-
-/** Detect free variable `self`. */
-var freeSelf = checkGlobal(objectTypes[typeof self] && self);
-
-/** Detect free variable `window`. */
-var freeWindow = checkGlobal(objectTypes[typeof window] && window);
-
-/** Detect `this` as the global object. */
-var thisGlobal = checkGlobal(objectTypes[typeof this] && this);
-
-/**
- * Used as a reference to the global object.
- *
- * The `this` value is used if it's the global object to avoid Greasemonkey's
- * restricted `window` object, otherwise the `window` object is used.
- */
-var root = freeGlobal || ((freeWindow !== (thisGlobal && thisGlobal.window)) && freeWindow) || freeSelf || thisGlobal || Function('return this')();
-
-/**
- * Checks if `value` is a global object.
- *
- * @private
- * @param {*} value The value to check.
- * @returns {null|Object} Returns `value` if it's a global object, else `null`.
- */
-function checkGlobal(value) {
- return (value && value.Object === Object) ? value : null;
-}
-
/**
* Checks if `value` is a host object in IE < 9.
*
diff --git a/node_modules/lodash.union/node_modules/lodash._root/LICENSE b/node_modules/lodash.union/node_modules/lodash._root/LICENSE
new file mode 100644
index 000000000..b054ca5a3
--- /dev/null
+++ b/node_modules/lodash.union/node_modules/lodash._root/LICENSE
@@ -0,0 +1,22 @@
+Copyright 2012-2016 The Dojo Foundation <http://dojofoundation.org/>
+Based on Underscore.js, copyright 2009-2016 Jeremy Ashkenas,
+DocumentCloud and Investigative Reporters & Editors <http://underscorejs.org/>
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+"Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/node_modules/lodash.union/node_modules/lodash._root/README.md b/node_modules/lodash.union/node_modules/lodash._root/README.md
new file mode 100644
index 000000000..9372f4a97
--- /dev/null
+++ b/node_modules/lodash.union/node_modules/lodash._root/README.md
@@ -0,0 +1,18 @@
+# lodash._root v3.0.0
+
+The internal [lodash](https://lodash.com/) function `root` exported as a [Node.js](https://nodejs.org/) module.
+
+## Installation
+
+Using npm:
+```bash
+$ {sudo -H} npm i -g npm
+$ npm i --save lodash._root
+```
+
+In Node.js:
+```js
+var root = require('lodash._root');
+```
+
+See the [package source](https://github.com/lodash/lodash/blob/3.0.0-npm-packages/lodash._root) for more details.
diff --git a/node_modules/lodash.union/node_modules/lodash._root/index.js b/node_modules/lodash.union/node_modules/lodash._root/index.js
new file mode 100644
index 000000000..469812486
--- /dev/null
+++ b/node_modules/lodash.union/node_modules/lodash._root/index.js
@@ -0,0 +1,53 @@
+/**
+ * lodash 3.0.0 (Custom Build) <https://lodash.com/>
+ * Build: `lodash modularize exports="npm" -o ./`
+ * Copyright 2012-2016 The Dojo Foundation <http://dojofoundation.org/>
+ * Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
+ * Copyright 2009-2016 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
+ * Available under MIT license <https://lodash.com/license>
+ */
+
+/** Used to determine if values are of the language type `Object`. */
+var objectTypes = {
+ 'function': true,
+ 'object': true
+};
+
+/** Detect free variable `exports`. */
+var freeExports = (objectTypes[typeof exports] && exports && !exports.nodeType) ? exports : null;
+
+/** Detect free variable `module`. */
+var freeModule = (objectTypes[typeof module] && module && !module.nodeType) ? module : null;
+
+/** Detect free variable `global` from Node.js. */
+var freeGlobal = checkGlobal(freeExports && freeModule && typeof global == 'object' && global);
+
+/** Detect free variable `self`. */
+var freeSelf = checkGlobal(objectTypes[typeof self] && self);
+
+/** Detect free variable `window`. */
+var freeWindow = checkGlobal(objectTypes[typeof window] && window);
+
+/** Detect `this` as the global object. */
+var thisGlobal = checkGlobal(objectTypes[typeof this] && this);
+
+/**
+ * Used as a reference to the global object.
+ *
+ * The `this` value is used if it's the global object to avoid Greasemonkey's
+ * restricted `window` object, otherwise the `window` object is used.
+ */
+var root = freeGlobal || ((freeWindow !== (thisGlobal && thisGlobal.window)) && freeWindow) || freeSelf || thisGlobal || Function('return this')();
+
+/**
+ * Checks if `value` is a global object.
+ *
+ * @private
+ * @param {*} value The value to check.
+ * @returns {null|Object} Returns `value` if it's a global object, else `null`.
+ */
+function checkGlobal(value) {
+ return (value && value.Object === Object) ? value : null;
+}
+
+module.exports = root;
diff --git a/node_modules/lodash.union/node_modules/lodash._root/package.json b/node_modules/lodash.union/node_modules/lodash._root/package.json
new file mode 100644
index 000000000..1854ba6a8
--- /dev/null
+++ b/node_modules/lodash.union/node_modules/lodash._root/package.json
@@ -0,0 +1,94 @@
+{
+ "_args": [
+ [
+ "lodash._root@^3.0.0",
+ "/Users/zkat/Documents/code/npm/node_modules/lodash.union"
+ ]
+ ],
+ "_from": "lodash._root@>=3.0.0 <4.0.0",
+ "_id": "lodash._root@3.0.0",
+ "_inCache": true,
+ "_installable": true,
+ "_location": "/lodash.union/lodash._root",
+ "_nodeVersion": "5.5.0",
+ "_npmOperationalInternal": {
+ "host": "packages-9-west.internal.npmjs.com",
+ "tmp": "tmp/lodash._root-3.0.0.tgz_1454898276727_0.4872864377684891"
+ },
+ "_npmUser": {
+ "email": "john.david.dalton@gmail.com",
+ "name": "jdalton"
+ },
+ "_npmVersion": "2.14.18",
+ "_phantomChildren": {},
+ "_requested": {
+ "name": "lodash._root",
+ "raw": "lodash._root@^3.0.0",
+ "rawSpec": "^3.0.0",
+ "scope": null,
+ "spec": ">=3.0.0 <4.0.0",
+ "type": "range"
+ },
+ "_requiredBy": [
+ "/lodash.union",
+ "/lodash.union/lodash._setcache/lodash._mapcache"
+ ],
+ "_resolved": "https://registry.npmjs.org/lodash._root/-/lodash._root-3.0.0.tgz",
+ "_shasum": "fe2fba5117f3e12c3cf7e13b3993b20f745727b7",
+ "_shrinkwrap": null,
+ "_spec": "lodash._root@^3.0.0",
+ "_where": "/Users/zkat/Documents/code/npm/node_modules/lodash.union",
+ "author": {
+ "email": "john.david.dalton@gmail.com",
+ "name": "John-David Dalton",
+ "url": "http://allyoucanleet.com/"
+ },
+ "bugs": {
+ "url": "https://github.com/lodash/lodash/issues"
+ },
+ "contributors": [
+ {
+ "email": "john.david.dalton@gmail.com",
+ "name": "John-David Dalton",
+ "url": "http://allyoucanleet.com/"
+ },
+ {
+ "email": "blaine@iceddev.com",
+ "name": "Blaine Bublitz",
+ "url": "https://github.com/phated"
+ },
+ {
+ "email": "mathias@qiwi.be",
+ "name": "Mathias Bynens",
+ "url": "https://mathiasbynens.be/"
+ }
+ ],
+ "dependencies": {},
+ "description": "The internal lodash function `root` exported as a module.",
+ "devDependencies": {},
+ "directories": {},
+ "dist": {
+ "shasum": "fe2fba5117f3e12c3cf7e13b3993b20f745727b7",
+ "tarball": "http://registry.npmjs.org/lodash._root/-/lodash._root-3.0.0.tgz"
+ },
+ "homepage": "https://lodash.com/",
+ "icon": "https://lodash.com/icon.svg",
+ "license": "MIT",
+ "maintainers": [
+ {
+ "email": "john.david.dalton@gmail.com",
+ "name": "jdalton"
+ }
+ ],
+ "name": "lodash._root",
+ "optionalDependencies": {},
+ "readme": "ERROR: No README data found!",
+ "repository": {
+ "type": "git",
+ "url": "git+https://github.com/lodash/lodash.git"
+ },
+ "scripts": {
+ "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\""
+ },
+ "version": "3.0.0"
+}
diff --git a/node_modules/lodash.union/node_modules/lodash._setcache/node_modules/lodash._mapcache/README.md b/node_modules/lodash.union/node_modules/lodash._setcache/node_modules/lodash._mapcache/README.md
index e5a9fd143..c011ef170 100644
--- a/node_modules/lodash.union/node_modules/lodash._setcache/node_modules/lodash._mapcache/README.md
+++ b/node_modules/lodash.union/node_modules/lodash._setcache/node_modules/lodash._mapcache/README.md
@@ -1,4 +1,4 @@
-# lodash._mapcache v4.0.1
+# lodash._mapcache v4.1.0
The internal [lodash](https://lodash.com/) function `MapCache` exported as a [Node.js](https://nodejs.org/) module.
@@ -15,4 +15,4 @@ In Node.js:
var MapCache = require('lodash._mapcache');
```
-See the [package source](https://github.com/lodash/lodash/blob/4.0.1-npm-packages/lodash._mapcache) for more details.
+See the [package source](https://github.com/lodash/lodash/blob/4.1.0-npm-packages/lodash._mapcache) for more details.
diff --git a/node_modules/lodash.union/node_modules/lodash._setcache/node_modules/lodash._mapcache/index.js b/node_modules/lodash.union/node_modules/lodash._setcache/node_modules/lodash._mapcache/index.js
index 415eb1fb7..fad3ae61b 100644
--- a/node_modules/lodash.union/node_modules/lodash._setcache/node_modules/lodash._mapcache/index.js
+++ b/node_modules/lodash.union/node_modules/lodash._setcache/node_modules/lodash._mapcache/index.js
@@ -1,11 +1,12 @@
/**
- * lodash 4.0.1 (Custom Build) <https://lodash.com/>
+ * lodash 4.1.0 (Custom Build) <https://lodash.com/>
* Build: `lodash modularize exports="npm" -o ./`
* Copyright 2012-2016 The Dojo Foundation <http://dojofoundation.org/>
* Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
* Copyright 2009-2016 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
* Available under MIT license <https://lodash.com/license>
*/
+var root = require('lodash._root');
/** Used to stand-in for `undefined` hash values. */
var HASH_UNDEFINED = '__lodash_hash_undefined__';
@@ -20,49 +21,6 @@ var reRegExpChar = /[\\^$.*+?()[\]{}|]/g;
/** Used to detect host constructors (Safari > 5). */
var reIsHostCtor = /^\[object .+?Constructor\]$/;
-/** Used to determine if values are of the language type `Object`. */
-var objectTypes = {
- 'function': true,
- 'object': true
-};
-
-/** Detect free variable `exports`. */
-var freeExports = (objectTypes[typeof exports] && exports && !exports.nodeType) ? exports : null;
-
-/** Detect free variable `module`. */
-var freeModule = (objectTypes[typeof module] && module && !module.nodeType) ? module : null;
-
-/** Detect free variable `global` from Node.js. */
-var freeGlobal = checkGlobal(freeExports && freeModule && typeof global == 'object' && global);
-
-/** Detect free variable `self`. */
-var freeSelf = checkGlobal(objectTypes[typeof self] && self);
-
-/** Detect free variable `window`. */
-var freeWindow = checkGlobal(objectTypes[typeof window] && window);
-
-/** Detect `this` as the global object. */
-var thisGlobal = checkGlobal(objectTypes[typeof this] && this);
-
-/**
- * Used as a reference to the global object.
- *
- * The `this` value is used if it's the global object to avoid Greasemonkey's
- * restricted `window` object, otherwise the `window` object is used.
- */
-var root = freeGlobal || ((freeWindow !== (thisGlobal && thisGlobal.window)) && freeWindow) || freeSelf || thisGlobal || Function('return this')();
-
-/**
- * Checks if `value` is a global object.
- *
- * @private
- * @param {*} value The value to check.
- * @returns {null|Object} Returns `value` if it's a global object, else `null`.
- */
-function checkGlobal(value) {
- return (value && value.Object === Object) ? value : null;
-}
-
/**
* Checks if `value` is a host object in IE < 9.
*
diff --git a/node_modules/lodash.union/node_modules/lodash._setcache/node_modules/lodash._mapcache/package.json b/node_modules/lodash.union/node_modules/lodash._setcache/node_modules/lodash._mapcache/package.json
index 3988c0da9..72f15d1b1 100644
--- a/node_modules/lodash.union/node_modules/lodash._setcache/node_modules/lodash._mapcache/package.json
+++ b/node_modules/lodash.union/node_modules/lodash._setcache/node_modules/lodash._mapcache/package.json
@@ -2,24 +2,24 @@
"_args": [
[
"lodash._mapcache@^4.0.0",
- "/Users/rebecca/code/npm/node_modules/lodash.union/node_modules/lodash._setcache"
+ "/Users/zkat/Documents/code/npm/node_modules/lodash.union/node_modules/lodash._setcache"
]
],
"_from": "lodash._mapcache@>=4.0.0 <5.0.0",
- "_id": "lodash._mapcache@4.0.1",
+ "_id": "lodash._mapcache@4.1.0",
"_inCache": true,
"_installable": true,
"_location": "/lodash.union/lodash._setcache/lodash._mapcache",
- "_nodeVersion": "5.4.0",
+ "_nodeVersion": "5.5.0",
"_npmOperationalInternal": {
"host": "packages-9-west.internal.npmjs.com",
- "tmp": "tmp/lodash._mapcache-4.0.1.tgz_1454484290388_0.2519109307322651"
+ "tmp": "tmp/lodash._mapcache-4.1.0.tgz_1454898271298_0.09834620845504105"
},
"_npmUser": {
"email": "john.david.dalton@gmail.com",
"name": "jdalton"
},
- "_npmVersion": "2.14.15",
+ "_npmVersion": "2.14.18",
"_phantomChildren": {},
"_requested": {
"name": "lodash._mapcache",
@@ -32,11 +32,11 @@
"_requiredBy": [
"/lodash.union/lodash._setcache"
],
- "_resolved": "https://registry.npmjs.org/lodash._mapcache/-/lodash._mapcache-4.0.1.tgz",
- "_shasum": "f9815450d837741c827e20389075d6ac10678535",
+ "_resolved": "https://registry.npmjs.org/lodash._mapcache/-/lodash._mapcache-4.1.0.tgz",
+ "_shasum": "c4815d2446e43554e564b1ea9cbd8501f7a4fdc5",
"_shrinkwrap": null,
"_spec": "lodash._mapcache@^4.0.0",
- "_where": "/Users/rebecca/code/npm/node_modules/lodash.union/node_modules/lodash._setcache",
+ "_where": "/Users/zkat/Documents/code/npm/node_modules/lodash.union/node_modules/lodash._setcache",
"author": {
"email": "john.david.dalton@gmail.com",
"name": "John-David Dalton",
@@ -47,44 +47,46 @@
},
"contributors": [
{
- "name": "John-David Dalton",
"email": "john.david.dalton@gmail.com",
+ "name": "John-David Dalton",
"url": "http://allyoucanleet.com/"
},
{
- "name": "Blaine Bublitz",
"email": "blaine@iceddev.com",
+ "name": "Blaine Bublitz",
"url": "https://github.com/phated"
},
{
- "name": "Mathias Bynens",
"email": "mathias@qiwi.be",
+ "name": "Mathias Bynens",
"url": "https://mathiasbynens.be/"
}
],
- "dependencies": {},
+ "dependencies": {
+ "lodash._root": "^3.0.0"
+ },
"description": "The internal lodash function `MapCache` exported as a module.",
"devDependencies": {},
"directories": {},
"dist": {
- "shasum": "f9815450d837741c827e20389075d6ac10678535",
- "tarball": "http://registry.npmjs.org/lodash._mapcache/-/lodash._mapcache-4.0.1.tgz"
+ "shasum": "c4815d2446e43554e564b1ea9cbd8501f7a4fdc5",
+ "tarball": "http://registry.npmjs.org/lodash._mapcache/-/lodash._mapcache-4.1.0.tgz"
},
"homepage": "https://lodash.com/",
"icon": "https://lodash.com/icon.svg",
"license": "MIT",
"maintainers": [
{
- "name": "jdalton",
- "email": "john.david.dalton@gmail.com"
+ "email": "john.david.dalton@gmail.com",
+ "name": "jdalton"
},
{
- "name": "mathias",
- "email": "mathias@qiwi.be"
+ "email": "mathias@qiwi.be",
+ "name": "mathias"
},
{
- "name": "phated",
- "email": "blaine.bublitz@gmail.com"
+ "email": "blaine.bublitz@gmail.com",
+ "name": "phated"
}
],
"name": "lodash._mapcache",
@@ -97,5 +99,5 @@
"scripts": {
"test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\""
},
- "version": "4.0.1"
+ "version": "4.1.0"
}
diff --git a/node_modules/lodash.union/package.json b/node_modules/lodash.union/package.json
index 33ee21467..bc76ec440 100644
--- a/node_modules/lodash.union/package.json
+++ b/node_modules/lodash.union/package.json
@@ -1,42 +1,42 @@
{
"_args": [
[
- "lodash.union@~4.0.1",
- "/Users/rebecca/code/npm"
+ "lodash.union@4.1.0",
+ "/Users/zkat/Documents/code/npm"
]
],
- "_from": "lodash.union@>=4.0.1 <4.1.0",
- "_id": "lodash.union@4.0.2",
+ "_from": "lodash.union@4.1.0",
+ "_id": "lodash.union@4.1.0",
"_inCache": true,
"_installable": true,
"_location": "/lodash.union",
- "_nodeVersion": "5.4.0",
+ "_nodeVersion": "5.5.0",
"_npmOperationalInternal": {
- "host": "packages-5-east.internal.npmjs.com",
- "tmp": "tmp/lodash.union-4.0.2.tgz_1454484786361_0.1982759500388056"
+ "host": "packages-9-west.internal.npmjs.com",
+ "tmp": "tmp/lodash.union-4.1.0.tgz_1454898749957_0.9112280844710767"
},
"_npmUser": {
"email": "john.david.dalton@gmail.com",
"name": "jdalton"
},
- "_npmVersion": "2.14.15",
+ "_npmVersion": "2.14.18",
"_phantomChildren": {},
"_requested": {
"name": "lodash.union",
- "raw": "lodash.union@~4.0.1",
- "rawSpec": "~4.0.1",
+ "raw": "lodash.union@4.1.0",
+ "rawSpec": "4.1.0",
"scope": null,
- "spec": ">=4.0.1 <4.1.0",
- "type": "range"
+ "spec": "4.1.0",
+ "type": "version"
},
"_requiredBy": [
"/"
],
- "_resolved": "https://registry.npmjs.org/lodash.union/-/lodash.union-4.0.2.tgz",
- "_shasum": "280a5e37cdaf613f7b280a3976234113dec1fb05",
+ "_resolved": "https://registry.npmjs.org/lodash.union/-/lodash.union-4.1.0.tgz",
+ "_shasum": "2d4336729a5032e48e3556512cd69339e4c809fd",
"_shrinkwrap": null,
- "_spec": "lodash.union@~4.0.1",
- "_where": "/Users/rebecca/code/npm",
+ "_spec": "lodash.union@4.1.0",
+ "_where": "/Users/zkat/Documents/code/npm",
"author": {
"email": "john.david.dalton@gmail.com",
"name": "John-David Dalton",
@@ -47,18 +47,18 @@
},
"contributors": [
{
- "name": "John-David Dalton",
"email": "john.david.dalton@gmail.com",
+ "name": "John-David Dalton",
"url": "http://allyoucanleet.com/"
},
{
- "name": "Blaine Bublitz",
"email": "blaine@iceddev.com",
+ "name": "Blaine Bublitz",
"url": "https://github.com/phated"
},
{
- "name": "Mathias Bynens",
"email": "mathias@qiwi.be",
+ "name": "Mathias Bynens",
"url": "https://mathiasbynens.be/"
}
],
@@ -67,6 +67,7 @@
"lodash._arrayincludeswith": "^4.0.0",
"lodash._baseflatten": "^4.0.0",
"lodash._cachehas": "^4.0.0",
+ "lodash._root": "^3.0.0",
"lodash._setcache": "^4.0.0",
"lodash.rest": "^4.0.0"
},
@@ -74,8 +75,8 @@
"devDependencies": {},
"directories": {},
"dist": {
- "shasum": "280a5e37cdaf613f7b280a3976234113dec1fb05",
- "tarball": "http://registry.npmjs.org/lodash.union/-/lodash.union-4.0.2.tgz"
+ "shasum": "2d4336729a5032e48e3556512cd69339e4c809fd",
+ "tarball": "http://registry.npmjs.org/lodash.union/-/lodash.union-4.1.0.tgz"
},
"homepage": "https://lodash.com/",
"icon": "https://lodash.com/icon.svg",
@@ -86,16 +87,16 @@
"license": "MIT",
"maintainers": [
{
- "name": "jdalton",
- "email": "john.david.dalton@gmail.com"
+ "email": "john.david.dalton@gmail.com",
+ "name": "jdalton"
},
{
- "name": "mathias",
- "email": "mathias@qiwi.be"
+ "email": "mathias@qiwi.be",
+ "name": "mathias"
},
{
- "name": "phated",
- "email": "blaine@iceddev.com"
+ "email": "blaine@iceddev.com",
+ "name": "phated"
}
],
"name": "lodash.union",
@@ -108,5 +109,5 @@
"scripts": {
"test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\""
},
- "version": "4.0.2"
+ "version": "4.1.0"
}