116 lines
4.3 KiB
JSON
116 lines
4.3 KiB
JSON
{
|
|
"_args": [
|
|
[
|
|
{
|
|
"raw": "locate-path@^2.0.0",
|
|
"scope": null,
|
|
"escapedName": "locate-path",
|
|
"name": "locate-path",
|
|
"rawSpec": "^2.0.0",
|
|
"spec": ">=2.0.0 <3.0.0",
|
|
"type": "range"
|
|
},
|
|
"/Volumes/2009-SSD/GT2/GT2-iOS/node_modules/find-up"
|
|
]
|
|
],
|
|
"_from": "locate-path@>=2.0.0 <3.0.0",
|
|
"_id": "locate-path@2.0.0",
|
|
"_inCache": true,
|
|
"_location": "/locate-path",
|
|
"_nodeVersion": "7.2.0",
|
|
"_npmOperationalInternal": {
|
|
"host": "packages-12-west.internal.npmjs.com",
|
|
"tmp": "tmp/locate-path-2.0.0.tgz_1480310853492_0.9661909360438585"
|
|
},
|
|
"_npmUser": {
|
|
"name": "sindresorhus",
|
|
"email": "sindresorhus@gmail.com"
|
|
},
|
|
"_npmVersion": "3.10.9",
|
|
"_phantomChildren": {},
|
|
"_requested": {
|
|
"raw": "locate-path@^2.0.0",
|
|
"scope": null,
|
|
"escapedName": "locate-path",
|
|
"name": "locate-path",
|
|
"rawSpec": "^2.0.0",
|
|
"spec": ">=2.0.0 <3.0.0",
|
|
"type": "range"
|
|
},
|
|
"_requiredBy": [
|
|
"/find-up"
|
|
],
|
|
"_resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz",
|
|
"_shasum": "2b568b265eec944c6d9c0de9c3dbbbca0354cd8e",
|
|
"_shrinkwrap": null,
|
|
"_spec": "locate-path@^2.0.0",
|
|
"_where": "/Volumes/2009-SSD/GT2/GT2-iOS/node_modules/find-up",
|
|
"author": {
|
|
"name": "Sindre Sorhus",
|
|
"email": "sindresorhus@gmail.com",
|
|
"url": "sindresorhus.com"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/sindresorhus/locate-path/issues"
|
|
},
|
|
"dependencies": {
|
|
"p-locate": "^2.0.0",
|
|
"path-exists": "^3.0.0"
|
|
},
|
|
"description": "Get the first path that exists on disk of multiple paths",
|
|
"devDependencies": {
|
|
"ava": "*",
|
|
"xo": "*"
|
|
},
|
|
"directories": {},
|
|
"dist": {
|
|
"shasum": "2b568b265eec944c6d9c0de9c3dbbbca0354cd8e",
|
|
"tarball": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz"
|
|
},
|
|
"engines": {
|
|
"node": ">=4"
|
|
},
|
|
"files": [
|
|
"index.js"
|
|
],
|
|
"gitHead": "a30b86df0934329c66ff6a2be395db03d65478b8",
|
|
"homepage": "https://github.com/sindresorhus/locate-path#readme",
|
|
"keywords": [
|
|
"locate",
|
|
"path",
|
|
"paths",
|
|
"file",
|
|
"files",
|
|
"exists",
|
|
"find",
|
|
"finder",
|
|
"search",
|
|
"searcher",
|
|
"array",
|
|
"iterable",
|
|
"iterator"
|
|
],
|
|
"license": "MIT",
|
|
"maintainers": [
|
|
{
|
|
"name": "sindresorhus",
|
|
"email": "sindresorhus@gmail.com"
|
|
}
|
|
],
|
|
"name": "locate-path",
|
|
"optionalDependencies": {},
|
|
"readme": "# locate-path [![Build Status](https://travis-ci.org/sindresorhus/locate-path.svg?branch=master)](https://travis-ci.org/sindresorhus/locate-path)\n\n> Get the first path that exists on disk of multiple paths\n\n\n## Install\n\n```\n$ npm install --save locate-path\n```\n\n\n## Usage\n\nHere we find the first file that exists on disk, in array order.\n\n```js\nconst locatePath = require('locate-path');\n\nconst files = [\n\t'unicorn.png',\n\t'rainbow.png', // only this one actually exists on disk\n\t'pony.png'\n];\n\nlocatePath(files).then(foundPath => {\n\tconsole.log(foundPath);\n\t//=> 'rainbow'\n});\n```\n\n\n## API\n\n### locatePath(input, [options])\n\nReturns a `Promise` for the first path that exists or `undefined` if none exists.\n\n#### input\n\nType: `Iterable<string>`\n\nPaths to check.\n\n#### options\n\nType: `Object`\n\n##### concurrency\n\nType: `number`<br>\nDefault: `Infinity`<br>\nMinimum: `1`\n\nNumber of concurrently pending promises.\n\n##### preserveOrder\n\nType: `boolean`<br>\nDefault: `true`\n\nPreserve `input` order when searching.\n\nDisable this to improve performance if you don't care about the order.\n\n##### cwd\n\nType: `string`<br>\nDefault: `process.cwd()`\n\nCurrent working directory.\n\n### locatePath.sync(input, [options])\n\nReturns the first path that exists or `undefined` if none exists.\n\n#### input\n\nType: `Iterable<string>`\n\nPaths to check.\n\n#### options\n\nType: `Object`\n\n##### cwd\n\nSame as above.\n\n\n## Related\n\n- [path-exists](https://github.com/sindresorhus/path-exists) - Check if a path exists\n\n\n## License\n\nMIT © [Sindre Sorhus](https://sindresorhus.com)\n",
|
|
"readmeFilename": "readme.md",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/sindresorhus/locate-path.git"
|
|
},
|
|
"scripts": {
|
|
"test": "xo && ava"
|
|
},
|
|
"version": "2.0.0",
|
|
"xo": {
|
|
"esnext": true
|
|
}
|
|
}
|