{ "_args": [ [ { "raw": "array-unique@^0.2.1", "scope": null, "escapedName": "array-unique", "name": "array-unique", "rawSpec": "^0.2.1", "spec": ">=0.2.1 <0.3.0", "type": "range" }, "/home/jdaugherty/work/GT2/GT2-Android/node_modules/micromatch" ] ], "_from": "array-unique@>=0.2.1 <0.3.0", "_id": "array-unique@0.2.1", "_inCache": true, "_location": "/array-unique", "_nodeVersion": "1.6.2", "_npmUser": { "name": "jonschlinkert", "email": "github@sellside.com" }, "_npmVersion": "2.7.1", "_phantomChildren": {}, "_requested": { "raw": "array-unique@^0.2.1", "scope": null, "escapedName": "array-unique", "name": "array-unique", "rawSpec": "^0.2.1", "spec": ">=0.2.1 <0.3.0", "type": "range" }, "_requiredBy": [ "/micromatch" ], "_resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz", "_shasum": "a1d97ccafcbc2625cc70fadceb36a50c58b01a53", "_shrinkwrap": null, "_spec": "array-unique@^0.2.1", "_where": "/home/jdaugherty/work/GT2/GT2-Android/node_modules/micromatch", "author": { "name": "Jon Schlinkert", "url": "https://github.com/jonschlinkert" }, "bugs": { "url": "https://github.com/jonschlinkert/array-unique/issues" }, "dependencies": {}, "description": "Return an array free of duplicate values. Fastest ES5 implementation.", "devDependencies": { "array-uniq": "^1.0.2", "benchmarked": "^0.1.3", "mocha": "*", "should": "*" }, "directories": {}, "dist": { "shasum": "a1d97ccafcbc2625cc70fadceb36a50c58b01a53", "tarball": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz" }, "engines": { "node": ">=0.10.0" }, "files": [ "index.js" ], "gitHead": "36fde8e586fb7cf880b8b3aa6515df889e64ed85", "homepage": "https://github.com/jonschlinkert/array-unique", "license": { "type": "MIT", "url": "https://github.com/jonschlinkert/array-unique/blob/master/LICENSE" }, "main": "index.js", "maintainers": [ { "name": "jonschlinkert", "email": "github@sellside.com" } ], "name": "array-unique", "optionalDependencies": {}, "readme": "# array-unique [![NPM version](https://badge.fury.io/js/array-unique.svg)](http://badge.fury.io/js/array-unique) [![Build Status](https://travis-ci.org/jonschlinkert/array-unique.svg)](https://travis-ci.org/jonschlinkert/array-unique) \n\n> Return an array free of duplicate values. Fastest ES5 implementation.\n\n## Install with [npm](npmjs.org)\n\n```bash\nnpm i array-unique --save\n```\n\n## Usage\n\n```js\nvar unique = require('array-unique');\n\nunique(['a', 'b', 'c', 'c']);\n//=> ['a', 'b', 'c']\n```\n\n## Related\n* [arr-diff](https://github.com/jonschlinkert/arr-diff): Returns an array with only the unique values from the first array, by excluding all values from additional arrays using strict equality for comparisons.\n* [arr-union](https://github.com/jonschlinkert/arr-union): Returns an array of unique values using strict equality for comparisons.\n* [arr-flatten](https://github.com/jonschlinkert/arr-flatten): Recursively flatten an array or arrays. This is the fastest implementation of array flatten.\n* [arr-reduce](https://github.com/jonschlinkert/arr-reduce): Fast array reduce that also loops over sparse elements.\n* [arr-map](https://github.com/jonschlinkert/arr-map): Faster, node.js focused alternative to JavaScript's native array map.\n* [arr-pluck](https://github.com/jonschlinkert/arr-pluck): Retrieves the value of a specified property from all elements in the collection.\n\n## Run tests\nInstall dev dependencies.\n\n```bash\nnpm i -d && npm test\n```\n\n## Contributing\nPull requests and stars are always welcome. For bugs and feature requests, [please create an issue](https://github.com/jonschlinkert/array-unique/issues)\n\n## Author\n\n**Jon Schlinkert**\n \n+ [github/jonschlinkert](https://github.com/jonschlinkert)\n+ [twitter/jonschlinkert](http://twitter.com/jonschlinkert) \n\n## License\nCopyright (c) 2015 Jon Schlinkert \nReleased under the MIT license\n\n***\n\n_This file was generated by [verb-cli](https://github.com/assemble/verb-cli) on March 24, 2015._", "readmeFilename": "README.md", "repository": { "type": "git", "url": "git://github.com/jonschlinkert/array-unique.git" }, "scripts": { "test": "mocha" }, "version": "0.2.1" }