{"_attachments":{},"_id":"npm-run-path","_rev":"2276-61f148ad4ce7cf8f58264c32","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"description":"Get your PATH prepended with locally installed binaries","dist-tags":{"latest":"6.0.0"},"license":"MIT","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"name":"npm-run-path","readme":"# npm-run-path\n\n> Get your [PATH](https://en.wikipedia.org/wiki/PATH_(variable)) prepended with locally installed binaries\n\nIn [npm run scripts](https://docs.npmjs.com/cli/run-script) you can execute locally installed binaries by name. This enables the same outside npm.\n\n## Install\n\n```sh\nnpm install npm-run-path\n```\n\n## Usage\n\n```js\nimport childProcess from 'node:child_process';\nimport {npmRunPath, npmRunPathEnv} from 'npm-run-path';\n\nconsole.log(process.env.PATH);\n//=> '/usr/local/bin'\n\nconsole.log(npmRunPath());\n//=> '/Users/sindresorhus/dev/foo/node_modules/.bin:/Users/sindresorhus/dev/node_modules/.bin:/Users/sindresorhus/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/usr/local/bin'\n\n// `foo` is a locally installed binary\nchildProcess.execFileSync('foo', {\n\tenv: npmRunPathEnv()\n});\n```\n\n## API\n\n### npmRunPath(options?)\n\n`options`: [`Options`](#options)\\\n_Returns_: `string`\n\nReturns the augmented PATH string.\n\n### npmRunPathEnv(options?)\n\n`options`: [`Options`](#options)\\\n_Returns_: `object`\n\nReturns the augmented [`process.env`](https://nodejs.org/api/process.html#process_process_env) object.\n\n### options\n\nType: `object`\n\n#### cwd\n\nType: `string | URL`\\\nDefault: `process.cwd()`\n\nThe working directory.\n\n#### execPath\n\nType: `string | URL`\\\nDefault: [`process.execPath`](https://nodejs.org/api/process.html#processexecpath)\n\nThe path to the current Node.js executable.\n\nThis can be either an absolute path or a path relative to the [`cwd` option](#cwd).\n\n#### addExecPath\n\nType: `boolean`\\\nDefault: `true`\n\nWhether to push the current Node.js executable's directory ([`execPath`](#execpath) option) to the front of PATH.\n\n#### preferLocal\n\nType: `boolean`\\\nDefault: `true`\n\nWhether to push the locally installed binaries' directory to the front of PATH.\n\n#### path\n\nType: `string`\\\nDefault: [`PATH`](https://github.com/sindresorhus/path-key)\n\nThe PATH to be appended.\n\nSet it to an empty string to exclude the default PATH.\n\nOnly available with [`npmRunPath()`](#npmrunpathoptions), not [`npmRunPathEnv()`](#npmrunpathenvoptions).\n\n#### env\n\nType: `object`\\\nDefault: [`process.env`](https://nodejs.org/api/process.html#processenv)\n\nAccepts an object of environment variables, like `process.env`, and modifies the PATH using the correct [PATH key](https://github.com/sindresorhus/path-key). Use this if you're modifying the PATH for use in the `child_process` options.\n\nOnly available with [`npmRunPathEnv()`](#npmrunpathenvoptions), not [`npmRunPath()`](#npmrunpathoptions).\n\n## Related\n\n- [npm-run-path-cli](https://github.com/sindresorhus/npm-run-path-cli) - CLI for this module\n- [execa](https://github.com/sindresorhus/execa) - Execute a locally installed binary\n","time":{"created":"2022-01-26T13:12:13.367Z","modified":"2024-08-26T16:58:14.568Z","5.0.1":"2021-10-05T07:54:14.961Z","5.0.0":"2021-10-05T07:48:51.022Z","4.0.1":"2019-12-22T22:04:32.828Z","4.0.0":"2019-10-14T12:22:08.330Z","3.1.0":"2019-04-05T06:35:19.707Z","3.0.0":"2019-03-10T15:25:34.328Z","2.0.2":"2016-09-29T08:10:39.751Z","2.0.1":"2016-09-28T05:02:34.870Z","2.0.0":"2016-09-25T06:34:49.794Z","1.0.0":"2015-12-28T18:54:14.293Z","5.1.0":"2022-02-09T05:23:18.121Z","5.2.0":"2023-12-21T16:02:42.414Z","5.3.0":"2024-02-23T02:38:07.190Z","6.0.0":"2024-08-26T08:40:09.814Z"},"versions":{"5.0.1":{"name":"npm-run-path","version":"5.0.1","description":"Get your PATH prepended with locally installed binaries","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/npm-run-path.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"type":"module","exports":"./index.js","engines":{"node":"^12.20.0 || ^14.13.1 || >=16.0.0"},"scripts":{"test":"xo && ava && tsd"},"keywords":["npm","run","path","package","bin","binary","binaries","script","cli","command-line","execute","executable"],"dependencies":{"path-key":"^4.0.0"},"devDependencies":{"ava":"^3.15.0","tsd":"^0.17.0","xo":"^0.45.0"},"gitHead":"d44e51582c1c66321cc0d3811396d0e6fc44a92c","bugs":{"url":"https://github.com/sindresorhus/npm-run-path/issues"},"homepage":"https://github.com/sindresorhus/npm-run-path#readme","_id":"npm-run-path@5.0.1","_nodeVersion":"12.22.1","_npmVersion":"7.20.3","dist":{"shasum":"748dd68ed7de377bb1f7132c7dafe657be5ab400","size":2848,"noattachment":false,"tarball":"https://registry.npmmirror.com/npm-run-path/-/npm-run-path-5.0.1.tgz","integrity":"sha512-ybBJQUSyFwEEhqO2lXmyKOl9ucHtyZBWVM0h0FiMfT/+WKxCUZFa95qAR2X3w/w6oigN3B0b2UNHZbD+kdfD5w=="},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"directories":{},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/npm-run-path_5.0.1_1633420454843_0.3625301046160667"},"_hasShrinkwrap":false,"publish_time":1633420454961,"_cnpm_publish_time":1633420454961,"_cnpmcore_publish_time":"2021-12-13T12:02:09.197Z"},"5.0.0":{"name":"npm-run-path","version":"5.0.0","description":"Get your PATH prepended with locally installed binaries","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/npm-run-path.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"type":"module","exports":"./index.js","engines":{"node":"^12.20.0 || ^14.13.1 || >=16.0.0"},"scripts":{"test":"xo && ava && tsd"},"keywords":["npm","run","path","package","bin","binary","binaries","script","cli","command-line","execute","executable"],"dependencies":{"path-key":"^4.0.0"},"devDependencies":{"ava":"^3.15.0","tsd":"^0.17.0","xo":"^0.45.0"},"gitHead":"d3b7b900d0f706a308c0675a2ffa935fe107460a","bugs":{"url":"https://github.com/sindresorhus/npm-run-path/issues"},"homepage":"https://github.com/sindresorhus/npm-run-path#readme","_id":"npm-run-path@5.0.0","_nodeVersion":"12.22.1","_npmVersion":"7.20.3","dist":{"shasum":"428f70be83e4bf600318e4389e11f46e52afa741","size":2847,"noattachment":false,"tarball":"https://registry.npmmirror.com/npm-run-path/-/npm-run-path-5.0.0.tgz","integrity":"sha512-oygO3ivdej3/FTTWCQz3VJhwvn5yqPU8o/sUAgxjh2IY/4KButbFSj48mTbSOATcbvZkVmBphXy0zq63fh/b4Q=="},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"directories":{},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/npm-run-path_5.0.0_1633420130853_0.5974753006149274"},"_hasShrinkwrap":false,"publish_time":1633420131022,"_cnpm_publish_time":1633420131022,"_cnpmcore_publish_time":"2021-12-13T12:02:09.466Z"},"4.0.1":{"name":"npm-run-path","version":"4.0.1","description":"Get your PATH prepended with locally installed binaries","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/npm-run-path.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=8"},"scripts":{"test":"xo && ava && tsd"},"keywords":["npm","run","path","package","bin","binary","binaries","script","cli","command-line","execute","executable"],"dependencies":{"path-key":"^3.0.0"},"devDependencies":{"ava":"^1.4.1","tsd":"^0.7.2","xo":"^0.24.0"},"gitHead":"09c9017b77591ced1723bd71ef9f3b5e72349268","bugs":{"url":"https://github.com/sindresorhus/npm-run-path/issues"},"homepage":"https://github.com/sindresorhus/npm-run-path#readme","_id":"npm-run-path@4.0.1","_nodeVersion":"10.17.0","_npmVersion":"6.11.3","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea","size":2984,"noattachment":false,"tarball":"https://registry.npmmirror.com/npm-run-path/-/npm-run-path-4.0.1.tgz","integrity":"sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw=="},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/npm-run-path_4.0.1_1577052272701_0.6308620576315229"},"_hasShrinkwrap":false,"publish_time":1577052272828,"_cnpm_publish_time":1577052272828,"_cnpmcore_publish_time":"2021-12-13T12:02:09.716Z"},"4.0.0":{"name":"npm-run-path","version":"4.0.0","description":"Get your PATH prepended with locally installed binaries","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/npm-run-path.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=8"},"scripts":{"test":"xo && ava && tsd"},"keywords":["npm","run","path","package","bin","binary","binaries","script","cli","command-line","execute","executable"],"dependencies":{"path-key":"^3.0.0"},"devDependencies":{"ava":"^1.4.1","tsd":"^0.7.2","xo":"^0.24.0"},"gitHead":"879ba920b0c06aed2c6c4952aa54aa7d2684fece","bugs":{"url":"https://github.com/sindresorhus/npm-run-path/issues"},"homepage":"https://github.com/sindresorhus/npm-run-path#readme","_id":"npm-run-path@4.0.0","_nodeVersion":"10.16.3","_npmVersion":"6.11.3","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"d644ec1bd0569187d2a52909971023a0a58e8438","size":2988,"noattachment":false,"tarball":"https://registry.npmmirror.com/npm-run-path/-/npm-run-path-4.0.0.tgz","integrity":"sha512-8eyAOAH+bYXFPSnNnKr3J+yoybe8O87Is5rtAQ8qRczJz1ajcsjg8l2oZqP+Ppx15Ii3S1vUTjQN2h4YO2tWWQ=="},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/npm-run-path_4.0.0_1571055728173_0.006643689593938573"},"_hasShrinkwrap":false,"publish_time":1571055728330,"_cnpm_publish_time":1571055728330,"_cnpmcore_publish_time":"2021-12-13T12:02:10.047Z"},"3.1.0":{"name":"npm-run-path","version":"3.1.0","description":"Get your PATH prepended with locally installed binaries","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/npm-run-path.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=8"},"scripts":{"test":"xo && ava && tsd"},"keywords":["npm","run","path","package","bin","binary","binaries","script","cli","command-line","execute","executable"],"dependencies":{"path-key":"^3.0.0"},"devDependencies":{"ava":"^1.4.1","tsd":"^0.7.2","xo":"^0.24.0"},"gitHead":"1f745c451448a8bbf2044211071793a1444edc31","bugs":{"url":"https://github.com/sindresorhus/npm-run-path/issues"},"homepage":"https://github.com/sindresorhus/npm-run-path#readme","_id":"npm-run-path@3.1.0","_nodeVersion":"8.15.0","_npmVersion":"6.9.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"7f91be317f6a466efed3c9f2980ad8a4ee8b0fa5","size":2599,"noattachment":false,"tarball":"https://registry.npmmirror.com/npm-run-path/-/npm-run-path-3.1.0.tgz","integrity":"sha512-Dbl4A/VfiVGLgQv29URL9xshU8XDY1GeLy+fsaZ1AA8JDSfjvr5P5+pzRbWqRSBxk6/DW7MIh8lTM/PaGnP2kg=="},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/npm-run-path_3.1.0_1554446119558_0.8857482387067892"},"_hasShrinkwrap":false,"publish_time":1554446119707,"_cnpm_publish_time":1554446119707,"_cnpmcore_publish_time":"2021-12-13T12:02:10.331Z"},"3.0.0":{"name":"npm-run-path","version":"3.0.0","description":"Get your PATH prepended with locally installed binaries","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/npm-run-path.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=8"},"scripts":{"test":"xo && ava && tsd-check"},"keywords":["npm","run","path","package","bin","binary","binaries","script","cli","command-line","execute","executable"],"dependencies":{"path-key":"^3.0.0"},"devDependencies":{"ava":"^1.3.1","tsd-check":"^0.3.0","xo":"^0.24.0"},"gitHead":"74fca6345b0ddc06c8e4e9e5587e1e2594a28e06","bugs":{"url":"https://github.com/sindresorhus/npm-run-path/issues"},"homepage":"https://github.com/sindresorhus/npm-run-path#readme","_id":"npm-run-path@3.0.0","_nodeVersion":"10.15.1","_npmVersion":"6.9.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"9bbd1824407d510ef3576c5ebc8b418dead140d9","size":2483,"noattachment":false,"tarball":"https://registry.npmmirror.com/npm-run-path/-/npm-run-path-3.0.0.tgz","integrity":"sha512-42wmNM/F44tq5pDfDDwYWh30JbQokeUn79/6qNyoEvCSOMy0Q2iHe7unLRzRWQL5JLrOoQT6WzSuc6ylvEMmNg=="},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/npm-run-path_3.0.0_1552231534136_0.9456079331176104"},"_hasShrinkwrap":false,"publish_time":1552231534328,"_cnpm_publish_time":1552231534328,"_cnpmcore_publish_time":"2021-12-13T12:02:10.773Z"},"2.0.2":{"name":"npm-run-path","version":"2.0.2","description":"Get your PATH prepended with locally installed binaries","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/npm-run-path.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=4"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["npm","run","path","package","bin","binary","binaries","script","cli","command-line","execute","executable"],"dependencies":{"path-key":"^2.0.0"},"devDependencies":{"ava":"*","xo":"*"},"xo":{"esnext":true},"gitHead":"4d956312d5da324c4eff435af7d80797f04f09e1","bugs":{"url":"https://github.com/sindresorhus/npm-run-path/issues"},"homepage":"https://github.com/sindresorhus/npm-run-path#readme","_id":"npm-run-path@2.0.2","_shasum":"35a9232dfa35d7067b4cb2ddf2357b1871536c5f","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.6.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"35a9232dfa35d7067b4cb2ddf2357b1871536c5f","size":2221,"noattachment":false,"tarball":"https://registry.npmmirror.com/npm-run-path/-/npm-run-path-2.0.2.tgz","integrity":"sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw=="},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/npm-run-path-2.0.2.tgz_1475136638037_0.6285470693837851"},"directories":{},"publish_time":1475136639751,"_hasShrinkwrap":false,"_cnpm_publish_time":1475136639751,"_cnpmcore_publish_time":"2021-12-13T12:02:11.066Z"},"2.0.1":{"name":"npm-run-path","version":"2.0.1","description":"Get your PATH prepended with locally installed binaries","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/npm-run-path.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=4"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["npm","run","path","package","bin","binary","binaries","script","cli","command-line","execute","executable"],"dependencies":{"path-key":"^2.0.0"},"devDependencies":{"ava":"*","xo":"*"},"xo":{"esnext":true},"gitHead":"3bce80f6128d30bd75e7fd7123d72b62c5e1f0e7","bugs":{"url":"https://github.com/sindresorhus/npm-run-path/issues"},"homepage":"https://github.com/sindresorhus/npm-run-path#readme","_id":"npm-run-path@2.0.1","_shasum":"0c89ba91d4b4c3e3f3f9579a9b733cc9ab429d90","_from":".","_npmVersion":"2.15.9","_nodeVersion":"4.5.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"0c89ba91d4b4c3e3f3f9579a9b733cc9ab429d90","size":2224,"noattachment":false,"tarball":"https://registry.npmmirror.com/npm-run-path/-/npm-run-path-2.0.1.tgz","integrity":"sha512-iz+CgoQfVSIpEzpXK8+d5VU2tOD9sdK7oJaUkyTgYR08TdnGIA+VRJVRYESf1jnxTXrMshDqUtD7pUcKRiWBig=="},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/npm-run-path-2.0.1.tgz_1475038953258_0.8133386990521103"},"directories":{},"publish_time":1475038954870,"_hasShrinkwrap":false,"_cnpm_publish_time":1475038954870,"_cnpmcore_publish_time":"2021-12-13T12:02:11.413Z"},"2.0.0":{"name":"npm-run-path","version":"2.0.0","description":"Get your PATH prepended with locally installed binaries","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/npm-run-path.git"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=4"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["npm","run","path","package","bin","binary","binaries","script","cli","command-line","execute","executable"],"dependencies":{"path-key":"^2.0.0"},"devDependencies":{"ava":"*","xo":"*"},"xo":{"esnext":true},"gitHead":"3511ae423a6e89fe381aa602b92b36e2630740c1","bugs":{"url":"https://github.com/sindresorhus/npm-run-path/issues"},"homepage":"https://github.com/sindresorhus/npm-run-path#readme","_id":"npm-run-path@2.0.0","_shasum":"b860993b6c0d2a243f370d8d24dba198899648bf","_from":".","_npmVersion":"2.15.9","_nodeVersion":"4.5.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"b860993b6c0d2a243f370d8d24dba198899648bf","size":2209,"noattachment":false,"tarball":"https://registry.npmmirror.com/npm-run-path/-/npm-run-path-2.0.0.tgz","integrity":"sha512-QLqEEWRSpaJc8qzvU+fQSzl6c/UUYcSUz3xaUEpObNl94FDkWx6oLKMpATBh/iH+iPqmHiagetfPIk/sE2j4ug=="},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/npm-run-path-2.0.0.tgz_1474785287361_0.8598830895498395"},"directories":{},"publish_time":1474785289794,"_hasShrinkwrap":false,"_cnpm_publish_time":1474785289794,"_cnpmcore_publish_time":"2021-12-13T12:02:11.809Z"},"1.0.0":{"name":"npm-run-path","version":"1.0.0","description":"Get your PATH prepended with locally installed binaries","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/npm-run-path"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"sindresorhus.com"},"engines":{"node":">=0.10.0"},"scripts":{"test":"xo && ava"},"files":["index.js"],"keywords":["npm","run","path","package","bin","binary","binaries","script","cli","command-line","execute","executable"],"dependencies":{"path-key":"^1.0.0"},"devDependencies":{"ava":"*","xo":"*"},"gitHead":"8565fe56a35dd58bde38d20409339ba2e0200bd0","bugs":{"url":"https://github.com/sindresorhus/npm-run-path/issues"},"homepage":"https://github.com/sindresorhus/npm-run-path","_id":"npm-run-path@1.0.0","_shasum":"f5c32bf595fe81ae927daec52e82f8b000ac3c8f","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.4","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"f5c32bf595fe81ae927daec52e82f8b000ac3c8f","size":2030,"noattachment":false,"tarball":"https://registry.npmmirror.com/npm-run-path/-/npm-run-path-1.0.0.tgz","integrity":"sha512-PrGAi1SLlqNvKN5uGBjIgnrTb8fl0Jz0a3JJmeMcGnIBh7UE9Gc4zsAMlwDajOMg2b1OgP6UPvoLUboTmMZPFA=="},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"directories":{},"publish_time":1451328854293,"_hasShrinkwrap":false,"_cnpm_publish_time":1451328854293,"_cnpmcore_publish_time":"2021-12-13T12:02:12.144Z"},"5.1.0":{"name":"npm-run-path","version":"5.1.0","description":"Get your PATH prepended with locally installed binaries","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/npm-run-path.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"type":"module","exports":"./index.js","engines":{"node":"^12.20.0 || ^14.13.1 || >=16.0.0"},"scripts":{"test":"xo && ava && tsd"},"keywords":["npm","run","path","package","bin","binary","binaries","script","cli","command-line","execute","executable"],"dependencies":{"path-key":"^4.0.0"},"devDependencies":{"ava":"^3.15.0","tsd":"^0.17.0","xo":"^0.45.0"},"types":"./index.d.ts","gitHead":"99c4be75df5f4bba6cde86c4397440681428eb8f","bugs":{"url":"https://github.com/sindresorhus/npm-run-path/issues"},"homepage":"https://github.com/sindresorhus/npm-run-path#readme","_id":"npm-run-path@5.1.0","_nodeVersion":"16.13.1","_npmVersion":"8.3.2","dist":{"integrity":"sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==","shasum":"bc62f7f3f6952d9894bd08944ba011a6ee7b7e00","tarball":"https://registry.npmmirror.com/npm-run-path/-/npm-run-path-5.1.0.tgz","fileCount":5,"unpackedSize":8018,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiA0/GCRA9TVsSAnZWagAAKUsP/2CX48OjPuQ9V80YRRSk\nxSrcFuzZV3Jts1hvst6DrkHZtvid/oQJZuI2pANbzI+svscVq6yw0rw2zJHy\nAjNCAoxLujUX22o8YQQG96nAU/uH25CiE/2lY2xlwCTv3d8b3EDNPrLEsS+R\nDDO8YvYnLxBKBAyaIWT19t4EeRAns0SZ9FnS/fUDgbptslmyHu1e/wIVfxif\nkrTz4VoF9/maAZK+zbRglKiPidvi5NqkD21L7dod4Czn1/YahHxwjVukFI95\n5iMFgY+sYvoEnYocuWPZQ5VIWLlCj0NCPLs6cButgrfkmrCkNMSR1lM7ERix\nmhb6uhwWwbTTFQQfsmuz5HNOryrfqMeE8FdEwrtvbIxYxc9ShTpCTI6wAoMR\n6dgLaxQY+3ekwj5vqksN9gkJAFIdOJce60/incdatKGfOfmrv7nSWtCikfx1\nnchhGcLL+y1waUARIlgbSzFoV89DqAU3c8bvwVO7iZTCdT8lGgpE4hBIrhVD\nE+lPNNjHcWF+nVYs9Itx92d3X6U70oD280JXRoH1NW82GzB924bFvFMUEeEp\neENNtKmbfaX6Vv4XcuQc6EZ9DZfYyumJAIdfshiQHTEn8d2lCJfxcKplwJwi\nDW5cM6cQ3AUET/jI69afO5UMZhU3YjmwISSDoy1qppoxs5rNyDggg0Of6LvI\nXuRg\r\n=md0c\r\n-----END PGP SIGNATURE-----\r\n","size":2905},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"directories":{},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/npm-run-path_5.1.0_1644384197963_0.8250067700723449"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-02-09T05:23:22.955Z"},"5.2.0":{"name":"npm-run-path","version":"5.2.0","description":"Get your PATH prepended with locally installed binaries","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/npm-run-path.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"type":"module","exports":"./index.js","types":"./index.d.ts","sideEffects":false,"engines":{"node":"^12.20.0 || ^14.13.1 || >=16.0.0"},"scripts":{"test":"xo && ava && tsd"},"keywords":["npm","run","path","package","bin","binary","binaries","script","cli","command-line","execute","executable"],"dependencies":{"path-key":"^4.0.0"},"devDependencies":{"ava":"^3.15.0","tsd":"^0.17.0","xo":"^0.45.0"},"gitHead":"8462fd251b08a18e5e77e94d6202963510f1403e","bugs":{"url":"https://github.com/sindresorhus/npm-run-path/issues"},"homepage":"https://github.com/sindresorhus/npm-run-path#readme","_id":"npm-run-path@5.2.0","_nodeVersion":"21.2.0","_npmVersion":"9.2.0","dist":{"integrity":"sha512-W4/tgAXFqFA0iL7fk0+uQ3g7wkL8xJmx3XdK0VGb4cHW//eZTtKGvFBBoRKVTpY7n6ze4NL9ly7rgXcHufqXKg==","shasum":"224cdd22c755560253dd71b83a1ef2f758b2e955","tarball":"https://registry.npmmirror.com/npm-run-path/-/npm-run-path-5.2.0.tgz","fileCount":5,"unpackedSize":7739,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHTBnELFg/JSEdLhP/RGkku9nucZKIopvDk5hzCmJeFEAiEApLs+wHMMa+0/4snzMkQfW/6Vm/afZGYfFb4MUAoczkQ="}],"size":2747},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"directories":{},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/npm-run-path_5.2.0_1703174562252_0.4742530686087243"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-12-21T16:02:42.414Z","publish_time":1703174562414,"_source_registry_name":"default"},"5.3.0":{"name":"npm-run-path","version":"5.3.0","description":"Get your PATH prepended with locally installed binaries","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/npm-run-path.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"type":"module","exports":"./index.js","types":"./index.d.ts","sideEffects":false,"engines":{"node":"^12.20.0 || ^14.13.1 || >=16.0.0"},"scripts":{"test":"xo && ava && tsd"},"keywords":["npm","run","path","package","bin","binary","binaries","script","cli","command-line","execute","executable"],"dependencies":{"path-key":"^4.0.0"},"devDependencies":{"ava":"^3.15.0","tsd":"^0.17.0","xo":"^0.45.0"},"gitHead":"92a572f0c39fe48467c9d294e3d6a27e301bcfb1","bugs":{"url":"https://github.com/sindresorhus/npm-run-path/issues"},"homepage":"https://github.com/sindresorhus/npm-run-path#readme","_id":"npm-run-path@5.3.0","_nodeVersion":"21.6.2","_npmVersion":"9.2.0","dist":{"integrity":"sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==","shasum":"e23353d0ebb9317f174e93417e4a4d82d0249e9f","tarball":"https://registry.npmmirror.com/npm-run-path/-/npm-run-path-5.3.0.tgz","fileCount":5,"unpackedSize":8471,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEvjg8Xjkhg7NmHY+6DqBEU7d1+SgDjHOvz6e6twkl/jAiAPU8+vmy6RxMJL0/I9ANUKZYolatj5NrD/YkixAtSgIg=="}],"size":2968},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"directories":{},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/npm-run-path_5.3.0_1708655887043_0.5454260993223214"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-02-23T02:38:07.190Z","publish_time":1708655887190,"_source_registry_name":"default"},"6.0.0":{"name":"npm-run-path","version":"6.0.0","description":"Get your PATH prepended with locally installed binaries","license":"MIT","repository":{"type":"git","url":"git+https://github.com/sindresorhus/npm-run-path.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"type":"module","exports":{"types":"./index.d.ts","default":"./index.js"},"sideEffects":false,"engines":{"node":">=18"},"scripts":{"test":"xo && ava && tsd"},"keywords":["npm","run","path","package","bin","binary","binaries","script","cli","command-line","execute","executable"],"dependencies":{"path-key":"^4.0.0","unicorn-magic":"^0.3.0"},"devDependencies":{"ava":"^6.1.3","tsd":"^0.31.1","xo":"^0.59.3"},"_id":"npm-run-path@6.0.0","gitHead":"dbea877d781b7da037d3f89dfc921aae174feb28","types":"./index.d.ts","bugs":{"url":"https://github.com/sindresorhus/npm-run-path/issues"},"homepage":"https://github.com/sindresorhus/npm-run-path#readme","_nodeVersion":"18.20.4","_npmVersion":"10.6.0","dist":{"integrity":"sha512-9qny7Z9DsQU8Ou39ERsPU4OZQlSTP47ShQzuKZ6PRXpYLtIFgl/DEBYEXKlvcEa+9tHVcK8CF81Y2V72qaZhWA==","shasum":"25cfdc4eae04976f3349c0b1afc089052c362537","tarball":"https://registry.npmmirror.com/npm-run-path/-/npm-run-path-6.0.0.tgz","fileCount":5,"unpackedSize":8644,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDgNFWmjAhjS6OP86Brc1ia/lxtPr+p8rj0POkiO1yxTgIhAJnmmBYsZJ8+4owWz3czUpARiH0MdRTdL91DsGbr3tV4"}],"size":3007},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"directories":{},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/npm-run-path_6.0.0_1724661609638_0.11857341848677017"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-08-26T08:40:09.814Z","publish_time":1724661609814,"_source_registry_name":"default"}},"bugs":{"url":"https://github.com/sindresorhus/npm-run-path/issues"},"homepage":"https://github.com/sindresorhus/npm-run-path#readme","keywords":["npm","run","path","package","bin","binary","binaries","script","cli","command-line","execute","executable"],"repository":{"type":"git","url":"git+https://github.com/sindresorhus/npm-run-path.git"},"_source_registry_name":"default"}