-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbower.json
More file actions
49 lines (49 loc) · 1.05 KB
/
bower.json
File metadata and controls
49 lines (49 loc) · 1.05 KB
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": "array-intersection",
"description": "Return an array with the unique values present in _all_ given arrays using strict equality for comparisons.",
"repository": {
"type": "git",
"url": "git://github.com/jonschlinkert/array-intersection.git"
},
"license": {
"type": "MIT",
"url": "https://github.com/jonschlinkert/array-intersection/blob/master/LICENSE"
},
"homepage": "https://github.com/jonschlinkert/array-intersection",
"authors": [
{
"name": "Jon Schlinkert",
"homepage": "https://github.com/jonschlinkert"
}
],
"main": [
"index.js"
],
"dependencies": {
"array-every": "^0.1.1",
"array-slice": "^0.2.2",
"array-unique": "^0.1.1",
"filter-array": "^0.1.0",
"index-of": "^0.1.0"
},
"devDependencies": {
"mocha": "*",
"should": "^4.0.4"
},
"keywords": [
"arr",
"array",
"arrays",
"diff",
"difference",
"intersect",
"intersection",
"javascript",
"node.js",
"uniq",
"unique",
"util",
"utility",
"utils"
]
}