package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "arr-union",
  3. "description": "Combines a list of arrays, returning a single array with unique values, using strict equality for comparisons.",
  4. "version": "2.1.0",
  5. "homepage": "https://github.com/jonschlinkert/arr-union",
  6. "author": {
  7. "name": "Jon Schlinkert",
  8. "url": "https://github.com/jonschlinkert"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "git://github.com/jonschlinkert/arr-union.git"
  13. },
  14. "bugs": {
  15. "url": "https://github.com/jonschlinkert/arr-union/issues"
  16. },
  17. "license": "MIT",
  18. "files": [
  19. "index.js"
  20. ],
  21. "main": "index.js",
  22. "engines": {
  23. "node": ">=0.10.0"
  24. },
  25. "scripts": {
  26. "test": "mocha"
  27. },
  28. "devDependencies": {
  29. "array-union": "^1.0.1",
  30. "array-unique": "^0.2.1",
  31. "benchmarked": "^0.1.3",
  32. "chalk": "^1.0.0",
  33. "minimist": "^1.1.1",
  34. "mocha": "^2.2.1",
  35. "should": "^5.2.0",
  36. "verb": "^0.8.6"
  37. },
  38. "keywords": [
  39. "add",
  40. "append",
  41. "array",
  42. "arrays",
  43. "combine",
  44. "concat",
  45. "extend",
  46. "union",
  47. "uniq",
  48. "unique",
  49. "util",
  50. "utility",
  51. "utils"
  52. ]
  53. }