unique-concat
Version:
Concatenates two arrays, removing duplicates in the process and returns one array with unique values.
63 lines (62 loc) • 1.58 kB
JSON
{
"name": "unique-concat",
"version": "0.2.2",
"description": "Concatenates two arrays, removing duplicates in the process and returns one array with unique values.",
"main": "index.js",
"scripts": {
"test-main": "tap test/*.js",
"test-0.8": "nave use 0.8 npm run test-main",
"test-0.10": "nave use 0.10 npm run test-main",
"test-all": "npm run test-main && npm run test-0.8 && npm run test-0.10",
"test": "if [ -e $TRAVIS ]; then npm run test-all; else npm run test-main; fi",
"tape": "testling -x open"
},
"repository": {
"type": "git",
"url": "git://github.com/thlorenz/unique-concat.git"
},
"homepage": "https://github.com/thlorenz/unique-concat",
"dependencies": {},
"devDependencies": {
"nave": "~0.4.3",
"tape": "~1.0.4",
"tap": "~0.4.3",
"testling": "~1.5.1"
},
"keywords": [
"concat",
"concatenate",
"Array",
"unique",
"duplicates",
"hash"
],
"author": {
"name": "Thorsten Lorenz",
"email": "thlorenz@gmx.de",
"url": "http://thlorenz.com"
},
"license": {
"type": "MIT",
"url": "https://github.com/thlorenz/unique-concat/blob/master/LICENSE"
},
"engine": {
"node": ">=0.6"
},
"testling": {
"files": "test/*.js",
"browsers": [
"ie/9..latest",
"firefox/17..latest",
"firefox/nightly",
"chrome/22..latest",
"chrome/canary",
"opera/12..latest",
"opera/next",
"safari/6.0.latest",
"ipad/6.0..latest",
"iphone/6.0..latest",
"android-browser/4.2..latest"
]
}
}