Keine Beschreibung

package.json 1.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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": "3.1.0",
  5. "homepage": "https://github.com/jonschlinkert/arr-union",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "repository": "jonschlinkert/arr-union",
  8. "bugs": {
  9. "url": "https://github.com/jonschlinkert/arr-union/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. "devDependencies": {
  23. "ansi-bold": "^0.1.1",
  24. "array-union": "^1.0.1",
  25. "array-unique": "^0.2.1",
  26. "benchmarked": "^0.1.4",
  27. "gulp-format-md": "^0.1.7",
  28. "minimist": "^1.1.1",
  29. "mocha": "*",
  30. "should": "*"
  31. },
  32. "keywords": [
  33. "add",
  34. "append",
  35. "array",
  36. "arrays",
  37. "combine",
  38. "concat",
  39. "extend",
  40. "union",
  41. "uniq",
  42. "unique",
  43. "util",
  44. "utility",
  45. "utils"
  46. ],
  47. "verb": {
  48. "run": true,
  49. "toc": false,
  50. "layout": "default",
  51. "tasks": [
  52. "readme"
  53. ],
  54. "plugins": [
  55. "gulp-format-md"
  56. ],
  57. "related": {
  58. "list": [
  59. "arr-diff",
  60. "arr-flatten",
  61. "arr-filter",
  62. "arr-map",
  63. "arr-pluck",
  64. "arr-reduce",
  65. "array-unique"
  66. ]
  67. },
  68. "reflinks": [
  69. "verb",
  70. "array-union"
  71. ],
  72. "lint": {
  73. "reflinks": true
  74. }
  75. }
  76. }