arr-indexes-of
Version:
Like Array#indexOf but return all indexes
42 lines (41 loc) • 891 B
JSON
{
"name": "arr-indexes-of",
"version": "2.0.0",
"description": "Like Array#indexOf but return all indexes",
"repository": "shinnn/arr-indexes-of",
"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",
"module": "index.mjs",
"files": [
"index.js",
"index.mjs"
],
"keywords": [
"array",
"list",
"index",
"search",
"find",
"multiple"
],
"dependencies": {
"append-type": "^1.0.1"
},
"devDependencies": {
"@shinnn/eslint-config": "^5.4.4",
"eslint": "^4.19.1",
"nyc": "^12.0.2",
"rollup": "^0.59.4",
"rollup-config-module": "^2.0.0",
"tape": "^4.9.0"
},
"eslintConfig": {
"extends": "@shinnn"
}
}