object-str-find
Version:
Find substring or match regexp in the object and his inner objects.
54 lines (53 loc) • 1.07 kB
JSON
{
"name": "object-str-find",
"version": "0.1.1",
"description": "Find substring or match regexp in the object and his inner objects.",
"main": "index.js",
"scripts": {
"eslint": "eslint ./src --cache --fix",
"test": "ava"
},
"dependencies": {
"ava": "^2.3.0"
},
"devDependencies": {
"eslint": "^6.2.2",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"husky": "^3.0.4",
"lint-staged": "^9.2.5",
"prettier": "^1.18.2"
},
"ava": {
"files": [
"test/**/*.js",
"!test/__mock__/**"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.(js)": [
"yarn eslint",
"git add"
]
},
"keywords": [
"object",
"string",
"regexp",
"find",
"js",
"tiny-module"
],
"homepage": "https://github.com/mbalabash/object-str-find/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/mbalabash/object-str-find"
},
"author": "mbalabash",
"license": "MIT"
}