str-indexes-of
Version:
Like String#indexOf() but return all indexes
45 lines (44 loc) • 932 B
JSON
{
"name": "str-indexes-of",
"version": "1.0.4",
"description": "Like String#indexOf() but return all indexes",
"repository": "shinnn/str-indexes-of",
"author": "Shinnosuke Watanabe (https://github.com/shinnn)",
"scripts": {
"prebuild": "eslint --fix --format=codeframe module.js test.js",
"build": "rollup --config=node:module",
"pretest": "npm run-script build",
"test": "istanbul cover test.js"
},
"license": "CC0-1.0",
"module": "module.js",
"jsnext:main": "module.js",
"files": [
"index.js",
"module.js"
],
"keywords": [
"string",
"index",
"search",
"find",
"multiple"
],
"dependencies": {
"append-type": "^1.0.0"
},
"devDependencies": {
"@shinnn/eslint-config": "^4.0.1",
"eslint": "^4.2.0",
"istanbul": "^0.4.5",
"rollup": "^0.45.0",
"rollup-config-module": "^1.0.0",
"tape": "^4.7.0"
},
"eslintConfig": {
"extends": "@shinnn",
"rules": {
"no-var": "off"
}
}
}