Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
brackets / opt / brackets / www / node_modules / array-unique / package.json
Size: Mime:
{
  "_args": [
    [
      {
        "raw": "array-unique@https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz",
        "scope": null,
        "escapedName": "array-unique",
        "name": "array-unique",
        "rawSpec": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz",
        "spec": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz",
        "type": "remote"
      },
      "/home/brktbldr/jenkins/nb/label/linux64/brackets/dist"
    ]
  ],
  "_from": "array-unique@>=0.2.1 <0.3.0",
  "_id": "array-unique@0.2.1",
  "_inCache": true,
  "_location": "/array-unique",
  "_phantomChildren": {},
  "_requested": {
    "raw": "array-unique@https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz",
    "scope": null,
    "escapedName": "array-unique",
    "name": "array-unique",
    "rawSpec": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz",
    "spec": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz",
    "type": "remote"
  },
  "_requiredBy": [
    "/",
    "/micromatch"
  ],
  "_resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz",
  "_shasum": "a1d97ccafcbc2625cc70fadceb36a50c58b01a53",
  "_shrinkwrap": null,
  "_spec": "array-unique@https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz",
  "_where": "/home/brktbldr/jenkins/nb/label/linux64/brackets/dist",
  "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": "*"
  },
  "engines": {
    "node": ">=0.10.0"
  },
  "files": [
    "index.js"
  ],
  "homepage": "https://github.com/jonschlinkert/array-unique",
  "license": {
    "type": "MIT",
    "url": "https://github.com/jonschlinkert/array-unique/blob/master/LICENSE"
  },
  "main": "index.js",
  "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"
}