107 lines
3.2 KiB
JSON
107 lines
3.2 KiB
JSON
|
{
|
||
|
"_args": [
|
||
|
[
|
||
|
{
|
||
|
"raw": "array-uniq@^1.0.1",
|
||
|
"scope": null,
|
||
|
"escapedName": "array-uniq",
|
||
|
"name": "array-uniq",
|
||
|
"rawSpec": "^1.0.1",
|
||
|
"spec": ">=1.0.1 <2.0.0",
|
||
|
"type": "range"
|
||
|
},
|
||
|
"/Volumes/2009-SSD/GT2/GT2-iOS/node_modules/array-union"
|
||
|
]
|
||
|
],
|
||
|
"_from": "array-uniq@>=1.0.1 <2.0.0",
|
||
|
"_id": "array-uniq@1.0.3",
|
||
|
"_inCache": true,
|
||
|
"_location": "/array-uniq",
|
||
|
"_nodeVersion": "4.4.2",
|
||
|
"_npmOperationalInternal": {
|
||
|
"host": "packages-12-west.internal.npmjs.com",
|
||
|
"tmp": "tmp/array-uniq-1.0.3.tgz_1466079716839_0.9139188586268574"
|
||
|
},
|
||
|
"_npmUser": {
|
||
|
"name": "sindresorhus",
|
||
|
"email": "sindresorhus@gmail.com"
|
||
|
},
|
||
|
"_npmVersion": "2.15.0",
|
||
|
"_phantomChildren": {},
|
||
|
"_requested": {
|
||
|
"raw": "array-uniq@^1.0.1",
|
||
|
"scope": null,
|
||
|
"escapedName": "array-uniq",
|
||
|
"name": "array-uniq",
|
||
|
"rawSpec": "^1.0.1",
|
||
|
"spec": ">=1.0.1 <2.0.0",
|
||
|
"type": "range"
|
||
|
},
|
||
|
"_requiredBy": [
|
||
|
"/array-union"
|
||
|
],
|
||
|
"_resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz",
|
||
|
"_shasum": "af6ac877a25cc7f74e058894753858dfdb24fdb6",
|
||
|
"_shrinkwrap": null,
|
||
|
"_spec": "array-uniq@^1.0.1",
|
||
|
"_where": "/Volumes/2009-SSD/GT2/GT2-iOS/node_modules/array-union",
|
||
|
"author": {
|
||
|
"name": "Sindre Sorhus",
|
||
|
"email": "sindresorhus@gmail.com",
|
||
|
"url": "sindresorhus.com"
|
||
|
},
|
||
|
"bugs": {
|
||
|
"url": "https://github.com/sindresorhus/array-uniq/issues"
|
||
|
},
|
||
|
"dependencies": {},
|
||
|
"description": "Create an array without duplicates",
|
||
|
"devDependencies": {
|
||
|
"ava": "*",
|
||
|
"es6-set": "^0.1.0",
|
||
|
"require-uncached": "^1.0.2",
|
||
|
"xo": "*"
|
||
|
},
|
||
|
"directories": {},
|
||
|
"dist": {
|
||
|
"shasum": "af6ac877a25cc7f74e058894753858dfdb24fdb6",
|
||
|
"tarball": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz"
|
||
|
},
|
||
|
"engines": {
|
||
|
"node": ">=0.10.0"
|
||
|
},
|
||
|
"files": [
|
||
|
"index.js"
|
||
|
],
|
||
|
"gitHead": "3b5bf5a90a585b3950284d575f33d09663f6083a",
|
||
|
"homepage": "https://github.com/sindresorhus/array-uniq#readme",
|
||
|
"keywords": [
|
||
|
"array",
|
||
|
"arr",
|
||
|
"set",
|
||
|
"uniq",
|
||
|
"unique",
|
||
|
"es6",
|
||
|
"duplicate",
|
||
|
"remove"
|
||
|
],
|
||
|
"license": "MIT",
|
||
|
"maintainers": [
|
||
|
{
|
||
|
"name": "sindresorhus",
|
||
|
"email": "sindresorhus@gmail.com"
|
||
|
}
|
||
|
],
|
||
|
"name": "array-uniq",
|
||
|
"optionalDependencies": {},
|
||
|
"readme": "# array-uniq [![Build Status](https://travis-ci.org/sindresorhus/array-uniq.svg?branch=master)](https://travis-ci.org/sindresorhus/array-uniq)\n\n> Create an array without duplicates\n\nIt's already pretty fast, but will be much faster when [Set](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set) becomes available in V8 (especially with large arrays).\n\n\n## Install\n\n```\n$ npm install --save array-uniq\n```\n\n\n## Usage\n\n```js\nconst arrayUniq = require('array-uniq');\n\narrayUniq([1, 1, 2, 3, 3]);\n//=> [1, 2, 3]\n\narrayUniq(['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-uniq.git"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"test": "xo && ava"
|
||
|
},
|
||
|
"version": "1.0.3"
|
||
|
}
|