package.json
 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": "4.0.0",
 5    "homepage": "https://github.com/jonschlinkert/arr-diff",
 6    "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
 7    "contributors": [
 8      "Jon Schlinkert <jon.schlinkert@sellside.com> (http://twitter.com/jonschlinkert)",
 9      "Paul Miller <paul+gh@paulmillr.com> (paulmillr.com)"
10    ],
11    "repository": "jonschlinkert/arr-diff",
12    "bugs": {
13      "url": "https://github.com/jonschlinkert/arr-diff/issues"
14    },
15    "license": "MIT",
16    "files": [
17      "index.js"
18    ],
19    "main": "index.js",
20    "engines": {
21      "node": ">=0.10.0"
22    },
23    "scripts": {
24      "test": "mocha"
25    },
26    "dependencies": {},
27    "devDependencies": {
28      "ansi-bold": "^0.1.1",
29      "arr-flatten": "^1.0.1",
30      "array-differ": "^1.0.0",
31      "benchmarked": "^0.2.4",
32      "gulp-format-md": "^0.1.9",
33      "minimist": "^1.2.0",
34      "mocha": "^2.4.5"
35    },
36    "keywords": [
37      "arr",
38      "array",
39      "array differ",
40      "array-differ",
41      "diff",
42      "differ",
43      "difference"
44    ],
45    "verb": {
46      "toc": false,
47      "layout": "default",
48      "tasks": [
49        "readme"
50      ],
51      "plugins": [
52        "gulp-format-md"
53      ],
54      "related": {
55        "list": [
56          "arr-flatten",
57          "array-filter",
58          "array-intersection"
59        ]
60      },
61      "reflinks": [
62        "array-differ",
63        "verb"
64      ],
65      "lint": {
66        "reflinks": true
67      }
68    }
69  }