{"maintainers":[{"email":"blaine.bublitz@gmail.com","name":"anonymous"}],"keywords":["find","lookup","config"],"dist-tags":{"latest":"2.0.0"},"author":{"name":"Gulp Team","email":"team@gulpjs.com","url":"https://gulpjs.com/"},"description":"Find a file given a declaration of locations.","readme":"<p align=\"center\">\n  <a href=\"http://gulpjs.com\">\n    <img height=\"257\" width=\"114\" src=\"https://raw.githubusercontent.com/gulpjs/artwork/master/gulp-2x.png\">\n  </a>\n</p>\n\n# fined\n\n[![NPM version][npm-image]][npm-url] [![Downloads][downloads-image]][npm-url] [![Build Status][ci-image]][ci-url] [![Coveralls Status][coveralls-image]][coveralls-url]\n\nFind a file given a declaration of locations.\n\n## Usage\n\n```js\nvar fined = require('fined');\n\nfined({ path: 'path/to/file', extensions: ['.js', '.json'] });\n// => { path: '/absolute/path/to/file.js', extension: '.js' }  (if file exists)\n// => null  (if file does not exist)\n\nvar opts = {\n  name: '.app',\n  cwd: '.',\n  extensions: {\n    rc: 'default-rc-loader',\n    '.yml': 'default-yml-loader',\n  },\n};\n\nfined({ path: '.' }, opts);\n// => { path: '/absolute/of/cwd/.app.yml', extension: { '.yml': 'default-yml-loader' } }\n\nfined({ path: '~', extensions: { rc: 'some-special-rc-loader' } }, opts);\n// => { path: '/User/home/.apprc', extension: { 'rc': 'some-special-rc-loader' } }\n```\n\n## API\n\n### fined(pathObj, opts) => object | null\n\n#### Arguments:\n\n- **pathObj** [string | object] : a path setting for finding a file.\n- **opts** [object] : a plain object supplements `pathObj`.\n\n  `pathObj` and `opts` can have same properties:\n\n  - **path** [string] : a path string.\n  - **name** [string] : a basename.\n  - **extensions**: [string | array | object] : extensions.\n  - **cwd**: a base directory of `path` and for finding up.\n  - **findUp**: [boolean] : a flag to find up.\n\n#### Return:\n\nThis function returns a plain object which consists of following properties if a file exists otherwise null.\n\n- **path** : an absolute path\n- **extension** : a string or a plain object of extension.\n\n## License\n\nMIT\n\n<!-- prettier-ignore-start -->\n[downloads-image]: https://img.shields.io/npm/dm/fined.svg?style=flat-square\n[npm-url]: https://www.npmjs.com/package/fined\n[npm-image]: https://img.shields.io/npm/v/fined.svg?style=flat-square\n\n[ci-url]: https://github.com/gulpjs/fined/actions?query=workflow:dev\n[ci-image]: https://img.shields.io/github/workflow/status/gulpjs/fined/dev?style=flat-square\n\n[coveralls-url]: https://coveralls.io/r/gulpjs/fined\n[coveralls-image]: https://img.shields.io/coveralls/gulpjs/fined/master.svg\n<!-- prettier-ignore-end -->\n","repository":{"type":"git","url":"git+https://github.com/gulpjs/fined.git"},"bugs":{"url":"https://github.com/gulpjs/fined/issues"},"license":"MIT","versions":{"1.0.0":{"name":"fined","version":"1.0.0","description":"Find a file given a declaration of locations","author":{"name":"JS CLI Team","url":"https://github.com/js-cli"},"contributors":[{"name":"Takayuki Sato","email":"t110000508260@yahoo.co.jp"},{"name":"Blaine Bublitz","email":"blaine.bublitz@gmail.com"}],"repository":{"type":"git","url":"git+https://github.com/js-cli/fined.git"},"license":"MIT","engines":{"node":">= 0.10"},"main":"index.js","files":["index.js","LICENSE"],"scripts":{"lint":"eslint . && jscs index.js test/","pretest":"npm run lint","test":"mocha --async-only","cover":"istanbul cover _mocha --report lcovonly","coveralls":"npm run cover && istanbul-coveralls"},"dependencies":{"expand-tilde":"^1.2.1","lodash.assignwith":"^4.0.7","lodash.isarray":"^4.0.0","lodash.isempty":"^4.2.1","lodash.isplainobject":"^4.0.4","lodash.isstring":"^4.0.1","lodash.pick":"^4.2.1","parse-filepath":"^1.0.1"},"devDependencies":{"eslint":"^1.7.3","eslint-config-gulp":"^2.0.0","expect":"^1.19.0","istanbul":"^0.4.3","istanbul-coveralls":"^1.0.3","jscs":"^2.3.5","jscs-preset-gulp":"^1.0.0","mocha":"^2.4.5"},"keywords":[],"gitHead":"de8a00e67995e458c2caab6b328480d42044f36f","bugs":{"url":"https://github.com/js-cli/fined/issues"},"homepage":"https://github.com/js-cli/fined#readme","_id":"fined@1.0.0","_shasum":"c6d6ee6438d9949c2e75f66d346384d1b3a631a4","_from":".","_npmVersion":"2.15.2","_nodeVersion":"0.10.41","_npmUser":{"name":"anonymous","email":"blaine.bublitz@gmail.com"},"maintainers":[{"name":"anonymous","email":"blaine.bublitz@gmail.com"}],"dist":{"shasum":"c6d6ee6438d9949c2e75f66d346384d1b3a631a4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fined/-/fined-1.0.0.tgz","integrity":"sha512-2kxzbiWk9nnZ+dtLHiStZeumed8093cs+/H9L6aofNEPzlcyhddcUuKNf0kCbgJ2TmRpKfLEvkAXpeyV9qQawA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCnYhAeFDXrb2ih7/eQoIhvYdNpcVe6HFmxL7Zrz/r8owIgYQNG9EMwwnEWUvUpwQR3NRvLBB7mNM/EKRsmUaPPbog="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/fined-1.0.0.tgz_1466036520327_0.7560944678261876"},"directories":{}},"1.0.1":{"name":"fined","version":"1.0.1","description":"Find a file given a declaration of locations","author":{"name":"JS CLI Team","url":"https://github.com/js-cli"},"contributors":[{"name":"Takayuki Sato","email":"t110000508260@yahoo.co.jp"},{"name":"Blaine Bublitz","email":"blaine.bublitz@gmail.com"}],"repository":{"type":"git","url":"git+https://github.com/js-cli/fined.git"},"license":"MIT","engines":{"node":">= 0.10"},"main":"index.js","files":["index.js","LICENSE"],"scripts":{"lint":"eslint . && jscs index.js test/","pretest":"npm run lint","test":"mocha --async-only","cover":"istanbul cover _mocha --report lcovonly","coveralls":"npm run cover && istanbul-coveralls"},"dependencies":{"expand-tilde":"^1.2.1","lodash.assignwith":"^4.0.7","lodash.isarray":"^4.0.0","lodash.isempty":"^4.2.1","lodash.isplainobject":"^4.0.4","lodash.isstring":"^4.0.1","lodash.pick":"^4.2.1","parse-filepath":"^1.0.1"},"devDependencies":{"eslint":"^1.7.3","eslint-config-gulp":"^2.0.0","expect":"^1.19.0","istanbul":"^0.4.3","istanbul-coveralls":"^1.0.3","jscs":"^2.3.5","jscs-preset-gulp":"^1.0.0","mocha":"^2.4.5"},"keywords":[],"gitHead":"3ce625446110cb0942b3787e91541bd1e35cd804","bugs":{"url":"https://github.com/js-cli/fined/issues"},"homepage":"https://github.com/js-cli/fined#readme","_id":"fined@1.0.1","_shasum":"c48af9ab5a8e0f400a0375e84154c37674dabfd4","_from":".","_npmVersion":"2.15.2","_nodeVersion":"0.10.41","_npmUser":{"name":"anonymous","email":"blaine.bublitz@gmail.com"},"maintainers":[{"name":"anonymous","email":"blaine.bublitz@gmail.com"}],"dist":{"shasum":"c48af9ab5a8e0f400a0375e84154c37674dabfd4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fined/-/fined-1.0.1.tgz","integrity":"sha512-PIwwQY+DSEthohr4rZ0zVeOHAxcDQt70SZJEeXsiosn0RJJ8FazG/X1m7rY2qzAhbyqbSa90gTOYk2p9hGK8TA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICZhpCOQPHMlxiX3bdusfBioc20FRClCJXs6voRjJX+ZAiEA8n3pWnS9THWPCEvkjYRQnMKOTs2GNx+0QC8iyey8oas="}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/fined-1.0.1.tgz_1466298091660_0.526061441283673"},"directories":{}},"1.0.2":{"name":"fined","version":"1.0.2","description":"Find a file given a declaration of locations","author":{"name":"JS CLI Team","url":"https://github.com/js-cli"},"contributors":[{"name":"Takayuki Sato","email":"t110000508260@yahoo.co.jp"},{"name":"Blaine Bublitz","email":"blaine.bublitz@gmail.com"}],"repository":{"type":"git","url":"git+https://github.com/js-cli/fined.git"},"license":"MIT","engines":{"node":">= 0.10"},"main":"index.js","files":["index.js","LICENSE"],"scripts":{"lint":"eslint . && jscs index.js test/","pretest":"npm run lint","test":"mocha --async-only","cover":"istanbul cover _mocha --report lcovonly","coveralls":"npm run cover && istanbul-coveralls"},"dependencies":{"expand-tilde":"^1.2.1","lodash.assignwith":"^4.0.7","lodash.isempty":"^4.2.1","lodash.isplainobject":"^4.0.4","lodash.isstring":"^4.0.1","lodash.pick":"^4.2.1","parse-filepath":"^1.0.1"},"devDependencies":{"eslint":"^1.7.3","eslint-config-gulp":"^2.0.0","expect":"^1.19.0","istanbul":"^0.4.3","istanbul-coveralls":"^1.0.3","jscs":"^2.3.5","jscs-preset-gulp":"^1.0.0","mocha":"^2.4.5"},"keywords":[],"gitHead":"850b8dde2e520878a7ff62b9a6b4a45c82d19889","bugs":{"url":"https://github.com/js-cli/fined/issues"},"homepage":"https://github.com/js-cli/fined#readme","_id":"fined@1.0.2","_shasum":"5b28424b760d7598960b7ef8480dff8ad3660e97","_from":".","_npmVersion":"2.15.2","_nodeVersion":"0.10.41","_npmUser":{"name":"anonymous","email":"blaine.bublitz@gmail.com"},"maintainers":[{"name":"anonymous","email":"blaine.bublitz@gmail.com"}],"dist":{"shasum":"5b28424b760d7598960b7ef8480dff8ad3660e97","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fined/-/fined-1.0.2.tgz","integrity":"sha512-OGgX8OxWrBm3Lt5qVDjm0nNhfkGXOiioYbztMVExVuBj3k4U0b43/tDU0UI4aIfBmMNEuIoZ7NRDgIuL1wj3RQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC9RgoH9LfFerJXpfgSy46EavQiVvoe0EOWr6HdWqkTkwIhAMfmo1QOoQTgjenhy7ZeAmdOWkl0Yr8uBL0Yf5Sbzy+l"}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/fined-1.0.2.tgz_1475705448430_0.6886874639894813"},"directories":{}},"1.1.0":{"name":"fined","version":"1.1.0","description":"Find a file given a declaration of locations","author":{"name":"JS CLI Team","url":"https://github.com/js-cli"},"contributors":[{"name":"Takayuki Sato","email":"sttk.xslet@gmail.com"},{"name":"Blaine Bublitz","email":"blaine.bublitz@gmail.com"}],"repository":{"type":"git","url":"git+https://github.com/js-cli/fined.git"},"license":"MIT","engines":{"node":">= 0.10"},"main":"index.js","files":["index.js","LICENSE"],"scripts":{"lint":"eslint . && jscs .","pretest":"npm run lint","test":"mocha --async-only","cover":"istanbul cover _mocha --report lcovonly","coveralls":"npm run cover && istanbul-coveralls"},"dependencies":{"expand-tilde":"^2.0.2","is-plain-object":"^2.0.3","object.defaults":"^1.1.0","object.pick":"^1.2.0","parse-filepath":"^1.0.1"},"devDependencies":{"eslint":"^1.7.3","eslint-config-gulp":"^2.0.0","expect":"^1.19.0","istanbul":"^0.4.3","istanbul-coveralls":"^1.0.3","jscs":"^2.3.5","jscs-preset-gulp":"^1.0.0","mocha":"^2.4.5"},"keywords":[],"gitHead":"02513d1f0fad7412d2d29349ff8f55e87156b7db","bugs":{"url":"https://github.com/js-cli/fined/issues"},"homepage":"https://github.com/js-cli/fined#readme","_id":"fined@1.1.0","_shasum":"b37dc844b76a2f5e7081e884f7c0ae344f153476","_from":".","_npmVersion":"2.15.2","_nodeVersion":"0.10.41","_npmUser":{"name":"anonymous","email":"blaine.bublitz@gmail.com"},"maintainers":[{"name":"anonymous","email":"blaine.bublitz@gmail.com"}],"dist":{"shasum":"b37dc844b76a2f5e7081e884f7c0ae344f153476","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fined/-/fined-1.1.0.tgz","integrity":"sha512-pnR5WcmrjQUN+4X4haS0bDGa4n0bJ8xzIbPlEwX6vunmB2nG6p3yUt3y/1QRWkk06d7Ml1ApbeRDSFVsMr10QA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICj7/1T2ezee9IL4Vpj0Gal7J5FcPl0EhAFdlbG8TvQHAiEA9qGQPylACfw3stnNtm5wUuUn+h/BWJdvJf/9T56TF9w="}]},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/fined-1.1.0.tgz_1497815142655_0.9839172274805605"},"directories":{}},"1.1.1":{"name":"fined","version":"1.1.1","description":"Find a file given a declaration of locations.","author":{"name":"Gulp Team","email":"team@gulpjs.com","url":"http://gulpjs.com/"},"contributors":[{"name":"Takayuki Sato","email":"sttk.xslet@gmail.com"},{"name":"Blaine Bublitz","email":"blaine.bublitz@gmail.com"}],"repository":{"type":"git","url":"git+https://github.com/gulpjs/fined.git"},"license":"MIT","engines":{"node":">= 0.10"},"main":"index.js","scripts":{"lint":"eslint .","pretest":"npm run lint","test":"mocha --async-only","cover":"istanbul cover _mocha --report lcovonly","coveralls":"npm run cover && istanbul-coveralls"},"dependencies":{"expand-tilde":"^2.0.2","is-plain-object":"^2.0.3","object.defaults":"^1.1.0","object.pick":"^1.2.0","parse-filepath":"^1.0.1"},"devDependencies":{"eslint":"^2.13.0","eslint-config-gulp":"^3.0.1","expect":"^1.20.2","istanbul":"^0.4.3","istanbul-coveralls":"^1.0.3","mocha":"^3.5.3"},"keywords":["find","lookup","config"],"gitHead":"704dc9fbbb1f8f1258725d74f38cbd0f51e21dce","bugs":{"url":"https://github.com/gulpjs/fined/issues"},"homepage":"https://github.com/gulpjs/fined#readme","_id":"fined@1.1.1","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"anonymous","email":"blaine.bublitz@gmail.com"},"dist":{"integrity":"sha512-jQp949ZmEbiYHk3gkbdtpJ0G1+kgtLQBNdP5edFP7Fh+WAYceLQz6yO1SBj72Xkg8GVyTB3bBzAYrHJVh5Xd5g==","shasum":"95d88ff329123dd1a6950fdfcd321f746271e01f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fined/-/fined-1.1.1.tgz","fileCount":4,"unpackedSize":8488,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcDtT8CRA9TVsSAnZWagAAg5kP/jUCEYMuSW3YsE05Nhbv\npZk9O1+srvylJH1AQO0nakVE76zBZL921zXvVC7QuC1YxWuCMiCPsOedOj9p\n1pPYIV1EyjIDAadkVIxlRxS35sEHgwyvkf+BiqFFRSO5q8taDVKxXKV7JZh0\ngfuWC11d5gkxoVcFf1WvsEV3rUK0w7VRiz8iwM3Caazw/KBz29GrtxNkoHZN\n0+US+7h+UFZ2zxLot2U4wpM3rYS+6szjY58OdDkoilOweaI+hiR1tRj1YTQR\npu/81W88mAbG8Uga8D5a19pI5gmjgkDCCa6x2zUGX5QYLH78aLIEuZ3RGtA5\njETYlDc07oyEijSWn1gUzksaDX0TJnfQ/FJ8jI1p9z0sFPifzzELKOsvzjGq\npdtg9eQx4Z04+eBfCym8gkCFQJX/GVdOikZVE02lK48qGvS8Sus+lHo7B8b9\nMF3kwF0AwU1y2yun6n0r6JRKJSXfGA37ujGD1iJsOVcUw95QpkK0bOkJ7dUm\nyI7sFJHPfm3/djyFI0oQukztt1PX0hC1uOB/qkbir/vB0+ptAApV6C7arpxZ\nKJpxVftVW72EjHZANRZBa3oY1aTA63r6TruVe2A5E/3PMW3ofN92JoWfS4Ec\npM6dRxeGBOm1X98E/T281AdghIuNmuTdox8xCAPGLEar8iS7arEfH3CqCRZy\nUVxy\r\n=Bq11\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIG8ieE+nNWgD399NNI3LoN4Bqx7P4IvoBqqHhW/+V+XJAiAPcurRarAMzsu1zaQo1pZq7pBxY4S+kzyCnTeMSrP/Rg=="}]},"maintainers":[{"name":"anonymous","email":"blaine.bublitz@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/fined_1.1.1_1544475899977_0.4561961895419131"},"_hasShrinkwrap":false},"1.2.0":{"name":"fined","version":"1.2.0","description":"Find a file given a declaration of locations.","author":{"name":"Gulp Team","email":"team@gulpjs.com","url":"http://gulpjs.com/"},"contributors":[{"name":"Takayuki Sato","email":"sttk.xslet@gmail.com"},{"name":"Blaine Bublitz","email":"blaine.bublitz@gmail.com"}],"repository":{"type":"git","url":"git+https://github.com/gulpjs/fined.git"},"license":"MIT","engines":{"node":">= 0.10"},"main":"index.js","scripts":{"lint":"eslint .","pretest":"npm run lint","test":"mocha --async-only","cover":"istanbul cover _mocha --report lcovonly","coveralls":"npm run cover && istanbul-coveralls"},"dependencies":{"expand-tilde":"^2.0.2","is-plain-object":"^2.0.3","object.defaults":"^1.1.0","object.pick":"^1.2.0","parse-filepath":"^1.0.1"},"devDependencies":{"eslint":"^2.13.0","eslint-config-gulp":"^3.0.1","expect":"^1.20.2","istanbul":"^0.4.3","istanbul-coveralls":"^1.0.3","mocha":"^3.5.3"},"keywords":["find","lookup","config"],"gitHead":"936f3ab1a950196d43923aef84ecf5f90f95ac92","bugs":{"url":"https://github.com/gulpjs/fined/issues"},"homepage":"https://github.com/gulpjs/fined#readme","_id":"fined@1.2.0","_npmVersion":"6.4.1","_nodeVersion":"10.15.1","_npmUser":{"name":"anonymous","email":"blaine.bublitz@gmail.com"},"dist":{"integrity":"sha512-ZYDqPLGxDkDhDZBjZBb+oD1+j0rA4E0pXY50eplAAOPg2N/gUBSSk5IM1/QhPfyVo19lJ+CvXpqfvk+b2p/8Ng==","shasum":"d00beccf1aa2b475d16d423b0238b713a2c4a37b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fined/-/fined-1.2.0.tgz","fileCount":4,"unpackedSize":8659,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcvGzqCRA9TVsSAnZWagAA1sUP/0K6eAfohjYW63XMNQYH\nOZV+4UQXIwyzxOncrJtsXvpBUi8L/hYRVtpkWthFE4QwQV+7bORZl7SA3g13\nSERe7MXF9qRVC9RJ9hrmo20ygEDVTwq/R/AR6N09XX+9BW2VdKBwwvhYGVM3\nmyYDR9sEFRVBanAFRqGkSZpfoXd3ap13lPYi+bCiYn0hqAJAJOM1JhLTh9Wg\ng5MkSIitSQ1xZf7BRpb/jUOUxNMR43KNbaijQr1QKeKVb1AggmRzaG3kixX5\nLGm8UcbjNnQ33czhvRetV0Tm+KdQrDs+p+opFfbYfWJ7suqOns+LtS2HUeTm\ngA+WWe+qszuWGWlIcviFPBXf0QY5RuBB/KCrvCfbdLr4AuPV6/5T2oLoY9FV\nbIGoPYGGU+Dn6e0RUPcBbt6NK9JeMyZ1AxGZzJZdjIEFIjw6SW+LmeHDf64N\nJHiCksyWnvqHkryoNih6MqVLzlKSNA81vRKhf7TJdyU4mhumGwWegQe69Tbn\nrsohoPwFVlRdMkAQjkQHkq7DVvYwebgG46P4Wr/xkGBDycUP2UYO6xIhaSRK\nWYeiYhidjx/qZXvpAgUPWIYPIeTU6J9SLj7GYBKXJK4434vH6BCupY2EvmeP\nGavxuWc79dV0mnWy01HWwPoX7jucsFC95dd0YtnNxq09ISZWX2Qctgze9aKB\nWtcF\r\n=m0s7\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDRqdjEkLzun0OYrMYyDdZ0UvYfWywxnKGxjHse54XTHQIhAPO42665sQ9UpG6U2IKUAhqz561wy29Bi3k3DMYDFj0o"}]},"maintainers":[{"email":"yo@contra.io","name":"anonymous"},{"email":"blaine.bublitz@gmail.com","name":"anonymous"},{"email":"sttk.xslet@gmail.com","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/fined_1.2.0_1555852521341_0.6117296652106905"},"_hasShrinkwrap":false},"2.0.0":{"name":"fined","version":"2.0.0","description":"Find a file given a declaration of locations.","author":{"name":"Gulp Team","email":"team@gulpjs.com","url":"https://gulpjs.com/"},"contributors":[{"name":"Takayuki Sato","email":"sttk.xslet@gmail.com"},{"name":"Blaine Bublitz","email":"blaine.bublitz@gmail.com"}],"repository":{"type":"git","url":"git+https://github.com/gulpjs/fined.git"},"license":"MIT","engines":{"node":">= 10.13.0"},"main":"index.js","scripts":{"lint":"eslint .","pretest":"npm run lint","test":"nyc mocha --async-only"},"dependencies":{"expand-tilde":"^2.0.2","is-plain-object":"^5.0.0","object.defaults":"^1.1.0","object.pick":"^1.3.0","parse-filepath":"^1.0.2"},"devDependencies":{"eslint":"^7.32.0","eslint-config-gulp":"^5.0.1","eslint-plugin-node":"^11.1.0","expect":"^27.3.1","mocha":"^8.4.0","nyc":"^15.1.0"},"nyc":{"reporter":["lcov","text-summary"]},"prettier":{"singleQuote":true},"keywords":["find","lookup","config"],"gitHead":"5e810a6ad3320b3bfac72e6284aafc2ac01cf213","bugs":{"url":"https://github.com/gulpjs/fined/issues"},"homepage":"https://github.com/gulpjs/fined#readme","_id":"fined@2.0.0","_nodeVersion":"14.18.0","_npmVersion":"7.24.2","dist":{"integrity":"sha512-OFRzsL6ZMHz5s0JrsEr+TpdGNCtrVtnuG3x1yzGNiQHT0yaDnXAj8V/lWcpJVrnoDpcwXcASxAZYbuXda2Y82A==","shasum":"6846563ed96879ce6de6c85c715c42250f8d8089","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fined/-/fined-2.0.0.tgz","fileCount":4,"unpackedSize":8444,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh2rEvCRA9TVsSAnZWagAA3UMQAJ3YSf3IskGUiLq2KBlt\naxNh5xJtAIKfe6Lzcmg7MZ3eSio72juMv5V0xu84sibRZwDMCsNCTChMhWFS\nU+lhtr6Vclq7IjO0DkJBj/44xU8XtBaE7OT0u3Dsx3fQxmDSaN3Ek/mN0uNm\n4mowM3IfeovtnPmI84UaFcAhiHc+zX3+O6Cg9wjlE/EjoALSAPbqs8hmf6zV\nD9aAbKgyTnONMAzgyBMNA/HVvuqxiF6IhxwUTAkhyZgDyd0NIQWlCatihMlz\nQkf7WT7rhCgMfpvmfvat9f/9WvMJ2RtJ/kxK6bFbQIhIhMY34xC3+OUpnuCO\nB3bXhZ28XGXgGrOypp3nWDYlmHVxrTspq3Lpw8XnlrsKGIcT0sarjxiqoyWa\n/BRbORAaWP4VmG20fsVaZJw863lSp0HdGKZpuV0NSm2eVh0HdGu4s7EdQS5S\nrweVbhNIYpdN0iKU7t9I9AkgXIq9xR6N9ugJvHMi+tRx26y+ntxi4QjlIbW6\nvQGeASZijLa4zjGfl4v6irhvtJtax/ndMyw2pj8/qAkbWI6/R6TDJa2S5jwc\njWwDZMXD3LazyMeE9+qt650d6VQ8QEBRiJxYyAldIFLgcNA3lYVSdBm6cWik\nCQAdU3at1HhPHcKtpuPSk0rv+gLS52bc8boXsrB3/GxzmDbe2Wq/hBmCKH/u\nkB/O\r\n=q+M/\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIESvR9VB07UnImeM7YuLe+cE1yV/cDbUXg0HaofW1myyAiEAvTB09g25KEp/HlafjKdkRqZDnMfBpLH27n9kchVZ92Y="}]},"_npmUser":{"name":"anonymous","email":"blaine.bublitz@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"sttk.xslet@gmail.com"},{"name":"anonymous","email":"blaine.bublitz@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/fined_2.0.0_1635710256532_0.0651638656937017"},"_hasShrinkwrap":false}},"name":"fined","time":{"modified":"2024-04-04T23:53:39.574Z","created":"2016-06-16T00:22:00.735Z","1.0.0":"2016-06-16T00:22:00.735Z","1.0.1":"2016-06-19T01:01:34.307Z","1.0.2":"2016-10-05T22:10:48.684Z","1.1.0":"2017-06-18T19:45:42.755Z","1.1.1":"2018-12-10T21:05:00.117Z","1.2.0":"2019-04-21T13:15:21.480Z","2.0.0":"2021-10-31T19:57:36.721Z"},"contributors":[{"name":"Takayuki Sato","email":"sttk.xslet@gmail.com"},{"name":"Blaine Bublitz","email":"blaine.bublitz@gmail.com"}],"readmeFilename":"README.md","homepage":"https://github.com/gulpjs/fined#readme"}