array-duplicates
Version:
Returns the duplicated items found in an array
43 lines (42 loc) • 1.06 kB
JSON
{
"name": "array-duplicates",
"version": "1.0.1",
"description": "Returns the duplicated items found in an array",
"keywords": [
"array",
"find",
"duplicates",
"duplicated"
],
"bugs": {
"url": "https://github.com/gabmontes/array-duplicates/issues"
},
"license": "WTFPL",
"author": "Gabriel Montes <gabriel@utoctadel.com.ar>",
"files": [
"dist",
"lib"
],
"main": "dist/index.js",
"repository": "gabmontes/array-duplicates",
"scripts": {
"lint": "eslint lib",
"test": "mocha --compilers js:babel-register",
"coverage": "nyc --reporter=lcov --reporter=text npm test",
"build": "babel --presets latest -d dist/ lib/",
"prepublish": "npm run lint && npm test && npm run build"
},
"dependencies": {
"core-js": "^2.4.1"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-preset-latest": "^6.14.0",
"babel-preset-latest-minimal": "^1.1.1",
"babel-register": "^6.14.0",
"chai": "^3.5.0",
"eslint": "^3.5.0",
"mocha": "^3.0.2",
"nyc": "^8.3.1"
}
}