package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "arr-diff",
  3. "description": "Returns an array with only the unique values from the first array, by excluding all values from additional arrays using strict equality for comparisons.",
  4. "version": "2.0.0",
  5. "homepage": "https://github.com/jonschlinkert/arr-diff",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "repository": "jonschlinkert/arr-diff",
  8. "bugs": {
  9. "url": "https://github.com/jonschlinkert/arr-diff/issues"
  10. },
  11. "license": "MIT",
  12. "files": [
  13. "index.js"
  14. ],
  15. "main": "index.js",
  16. "engines": {
  17. "node": ">=0.10.0"
  18. },
  19. "scripts": {
  20. "test": "mocha"
  21. },
  22. "dependencies": {
  23. "arr-flatten": "^1.0.1"
  24. },
  25. "devDependencies": {
  26. "array-differ": "^1.0.0",
  27. "array-slice": "^0.2.3",
  28. "benchmarked": "^0.1.4",
  29. "chalk": "^1.1.1",
  30. "mocha": "*",
  31. "should": "*"
  32. },
  33. "keywords": [
  34. "arr",
  35. "array",
  36. "diff",
  37. "differ",
  38. "difference"
  39. ],
  40. "verb": {
  41. "related": {
  42. "list": [
  43. "arr-flatten",
  44. "array-filter",
  45. "array-intersection"
  46. ]
  47. }
  48. }
  49. }