indexed-filter
Version:
Array#filter() with also detecting indexes of filtered values
46 lines (45 loc) • 967 B
JSON
{
"name": "indexed-filter",
"version": "1.0.3",
"description": "Array#filter() with also detecting indexes of filtered values",
"repository": "shinnn/indexed-filter",
"author": "Shinnosuke Watanabe (https://github.com/shinnn)",
"scripts": {
"prebuild": "eslint --fix --format=codeframe index.mjs test.js",
"build": "rollup --config=node:module",
"pretest": "npm run-script build",
"test": "nyc --reporter=html --reporter=text node test.js"
},
"license": "ISC",
"files": [
"index.js",
"index.mjs"
],
"module": "index.mjs",
"keywords": [
"arr",
"array",
"filter",
"filtering",
"index",
"indexed",
"value",
"values",
"client-side",
"browser"
],
"dependencies": {
"append-type": "^1.0.1"
},
"devDependencies": {
"@shinnn/eslint-config": "^5.4.0",
"eslint": "^4.19.1",
"nyc": "^11.7.1",
"rollup": "^0.58.2",
"rollup-config-module": "^2.0.0",
"tape": "^4.9.0"
},
"eslintConfig": {
"extends": "@shinnn"
}
}