109 lines
3.1 KiB
JSON
109 lines
3.1 KiB
JSON
{
|
|
"_args": [
|
|
[
|
|
{
|
|
"raw": "array-union@^1.0.1",
|
|
"scope": null,
|
|
"escapedName": "array-union",
|
|
"name": "array-union",
|
|
"rawSpec": "^1.0.1",
|
|
"spec": ">=1.0.1 <2.0.0",
|
|
"type": "range"
|
|
},
|
|
"/Volumes/2009-SSD/GT2/GT2-iOS/node_modules/globby"
|
|
]
|
|
],
|
|
"_from": "array-union@>=1.0.1 <2.0.0",
|
|
"_id": "array-union@1.0.2",
|
|
"_inCache": true,
|
|
"_location": "/array-union",
|
|
"_nodeVersion": "4.4.2",
|
|
"_npmOperationalInternal": {
|
|
"host": "packages-16-east.internal.npmjs.com",
|
|
"tmp": "tmp/array-union-1.0.2.tgz_1466079411551_0.23353995219804347"
|
|
},
|
|
"_npmUser": {
|
|
"name": "sindresorhus",
|
|
"email": "sindresorhus@gmail.com"
|
|
},
|
|
"_npmVersion": "2.15.0",
|
|
"_phantomChildren": {},
|
|
"_requested": {
|
|
"raw": "array-union@^1.0.1",
|
|
"scope": null,
|
|
"escapedName": "array-union",
|
|
"name": "array-union",
|
|
"rawSpec": "^1.0.1",
|
|
"spec": ">=1.0.1 <2.0.0",
|
|
"type": "range"
|
|
},
|
|
"_requiredBy": [
|
|
"/globby"
|
|
],
|
|
"_resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz",
|
|
"_shasum": "9a34410e4f4e3da23dea375be5be70f24778ec39",
|
|
"_shrinkwrap": null,
|
|
"_spec": "array-union@^1.0.1",
|
|
"_where": "/Volumes/2009-SSD/GT2/GT2-iOS/node_modules/globby",
|
|
"author": {
|
|
"name": "Sindre Sorhus",
|
|
"email": "sindresorhus@gmail.com",
|
|
"url": "sindresorhus.com"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/sindresorhus/array-union/issues"
|
|
},
|
|
"dependencies": {
|
|
"array-uniq": "^1.0.1"
|
|
},
|
|
"description": "Create an array of unique values, in order, from the input arrays",
|
|
"devDependencies": {
|
|
"ava": "*",
|
|
"xo": "*"
|
|
},
|
|
"directories": {},
|
|
"dist": {
|
|
"shasum": "9a34410e4f4e3da23dea375be5be70f24778ec39",
|
|
"tarball": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz"
|
|
},
|
|
"engines": {
|
|
"node": ">=0.10.0"
|
|
},
|
|
"files": [
|
|
"index.js"
|
|
],
|
|
"gitHead": "34e1d6a80baa4eac9723795a0674c14119ace1bd",
|
|
"homepage": "https://github.com/sindresorhus/array-union#readme",
|
|
"keywords": [
|
|
"array",
|
|
"arr",
|
|
"set",
|
|
"uniq",
|
|
"unique",
|
|
"duplicate",
|
|
"remove",
|
|
"union",
|
|
"combine",
|
|
"merge"
|
|
],
|
|
"license": "MIT",
|
|
"maintainers": [
|
|
{
|
|
"name": "sindresorhus",
|
|
"email": "sindresorhus@gmail.com"
|
|
}
|
|
],
|
|
"name": "array-union",
|
|
"optionalDependencies": {},
|
|
"readme": "# array-union [![Build Status](https://travis-ci.org/sindresorhus/array-union.svg?branch=master)](https://travis-ci.org/sindresorhus/array-union)\n\n> Create an array of unique values, in order, from the input arrays\n\n\n## Install\n\n```\n$ npm install --save array-union\n```\n\n\n## Usage\n\n```js\nconst arrayUnion = require('array-union');\n\narrayUnion([1, 1, 2, 3], [2, 3]);\n//=> [1, 2, 3]\n\narrayUnion(['foo', 'foo', 'bar'], ['foo']);\n//=> ['foo', 'bar']\n```\n\n\n## License\n\nMIT © [Sindre Sorhus](https://sindresorhus.com)\n",
|
|
"readmeFilename": "readme.md",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/sindresorhus/array-union.git"
|
|
},
|
|
"scripts": {
|
|
"test": "xo && ava"
|
|
},
|
|
"version": "1.0.2"
|
|
}
|