wallet-core/node_modules/arr-diff/package.json

70 lines
1.5 KiB
JSON
Raw Normal View History

2016-10-10 03:43:44 +02:00
{
2016-11-03 01:33:53 +01:00
"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.",
2017-08-14 05:01:11 +02:00
"version": "4.0.0",
2016-11-03 01:33:53 +01:00
"homepage": "https://github.com/jonschlinkert/arr-diff",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
2017-08-14 05:01:11 +02:00
"contributors": [
"Jon Schlinkert <jon.schlinkert@sellside.com> (http://twitter.com/jonschlinkert)",
"Paul Miller <paul+gh@paulmillr.com> (paulmillr.com)"
],
2016-11-03 01:33:53 +01:00
"repository": "jonschlinkert/arr-diff",
"bugs": {
"url": "https://github.com/jonschlinkert/arr-diff/issues"
2016-10-10 03:43:44 +02:00
},
2016-11-03 01:33:53 +01:00
"license": "MIT",
"files": [
"index.js"
2016-10-10 03:43:44 +02:00
],
2016-11-03 01:33:53 +01:00
"main": "index.js",
"engines": {
"node": ">=0.10.0"
2016-10-10 03:43:44 +02:00
},
2016-11-03 01:33:53 +01:00
"scripts": {
"test": "mocha"
2016-10-10 03:43:44 +02:00
},
2017-08-14 05:01:11 +02:00
"dependencies": {},
2016-10-10 03:43:44 +02:00
"devDependencies": {
2017-08-14 05:01:11 +02:00
"ansi-bold": "^0.1.1",
"arr-flatten": "^1.0.1",
2016-10-10 03:43:44 +02:00
"array-differ": "^1.0.0",
2017-08-14 05:01:11 +02:00
"benchmarked": "^0.2.4",
"gulp-format-md": "^0.1.9",
"minimist": "^1.2.0",
"mocha": "^2.4.5"
2016-10-10 03:43:44 +02:00
},
"keywords": [
"arr",
"array",
2017-08-14 05:01:11 +02:00
"array differ",
"array-differ",
2016-10-10 03:43:44 +02:00
"diff",
"differ",
"difference"
],
"verb": {
2017-08-14 05:01:11 +02:00
"toc": false,
"layout": "default",
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
2016-10-10 03:43:44 +02:00
"related": {
"list": [
"arr-flatten",
"array-filter",
"array-intersection"
]
2017-08-14 05:01:11 +02:00
},
"reflinks": [
"array-differ",
"verb"
],
"lint": {
"reflinks": true
2016-10-10 03:43:44 +02:00
}
2016-11-03 01:33:53 +01:00
}
2017-08-14 05:01:11 +02:00
}