aboutsummaryrefslogtreecommitdiff
path: root/node_modules/arr-diff/package.json
blob: d40c21030edc0d49ec8d9199cd357ac0e94fe936 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
  "name": "arr-diff",
  "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.",
  "version": "2.0.0",
  "homepage": "https://github.com/jonschlinkert/arr-diff",
  "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  "repository": "jonschlinkert/arr-diff",
  "bugs": {
    "url": "https://github.com/jonschlinkert/arr-diff/issues"
  },
  "license": "MIT",
  "files": [
    "index.js"
  ],
  "main": "index.js",
  "engines": {
    "node": ">=0.10.0"
  },
  "scripts": {
    "test": "mocha"
  },
  "dependencies": {
    "arr-flatten": "^1.0.1"
  },
  "devDependencies": {
    "array-differ": "^1.0.0",
    "array-slice": "^0.2.3",
    "benchmarked": "^0.1.4",
    "chalk": "^1.1.1",
    "mocha": "*",
    "should": "*"
  },
  "keywords": [
    "arr",
    "array",
    "diff",
    "differ",
    "difference"
  ],
  "verb": {
    "related": {
      "list": [
        "arr-flatten",
        "array-filter",
        "array-intersection"
      ]
    }
  }
}