Skip to content

Commit d7df9e5

Browse files
committed
1.0.1
1 parent 042f7f8 commit d7df9e5

File tree

2 files changed

+21
-16
lines changed

2 files changed

+21
-16
lines changed

bower.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
{
22
"name": "arr-diff",
3-
"version": "0.1.0",
3+
"version": "1.0.1",
44
"main": [
55
"index.js"
6+
],
7+
"authors": [
8+
{
9+
"name": "Jon Schlinkert",
10+
"homepage": "https://github.com/jonschlinkert"
11+
}
612
]
713
}

package.json

Lines changed: 14 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "arr-diff",
3-
"description": "Return an array with only the unique values present in all given arrays using strict equality for comparisons.",
4-
"version": "0.2.1",
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": "1.0.1",
55
"homepage": "https://github.com/jonschlinkert/arr-diff",
66
"author": {
77
"name": "Jon Schlinkert",
@@ -14,33 +14,32 @@
1414
"bugs": {
1515
"url": "https://github.com/jonschlinkert/arr-diff/issues"
1616
},
17-
"licenses": [
18-
{
19-
"type": "MIT",
20-
"url": "https://github.com/jonschlinkert/arr-diff/blob/master/LICENSE-MIT"
21-
}
22-
],
17+
"license": {
18+
"type": "MIT",
19+
"url": "https://github.com/jonschlinkert/arr-diff/blob/master/LICENSE-MIT"
20+
},
2321
"main": "index.js",
2422
"engines": {
2523
"node": ">=0.10.0"
2624
},
2725
"scripts": {
2826
"test": "mocha -R spec"
2927
},
28+
"dependencies": {
29+
"array-slice": "^0.2.2"
30+
},
3031
"devDependencies": {
32+
"array-differ": "^1.0.0",
3133
"benchmarked": "^0.1.3",
34+
"chalk": "^0.5.1",
3235
"mocha": "*",
3336
"should": "^4.0.4"
3437
},
3538
"keywords": [
3639
"arr",
3740
"array",
3841
"diff",
39-
"difference",
40-
"javascript",
41-
"node.js",
42-
"util",
43-
"utility",
44-
"utils"
42+
"differ",
43+
"difference"
4544
]
46-
}
45+
}

0 commit comments

Comments
 (0)