Skip to content

Commit d2bf9e4

Browse files
committed
update deps
1 parent 69c0897 commit d2bf9e4

File tree

1 file changed

+23
-16
lines changed

1 file changed

+23
-16
lines changed

package.json

Lines changed: 23 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,52 @@
11
{
22
"name": "arr-diff",
33
"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": "1.0.1",
4+
"version": "1.1.0",
55
"homepage": "https://github.com/jonschlinkert/arr-diff",
66
"author": {
77
"name": "Jon Schlinkert",
88
"url": "https://github.com/jonschlinkert"
99
},
10-
"repository": {
11-
"type": "git",
12-
"url": "git://github.com/jonschlinkert/arr-diff.git"
13-
},
10+
"repository": "jonschlinkert/arr-diff",
1411
"bugs": {
1512
"url": "https://github.com/jonschlinkert/arr-diff/issues"
1613
},
17-
"license": {
18-
"type": "MIT",
19-
"url": "https://github.com/jonschlinkert/arr-diff/blob/master/LICENSE-MIT"
20-
},
14+
"license": "MIT",
15+
"files": [
16+
"index.js"
17+
],
2118
"main": "index.js",
2219
"engines": {
2320
"node": ">=0.10.0"
2421
},
2522
"scripts": {
26-
"test": "mocha -R spec"
23+
"test": "mocha"
2724
},
2825
"dependencies": {
29-
"array-slice": "^0.2.2"
26+
"arr-flatten": "^1.0.1",
27+
"array-slice": "^0.2.3"
3028
},
3129
"devDependencies": {
3230
"array-differ": "^1.0.0",
33-
"benchmarked": "^0.1.3",
34-
"chalk": "^0.5.1",
35-
"mocha": "*",
36-
"should": "^4.0.4"
31+
"benchmarked": "^0.1.4",
32+
"chalk": "^1.1.1",
33+
"mocha": "^2.2.5",
34+
"should": "^7.0.4"
3735
},
3836
"keywords": [
3937
"arr",
4038
"array",
4139
"diff",
4240
"differ",
4341
"difference"
44-
]
42+
],
43+
"verb": {
44+
"related": {
45+
"list": [
46+
"arr-flatten",
47+
"array-filter",
48+
"array-intersection"
49+
]
50+
}
51+
}
4552
}

0 commit comments

Comments
 (0)