{"maintainers":[{"email":"hello@nrwl.io","name":"anonymous"},{"email":"james@henry.sc","name":"anonymous"}],"keywords":["lerna","command"],"dist-tags":{"next":"6.5.0","latest":"6.6.2"},"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"description":"Execute an arbitrary command in each package","readme":"# `lerna exec`\n\n> Execute an arbitrary command in each package\n\nInstall [lerna](https://www.npmjs.com/package/lerna) for access to the `lerna` CLI.\n\n## Usage\n\n```sh\n$ lerna exec -- <command> [..args] # runs the command in all packages\n$ lerna exec -- rm -rf ./node_modules\n$ lerna exec -- protractor conf.js\n```\n\nRun an arbitrary command in each package.\nA double-dash (`--`) is necessary to pass dashed flags to the spawned command, but is not necessary when all the arguments are positional.\n\nThe name of the current package is available through the environment variable `LERNA_PACKAGE_NAME`:\n\n```sh\n$ lerna exec -- npm view \\$LERNA_PACKAGE_NAME\n```\n\nYou may also run a script located in the root dir, in a complicated dir structure through the environment variable `LERNA_ROOT_PATH`:\n\n```sh\n$ lerna exec -- node \\$LERNA_ROOT_PATH/scripts/some-script.js\n```\n\n## Options\n\n`lerna exec` accepts all [filter flags](https://www.npmjs.com/package/@lerna/filter-options).\n\n```sh\n$ lerna exec --scope my-component -- ls -la\n```\n\n> The commands are spawned in parallel, using the concurrency given (except with `--parallel`).\n> The output is piped through, so not deterministic.\n> If you want to run the command in one package after another, use it like this:\n\n```sh\n$ lerna exec --concurrency 1 -- ls -la\n```\n\n### `--stream`\n\nStream output from child processes immediately, prefixed with the originating\npackage name. This allows output from different packages to be interleaved.\n\n```sh\n$ lerna exec --stream -- babel src -d lib\n```\n\n### `--parallel`\n\nSimilar to `--stream`, but completely disregards concurrency and topological sorting, running a given command or script immediately in all matching packages with prefixed streaming output. This is the preferred flag for long-running processes such as `babel src -d lib -w` run over many packages.\n\n```sh\n$ lerna exec --parallel -- babel src -d lib -w\n```\n\n> **Note:** It is advised to constrain the scope of this command when using\n> the `--parallel` flag, as spawning dozens of subprocesses may be\n> harmful to your shell's equanimity (or maximum file descriptor limit,\n> for example). YMMV\n\n### `--no-bail`\n\n```sh\n# Run a command, ignoring non-zero (error) exit codes\n$ lerna exec --no-bail <command>\n```\n\nBy default, `lerna exec` will exit with an error if _any_ execution returns a non-zero exit code.\nPass `--no-bail` to disable this behavior, executing in _all_ packages regardless of exit code.\n\n### `--no-prefix`\n\nDisable package name prefixing when output is streaming (`--stream` _or_ `--parallel`).\nThis option can be useful when piping results to other processes, such as editor plugins.\n\n### `--profile`\n\nProfiles the command executions and produces a performance profile which can be analyzed using DevTools in a\nChromium-based browser (direct url: `devtools://devtools/bundled/devtools_app.html`). The profile shows a timeline of\nthe command executions where each execution is assigned to an open slot. The number of slots is determined by the\n`--concurrency` option and the number of open slots is determined by `--concurrency` minus the number of ongoing\noperations. The end result is a visualization of the parallel execution of your commands.\n\nThe default location of the performance profile output is at the root of your project.\n\n```sh\n$ lerna exec --profile -- <command>\n```\n\n> **Note:** Lerna will only profile when topological sorting is enabled (i.e. without `--parallel` and `--no-sort`).\n\n### `--profile-location <location>`\n\nYou can provide a custom location for the performance profile output. The path provided will be resolved relative to the current working directory.\n\n```sh\n$ lerna exec --profile --profile-location=logs/profile/ -- <command>\n```\n","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"packages/legacy-structure/commands/exec"},"bugs":{"url":"https://github.com/lerna/lerna/issues"},"license":"MIT","versions":{"3.0.0-beta.0":{"name":"@lerna/exec","version":"3.0.0-beta.0","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.0.0-beta.0","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"gigabo@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"},{"name":"anonymous","email":"me@thejameskyle.com"}],"homepage":"https://github.com/lerna/lerna","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"9c0b9b2e9aa6054adf007dba331c595a5d1c562b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.0.0-beta.0.tgz","fileCount":4,"integrity":"sha512-zFay6t1qTskMHNRI0PDkoP8YtsGWrbjjwjYEdgvdtCD9HpZm+UYsClhlB8ZH5CTJAMMGY7CROp/F7xe6uSzdyg==","signatures":[{"sig":"MEUCIG144eFMnVvllEli1tPE/4Qgj9JgllaANdwInT/bztouAiEAtKAZnazeBB3TKmM1WAi0OultmD91CBnkCGb8KwXnj/Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":5025},"main":"index.js","files":["command.js","index.js"],"yargs":{"populate--":true},"engines":{"node":">= 6.9.0"},"gitHead":"349b9c765bcbf38988d1fcd48313422417a04c8f","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git"},"_npmVersion":"5.7.1","description":"TODO","directories":{},"_nodeVersion":"8.9.4","dependencies":{"@lerna/command":"^3.0.0-beta.0","@lerna/child-process":"^3.0.0-beta.0","@lerna/batch-packages":"^3.0.0-beta.0","@lerna/filter-options":"^3.0.0-beta.0","@lerna/validation-error":"^3.0.0-beta.0","@lerna/run-parallel-batches":"^3.0.0-beta.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_3.0.0-beta.0_1520388898231_0.5657422116300832","host":"s3://npm-registry-packages"}},"3.0.0-beta.1":{"name":"@lerna/exec","version":"3.0.0-beta.1","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.0.0-beta.1","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"gigabo@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"},{"name":"anonymous","email":"me@thejameskyle.com"}],"homepage":"https://github.com/lerna/lerna","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"1f39e135810cf1171c3e4dc1e40ef01341a490a8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.0.0-beta.1.tgz","fileCount":5,"integrity":"sha512-RhiqStNbDeKCFXmVH5RHz0GIVuTZkUz3ERXnLgXdP4+XFcUnXCap/LT3X5KUeZ78bYV66tUWWNIfR3VZ6h316Q==","signatures":[{"sig":"MEQCIAKCC8WwHWWpAKNoT7rIHc/6ERFWIOwM3iQt6/vRKJ08AiBVvzdsur00KB8judfYzUvrhsz8uLMBcw7OPVtxcUpoPg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":5514},"main":"index.js","files":["command.js","index.js"],"yargs":{"populate--":true},"engines":{"node":">= 6.9.0"},"gitHead":"5a527968bb9f7b7c3af0d5d86391d6d2650ddc7a","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git"},"_npmVersion":"5.7.1","description":"TODO","directories":{},"_nodeVersion":"8.9.4","dependencies":{"@lerna/command":"^3.0.0-beta.1","@lerna/child-process":"^3.0.0-beta.0","@lerna/batch-packages":"^3.0.0-beta.1","@lerna/filter-options":"^3.0.0-beta.1","@lerna/validation-error":"^3.0.0-beta.0","@lerna/run-parallel-batches":"^3.0.0-beta.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_3.0.0-beta.1_1520563847738_0.4196955187879543","host":"s3://npm-registry-packages"}},"3.0.0-beta.2":{"name":"@lerna/exec","version":"3.0.0-beta.2","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.0.0-beta.2","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"gigabo@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"},{"name":"anonymous","email":"me@thejameskyle.com"}],"homepage":"https://github.com/lerna/lerna","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"985283a4b986e75bc42a9e1b453e7422aade94e2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.0.0-beta.2.tgz","fileCount":5,"integrity":"sha512-JeHhHgUot8SinDYxLMXdydmJtHyZjW362lzu2HYVi3MbIidTYlkToL+CYqTsHZ1Kd9JxvtBV4EmyLwvxhCqMMQ==","signatures":[{"sig":"MEQCIFyJCCByRTWcLDoPWoaK5OORPGzL00dvdCR5qo0XDzV4AiAYcySwUP4qYJyrVOFOTro/PaoytMhqgcMxrTQrrYw7yg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":5700},"main":"index.js","files":["command.js","index.js"],"yargs":{"populate--":true},"engines":{"node":">= 6.9.0"},"gitHead":"ca9561a1ffe6292cceaeca30e4f7d5d85757c710","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git"},"_npmVersion":"5.7.1","description":"TODO","directories":{},"_nodeVersion":"8.9.4","dependencies":{"@lerna/command":"^3.0.0-beta.2","@lerna/child-process":"^3.0.0-beta.0","@lerna/batch-packages":"^3.0.0-beta.1","@lerna/filter-options":"^3.0.0-beta.2","@lerna/validation-error":"^3.0.0-beta.0","@lerna/run-parallel-batches":"^3.0.0-beta.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_3.0.0-beta.2_1520648909761_0.6153828482034376","host":"s3://npm-registry-packages"}},"3.0.0-beta.3":{"name":"@lerna/exec","version":"3.0.0-beta.3","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.0.0-beta.3","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"gigabo@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"},{"name":"anonymous","email":"me@thejameskyle.com"}],"homepage":"https://github.com/lerna/lerna","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"4716f172b4916b2a6899c1d97d9430b6bf0aaf1f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.0.0-beta.3.tgz","fileCount":5,"integrity":"sha512-ugs3FgcDyZEZlF7Ns/Ab6dgAV9X8udVVZrijvdnPsfOwIE/3d+kTgiR3m/9zGSdLaJuMPjTU94ILf/ou9ax3vw==","signatures":[{"sig":"MEQCIEMCmwIgRf0n/CrnKIiUMFsidgNn698g0f2TbuMdRw70AiBTFMyQz8NcynK1ZjLOMqxPyEzVXpmh3HDGkf52hJnrEw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":5886},"main":"index.js","files":["command.js","index.js"],"yargs":{"populate--":true},"engines":{"node":">= 6.9.0"},"gitHead":"1ee15326adf778c32e4b136bbfb27e1c899716a1","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git"},"_npmVersion":"5.8.0-next.0","description":"TODO","directories":{},"_nodeVersion":"8.10.0","dependencies":{"@lerna/command":"^3.0.0-beta.3","@lerna/child-process":"^3.0.0-beta.0","@lerna/batch-packages":"^3.0.0-beta.1","@lerna/filter-options":"^3.0.0-beta.2","@lerna/validation-error":"^3.0.0-beta.0","@lerna/run-parallel-batches":"^3.0.0-beta.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_3.0.0-beta.3_1521126077742_0.9914686284546055","host":"s3://npm-registry-packages"}},"3.0.0-beta.4":{"name":"@lerna/exec","version":"3.0.0-beta.4","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.0.0-beta.4","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"gigabo@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"},{"name":"anonymous","email":"me@thejameskyle.com"}],"homepage":"https://github.com/lerna/lerna","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"993c834ee60831b85e0106c9291d160bc0e12100","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.0.0-beta.4.tgz","fileCount":5,"integrity":"sha512-r+l0vvCN6jo2hQHKjnePYU8+wiE8Glewbe64lgxBY9218cC4Tdrw73YC2IQYJu+GrUgYa1B+it7MnA60UMOn9Q==","signatures":[{"sig":"MEUCIGINqlvSC2pPoVxQ9B+qMlgimER35j/r/nrvRVRfMlmSAiEA24S/Ikcz4BIypqnGD9T7BcQRm2GtbWb+a2j+VY2Qoes=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6072},"main":"index.js","files":["command.js","index.js"],"yargs":{"populate--":true},"engines":{"node":">= 6.9.0"},"gitHead":"8f97fb02258e02c7783ad27e140ca3eba5f8f40e","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git"},"_npmVersion":"5.8.0-next.0","description":"TODO","directories":{},"_nodeVersion":"8.9.4","dependencies":{"@lerna/command":"^3.0.0-beta.4","@lerna/child-process":"^3.0.0-beta.0","@lerna/batch-packages":"^3.0.0-beta.1","@lerna/filter-options":"^3.0.0-beta.2","@lerna/validation-error":"^3.0.0-beta.0","@lerna/run-parallel-batches":"^3.0.0-beta.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_3.0.0-beta.4_1521495078048_0.24051281714495665","host":"s3://npm-registry-packages"}},"3.0.0-beta.7":{"name":"@lerna/exec","version":"3.0.0-beta.7","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.0.0-beta.7","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"gigabo@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"},{"name":"anonymous","email":"me@thejameskyle.com"}],"homepage":"https://github.com/lerna/lerna","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"e4cfd018148d87425278f9a8c02181af1d87dcc3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.0.0-beta.7.tgz","fileCount":5,"integrity":"sha512-ZbWj/f/XBgTAj0V66+XVP2REEuljSP9GPi7kxWYikYXpUNTMp541djzLU7nf69BTLgH1s9vxFjc0KMr0LOu0rQ==","signatures":[{"sig":"MEUCIQDpmq1y7DAdybUsBympBlbiGkvNcgEUdXbbPAWd1zKnCwIgHkglgndg1Bqbo79PC3buC/tCK+OKn2pgTZUqBPWwgBM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6258},"main":"index.js","files":["command.js","index.js"],"yargs":{"populate--":true},"engines":{"node":">= 6.9.0"},"gitHead":"3cb86666a711bffbf13a8cbded1c762d683f4bda","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git"},"_npmVersion":"5.8.0-next.0","description":"TODO","directories":{},"_nodeVersion":"8.9.4","dependencies":{"@lerna/command":"^3.0.0-beta.7","@lerna/child-process":"^3.0.0-beta.0","@lerna/batch-packages":"^3.0.0-beta.1","@lerna/filter-options":"^3.0.0-beta.2","@lerna/validation-error":"^3.0.0-beta.0","@lerna/run-parallel-batches":"^3.0.0-beta.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_3.0.0-beta.7_1521507057708_0.8164504881528887","host":"s3://npm-registry-packages"}},"3.0.0-beta.9":{"name":"@lerna/exec","version":"3.0.0-beta.9","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.0.0-beta.9","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"gigabo@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"},{"name":"anonymous","email":"me@thejameskyle.com"}],"homepage":"https://github.com/lerna/lerna","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"d80fa85b78fb4eeb5aa1fa134eb5c6cfd66e792d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.0.0-beta.9.tgz","fileCount":5,"integrity":"sha512-pgoNza0DurPokirfOx9HgwG4U4cZ2Nb+6mUyYIHiUgyKG2tCH87pbozzC+/9AhWnhJh3IvejvAgS1HDrNWYRpw==","signatures":[{"sig":"MEYCIQDaPwKh77JQT1vI6WwWhukG9Yj1xqrrMZFa8cZUe5OxZAIhAJagSwl7w1lCSDjepFnxVyqwhiGRq+1LJOu+kN5Hcvcb","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6517},"main":"index.js","files":["command.js","index.js"],"yargs":{"populate--":true},"engines":{"node":">= 6.9.0"},"gitHead":"70528f23cad0186fdf7529fe32148cc1eff21272","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git"},"_npmVersion":"5.8.0-next.0","description":"TODO","directories":{},"_nodeVersion":"8.10.0","dependencies":{"@lerna/command":"^3.0.0-beta.9","@lerna/child-process":"^3.0.0-beta.0","@lerna/batch-packages":"^3.0.0-beta.1","@lerna/filter-options":"^3.0.0-beta.9","@lerna/validation-error":"^3.0.0-beta.0","@lerna/run-parallel-batches":"^3.0.0-beta.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_3.0.0-beta.9_1521857430603_0.2003614448512634","host":"s3://npm-registry-packages"}},"3.0.0-beta.10":{"name":"@lerna/exec","version":"3.0.0-beta.10","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.0.0-beta.10","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"gigabo@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"},{"name":"anonymous","email":"me@thejameskyle.com"}],"homepage":"https://github.com/lerna/lerna","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"f0913c5ea493de8bf2434c5e4311c434d22d263b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.0.0-beta.10.tgz","fileCount":5,"integrity":"sha512-AMfK1EBV1PM02bIGF8nyX5rUR+Tgris49gAihvNLUje3JtGrJ0TWQOTgingkGtIh3E9raYfTHY7TapJCpmE6AA==","signatures":[{"sig":"MEUCIQDFmSHHZ5VPMErWwEUJwrkCTQ6HC/5kDq7TpaK7+P4wTAIga0BA7wgxDDmsK9hMZkBjHl6q6lEJPXNtFEU07A+g230=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":6994},"main":"index.js","files":["command.js","index.js"],"yargs":{"populate--":true},"engines":{"node":">= 6.9.0"},"gitHead":"c52f8713303b246e6d701950cd78ca6f9bd55503","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git"},"_npmVersion":"5.8.0","description":"TODO","directories":{},"_nodeVersion":"8.10.0","dependencies":{"@lerna/command":"^3.0.0-beta.10","@lerna/child-process":"^3.0.0-beta.0","@lerna/batch-packages":"^3.0.0-beta.10","@lerna/filter-options":"^3.0.0-beta.9","@lerna/validation-error":"^3.0.0-beta.10","@lerna/run-parallel-batches":"^3.0.0-beta.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_3.0.0-beta.10_1522109331368_0.41554885553420084","host":"s3://npm-registry-packages"}},"3.0.0-beta.11":{"name":"@lerna/exec","version":"3.0.0-beta.11","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.0.0-beta.11","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"gigabo@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"},{"name":"anonymous","email":"me@thejameskyle.com"}],"homepage":"https://github.com/lerna/lerna","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"fc4bc7bf1907cfde6b744c51e079726b002b19c7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.0.0-beta.11.tgz","fileCount":5,"integrity":"sha512-YRB5Wy1AHpFQMynd2S0Sq2uKsgLUk1rsWp1eXNZUG3ZZNJEB78M1Lq5QRng62GOFlRiX4q45Eo9aLtRvBnsyNA==","signatures":[{"sig":"MEQCIEP9U7ean2YAg9MW9AWjb7uAYwLNTMsGsei6hMIOk8IGAiA+1DTY6Gm/N2VQwZHRywte0OSwWLGVxJYdp6caD4piyw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":7305},"main":"index.js","files":["command.js","index.js"],"yargs":{"populate--":true},"engines":{"node":">= 6.9.0"},"gitHead":"197a09d58322e86f589ef7839c2438f830d72476","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git"},"_npmVersion":"5.8.0","description":"TODO","directories":{},"_nodeVersion":"8.10.0","dependencies":{"@lerna/command":"^3.0.0-beta.11","@lerna/child-process":"^3.0.0-beta.11","@lerna/batch-packages":"^3.0.0-beta.11","@lerna/filter-options":"^3.0.0-beta.9","@lerna/validation-error":"^3.0.0-beta.10","@lerna/run-parallel-batches":"^3.0.0-beta.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_3.0.0-beta.11_1522287456054_0.4908232951420126","host":"s3://npm-registry-packages"}},"3.0.0-beta.12":{"name":"@lerna/exec","version":"3.0.0-beta.12","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.0.0-beta.12","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"gigabo@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"},{"name":"anonymous","email":"me@thejameskyle.com"}],"homepage":"https://github.com/lerna/lerna","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"3bdabfca24a2bf621a9b81e5f507591e10ed4aba","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.0.0-beta.12.tgz","fileCount":5,"integrity":"sha512-3uLf7P9mq2kIXsNRMWMNMhZFYDuLyaD3ugqk+sgot3OWq0pjV1jC6hNE61d9S3rCnMZdXdbbd0D6VN3icxrarQ==","signatures":[{"sig":"MEUCICWtcnG9rIV8n/4O4dkNn3hA8E+X8Aa7aLh54A/qLMZQAiEAn/FRTrTeARSrYM0RUEcLtgbYV1ca64IiIxjiUMkDb0s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8162},"main":"index.js","files":["command.js","index.js"],"yargs":{"populate--":true},"engines":{"node":">= 6.9.0"},"gitHead":"05dce5c0e4bca8dc894a99ed28337c85c211b37c","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git"},"_npmVersion":"5.8.0","description":"TODO","directories":{},"_nodeVersion":"8.10.0","dependencies":{"@lerna/command":"^3.0.0-beta.12","@lerna/child-process":"^3.0.0-beta.12","@lerna/batch-packages":"^3.0.0-beta.11","@lerna/filter-options":"^3.0.0-beta.9","@lerna/validation-error":"^3.0.0-beta.10","@lerna/run-parallel-batches":"^3.0.0-beta.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_3.0.0-beta.12_1522373375186_0.5975163568936204","host":"s3://npm-registry-packages"}},"3.0.0-beta.13":{"name":"@lerna/exec","version":"3.0.0-beta.13","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.0.0-beta.13","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"gigabo@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"},{"name":"anonymous","email":"me@thejameskyle.com"}],"homepage":"https://github.com/lerna/lerna","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"c4670dc4d012de24904ea6bc0d8d21ce4133fff0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.0.0-beta.13.tgz","fileCount":5,"integrity":"sha512-a9FGqCzXkXrujbn5vMTJbtYfeRsHyPAFiy4nYRuSXGXtDNVajfvTR2RwxHTV8+ILcZfJSDHshvVWfM8dp9X1UQ==","signatures":[{"sig":"MEUCIBSGsTbtW5b28DM7dCvWbg1safp4PctuIInLTuZtYAbfAiEA1D4ZjVJjX89lF2dKX84oVLDMbdRhsAKHzchdx8Srujk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8452},"main":"index.js","files":["command.js","index.js"],"yargs":{"populate--":true},"engines":{"node":">= 6.9.0"},"gitHead":"4cae54bce76bf156e71a2881418104c442f97c62","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git"},"_npmVersion":"5.8.0","description":"TODO","directories":{},"_nodeVersion":"8.10.0","dependencies":{"@lerna/command":"^3.0.0-beta.13","@lerna/child-process":"^3.0.0-beta.13","@lerna/batch-packages":"^3.0.0-beta.11","@lerna/filter-options":"^3.0.0-beta.9","@lerna/validation-error":"^3.0.0-beta.10","@lerna/run-parallel-batches":"^3.0.0-beta.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_3.0.0-beta.13_1522457851222_0.980553067544925","host":"s3://npm-registry-packages"}},"3.0.0-beta.14":{"name":"@lerna/exec","version":"3.0.0-beta.14","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.0.0-beta.14","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"gigabo@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"},{"name":"anonymous","email":"me@thejameskyle.com"}],"homepage":"https://github.com/lerna/lerna","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"9c2afe58c9359d07e95b36b3b85f1e65914b479d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.0.0-beta.14.tgz","fileCount":5,"integrity":"sha512-3CvNpKUm9o312Fl8rDz69eaBu0UQVWgutzmlzulzIrRgIPdi0w2mNIJa+CXTgNxyFBUonMRoX0IFFQPz/iBmfQ==","signatures":[{"sig":"MEQCIFT3IiQWWtPoMC18z9uFLoKI7uLDtmy+4bsmzmVKk3hVAiADP6GfUViODbCAujIh1Ea2pDdRHuE16CQCRKEY9ZzHUQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8779},"main":"index.js","files":["command.js","index.js"],"yargs":{"populate--":true},"engines":{"node":">= 6.9.0"},"gitHead":"4c4aceee84b39eb399e968a0c87241ee59edce4f","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git"},"_npmVersion":"5.8.0","description":"TODO","directories":{},"_nodeVersion":"8.11.1","dependencies":{"@lerna/command":"^3.0.0-beta.14","@lerna/child-process":"^3.0.0-beta.13","@lerna/batch-packages":"^3.0.0-beta.14","@lerna/filter-options":"^3.0.0-beta.9","@lerna/validation-error":"^3.0.0-beta.10","@lerna/run-parallel-batches":"^3.0.0-beta.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_3.0.0-beta.14_1522798490841_0.4617111365284352","host":"s3://npm-registry-packages"}},"3.0.0-beta.15":{"name":"@lerna/exec","version":"3.0.0-beta.15","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.0.0-beta.15","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"gigabo@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"},{"name":"anonymous","email":"me@thejameskyle.com"}],"homepage":"https://github.com/lerna/lerna","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"0c8ceefbdd87e9ce5a16a563ab0e4bb03b1d55db","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.0.0-beta.15.tgz","fileCount":5,"integrity":"sha512-xQZW/cKacO6gJbaCme6xLvHI/QcwFp+XYDSnVHSz8jAUM3Mhuf3eFf7viM68BP1zThL5NgxjjKtNWCAvE33umg==","signatures":[{"sig":"MEQCIHFDWt7HNFc+QbxXqm7NuQk8MA2bMgtaj6dIkn8RdphMAiBzJxrlHgclEWyTkZccIlXZ/peru14AzklbblGEj3xWqw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8969},"main":"index.js","files":["command.js","index.js"],"yargs":{"populate--":true},"engines":{"node":">= 6.9.0"},"gitHead":"f7a8e7bc271a5966035a5cbe3bf0eee556c8053a","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git"},"_npmVersion":"5.8.0","description":"TODO","directories":{},"_nodeVersion":"8.11.1","dependencies":{"@lerna/command":"^3.0.0-beta.15","@lerna/child-process":"^3.0.0-beta.13","@lerna/batch-packages":"^3.0.0-beta.14","@lerna/filter-options":"^3.0.0-beta.9","@lerna/validation-error":"^3.0.0-beta.10","@lerna/run-parallel-batches":"^3.0.0-beta.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_3.0.0-beta.15_1523316819283_0.5771259634804582","host":"s3://npm-registry-packages"}},"3.0.0-beta.17":{"name":"@lerna/exec","version":"3.0.0-beta.17","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.0.0-beta.17","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"gigabo@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"},{"name":"anonymous","email":"me@thejameskyle.com"}],"homepage":"https://github.com/lerna/lerna","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"5423bf84a43cdd016ae5055587f68c54afd6d1f4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.0.0-beta.17.tgz","fileCount":5,"integrity":"sha512-t0WTZfMYyDe8993Jit1o+BX7DjRwW3ons3t+35qUfvklXUkdzc7ijhW6jOJaOHBIMxWIOxZZqUgKh+IQw/bwZQ==","signatures":[{"sig":"MEQCICbEBKEn0UuP+p1wFVIoEySDu3f6PLRTcT3OuiDOpS5nAiBwY6Jfwk1Zhf3P+XxcVVv6GDKbf0a44WWtcQ7GQV6ubw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":9159},"main":"index.js","files":["command.js","index.js"],"yargs":{"populate--":true},"engines":{"node":">= 6.9.0"},"gitHead":"5e462676b3793b8d4981fc7f8b81af2fc839adf7","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git"},"_npmVersion":"5.8.0","description":"TODO","directories":{},"_nodeVersion":"8.11.1","dependencies":{"@lerna/command":"^3.0.0-beta.17","@lerna/child-process":"^3.0.0-beta.13","@lerna/batch-packages":"^3.0.0-beta.14","@lerna/filter-options":"^3.0.0-beta.9","@lerna/validation-error":"^3.0.0-beta.10","@lerna/run-parallel-batches":"^3.0.0-beta.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_3.0.0-beta.17_1523583125133_0.9438023338726542","host":"s3://npm-registry-packages"}},"3.0.0-beta.18":{"name":"@lerna/exec","version":"3.0.0-beta.18","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.0.0-beta.18","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"gigabo@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"},{"name":"anonymous","email":"me@thejameskyle.com"}],"homepage":"https://github.com/lerna/lerna","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"f121498c1dc17d2878f205c8a94b5fe86a3864ea","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.0.0-beta.18.tgz","fileCount":5,"integrity":"sha512-Er6N9mqHiHFGTx0QMg3KZ311JsG6cPpFuCw0ZLuSc53DdRLu6rZRE5KiD/fN2315f7W3A9ag5PqXQvBkAoos/Q==","signatures":[{"sig":"MEQCIDZhEqqszFQmrS3xbieV9kWyQDYpPB1miPRaIHV9ZzenAiAvpPl7x/dsaVJQL0SWEiEd3cS6CgV3PJCDQPO7ZhsIEA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":9350,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa35E0CRA9TVsSAnZWagAAivoP/0G13wIdgo2NOgKHIzhF\njfx6EdHT0knEKRdazFyOVcS+zOV/z8s7XjRaNsSas1AanHKduCL7HgL15XRg\nH0w/dqaKK7/1r7rnyNG1ytWppxaOEeFSYtyT6NmERhTWut5RN2LSrinz9cRX\nvxFAq60C+cmT+S7Eh/eTo82JI+8nE9a/071DWxSK3SxnBZcegD7cPK+r9ahB\nSXaqtY54SD4d+BUybkPFWqIGaTapGcpii9Qx+fAiSbNkntLD+zM7ydel2XU9\nHoF9ySbnYvEEzByGNT2vNNiDcgOkTUc7pKKEXn+BoUfRx1abEMN4DYG8L2CP\njHu7xraxEkjVsbCGTDNJ5cLTxrj1BVuOIpFcKIGYaiQdqnB3Sg5hX9um1qnT\njWOckU+7SbBkKlpTrxVjMMSyiHKMV30lEc/Cl2AXSOjXBnKjNFv+dui++9NS\n0FJSxiizqVrmheYIIL7VFP1ZhV7ofEuiokjPchTztAzBdN1hMSfzmVJbFAUs\nrxmfZtChy2Mdj6mpuLvDZKtw+UziwbF0vAvS2VYSSPjbwbL07Q9yPuDYl9hW\nTUH7Yx3IXvu5k7VnRmrFnHhb/XV7ac5iNawaRFcFEOwz4R0SpOR8jpRM1l4F\n47yf1tsJ6nvvGydUJfrou+k6dvwaPMae0x5/fjlhr8C5oHF5yX7oAJZ7ct6h\n0ID1\r\n=LaoV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","files":["command.js","index.js"],"yargs":{"populate--":true},"engines":{"node":">= 6.9.0"},"gitHead":"7995561e8d010d9fa2e59109b57b9ad8573baba1","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git"},"_npmVersion":"5.8.0","description":"TODO","directories":{},"_nodeVersion":"8.11.1","dependencies":{"@lerna/command":"^3.0.0-beta.18","@lerna/child-process":"^3.0.0-beta.13","@lerna/batch-packages":"^3.0.0-beta.18","@lerna/filter-options":"^3.0.0-beta.18","@lerna/validation-error":"^3.0.0-beta.10","@lerna/run-parallel-batches":"^3.0.0-beta.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_3.0.0-beta.18_1524601139862_0.7919961400364213","host":"s3://npm-registry-packages"}},"3.0.0-beta.19":{"name":"@lerna/exec","version":"3.0.0-beta.19","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.0.0-beta.19","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"gigabo@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"},{"name":"anonymous","email":"me@thejameskyle.com"}],"homepage":"https://github.com/lerna/lerna","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"1e01041fc501fa993c8b2caaca7a3c2ebce6dc20","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.0.0-beta.19.tgz","fileCount":5,"integrity":"sha512-g3NG97Y3ytV2FOGdLxKw0AXto+iifYyDoOMgK4ZfxbdpzzlnDV7GdQrkbet7NYXXLSAyiRCfi9+qmxO+juf+fA==","signatures":[{"sig":"MEUCIGdWV2hjuC4Du+c7zaKcoNavD3BgoA6mN7WZXwg9GWyWAiEA9csfTSer9ZvPfphCy8opezZtZHdApn9bmPoxPKDR8rI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":9540,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa6z8cCRA9TVsSAnZWagAAFpEP/2knZUwSBHzOTgovSOgh\nZ324/wyZVCy84xohQYxzPaeye5xic9amXgosSW7zqJfi8XHB1wXI2+Jb9ubD\nEnelZ4tjW46DlosYKYJihnzK97RJxkfUgduLC9mmNgDH9SwKz63k5LfAGycG\n3tp+APvVRVTvD2hsIrdW5N+beyQr+cxvfUIjRkz1eXy/hZWSWui825ZVXEp/\nTKPVqF70ODuw1AICUTzrwrH1VcBzvQo1/VAlnsdYQKQX9zaFGH1hWnfyahJL\nAHfrxVwijHnmDOcPDCAS8ekNnZ67c6SPFIaJcMbKdm5ILrRb8aLmLDWtBXti\n0RzTxY3BwqGqEy2dNraCiT9FIFlAlsHlU267uwRgUloZq75lcf7eN/066eGe\nTAAXOZbYGmxJGKd2dLGTgt5Ye40J7VnlvPW/LOmXE1fykN9uCiBFxJYVlu+o\nIWFq3eyEpthLO7dwB+c0iV0F9SpyTE5q+6Y0T0CNy39N/IGO45jHrg5hmaFY\n7IZkSduE15B9KH2l2xFyqS8qVegkkJXgUUTAcoTkLFDqSx0nPfKdLKchGmje\nEtO03xnJIXRinUiz3th6xJUm2pb79HVLmLhACLsPL+/7hOIQ/2OwtLqIB9pc\ntrJFQLUqnB+hKCFyT5vI2fXWX3NDBh6MDU6q1xQDObrrNJt7JfEiZQfQypTw\nt4Jf\r\n=+Toc\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","files":["command.js","index.js"],"yargs":{"populate--":true},"engines":{"node":">= 6.9.0"},"gitHead":"3574466560f600828a0f288cec8d137a21404f15","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git"},"_npmVersion":"6.0.0","description":"TODO","directories":{},"_nodeVersion":"10.0.0","dependencies":{"@lerna/command":"^3.0.0-beta.19","@lerna/child-process":"^3.0.0-beta.13","@lerna/batch-packages":"^3.0.0-beta.18","@lerna/filter-options":"^3.0.0-beta.18","@lerna/validation-error":"^3.0.0-beta.10","@lerna/run-parallel-batches":"^3.0.0-beta.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_3.0.0-beta.19_1525366555439_0.756735353654659","host":"s3://npm-registry-packages"}},"3.0.0-beta.20":{"name":"@lerna/exec","version":"3.0.0-beta.20","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.0.0-beta.20","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"gigabo@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"},{"name":"anonymous","email":"me@thejameskyle.com"}],"homepage":"https://github.com/lerna/lerna","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"148d7db4afe01abea845d40e851f8c4fb3572477","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.0.0-beta.20.tgz","fileCount":5,"integrity":"sha512-JKnaCXxItWvaDZUfKY2iI2fXGMKBEucxom5ENZtxnsNgX10bJ3D6E5TeKwD5zVQWS5u5rArsl8T09s0izo5ojw==","signatures":[{"sig":"MEUCIGcjwsDgMW/OK0X6NcS/CSVVVARiKAmLBJwbcTkIICYYAiEA+NgshxmeNSgJah4AlRLXTLeu34bwiWDfFZloL1DxG3U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":9730,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa8OJSCRA9TVsSAnZWagAAbboP+wRXSPn8bjiJIfYd3LDR\nHFQMca7k4KorOpCfkG1oUEwpk4JO4IclkxrqDb8Io2JoC7RDoSauI/YP3gGH\nItJlDBBgRBoTimdfZ88qehgrzAJfMSjxoNE+c7h+gcLOCfRd2S7NDcyHFJCg\nHFU3J8o7Mxaci9NFgslQFhvqoDL7vE4Nj3lDt3/BF+F2qglkEJqmyn0IA47N\nFMA23C6+PEYYCeSVI+vP/pFcCsXz0Q0ZhSybqxqAhgY+6oWnJs6eXy7o08QS\nHHZZuaIBsz08x3PxsPLC7KRRgeZkH/yjfd7mAnWXQ7u+AMq08bXcGQNcX17K\n+SE/L/mE6RLKmdZ0RCd6IrrL6mUCeFlDJHWMo5skI5hv7hEhNvoanvu14lDh\nM9kiztiE0/iN3NmHBOpRGe1Ke/pnNxVd+0RcQXvboJRxas0t7n0KuQOULDLQ\n2+HNQvFB2WvPu/nZrR2EpJyiU965IDTwP9I1mgUIp3YlLAlVooq0pRDGjXHv\nME/PrVt3Qd10kbs+vNlXVCV9jppjVnfZJ9YmyMyN7V9NGc4Lib4hgWm8ekRp\nqace30hTYWWupYNVBQq915L5RRyxs6POwYRbWslmweTFlDXPvNgyflI7B3Fb\n1OOLOG0z3M2237GziF0RxFsR3VthCPooYnWCYeQP9HSrqyJE97wfouEb7WSs\n8LOL\r\n=p/SA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","files":["command.js","index.js"],"yargs":{"populate--":true},"engines":{"node":">= 6.9.0"},"gitHead":"ca46d62c0db8c289f58a08bcd8447fcfb6b2f92b","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git"},"_npmVersion":"5.8.0","description":"TODO","directories":{},"_nodeVersion":"8.11.1","dependencies":{"@lerna/command":"^3.0.0-beta.20","@lerna/child-process":"^3.0.0-beta.20","@lerna/batch-packages":"^3.0.0-beta.18","@lerna/filter-options":"^3.0.0-beta.18","@lerna/validation-error":"^3.0.0-beta.10","@lerna/run-parallel-batches":"^3.0.0-beta.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_3.0.0-beta.20_1525736017968_0.33663683283801626","host":"s3://npm-registry-packages"}},"3.0.0-beta.21":{"name":"@lerna/exec","version":"3.0.0-beta.21","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.0.0-beta.21","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"gigabo@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"},{"name":"anonymous","email":"me@thejameskyle.com"}],"homepage":"https://github.com/lerna/lerna","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"5bbdd1b1ed22c42224f1ed21fe0873003182b0ec","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.0.0-beta.21.tgz","fileCount":5,"integrity":"sha512-JsGpl98dk2CrQ3iMw2tFk9dbmf2iFDeOmFIHUWxDwXSC+MLiFCl+XZeJ4AY3/OmF2sQev/HtysfnaqULxkYxUQ==","signatures":[{"sig":"MEUCIQC4PqKr9R6NtMWhWlVhnP5piSrXNjNf/hAEG9bGQV8AFAIgYkuq08I0FaxXYSU6z/a0gMht83WcVvz4GYRw/8rXnG4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":9924,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa9j2HCRA9TVsSAnZWagAAwm4QAKAsvXwBqsNmlSA2Eu7c\nilMaQQG5ovS3Ke+tdSSPBsAjMEhs0c7i3urBWFgk5vRv7gLE9XAgkpgKrPv0\nOosEuVK/fem3krlYkpB8VQr1X1Hz0S19a1x7f/9SM1VLjt28wq71PMpdmm8R\nHZbqRRbUT6hUqvn1/N9NoET39XpGNW9MIZTkTZsNpkE6egJpzcPwcxs5Q+t4\nGkc2DfQ3rJpkp1LBcYa3HUUF8VLM+Qg1jX8M7r+xnkzddsDNJ8+NqPZGGMy2\nyCXQemX88TnA8bLMyCFS2sjunmrzvlSKzz8PqZCgAMQWLXj8bqGs5HudOIpQ\nzYigSAOZ19Ozmd7/gGYCzBmdpqSMpiM3T+occ9D0qJUAyun/QRUSMWnZMzDu\npxthx2Dmt+qz+lkXSpdThdAnPzu8R6+I8qOtMkUUW3WZI3GoShfj5rKeCrbi\nb586QPbMfzE26rhr8NJo2cHhehqP8x02Cy9sU5ueMJUr/64Q6tx5/7+NwEmy\nf5rYfyFfqiZ8NyGPXxr1CjXkLfsVZvJ1RCz5iOXcmxjhzpSRJNAZD7F00WEG\n52ctU9hOxfzDqVVxhYr/roRUzK6TYsbpukZY3HLy9wvmYQPXdmZOB5rIGtrP\nxyL2ixMJ/CQWI5+9UgpLAn0aKMfbMiI6j9CzcOsgmNLdO9bd7wIborYMIXBj\nHzfW\r\n=bEAA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","files":["command.js","index.js"],"yargs":{"populate--":true},"engines":{"node":">= 6.9.0"},"gitHead":"ce5c4842e5c927beaa13779c6429a8d7c5b5a933","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git"},"_npmVersion":"6.0.1","description":"TODO","directories":{},"_nodeVersion":"10.0.0","dependencies":{"@lerna/command":"^3.0.0-beta.21","@lerna/child-process":"^3.0.0-beta.21","@lerna/batch-packages":"^3.0.0-beta.18","@lerna/filter-options":"^3.0.0-beta.18","@lerna/validation-error":"^3.0.0-beta.10","@lerna/run-parallel-batches":"^3.0.0-beta.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_3.0.0-beta.21_1526087046730_0.6505092107750245","host":"s3://npm-registry-packages"}},"3.0.0-rc.0":{"name":"@lerna/exec","version":"3.0.0-rc.0","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.0.0-rc.0","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"gigabo@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"},{"name":"anonymous","email":"me@thejameskyle.com"}],"homepage":"https://github.com/lerna/lerna","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"5b42b876354e6643b792f7be66e71e8be25f0173","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.0.0-rc.0.tgz","fileCount":6,"integrity":"sha512-DYU00HAAoreqNQmLV0+gfH4mXIJKbd1rbrMvQbnfCTZ3nWYiORXQwvwCYbGgmsMarSaJ/T3eTPP6LvsVt7y1aw==","signatures":[{"sig":"MEQCIFJ7Wy/5ujgjlJzRCRuCxGAfYkC3x0kDS3obatqvdubYAiAXhOSqkJUIum3/eJGQGEtgqFuVn+4y99w/OqywqvpmXQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":14110,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbWnctCRA9TVsSAnZWagAAygQP/AoXfdP2MTlLM5wdQxEP\nIyehJ67qzc0nHp5twhNOqg3OWkSEnso+s5cpznWGBuj3bMIN2UsrOlv15vYR\nfaSPbqdPyWhfFMaV3eEtEvScMomAv0dbkINaeBzSeyK/UpLLDE945BEKQ3vv\ni1ImmC2arTWzXJwQaUvkaq/G10Mljjun6Oxlp4+xBjj5pnxvueQKNPPbBYp/\n2aenm1NMygULUut3lM1RoXBUSCeqKfsVolgmWzGgim1oNkcGLJOr2c0xxulL\nFb9kJvoB5Hv3/jxzNU9OCTHmpdlwMeMkxvarpxbze7Lbb+bpepONButEpDff\nPykd3Zu0L4enz8SBaPwGd0ae6LK0yxQW+CNmK5cq+iDFWZwju1EGbUnRl1SN\n+fismlgjaWLupnWcGKbXW0BZBr1upjpphUdxBrCt4RFNCgCvX3BEoIgelaGe\nsaBror0e/NiVYOQVgD1lz2mNDJh/94OOip5Ib6xE4b2FAZc87i5UJLeT+8SS\niOgJFptlcmKbpkkek2QsRGuxZqq3dQ+ZVKLjRhNWkH4gaTb62UT5WcUBBsU8\nVJLDjsKyuqGdyHnW2HrHF/sDXrl1NJ1rj/iQbAOPCvZJcc87NDb1+FvubCC9\nr8iCtOceCJnNvAb7FL7Bi+6v1+9TFzg8dVOWlTpSdWQ9UQbfEhB4+ILp6Zdb\nXhfR\r\n=3pGW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","files":["command.js","index.js"],"yargs":{"populate--":true},"engines":{"node":">= 6.9.0"},"gitHead":"1ab24c152d3ff5c2b9453bcaafeb4b5e432b2410","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git"},"_npmVersion":"6.3.0-next.0","description":"Run an arbitrary command in each package","directories":{},"_nodeVersion":"10.7.0","dependencies":{"@lerna/command":"^3.0.0-rc.0","@lerna/child-process":"^3.0.0-rc.0","@lerna/batch-packages":"^3.0.0-rc.0","@lerna/filter-options":"^3.0.0-rc.0","@lerna/validation-error":"^3.0.0-rc.0","@lerna/run-parallel-batches":"^3.0.0-rc.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_3.0.0-rc.0_1532655405599_0.38766317715622844","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"@lerna/exec","version":"3.0.0","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.0.0","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"gigabo@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"},{"name":"anonymous","email":"me@thejameskyle.com"}],"homepage":"https://github.com/lerna/lerna","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"79b031a58b0ebf673912dfa7cdfc6c5eaee34a4c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.0.0.tgz","fileCount":6,"integrity":"sha512-AtlvpnKdcoUq+XPQZHkEBUiGznCpq8SYtvo7Y0o4O8CZxYw/FKCTS8rXNUB/DPFen3OqX8ySmEAg0g5MMbr2Jg==","signatures":[{"sig":"MEYCIQCxiJkK21glItDv1NC+CGZRYjGbWRtEblFWpFp9XSFlRQIhAPNIrL2dLqSDCQDTR7PH3YjJnVT0AhtzqeB9u2JbvUeu","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":14238,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbbOdqCRA9TVsSAnZWagAAScMP/jqGAj6NMOQKk193jXFe\no9OqGit9IJmMPuu5ZwfKZ5IO5IEXzY85tr/DZXtS+ja+SMgU1PrL/vVjXVuw\nDeFByzI4EESkRpjnfRvdpTWk/NzUPGxKS/EYdNAslvlLMjoqSeeYGtahoaO4\nx56vvNfhhQ0BeTtPzUAyqcEk15F03EXWkOpLoaHUdrqexZMkX6DNofOwx5BX\nYkkMjNfH9Vne1VFrDaXO0pHIyk+Bzr90o8kZACBgtdEF3/9rNrdhA2GC+Yld\nPBNIP4bFExiHqHudcYVl+DJt87KbiVW6bRNr9Y/TVyWXalvab372i2hgRGXW\n5mV+nXh8Xru4Qhh7xCd1qozAC6JAtCL4KRtsat0juUdfJ1uDOXyLQbAD1gvU\nqGTRr/h9ba8MDF52LE2X3nnB4afLjRYqOapwHM4+DKIxMzaEV7AXb2PiH5PM\nPUen0OTMsjEsKpyMAxI+kzxQGE/I1K+9XMzzDIQWsA/h3+xNQ/3O6+1h8OS4\nZp+aXrWk5uvW31bBCGulFDHDAKLT3E2ZMjVYrV4NOFgd+yREki3I/xsYsyuh\n7q9xZmtG3OA6UWUZUFBaE0L6SI7HvK3MtH5WfwSB56Wd0EAplKSaTbe7WD/q\n8T2xG0LJni58W63QtFTEixSkufT+9JvQmcDLIgu+oxggVfLT7F/I2HI+qZfh\nHk/w\r\n=NRez\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_from":"file:lerna-exec-3.0.0.tgz","files":["command.js","index.js"],"yargs":{"populate--":true},"engines":{"node":">= 6.9.0"},"gitHead":"0c40a17a7cd4e9acd8e7ec33ffacd1c1acef5dc6","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"_resolved":"","_integrity":"","deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git"},"_npmVersion":"6.3.0","description":"Run an arbitrary command in each package","directories":{},"_nodeVersion":"10.7.0","dependencies":{"@lerna/command":"^3.0.0","@lerna/child-process":"^3.0.0","@lerna/batch-packages":"^3.0.0","@lerna/filter-options":"^3.0.0","@lerna/validation-error":"^3.0.0","@lerna/run-parallel-batches":"^3.0.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_3.0.0_1533863785532_0.4098030028562354","host":"s3://npm-registry-packages"}},"3.0.2":{"name":"@lerna/exec","version":"3.0.2","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.0.2","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"gigabo@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"},{"name":"anonymous","email":"me@thejameskyle.com"}],"homepage":"https://github.com/lerna/lerna","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"97c055e5d636e4510362f0542f8b85ce9bc0a19b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.0.2.tgz","fileCount":6,"integrity":"sha512-4v4SuNiX8ssEufSAhGOhhnre7fifIJlvd8bOI8RY1ocBywtAHmPkmlz1HOlRx4wnlzAZNn+mXqFghgjHEGuY/g==","signatures":[{"sig":"MEUCIQDPQ724dVgwhENk/9IGwLKoekAe4W7IV0vRURtv5ZqngwIgdfSXaQ/ByxPatqiVzPtja+UFakb4S2pKhlb0iiiSLM8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":14498,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbbjEoCRA9TVsSAnZWagAAbkcP/0dAWIJdwrcTUs2icbjC\n59I9eWqWs7yIAZJOXEsmFgNRKi6zzZaORojixIsIv4CUyZyqerhuNRAXyD4v\nGQhaswQc49FUot6Mu4TLqaaE7z6q6K+A2Hl/+syYsAKWLeW0+UE/43jdgrym\nLDYtspoR8ljdgqS8IMmY/drIRgUfPCb3VCMhQwd2fZ7zDIk+pEGpMZZ4eqhx\nrS7Tfz5LdbIyxbMsvjFoTfAJrvNkhEB5T7YST9D7dk4srqit/ZxQF+S6aQfM\ngjpEVkt8+1M/fY1KVDBD8NwaYZgFC0c3jOEXyViPYcoYmS8BztNFImvdwjr9\nM7N/Y6yaLq/NphIn7qx50RsgEF+gJ7QMzQyfb9YSuZxVjT53xBBzW5QKAQqi\nwVxJB1+SEXPNjMD88EVu1yTfEFWsg3eIv4hjvozGI93gIvDTRUHsbmqHBUPm\nEbsFGdScXDtNMX3hYV6Ctf+nJ9lO0FF8R9JXtECa+9m6tJ/WgYs+KmXhe4rd\nmGkcHItx+hD+2HyU3uHMDmjdwQH4TZjWL/+rVU3H59f6VUeUz7aCvsvsq1FJ\nkad9U7uZJKMMqfBJ0UBKaZTRzke4EYQ0Y2zXZKbKSGw0lobVanwRYwP7znqz\nOpPJWzZ+bdBOXRNmv7qLdQKVDMsOtn5y4CrnMwf4GQ8LL/tSzc1HD8vH6KH4\nAnED\r\n=2UK9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_from":"file:lerna-exec-3.0.2.tgz","files":["command.js","index.js"],"yargs":{"populate--":true},"engines":{"node":">= 6.9.0"},"gitHead":"784d64e7dbd1275175bc080d148656916e2f5d76","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"_resolved":"","_integrity":"","deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git"},"_npmVersion":"6.3.0","description":"Run an arbitrary command in each package","directories":{},"_nodeVersion":"10.7.0","dependencies":{"@lerna/command":"^3.0.0","@lerna/child-process":"^3.0.0","@lerna/batch-packages":"^3.0.0","@lerna/filter-options":"^3.0.0","@lerna/validation-error":"^3.0.0","@lerna/run-parallel-batches":"^3.0.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_3.0.2_1533948199679_0.023450770608110405","host":"s3://npm-registry-packages"}},"3.0.5":{"name":"@lerna/exec","version":"3.0.5","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.0.5","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"gigabo@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"},{"name":"anonymous","email":"me@thejameskyle.com"}],"homepage":"https://github.com/lerna/lerna","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"5a38fa1a059e2067541c80f637102ad73e511633","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.0.5.tgz","fileCount":6,"integrity":"sha512-QjDduW8WoYYjOZXYyWXeuSfnf+t/GhXI/D4b5fw7chpA57tSrSo4YiNIEVjXz3eS6CR88cOG6s1A4mZ5/ecPbg==","signatures":[{"sig":"MEUCIBztJupCUYW83CpENkuqSmqjbnTDwhCqoGAf3peFKVTJAiEAmgdVFFkAlhau0twXGtgYira2w3vsnvD+8Ag4XtY+LoM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":14657,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbc3QXCRA9TVsSAnZWagAAxa4QAJx7wpahGLrJ1cpF7LcU\nrdZDT/YhjaKmqAXYkGN7nOJW6FoXoFtSshhDQJKB/2eji1rL+fMb7gwEpoFM\n7UQ6DEhKBgAxBFnzEuHgqJZIv/NMknj78S/Sn7fbu/RkC7NLy7i+fxHxd6m1\nrGudPkippsVih5qTttXcj3H3r07nC4zmY/W8nUrbGT1RrRjc8xgt8PqLxC7H\nBgDxb42bTu2xsmVptB0MwNCaEC9LV8NAJf+JNyvExVs/mpzF5wL2lHlGZVhG\nCaOATqn5ZUIEpPnauPcx5q9UGp5ZsWwX4EWmddpMaLuVB9tiw6wfsarascdm\neHkdOchTHoFaePlRAp4N63kwNKcM3bTZDK+FcpI9zgfi4EoPwandLkuYQuxY\nTE43ZcNfIhy7XuANdVR+CrzeakmQmdo3GpOtu7iedYU+euVa8a3A0G7V2X5H\n/+xbvPwVKACJZq8o+2UUuxdFtKJUuJIoqAhsAoa6K5WDs9dyFWj459sBTVVe\ncAl6K8xAF4yi0WVJchh1w4JWKLxWAJykbK+xEgfBfee+nWnQEegb4j5fgv1n\nINHCbt5rfYXwlMwkLgahveFC36FfOI5+61BPOVNY9VBqUMeVhTBLmLPqgIeF\nOept/td6CQ/Hu/l2fQq/1ttbmMotQx3U4uf05yjwYZ8WD9OxMrfkDK/JcINb\nvdrb\r\n=hCSO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_from":"file:lerna-exec-3.0.5.tgz","files":["command.js","index.js"],"yargs":{"populate--":true},"engines":{"node":">= 6.9.0"},"gitHead":"882b52eb4eec60f161c77feb0bb175efea0f2909","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"_resolved":"","_integrity":"","deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git"},"_npmVersion":"5.10.0","description":"Run an arbitrary command in each package","directories":{},"_nodeVersion":"8.11.2","dependencies":{"@lerna/command":"^3.0.5","@lerna/child-process":"^3.0.0","@lerna/batch-packages":"^3.0.0","@lerna/filter-options":"^3.0.5","@lerna/validation-error":"^3.0.0","@lerna/run-parallel-batches":"^3.0.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_3.0.5_1534293015847_0.7493537871198863","host":"s3://npm-registry-packages"}},"3.0.6":{"name":"@lerna/exec","version":"3.0.6","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.0.6","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"gigabo@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"},{"name":"anonymous","email":"me@thejameskyle.com"}],"homepage":"https://github.com/lerna/lerna","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"7bac34edae73fc63123b1c88fdc9ef782009fcf6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.0.6.tgz","fileCount":6,"integrity":"sha512-HCs2SAdz76LiPFzA00c8DT5VZr0/yyAR66OLXwZ9cNZMXnFrdQ5lm3W512AEj6yanZMs9MyrNIGIV2mRzssLrw==","signatures":[{"sig":"MEYCIQC2L9yR2Qu0qQvBVASStm/yY6Y9ICOfZWimiFwzmPDapgIhAPJa22Jd7WgfUlVcXZA4uHE1hbZ1UlsT5fhETC52lppp","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":14816,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbdMZxCRA9TVsSAnZWagAA7kYP/2PeA5HEXlNApevNe70T\nTA+srlb5JKWHCufKwEDM1TuVd34uj4aEhENKd+761WR7fPopv0mzb1a+FkHO\nSXzvlpA9T82h120hL06JFwe4iqBtA2ECTp9eWuI+wtaM/yTOz6MXW/d8o6Z2\n8SiRVf/8hY2f+1t7IYHg+LIt9IY7EabwPjc1SljRe1NMzB66kUk9qJqPTieK\npHJmsEkdacJv/mOOW9LdlR94WAGf8eSGoPjjGKt7BNjcqSKa9qccJW/ZabrR\ndu3Oj4bSxdz7mO8htpq8w2V2DLG1DNmrZlYHaMsBdsvUGWW38uynqcmuj/hU\nhTnMx/BJ0/ay+QzdE8GMO8UrGqOrRMsoHCo2bDqY20bhcyoiziuOOK6I9slm\nfyQW7hyvAWGvyMki0d/Gkk5sDzkRs2BymKEq3bicUFWnFroj8fMpOwO31mDD\niG7Rczr0XR//21EIzQLsawnMEtL1j8UoHeKgNW9exssFb4oIOA45uY89Xi/M\nJwIom9E8681VI4Lavan8ehd4JW62n0bVEKE4/cyShTQk8+ZfN9cH6o5gddXd\ndfY10SQADClZ0C9Bvcg9DqolpephlO8HtmJyn903W/gp/PFUzmwK2KGJzkjF\nF4BqKKc7/z3FtLvLyFSoF/a3xbtkkbwR90r0uBV7GmfOpJelfk1xAc8Xw4lX\n0BkY\r\n=m5pe\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_from":"file:lerna-exec-3.0.6.tgz","files":["command.js","index.js"],"yargs":{"populate--":true},"engines":{"node":">= 6.9.0"},"gitHead":"f2e67db8dbd6966288d7b351604a7a554ba905fa","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"_resolved":"","_integrity":"","deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git"},"_npmVersion":"6.3.0","description":"Run an arbitrary command in each package","directories":{},"_nodeVersion":"10.7.0","dependencies":{"@lerna/command":"^3.0.6","@lerna/child-process":"^3.0.0","@lerna/batch-packages":"^3.0.0","@lerna/filter-options":"^3.0.5","@lerna/validation-error":"^3.0.0","@lerna/run-parallel-batches":"^3.0.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_3.0.6_1534379633130_0.25944633100144565","host":"s3://npm-registry-packages"}},"3.1.0":{"name":"@lerna/exec","version":"3.1.0","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.1.0","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"gigabo@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"},{"name":"anonymous","email":"me@thejameskyle.com"}],"homepage":"https://github.com/lerna/lerna","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"ea8e7d74ddd9fd1e79dc893fa0f44e772be84ac9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.1.0.tgz","fileCount":6,"integrity":"sha512-Y7RxJigf3xPl3dgdmDQRYaDAKuR0YqEnxB/SAu3r/40hm+TVqHXqXqxWcY0FOcovTVoPz6B57IqoZ7peUGX9Gw==","signatures":[{"sig":"MEUCIQDHVWxTrN0brW3WtXsdE1VR+wqlqzfyLDEOOzsFNdxYHAIgM4bcKtyizlw45rYxg8rv2t43kdH5iRZc9DCJ6nw9+G4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":14974,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbd0HJCRA9TVsSAnZWagAAU6sQAJ9u//FgjOcfzDbEfYY+\nXxuTXbzhQkKNW7sQPH+ihDFrCocryVthdUtfJ8Iton9H95VTn8xddkvgIadn\nnqe8blKbl10UffPlka1uwJM23m7/gg1lF6lIXFpi5/HH404GNN6r42VllFj9\n1jYvM/Cl72eowzarbO82G+BVQGYEIhYcZmJ/wUt8fpOjGOE2q7QxuTkLR2aL\n/3Eh9M1M5reBqJHNYQDQxUPr54H2N7Xv1tPECvuq16FMnbwR9NBd8UqFEGwq\n+uHyZrh8X0Y9PxXIWm9pl3KU2k+CbUC05Ct2ylkTdZjMG7ld9ITvBZ6x/ZSc\nnqQUZxfNYwQ9+2X3bWrLEBHCGkRrAPWjPUwvUvP7BzTIoArpl5xGJsHzpN21\neljcXMIzRZulAF53QIzkZU64p/9YTDYr5RdZH2XQUgV/G83Bw7U5/APDDb4C\nf+gg2P8wK1ZDA7tPLM/q3VDK0HN7/Hy6rt/vJBk/p7ts890oL5A5qh2fPB4W\nRN01QP7lsEcjJ97fhZWXUDHkNZgb8bHl+Q2mxtrWRYKL3/0bpgCvDuQGtTn+\nI4AN2jXAjTYdPb+ZP0DAzu33YSUtbYI5REsAOrtQcJtw+OKQ7aCeO25NiYJD\nT1hWx1dVciAHlSQShEWBZitNi0Tt9OsGIcUC+KkrT2G0HQsvBMMHrgMzh/Dl\ngbyI\r\n=cAai\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_from":"file:lerna-exec-3.1.0.tgz","files":["command.js","index.js"],"yargs":{"populate--":true},"engines":{"node":">= 6.9.0"},"gitHead":"7f97c7bca038c690e2dd5d897e222fb5bca0a5e8","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"_resolved":"","_integrity":"","deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git"},"_npmVersion":"6.3.0","description":"Run an arbitrary command in each package","directories":{},"_nodeVersion":"10.7.0","dependencies":{"@lerna/command":"^3.1.0","@lerna/child-process":"^3.0.0","@lerna/batch-packages":"^3.0.0","@lerna/filter-options":"^3.0.5","@lerna/validation-error":"^3.0.0","@lerna/run-parallel-batches":"^3.0.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_3.1.0_1534542280204_0.9580933029973093","host":"s3://npm-registry-packages"}},"3.1.2":{"name":"@lerna/exec","version":"3.1.2","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.1.2","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"gigabo@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"},{"name":"anonymous","email":"me@thejameskyle.com"}],"homepage":"https://github.com/lerna/lerna","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"2eb73662d915fb88c8ba0ac8acf817d3d1aa6529","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.1.2.tgz","fileCount":6,"integrity":"sha512-paT/OH9YYBs0bq4Xlku5QMXONgsA7bhfaauJUooxHaPis8SpWrL6d+x4LnknYQdsQvESMSs/Zsj8dod3yOXPAg==","signatures":[{"sig":"MEUCIC8Ze7pxU5GlclfgfCePj3kU+4GH1qaA4qIzImGlNYlCAiEA0wjaHTu5bQ29UphUHYhkEjmzatnI78yOt6+sPErq80U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15549,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbe0+pCRA9TVsSAnZWagAAuhAQAIa/kJswpxu0N0PstKTO\nPDfj6y8qZPBYa9ULHAwHA/iYAP8gMjuEiOKcSoiA+DBOq9xRwUCPxRD3mjVY\n5mQ5FvEFsYLUkFBCDG9QF1ArvIXEII/kv1wtbXYBbG2sNTohXQ7Admgm+XAb\ncT/lcuwlBgYOqKobrrgnDMGsQaDB9XC3de0j1LjNRSWCq/t/oUMGfefQY2AB\n4NxOwkDQYjjnzjjA4iQqGzVkSrYhaSqF8m7DjMmEUeFAcLNcl8dE+dRjD7Fw\nE7fxr31TTFe0XLYEDbuz0wU7LRAARd4VuUjWPRmn0x1crHy4mNRhEytABJ+l\nCB/kV4iqHfdPLNpz7yHzNnF4ccl+uls1bJ8H82ERe6vpM6hVyMZJECWf63XM\ng9PVXKrFhRobeXgw8+OYQl79KYnojAXdwiu+nyyGAajwH4+FEnu1zj751eoo\nla1lY48KaZnCGggV9CW1Xq2AClHwk1woLyivglwIXVCoJiGciGdQD2SPbzsY\nu5e1gNUsI+nPTpssbi2BqkaYaiA03zPRtyXmsIf0nlmi4rvvsC/+nWJ5l1SE\nT6nv0voM64dnqiBkoU44z/E8EENkl7AeIredSVlh7aSyYvK1dvaSY5RYSVZV\nBLf2ixIbImN6cRIz6MTpvezkGw34GRw0DJp0dvy/knV/Nqd5BCncdbIghlXL\nn95Q\r\n=+Lga\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_from":"file:lerna-exec-3.1.2.tgz","files":["command.js","index.js"],"yargs":{"populate--":true},"engines":{"node":">= 6.9.0"},"gitHead":"6abc0c95ae6fc6e613e74618d86a060ae218938c","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"_resolved":"","_integrity":"","deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git"},"_npmVersion":"6.3.0","description":"Run an arbitrary command in each package","directories":{},"_nodeVersion":"10.7.0","dependencies":{"@lerna/command":"^3.1.2","@lerna/child-process":"^3.0.0","@lerna/batch-packages":"^3.1.2","@lerna/filter-options":"^3.1.2","@lerna/validation-error":"^3.0.0","@lerna/run-parallel-batches":"^3.0.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_3.1.2_1534807977326_0.3350643943532585","host":"s3://npm-registry-packages"}},"3.1.3":{"name":"@lerna/exec","version":"3.1.3","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.1.3","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"gigabo@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"},{"name":"anonymous","email":"me@thejameskyle.com"}],"homepage":"https://github.com/lerna/lerna","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"4e0f3d9b9213e1947f9ff2ae27306edb8aea1d0c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.1.3.tgz","fileCount":6,"integrity":"sha512-r0yQj9Rza5a42Shts8rXYGU1/Va8hO2atk/TEZgrA1EcTwgZyAuXsuML5UWbC/eLgwEjVDmc3MUSj8O1JijBMQ==","signatures":[{"sig":"MEUCID1DTfjMxx0TIIO6AsnsCJFFzi4qVzkcShtHvPGAQG6bAiEA32zTLu8CSQPZkNQrOz4EuYxivpne02NCXMujoaQwOzY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15708,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbfE31CRA9TVsSAnZWagAA/dQP+QAS3QZ0acIDYOiqimoS\noE85azfdgRaNciZiN8CXChEh5EJFUyCZA7VVx2hAgwXSD1yGccRes6kotcON\nRZl9X5levIvDdtEHkci82B8+ZmzH/jTWuWNSZyDKsXFg1XaMk3GQuTgNRJZ6\nfqv/NQ06FjExWD54+tUuFGWm3vcrxDbMo8yRBb9VyxyWpJlLEwgrP7WuQWI6\n5ziN1nQOkQzAB0sOlJqulPOF1R14CBemTJ+U5Jm7woMwunWpjsOCxInyNiWm\nsKjoUJJEjglX3nnYROkp76I/erRo2WhxVqmvUaatpICc3jFmDV+U1V/OV9OQ\nttqbzk0da7UsM1eNy9x2B12SWq7dFsBdg/SArlNeJBZQjCyrdfaGnVsRFPqK\nNqfJwfLcS3xh4sb50Vzudryx/ZAidzS5fnKexAAsf5mCvCIE2smQdiG8xgdc\n65mfYFmKNSCCC/PYXrLkqvOsLc5kbdMV5X70Or3yGZVSHUwxodmyoRlO9aUI\nJcHV2GtVXuUs8oQZW/JoJBvFi1T5gUQk9ZqGyEq+cAYQoTDVYAl7z1+/suNf\nSTYTWlAvn6dmsbT4TGcMQ1gBdIxZGV/4K8go0g90S05D4NBf1hcShwyL0CYx\nl5NEIGgVTg505FK5/awiCXckV6+Jro2BR9p/sBYFfOgwC1dSLcojxk6hoIHn\nObJu\r\n=J/76\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_from":"file:lerna-exec-3.1.3.tgz","files":["command.js","index.js"],"yargs":{"populate--":true},"engines":{"node":">= 6.9.0"},"gitHead":"a656a0136d7d5d8b8bb709e2da2b8b2582036fe7","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"_resolved":"","_integrity":"","deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git"},"_npmVersion":"6.3.0","description":"Run an arbitrary command in each package","directories":{},"_nodeVersion":"10.7.0","dependencies":{"@lerna/command":"^3.1.3","@lerna/child-process":"^3.0.0","@lerna/batch-packages":"^3.1.2","@lerna/filter-options":"^3.1.2","@lerna/validation-error":"^3.0.0","@lerna/run-parallel-batches":"^3.0.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_3.1.3_1534873077385_0.06624535203498239","host":"s3://npm-registry-packages"}},"3.3.0":{"name":"@lerna/exec","version":"3.3.0","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.3.0","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"}],"homepage":"https://github.com/lerna/lerna","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"d4e80ed6b6b8148bda39db7d6ed40546dac0925e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.3.0.tgz","fileCount":6,"integrity":"sha512-0FcvuIHMK/HVfIl4Ax/KnlNt9JzLU4uDgrA/VaB8ybRBNRE1voUJR9nz0rociXEe6wInPf/ZpJ6WHQ5A0A4Kow==","signatures":[{"sig":"MEQCIE4veFCoWrWEb3NfnPRYvecQjNVJ29DPUAu8XJP5UV+VAiB/5h9aJ2eOpOP2PTpnjt99xgGPuHqjx2dWKukaYiJXLQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":17218,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbkIPjCRA9TVsSAnZWagAAMzsQAJdpWJYS0kPfoOLM0QMt\nJNY5oXkg+1sR7FzemwQeKgRUvSJLu5BkG6hwFf+azu/1gj2pwdDBQXo61E05\nO6jwjy6ifWgKujitADNElABTa1lB7rshRbhmiADYXGeQcjBBy/1W7UvBldEw\n7zmkGGtBFFfNkZEm9+RJsFzcbXqvOLM9K3328M2tYZ4IeJiqq5ibULG8YZRW\nJTRFterFD5jod6NhLkSrJ0Dk2BpDupfszbqvpTgzaLwoe4oqojFyeR0O/BeX\n0zUa+BfqgCm2ajOzt97JN9BeAa6kKJ1r9XqcOfMrHdNPAZaZC1hrU7cuvwHO\nbay86/1WGc5iQLmppYncYVUwofIux1YFlXZxeDRB38mIg0/qC7Rv+NXaLVI7\nrRlebpBV8GjSritZm4+e2oA2EPXSBvdJT7ZIXQ6m5BFekhaW74UUUJkKaPGN\nVFrQjg8wBHOB9LB6GKnVwt8ggtOmhBCUouABPDV5tn1jhk9WEUNd5NvjrfiQ\nDVRgI7XQoz9iYbZyaL0TQ8GKTYwSuoe8C2HfXcQfeDlENkgxrRMmGRteUTQO\nzClRLYlpirm2zl50Pd3ln1aYt5zHrgq/ZA0CC/59W8mI1frgi95AE8Up6CN9\nzO8BvUiVXy4BDow4HLks4W10tb9t0RVKjUvVu+jnUzxZki4LqwwnjfBSvANf\nAx7w\r\n=OXYa\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_from":"file:lerna-exec-3.3.0.tgz","yargs":{"populate--":true},"engines":{"node":">= 6.9.0"},"gitHead":"901e6d54a47151dfed3d6ed2912804b97d05c6b5","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"_resolved":"","_integrity":"","deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git"},"_npmVersion":"6.4.1","description":"Run an arbitrary command in each package","directories":{},"_nodeVersion":"10.9.0","dependencies":{"@lerna/command":"^3.3.0","@lerna/child-process":"^3.3.0","@lerna/batch-packages":"^3.1.2","@lerna/filter-options":"^3.3.0","@lerna/validation-error":"^3.0.0","@lerna/run-parallel-batches":"^3.0.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_3.3.0_1536197602523_0.18022268992722545","host":"s3://npm-registry-packages"}},"3.3.2":{"name":"@lerna/exec","version":"3.3.2","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.3.2","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"}],"homepage":"https://github.com/lerna/lerna","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"95ecaca617fd85abdb91e9a378ed06ec1763d665","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.3.2.tgz","fileCount":6,"integrity":"sha512-mN6vGxNir7JOGvWLwKr3DW3LNy1ecCo2ziZj5rO9Mw5Rew3carUu1XLmhF/4judtsvXViUY+rvGIcqHe0vvb+w==","signatures":[{"sig":"MEQCIBDntyAgUQhesXVJN1amxTpH/2Hvf/Ss8MD9eJwldfQ7AiAXnEGdAOe03vREW9ewDO8iOXECIBVhitGUane/21zJQg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":17377,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbmahICRA9TVsSAnZWagAAk9AP/inXrtnb1zpiB+wLPjUN\n5cbTBRBLaRwVXkfDg7b2hcmYdAr7URh8uD2a3u9hZMplf6uw6KeEFY0eBUsA\ndx9wJH9zAZRkiOyDlnkZoOmZQbVwHZ3HdNBww/M3kX/84GPfCjjd7gi4GYwO\nYmfI4j+3mxdszEIqtP1MBdNXOnRTwy0UqW0xghAAsbDoLCLFJPV+Myk5S2H3\nQvXA+4z5JlILiM9Y4EO7j5VtFDccJwCOFyYdBiatoUswnvNPYT6DpVzjbopM\nZAJRUQ4VdoFPAEXGWRAyLknoqZUh6MP4teA1B/9EMlDPFqm+bXy0OdgpO601\nPAKhK5Ibpk2GDD5u5drUl1rJnpSkUcR48DPk/fZjjVQR8UcpGM4CJgOofvsC\n/+XFtmaH+mMFVgybGGeITX2Ec3elYkGio24aNU3xmYCh/E9+C6a781ip0RDb\nKC8DS+xeT3dd2tWnOzOQp7GWQsipnYjf/wyhX8FyT4DV8/bEgu4297ft/fKI\n/1MfWwin3i4Zr9cJ09FSYutuIsCZhdrEsGsDfgEdwmOcYXU7Qs4gTJqBC/np\nUHwt5rUxydPREoLuO6MmC8KIfKN4oDDTUJMCupCCY6SwNh27j15H9aG9vxnM\nPjYWwCjeaZr9yJUN0mmCl5cOpUa9SdpLr7AdlMgIejIV4OB216jLN5n5SQvu\nsEMx\r\n=4KB6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_from":"file:lerna-exec-3.3.2.tgz","yargs":{"populate--":true},"engines":{"node":">= 6.9.0"},"gitHead":"96e1c0086244da05af5602e56cbd790662b0b40a","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"_resolved":"","_integrity":"","deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git"},"_npmVersion":"6.4.1","description":"Run an arbitrary command in each package","directories":{},"_nodeVersion":"10.10.0","dependencies":{"@lerna/command":"^3.3.0","@lerna/child-process":"^3.3.0","@lerna/batch-packages":"^3.1.2","@lerna/filter-options":"^3.3.2","@lerna/validation-error":"^3.0.0","@lerna/run-parallel-batches":"^3.0.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_3.3.2_1536796743667_0.23259321193550186","host":"s3://npm-registry-packages"}},"3.5.0":{"name":"@lerna/exec","version":"3.5.0","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.5.0","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"}],"homepage":"https://github.com/lerna/lerna","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"98f4e8719681c07a739241fadb4cbdbd9d518982","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.5.0.tgz","fileCount":6,"integrity":"sha512-H5jeIueDiuNsxeuGKaP7HqTcenvMsFfBFeWr0W6knHv9NrOF8il34dBqYgApZEDSQ7+2fA3ghwWbF+jUGTSh/A==","signatures":[{"sig":"MEUCIHTPkHqV2yTD/yfvrXk+Ilk5DGjcNo0BgGVoHswZbQo+AiEAv97uzT0FQBi6bpJEGIIq7etyGUT8182DKv2piUpar8o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":17514,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb/aM7CRA9TVsSAnZWagAAKPMP/jn3LrTOoXSqzfelHFA/\ndzxf4EgyRcWSxvwGIb6SXf5KhGgTfGAISvImK5QKoeoBA+GodZNLGcMpjA0H\nZiOsJxs/ilFM2MfuvmFhxld2wKP2MoRIxauzK8NTuNjs/ohupcBlUKCy7uvn\ng15jio8mbRT9jH5gH9S59FqsWxH6ZMj0CylGb0S8B9HC3+Lob81Xmy69niEv\nG/nM1KUBDoqD8TO7e2Gcgk7KijdAdHcjtPrM9p0QnJlbuDVka7tvqGJ6Fb9a\nel4fz5RVcR/XOkLlWLblnO1+Cn2/EG0DGXQ4FpnaPmeX14RbJEyEavAC0Qd3\nkiVz02y2AGYaHdSoZuvTcU8r6LCSEBk1BLcHDmLv9C+qu8zLqeybnH9u5mWA\nzVNiI1fNFskM4DiZ3eE5GGCVpMmKwRW37cGwYkQNSvG9b4FwP9LuC0C3O5lp\npNMABBrmvxkXOj5ggrrHYtFE4JuyY15OLnbLIFiUlNw+qxcAyiQWeNakzl6X\nKQfRVYbx0R8Ku6OIIAvN5Z571zJHc8OPr4NZf1lm2h2p6q8fagVsy1kc8/vz\nIJKtz6KIhA2N7AWIxfMLQFXzI03BdJCF48OPFNUJDzeeXM4mLoer5yvDhaNC\nkFgmFJGyVMWbccC2YQyOVVrVdN2C9P1uDsK68KC5FNAYnVRJWtd5r/qt7ePS\nSePk\r\n=oays\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_from":"file:lerna-exec-3.5.0.tgz","yargs":{"populate--":true},"engines":{"node":">= 6.9.0"},"gitHead":"1c142db1ecb50120f0ddce8ff8a7d9cde1bee278","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"_resolved":"","_integrity":"","deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git"},"_npmVersion":"6.4.1","description":"Run an arbitrary command in each package","directories":{},"_nodeVersion":"8.12.0","dependencies":{"@lerna/command":"^3.5.0","@lerna/child-process":"^3.3.0","@lerna/batch-packages":"^3.1.2","@lerna/filter-options":"^3.5.0","@lerna/validation-error":"^3.0.0","@lerna/run-parallel-batches":"^3.0.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_3.5.0_1543349050764_0.2868968924865287","host":"s3://npm-registry-packages"}},"3.6.0":{"name":"@lerna/exec","version":"3.6.0","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.6.0","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"}],"homepage":"https://github.com/lerna/lerna","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"757e96e890e436a31efc59dc72c5a7c2944d1a44","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.6.0.tgz","fileCount":6,"integrity":"sha512-lwLYASpS8FoQpVYLBpoZlS7bpzkO9pD3D9XeDDKZBodDhdZeCEx2Md2CxZU1RKYDSVIXA8oObvlUh1FEhRQv2w==","signatures":[{"sig":"MEUCIGndWav0a3f8NHXe+HpFRiy4OSMTrJuqMHa6tFMnV0GdAiEApBBZsEDXbWXZSTs/J9Ne03UvnpmnXrZ9ukQsLKLzQDA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":17651,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcCwkiCRA9TVsSAnZWagAA+ZUP/jMCWKgbpkz/vC3EzvAB\nf/Gx6DcSMZT0MJebGTmBLp+cb0vWx4u5FVJKoZ1ksHbmAdxGdSD/2uc/Djd4\nKeA3JHfI+yt/LEY8d1hyVet1XNCPn6FI9v6+4jelw24nEhCn/NNSvBLOtuse\nu7Xbrh3guUWI0eq1NJa29PpuTS48K6dF6K4G0C+S6b/tM2d+ayJu0xC6sS4w\n9QYNoEUJJv5jM3TBIhdJ9+dNnu+BIE9gSXmWb0+VTCCp0Njrgm+KPPqWBVR3\noTZ0sx0yWkYVO4bSLBZ8HQ4+Hps7jGG5IXnIYiTTSMUwykkTFDur9BRU9JI3\nZwkT+qXCHE/KXNi0Nw8mNVXRt2EzmdRSFniLG/jzWstOh33TlyKQedVXNcL9\nSGyJ+GA9NdjUBategfNL6KioFhUFNo7lnebwuxKCuJWbbCZR1RbWT+2wSETZ\n7wYIeZVL5v59tnQObd0hO/GtI5Sb396shXomNf+BDTNgpmMXLBOJJhUMnVxP\nlk0NURBdd+ZyBc8W3cVLj23SRtPguohGzekMYQXiMQmanTirduwrC1oPxUkt\nUADhq3IcV2t8mNd5IQQwlHNSbX8fS2GqhcgYdM5vSuQNB2hT+jz2A20mA2b2\nlotS9Zs4jY3heebWlv8I+bROln3pQwHyN//Z7q1lNow0r6alNW/yZk/vIS1H\nmt0L\r\n=zTWC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_from":"file:lerna-exec-3.6.0.tgz","yargs":{"populate--":true},"engines":{"node":">= 6.9.0"},"gitHead":"8cc3196014f6fe8c9b41477b975c527d017a3daf","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"_resolved":"","_integrity":"","deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git"},"_npmVersion":"6.4.1","description":"Run an arbitrary command in each package","directories":{},"_nodeVersion":"10.14.1","dependencies":{"@lerna/command":"^3.6.0","@lerna/child-process":"^3.3.0","@lerna/batch-packages":"^3.6.0","@lerna/filter-options":"^3.6.0","@lerna/validation-error":"^3.6.0","@lerna/run-parallel-batches":"^3.0.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_3.6.0_1544227105603_0.6527613552327525","host":"s3://npm-registry-packages"}},"3.7.0":{"name":"@lerna/exec","version":"3.7.0","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.7.0","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"}],"homepage":"https://github.com/lerna/lerna","dist":{"shasum":"1620e59881317b1dc8fbe12b5fcaddf90edfd40f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.7.0.tgz","fileCount":6,"integrity":"sha512-QZ6Mbbn+BXvCwZ8aB6DtsvqGq5IDUYgb2/V6cLEx33GH9iH2jmqyh6ZFR/bAT4w4tGJg6qauZ0A9e1ma1puvGQ==","signatures":[{"sig":"MEQCIGz9/wD4x2uT679ov5ssnRDweMAC+qGmWjamE049LKqqAiBX6FkqRvU/Sm+8Yh3cHxisK4ZSVHANxuNSYRseo9/RIw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":17788,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcGqfYCRA9TVsSAnZWagAAcSwP/RgsP72NPIoo2H600pQm\nHyyPSVkRwQWqY7cz4I7btqD13AsgcTcFhjOU6DFD2b4Jbtxx8vGNKvBRj/Yu\nACFLOA4LwIuWiOYsldTLIMFlpMmusW2Cc3wKbHwurmNPGCC2RtlDlYMo4Yj4\ntSiF/gH+hFjZXJXeyu3REbeQZ4m5xk250jm5aWChlhZnZ1QDRNECDa4MCu86\nveEl4ursgwpqfDcO41tKEgzP9cnWsGZLzq5R8lAhBtw+jJY0hO2XBJwitwNz\nDf4a83cps4U+WszWQ/qfiJcKXVQYixEoPP+i2ZwymmPO8kGqYJ4ntwX/zOj+\nW/Ey0mAFcRYQA0mMRbrdKiUEG1584/YndLQGKPpfqlu9NVV9ycKvn6EW3/sf\nMfyfBisr05hC0K+iV7Ga/eK+tRZIkpiYbISdIxkqekGGdPqATbKPlDk4RLAq\nkfZrVGr44YlGn+tFrJ2VIxcwEUuQ3nAeYKbe/kdswmqocSlxY9+/7YcEwRzV\n+Gq1LAOCVwwKv+S6HysPvzr1EU80y9ErdobQFJUWAz0ZeQS1J/sRKEyHts46\nntXffkaMPuM1/mhowym+vS2itxWXI/1BNCtXBYYvtU+4yztgjm9e/SPkanUm\ndy1sZ9GD+Rt6SMMF14yV2qr/oavYQivB0AXjjQgk/H6J/oYP4Uh8HYU2ITO1\ngQXW\r\n=hQnd\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","yargs":{"populate--":true},"engines":{"node":">= 6.9.0"},"gitHead":"89b53ff2b561e69fad3a3e8671d7dcd0f1c09c3e","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git"},"_npmVersion":"lerna/3.6.0/node@v10.14.1+x64 (darwin)","description":"Run an arbitrary command in each package","directories":{},"_nodeVersion":"10.14.1","dependencies":{"@lerna/command":"^3.7.0","@lerna/child-process":"^3.3.0","@lerna/batch-packages":"^3.6.0","@lerna/filter-options":"^3.6.0","@lerna/validation-error":"^3.6.0","@lerna/run-parallel-batches":"^3.0.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_3.7.0_1545250775650_0.7854692221761779","host":"s3://npm-registry-packages"}},"3.7.1":{"name":"@lerna/exec","version":"3.7.1","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.7.1","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"}],"homepage":"https://github.com/lerna/lerna","dist":{"shasum":"4f46475e202625f84e389d1adc59d2c1ac561a48","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.7.1.tgz","fileCount":6,"integrity":"sha512-cGcNdq0Yh0L8Ek3va+t+BHdGtLS756JWFKI9C/SFOH850ws0tVIEAgtflHNVptvWsP2IQZZJxyiA4UwUSCFSxw==","signatures":[{"sig":"MEUCID0R8c7VWblVzz8sYmfYrgshktxOowP4fFIFbcv+Czp1AiEAqoA5GKm/TMo+xWSZMwCJeUyZg9sDc9jEnfNWBZ3HMrc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":17926,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcGt/RCRA9TVsSAnZWagAASksP+QBPOovyZm/ynvfQZjqx\n8pGs8cBKqmf3eXhF4M0sUf7LOfM7/dysISCS0dpzwX2iOuGbvqIf7e2hSWTS\n3qQ6v6/nw8ueQ5RNToXf0ZtbsfPRoRpzaZsAjigs9Q8qUBE1Jbm7eiAUFy5q\nOp+S3q2pL5GOs+nelpJvxI21BuKoWz10Nps08QVAWopwLwWpHv27jeTQRRm+\nSgxPXxDtkZoMxef+uxCa7N0wcjeWnoJWoKnqRw8ZmJRcKPbA8safD5v4zpDb\nOpmxutgL0df8t36Q9eXG9nU+HjkvPkYQJh+zlsv+3jHxw4b6iOickDDsVUOV\nuLAdbLpQUuxTKd47TNqWcrnsoYw+UjDBIO5AnQXZwlPvqUFsok4g6qlxYuH6\nSMxXcz/J3/+IbEp33ZMlCkyw6yErnaSpqGnPy5pFvL2aLAiQKoc+pmeUzYfa\neraMai+SVJTGdoPEftZGpt6dHIz2twh54IFcCEYUDjurg1gIBqinVXo15Wyq\n26RSnuVu8wmUm/ECdz3wmIZbZSXwdwvK30OLQTXGWMw0dYxYTd+BkGxSL1GY\nQLWIho7lNp1s4HSfdnoBELo+eCQFFgr3QrrthwK5oKFyt6kqiezwl1yClSNS\nhGYfCFXU0pEeusIeSKeiXGgFXJ4BUCOgakNYANGlb7NHqh5TZeoMQ8S30xem\nY1Fm\r\n=1w2o\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","yargs":{"populate--":true},"engines":{"node":">= 6.9.0"},"gitHead":"284aa4747dad26977790d6730ab2f640eb099cb4","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git"},"_npmVersion":"lerna/3.7.0/node@v10.14.1+x64 (darwin)","description":"Run an arbitrary command in each package","directories":{},"_nodeVersion":"10.14.1","dependencies":{"@lerna/command":"^3.7.1","@lerna/child-process":"^3.3.0","@lerna/batch-packages":"^3.6.0","@lerna/filter-options":"^3.6.0","@lerna/validation-error":"^3.6.0","@lerna/run-parallel-batches":"^3.0.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_3.7.1_1545265104721_0.9660238863091142","host":"s3://npm-registry-packages"}},"3.7.2":{"name":"@lerna/exec","version":"3.7.2","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.7.2","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"}],"homepage":"https://github.com/lerna/lerna","dist":{"shasum":"172ae8aec28610d7ed5eff33a3a6a63d53b50d2c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.7.2.tgz","fileCount":6,"integrity":"sha512-oEm3EbSxXeMguqC+ekXaBlRmo/aaJc2BcWPHrd+5+9evHhHo/7oOu/xXmbhJYCgZytGkJ6BrX3F9XhWnC+14wg==","signatures":[{"sig":"MEUCIHnpuMvCvbYryOoxZu5P8xQQwtqy+4AcyXWNZznkg/MMAiEA6Bl0Ilu9hS5GWUK4qgTObJ2JmLhcZ56UQaUda2hnlSg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18064,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcHDy2CRA9TVsSAnZWagAAW0IQAKUjzzJxtJPPST+Ez7P5\nIli1bdfWoGa8hUfl08csgC+30yufL6w/OOyTVfa7FxqWBQyBZvz9pTRoH/wj\n4cDVdvtU77S/KOsPExasMuTJPb5oz/3ZO8b0iHktugsIQIqlwjuukn3vKhTM\ndwTSCBRwOPtMw6kn9yZrBjgDtptvIPATELgEpENPSFCnkTbso+03nNRcw/KG\nDy3HFHRBqdpqzy7vf9u2Tb+HfHkr5I9lvwM+sWHbBzyvpnTv5vP97nVTCq0J\nry4rcX3qJ2mApBIVOgC92pNyT9e+ZrTahziOgh32Z36Hs23tuJGIl18wRmR8\n+m1dvVNrlIrM7vPFXu2WyW46eDFD5iPq39v/ayXgetPRT3J8Ye3qKqqGDa7s\numYJ8ohKymdu9JHI5PTecqRJxQre+95wlLLezZ8z04FYDhHZTfCwI1/672tk\nzuamqFLPzTPHSWUaVkkl6aPVmcwE3CcWJlna+WqLlX3qgNg4ziY1iS3SCc8M\ntMmO0NOGoGQc6lrGY9wcVrl6vN2JBrytNrx2kVMmNjQyYl7paMtJwEonqxrI\n217V4WATwy+0m+FgvO7Sm0fwRwctY54HBWGMWsPXKTGpNcP1yO6R6rRwevOY\nbecH3s8IHd4wAVEreBvA+gVSS29KIntRf3S+IePTb/P80xvdUUKYCzBPnmrU\nhrrY\r\n=Py5j\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","yargs":{"populate--":true},"engines":{"node":">= 6.9.0"},"gitHead":"52796f674ad3f2642270e942e96443437c54ff72","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git"},"_npmVersion":"lerna/3.7.1/node@v10.14.1+x64 (darwin)","description":"Run an arbitrary command in each package","directories":{},"_nodeVersion":"10.14.1","dependencies":{"@lerna/command":"^3.7.2","@lerna/child-process":"^3.3.0","@lerna/batch-packages":"^3.6.0","@lerna/filter-options":"^3.6.0","@lerna/validation-error":"^3.6.0","@lerna/run-parallel-batches":"^3.0.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_3.7.2_1545354422249_0.32711667350453677","host":"s3://npm-registry-packages"}},"3.8.1":{"name":"@lerna/exec","version":"3.8.1","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.8.1","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"}],"homepage":"https://github.com/lerna/lerna","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"a73c812cb7bea6fccef9d0d8e940e395f235af17","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.8.1.tgz","fileCount":6,"integrity":"sha512-v+AAxkq19UdTfsO0aOfmAvQs9GnDpy5TyP1q4NVOZCotLOfVnFQ16QfzVCBA4hR3a6puugs3lmaOlQnMmDoDFQ==","signatures":[{"sig":"MEYCIQCeiM1Jv4g5GxB4njiGDdGyP1uc1DTBKhE5rrtbceRnjwIhAM4I54PfMyKktz/fYFllWJhwyRuknrWE7o7ABNJ2arj8","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18201,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcKqxICRA9TVsSAnZWagAAWtIP/3rJJ94Qvjc85a3T3elB\nrvo/ZQIKJXvdpfH2OWs7ZgU8dyP5cX0iACo9i2BvUh3er1NmTqlP1nR6TxjU\nUX8aTCbLWFb1K8Fo9eJyjTC3QHGwUSBfpZDNPnUvxKERuA7xii+Jc2diVB5X\n3/tNzn62gyrLIbs9D2AHk6738EC0AYn5FLSvSLyBQ7aOYeTKNyZxrAWx+ymh\ngRtXpwO1PVHacx2Rg4fxlQg9dkGHqwbHokonzdPW1pe1bgl00djkKkj+//Tf\nFNWMUIaVQC+gMq2YREobN0Q2Hzodx5+k4isku/NRNOFIF5zLam+LHozDlN1e\nG1QKJXCG+6ReAkDPiGDuVvPGGNuav4CFybzIioXvgdX1Pl530fD1oAwsvt8N\nP1lpQpeU/N9RN0CS1/GjEc0ku2f5mOyYaPXV9JOzQGVdHFJhmOFcdrc2ivLY\nyg75fdpqrNn3NHPjEb/Ym5BaFDKuWkIKTOn2foU3gIBugzNGDknHjKdR/TOa\nrIMFh/xD2GZdC5Y29iaiPPGszzhekVY4sTPyb/LxU1z8aDqZjNzzHi6pXDs8\ndbI/p0kXYYm50TshXj4DaWRolNUMgCMadDT90cKYTPpRBx8mu7BPShQ3NNgo\nGsPzXlH+scw2w1u5/p2KLxCcDS8ccHGBAtFr1DlfgWrdMd95lJsY4juHn/vT\nNT0B\r\n=0hT+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","yargs":{"populate--":true},"engines":{"node":">= 6.9.0"},"gitHead":"00a372e194e23674fc0b7e94cc0f5ee799a13036","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git"},"_npmVersion":"lerna/3.8.0/node@v10.15.0+x64 (darwin)","description":"Run an arbitrary command in each package","directories":{},"_nodeVersion":"10.15.0","dependencies":{"@lerna/command":"^3.8.1","@lerna/child-process":"^3.3.0","@lerna/batch-packages":"^3.6.0","@lerna/filter-options":"^3.8.1","@lerna/validation-error":"^3.6.0","@lerna/run-parallel-batches":"^3.0.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_3.8.1_1546300488209_0.4841833128359516","host":"s3://npm-registry-packages"}},"3.8.5":{"name":"@lerna/exec","version":"3.8.5","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.8.5","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"}],"homepage":"https://github.com/lerna/lerna","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"ab95de1bec09789e4ff3b2f7683c7f565eaeed38","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.8.5.tgz","fileCount":6,"integrity":"sha512-lcblv2lQpKTk2sRAzV+VrHcZhHoFO9GVyZDAY6uEeQHlY2NoydeSwXT7g+jUbmhAqypptjyIeM8V3wnCu9nnrw==","signatures":[{"sig":"MEUCIQDCe5S+tl3v0w5/dHL8CfXCBd0mqK3Shph6qRTvmX8qhQIgB+hh1QB9jJQlvvOAmQVgayA8DWctxaQVG2kpAqJ3SSA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18339,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcMAYNCRA9TVsSAnZWagAAqUAP+weFIp+zAV1w5LAo+zMV\nMPRx+WqMOUmasTjZEA5wGLJh4Pk9cJGLYAlcIwo/YZ5CzRMakk3zikCuXDb8\nRFEOimhoWq4YV3U8ST6LyHOrWvsy1n+uPwrgzjSPouQvq9VsDEgcQsDpFE5k\nBeAhtvyJ8k6J1n+52U3UVscLKGcLSVqZNi3bJAj95PJeqNzVayXe7NoQ3BQM\nZvIfpCjVmtRiELY6r3gmt4mRaUy6UDp7PBMgvcYC9unztxuf7GvwMkz8ZX7Y\n3y4g4LxQYhXCuT/f6aQwbLoOoAojBLaVGyardAVGfKt4+ash+8UjKkiag7BA\nEBby94cGUoj8iOW0q6dq1DxzSHFu0OQ0NJ56UFhCe25dDCzuubxt0RT1+y1m\n/l9qfEQERv03n4ODdhmclnFJ3nzJEwv9oA0LEPDoP/cliEpidSUI+Ulrvfay\nbY2b8SLWL4B9T+f/6m23P3QPTq72dXgulTid6Hh3bwi39Muu/tFuS7WCEzVL\n4L3mn+o+gTwwa1aY5nb3TneiPV5sAsnKB3d36RTw2elZHi0hU7KTF77jxThq\n6SwqU914yCgewq00TTJmtEud2KT7BU2NQkZIDtNEdSRXx9qkMbSixFV+Ovfe\nJ4qKpIdHySXkKJUbOaPjX6+wY6b1cCpqODU8YlKmp8Oc2FRU6q5/ZaDWvq7e\nsGnO\r\n=sUr0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","yargs":{"populate--":true},"readme":"# `@lerna/exec`\n\n> Run an arbitrary command in each package\n\n## Usage\n\n```sh\n$ lerna exec -- <command> [..args] # runs the command in all packages\n$ lerna exec -- rm -rf ./node_modules\n$ lerna exec -- protractor conf.js\n```\n\nRun an arbitrary command in each package.\nA double-dash (`--`) is necessary to pass dashed flags to the spawned command, but is not necessary when all the arguments are positional.\n\nThe name of the current package is available through the environment variable `LERNA_PACKAGE_NAME`:\n\n```sh\n$ lerna exec -- npm view \\$LERNA_PACKAGE_NAME\n```\n\nYou may also run a script located in the root dir, in a complicated dir structure through the environment variable `LERNA_ROOT_PATH`:\n\n```sh\n$ lerna exec -- node \\$LERNA_ROOT_PATH/scripts/some-script.js\n```\n\n## Options\n\n`lerna exec` respects the `--concurrency`, `--scope`, and `--ignore` flags (see [Filter Flags](https://www.npmjs.com/package/@lerna/filter-options)).\n\n```sh\n$ lerna exec --scope my-component -- ls -la\n```\n\n> The commands are spawned in parallel, using the concurrency given (except with `--parallel`).\n> The output is piped through, so not deterministic.\n> If you want to run the command in one package after another, use it like this:\n\n```sh\n$ lerna exec --concurrency 1 -- ls -la\n```\n\n### `--stream`\n\nStream output from child processes immediately, prefixed with the originating\npackage name. This allows output from different packages to be interleaved.\n\n```sh\n$ lerna exec --stream -- babel src -d lib\n```\n\n### `--parallel`\n\nSimilar to `--stream`, but completely disregards concurrency and topological sorting, running a given command or script immediately in all matching packages with prefixed streaming output. This is the preferred flag for long-running processes such as `babel src -d lib -w` run over many packages.\n\n```sh\n$ lerna exec --parallel -- babel src -d lib -w\n```\n\n> **Note:** It is advised to constrain the scope of this command when using\n> the `--parallel` flag, as spawning dozens of subprocesses may be\n> harmful to your shell's equanimity (or maximum file descriptor limit,\n> for example). YMMV\n\n### `--no-bail`\n\n```sh\n# Run a command, ignoring non-zero (error) exit codes\n$ lerna exec --no-bail <command>\n```\n\nBy default, `lerna exec` will exit with an error if _any_ execution returns a non-zero exit code.\nPass `--no-bail` to disable this behavior, executing in _all_ packages regardless of exit code.\n","engines":{"node":">= 6.9.0"},"gitHead":"9f5c824b2f15119c10003dcc709f3ca0da99a5fe","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git"},"_npmVersion":"lerna/3.8.5/node@v10.15.0+x64 (darwin)","description":"Run an arbitrary command in each package","directories":{},"_nodeVersion":"10.15.0","dependencies":{"@lerna/command":"^3.8.5","@lerna/child-process":"^3.3.0","@lerna/batch-packages":"^3.6.0","@lerna/filter-options":"^3.8.1","@lerna/validation-error":"^3.6.0","@lerna/run-parallel-batches":"^3.0.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/exec_3.8.5_1546651148708_0.175026389384207","host":"s3://npm-registry-packages"}},"3.9.0":{"name":"@lerna/exec","version":"3.9.0","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.9.0","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"}],"homepage":"https://github.com/lerna/lerna","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"f6f4ea913ef1d708706affa02514daa359d23010","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.9.0.tgz","fileCount":6,"integrity":"sha512-APgSfihYhGE+eUIVm+rZt/K6gghz9kKP2AgCFSRMk9WA0lgmmSVwMm7Ph4WC/lRr0tbQhb8N1gM14N6ytIJ1AQ==","signatures":[{"sig":"MEQCIHgpxzG8yZwjFQaZPxOTBw+vFAXYJ/1BD8M6ujEaBtRuAiBPppMVmS2zTUP7MTmmgopYEzzTz+qw1+pQCVm5SJ/Eng==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18476,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcNA2cCRA9TVsSAnZWagAA+V8QAJOYCZIwWrsPAN3UKRKk\nlBTyHNMfc76UyQ0f+sWb1bGvodYnAGAC72vKPnMK3R6Od5mPrN8UT9rzq86k\n88YTfL296TSYg0iUE1ClLaeqMgV4g6JAhAc3/zlr9IpcEQIV6O43S4gFVHTt\nYR05U+AbIKIf0c2G4VTXXUgGGRU1PSwgJQ2D3wE6zsnpf5cZVm5QLgwDXX1z\neg0GbnFBXNFIQo8WeGJoLY0/qBh00Fn+3klRxlqhrSUSfDBeSISN10Go5tY5\nVI4kO6ijmP/QQ/d87rditt97pMc7euh87ViXKi93gQLejsydWX3TREhgpGWf\n4vcqAVB7gVtY+8nS3XVVv0jRFll9yACTFrHaUTYls+Uo+FtSjNGSsDZf2dRf\nZdJxnlzlsrCyH+JAyLw2GvBJNyoTQQgPdY6tCcE075Cq4ZuY2REsKWlXBgJ2\nA3TGF7AE+DHyP54k8kVia0bgzMQNpbYp4pxlWuxk+bg9+LSvzN8w57vxtxd+\nnh85lsT44YG1gs72Ct0tQVQ/1ELA7hqaUUjmGvSqfk0K+QJLXKtSFBuzFedf\n02FE7g3HL5i1nfy6W9kwG3hlWf1UpTv4wrYy1jCn4sLulC17eorGrpOsnI4X\nyu6N/kwQbAeYepu5pgEHro9VkSbzxwupNinJQYVXQyLUy87PtnDlpSDrztxN\nHBKB\r\n=rSX2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","yargs":{"populate--":true},"engines":{"node":">= 6.9.0"},"gitHead":"1c1ac155323499ba175d7f7e33c2e3f42a57a2f2","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git"},"_npmVersion":"lerna/3.8.5/node@v10.15.0+x64 (darwin)","description":"Run an arbitrary command in each package","directories":{},"_nodeVersion":"10.15.0","dependencies":{"@lerna/command":"^3.8.5","@lerna/child-process":"^3.3.0","@lerna/batch-packages":"^3.6.0","@lerna/filter-options":"^3.9.0","@lerna/validation-error":"^3.6.0","@lerna/run-parallel-batches":"^3.0.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_3.9.0_1546915227382_0.20406494035141876","host":"s3://npm-registry-packages"}},"3.10.0":{"name":"@lerna/exec","version":"3.10.0","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.10.0","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"}],"homepage":"https://github.com/lerna/lerna","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"593909631186f748fdf63ccf631d4e3e246e1ce4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.10.0.tgz","fileCount":6,"integrity":"sha512-7RTJTIRZoIgg7LqN9limp159C6HblepsJ0vaaWdYFzAhabTqCUQMohemFGAvyf97ERFboT5qLZJdcop6gDochA==","signatures":[{"sig":"MEYCIQDnGAlM0OAohgmtwSomczg+pXkV8DV4zU233DOyLDwLswIhALuG0ZLhTQUjpwQqqJ9AQ5MT5jR0eAqtH6g2Fl2MIPC2","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18613,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcNSCcCRA9TVsSAnZWagAAgHUP/0zxsCIFiLj+OEOJ16iw\nyE9sTaCG/6SZVV5bWtTJH/oX61s4hItJ12Z41IgTr4zhrVsBmSgHA41SioJG\nHbnlZ5hd3GdHTak5xUtIfQcNYSaFC3kVNgdzRertAxDJ77jQDZnDKhIKcJzW\nA4RIAjRCEXI/jjMqsUplXJiaarfSwoq/yL4tOAa5lIs5gMAgi3xtq9VLB03f\nlc3C46xclvza7+Ml2iI2eAQdG4voH8ZOlToceABFWWSA7DMlvdegW2HEFDAj\nShKTiWbr/svxUY4vidfi3BLPYz2wUGYORR37/3pzeMc2anOp0fkc4UIBAjfc\n5fiMNCNLYOjPcqaBVM6iKFn+ymXZJVjKh8y7DuYP8TqGFWYpYHCekrhcDcGo\nVL8gqgsAS4HWhGshtA7k4ndF5wdjZnrcYerDJAMcVUMBhVBowFSRcbTcbJeX\nallAcDXyaOj0YZNM3c+0cqWorJebRYEjgaw0mpuWxART8Qat9cV+4Vid1B+I\nCKzuJZUjD1pSE2m94w4jr2MHuA4OI1Sm5UL8OGNOBfNiEv7Q+q7dgMGIHDhg\ncqkpGiny0wy+A32Rr8CyYB49vfJIBdnU0y5xvuVcLgQ0f31ySL/vO01ktiXf\nIyMT5y4EL2ph8hO/r7lNcHqx8A+c2APnFrZ5trEloE3wwtpJJGnxnOS0QvJ9\nRpj6\r\n=jR6M\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","yargs":{"populate--":true},"engines":{"node":">= 6.9.0"},"gitHead":"ea8ffa7eb7f63cadc8534332ac3e19f6214ea6da","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git"},"_npmVersion":"lerna/3.10.0/node@v10.15.0+x64 (darwin)","description":"Run an arbitrary command in each package","directories":{},"_nodeVersion":"10.15.0","dependencies":{"@lerna/command":"3.10.0","@lerna/child-process":"3.3.0","@lerna/batch-packages":"3.10.0","@lerna/filter-options":"3.10.0","@lerna/validation-error":"3.6.0","@lerna/run-parallel-batches":"3.0.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_3.10.0_1546985627946_0.8164277961592417","host":"s3://npm-registry-packages"}},"3.10.1":{"name":"@lerna/exec","version":"3.10.1","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.10.1","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"}],"homepage":"https://github.com/lerna/lerna","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"3047b04418060d109724ab4468abea22e8ffa992","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.10.1.tgz","fileCount":6,"integrity":"sha512-MM5/OMP4FrVH4PIlG+3xk3jpKq+trgu/eAPttaYZBHAumCOjrDVYdyk5O68+YLz+uLkM31ixTmsiAP9f77HTsg==","signatures":[{"sig":"MEQCICkQujjrBk2/lXe0yKF79jqnBswmwiEVMyMJWFe37Cc4AiB7X+Du4/Yj/CnEadr/yg/EGKT/IS56DZJXfLkaxvhc0A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18754,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcNUB7CRA9TVsSAnZWagAAsmgP/jIUjc8L1iMKrCWtNWQ8\nFqB7/tgqIKwXBDq+PrcIFh2VPfAUSsEBTepw3VzCLUDdgFcc2LjIMgAUvLBu\nVMz9H9psQTqYA9HThQ6m+CzOFo4JMDTYnuGNSf8OLXFOfo6Mt4u2RV5x/DLP\ntac3r/Y64YoMAxLdRpNqwblAn0UuVUb04rQ3Ut8PUvZ0/kD7kh4G8+gZRwr4\nFb1qZP2y+yq3vwY2nSmXZkFbggVmgt4tS2AsGmxMiofrqkCtN1kQI8EiPkVg\nsn36x6w1aqp5Md8FPNVrGPGD8ggYoHrAd6GNrDB8smRYX3fOje6wrHqLP78M\nKnpg8rU9kF4z2kuBETIDBHrJPw41J0wY2u7houOXBZadtYltB69emXrSWfSK\nRCHobBbd34wkSnVD0THLDQYOf3yCSYBzE/Qgl7772uECUYkPcE/0ZPT0BxeL\nXryQiNE8LUHCcCIxiYtsCiJ9gYfc147FdFL2mFC6C0H2b0+iAFEc+LDNs8ML\nxqT8xcwtQ/YoUQCVohFdbGX9fRF3n4sVLIVdMFp51BZrdyRW5bwTpJV1LOKf\nreQJfzZ1Ft5JbuKtKuGgEccnnLVkRlHY3RvLWZsdZAFCXL23+R01MwPXC/3D\nUZdtgz/+UaD1TVcLEMYJRfZMY5AMhhID2OEMLzlPFdZxTv7BPdyNSTrn4LXV\n/Soy\r\n=n8dj\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","yargs":{"populate--":true},"readme":"# `@lerna/exec`\n\n> Run an arbitrary command in each package\n\n## Usage\n\n```sh\n$ lerna exec -- <command> [..args] # runs the command in all packages\n$ lerna exec -- rm -rf ./node_modules\n$ lerna exec -- protractor conf.js\n```\n\nRun an arbitrary command in each package.\nA double-dash (`--`) is necessary to pass dashed flags to the spawned command, but is not necessary when all the arguments are positional.\n\nThe name of the current package is available through the environment variable `LERNA_PACKAGE_NAME`:\n\n```sh\n$ lerna exec -- npm view \\$LERNA_PACKAGE_NAME\n```\n\nYou may also run a script located in the root dir, in a complicated dir structure through the environment variable `LERNA_ROOT_PATH`:\n\n```sh\n$ lerna exec -- node \\$LERNA_ROOT_PATH/scripts/some-script.js\n```\n\n## Options\n\n`lerna exec` respects the `--concurrency`, `--scope`, and `--ignore` flags (see [Filter Flags](https://www.npmjs.com/package/@lerna/filter-options)).\n\n```sh\n$ lerna exec --scope my-component -- ls -la\n```\n\n> The commands are spawned in parallel, using the concurrency given (except with `--parallel`).\n> The output is piped through, so not deterministic.\n> If you want to run the command in one package after another, use it like this:\n\n```sh\n$ lerna exec --concurrency 1 -- ls -la\n```\n\n### `--stream`\n\nStream output from child processes immediately, prefixed with the originating\npackage name. This allows output from different packages to be interleaved.\n\n```sh\n$ lerna exec --stream -- babel src -d lib\n```\n\n### `--parallel`\n\nSimilar to `--stream`, but completely disregards concurrency and topological sorting, running a given command or script immediately in all matching packages with prefixed streaming output. This is the preferred flag for long-running processes such as `babel src -d lib -w` run over many packages.\n\n```sh\n$ lerna exec --parallel -- babel src -d lib -w\n```\n\n> **Note:** It is advised to constrain the scope of this command when using\n> the `--parallel` flag, as spawning dozens of subprocesses may be\n> harmful to your shell's equanimity (or maximum file descriptor limit,\n> for example). YMMV\n\n### `--no-bail`\n\n```sh\n# Run a command, ignoring non-zero (error) exit codes\n$ lerna exec --no-bail <command>\n```\n\nBy default, `lerna exec` will exit with an error if _any_ execution returns a non-zero exit code.\nPass `--no-bail` to disable this behavior, executing in _all_ packages regardless of exit code.\n","engines":{"node":">= 6.9.0"},"gitHead":"d13e9016c79f4244f84100993aecae3edba957d6","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git"},"_npmVersion":"lerna/3.10.0/node@v10.15.0+x64 (darwin)","description":"Run an arbitrary command in each package","directories":{},"_nodeVersion":"10.15.0","dependencies":{"@lerna/command":"3.10.0","@lerna/child-process":"3.3.0","@lerna/batch-packages":"3.10.0","@lerna/filter-options":"3.10.1","@lerna/validation-error":"3.6.0","@lerna/run-parallel-batches":"3.0.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/exec_3.10.1_1546993786983_0.07323620781785811","host":"s3://npm-registry-packages"}},"3.10.6":{"name":"@lerna/exec","version":"3.10.6","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.10.6","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"}],"homepage":"https://github.com/lerna/lerna","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"5564b614b7e39c1f034f5e0736c9e020945f2f12","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.10.6.tgz","fileCount":6,"integrity":"sha512-cdHqaRBMYceJu8rZLO8b4ZeR27O+xKPHgzi13OOOfBJQjrTuacjMWyHgmpy8jWc/0f7QnTl4VsHks7VJ3UK+vw==","signatures":[{"sig":"MEYCIQC6VQYFC6FBkYKVopfksyllbjKh+oFCN964Tj2DIypUogIhALvla4oxSTNWp5Vmw2C08Z9KTwqOx7sONUsqjdl61nPW","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19382,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcQmoxCRA9TVsSAnZWagAABPgP/RoeVpWDqZj1HYMlHlox\nkAvbs7PrfnKSAT6cSU0wq6GrMOkAxqHfVZl8PgYvlV1ptBnNunU2ovkFdFHL\nNyAAmnPFQb1qXtzjEUzC90ScfEq8DVfbtf8OAU6jgfj8znLZZQyO2dbehgr2\nbCwVRaA6HPCSyClh38KlLviKsr+LcwsaxWzpRcTRRsZgT3VDkQ4sM2uYeL2s\nLQoeIJLxsYjzvY/KF/H9F2FFxDbe3a64SQmzGg52faTAiAybtltlmNdy56kh\nZJ6GbmZXkH1sWYuHDiYy+cXjiAUsXXnP8VGL3DrhhM+YwJQtFAvPJfBH1fLL\nh1GEGty6QYRLcVulASvCezf3yZXlRpQU6ToreIvA8ma8odgSxz06F2pdJsOT\nb7+3SdAfhWV0pQ0SQTLeCzCx15LSoF57Mm1RqnNvbCB3PiBuOMU44sbyDPcX\nRDjrsyyR2REjLeFaTmXoWaG43i3rbYkmXg1/NJloxu45ACF+0fRHxJodCfYP\nlGb7STdKrGZclfLAbk/L7k5RF3V1GvsCUfwUBCi+TLoKYhNFiAOmznzHcKcQ\nAkFDcrL4222ZLyqC+XHAt3WufGuG1TUvVBuhDuP3AXanrDOm1FHoIvUIhcq6\nxEZWeCnrupsq5lAIQerPI/0+TpS+0KpiX0AULlMHD5o0Xeb+V1P9DxCChgix\n9Ukz\r\n=uoX3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","yargs":{"populate--":true},"engines":{"node":">= 6.9.0"},"gitHead":"5a7392e59e6ae5ee8aea10467ffb4b12f3b1e3d1","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git"},"_npmVersion":"lerna/3.10.5/node@v10.15.0+x64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"10.15.0","dependencies":{"@lerna/command":"3.10.6","@lerna/child-process":"3.3.0","@lerna/batch-packages":"3.10.6","@lerna/filter-options":"3.10.6","@lerna/validation-error":"3.6.0","@lerna/run-parallel-batches":"3.0.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_3.10.6_1547856433340_0.35854241510649154","host":"s3://npm-registry-packages"}},"3.11.0":{"name":"@lerna/exec","version":"3.11.0","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.11.0","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"}],"homepage":"https://github.com/lerna/lerna","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"391351b024ec243050f54ca92cef5d298dc821d4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.11.0.tgz","fileCount":6,"integrity":"sha512-oIkI+Hj74kpsnHhw0qJj12H4XMPSlDbBsshLWY+f3BiwKhn6wkXoQZ1FC8/OVNHM67GtSRv4bkcOaM4ucHm9Hw==","signatures":[{"sig":"MEQCIAJvVAJZKEp9AggCau1zTPEwoRjd335hE4wbNNryi1upAiAEDaiPiM3V7ToPnTHhCullP6zVLpHdVVXWCb+APs81Dg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19523,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcXN2ZCRA9TVsSAnZWagAABXMP/RebtDfl+NPpBtfFwhbd\nBTbBz+9B/AY5jr3XBIlH5bsx95dJ2OVifnJ9uVjwoSdZs71i+HS0KxrWT9/4\nK7nrXsCj0SCfxDjGAHdbMPjEtIBGBdhSG8g0nlX0r2qlw/Ff9RP20wxBoOEV\nkfqdZq1I9bYbS4U5+GaEhOUuBqGTT58hE9xyr4YAaHt9HppBRToIvANIpYFW\nclYB3MyEAqLLETrJbFKEUQm0DkxOqdcRfVLX48hQ2JtrZ84PTdiGP3azy/qQ\nW1pAAR39H0fis7yATGdcfgPMyGzB/4dNSY1xV1NDVb5/3bYT277ayDigVzOo\nOiSxFYRjE2mxOh4qZJMjAW8SdbuDPsFXmRT59eoUew3U1ft8TM85dGeu08Po\nN8wK8guRd40xom+S9MD0JURayFNiVSFfEqb1rPb3/bEIl7HlHdQE7i9ohiGE\n/w2XXeM538nYYiYpUWWfKK9bijQaEn9FcmKWfqSKacwuw/ENjNIHYuxww+/u\njWbtZ8/ywrn5VGyfQmaDH11M6VSMGPiUqIWFp8Ts9NaoRfcO3s740Ml71/k9\nfIHIp9k3A4Suq46Yu31PyOZqsJYgEoX6gr+bpYfFkSyyMubR5SDEa5CMQ3My\nKy+5k9glQWjon+XBuJZi+cBdpT5QprbuToqaLnkkAWrfZTlR0Gzjzcu05WXn\nDG8X\r\n=4+wX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","yargs":{"populate--":true},"engines":{"node":">= 6.9.0"},"gitHead":"45a05acf2d52a46f553fc1efadf9a32312aca82b","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git"},"_npmVersion":"lerna/3.11.0/node@v10.15.0+x64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"10.15.0","dependencies":{"@lerna/command":"3.11.0","@lerna/child-process":"3.3.0","@lerna/batch-packages":"3.11.0","@lerna/filter-options":"3.11.0","@lerna/validation-error":"3.11.0","@lerna/run-parallel-batches":"3.0.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_3.11.0_1549589912883_0.2759068596931693","host":"s3://npm-registry-packages"}},"3.12.0":{"name":"@lerna/exec","version":"3.12.0","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.12.0","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"}],"homepage":"https://github.com/lerna/lerna","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"4ad209e2ab4bd349fd4bec4f9fde7cd5a7750f2e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.12.0.tgz","fileCount":6,"integrity":"sha512-ZeAfelITP5/0Up+IqteIAn7wfJYuFXL5ImeLJODMEP431gJtmvjk35GFYaIwaku/zvpkVj27y5sK/mpd6Nm6KA==","signatures":[{"sig":"MEUCIGpjPp4lZr2ytce2M+/bmfXfH2ztHnSrU/cX1tnF4J4WAiEAvThNR7MVpSMXQY3DIexrlE7j8o1OofuwtbqmweKzjHE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19663,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcZdRLCRA9TVsSAnZWagAARWUP/22Owl/2GaXs5xZiXtfL\n/f4CfdDKQb+EdALUbwu8+dOwKH57Z5mCcL/AVsfqA1520Q5Qb4KSSDuXHcsJ\nzXSicFM/jBufWEeLwyZ8prrwrbmITf2sG95Mo5A09FoIJnO0Lcc+SVjkzYLU\nOXfRcTWjBXDic4BP5CcQLF0VVOZRXxzCcgjGyfnFhyC9FD3SB0rGa3syIzY5\nOe5Y64K5ZJZcYOPQjQnFKKn/0aLBa64gvxGgegT1+C1OZEJ7YqxIAcODuMKu\nr+dn8k+fKLpIPFwWnUyuRhImygH2P1WJ0vn8/I0KfIL2d0EJkrsy76OrAITe\n1w1s8+WDqK2ot+QcjbyTWyp1e2PYifgvql9Ml9efOOfPeI5QYzl+Cb/MVN7e\n/JcVutDPP4qm3zq6Tk+RW1Hj9C4zc2+FXqkKPBsuFgFJqr4tFYid1XiZUsjq\nStcXTuBFsG7Ph/blTJUdsYAc4Qphxq4tOIVUKJIrXtEeUaPaYh+tZBd9ORKN\n/9nAsbZux8HhuiA3NAfa7slYVuCZelriFc16wdRpk62eQE5yw1xS+xPm+4rn\n9ozzyG74fYYUrOSOsaUCwGCJXuPT+EKE9qeqoV2UiGHsnHTt9NAvP2u1K0Qq\nK3HVzNsxtoVCk8BpgWjm0aSiN4HwGP4Qc5/GGt50+Tr9S35akx9Rx6TyBh0Y\nYZ2j\r\n=RxSA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","yargs":{"populate--":true},"engines":{"node":">= 6.9.0"},"gitHead":"e2cc514e55a4b520258769a80648b42c45eea9f4","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git"},"_npmVersion":"lerna/3.11.1/node@v10.15.0+x64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"10.15.0","dependencies":{"@lerna/command":"3.12.0","@lerna/child-process":"3.3.0","@lerna/batch-packages":"3.11.0","@lerna/filter-options":"3.12.0","@lerna/validation-error":"3.11.0","@lerna/run-parallel-batches":"3.0.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_3.12.0_1550177355176_0.1364174144567889","host":"s3://npm-registry-packages"}},"3.12.1":{"name":"@lerna/exec","version":"3.12.1","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.12.1","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"}],"homepage":"https://github.com/lerna/lerna","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"ba092239e1de0c64409908eefda765c4de6c929b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.12.1.tgz","fileCount":6,"integrity":"sha512-rZARxSA1p0cK1Q9NVar+FHF1ooqAli9LmkXMdlcvVJRYbx/XtHRo/3f2wqzPl46ykvl+HqsNqJ/GivOa7tzxGg==","signatures":[{"sig":"MEQCIDYKL7fSkZC8AW1YPTtUYbw9oP2pxUfwHE86fwjI765gAiA9fHdV04xCQ1t0e3PGz9GeVYj4q1l8qOlJGTJjmuLwrg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19804,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcZfXuCRA9TVsSAnZWagAA7dgP/iQnzpWy35chDcqOQQxY\nPLwalhX4DzrCD8Sp/QtdbPzpeHoD9jzQuC78MA6akXulhYPgwplK+xHv62ow\nwdzNk1s+a2fxeDuLlVSG/ZAMumyP9oUnykhzqhLXrj2DqWzeyviz19xj/Xcx\nja0KkC9mrTr218QZUXP/C68jAM+xOVF5mz4VwkqRk9in8vkuQlYCMmbd4wHl\nd7h1unIkETm2e+js0VkM7ZyN9kjkEqLczi6XeiuX6+n8RzZGAIj3T9kx0VRC\n6ciKh1T2kkH7HirbEKvtlYM+d+vwAQOinWnouciWWdpr9Ghk1hGKtk1deQM5\nR0dj60VFawcuRHZZudZivVP1oa8uahW4pTJ/I+EmTqsoxLleeDcBnThYmBNr\nHhYIou6JWZgfTiQ3o6Me8K2gQiz3bIHQ7InW3loV8r0F1veTh86eD+3k1SH9\nyQHHyh9Cjobqhtyx66cb/3VGEcGtVHo4Zrn7xuLc9IsBUFHirIzTMF4ax97M\n52ycJq38taHZDtxg9xwttmOPkMt17/b0nhqpTd3Okd8SRwzx9Olc8JEVRiAu\n3yY6lHxMVxMs/poLKl3hKoRleD37fNLYgwIwd3SQEYSmzO59TxMAYim2A6Ym\nAL0YZbrWvzW+TvXLbgFGE5xtI6G7pNphtRau7r3OVDgHF3kNm2s5rAUbJjSO\nF898\r\n=khGe\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","yargs":{"populate--":true},"engines":{"node":">= 6.9.0"},"gitHead":"ad49245ec5fe586a0906b67e5b12bfebd041dffa","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git"},"_npmVersion":"lerna/3.12.0/node@v10.15.0+x64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"10.15.0","dependencies":{"@lerna/command":"3.12.0","@lerna/child-process":"3.3.0","@lerna/batch-packages":"3.11.0","@lerna/filter-options":"3.12.1","@lerna/validation-error":"3.11.0","@lerna/run-parallel-batches":"3.0.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_3.12.1_1550185966104_0.5893336753232521","host":"s3://npm-registry-packages"}},"3.13.0":{"name":"@lerna/exec","version":"3.13.0","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.13.0","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"}],"homepage":"https://github.com/lerna/lerna/tree/master/commands/exec#readme","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"76f0a7f48f3feb36d266f4ac1f084c8f34afb152","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.13.0.tgz","fileCount":6,"integrity":"sha512-Dc8jr1jL6YrfbI1sUZ3+px00HwcZLKykl7AC8A+vvCzYLa4MeK3UJ7CPg4kvBN1mX7yhGrSDSfxG0bJriHU5nA==","signatures":[{"sig":"MEQCID8+XlwEnQxKC+Vk66fO1XHIKi32GR/LZ06RJv+OMIG3AiB/wxodQVu5TS0zm3SHC68JSNzAcobaQxMe9J8hciYShw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":20292,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcZhrkCRA9TVsSAnZWagAA6dEQAJIY4Qs8kiwyTkfd26Zz\npOfO7EV+DMyoMTf8zZjxQ7P0R+aNVLSam/H63BSbEFwVklXX6vca/c5fTwzk\n4eHQBdl45ie9s1zSXz/socXjHvu4z3I0Wto2cr119dUhah26nIm1juk3akln\nQMazkGhYFd+8L3HqQMdxaJ9718y8zugTj63Yo05u6tNI+fBYvUN+yk8/LtKD\n91RTb/2MFz4yu1giYPjwQU040fy95iHSY/61BNDHBwkMuDBTTE6a2NEpoKKL\njZ+REsDW5mN7DZxCkcQgi3lgm6kANrgUaO8aoaiBXKyM5D6ajRbX99F5tslm\nYHr0+IinXPvmc0Npu5OL7araE0TejLxa5UjdhbPA3d5psVSpXwqJ48AwkB2Q\nhME/Guj42cTnKI20czqOYuHgVYNQdIF48wsvye27fexgIr4N7UWYDoHJLhSH\nfKmAYSEC2loG031M+StTLmifdXs9YntRNU5JDexxSJb0sio9CMbg12qV51L6\n6BXZOURi9dfR7mtXOC0hrAsDWxdRwEdoh2XKjOLrJ9KCcXzNy72AOLPU4hPP\nUhQrnzwJ+yJh6yi2d4F6vOHLXVwbf14XqGCdcrk8JKLJGhP8nULP+FhnyUys\nKyeawFBcBSC8VppT9vxJtmIf1McYIp6sHP3bH65oBlyc2JZ0jP+j4vFr4a3C\n9iPQ\r\n=V03s\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","yargs":{"populate--":true},"engines":{"node":">= 6.9.0"},"gitHead":"9a47201f3fdd1df09cfb1922f26329d1dc4c8cc5","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/3.13.0/node@v10.15.0+x64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"10.15.0","dependencies":{"@lerna/command":"3.13.0","@lerna/child-process":"3.13.0","@lerna/batch-packages":"3.13.0","@lerna/filter-options":"3.13.0","@lerna/validation-error":"3.13.0","@lerna/run-parallel-batches":"3.13.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_3.13.0_1550195428361_0.8068769751291069","host":"s3://npm-registry-packages"}},"3.13.1":{"name":"@lerna/exec","version":"3.13.1","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.13.1","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"}],"homepage":"https://github.com/lerna/lerna/tree/master/commands/exec#readme","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"4439e90fb0877ec38a6ef933c86580d43eeaf81b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.13.1.tgz","fileCount":6,"integrity":"sha512-I34wEP9lrAqqM7tTXLDxv/6454WFzrnXDWpNDbiKQiZs6SIrOOjmm6I4FiQsx+rU3o9d+HkC6tcUJRN5mlJUgA==","signatures":[{"sig":"MEQCICik3QAOSWRpxe9XhZHScX2MpJyoIt0vJyFYf/Pk+C2iAiAny+guwlQLlqLkcqxCcnd7dZmpsAd8yq13iNPvCoqXaw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":20433,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcdbnvCRA9TVsSAnZWagAApZAP/2HyFm75caWUw0oURJDs\nPishgSA0c8mCkjHjA14hr2SgdKAphSVMQFrOltbcWW4naFXO0PyhKEOE/2Te\nAd6rdldvuXhoOMQDSI0s9XSpy5YV8VIH4aDs28oaYIVnJYoeGJbwmkLmnZSI\ncBwUdHPwEq2jPJLOhb8RF/D3NyuVDNan5W7f3Hr8WTcCAHj8NTHY4UlrFo3Z\nvloM5XJuDWi2/0dOtmeTwjYVPxYQWbQCIp4BD+YjAWd7KwXSzU9c4gbAUhgj\nns8hlhbu4FxkZVtW6XW8HSSMms+80gb9pYabPioq1ssXRaXzSrwXSDeIMHvS\nGjNQmBw+Ll5lmb+FeIL4Gi6Ckq1rqwFQkU1mnDpeQK55dQwCZIo2WJoxrkyC\npWZIvEsonA2rMchtQMkf0JQLKqA5QwlSrWKNjTtkTtEqlXyVbOe7eBXToLMV\nkGaV5l1DUeVGtJBTSxjBdRjH2D0VllOloJl7F9aUDOdaGDodNNLONg2dAI5T\neG/D/XRMyDIuLw0TZjI+LOekrYj8s/3mhW11gavRDkjtx8wUCntpYmiZp11e\nxsVpufxQoiSBwH+7J+b+LD0jJMfqbvGvrNIpC3F3KqPE4ESoQ7Jn0j+2gmJ5\n7ynH5BFNeqnIjqejIO3cBkMZ8GpjImvTL46lHEgRy/jvqRl4U9wG5n1HWtyI\nbtWV\r\n=WEyE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","yargs":{"populate--":true},"readme":"# `@lerna/exec`\n\n> Execute an arbitrary command in each package\n\nInstall [lerna](https://www.npmjs.com/package/lerna) for access to the `lerna` CLI.\n\n## Usage\n\n```sh\n$ lerna exec -- <command> [..args] # runs the command in all packages\n$ lerna exec -- rm -rf ./node_modules\n$ lerna exec -- protractor conf.js\n```\n\nRun an arbitrary command in each package.\nA double-dash (`--`) is necessary to pass dashed flags to the spawned command, but is not necessary when all the arguments are positional.\n\nThe name of the current package is available through the environment variable `LERNA_PACKAGE_NAME`:\n\n```sh\n$ lerna exec -- npm view \\$LERNA_PACKAGE_NAME\n```\n\nYou may also run a script located in the root dir, in a complicated dir structure through the environment variable `LERNA_ROOT_PATH`:\n\n```sh\n$ lerna exec -- node \\$LERNA_ROOT_PATH/scripts/some-script.js\n```\n\n## Options\n\n`lerna exec` respects the `--concurrency`, `--scope`, and `--ignore` flags (see [Filter Flags](https://www.npmjs.com/package/@lerna/filter-options)).\n\n```sh\n$ lerna exec --scope my-component -- ls -la\n```\n\n> The commands are spawned in parallel, using the concurrency given (except with `--parallel`).\n> The output is piped through, so not deterministic.\n> If you want to run the command in one package after another, use it like this:\n\n```sh\n$ lerna exec --concurrency 1 -- ls -la\n```\n\n### `--stream`\n\nStream output from child processes immediately, prefixed with the originating\npackage name. This allows output from different packages to be interleaved.\n\n```sh\n$ lerna exec --stream -- babel src -d lib\n```\n\n### `--parallel`\n\nSimilar to `--stream`, but completely disregards concurrency and topological sorting, running a given command or script immediately in all matching packages with prefixed streaming output. This is the preferred flag for long-running processes such as `babel src -d lib -w` run over many packages.\n\n```sh\n$ lerna exec --parallel -- babel src -d lib -w\n```\n\n> **Note:** It is advised to constrain the scope of this command when using\n> the `--parallel` flag, as spawning dozens of subprocesses may be\n> harmful to your shell's equanimity (or maximum file descriptor limit,\n> for example). YMMV\n\n### `--no-bail`\n\n```sh\n# Run a command, ignoring non-zero (error) exit codes\n$ lerna exec --no-bail <command>\n```\n\nBy default, `lerna exec` will exit with an error if _any_ execution returns a non-zero exit code.\nPass `--no-bail` to disable this behavior, executing in _all_ packages regardless of exit code.\n\n### `--no-prefix`\n\nDisable package name prefixing when output is streaming (`--stream` _or_ `--parallel`).\nThis option can be useful when piping results to other processes, such as editor plugins.\n","engines":{"node":">= 6.9.0"},"gitHead":"514bc57a53232adb90a2bb4b03e1c08d709997ea","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/3.13.0/node@v10.15.1+x64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"10.15.1","dependencies":{"@lerna/command":"3.13.1","@lerna/child-process":"3.13.0","@lerna/batch-packages":"3.13.0","@lerna/filter-options":"3.13.0","@lerna/validation-error":"3.13.0","@lerna/run-parallel-batches":"3.13.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/exec_3.13.1_1551219182568_0.9356776839296568","host":"s3://npm-registry-packages"}},"3.13.3":{"name":"@lerna/exec","version":"3.13.3","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.13.3","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"}],"homepage":"https://github.com/lerna/lerna/tree/master/commands/exec#readme","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"5d2eda3f6e584f2f15b115e8a4b5bc960ba5de85","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.13.3.tgz","fileCount":6,"integrity":"sha512-c0bD4XqM96CTPV8+lvkxzE7mkxiFyv/WNM4H01YvvbFAJzk+S4Y7cBtRkIYFTfkFZW3FLo8pEgtG1ONtIdM+tg==","signatures":[{"sig":"MEYCIQD4tdb9amlEz8N4qzI2sihnwqEpUCS/njq40ZuBJnpEAwIhAKTfx0NGA+/APnC7rFuiaOihEePt6r7OAkJLBZkvLbJ9","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":20931,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJctnnkCRA9TVsSAnZWagAATKcP/3WU4HqPOvr0bNnXo0XV\n0CPoIazFo2nzS6BUBLIcNDZg2KR/nYS1vI7I+uPPjeQFRwlDtOAyRJCicZ60\nwBfbAMBUmtI7ZJQ428FAWqsn3cC4i2uXhyJFIEBA7IwLtiV4e+FR8LfUtuhi\nfJlPVTuPW090ACf9+8d4S63BhPkERAvYu4O0qOAmErGkouwLssum6Ga8f3K/\naM+nPWTpwvr8rFAxEuhzj4oV5xUyBk7Gg4MdUxDalA9mQB6ansA9EfajgPNX\nxxeNkZHaHHopNcXBsF1NMiulBjSe083SLn0y5oU5ncd+n0oU4v8a/RRpIfLq\nZXcBzLvlZSGldozzuAsJzJqU7jseQJVIEhuFeUPGQTjcCne3G9Ce99m0+6gl\nsTE6DMwHNZXVM0FXrvpeayDrGznI0YObJSW1y1HLxpMnEcsmwWwRrUPWNsQO\nTfhzxoXbb/rWASiHwTpcPp5kZIUmVZR6ATY7k7a89tmOldlGRBu71tLcvMq3\nu2ysvo16F5Vcp7csgJU3vDQk8I6yUbSn+HAqH0qWJIjVcQtkBoMsVw7MSRU5\nbeQ2A7KjjG7T8zAt0OMFycD1UswOmjGMw2U60QvqNpftKHpRmO4kbURKOgUE\nzFUKCcwOvUHmwQU6pXySak6xcLDR+FNGT2YZfeykXjKClUZyCzvOCR3CuODb\nB1Ti\r\n=JPeg\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","yargs":{"populate--":true},"engines":{"node":">= 6.9.0"},"gitHead":"1496beb6278b001074d970bdd5869bb1f958d998","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/3.13.3/node@v10.15.3+x64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"10.15.3","dependencies":{"@lerna/command":"3.13.3","@lerna/child-process":"3.13.3","@lerna/batch-packages":"3.13.0","@lerna/filter-options":"3.13.3","@lerna/validation-error":"3.13.0","@lerna/run-parallel-batches":"3.13.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_3.13.3_1555462627650_0.026052671186080012","host":"s3://npm-registry-packages"}},"3.14.0":{"name":"@lerna/exec","version":"3.14.0","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.14.0","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"}],"homepage":"https://github.com/lerna/lerna/tree/master/commands/exec#readme","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"da632dac4a86d59f7fe8c566af8648f8272241ff","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.14.0.tgz","fileCount":6,"integrity":"sha512-cNFO8hWsBVLeqVQ7LsQ4rYKbbQ2eN+Ne+hWKTlUQoyRbYzgJ22TXhjKR6IMr68q0xtclcDlasfcNO+XEWESh0g==","signatures":[{"sig":"MEYCIQCAbTy2G1GGUO6wgeCXlYSWdfts9QBH6ABECS8DAMOPoQIhALvqJgaZ1ivqTGm4CkRIF0MHq0yDjNhf4UnW1xfKxBoP","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21284,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc209hCRA9TVsSAnZWagAAMNAP/jayt5w8Yp/kIRx/oh2U\nK8GhOnWiXN6hFMh1xTLUkBUoNP5tQcTdauIuTHNd7IpnyK9y1VWonGDZD8wz\nXLREuQrbK7uL/7VZdhg6VpKcsdNol/KHRcfqbobP+jyPqvoeJ/qbrhCC5BTH\nPlMWFU3uZWThFod0RWTYue9MtKjffilpe1H6KdGmA37iLiZF4XNH6B+1Ekl3\nPV1+ZyJMSMVd1WwEVXPZ0VjHa6Ozm3eJ5pRt2VA3H/w3OzrYNCxJUzH/L2OQ\nmH6F/HjGQf7XtRxZisFf9XPNbR0v471XdAuJ52ftTk7GOiuGJKKxXYKFBAZb\n3xfu/j0EtfEn9dZHYoiXXfXLdpNK60wcJ2+UjR1ZtwEtQyC+gGnAEZ6CeXIa\nr5iTWzQvAu/L7tYDK02QB2USFyf5LXwxIEVAMVNuVtfd3jR3nv43o5KkMQp4\nYF4i9MHgjmv1AOQrAyHwD0TnTswrloPfDeoLPr2koztCRn/VfyDlDwgw9DkO\nEd+0l6944mPafMlJA/FTnrAm7Y6u7oMRnJKRJ6fPsSxT5ueS199f1XrKCqZU\n2DJ11J0oOBkojPrlBdPuc1tbnTyuM1B+ozUwq7s4hvp/0gym/H+iq7sNvQhF\n/c3cm6/FN4pvRArfWnFoifPFJOLkpRk2kqAH08vL08ujRMP6dsLZ4ldfWsqM\nL5lj\r\n=0wg7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","yargs":{"populate--":true},"readme":"# `@lerna/exec`\n\n> Execute an arbitrary command in each package\n\nInstall [lerna](https://www.npmjs.com/package/lerna) for access to the `lerna` CLI.\n\n## Usage\n\n```sh\n$ lerna exec -- <command> [..args] # runs the command in all packages\n$ lerna exec -- rm -rf ./node_modules\n$ lerna exec -- protractor conf.js\n```\n\nRun an arbitrary command in each package.\nA double-dash (`--`) is necessary to pass dashed flags to the spawned command, but is not necessary when all the arguments are positional.\n\nThe name of the current package is available through the environment variable `LERNA_PACKAGE_NAME`:\n\n```sh\n$ lerna exec -- npm view \\$LERNA_PACKAGE_NAME\n```\n\nYou may also run a script located in the root dir, in a complicated dir structure through the environment variable `LERNA_ROOT_PATH`:\n\n```sh\n$ lerna exec -- node \\$LERNA_ROOT_PATH/scripts/some-script.js\n```\n\n## Options\n\n`lerna exec` respects the `--concurrency`, `--scope`, and `--ignore` flags (see [Filter Flags](https://www.npmjs.com/package/@lerna/filter-options)).\n\n```sh\n$ lerna exec --scope my-component -- ls -la\n```\n\n> The commands are spawned in parallel, using the concurrency given (except with `--parallel`).\n> The output is piped through, so not deterministic.\n> If you want to run the command in one package after another, use it like this:\n\n```sh\n$ lerna exec --concurrency 1 -- ls -la\n```\n\n### `--stream`\n\nStream output from child processes immediately, prefixed with the originating\npackage name. This allows output from different packages to be interleaved.\n\n```sh\n$ lerna exec --stream -- babel src -d lib\n```\n\n### `--parallel`\n\nSimilar to `--stream`, but completely disregards concurrency and topological sorting, running a given command or script immediately in all matching packages with prefixed streaming output. This is the preferred flag for long-running processes such as `babel src -d lib -w` run over many packages.\n\n```sh\n$ lerna exec --parallel -- babel src -d lib -w\n```\n\n> **Note:** It is advised to constrain the scope of this command when using\n> the `--parallel` flag, as spawning dozens of subprocesses may be\n> harmful to your shell's equanimity (or maximum file descriptor limit,\n> for example). YMMV\n\n### `--no-bail`\n\n```sh\n# Run a command, ignoring non-zero (error) exit codes\n$ lerna exec --no-bail <command>\n```\n\nBy default, `lerna exec` will exit with an error if _any_ execution returns a non-zero exit code.\nPass `--no-bail` to disable this behavior, executing in _all_ packages regardless of exit code.\n\n### `--no-prefix`\n\nDisable package name prefixing when output is streaming (`--stream` _or_ `--parallel`).\nThis option can be useful when piping results to other processes, such as editor plugins.\n","engines":{"node":">= 6.9.0"},"gitHead":"39da145c67ea587457694f318f32f967b9d66ea9","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/3.14.0/node@v10.15.3+x64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"10.15.3","dependencies":{"p-map":"^1.2.0","@lerna/command":"3.14.0","@lerna/child-process":"3.13.3","@lerna/filter-options":"3.14.0","@lerna/validation-error":"3.13.0","@lerna/run-topologically":"3.14.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/exec_3.14.0_1557876576446_0.4654277770130475","host":"s3://npm-registry-packages"}},"3.14.2":{"name":"@lerna/exec","version":"3.14.2","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.14.2","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"}],"homepage":"https://github.com/lerna/lerna/tree/master/commands/exec#readme","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"9cfcc64ddee2fb7d21ed9141586e41fc0a6fc5af","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.14.2.tgz","fileCount":6,"integrity":"sha512-u7L+XbbnmttK5/1YfUt5hQTvMArDkEwqFHXIgCo9F1TsN7P+r3gzoPW1Wnwnv8BaHDEou6mXXOMU4HmpZPRhWw==","signatures":[{"sig":"MEUCICTmhN8t5/XysCRCrG54fDuICIQHe/O83mR+cZsUeQ8tAiEAplm7R565UcbkyhQSjf/O2PeLLNHUoHpYmclzIolCvt4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21425,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc/YkwCRA9TVsSAnZWagAAMs8P/jjzczf4tYOQk6UCTDoL\nrJHd0edKP7QYLvETKgkWJOnAPmGtAD28FK724amWcxv4wfDm7Q9DaxT734w/\nKh9/CsWzZqWEyV/qB5wwRCMJz2+47JXT3XVts7cTrtncSfHShHvNGSUWMp9w\nBCWZesT0mZXhXGWLV+FAn2qLCxOBe0QR5Ibebw4Rq8LPuEut5ovIcCZ5tuGf\nyq1g/kLZGOdJSppl+kIgtrv3szYQVLnWfOINya4kgJ5yWqgNvvT4eOovQW0a\n14NMR1fYeag/8TAsfT6vCtMueAhkFHEmEzv9xLnqk73umEaNnd21AZ+P5WM0\nu9wslFbZkcyyoL7R3DTPXBIBX1wGNh60vjmLjuzB0LGM6uneDc3PSTvYg8bG\n06sz2HYWUga8YCo3wwDpbZ0DcfzCdZviSRAALbWsNJ86jRlvYKmfOTbamEdm\npkbJ6H1+lhOwfI7LmP/BBv0xbQYPqIP8Y8b74fgHf8Up6oSNxCeQ3mmIAn2l\nd+WBeGO0q8L01vEGeUQ8kHmbWRvjLaQ7M2zAayTUCQZy13qQvzdT4s8wTKtY\n5E0rXjxrxxKyRsZ02KxVYHjOd49wzYzXlrDEyEwRzfa8uMvEAADN3CSW+5On\nNovqaGIUmsvNyoJewqMfyYbRSmREk5Xw5h5RlGMPKS5Rc2lAHaz2V3rWuMAy\nsIVf\r\n=WIjl\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","yargs":{"populate--":true},"engines":{"node":">= 6.9.0"},"gitHead":"b22345b9870f62f1125e109fcc47d2e4260b9d09","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/3.14.2/node@v10.15.3+x64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"10.15.3","dependencies":{"p-map":"^1.2.0","@lerna/command":"3.14.2","@lerna/child-process":"3.14.2","@lerna/filter-options":"3.14.2","@lerna/validation-error":"3.13.0","@lerna/run-topologically":"3.14.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_3.14.2_1560119599648_0.0211619240086256","host":"s3://npm-registry-packages"}},"3.15.0":{"name":"@lerna/exec","version":"3.15.0","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.15.0","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"}],"homepage":"https://github.com/lerna/lerna/tree/master/commands/exec#readme","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"b31510f47255367eb0d3e4a4f7b6ef8f7e41b985","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.15.0.tgz","fileCount":6,"integrity":"sha512-YuXPd64TNG9wbb3lRvyMARQbdlbMZ1bJZ+GCm0enivnIWUyg0qtBDcfPY2dWpIgOif04zx+K/gmOX4lCaGM4UQ==","signatures":[{"sig":"MEUCIQCsw1Mrpf3rhpp3yAg5EJXEmm2X+Eq2FsCp2TREe+56CQIgO0lG5KqI22kxx/eKO2g9DbjCIQXqk/weER+tRbLgk24=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21565,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc/ZQXCRA9TVsSAnZWagAA24IP+QG+ATvj2CS6GLiy3HpM\nvtGHeUCJsfgdzhGtyqe2AxbHkcqv4FuujpsmLoZydN1Ei4CYCFbZoPwsx5HR\nAq6izFrH5KQYmB67dByrS7DtXi64a5VKXbkiYWTt5M/7hkOaywIRUB9s1hYB\n5/VeLxZUnQ6SiWH25p1Tn6ilkplPrGz+m9xwD2Vvop0u9+Kkg5NsQskyQPTT\nDtLcAyIJfw3kn4THKL6nNb1zAF+t54iQcKC6jb8YaCQbuTxsqvGANPR4PHfj\n08ptD3hxk+l34ZncotjcvMx6YWggUqaP5pgKtWCP6D1Uo8AhNqIM8L7zu6Yz\n5k/VR0c/GKww+6GhlfJG1vVZJANtaD6Kczwrgw1SZQurSUgQS7vIGowyqWiJ\n55Jh8QL/1KqQMfYyV43DWiSrty2n49wQJSREKKi3k3yxxUqvHpegFNLpfIU8\nN9WH1gaSqjR0e4JJEhq2rsIbraBK+5/g013qMM4qvmpp26Xj2C03AGiBPflF\nc3mvXJq7rXmG56p6tKu9TNIwxNQLpMsx4joUGeCYLUEnhmrzs42FvLz7l1ic\nDDWYY8QwEWQ5vdU3efbLUzL0Ng9/GSANINPd90sVyzgQwoeRsBqiZT74LLq6\n6SRVkC1N09g5B9dsWc+/hUlz5pxrx1JkbaGoRtwVDJ+us67z+2Rr3Z0G4Qcl\ngJzV\r\n=FS06\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","yargs":{"populate--":true},"engines":{"node":">= 6.9.0"},"gitHead":"457d1e8a62f5caf0679973ae8bad564d7752ffd2","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/3.15.0/node@v10.15.3+x64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"10.15.3","dependencies":{"p-map":"^1.2.0","@lerna/command":"3.15.0","@lerna/child-process":"3.14.2","@lerna/filter-options":"3.14.2","@lerna/validation-error":"3.13.0","@lerna/run-topologically":"3.14.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_3.15.0_1560122391368_0.14847653604283062","host":"s3://npm-registry-packages"}},"3.16.0":{"name":"@lerna/exec","version":"3.16.0","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.16.0","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"}],"homepage":"https://github.com/lerna/lerna/tree/master/commands/exec#readme","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"2b6c033cee46181b6eede0eb12aad5c2c0181e89","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.16.0.tgz","fileCount":6,"integrity":"sha512-mH3O5NXf/O88jBaBBTUf+d56CUkxpg782s3Jxy7HWbVuSUULt3iMRPTh+zEXO5/555etsIVVDDyUR76meklrJA==","signatures":[{"sig":"MEQCIFCmdVzxkUA/aNK49TQqOp3j1CkhC6MiaP0aHjQRPnXWAiA/LdkvyhrV0cYU48Sj91swgAsyYH2bs/ekNiAII9S1og==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21947,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdMQRqCRA9TVsSAnZWagAAm1QQAJnBRej1fChWj1q6uptG\n0gJ/DwgtnXv/9vbYCEo164oLCKP7IdO9PdFsuzxc7guDNFOhhf8R+mhbQeyz\no0KKN5EIaomTC3ClktgAKrC2/mJdzYOdPPuFT5ZTmnIeRnTxprrxEBuFfNK9\n9iXqxV2dylTA/gvqC66pHzk0vcxwdoHcR3dJRe4jMsa1zvq5ZgDUrBlnc3D2\nqndyTmpc3XxDFXkEb3baIZqxGOJahv00lgplbXSlTFTW142Y9CaPM9r3YKn9\nGILl3vdDy+5p6xa92M+9MqK8uvL7AFjLfFM/C2t39LjoKBx35HKYwqUz9tvW\nkBkHGHwaAvvkqskSgWTuwXX+Ovy/yQ+6yMSClIYDjFMheTZcQ3CBuHXbRKGz\nTOkNn21sJK56GxFcg8dcJR6vjipIO9Q3jQoD+3m4ruRoBng3wn+C+UrDU1YJ\nv5+jElePdKjPZw3cSaAlAQlJ3Xr9JZhq/tBV8qAeLS71l+ERHxyUeIoWif7i\nQrWHTZC4o5dv++xmGsm72QtgmaXql2OuKPSjVIMrGZMNBWdT7ReWMCcLwXc4\noV4Po2QzIGQFGkx2He2KP/LtwvSAIU4tY5navzNnIQ2143PHd39TDQuNlx0S\nt72yah18hJd1ePA589Kls5L9MvMLVaHMuB10vRmXcNyHvcmojeUwMsafYSSk\n/MZZ\r\n=u3k4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","yargs":{"populate--":true},"engines":{"node":">= 6.9.0"},"gitHead":"8ca18bedecf4f141c6242a099086e84b2ced72de","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/3.16.0/node@v10.16.0+x64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"10.16.0","dependencies":{"p-map":"^2.1.0","@lerna/command":"3.16.0","@lerna/child-process":"3.14.2","@lerna/filter-options":"3.16.0","@lerna/validation-error":"3.13.0","@lerna/run-topologically":"3.16.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_3.16.0_1563493482033_0.8840930526357567","host":"s3://npm-registry-packages"}},"3.16.5":{"name":"@lerna/exec","version":"3.16.5","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.16.5","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"}],"homepage":"https://github.com/lerna/lerna/tree/master/commands/exec#readme","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"2a3055263d89dc59d593f0eaab4f22286d47e142","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.16.5.tgz","fileCount":6,"integrity":"sha512-z7ceaYr3B9Zzmf5TlPulMNOKhsq6emzWSuiTX57eMWCnVfqDt34dM89HredJwFAmxLSlhqHuGQOhwyOaEY7+2g==","signatures":[{"sig":"MEYCIQDtVE88B5Yc0eGywYl2EBcIKw9Yh/uhtTfts9peFK0o6AIhAJ9h/w+lAmiDOFOlZ2RiZtTKMzlvw22YjApoERSEK7yY","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22088,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdm8IXCRA9TVsSAnZWagAAbbwP/Rl0/m5P7ZQhvZvtxpF0\nRHJaWXdEkv5Fy44MW8jj8avsYfZ7L4HUeHtl7CInkl3X+6O0LCE4EayCGJQE\n/H2ZlDe61Gx5R9ShZ/qCRh4j6QlSOO5TY5JNU2hZ8SjUqDVRPDQp4M4KmSFa\nye9vBRuKvMsROFH9NJ3z1jn8Mqjdg6/sgPeWDSSj5SAOQmpim2TG+ClyEnxZ\nvXFbNi/Tlvieji7BYsUNlTX4FKpNSi3yB9nmtH5uTHcIMfkTvMk6S1K8H2jF\nghPvOV+KjqDwguv+F4TdWoQZh/uqaYbgrkUxcAhLYMeSCGBy1yeMFUoF/AoS\nk8VoBmU4dabWyRPOiUG6Rrs5KhLRAZrUFa/PW5YrjMQUmmQVkcX1iAQP1NJf\nYnf5VVazXbxJ4hrQ7CnC/4tI/5dtOxGWtR6uUy5+v7c1vXz9i5t4Eyukm0vI\nZ89QqYlUWUUKlPShW2Tr/mLmO5cP/2am6kqfEvkeT+Jl7KpuJ0DrzdNrHObt\noDY05vn2FAodr6Ejv69mzUOskbCEFUbn5Adr26pSaYUk2umTXclmLuDuRIpO\nIWccaEHBoZ1aALgW7x/F6M7kbXEzIZHh53P/yyrlGHb1fbC+g6e3pIUQuWV5\nZKbqzHLS1m1uDJX8AreqrzK1VHScxT4Rr+/68+AxQaZ0dDjIqepHCgcAUywZ\nMgt1\r\n=dLQc\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","yargs":{"populate--":true},"engines":{"node":">= 6.9.0"},"gitHead":"f0574092a2db90142b3a27ec1a4941cddbdcdf62","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/3.16.4/node@v10.16.3+x64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"10.16.3","dependencies":{"p-map":"^2.1.0","@lerna/command":"3.16.5","@lerna/child-process":"3.16.5","@lerna/filter-options":"3.16.5","@lerna/validation-error":"3.13.0","@lerna/run-topologically":"3.16.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_3.16.5_1570488854530_0.7628656709226183","host":"s3://npm-registry-packages"}},"3.18.0":{"name":"@lerna/exec","version":"3.18.0","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.18.0","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"}],"homepage":"https://github.com/lerna/lerna/tree/master/commands/exec#readme","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"d9ec0b7ca06b7521f0b9f14a164e2d4ca5e1b3b9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.18.0.tgz","fileCount":6,"integrity":"sha512-hwkuzg1+38+pbzdZPhGtLIYJ59z498/BCNzR8d4/nfMYm8lFbw9RgJJajLcdbuJ9LJ08cZ93hf8OlzetL84TYg==","signatures":[{"sig":"MEUCIQDL7zBknwqZ/+OSvrp+MPqIHVWqpuVLN37OaHKb8+UQJAIgdZI8IRBGANrReK/bDJ3qGpaNeYCU6O09bqE3oUhn4hU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22324,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdpiZzCRA9TVsSAnZWagAAL+YQAJ+B1jGPEJWctK+5VmjE\n3HmqXHGbs4HtsBYAaimx3oVXCIbQ6nEHxULd0bfuPTxnqQSoA9sOwIJ5u1N8\njbCVuMJ2vu+/hJYj3BIIQ45qffoycRKOipz2UccC0MoRk+q9ZASSZJhJ2PX5\nDNX5Z4ih0t/V2pnR/VjY4QK4PuxjzuRn6byrRI6YUg7UrbVZiiSavBfai+xJ\nOXdLkMItX1HniGX4HfmxNxRJ36nO8x6C0ekM/rWfxErROsgZqYRbgVfZUrrs\nGjggjf/Pg09JB38OAKH4il1rT6+ehYzWF6r0Of3oAtuS+HTLyf74RBBX51rc\nEfly/E6ac6oYUE7wD/puLl9+KKY6i/YkY5GpUeutPsV2B0L1+txyJj2yPNva\nVtFTGAAMJ5fOWdSXr/wCe/Ydshr9rMYB0Cnl+BGYOBYJhKBGpkA/U7UZ8Oc6\nehVUP2nncCLYBeTpuaNIiFKw7OpNy3zdETwQG80pZE2lXmQSxFUJ59jWDzSQ\nQRCYua9beD9YNllgZOyEdBmfblbOrQIRtt9XDikxmotZq+uT97mQyI2KjDAg\nph9rMUVdkgF2/z1LB8oQo3ppQQ9iNVodeae5Mxi/Au/3rbobNFFowtMM/F/d\npNCcvfBwf2DWvxjY9gXfK/efqK/OxvpgeRhESVS1AbknX9bh0VYUvNT+vWar\nLA4o\r\n=5qBt\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">= 6.9.0"},"gitHead":"0ea8fb136f408fb4de3fd39bb7069d976235d53d","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/3.17.0/node@v10.16.3+x64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"10.16.3","dependencies":{"p-map":"^2.1.0","@lerna/command":"3.18.0","@lerna/child-process":"3.16.5","@lerna/filter-options":"3.18.0","@lerna/validation-error":"3.13.0","@lerna/run-topologically":"3.18.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_3.18.0_1571169907168_0.3813625644875236","host":"s3://npm-registry-packages"}},"3.18.4":{"name":"@lerna/exec","version":"3.18.4","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.18.4","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"}],"homepage":"https://github.com/lerna/lerna/tree/master/commands/exec#readme","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"7f722abc3c7074dffe6aa48bca71171e0635f84a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.18.4.tgz","fileCount":6,"integrity":"sha512-BpBFxyCQXcfess9Nmj/OwQ9e1IhzPzNxqF5JK7dPIjko5oBn5Hm2EWVAcgUGSHKPZGLiOWPu3Wx/C92NtDBS1w==","signatures":[{"sig":"MEUCIQDE0PLbljdN+ZrGXVqXz9yakDbwpgz3PiOIAFV+R/EjuAIgezkvuyPvjbxLwxJ+1z4uqiQxt5+8RjcAjm9EU8WNnkU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22628,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdxMq4CRA9TVsSAnZWagAAnvMP/AiQ44+742V7EFBOrNmW\nII+Wr54r2ZidaMHJQEpdL80TnWCANmY+Wv+CzqERBw4b3nDUQp/AnjeyUWYx\nZ4a9w4S/sNlCdecciEuN09QVXqEgnUuCTT5soSTRiIPadzO3Wr+AwkYhZOQ4\nuW7VFa2eMIPIQsBxqLE0/uf8UTdABWzZR+OHsFd4DTgcUKMU5icIEuzRJoXq\n7TxhAPfPxzneDWRvHBu4JvDqFXw2juRE4KzD3XnGKkXwTMKQOBnk20CpMSEd\nRN+BTn9KTtCvzS0CW+LTrC1gfC/h7zP3LEWJ5MjrdEqeodTh1S/EqcwMwz6A\nAevifsDKqyb5KQmVR2Y7px1gCAQs662oEWT4t+MKp3P/30wc8mowlxEwZuu6\nNI+gnjDay15ZEWI+UHteeUwfKRf44hHbpZEWP3Y5I1pKLOct00hxxwaapxi5\nL/30ldS78iuxeZfVWMDRwZnAj5JCY2zUWKO7uVUn//wxOzyVrrWuQAQdvjNJ\n4Xrex0CwJw7JwebeLQzoBcwwYE9ZZSCwdJjeNpQw1OvUJ0llGuQXTlK8geSw\n/YFEGQE1scL6nPmRCyAUag7L2La9KtPGSGG/bOpVw/S0dDe6lrudvxZlmRb+\ntu3PKxtTxVLG2auyIGDtEL5IrimM7fFqPkpcVzRgbP+SxHN5NGmJTppQO+r7\n6joM\r\n=n4w/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">= 6.9.0"},"gitHead":"eeacb92a4878ed8002f95359dc6d0b8ec14df12e","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/3.18.3/node@v10.16.3+x64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"10.16.3","dependencies":{"p-map":"^2.1.0","@lerna/command":"3.18.0","@lerna/child-process":"3.16.5","@lerna/filter-options":"3.18.4","@lerna/validation-error":"3.13.0","@lerna/run-topologically":"3.18.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_3.18.4_1573178040066_0.7610989276740185","host":"s3://npm-registry-packages"}},"3.18.5":{"name":"@lerna/exec","version":"3.18.5","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.18.5","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"}],"homepage":"https://github.com/lerna/lerna/tree/master/commands/exec#readme","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"50f1bd6b8f88f2ec02c0768b8b1d9024feb1a96a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.18.5.tgz","fileCount":6,"integrity":"sha512-Q1nz95MeAxctS9bF+aG8FkjixzqEjRpg6ujtnDW84J42GgxedkPtNcJ2o/MBqLd/mxAlr+fW3UZ6CPC/zgoyCg==","signatures":[{"sig":"MEUCIAVqfbD5Mp34zA+kDshP7BH2ybg1Nfa6QnSs7xOLj4s0AiEAw0xvpyyNbtsQ2JV5MumMFZu0cCVjwl9YfdThqo90Iag=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22769,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd1JYaCRA9TVsSAnZWagAAuGQQAI+I0E+dV6uTb/ZDieSl\nscjnjqSUIdW+nVJ0KgMNNmlP3tvysrKAm+H3kW0iVclOr2Hvsr2Qsdr/IOcW\nvCYHhSDg2pvTw5qKKI3jOfI7x+ShgxuBqyPqbuef5UTCczW5ovGbgb4yxtyv\ne4FvlwoupZFrTbN7grqlbUSFEWKFJmmwfABHH0jpBnszxKjOBxkexAIteFxe\nurbEFb2fHIfV5+rHKtc190FL1zeouIn+JfUbcv5aHCH3sSvwKGWhesa6Cx7h\naEjmJYHzcjish1cQWxO+/K7RKvGoB9tKQ2Su0oHpCIznRF96N9rcqPUaVq+R\nEA+4VcI7hVdWr4fkiCeswOilZnJdphxgsEYGOz2GQEj2qOdfbRf77yBmRnN4\nVpZ55jZkEfQ/dTKRo6OAyAFlaveO0JKMugtSmhqgST4HfNzVcnil8HhKVa1+\nIvQKFR2QU4uuS90f0RMaWINGyODL4m4rPVusyxK5J0IkgD2yMTPeuAfSEfRi\n0ANo4uCQWfkFxV7rwUaCO2RcSJ46D8tbTmkHic6PqivefbKiOwlMZO4a60ZF\nJSgKTYiZ6WNi279hR3ty5jaXGy1kztrLBEhCCw8V5OxOVtOsUHKNcwjq+oj+\noORGN5+IjLGnmFwu3Y6T/5Q04LWFZgl1hDhlSpmMmZHRwGSJW1F9IJfXNPID\nN4mG\r\n=2rkd\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">= 6.9.0"},"gitHead":"2612f51e7eecec58eacf0571724e6989e4b8e42d","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/3.18.4/node@v10.17.0+x64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"10.17.0","dependencies":{"p-map":"^2.1.0","@lerna/command":"3.18.5","@lerna/child-process":"3.16.5","@lerna/filter-options":"3.18.4","@lerna/validation-error":"3.13.0","@lerna/run-topologically":"3.18.5"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_3.18.5_1574213145539_0.49274332898528983","host":"s3://npm-registry-packages"}},"3.20.0":{"name":"@lerna/exec","version":"3.20.0","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.20.0","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"}],"homepage":"https://github.com/lerna/lerna/tree/master/commands/exec#readme","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"29f0c01aee2340eb46f90706731fef2062a49639","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.20.0.tgz","fileCount":6,"integrity":"sha512-pS1mmC7kzV668rHLWuv31ClngqeXjeHC8kJuM+W2D6IpUVMGQHLcCTYLudFgQsuKGVpl0DGNYG+sjLhAPiiu6A==","signatures":[{"sig":"MEYCIQCCIJ2IttaBdX8sm+jDyxESB2UeYEOL8hU4HobxdQy8aAIhAPYczVhUa5AVGhqjivfmG3Qc5DywlVRvXdTK8EHV7hOm","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25270,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeBnLBCRA9TVsSAnZWagAADnQP/jctYDmBEEHDcdnq8VAd\ncG0J4fTZBS1RuA4JuJZtNiIWecdDrOAg6GT+lBMW+R9eIlqF9x+VqpLX04Al\nfGFTZLcUYwcSx5OTKFe2WOZVsxuxFY/QRu0Q29tiIDSlxl3PQD6hb/pawoCp\n0gfJtWKoUI2TL5EIQnC0IF5bg8/xW3e629Ssmq6d9Z7V4jxQ8AnR+ZhaiE7N\nWOi6s6SfJ22prrms/n9evfPJvfM3uUGbF+PiMHdtjnsJWTnHZVu10NiSza4E\naKgnfOzlEKRpkw+rx85UAoOCgABltFsEsiUKtxrKc97uYqWtYUAbzU9LQBXZ\nLXl5sWUXKxpakV7Q0Zc2CJKWkPk1BD5hd/CPFgHFBshy6YvGTa8anTqsgnbQ\n28attUkIk9MNKU5qiYMbXULfkieTNdRY2lTLY89UmzfTQCkR++jNC0giyH6e\n/rpbiCeE8THC5baR5tjGLNC9FnuY5KqQaGQJK2irzU/wwcq6SIG0z1ubrvaO\nvamxaBpRc3AUxOSKxBB9e/XARMKXC86ydEeL5B00jtgmbPUGSrtNrqMm/+Ms\nDLo8Ys3de48XYgTR/UNiQOHR98KhyrDXudv6pEt4I5CO+LBFWu4Wuh08u9M/\nIw6R1OeKAkIguacQvYM7EoQoK30cSfTEZQsd60uvsjRr3I3Y+DfAYSpFUKnt\n63WI\r\n=sfyE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">= 6.9.0"},"gitHead":"b90f4d3618b2327716840aa2a2619497c793c8aa","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/3.20.0/node@v10.16.3+x64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"10.16.3","dependencies":{"p-map":"^2.1.0","@lerna/command":"3.18.5","@lerna/profiler":"3.20.0","@lerna/child-process":"3.16.5","@lerna/filter-options":"3.20.0","@lerna/validation-error":"3.13.0","@lerna/run-topologically":"3.18.5"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_3.20.0_1577480896930_0.5655621037801262","host":"s3://npm-registry-packages"}},"3.21.0":{"name":"@lerna/exec","version":"3.21.0","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@3.21.0","maintainers":[{"name":"anonymous","email":"daniel.stockman@gmail.com"},{"name":"anonymous","email":"hi@henryzoo.com"}],"homepage":"https://github.com/lerna/lerna/tree/master/commands/exec#readme","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"17f07533893cb918a17b41bcc566dc437016db26","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-3.21.0.tgz","fileCount":6,"integrity":"sha512-iLvDBrIE6rpdd4GIKTY9mkXyhwsJ2RvQdB9ZU+/NhR3okXfqKc6py/24tV111jqpXTtZUW6HNydT4dMao2hi1Q==","signatures":[{"sig":"MEUCIEjPTWmAKOONULpWaLdkjYQ2vQE4lEyaDwqyLnyn/zCNAiEAt/JnSWIF6aGmt+siTAdcmu+HjSuqfbfXKMdnhbk66F4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25410,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeu0RvCRA9TVsSAnZWagAAvfMP/RlkXjpTbx++xxx41mcB\nlm7HKN2ZdKpHdbbu5oYoa8bCX9nYb6Ah2Spl9RGZNCX+Yg3PoGR8BH1WVGhs\nVJpb7BgphIRS8RJRoh8HY3QjiN0/YhIIZU45RbNRdfwHy7O1pJAQMq5hnhaV\n96smBkz0IxHJ/dlfTL4tPWB5M6cJEWg3hHPGFVpXvYL1k6eDeo3JuaVwRTRd\nxAoBeHoXbRKaNAA1+E7IlkrvVL+zFsdVDQp/8WpXYPny/M6yl2KjtaeFFzs8\ngloHIbDeEvhwfLIDiwX3INTSAqKrUANQriJ2j+h4kOKQVKxqI2OCGcyXCjpf\n6A4sh61NsNAKZkFPFYe7VZN4MC2T8XIsCE4YgEfuWj4Pq/OqFpkt0mWfd4So\nAfoFNW31Y252b9Nc6nfL+375IMlhnsVQkXv+kq46MNrzlmbj7DzYGkmDOZSj\nHvMqq/fqjtQbkvhhYDUver2/l9VbzJRq52Ctp55bcjNUedMO/rQ+hLAUOEr6\n76UeFfkuEwRs54HvHEyDBiMzjBHUdixGapi521FXg4ZSyrO+islv2Ls1JEOl\nl9qK/8R/+f0hy+Tb18sf3qrW2HS09wtw9pvdeUx4JeH4pW1wH4vkBn6P3zJR\nJJR3Jn0OReC66TXxNoSquqCSVIRFeUeHKLV1ci5fPw0I877RPzTtTdV3iqiQ\nL/qp\r\n=zTBO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">= 6.9.0"},"gitHead":"3367257cabe1540a3b9468acbfa0d01ba391077d","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/3.20.2/node@v10.19.0+x64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"10.19.0","dependencies":{"p-map":"^2.1.0","@lerna/command":"3.21.0","@lerna/profiler":"3.20.0","@lerna/child-process":"3.16.5","@lerna/filter-options":"3.20.0","@lerna/validation-error":"3.13.0","@lerna/run-topologically":"3.18.5"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_3.21.0_1589331054792_0.5636411362485174","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"@lerna/exec","version":"4.0.0","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@4.0.0","maintainers":[{"name":"anonymous","email":"hi@henryzoo.com"},{"name":"anonymous","email":"daniel.stockman@gmail.com"}],"homepage":"https://github.com/lerna/lerna/tree/master/commands/exec#readme","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"eb6cb95cb92d42590e9e2d628fcaf4719d4a8be6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-4.0.0.tgz","fileCount":6,"integrity":"sha512-VGXtL/b/JfY84NB98VWZpIExfhLOzy0ozm/0XaS4a2SmkAJc5CeUfrhvHxxkxiTBLkU+iVQUyYEoAT0ulQ8PCw==","signatures":[{"sig":"MEUCIQC9prf/NRdEqageUa/PToYz01ckr8B4QF8uuxCFZS9RcQIgYxAWOJqGTL6aOtBRfMf1pyRWD9gxC5qdpVDopIN6wLI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":26360,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgJGFOCRA9TVsSAnZWagAAR84P/Ahe2TJzE2MBxT/Se6Br\nalFK08NAOU08mIAWk5ZIukQB4zOmTn+CcP5RZNh2dm+1pRRmsF4EeEbB/uGA\nQQ0ErLFcyhkL8Tmgzq8waD7nm3cq9HmLo/nb1+5+PBryTvjmWgNjELBxvHK2\nus7GhFvJC+hLqGWEI2npJjM/jjd9BjWGnIthoV3NzWG9iMlp595eD4DJTSog\npUIQ3+tYBEHMH8A4MWrRmNfMQG1LqhmLaQ9Usmn9VQ3u9yTbfNcDz577zLRf\nkQl9IL/Ez0jQakHQihr4qW5HKse4QUcpXoNn88IYe9931sIO26P1iJmMUGfC\nVd/00w7G5VjhG92y3k4ukUh80BytRMiUNtJdPFUJn3A6r6irIp3O4/udopsZ\n38GOQpCSb5DvhDJZHKdljet4DI84volchvc0zp7cWy+FNLirlIiZWvPwTsI5\nX6pCAWt8vxGEFSRk1E09HFsPFgCilcj1ulfWNpPQDt0+N5WTd6xSqpFX3OnS\nQCoJQITED+x1YBx5t/5d3DyBAzuPByCbCM3v9vNHLGXTB+nWuIjd1MDtMl47\nufmaOesATgChQ6XKl4AsDZbdh9Uc8hE61mJoAHgEhcd6AEecl6f/GZkpl64Z\nQuIjy85U/lVyyIZUnzs/fXoh4Kgah93aWJ1bVGBEZvYg+/DJaVrgR9M+qAeS\nn3z2\r\n=BFiZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">= 10.18.0"},"gitHead":"4582c476e07dddddd6b2e3ab6e7f52c1f9eed59a","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"daniel.stockman@gmail.com"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/4.0.0/node@v14.15.5+x64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"14.15.5","dependencies":{"p-map":"^4.0.0","@lerna/command":"4.0.0","@lerna/profiler":"4.0.0","@lerna/child-process":"4.0.0","@lerna/filter-options":"4.0.0","@lerna/validation-error":"4.0.0","@lerna/run-topologically":"4.0.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_4.0.0_1612996941595_0.6802858884162528","host":"s3://npm-registry-packages"}},"5.0.0-alpha.0":{"name":"@lerna/exec","version":"5.0.0-alpha.0","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@5.0.0-alpha.0","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://github.com/lerna/lerna/tree/master/commands/exec#readme","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"c60f39b91b6808eb3181540f53b34d944437af69","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-5.0.0-alpha.0.tgz","fileCount":4,"integrity":"sha512-OecnNHawSMbSj1JbyDcF5+yL7MvsgKN74cPi4556SmhBKIioGABtYazmGEuHDJf5jnzpNOMRJtNAFL5+2hFVeA==","signatures":[{"sig":"MEUCIQDNspTTXx6tG9RPb0a9zS+BEzVCsSt6YS5PcyJ+a4Km8wIgRbMLZFcZ7kYPtFGRQoOyua+YRBPACiMm4F46BdVysik=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12193,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJijHnDACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrAQRAAgN1KaCGqkCnwDUBq+maocpbWpPIaiKxBRHkS6HxLO6WBe7j3\r\nu6/7QidAMjxI3RexGlOEI+NY03shh77UB1sxNjvqwKYEd0eR6ITDVnYpKVOm\r\nITA0EQwoFIG5dQ4QLgqyyMvoaUit5RqJzLd4O/yY4kNxDjAyovri2skvIdhG\r\nmsOmOLRRetme56M/4BihlECnscXw8+rv6INh5Xp/v8LixE/D/ATFl2kbEiQR\r\n7Eq89yR+Hkd73N/gD7354YLrDbmdxtaASRn4hSVuwGF7mSbFXT6RDpd+5diK\r\n9uE9rJJcSV1w0MBoHFAqt+Ur+1GecIwX8ImEHlAnMp2zkRpvzrhDLzA44yiQ\r\nar8f8NcoZsa6FScQyg3znBHHb5eWz75gBVn4Dmc437P2jvlWBLkTZq9ETHTu\r\nZ6JD7Dl53dCuLWxwGyMNjsSCDVOm8FPJXJ51LvN91AW3TBRqoanY0kaOVpqt\r\nYasuba/uK9KpqPXkMUA+p8YLWP0rtCiLCq8Ay/xi7Mcjm34Px8/UIOpXF44O\r\njrwlIfQasFpaydzf3Siu9G4Eeendp6GmqdakaGRsozWKWFR7YYWeyv/Tpel7\r\nb0Y888LT2Y8S05N4bH83szSK5gbKTzED+ik8+ZV407Dk0bN81Z9GX4NAO0I7\r\ndJ4IDvGU49zxSWkoqWrhZc2nuBe0QKeATKk=\r\n=De8W\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":"^14.19.3 || >=16.0.0"},"gitHead":"5451a79392742a6e942a845de1e46db0a41b1c2e","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"8.10.0","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"16.15.0","dependencies":{"p-map":"^4.0.0","@lerna/command":"5.0.0-alpha.0","@lerna/profiler":"5.0.0-alpha.0","@lerna/child-process":"5.0.0-alpha.0","@lerna/filter-options":"5.0.0-alpha.0","@lerna/validation-error":"5.0.0-alpha.0","@lerna/run-topologically":"5.0.0-alpha.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_5.0.0-alpha.0_1653373379172_0.6856213804960554","host":"s3://npm-registry-packages"}},"5.0.0-alpha.1":{"name":"@lerna/exec","version":"5.0.0-alpha.1","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@5.0.0-alpha.1","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://github.com/lerna/lerna/tree/master/commands/exec#readme","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"8404db9569a662cd8e5c57e16717292ee066c9c3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-5.0.0-alpha.1.tgz","fileCount":6,"integrity":"sha512-D6yJkVZhwLHj1HQJkqBghy8fXe5sfKn11EGpOF20Q8efUP/E+y/AbzsVLbQBil4k/B72xnVkftUJTWebbco7uw==","signatures":[{"sig":"MEUCIQCF1MakrbkHWHuvDE5wuchFT7GW9ONy/7ltmwq6Uf+VXAIgGtyjpOJNqDoZvoBUQdXLwK2bAZBHTh6VEK0nx+9vylQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":26740,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJijHv5ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqnUA/9HX+Bx5S8aNN4f5q8nc//peJoIEuqhMxCwn+t/o9hs8eAslki\r\nz1naBoJ8UKMTsecVsVXeJOr3LxY7yVz7EL0KiN7BKCGEC0TYYRJ5BDtG2zS0\r\nI3uKt3FX3rN02WkikJ6J1nI3qqBo4pyhE1V9p6LzCwpvFgfA3Im0LOmNLHtJ\r\ni9fvjdCzQOvZt7OYxzZbIKlLzZsR+HRyGcbrweNGao501aiHiIglXbt6CPJP\r\nde9al2WfhQAWwb2JmIfu19gG7NBKyfpQuB7JTc2JwC3dnjJvu+JIZAkrWuWw\r\nojQf+cujb6dnOvuNl2UFe38aMrPsuZJbubPpy5Ooeoys06gxIFbcriMnvqEb\r\nLsKEhU7aNc5Ajsui8QRlze6YTLX5unL5XUu6XmR43cL21l8yZnquw+JdeAqE\r\nGPDDmjvQQCnAfPhcaFP/EIeglvjcUgyFXdCxUXaIyTGahhgPZSwRG80+uoOu\r\n8igdziaYsXJ/kAZOTqXtveqbDF5l770lUDNJTMqalBsfnXHR4nDXibgXJBYz\r\nLKrLxpE7ZicqBnQ2ew27sZ+dL+VPlRHUxuOsctp97pGYnqM7MpBmYNJft2Is\r\nPKzv1sf8bBrHtxxpaEocNahudsdZWWwiN2vINDNgIC9nd+XtRVU5veVSpK8O\r\nBpknPa9jpjnhKducxg3Zp041OpeHXNfhbEs=\r\n=j7GY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","readme":"# `@lerna/exec`\n\n> Execute an arbitrary command in each package\n\nInstall [lerna](https://www.npmjs.com/package/lerna) for access to the `lerna` CLI.\n\n## Usage\n\n```sh\n$ lerna exec -- <command> [..args] # runs the command in all packages\n$ lerna exec -- rm -rf ./node_modules\n$ lerna exec -- protractor conf.js\n```\n\nRun an arbitrary command in each package.\nA double-dash (`--`) is necessary to pass dashed flags to the spawned command, but is not necessary when all the arguments are positional.\n\nThe name of the current package is available through the environment variable `LERNA_PACKAGE_NAME`:\n\n```sh\n$ lerna exec -- npm view \\$LERNA_PACKAGE_NAME\n```\n\nYou may also run a script located in the root dir, in a complicated dir structure through the environment variable `LERNA_ROOT_PATH`:\n\n```sh\n$ lerna exec -- node \\$LERNA_ROOT_PATH/scripts/some-script.js\n```\n\n## Options\n\n`lerna exec` accepts all [filter flags](https://www.npmjs.com/package/@lerna/filter-options).\n\n```sh\n$ lerna exec --scope my-component -- ls -la\n```\n\n> The commands are spawned in parallel, using the concurrency given (except with `--parallel`).\n> The output is piped through, so not deterministic.\n> If you want to run the command in one package after another, use it like this:\n\n```sh\n$ lerna exec --concurrency 1 -- ls -la\n```\n\n### `--stream`\n\nStream output from child processes immediately, prefixed with the originating\npackage name. This allows output from different packages to be interleaved.\n\n```sh\n$ lerna exec --stream -- babel src -d lib\n```\n\n### `--parallel`\n\nSimilar to `--stream`, but completely disregards concurrency and topological sorting, running a given command or script immediately in all matching packages with prefixed streaming output. This is the preferred flag for long-running processes such as `babel src -d lib -w` run over many packages.\n\n```sh\n$ lerna exec --parallel -- babel src -d lib -w\n```\n\n> **Note:** It is advised to constrain the scope of this command when using\n> the `--parallel` flag, as spawning dozens of subprocesses may be\n> harmful to your shell's equanimity (or maximum file descriptor limit,\n> for example). YMMV\n\n### `--no-bail`\n\n```sh\n# Run a command, ignoring non-zero (error) exit codes\n$ lerna exec --no-bail <command>\n```\n\nBy default, `lerna exec` will exit with an error if _any_ execution returns a non-zero exit code.\nPass `--no-bail` to disable this behavior, executing in _all_ packages regardless of exit code.\n\n### `--no-prefix`\n\nDisable package name prefixing when output is streaming (`--stream` _or_ `--parallel`).\nThis option can be useful when piping results to other processes, such as editor plugins.\n\n### `--profile`\n\nProfiles the command executions and produces a performance profile which can be analyzed using DevTools in a\nChromium-based browser (direct url: `devtools://devtools/bundled/devtools_app.html`). The profile shows a timeline of\nthe command executions where each execution is assigned to an open slot. The number of slots is determined by the\n`--concurrency` option and the number of open slots is determined by `--concurrency` minus the number of ongoing\noperations. The end result is a visualization of the parallel execution of your commands.\n\nThe default location of the performance profile output is at the root of your project.\n\n```sh\n$ lerna exec --profile -- <command>\n```\n\n> **Note:** Lerna will only profile when topological sorting is enabled (i.e. without `--parallel` and `--no-sort`).\n\n### `--profile-location <location>`\n\nYou can provide a custom location for the performance profile output. The path provided will be resolved relative to the current working directory.\n\n```sh\n$ lerna exec --profile --profile-location=logs/profile/ -- <command>\n```\n","engines":{"node":"^14.19.3 || >=16.0.0"},"gitHead":"66c961d55050634bb011e98c43aad5b2ec8505f9","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/5.0.0-alpha.1/node@v16.15.0+arm64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"16.15.0","dependencies":{"p-map":"^4.0.0","@lerna/command":"5.0.0-alpha.1","@lerna/profiler":"5.0.0-alpha.1","@lerna/child-process":"5.0.0-alpha.1","@lerna/filter-options":"5.0.0-alpha.1","@lerna/validation-error":"5.0.0-alpha.1","@lerna/run-topologically":"5.0.0-alpha.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/exec_5.0.0-alpha.1_1653373944845_0.6982926794043138","host":"s3://npm-registry-packages"}},"5.0.0-alpha.2":{"name":"@lerna/exec","version":"5.0.0-alpha.2","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@5.0.0-alpha.2","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://github.com/lerna/lerna/tree/master/commands/exec#readme","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"a66e7a5916e818a8a650bb6053e1ea823f3d967d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-5.0.0-alpha.2.tgz","fileCount":6,"integrity":"sha512-pIxAktFPkZrE0rTWgyw+pvpjRSn/ni01nlQr9fH9Q2jKWr+MTFC/xDl/mDvbHb5AQW0UMQo4D6rvXVGp45GS4w==","signatures":[{"sig":"MEQCIFmjlILBfgAz5JpO+xrw5I537HJ+yIbyaTw6D6+J8J7qAiA8DGkJUle6j03hChL66RuKuMUnbDoO1H1xAzWE1E2jOg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":26901,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJijJFTACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpkPg/8DxFErBGTzw2mzoX9hA/7kNI5tn+FJLwc4R3FmUJ4yYNu47AM\r\n7lj0vurxhFhqLvFpw4zJnlKa02ooIp7fPxnUyJOuY1xtRqp0qAH+6Zh9caqQ\r\n28FSSNZqPNbjCbaW57ELcCy0i0/i8J8ayY4OxZltLOx8fDZJzEgjUUikLr55\r\nMtabbCZvVt7Pit5AEC7Sglte6CN2lrZgl9gZM2xI7BqgjdtKebn93L6jXVTW\r\nt/4NWRpX1SCZjiW7DAp7Q90tYPUpOMgSrxkvGj85EEq9/gV6GYRrcdII6VrI\r\np9xy8Ud2C7ZPE1A26kgd25y896pCHFoXa2RcLfmLBzELlkflID6xrcNZKUQs\r\nO0ZMPEs+c0beJAt2QuecFkmDn4Hp/GehrRoUfgUuRAW21I77SJsdPrXtHDmK\r\nInueCHhbiF/t3zwMDNkWIMHWE0sPCivumNBUyQ1Bub+K+xQ/caXVQnvvkb2e\r\n2XRGkb8TBAy8vGgJbzodemwMuvEuv4Bxu4aXzT2+6L/zCkM2IpLvoRIcEJNv\r\n87wgI+mNlZohdUl2/OfeROtRvjQPZjcgIi68DwDs74cJHTH48/Y0PXfxBnry\r\n+YsBBi0gVofA67/Irf91DOMpPMa9nJSq1WUNXQsTbWlKAOCtfJear6kNl3du\r\nrRHyDD+Y44ZLLgZn/AYerLvNsZBdOYXsoxM=\r\n=VjuZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","readme":"# `@lerna/exec`\n\n> Execute an arbitrary command in each package\n\nInstall [lerna](https://www.npmjs.com/package/lerna) for access to the `lerna` CLI.\n\n## Usage\n\n```sh\n$ lerna exec -- <command> [..args] # runs the command in all packages\n$ lerna exec -- rm -rf ./node_modules\n$ lerna exec -- protractor conf.js\n```\n\nRun an arbitrary command in each package.\nA double-dash (`--`) is necessary to pass dashed flags to the spawned command, but is not necessary when all the arguments are positional.\n\nThe name of the current package is available through the environment variable `LERNA_PACKAGE_NAME`:\n\n```sh\n$ lerna exec -- npm view \\$LERNA_PACKAGE_NAME\n```\n\nYou may also run a script located in the root dir, in a complicated dir structure through the environment variable `LERNA_ROOT_PATH`:\n\n```sh\n$ lerna exec -- node \\$LERNA_ROOT_PATH/scripts/some-script.js\n```\n\n## Options\n\n`lerna exec` accepts all [filter flags](https://www.npmjs.com/package/@lerna/filter-options).\n\n```sh\n$ lerna exec --scope my-component -- ls -la\n```\n\n> The commands are spawned in parallel, using the concurrency given (except with `--parallel`).\n> The output is piped through, so not deterministic.\n> If you want to run the command in one package after another, use it like this:\n\n```sh\n$ lerna exec --concurrency 1 -- ls -la\n```\n\n### `--stream`\n\nStream output from child processes immediately, prefixed with the originating\npackage name. This allows output from different packages to be interleaved.\n\n```sh\n$ lerna exec --stream -- babel src -d lib\n```\n\n### `--parallel`\n\nSimilar to `--stream`, but completely disregards concurrency and topological sorting, running a given command or script immediately in all matching packages with prefixed streaming output. This is the preferred flag for long-running processes such as `babel src -d lib -w` run over many packages.\n\n```sh\n$ lerna exec --parallel -- babel src -d lib -w\n```\n\n> **Note:** It is advised to constrain the scope of this command when using\n> the `--parallel` flag, as spawning dozens of subprocesses may be\n> harmful to your shell's equanimity (or maximum file descriptor limit,\n> for example). YMMV\n\n### `--no-bail`\n\n```sh\n# Run a command, ignoring non-zero (error) exit codes\n$ lerna exec --no-bail <command>\n```\n\nBy default, `lerna exec` will exit with an error if _any_ execution returns a non-zero exit code.\nPass `--no-bail` to disable this behavior, executing in _all_ packages regardless of exit code.\n\n### `--no-prefix`\n\nDisable package name prefixing when output is streaming (`--stream` _or_ `--parallel`).\nThis option can be useful when piping results to other processes, such as editor plugins.\n\n### `--profile`\n\nProfiles the command executions and produces a performance profile which can be analyzed using DevTools in a\nChromium-based browser (direct url: `devtools://devtools/bundled/devtools_app.html`). The profile shows a timeline of\nthe command executions where each execution is assigned to an open slot. The number of slots is determined by the\n`--concurrency` option and the number of open slots is determined by `--concurrency` minus the number of ongoing\noperations. The end result is a visualization of the parallel execution of your commands.\n\nThe default location of the performance profile output is at the root of your project.\n\n```sh\n$ lerna exec --profile -- <command>\n```\n\n> **Note:** Lerna will only profile when topological sorting is enabled (i.e. without `--parallel` and `--no-sort`).\n\n### `--profile-location <location>`\n\nYou can provide a custom location for the performance profile output. The path provided will be resolved relative to the current working directory.\n\n```sh\n$ lerna exec --profile --profile-location=logs/profile/ -- <command>\n```\n","engines":{"node":"^14.19.3 || >=16.0.0"},"gitHead":"c8b87007e82a5eed8f49b161312879739cafcbc5","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/5.0.0-alpha.2/node@v16.15.0+arm64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"16.15.0","dependencies":{"p-map":"^4.0.0","@lerna/command":"5.0.0-alpha.2","@lerna/profiler":"5.0.0-alpha.2","@lerna/child-process":"5.0.0-alpha.2","@lerna/filter-options":"5.0.0-alpha.2","@lerna/validation-error":"5.0.0-alpha.2","@lerna/run-topologically":"5.0.0-alpha.2"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/exec_5.0.0-alpha.2_1653379411404_0.7920911958635803","host":"s3://npm-registry-packages"}},"5.0.0":{"name":"@lerna/exec","version":"5.0.0","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@5.0.0","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://github.com/lerna/lerna/tree/master/commands/exec#readme","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"a59dd094e456ea46cfa8f713da0ea3334a7ec9ac","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-5.0.0.tgz","fileCount":6,"integrity":"sha512-g5i+2RclCGWLsl88m11j99YM2Gqnwa2lxZ5tDeqqWZFno6Dlvop17Yl6/MFH42EgM2DQHUUCammvcLIAJ2XwEA==","signatures":[{"sig":"MEQCIDE0ClXF1iK2iWPk0DqgtNQHFuVhubu3dv7rapCz8BJHAiAxohOdCi5u/U8HnrpmIeedTi/u0V6X2el2AFpFET6vnQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":26507,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJijP0lACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmou0Q//YX6Vdr+qF92YH1GXt/FcDwgWWZ/PUkotUs1Wp4DW1gthevY/\r\nfL1kwUn7a62M3PHqEf1G1VyFduQh7I9QbuJIO4rxW3g/VQv8v8srZefKNlyu\r\nugynQ6JTsAvIuw88VauLxVfxycxZyBS2cXPkZ5eHEEXDgHoAZsFBdVwqBndW\r\nqazXIENCXeFY5a2cfnqlPLVr8qFooUrY6jBNK4T3gMSTEdp9U/wmza8cSrdp\r\nlLaX+Qv3sGgNMJK3PaqW8DJ+yZg4tr45XR4UDXl/rCOTNo8UU/YmZOUq/xN6\r\nSIIyDDkw9+R+3QeRx9alTE6lfHJLSxYSuCqo0gjLZ0aehhctFwCRMg+AasEv\r\nT5bY4cNZh+MwiaMoGasBiVhxpajj4Jk9tiWa/vsRIl9g4bifxLP2NjcZlMDc\r\nYb95mHNZd2hFPTPKDUGjqSkmjxDeyaNMX9EEv0f30m4XjtvoZNL5nNzIiUKg\r\n3dSXpipIk5m1H5bf/eIqTsq+4KtlrFSu4d1+eYuwj/clqfXKdyx0HDZGzLAn\r\neQ9CjWO8UoXuikf851dpgfXbB1UscNTdkUCDab/PxmFih5ZN6BZXdAq2RyJX\r\njQ/mPO0bZ+2Kwlq2BUtRsb5g/uQzz5AqPcOtQ1uh5mkuOnTA9iP93SOlZXRR\r\nrybYt3qnWkP84CHXRtTK6kN559xUN2UPUqs=\r\n=rTdU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":"^14.19.3 || >=16.0.0"},"gitHead":"f69480e356cdcd809a041d814eb0fced9d86c8fc","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/5.0.0/node@v16.15.0+arm64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"16.15.0","dependencies":{"p-map":"^4.0.0","@lerna/command":"5.0.0","@lerna/profiler":"5.0.0","@lerna/child-process":"5.0.0","@lerna/filter-options":"5.0.0","@lerna/validation-error":"5.0.0","@lerna/run-topologically":"5.0.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_5.0.0_1653407013252_0.27699375722194475","host":"s3://npm-registry-packages"}},"5.1.0-alpha.0":{"name":"@lerna/exec","version":"5.1.0-alpha.0","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@5.1.0-alpha.0","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://github.com/lerna/lerna/tree/master/commands/exec#readme","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"527532ee11e3b686353cf251f87e9667616081a4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-5.1.0-alpha.0.tgz","fileCount":6,"integrity":"sha512-UlhqOgY163nkGe1OWPHdM2IrfWjVDnYSxXcuRSUMk3F8nZbFVNHhGfucOi8d0ykx5XZDUO0/tMepezb2X1YW4w==","signatures":[{"sig":"MEYCIQCm+vlNmSH5np5o1LX/mJ70+cGw2CyRa/bVTN/e6u9xrQIhAIhV0kC3cDHEDouK1gJ6o5yJSa2CigX54AWu7KUD2bVw","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":26716,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJijha8ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqElw/+Ogv7te3/l/vomC1gNZUWdhCEnVZ0ZThoawOXmLD4cqA8LtrL\r\n4I1z+iEjq/Y99KQqs0KEuQFGAI8ouW/sytdngijhYUc2y4BAwNQ02F0qrt1k\r\npfEXaVy36VuzY8k4unjowjbZMT7KhBPJHrONwIGPlVhdTPptXEJCLa8S6Zit\r\nWlNP34g15GJhV24CicxON/7XHvoi8Q0lyjPg5XdVB1ivAjRQwO2vw5b0HcY2\r\n05q+49/DhVn0/mI5d0tNrqWe8n8Xjnl2oAPuQZxDY+hTbGh1bRJFqdeO3eHO\r\nePh0y5ivAtZMuCYSJkS4epdx+uS5zYlbNJ1hYsLB0eUobZvkfdc7QVsWrm9L\r\nj1DdQrP7MedXpYebrfKiy3Sb9MSI0QJivlSrpfG1YYQJdIyTTHbYQeyFutzj\r\n9c9PIMmSPz04jYMyFawg19LdkNO8n6LGSkhvtuN+Eh3olDiDTeCZphIK7XEd\r\nyOAHaYgEcnOQg0aFwgLeB3Soxt6degIOHQtoZL6GjJn8xEvCjxsR8qnjo8Sm\r\neOimFpnZAhPDz5qdfMw8641nfkHTzBtvGPGGFhbG+3VNyYP4fDNJmCGmsFwN\r\nJy2tB/PMrc5zgicrepjXtVkJ+DlAYfpcErcbHKouqFhVGHf2aGPDFc/qaHd4\r\nOuad35ZiZcA4aHYhWkJRZcj+bnhupdV/sAI=\r\n=tfc+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","readme":"# `@lerna/exec`\n\n> Execute an arbitrary command in each package\n\nInstall [lerna](https://www.npmjs.com/package/lerna) for access to the `lerna` CLI.\n\n## Usage\n\n```sh\n$ lerna exec -- <command> [..args] # runs the command in all packages\n$ lerna exec -- rm -rf ./node_modules\n$ lerna exec -- protractor conf.js\n```\n\nRun an arbitrary command in each package.\nA double-dash (`--`) is necessary to pass dashed flags to the spawned command, but is not necessary when all the arguments are positional.\n\nThe name of the current package is available through the environment variable `LERNA_PACKAGE_NAME`:\n\n```sh\n$ lerna exec -- npm view \\$LERNA_PACKAGE_NAME\n```\n\nYou may also run a script located in the root dir, in a complicated dir structure through the environment variable `LERNA_ROOT_PATH`:\n\n```sh\n$ lerna exec -- node \\$LERNA_ROOT_PATH/scripts/some-script.js\n```\n\n## Options\n\n`lerna exec` accepts all [filter flags](https://www.npmjs.com/package/@lerna/filter-options).\n\n```sh\n$ lerna exec --scope my-component -- ls -la\n```\n\n> The commands are spawned in parallel, using the concurrency given (except with `--parallel`).\n> The output is piped through, so not deterministic.\n> If you want to run the command in one package after another, use it like this:\n\n```sh\n$ lerna exec --concurrency 1 -- ls -la\n```\n\n### `--stream`\n\nStream output from child processes immediately, prefixed with the originating\npackage name. This allows output from different packages to be interleaved.\n\n```sh\n$ lerna exec --stream -- babel src -d lib\n```\n\n### `--parallel`\n\nSimilar to `--stream`, but completely disregards concurrency and topological sorting, running a given command or script immediately in all matching packages with prefixed streaming output. This is the preferred flag for long-running processes such as `babel src -d lib -w` run over many packages.\n\n```sh\n$ lerna exec --parallel -- babel src -d lib -w\n```\n\n> **Note:** It is advised to constrain the scope of this command when using\n> the `--parallel` flag, as spawning dozens of subprocesses may be\n> harmful to your shell's equanimity (or maximum file descriptor limit,\n> for example). YMMV\n\n### `--no-bail`\n\n```sh\n# Run a command, ignoring non-zero (error) exit codes\n$ lerna exec --no-bail <command>\n```\n\nBy default, `lerna exec` will exit with an error if _any_ execution returns a non-zero exit code.\nPass `--no-bail` to disable this behavior, executing in _all_ packages regardless of exit code.\n\n### `--no-prefix`\n\nDisable package name prefixing when output is streaming (`--stream` _or_ `--parallel`).\nThis option can be useful when piping results to other processes, such as editor plugins.\n\n### `--profile`\n\nProfiles the command executions and produces a performance profile which can be analyzed using DevTools in a\nChromium-based browser (direct url: `devtools://devtools/bundled/devtools_app.html`). The profile shows a timeline of\nthe command executions where each execution is assigned to an open slot. The number of slots is determined by the\n`--concurrency` option and the number of open slots is determined by `--concurrency` minus the number of ongoing\noperations. The end result is a visualization of the parallel execution of your commands.\n\nThe default location of the performance profile output is at the root of your project.\n\n```sh\n$ lerna exec --profile -- <command>\n```\n\n> **Note:** Lerna will only profile when topological sorting is enabled (i.e. without `--parallel` and `--no-sort`).\n\n### `--profile-location <location>`\n\nYou can provide a custom location for the performance profile output. The path provided will be resolved relative to the current working directory.\n\n```sh\n$ lerna exec --profile --profile-location=logs/profile/ -- <command>\n```\n","engines":{"node":"^14.19.3 || >=16.0.0"},"gitHead":"789149edb02eba21bb028144e9d8f4e226337b6f","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"hello@nrwl.io"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/5.1.0-alpha.0/node@v16.13.2+arm64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"16.13.2","dependencies":{"p-map":"^4.0.0","@lerna/command":"5.1.0-alpha.0","@lerna/profiler":"5.1.0-alpha.0","@lerna/child-process":"5.1.0-alpha.0","@lerna/filter-options":"5.1.0-alpha.0","@lerna/validation-error":"5.1.0-alpha.0","@lerna/run-topologically":"5.1.0-alpha.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/exec_5.1.0-alpha.0_1653479100041_0.9801919798417216","host":"s3://npm-registry-packages"}},"5.1.0":{"name":"@lerna/exec","version":"5.1.0","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@5.1.0","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://github.com/lerna/lerna/tree/master/commands/exec#readme","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"d28f528f2b12bd807bcc16d91ec95f08f8f3dc2e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-5.1.0.tgz","fileCount":6,"integrity":"sha512-JgHz/hTF47mRPd3o+gRtHSv7DMOvnXAkVdj/YLTCPgJ4IMvIeVY70sCWuvnJPo728k4fdIrgmw0BWpUBD64q9w==","signatures":[{"sig":"MEYCIQD3ONJDQ7djpt5360r3tBRnNtW29qZnBbecmxxY5+DmQwIhAKkh5dThloiXTfbsa0YYPoWgR23reqonNryVqrL2E3F8","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":26797,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJin5H6ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp2qA/+JVXLqL63VMoLufG/jYLR08vatNnXB//wRk9uhbSMQOIG+O4S\r\ngM36AirvvZjAF1dv+pw+o49/vgXjbMxuHdlHYIyOQxR9uFs95VJ4C8pOM07Q\r\nsa42lGW50Vmr4FqXKs3/OsS6VekL2Cv/sVLOMw8Qyf57P5m3xKLNx/iGWwBH\r\naCIlW4ZWgi/1cHfj2lFkMKVil7cwDXNwFOmaWp7EGNtTlZPeKJC44sPmUSM+\r\nBjyejsylwXXseJuMWbrs5NisqytEGi5q+QYq/gbr+beK20kikXOgEvohL2zO\r\n2G+NsLvGP7Twa93US+32blNUL/CSgt3AnRBNO3QyZ8124eRIqmd+kjsWyhdT\r\nWMHH6zm95lqFctF0azZ4iUmRxxZi8MEcjlzmQ0s+J+6SQvzQDjWdOhAHwhGX\r\nBa/UsFNV952QRPZI5oluNHqpi4h98XJLa4nPikrXdNRg0N2C4D0xVhMv69rP\r\nVZ8ReagL29NDDT9ABmfwywBmrf97eZCUghlpebYnkRA2nByWpQK8XB0thMb5\r\nsSicnBExuQDt15AbexXmiA0+UZuwvxFCezp5izh4KA0jI2wRkIsqfc6Ffhsr\r\nlDguNJUpbjVYfgMF/c8xmGxQfMOOGF2ImvOezdTdOx+qvayC8BNsFyB7t7hH\r\ncuPaA1Dzb3wkbGwoOQghVwX+zm2kGshqSJA=\r\n=9Lii\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":"^14.19.3 || >=16.0.0"},"gitHead":"6b9c375e4210d2d97c75c465badbbe4334b6388f","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/5.1.0/node@v16.15.0+arm64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"16.15.0","dependencies":{"p-map":"^4.0.0","@lerna/command":"5.1.0","@lerna/profiler":"5.1.0","@lerna/child-process":"5.1.0","@lerna/filter-options":"5.1.0","@lerna/validation-error":"5.1.0","@lerna/run-topologically":"5.1.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_5.1.0_1654624762027_0.9137883031087233","host":"s3://npm-registry-packages"}},"5.1.1":{"name":"@lerna/exec","version":"5.1.1","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@5.1.1","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://github.com/lerna/lerna/tree/master/commands/exec#readme","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"eec7dbe167803f8509bd239e2f9ed91841c017a8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-5.1.1.tgz","fileCount":6,"integrity":"sha512-kTKquC0BfFmxXKmkwCq2uYh2ZK0QRa7bQeIRJH8MON8T82D+mU9FHH8UUObx6Aa6sl9lwg04TVnEoUbOJjZxvg==","signatures":[{"sig":"MEYCIQDXj3mK28htIf1RU7VJu6QCBFv52rwHANAVnoEUx6VIPwIhAM7ptcDpkki88lfTyyluX3JryM23CsYG03JnT6Jimi1Y","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27105,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiocZoACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoI1w//fEB2eYPB6YSyG7pObJMkDzgGthztDexv56ll4y4tuAGqT3Du\r\nwQvbKOwHM5AIBVHFwNwHCZJMCia1xEUhfSG193YA8bBhs5Pdn8YIzZ3msJrn\r\n4VXrCquZaMDaYLiOFUcY5W2OQ/VLiV2O5qU/otgioCu4aus1wiEefmmj3zUM\r\nzwoQvqMBudUg5Z7IWqNRgEj0cB9b6rFjLL9qkBb+mwV3TgEGi3NkhDNs7qdU\r\nnFBd0cQbLD289Eou5vaJRhogYRnJh0xQhByT2G5G2PA/2ewyJ3DIre+/t5RK\r\nJ9ylzUKHfLzufN9yNJJCH0toL4ukSnK1Gkm2zQCdPzOO9bOK9z4cCSnzKI26\r\nu2fHmCtsVCIU2VrlpCrRxlR4rBAiHV2TwkIapZpyMi/yApu2bBhGj5LPPAwl\r\nkx5g94iVFhPi0KvkR8symrpeHjFBnKR9nvovmiEFl8YD1wxCjV2wAMJf6SSg\r\nDY3M2puEUXsXhQLkwxjwdCWWew0WHzVvgx0u+YggQjtKfv1/3b0Nwwn9F9a7\r\nlZYLsZEpW1sR3mZiFNAiQSEf9iF6qVSL5T0W/iiYW4646JsMoIbkpjZKpzZa\r\n2vX4bME64VLwzORiYLC8K1UHoKlyH1u7mA+PGUX0U1ykm4c/f3gASAO2R9DX\r\nRYLNDv+NnW3kPUR5OmylcH3PSAB6gWtjkWA=\r\n=BrXX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":"^14.15.0 || >=16.0.0"},"gitHead":"eb7da8519069ad71793fa49c51133dc8df2fa806","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/5.1.1/node@v16.15.0+arm64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"16.15.0","dependencies":{"p-map":"^4.0.0","@lerna/command":"5.1.1","@lerna/profiler":"5.1.1","@lerna/child-process":"5.1.1","@lerna/filter-options":"5.1.1","@lerna/validation-error":"5.1.1","@lerna/run-topologically":"5.1.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_5.1.1_1654769256282_0.8613438589339284","host":"s3://npm-registry-packages"}},"5.1.2":{"name":"@lerna/exec","version":"5.1.2","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@5.1.2","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://github.com/lerna/lerna/tree/master/commands/exec#readme","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"357763ed5ab1b715729505ce4de9f556949f4b33","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-5.1.2.tgz","fileCount":6,"integrity":"sha512-iNh894U+ZWLSNNDLAw8OpCltZQKO9WRjIxs+jUQQucux8xr1edYIOHEHf8eA/ouQLrROhU3EbWEot4OJ3Iyqqg==","signatures":[{"sig":"MEYCIQCV9/AwBGhsPVeW3l52NgUrbxU4J4o+YawQ1vTawS7b9wIhAL3zDkG7PLTl905hBskun9wAwlsdSqvQL0KuO9+P5wmq","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27243,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJipw+MACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqlKBAAiuCP5AylNy1dkKOxKfjDFhlwSeG0FExVLZIklkSCoU5YgV4S\r\nnLhfPGz3BCs9CbOI8/b4ztgKrG/HI4CXohD6uX3pkgMzdg8PTYZh8AU4/u6e\r\nZRLv6bDJEn5sr9GM4x4TMA0IITAFH/pAJ4eia7H0Uz2PIy8DrEfnZumWUsM9\r\nC0Ff7BZ8bQDOlkxE5DMqz2kcR7dWna74XFtlyP4LZ4iVxrqhzkH4cQ66CuQN\r\n7DSBPOJ3E8BCnh5zWSioV/TBXzQX5zpXMqkYl6FtE78wa9/lt8AgKAWMQDuN\r\nAZp2u6kVR+QxSrIRzo3A1r6tjDOGnIJ2mwuYP2KczRcyGPWoI87mbJ1k3k+r\r\n99OaSxjrK1Ew5kZcegIim2pc2A6BepZ8SzSjpPbtzWxwGjoLY4Nn818t2rdI\r\nzAfAy3aZLmbkASrBnPTZtcdy9+t6chxR11aJE+d+xm1UueIKFTE39Zz4YQc+\r\nloqXB3wJ3qj9lRdmOn8Elx+xLGx0TzpqvXlosopAK7P0O81YCZ1b2SFJ7zFX\r\n7+muocP9VF7vTgbh1rzmg5x3LH2h7ZU2lxc/Y3OgmMzLraJWw5J99KsjaWzc\r\nT1ISqDKG0DUCxRE7YRNClrq4wKX47GRCZgkDPDtBfHwdOcfyBhUKwHttGsPc\r\nxBjczmIWbDcJSVcYE9Ep957d5LePM8+Ssh8=\r\n=HR8f\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":"^14.15.0 || >=16.0.0"},"gitHead":"45ff3464ddb74a987f7c6b0c7af070fab67d3816","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/5.1.2/node@v16.15.0+arm64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"16.15.0","dependencies":{"p-map":"^4.0.0","@lerna/command":"5.1.2","@lerna/profiler":"5.1.2","@lerna/child-process":"5.1.1","@lerna/filter-options":"5.1.2","@lerna/validation-error":"5.1.2","@lerna/run-topologically":"5.1.2"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_5.1.2_1655115660620_0.4502227265585055","host":"s3://npm-registry-packages"}},"5.1.3":{"name":"@lerna/exec","version":"5.1.3","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@5.1.3","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://lerna.js.org","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"9be174d04a2cb1d88cf573ee5f2195126c02e803","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-5.1.3.tgz","fileCount":6,"integrity":"sha512-Z6upcQjLVclB38UUP+a9Ty29uFTKdQthW4yT34qKwV9Hzv2UAwquZoHw/aOvFE1WYVoL0U1WFWwswq0MQcJElA==","signatures":[{"sig":"MEUCIGIQ7ni4fn0VMx2N0h6MRr6hF9AUN+QGeC/MfB89HxLUAiEA8LfCMbqe1ay6B7CEnh02O9ieMq1TUKwbqCQgSYaWDfE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27338,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiqfYkACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpNohAAj5D/tAUuYv5ngWbyGVZYAwGTUGc7Oe0HZg2OLzpgaiY5oMnz\r\nXuVw+eyVGW3tGaOyyTpqY7mhvRVBjsleqDUubyYhxmS++glLu04YjEeTSVzo\r\nZCfBaleU/5pkBn9gvJdUnMEasDjCqMGNuAyznhV6+Rkp0U/VnzmfS1oo5x+q\r\nDnSY/HILcUWfUeqnc4dEcMlhYhx/FCAuEWLqTl6brloJlk+26v1jkycdd+en\r\nJzrnmFOOTXQYjFDo4mRjyT3NQNLccrJYiKN2fegUj04VAj8A9nI90KOMRcpZ\r\nxiimdI3p7DvhfcfwoKzRmgc6QOqam1uxAKU2S78f9uWJtyls2MzcVewZh2hB\r\nl4bq4SiCy/rcsGhYZsGeJejiDkcmXb+yzJojKo/SCU70VCPKbdz99vO2xR0J\r\nru20DW9u5fRCBjE2YvLuZFiKyh8HXaR6sHH22D+UeCHn2v/ofmj6SizL+WcX\r\nWWxoar2j5eojnbJMFbRNaMBvOcoEnuGQM9omByAYROsWDSaZaBSWSuirLzZE\r\np7zyijk+V5LQ6aHbyf/Dhj+ZL4uuUM8BTspYep/c/H886f+hxRh5YRMn5R+T\r\nnXaziXjrjCzfVgowu3s+4rf2008wO0sLYI9i70MrogosaEZCF2NqctlgdpQl\r\n4/pd9P2AoxJBdQNJ3YyhGeYGTGR4H142hN0=\r\n=BDIE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":"^14.15.0 || >=16.0.0"},"gitHead":"5a73603cf629ce0d5b71cf4cf703ccd82cf375db","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/5.1.3/node@v16.15.0+arm64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"16.15.0","dependencies":{"p-map":"^4.0.0","@lerna/command":"5.1.3","@lerna/profiler":"5.1.3","@lerna/child-process":"5.1.3","@lerna/filter-options":"5.1.3","@lerna/validation-error":"5.1.3","@lerna/run-topologically":"5.1.3"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_5.1.3_1655305764594_0.6800342995083006","host":"s3://npm-registry-packages"}},"5.1.4":{"name":"@lerna/exec","version":"5.1.4","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@5.1.4","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://lerna.js.org","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"b1b35c65593429dcc822fcbc72153d3cf3adf0b9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-5.1.4.tgz","fileCount":6,"integrity":"sha512-6vn1UCxJZTTt90WlWItI05yj4xaNOShgIl5Yi9mx1Ex6nVS32mmTOqHI/+Cn4M+P0C4u1hFymd2aIEfWnmdUsA==","signatures":[{"sig":"MEUCIQC3dLt/9wGkq3kvVaeScYyAjqYaz/JgObRQZe5LfT4CKAIgfyV1tPzioZcW0VEMEcVQf+AVdOacY+RNpoyyb6aZwYo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27476,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiqgksACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr+jhAAjCENgIJ14Xs0bsm9J5zw+m60ZnA1StEfn0lC4wBAotXceXMB\r\nl+XCdP7RL/1qsjDaefcBmcoFHC2Jn7+fnIAHPM7G4zrui+6CKNAgFuu7dppW\r\nsvS8XMhjQfx71VJqvyM904I5K5E0n4wzfArEftkmpaFmdvZObwcnusHILE6V\r\n41NE/wMYR9ltd8xesVgbgyzk/YAOObzT+k7cR3GbYxDF7ue6qnI7pVZi+4eE\r\n2iv8+OxIlv768WRyDe9fWWpfY4FQgvxVg9lpudyYCXHvTJ9ZkyBNqE0WrX+Y\r\n3VwEM0bzMZGkGszML2SCFHZbeYsgwSV5gbpWQ5pl3/w1rwkPF4D7nGbI0ADe\r\nsdcb0gSwPhdz1iIh8Kc1dhwtvdAEp35zjsKOJjqvB5Z0n2/XH68uLvgEdEHu\r\n52s8RdmU3QY1ZT03E9VUJv4Z1xGyACOaBAapoeCjyKK9VVdGork3po//P+NV\r\nYM11SYTwN/GTCfwZXG2Q0X8V2etPugw4f7Nz9/d7A/Si9LhSP9ZGRe4ZZUSx\r\nCAGRjXAm/qEFhGLml548F5zfXYR7ruMJLcAnCRej/9PJ9DsfsYiVf159Q9BS\r\nalPqGSq7mwM7/WU2ANKSVmEdBEcagB+p2o7Qliav8T/Ucw08rgQ1xqicfqtm\r\naq4LW/cWki9nNWZKSVDX3Nfo/2G011dfKYA=\r\n=xyWs\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":"^14.15.0 || >=16.0.0"},"gitHead":"6369c6d25439e29d003c6cb513058663af2d497d","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/5.1.4/node@v16.15.0+arm64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"16.15.0","dependencies":{"p-map":"^4.0.0","@lerna/command":"5.1.4","@lerna/profiler":"5.1.4","@lerna/child-process":"5.1.4","@lerna/filter-options":"5.1.4","@lerna/validation-error":"5.1.4","@lerna/run-topologically":"5.1.4"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_5.1.4_1655310636737_0.711150342221617","host":"s3://npm-registry-packages"}},"5.1.5":{"name":"@lerna/exec","version":"5.1.5","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@5.1.5","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://lerna.js.org","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"42798d90f999a3111cf138ac5f1fd03b0847e577","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-5.1.5.tgz","fileCount":6,"integrity":"sha512-u7SgZQlmtAX8brxXo8p4x420ZpqrXLniC17hvMtaVAwNFUeUWHBvTfCUazFW9mXYVY/a3Fswy4Djoj6M+UWXjg==","signatures":[{"sig":"MEYCIQCbKJrcLhO4ULjOBmUxpIrNs5V+1oxtcitvNzdrwP5aXAIhAPKe0P2PNfwd6JZR/IwNN/sP8IGx6eI9PaJfw57NE2Ta","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27614,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJitXU+ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoH7Q/8DivuARKpNf1HcLzHTRpW/rCazRZpTxbnuq+RH9NcrQ5vuLAz\r\n3LbdKZeVRqPqD1UggFcyD9uxYBMc/J/lDfEKMuWY0hmwzJ/cDw1ATPSJ/8M7\r\nOMm++OlS+S6JHs1eD8vjOD6sHuDACOS5uNxMIYlPOzic5RHoo5aWaj9RBz09\r\ndE8t9wuQl6tOQ8jMOPCJPV/H/jtHpA6vAn6QXEI0l1te5UubogLS21tSKiMs\r\n1/YewgOrmDTGZ7Ld2KTwu5HoVzYLeZpYhqj9g5FawEX6mxe+T/HShwUT7h8/\r\ncC51gl09cYhbRQkgspFYKb2wnjHf4rkya1JKvLU1PBAIez4chAivUYtePPdQ\r\nE4x1ETJ75C1AchOK7+rdqZ0zhznLwed2syXbeooxu25+xIoHmiWNT9RyWKVn\r\na9L8FhLR5FvesxhPGdQBeoKCFWLkXRDi82twz6OVKY40JwZu+I+qDUXpj9L5\r\ncjswdTTJIfvRirQHPCJ0xPoB2DS3PL9swEodad1g+1YMKAPkDykApaEAhmck\r\nDn2Xnt5+SLg6Ue9MxNZaKAkDXHvKtDUe+UgN2aKWKJ+bvne0zHj0QIUyifHK\r\n/5xfuH73i8QG3FWkkrM3rkl7PrxK3mbBRYprEE5Hc83ntJ+iWe3xa7jcIvsO\r\nQAkfLPcaYIWpWg+Jo8o6hdSLz43Y7UkhirA=\r\n=LS7C\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":"^14.15.0 || >=16.0.0"},"gitHead":"ef1ff4b464127ef1b4a0d3845e2e18e0cf37b01d","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/5.1.5/node@v16.15.0+arm64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"16.15.0","dependencies":{"p-map":"^4.0.0","@lerna/command":"5.1.5","@lerna/profiler":"5.1.5","@lerna/child-process":"5.1.5","@lerna/filter-options":"5.1.5","@lerna/validation-error":"5.1.5","@lerna/run-topologically":"5.1.5"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_5.1.5_1656059198045_0.32085107810310687","host":"s3://npm-registry-packages"}},"5.1.6":{"name":"@lerna/exec","version":"5.1.6","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@5.1.6","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://lerna.js.org","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"de3fb272a14f6c66d4f6bd798ccd458bd4475ef7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-5.1.6.tgz","fileCount":6,"integrity":"sha512-1OGca09bVdMD5a2jr7kBQMyWMger6rzwgBWOdHxPaIajPJVUTqhcLBrtJA9qVZol7jztWgDLR3mFxrvmqGijaQ==","signatures":[{"sig":"MEUCIQDcePykTdjXqR9m1ResO9RZ7SNV2/Ipk/6BdYinBeZLowIgC6mYoZtyfY0OYjgJcD6fDCRKpIrUjcTQN+a9qMm/73g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27752,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJite9tACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqX6hAAg4YeejJIYLf7wNZ6G1IKT8Xq9beuwvWYS2+moifbzfDBjPXR\r\nqep9VCthF36OmI1gwZanHmDaoXMRGnN3Vl89hIxrdoneWvevKYJLxQkrCeGd\r\ni6RgI0lP2JxY8tSunTf7S4+Pt/Ggbr6BJIspHnjgN1zAv7QId1++rU0xx4V8\r\nJTMsQ1LleuWsoiJsh/EpphB2SPv85k5uBt6bj9rLbqA84ufNduLEN39kihmM\r\nCfxXe/8kgtisX8c5+BIOxCAFIiQSm2O4u7EjH6fzG+px6in8UQ/HYlvgXYke\r\n2MeD/oLz3bY6vuCOsxbj6BvZiiG3qvVJUAe4+BHxVTqG0Pd48Mh0fhDE2akC\r\n+VIzwCe47F/aW4HWF/OEu07tjbywrmGa269Gwm6R7o2GSESwPQqHva/WlluJ\r\nf/DZyPsyGxQqkRScueWCClY29OX53ADXbLocxW8yCzANjIbNy9XEG9uDSN/F\r\n3Ziju5KTeQxt3II6i8qehxx2ZRafVwtbhagARqqp2ZrWAe3MbtRk5QyLwT11\r\nJT//MIC5XZguPZWfC0UGaRsUHLyHVUuEjvC+koFei1sKv2ze4UdsDQ0KRwQP\r\n/nfMdKELFhmPARSWjthrU0ErYWrKK5jyybuoqjLQ05EZ33IQiLWwjl1nvPIV\r\nihUzmYMGK2dRp2pLpqt7cD13ukBSrm9hWjc=\r\n=cJI+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":"^14.15.0 || >=16.0.0"},"gitHead":"edf59da6f9c8753530ef0d811bdf75f4dad16128","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/5.1.6/node@v16.15.0+arm64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"16.15.0","dependencies":{"p-map":"^4.0.0","@lerna/command":"5.1.6","@lerna/profiler":"5.1.6","@lerna/child-process":"5.1.6","@lerna/filter-options":"5.1.6","@lerna/validation-error":"5.1.6","@lerna/run-topologically":"5.1.6"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_5.1.6_1656090477524_0.9234116766635743","host":"s3://npm-registry-packages"}},"5.1.7":{"name":"@lerna/exec","version":"5.1.7","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@5.1.7","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://lerna.js.org","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"f3144848e8e278199f0aa4ba2f06fe6c63117338","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-5.1.7.tgz","fileCount":6,"integrity":"sha512-7XgCwl0MdE26d0F3UZHeaTvnZf43WEmyrVbznrvSuWSokI7HtXOLnRUfn7UgUonw2TrZ+qnOLOccKeJzU6CttA==","signatures":[{"sig":"MEYCIQDd8ArEVAgscSmDuWk9mNfdRrKUFrFf1jFLv8SJGdXowAIhANu6Dtpa6ZvZsT3Np7dXWglnUc2VPAs3rT7wq1fVngs8","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27890,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJixZPNACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpcsRAAobgvsqd+5yUFXy+5x2WcYzmO6/UmsUAYSKm0XiOrggc/wIvJ\r\n2xhBxzthyZjmrbVW+H5dwiGEhigSCsnB4R4A8+MJK8+jlTjEAIGp3XzDAC0S\r\npGVL6vOBCFcbGho2BFVe/oVoLvLAGAaBV2WhZ6/NC9uf8cOWFRWWrE4OcGzp\r\nkAjr7yI8PfEb05WJFH8ILv1SHfJUNONZM2Oovon/N1cGPEznhGPn0PBHL99i\r\nHCQYgL6WyD52dJKBbfdYJYDYWS9JiPV2WHtBVR7wjFT25JJTlS/GOHiHVylA\r\nVyHhCVtw962zWnOINl5dH6LeprdoFn0EaUqpvxBtIo1S6bm8ElBsIKfwahkG\r\nnN/u9vllToj0FIaadHBFVsBw+03/LDQERDFKr/7tSB/2tOBSIqJkbyeYxDwR\r\nw3DLyi2t5YLr5o1D8dLm74MUZMi8VQ3iWWXjAtR12gJZg81faPB9d5UtoUcg\r\nfUnbj2mYcehLVPPCFkcG2FwmTD/Y2JDsl8MD2SARXwQCfYnstrG2Nt0+7Dyi\r\nAtyTFF5QgVmB00OtT1LFjhKdYc49KgNR+p+kGQ16fafzJSJKNrEqtzXNgAVk\r\nho1JlWIZ2uZJwvQzcpnQ4KiGdTBGfsiIVUFqS1hXLKkD/uYXASAiVvNOItT1\r\ncaNgObunpJXEaBbASuXK89rJ9NABqNAP0HA=\r\n=brJ3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":"^14.15.0 || >=16.0.0"},"gitHead":"0e47379cb6e242ad12f5944c22c1d4d5f10c1f7e","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/5.1.7/node@v16.15.0+arm64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"16.15.0","dependencies":{"p-map":"^4.0.0","@lerna/command":"5.1.7","@lerna/profiler":"5.1.7","@lerna/child-process":"5.1.7","@lerna/filter-options":"5.1.7","@lerna/validation-error":"5.1.7","@lerna/run-topologically":"5.1.7"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_5.1.7_1657115597680_0.7793505497356552","host":"s3://npm-registry-packages"}},"5.1.8":{"name":"@lerna/exec","version":"5.1.8","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@5.1.8","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://lerna.js.org","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"a5a808ebb40c74c1a339e73816ea1aa1c53dc284","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-5.1.8.tgz","fileCount":6,"integrity":"sha512-U+owlBKoAUfULqRz0oBtHx/I6tYQy9I7xfPP0GoaXa8lpF7esnpCxsJG8GpdzFqIS30o6a2PtyHvp4jkrQF8Zw==","signatures":[{"sig":"MEQCIDJZNm3xYBbigBGeP32l5dtu9wUJT6mFynJgugIc1+8vAiAc2SHJC4XMev7UFRBi/H+R9c4XqFtXgIyRZRpw8hJGZQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":28028,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJixsTMACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqr/g//crSOlTqMkA1Px0llLQS1z8rfeUrGohX20cYzi1DiDqDuDx41\r\nCedT9V3M1gMpIUTcb9ziOTQEFgtWkpRsfV0+I7JvSHZ5ig7tRSVU6QUBdX0W\r\nTYHyVFcrVKMF3pYfSVzsleIvzoPBbLt3vqbnxshpnVMk3GcuAermqMD3W8WT\r\n0cSNZa7OFGnxV7+IekaDUNWedna232/pfj/ANJz9j+sTtk/q8E0PfHfptwaF\r\nHraOQ7SU85qzBSNCwq8izeW9aOHjsOpuUapQmwJ9W4rLvjrMr8kvs1BN8mmH\r\nH/tJ+gqoNIShRS0ynRzmAG0Uescvn/Jc2X8gFPkCT9YYKKXH+XRhcX32uWIQ\r\nbwtZ86g/ITN2vh5Pqjn1gMNsbhIkN9ac5/q1aaV9F0k9gpaH5RgHyQ5hhC2t\r\noc/0rF88vwMc34cRe5AVWmd68ZeLzxX5lzoPizyvHfjbnMKxCHYXR7w81CJA\r\neJy4stqRCQW7MaSXe2fadMPerMsc1XCmvRTT0Gc4qgL6xhtnj9OXWHE56PFl\r\nUa4S4YMaTAJF4CxtPCihwDkyz8jR4F6Vptbpu8B4u8IbUo/UXglsZCAm9AkV\r\nKxrKgX3ZCD2o44EOahIF6nqLr/Q3VVc1Sbhkzban+MWv2PeK1BFOWD6r51kE\r\nVsl6UqlfdvsmWdeeYWMO8sr7jLKmZMOkEQs=\r\n=m0hV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":"^14.15.0 || >=16.0.0"},"gitHead":"c567a29d352bc97dfc4e3dc5dd0799fc35db2026","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/5.1.8/node@v16.15.0+arm64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"16.15.0","dependencies":{"p-map":"^4.0.0","@lerna/command":"5.1.8","@lerna/profiler":"5.1.8","@lerna/child-process":"5.1.8","@lerna/filter-options":"5.1.8","@lerna/validation-error":"5.1.8","@lerna/run-topologically":"5.1.8"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_5.1.8_1657193675908_0.3334836201747169","host":"s3://npm-registry-packages"}},"5.2.0":{"name":"@lerna/exec","version":"5.2.0","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@5.2.0","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://lerna.js.org","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"f554551c8b1046be9ded9ce967eac80aabe6acff","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-5.2.0.tgz","fileCount":5,"integrity":"sha512-MyTe+YRIbibkjZ6VYGI0c5In1+lDrPE5fgR1G4cOI8RN7nx6fBi6I3w7rSISRuMf3npVDKLU1/LRW7qjxISdJw==","signatures":[{"sig":"MEUCIDBniHndhVP/I6ZwtY9hL8U9o3yTqzQ1VDjImW57ojLfAiEA5XqQa+x/AjRfe6JODfrL+H8Mu65cGwS1nopeL7X9VpU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13177,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi2tq1ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrhAA//WXf2ICGsY/pHQffE1vj8yaErTh6u6Upkb1RmG/wxTCh0fn9G\r\nlbS8OJYKY8NffQGLD2EipOskTWBQrCmypYI3jUvjoioTC8osf+iEGJGZcg7G\r\nTnTGF9cPz8f+vO6GS04zNCqyCcCw7cS8OvZcTmbhG07dLH8FUiZoeh9t0U7B\r\nFWtYrzSVpztVldLJNpqKX797IRFl2wUj+IETO8s5GLLPsPvyiOgR2G7vXMfC\r\nuVw6SQzuw997DKEsGbUI+IYmQKTUPiRpMBArdsmWidbUvdk+h6n74GLay3Xv\r\nqtgqSXyjcfcRwfqqCRiFWf1F5YVt5IjvCYmkojV4OTe+U3UceEfAJiU8KyIA\r\nRsRM8oUR2J/KS9AXt+Za1JTXVe7zPXnDnzIuq5JWTheDBwsHIOQz9b3YSFop\r\nJoB7Cm5EVyYB8BeuiMs55W0HIE5QCeA7pyh1gdoQK+EXM2+h8Vtv9YATR827\r\n1jmymGbPPSjnmCdKc7JF1MJhEMG+uWWN30MHhE4s3QKFjEAiWiK1h1L+z9Ym\r\nyt6QKP1kr4eV0sYOo1EWQeIaQfFvHc+4uRyGiPBtt733bHDehuiJD/f6ZIcu\r\nSOjHWQgTc814b9T0vVjtJGHohGUR/NipN9C9uW3mocYrlnzaWd20iZRgGItY\r\nvtVC6vy/Ptm/n60H4eXNRLEhqt0CbwUFh58=\r\n=ASS1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":"^14.15.0 || >=16.0.0"},"gitHead":"4f43ba15b0024f87ec04c68522c78bcd1edbc185","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/5.2.0/node@v16.15.0+arm64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"16.15.0","dependencies":{"p-map":"^4.0.0","@lerna/command":"5.2.0","@lerna/profiler":"5.2.0","@lerna/child-process":"5.2.0","@lerna/filter-options":"5.2.0","@lerna/validation-error":"5.2.0","@lerna/run-topologically":"5.2.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_5.2.0_1658510005629_0.15938314016192479","host":"s3://npm-registry-packages"}},"5.3.0":{"name":"@lerna/exec","version":"5.3.0","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@5.3.0","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://lerna.js.org","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"c680261e484c9b3072e3c56368523d3a8cab32f5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-5.3.0.tgz","fileCount":5,"integrity":"sha512-kI/IuF1hbT+pEMZc3v4+w8BLckUIi45ipzOP0bWvXNgSKKuADAU3HLv+ifRXEjob5906C+Zc7K2IVoVS6r1TDg==","signatures":[{"sig":"MEUCIEnWYjZVhZ2je1JPx7YSicbHtJgHrX5J75xG5Xy94uqSAiEAhvfF7i+o4cb5exCv0VDyDskQ/+LntUPhODkmOnkBvhw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13177,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi4T2AACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoOcQ//TURkngRGBHx21Fp+cuPS3X334Tk6w0T2mcsTrQrAu3Hy2s7C\r\n6YEDQ687IECUN/BT+rJFB/7NLZpWm+t+x68d71guS/bP2qxxf0Zd5hIdiYS0\r\nemf9IGBL3CTsq+6RnJfMQR2TClpHFLU/tWkA+KJMU2qnT+BkWGRV4NsNxscX\r\nhCtPpwcosdhsHnUQzR/sCiHsK2I0EkNbPjfKD50lM3PsY0bBxbNYzFLkc6I7\r\nDdNtnb9l3PA8BN6E6v70WBkFaAr9rGb2aZLoDU1Hhv3Q7J2L5bJfBWphcoHG\r\nMNiMzjsHretVXCwpgpR2FAc787OkVU06iNQNLv/4uknAC7xN2G8yoMAJgIGe\r\n8CWh99dcVTgBTq35t7yGITXrnlgMWB6t5J9W81TOQkDSzWEzDoupc1RXRawj\r\nTHST4TAF9rjLJ83LQI0km4Mizd6T639T2cW+5+aDFdoudeTtN4aINTRefMCa\r\nNAvZlc9Jq59uvSl6myfAJtPqNIf+du/GeQ6d+ZGiJ8/2wBiGZ/+nlFTR6yZ+\r\nwZZoMZWI9+yskdPCCNEvUTsRVnaEQJhvG/jp117iIdUVsfRuAM9OzuH4IBkQ\r\nKecgIEQoQhnXZG8mwQaR3EZU6dI9uwTcp5FkQBBdG8nl/JO9qC+D4auZE0k0\r\nY+aw4H3NqEzW9ox42BjrcybK7rWLPyysBXw=\r\n=NPdm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":"^14.15.0 || >=16.0.0"},"gitHead":"535afac9b27892e8e5354aae950338a7187356f2","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/5.3.0/node@v16.15.0+arm64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"16.15.0","dependencies":{"p-map":"^4.0.0","@lerna/command":"5.3.0","@lerna/profiler":"5.3.0","@lerna/child-process":"5.3.0","@lerna/filter-options":"5.3.0","@lerna/validation-error":"5.3.0","@lerna/run-topologically":"5.3.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_5.3.0_1658928512494_0.15438898687388924","host":"s3://npm-registry-packages"}},"5.4.0":{"name":"@lerna/exec","version":"5.4.0","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@5.4.0","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://lerna.js.org","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"cee3bb7acaaee5a42aecff0bf6378a60aac09425","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-5.4.0.tgz","fileCount":5,"integrity":"sha512-hgAR5oDMVJUuqN8Fg04ibnzC4cj4YZzIGOfSjYSYjuC/zE53fOSRwEdVDKz3+Yxlnqrz4XyxbOnOlYTFgk6DaA==","signatures":[{"sig":"MEYCIQCWibL0dzX7hbdD23it2LduEpAft3IMDyrSItoJOJFBhAIhANQjyQOPC1Wh3Z8kMyxPqIib2rCY0d9R0LFBmacmVqFe","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13177,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi8SNAACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmotMA//YcSwLAF0kb3WjlQXtwFq94C/pGhu+DDsqxizLld8PR9t/qi7\r\n+xAZ680lLBqcq4g52ZEOXyh83xRnV9KOIGnVX8z6Mt0hYerB5HdfbYZe/+p3\r\nWkOvK82cTxkeN/N89eKRDKZ3S58p1ih1sKNgcKcy+ndD2X4XXEovx8rT52df\r\ngoxH2DuMHMeKGpsSG+naY6+LYxIMGUD3SKQK8PkYd7s2GA1qxLSy4UnsW/G2\r\nsFWr6Jj3IWqqI4/086iQAlnvehowUQ+OofXqzdAh0Qgs40MJLR+lBwsku/bB\r\nZRCeLs1M2Ly23AvIstr9mf6h9/h4+oD8k8MiQS9g8ak7v/bGcACUkK/LzWEN\r\nyPWZkwsDJ3bfwIMtZK0nKkP8WAMHXKrC3RFZPIED1lxqwHWpwx70eFYXDy1q\r\n672BVnLNqWy7xSeF0oK6sKs0suJn0hUWf4cXFQpuWxmJ7vIhVJkSymBfdBho\r\n/lRiDjV1FflHmTs73Dl8M/jzcuzSSCzk/743P0NCTPqs8mxd/tOvecTuYO5q\r\nzfQNyrd8NK0iO6eqm5mAMc9YlyNZMig9t5+/rmajog/1MhmvSX1ZDrFm2aqN\r\nHlPbKD6JbzpmP/5uqDuRovrxuBdPyZMTFOcYLfqqlFfZNcsfrX+4QavA0JTV\r\nkSLsy/2aiNLJYR8F4zwIz1PVhtLC3b/0gAw=\r\n=5pAq\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":"^14.15.0 || >=16.0.0"},"gitHead":"cf9d63f662a04dcd16910dba008102d030a1c60d","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/5.4.0/node@v16.15.0+arm64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"16.15.0","dependencies":{"p-map":"^4.0.0","@lerna/command":"5.4.0","@lerna/profiler":"5.4.0","@lerna/child-process":"5.4.0","@lerna/filter-options":"5.4.0","@lerna/validation-error":"5.4.0","@lerna/run-topologically":"5.4.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_5.4.0_1659970368775_0.6382202897599116","host":"s3://npm-registry-packages"}},"5.4.1":{"name":"@lerna/exec","version":"5.4.1","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@5.4.1","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://lerna.js.org","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"7b9d185c814672a7390b645b3f8e289d4ec8b612","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-5.4.1.tgz","fileCount":5,"integrity":"sha512-Z1JqphjzAXXgonhfLEBAPT5P5HKJ4u6e6P8hxx/uS6mivImdu5uZkJk9dT2zN75dGeA6D54ctVRS+gAtMiXNEw==","signatures":[{"sig":"MEUCIEdn5OgXzlDJePqu3HH9qRjgk74xirfmqo96h6S5oWGrAiEA3AnFRonG3V6yo+ERTa/LwpgLDc1ttWwYbKXVznBHVzA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13177,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi9lXrACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrDYQ/+LjMT7LFnI7YW2VsiEeCajDFP8n0T5QMpBWRmQlDPpn+OVl7K\r\n/1u97Qg3+hB5x02agAff1+w5Tg3mt8DuHLc9uJP4NAzmbcVBi8Dnghkje5wt\r\nbjCJTDQJ8nDQYIevDZymsgK+fBUVc1wmNHVjc3UKhKqTs50xvutuvmHWYqr7\r\nedHDrU9jvspRbEWdJB5Xbe34MeMg8OlXtcCfOH6WJ+RLwuZK+/sK5Pc3G/QO\r\nALo2eCKZ3huvdT0ufmOkNh2uRM7uon0XP8iwlyYpLo00zLI+zkRKvs+mBSYe\r\nJQVzwqRMXdFNbytm+Q4ggZ5DPwH+2Ul5Exqg+Ivs6mohFp2xTDNhZY5OdJ1k\r\nroQrN25p8+1ivj0Fo1RvMxi77ZyINnCw8yDMT6AW7XJkqUTzcWAjKXS6OQ3A\r\nTjAJ07zlKfiOgvvf/zq78+qc6rGOb1+bspkk79q7S0+jVF8+x2P9xfT7BPjl\r\nUr2yKP0icsLN60m+E8euXxgBKEb66A5cnkFIPsl6yfMbJjCPasRy0xlFD5Ss\r\nh0PrFOByuOOOU2ytN38DwwtvSl2Vh3I2Vph2etiyFE3Ula3qVbD1vgbj88UE\r\ngm7kiJUFUxg2JZRC2yXjM+hJeMKC2LUNjzWCuKdyrtoKG+1+lscUI/ELH4Ns\r\ndu3Oc4ZRMJRJwOhtHaabMbKppzZXsUO0kKw=\r\n=hM4d\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":"^14.15.0 || >=16.0.0"},"gitHead":"888d21d673edb6c25e076cb1e5fc7aeb07b40520","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/5.4.1/node@v16.15.0+arm64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"16.15.0","dependencies":{"p-map":"^4.0.0","@lerna/command":"5.4.1","@lerna/profiler":"5.4.1","@lerna/child-process":"5.4.1","@lerna/filter-options":"5.4.1","@lerna/validation-error":"5.4.1","@lerna/run-topologically":"5.4.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_5.4.1_1660311019171_0.6127290037803863","host":"s3://npm-registry-packages"}},"5.4.2":{"name":"@lerna/exec","version":"5.4.2","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@5.4.2","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://lerna.js.org","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"8edf6ce79513ea9b5f73d07e78cc9b2a0a390cb2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-5.4.2.tgz","fileCount":5,"integrity":"sha512-tnucfUP/JKbiQ71XssPyjc6ysxwzWy5Munlv9Zt919czXkRejjjUkvnUPjdaBLALzvSLF2KYyMo6aS7WMetDaw==","signatures":[{"sig":"MEQCIGR2YVBZpeFGVDy3Rv1K4C0sT3nSEg+20HgGmc5f/XOJAiBgelRpn0cPuYFHbJYtpn9Cy9vS8PLOnWqTrqDhveRBcg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13177,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi+QHZACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqygg//b/T7CU6O0wM0TLZ91F5JoWwvWVaoAatGaUQ6oVP8B1aHq/ig\r\ncWGCiu9ViQ2yE83qvBS3d90Pt2b16RMP9az8Szuviyn3LRGGCWbpRpHXgd5p\r\ntRQNknfoJEsgqaSZCf7RcI6ypwCxaaCyW7VojF4s+CkZ20uSXCYtJfEplgRD\r\n7+idV1HLdYyjpCcmeyuspC9qNTZ9A/euuGJiC6HX7td1CpfyGJfOdmaVw6Yf\r\n/v/XKnMQr6OVaUtTq9s4vgDEBSR3PJxANvtIa1FclkV3Apte/Rz08KdYezN2\r\nbQHGIqvO/HGgh3I9VjuDScbjBl3e4ETsepaWSOGLClXiA5ZE24pTXnff9xll\r\nuJpOt9HfyxbLeMqduJrRqaABjGvSCL1ixzUs5ZmoX0+1fWAPuoX4kfac2Hed\r\ngBTpup7QOsgEVh0LeC6GR0HhESslGBMdT0+3E2Qd39BzB7sv/ExBx1jXVD48\r\nACA8+6YtAojHzMp/vSy0a/orr77o7Pri1yAZpLjbznfUQY8CwuoUb0+gFSBc\r\nZUkiyf+rsGckidKwW0Uqh42zWCuhWCwgZz5u69VhWTEaW8LZugzM3OkW2zeb\r\ncM/KH6VHoEwd6aDBPTDiWqFc8xPesVe4l7cDb1KY6wP+frFbEsbYLToL4NM9\r\nsotx4WvGE0pCNVDgL2XUHmheKoKrYlG1RYU=\r\n=k/AW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":"^14.15.0 || >=16.0.0"},"gitHead":"c838ca868b983efdf382d7c145149b14e3252726","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/5.4.2/node@v16.15.0+arm64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"16.15.0","dependencies":{"p-map":"^4.0.0","@lerna/command":"5.4.2","@lerna/profiler":"5.4.2","@lerna/child-process":"5.4.2","@lerna/filter-options":"5.4.2","@lerna/validation-error":"5.4.2","@lerna/run-topologically":"5.4.2"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_5.4.2_1660486105430_0.11113319672755817","host":"s3://npm-registry-packages"}},"5.4.3":{"name":"@lerna/exec","version":"5.4.3","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@5.4.3","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://lerna.js.org","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"85427f565fda9dcb25f76428d30baf0da007be5f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-5.4.3.tgz","fileCount":5,"integrity":"sha512-BLrva/KV6JWTV+7h7h+NQDsxpz0z1Nh99BUqqvZDzGIKMey4c1fo+CQGac77TsAophnv0ieFgHkSmrC6NXJa9g==","signatures":[{"sig":"MEYCIQDiAgNqXozLhI1NjeE1zghpCcAX/Cr8bCQfrHmVv1A3dgIhAJ6tfFmWjSkQYnbxJ+ks+7insGffpeh5VFV89Cw38BOl","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13177,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi++P8ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqlUQ/+KNF+WNgasJ9mZmYPxTY0QjAQwSp3hXSqstVEG/6bn9suqFlg\r\nXmpg821frb+9ezw52CH1gF6emLLHwTGqsjwHyxKUebMxLV85fjZ0HpPBEtlE\r\ngOLG4ySbixpt9P65MuXu0lXTpdwcuoOMXwWmUTcxFRpAyShp1aOl2qL+NY6g\r\nJtKbn082xlXyJWrxDlAzD60cJE3lFEk3QQCxMkPVQrz57/DDc1aQIvLB8fpX\r\nT6zkVY0+LEdONNoopQJAC6C7VtDXKF2amLHg2VJcIGATZ/Y5nHG7VHR27Bkn\r\nivGBlWnBXdIqw5mH0+uZuEovaiSo2wPneatKVL9zb4i/QDM2nABpZWY+SZgf\r\nts+nQK642OEukentQuFAGZo9c3dGW+KvpVsOpKMu2Xt1Qv7YGizBMjo71uqV\r\nNx+ksmaZa6+tJWuRz//zfGsSxFqpWwuU9ScT7fHQIXXv3/S+fQyrwPX8tw1i\r\nM1z4umhLpo8jWkS4KCkjRIts9YTpgzl7egkrHNmmQof1w3ORDdKcLq1aE7wu\r\nkN2B10k3H2SVsCKmMp0D2j926XZK4A5KJ5y8PGY4O6AiFxUxqJXNvnoGzW5u\r\nPKLUTmqb/yr7973Z2CagazjjTdNieDlEjpXl/woHKtXrhzGOxU1ZOnB8vQRR\r\nAG4hCMixG0hEokFXrgpxgMp50jElEmxTU8M=\r\n=fWH6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":"^14.15.0 || >=16.0.0"},"gitHead":"225a451071a741179c9173082822bc9918a2933e","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/5.4.3/node@v16.15.0+arm64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"16.15.0","dependencies":{"p-map":"^4.0.0","@lerna/command":"5.4.3","@lerna/profiler":"5.4.3","@lerna/child-process":"5.4.3","@lerna/filter-options":"5.4.3","@lerna/validation-error":"5.4.3","@lerna/run-topologically":"5.4.3"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_5.4.3_1660675068810_0.4759801160192827","host":"s3://npm-registry-packages"}},"5.5.0":{"name":"@lerna/exec","version":"5.5.0","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@5.5.0","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://lerna.js.org","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"bf97d67e772f326e58a3f3d259e77c61ca508a72","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-5.5.0.tgz","fileCount":5,"integrity":"sha512-4asvrCYFGgnEbXtSiKJLDd6DShUl7FIRRCWx7JXJfa0B6sg00cB9Cg3JTp+F+cQWCOspRkzqRetqu57o6wRpXg==","signatures":[{"sig":"MEYCIQDaEYoLPElFV8W+37JqRoGgg2C13BL/0NDFOU72tkE/UgIhAI9qLyxCd7poiXRKoufl2TOMklsSASykihNLXTTxdvsu","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13177,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjD78zACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoxUA//W6h68H8+Oe2pbOJd5uwkGcTdsNHzwZmTPLbTFGx5UMQ9iY7q\r\nCUnpuukPBtEA3VQ3h4n4M8DzNKcgFYz1mi4cGSRzRxgWZ945a/dUgfOWKpyc\r\nDFPxUqXrQPTGoHYVoY8t/tD0bs0KGg8RaOfe2kZtY1RZI6x/3aBR4Nv4LNtq\r\nQmzQOk8blLLsd0DYYtD0aNNSSmZykI+WjPBO7jAxVUXf9pEsZRWAAkjH150T\r\nHzVLnHJTg8ddXMZZhBNGhn9iNPFO9jKocNOfsUFz2ofZz9CUMkcziU1hkPLF\r\nFyrh+bJ58Ke9f6ZpRaBXVjzKwrKYsZqEYLEygdHZiEpULtW/Ho9Kb/X47a+K\r\nxPnf0uZPHhqpKcTveBjksoCUl1Swbr0bhkwiHegHpoz8VKmSt/1ZKrQPZsnm\r\nrt9P5D25jO+XfM/MHOYLvDQSkhjThwhrz+/e8v9LcX3xM6AL7zv0IdbvWbAY\r\nEifW4fHvUr28kQcSYUrF9oRYtrdvshCbBXNMJB6YqMKcCfsYaPWE1qD0ujSv\r\nTaZUQasRt8U2KRlzKmIb71+4bK+847fj58OnBW9i8xGqbKVsYflbhap+Kia8\r\nD4lFeuZPSDJep5CFIq4yhzi+LTgqXc35EKjCn8m9CVbV+yRpgJliFgjRAcWy\r\njbZR/apiRHCBvAQwOBt5TC2ekReOiKqzmi8=\r\n=M3Bz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":"^14.15.0 || >=16.0.0"},"gitHead":"bc3eb9911070325d7ceb310bc3e89e3777150560","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/5.5.0/node@v16.15.0+arm64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"16.15.0","dependencies":{"p-map":"^4.0.0","@lerna/command":"5.5.0","@lerna/profiler":"5.5.0","@lerna/child-process":"5.5.0","@lerna/filter-options":"5.5.0","@lerna/validation-error":"5.5.0","@lerna/run-topologically":"5.5.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_5.5.0_1661976371412_0.8881084955579455","host":"s3://npm-registry-packages"}},"5.5.1":{"name":"@lerna/exec","version":"5.5.1","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@5.5.1","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://lerna.js.org","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"a9ff624177e0dc3fb177cac058350aaabbdd0b65","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-5.5.1.tgz","fileCount":5,"integrity":"sha512-eip4MlIYkbxibIoV0ANjKdf9CSAER87C2zGY+GwHZKUSOD0I3xfhbPTkJozHBE3aqez6dR0pebi6cpNWvzEdIg==","signatures":[{"sig":"MEQCIB16VORn8mLV2fpNTmMTq27J1cjEG9q/THPPrD2o6wA2AiAUy55xla2YXxVrhcj/nfl5L0X/tSAfEZcwIjL3eTYahA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13177,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjG1A0ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoMpA/+Mjj0TnpxdLRMn3WZP8gR/wrfoKd8b4gNQWpLyZY2VqPxFvK4\r\nRVj/uDDLZqFGdxBkf4BRPlcYD3Ztl46sp8hMQrhlbrPTv1bbqjdWNfPsaZRW\r\nxe5s9M0bJvYWwF7HzU1kYaAAHUxlhu+08Mufn8cHykEeHg1B4HqSLWs3etzV\r\nnIqG1Om3ihqdf9BX1G6+erpsRLgkWONykZiw7ocgkW+fScDsAbhw/n2TZRA0\r\nyKUMayjB/M0EEp9FywXqviARf2kORtaJZmo67ZYSHejF2qBP4YitzDKNZuHF\r\nSo72Ff4riizWivMRSSKv6NlVo+dri7D8UiqgUjeZIT6oCI4rFob4OX+dqSmE\r\nk0Z2+q47e0sgQlbkp9JLkDO8Z27Ii2+P7Mf6WuvcQ3Utnkqx6KcXyw64ZPys\r\nOYrTC+rsEVymfyblSIk11JR3hOPoijFr8ydMDTWPZO9pvcaERJEl1dOZKyFL\r\n5RXKBmNFIVaMyYslWrhnIITkJdUTc87unc81np8edfT0kJoEOfZnq1/x4xUV\r\nSZIlXX2jlBS90h6Dfu/dIXLhMliqiPri3f2vcIGV7+cY9YfLnb4WuXHMYo3l\r\n7jR3JtN6iBluDYgRvT2/ogYnGMT03mObZJiEMwLvSTpASZCu5+/VBh09JQP9\r\nWPvSpgZ8Hd3QBHDedSGeg6+JKgxVafp4Zrk=\r\n=Pia4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":"^14.15.0 || >=16.0.0"},"gitHead":"9f119b009ef92f0a938c38e15d4a90007502c684","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/5.5.1/node@v16.15.0+arm64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"16.15.0","dependencies":{"p-map":"^4.0.0","@lerna/command":"5.5.1","@lerna/profiler":"5.5.1","@lerna/child-process":"5.5.1","@lerna/filter-options":"5.5.1","@lerna/validation-error":"5.5.1","@lerna/run-topologically":"5.5.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_5.5.1_1662734388617_0.4612745489270078","host":"s3://npm-registry-packages"}},"5.5.2":{"name":"@lerna/exec","version":"5.5.2","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@5.5.2","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://lerna.js.org","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"70f64ec8c801905f9af30f1a6b955aa1160e142e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-5.5.2.tgz","fileCount":5,"integrity":"sha512-hwEIxSp3Gor5pMZp7jMrQ7qcfzyJOI5Zegj9K72M5KKRYSXI1uFxexZzN2ZJCso/rHg9H4TCa9P2wjmoo8KPag==","signatures":[{"sig":"MEMCHynvhiy9DqyQGIs5/GljMaSv7du2L3CIrs5sNxolLMsCIAEAGuDuRs0NPl118OxP9wkCjx5ndpAIHCR2QQGy1lZY","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13177,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjKiLaACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmpkag/8CBx70OGM4sgTFz8taBQ0YCB74K0EDO5r49NGH8OJy9t3USx6\r\nw+Mn6HZgKOmsajxgT0kA8T1gRpKe7pJ7pjDXV0TK9zXk3P4iP6wVM8Y/rhFk\r\nxKJa0GDsrBrjHRBMtiRIf5MAfs4RcUYo1ZIZ8VqamrfCj7kkhAyDQhXVG0DS\r\nPYeomBkJU1fNwbdxgAquwga+Oy1BjorDVhcT7wn8rLEQKb4OvDIm5zFIQJ8d\r\n2JnS+Lab3AoMwG6rNo7J+lVXzklh38792IUj6cMqAgLXhx6jDS/DDwcpbM7g\r\n94ZpayIeYE5q+sM9YZQQMOEmvqQleKkMRjc9aTqG24+9e7/0oAuLtots8xy7\r\nfJmBp1uYrD2E5kCKzWmiVYFfe+GQ+5a+VmjsIGIn0YCi714docrKM80D/xS4\r\nR96vCAONoHcvmaBVXHvT8Io9MhEDRvmYdlqf88ciw/+cAB8v5fB49wnILqR/\r\nZlb4jL2PGgdD007/w6ojwbDsqrBCLDcBceI/QyZi2LYngB+TgbPDpvdGRCKN\r\n9JuL1GyRRHAfLl2+chTi0pcyLzyWaDVcIyHYHQudx9eROcr0L4gjsL4X8GcK\r\nbBYEUG+7KT//tTYDjCkUdZFzU0r/63fsRiBXX0GM0w/agazp6ouNKs7+YApy\r\n7nkfDIC/V4qkGWlBWaCPPGaFCNaF+DZwtQU=\r\n=ERo+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","readme":"# `@lerna/exec`\n\n> Execute an arbitrary command in each package\n\nInstall [lerna](https://www.npmjs.com/package/lerna) for access to the `lerna` CLI.\n\n## Usage\n\n```sh\n$ lerna exec -- <command> [..args] # runs the command in all packages\n$ lerna exec -- rm -rf ./node_modules\n$ lerna exec -- protractor conf.js\n```\n\nRun an arbitrary command in each package.\nA double-dash (`--`) is necessary to pass dashed flags to the spawned command, but is not necessary when all the arguments are positional.\n\nThe name of the current package is available through the environment variable `LERNA_PACKAGE_NAME`:\n\n```sh\n$ lerna exec -- npm view \\$LERNA_PACKAGE_NAME\n```\n\nYou may also run a script located in the root dir, in a complicated dir structure through the environment variable `LERNA_ROOT_PATH`:\n\n```sh\n$ lerna exec -- node \\$LERNA_ROOT_PATH/scripts/some-script.js\n```\n\n## Options\n\n`lerna exec` accepts all [filter flags](https://www.npmjs.com/package/@lerna/filter-options).\n\n```sh\n$ lerna exec --scope my-component -- ls -la\n```\n\n> The commands are spawned in parallel, using the concurrency given (except with `--parallel`).\n> The output is piped through, so not deterministic.\n> If you want to run the command in one package after another, use it like this:\n\n```sh\n$ lerna exec --concurrency 1 -- ls -la\n```\n\n### `--stream`\n\nStream output from child processes immediately, prefixed with the originating\npackage name. This allows output from different packages to be interleaved.\n\n```sh\n$ lerna exec --stream -- babel src -d lib\n```\n\n### `--parallel`\n\nSimilar to `--stream`, but completely disregards concurrency and topological sorting, running a given command or script immediately in all matching packages with prefixed streaming output. This is the preferred flag for long-running processes such as `babel src -d lib -w` run over many packages.\n\n```sh\n$ lerna exec --parallel -- babel src -d lib -w\n```\n\n> **Note:** It is advised to constrain the scope of this command when using\n> the `--parallel` flag, as spawning dozens of subprocesses may be\n> harmful to your shell's equanimity (or maximum file descriptor limit,\n> for example). YMMV\n\n### `--no-bail`\n\n```sh\n# Run a command, ignoring non-zero (error) exit codes\n$ lerna exec --no-bail <command>\n```\n\nBy default, `lerna exec` will exit with an error if _any_ execution returns a non-zero exit code.\nPass `--no-bail` to disable this behavior, executing in _all_ packages regardless of exit code.\n\n### `--no-prefix`\n\nDisable package name prefixing when output is streaming (`--stream` _or_ `--parallel`).\nThis option can be useful when piping results to other processes, such as editor plugins.\n\n### `--profile`\n\nProfiles the command executions and produces a performance profile which can be analyzed using DevTools in a\nChromium-based browser (direct url: `devtools://devtools/bundled/devtools_app.html`). The profile shows a timeline of\nthe command executions where each execution is assigned to an open slot. The number of slots is determined by the\n`--concurrency` option and the number of open slots is determined by `--concurrency` minus the number of ongoing\noperations. The end result is a visualization of the parallel execution of your commands.\n\nThe default location of the performance profile output is at the root of your project.\n\n```sh\n$ lerna exec --profile -- <command>\n```\n\n> **Note:** Lerna will only profile when topological sorting is enabled (i.e. without `--parallel` and `--no-sort`).\n\n### `--profile-location <location>`\n\nYou can provide a custom location for the performance profile output. The path provided will be resolved relative to the current working directory.\n\n```sh\n$ lerna exec --profile --profile-location=logs/profile/ -- <command>\n```\n","engines":{"node":"^14.15.0 || >=16.0.0"},"gitHead":"6a0c3fb1cb0aad0f79e6110806af9f54058f5be0","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/5.5.2/node@v16.15.0+arm64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"16.15.0","dependencies":{"p-map":"^4.0.0","@lerna/command":"5.5.2","@lerna/profiler":"5.5.2","@lerna/child-process":"5.5.2","@lerna/filter-options":"5.5.2","@lerna/validation-error":"5.5.2","@lerna/run-topologically":"5.5.2"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/exec_5.5.2_1663705818279_0.8808584367490355","host":"s3://npm-registry-packages"}},"5.5.3":{"name":"@lerna/exec","version":"5.5.3","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@5.5.3","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://lerna.js.org","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"2fa52344e7c3dff222aa6ab5a412e8301af76a5e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-5.5.3.tgz","fileCount":4,"integrity":"sha512-NH+RbWpbxVDw0BVlU1ScAE68nMYftNKprUpiKvqi/FenA8Y6xudfBBQH8CzoT6oZV+p9sidSv2S6Pgh9Mo0seQ==","signatures":[{"sig":"MEQCIDSq+4k+9/j5kE7owP5vt5t90WnJJD6emWHnHLR8K0mcAiBMpcnD44kyZy1++0FQLah7RKb4C/piVwZ91cjOlSy/fQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12180,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjNFALACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqBDRAAhsjWc9P4DoUgi48ejFCB1KVEkSetiWRbaD1aLfAT4zdYzIK+\r\n7R/ykDFlFXQuQ86sEbMlAPWz8aPcvEj5kK9Ws4KMXpM1xuGoqZ30yyslYIr0\r\nTmiD/A0OeE5HaBfrSMi/tR5cDahCU4r2v4xepahmuscViWFraRL8L3MpKIrR\r\nNTkAlxGMBomE0MTAoSRr//B4U+WopN+lqgZZ58ZaOOE64NkzBjy3XCDksMFt\r\nPHWdB2IsQ55QfBDgVj8oApeCGvmBXXk74Ks8JpIOzzAPE0jGcoLSwlfs00HQ\r\nAcNAu4Zfl62HRX4MpT8jjF0ynjZq3G+Oz8lwmaOWrGwcjUYbnFvhPB5he/t2\r\nkPvaG9kpJWMoZjqrWk2KL0NXTgHNZkuo3k7iXLRHEoZKy3z2KAC5bPUnm0Ht\r\n/xG8ueRVpf1pWmMDcr+6Fq5FfaTGVqqazcupBX437hUEiOVGjAO0CqDdoTY/\r\nEZB42MmnrY+NGybn61WmHuJ2i/Jjgh/Sgh66ocQRYkrlTy2t/UIwkN65+U/J\r\nlXGiv0fjU0EnbJQltvqKWaZxygrC7qJKHj6iwbG1gssbScsf4eypWj8BBEAE\r\n3zpS2dJqsUQOg92oAmRDVHB2WSg5F8+tTHRAuAuwuSfdwjWpiOPi/SFtmxlu\r\nz8a7P25M03Kty5Dlm7gpyevvvdZeIRsi9J0=\r\n=CoAq\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":"^14.15.0 || >=16.0.0"},"gitHead":"32251c0068a2ef924fe015b837208235a7ecbb81","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"8.11.0","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"16.15.1","dependencies":{"p-map":"^4.0.0","@lerna/command":"file:../../core/command","@lerna/profiler":"file:../../utils/profiler","@lerna/child-process":"file:../../core/child-process","@lerna/filter-options":"file:../../core/filter-options","@lerna/validation-error":"file:../../core/validation-error","@lerna/run-topologically":"file:../../utils/run-topologically"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_5.5.3_1664372747238_0.8704764383766963","host":"s3://npm-registry-packages"}},"5.5.4":{"name":"@lerna/exec","version":"5.5.4","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@5.5.4","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://lerna.js.org","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"7ff09f9c786bf66ade7bf4823f60a4feab3b267c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-5.5.4.tgz","fileCount":5,"integrity":"sha512-o1SQ+6/U6L8hih6+wAgjyOhqo2CKzMcW6YWLs5erRY9E6VCEc2kX7SW3223ehsAhUIPfG7n+KYPmuZbWvTpbGQ==","signatures":[{"sig":"MEUCIQC9F1SITDNtWGzRippMAVHSi8oYuRny/I1k+yuwTjujIgIgExyfrj3vBvGgP4Sipw8f+xkcvujTfjb+xtmLSKDc9oY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13177,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjNFCVACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoYKA/8CqwgIuz4+Wt8i3BbgkHEEvNpNVNpnWVx8xcd6JwCAM7xBNkV\r\n5rcJe70UXazJudnqR9dLFOZsUHPKoB2S+dBqlBx4A5jWdmL5B6uigMG4IVyX\r\nlvN+3D2yQ1CdZBvvQNgNFc8N9SGBR+cuXnmG4r3yaHgUzQ/+VPxHZk06unmU\r\nqT07lPAUyzlcynn+B6ILxiYOWcBYJ4Z5odKZqrCBj+NPHA2R1sBCuURgKHH6\r\nKiDYOnVljzpQbhHI3oAbrjoKwVyTjW4lp/XKUDW56Vk9l/ARKUyP2ZD3yxEA\r\nC7CFd+330x7RvjKztq55j6NKpIzvHnFg+4Y4TEGZLlQbsAnnZ9bZ1XXJUulX\r\nFaZBtMnyWXUknkelAxUvAds/Hj1U+TVZPIeqOiTpNPT41T0pcUVoBm12pBbo\r\nPjBk7trYGGhrAo08t1EpaZf9+Ct+1qagElJKzyU8lB/OS5oL3ongj4cQ0cxq\r\nVImJQxUrXlLWumnoA8DgcXEUYjzKngvtYSXWUNe+wcWrXuQbF8cUDZMsh7ym\r\ni1TCue5ky4eBXzy15gsDVvb7xIiJ7GCHrmyjz4ydyHMZ+nd2BedS/dyJy3ds\r\n7UBDsL9lTPX1z9aWqdlJRs/jpU4fOJe2pM3o7YDKUsUZyHPobRRctvyIu7/G\r\nOL5mnwmLahf+Yz0GF+MGlSC0DUo8HwL7MpM=\r\n=Xhmr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":"^14.15.0 || >=16.0.0"},"gitHead":"f65ef552cb6c8299b3c55aaded78a037fea10294","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/5.5.4/node@v16.15.0+arm64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"16.15.0","dependencies":{"p-map":"^4.0.0","@lerna/command":"5.5.4","@lerna/profiler":"5.5.4","@lerna/child-process":"5.5.4","@lerna/filter-options":"5.5.4","@lerna/validation-error":"5.5.4","@lerna/run-topologically":"5.5.4"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_5.5.4_1664372885601_0.0270566949133626","host":"s3://npm-registry-packages"}},"5.6.0":{"name":"@lerna/exec","version":"5.6.0","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@5.6.0","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://lerna.js.org","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"f7ad94918d82f68576422a4ff996cbe8fc965395","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-5.6.0.tgz","fileCount":5,"integrity":"sha512-omwl+6YAhb2afP6Cn9y7GX/Fe3MTrA6/QAGVyV76joIrO1LBOEQ45j7HrM5wvfHvx5LpEBOp3myAmS8bhPC0wg==","signatures":[{"sig":"MEUCIHUht/ofAtKR+wVTdcX5H3CHOd8AD5JiEOqQPDY0co0mAiEA2QwK862YwtZWx4i0YG5oaNSuWwmpdGMsMcz7uq3X0Hg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13177,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjNhSAACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpEghAAoe6pgGyCGVBhPJMNMPFBoRXTABgnJ3gi5J0qJF2EoHr6HWRC\r\nSSGc7jB2GDmvXeg8dKlk+u9n3J2q82gWDT8q7Z+8ZKNP5hxg1kutpaF55I1z\r\nkkDNE5PQkpEg8bJyr9oa+FyygHOCvXJirW0V7qG7+N+7FV48O5kMMEOsRh6f\r\nkjbP6MyH3S70VHzit04TjFSYsVsmZWto1XrRbw1xb36CdsMZpY0p0ffH5ngB\r\nBXCr9t7wmSulPPHYx1AWdL5zhQwPAxPZeTYyfTIGSwhRZAQKwaqyQ3U35dQd\r\nDkXTTJ9OJ8B2dRQphnM7Je3ajq2n/T48pilX9coYv0L1E1mScT31YInJbAMa\r\nMiKxTppVmcVO5SFvSxpr1OmDOKkqzDaVcKGEG0BtMU8FayyopTLVfilYJZ+f\r\nNAVraQg0lv2RFZeYUt95RH7kdbWn5eHmKn6Gq2/nmSSLIwf8mYytcAYq7oSk\r\n3WWhM0kTepsKA+jAOhfglJsy0BkRXjBjPaHWBeUWz5sIQjH3JStz6EI3gCDS\r\npD0TKagrzxFTray5/9qtE6rek3Pp2KMRigQ1ry/iLwVbzatFc+ahl1qkqybG\r\nSuWLX4SHh7vSuL3ifGKF6EXYvg+myIvsPJ7lBmvIX53TCMn0mE0pEPS8HSYt\r\nRZSN5ybD8Z1IQS+gfv55el6hFP2GarV8LEU=\r\n=n/Gf\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":"^14.15.0 || >=16.0.0"},"gitHead":"07271fe0347052a1505e81c6f08a4f12c4b70c7a","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/5.6.0/node@v16.15.0+arm64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"16.15.0","dependencies":{"p-map":"^4.0.0","@lerna/command":"5.6.0","@lerna/profiler":"5.6.0","@lerna/child-process":"5.6.0","@lerna/filter-options":"5.6.0","@lerna/validation-error":"5.6.0","@lerna/run-topologically":"5.6.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_5.6.0_1664488576198_0.23747117115130112","host":"s3://npm-registry-packages"}},"5.6.1":{"name":"@lerna/exec","version":"5.6.1","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@5.6.1","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://lerna.js.org","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"a00bbca110c80054b15213474cac87d22083f443","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-5.6.1.tgz","fileCount":5,"integrity":"sha512-nNZAm6yhbHG59xMOCnJjYjQRtjqZqwjSiWakWz8upj+2HBd2Z0eMnQvrX1j9GhurhgHzhG7AM7FLnJHyh1b3Tw==","signatures":[{"sig":"MEQCIGOLBhGyhNCfr52QHaQfbCr8B5Xht80WjHKNa7p+n2eDAiAoSq12KM0p7Ac+ViXT6Zl+MekP6MYhaph3J9avu6hwnA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13177,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjNvxMACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo2eQ//X/VytEGxsFNnLdRLa8+TG0h7mg9B4qly8zjBuRjPgewb29fC\r\nU/TOqYVYeduyg9JwNyrM28f3dL8iFY1NLZ6HZlkBpvk/80QefhL2/HXMhuPM\r\nhbBzyFQOGlYgItc29CPsMkcvrbkLuaTeRknaSowILf0NS/ivsBflc4RVmCl3\r\nr9F8bWbjLD6nxTpE23avOUNRujxs3RaqP2nXeMfzVQM9NTpGCsKaZygd5XtW\r\ndEDLvsegXIZg9SubOiESJ1JHj5Zn8L8AQMz64Y6mhd/i+WUlaI12fS7tR0MA\r\nWB25GFZ0/WCTCeUIXIQIi3Yi7zAHN9qI4tyoPby3IKP5U4+uCpeIgXMUJ8Jx\r\nnLuJ+Nel1lkvszTjlDMPdRmIGLc6+eVi4U7Ge9WqLDu8RC8Nh+KcW38SK5YR\r\n6lE03QR/r0f8eiSzGcZZUQQzB/MDieH0Uc5lLQx/IqGxeeTUaUMfjOdNFFaO\r\ni6aD8bzS8aRBAcNKQpqqjgSwwkTJmM+2iTOLuy0FK1+pZPPoC0r+zXsdYfu6\r\nPHlKkllyTudzKzK8Kux8v6bEKGfKKYfsstHDIJ6HOVFEHapkvEmWcL6h/etW\r\n/6eNbj9/1gargIAukaeEVtZQPrMEVETAhQrRdKRWWu5djiP2Ui4RmGEwea93\r\nBLBZAy27f38wjpjhz6Ayew/aFjCGkbbd7ts=\r\n=tTGU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":"^14.15.0 || >=16.0.0"},"gitHead":"c455b1ce9c6de70bd876c1304cc93124b6a1bbaa","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/5.6.1/node@v16.15.0+arm64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"16.15.0","dependencies":{"p-map":"^4.0.0","@lerna/command":"5.6.1","@lerna/profiler":"5.6.1","@lerna/child-process":"5.6.1","@lerna/filter-options":"5.6.1","@lerna/validation-error":"5.6.1","@lerna/run-topologically":"5.6.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_5.6.1_1664547916825_0.34856918665670067","host":"s3://npm-registry-packages"}},"6.0.0-alpha.0":{"name":"@lerna/exec","version":"6.0.0-alpha.0","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@6.0.0-alpha.0","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://lerna.js.org","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"071595a3dd553c99f5110c6c7aa9652c9cd52318","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-6.0.0-alpha.0.tgz","fileCount":5,"integrity":"sha512-wkMar90dbEAdQr5Zz/8w/i4HwxxQ6DzvvrRzyuT2W/lQq/WZ5M2XTVWY9oZn664f4z4P1sffmSMqyVQR8HqMBg==","signatures":[{"sig":"MEYCIQDzg+82prmqvGUz2LQ5cyvGgdls+BRIL3IhC+Sj9MXpsAIhAOzk49g9G6xOsaq1p+JB+E/5ZXxAvnAgKr0wSahSxrJP","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13233,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjQCwkACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpNrA/8CF2cOt/VqrS7282lME11eNpJgpyj3e1dq7th/rOnZNKBLLkn\r\nsTrx/fy8oVEjR85hDgPk7d+ySDIEw/BTiquMXe6zHO4v5+yC9I5WLB39FAL0\r\nTcE/27Xn+JhScm8gIuL8m7yApaL/AJSmsUxn84Y5cV1ocdqk60NxdZOkzsjN\r\n/dDdeAyaVKrvUNhLoS+XnY07uz/QyXPMj71lpq97p5QS91tqgmvUGYa3PPbU\r\nkEeC0t9iqR9aaQaIc3SmhHzClPMW8UTrlI4LWSWJW+rUaZg/nsN99CXD8yP1\r\nJ68DaI8mvEXA0IGkSDMw+efNxQ9XOy4AvHMEBj9OsEhoIapLnQlwEmticfGR\r\nbdI/XNOvvI1Bq87zq/wxSIWGdJjhDeJJWGeXNA6PIxssG/aycZaxCXeVi7Yh\r\nH3nLZe/dfKtCnUkwkSmjbNYa9WlMQs7d63RQYMge5Z6BhOr3U1nIZ81u1n2q\r\ny8r1cotrO8RT08qmPa3/jtyjM8hV9w773VxZDWRtMAmtBKuWxROywLD/AbCD\r\n6CXm85mCzXHHMNOZgDf0STazt1o/NvcnpRVzNktSoepVNP142LcI1x/Fti0T\r\ntk82Q8zsHEMQKnCE6uNGLmNzcS5v7IZo03FlJMJwXgT3gNtYefoW7Hv2e3jT\r\nox2VVGZAn8drwTUlBzXfxUd7wdCRuEUVcPw=\r\n=aUb6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","readme":"# `@lerna/exec`\n\n> Execute an arbitrary command in each package\n\nInstall [lerna](https://www.npmjs.com/package/lerna) for access to the `lerna` CLI.\n\n## Usage\n\n```sh\n$ lerna exec -- <command> [..args] # runs the command in all packages\n$ lerna exec -- rm -rf ./node_modules\n$ lerna exec -- protractor conf.js\n```\n\nRun an arbitrary command in each package.\nA double-dash (`--`) is necessary to pass dashed flags to the spawned command, but is not necessary when all the arguments are positional.\n\nThe name of the current package is available through the environment variable `LERNA_PACKAGE_NAME`:\n\n```sh\n$ lerna exec -- npm view \\$LERNA_PACKAGE_NAME\n```\n\nYou may also run a script located in the root dir, in a complicated dir structure through the environment variable `LERNA_ROOT_PATH`:\n\n```sh\n$ lerna exec -- node \\$LERNA_ROOT_PATH/scripts/some-script.js\n```\n\n## Options\n\n`lerna exec` accepts all [filter flags](https://www.npmjs.com/package/@lerna/filter-options).\n\n```sh\n$ lerna exec --scope my-component -- ls -la\n```\n\n> The commands are spawned in parallel, using the concurrency given (except with `--parallel`).\n> The output is piped through, so not deterministic.\n> If you want to run the command in one package after another, use it like this:\n\n```sh\n$ lerna exec --concurrency 1 -- ls -la\n```\n\n### `--stream`\n\nStream output from child processes immediately, prefixed with the originating\npackage name. This allows output from different packages to be interleaved.\n\n```sh\n$ lerna exec --stream -- babel src -d lib\n```\n\n### `--parallel`\n\nSimilar to `--stream`, but completely disregards concurrency and topological sorting, running a given command or script immediately in all matching packages with prefixed streaming output. This is the preferred flag for long-running processes such as `babel src -d lib -w` run over many packages.\n\n```sh\n$ lerna exec --parallel -- babel src -d lib -w\n```\n\n> **Note:** It is advised to constrain the scope of this command when using\n> the `--parallel` flag, as spawning dozens of subprocesses may be\n> harmful to your shell's equanimity (or maximum file descriptor limit,\n> for example). YMMV\n\n### `--no-bail`\n\n```sh\n# Run a command, ignoring non-zero (error) exit codes\n$ lerna exec --no-bail <command>\n```\n\nBy default, `lerna exec` will exit with an error if _any_ execution returns a non-zero exit code.\nPass `--no-bail` to disable this behavior, executing in _all_ packages regardless of exit code.\n\n### `--no-prefix`\n\nDisable package name prefixing when output is streaming (`--stream` _or_ `--parallel`).\nThis option can be useful when piping results to other processes, such as editor plugins.\n\n### `--profile`\n\nProfiles the command executions and produces a performance profile which can be analyzed using DevTools in a\nChromium-based browser (direct url: `devtools://devtools/bundled/devtools_app.html`). The profile shows a timeline of\nthe command executions where each execution is assigned to an open slot. The number of slots is determined by the\n`--concurrency` option and the number of open slots is determined by `--concurrency` minus the number of ongoing\noperations. The end result is a visualization of the parallel execution of your commands.\n\nThe default location of the performance profile output is at the root of your project.\n\n```sh\n$ lerna exec --profile -- <command>\n```\n\n> **Note:** Lerna will only profile when topological sorting is enabled (i.e. without `--parallel` and `--no-sort`).\n\n### `--profile-location <location>`\n\nYou can provide a custom location for the performance profile output. The path provided will be resolved relative to the current working directory.\n\n```sh\n$ lerna exec --profile --profile-location=logs/profile/ -- <command>\n```\n","engines":{"node":"^14.15.0 || >=16.0.0"},"gitHead":"84597c511c4503562c641b481a2854137465ba5c","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/6.0.0-alpha.0/node@v16.15.0+arm64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"16.15.0","dependencies":{"p-map":"^4.0.0","@lerna/command":"6.0.0-alpha.0","@lerna/profiler":"6.0.0-alpha.0","@lerna/child-process":"6.0.0-alpha.0","@lerna/filter-options":"6.0.0-alpha.0","@lerna/validation-error":"6.0.0-alpha.0","@lerna/run-topologically":"6.0.0-alpha.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/exec_6.0.0-alpha.0_1665149988196_0.7185382379738572","host":"s3://npm-registry-packages"}},"5.6.2":{"name":"@lerna/exec","version":"5.6.2","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@5.6.2","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://lerna.js.org","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"b4edee66e26760de28bbf8472993ae8ad7508073","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-5.6.2.tgz","fileCount":5,"integrity":"sha512-meZozok5stK7S0oAVn+kdbTmU+kHj9GTXjW7V8kgwG9ld+JJMTH3nKK1L3mEKyk9TFu9vFWyEOF7HNK6yEOoVg==","signatures":[{"sig":"MEQCIE5y9rju/6mYTwo10D1UUToNUvqP0GRC1xC93JorYAB+AiAi59MS6uob8fOedDpr1GymJp5ZiZ09OprlF7hrBHSScw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13177,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjQzqeACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrdrxAAlqGI4/385cMc8B1pk2z+aju8rNBj+1hlkD91ouHoYyw2FrTX\r\nPj6Uk/yCs3Hn2uCyuxyl6RBPQGcuqxvSix+Eiw/4gDiLMWHnaMzl8L3TaGdc\r\nKOc/cRga2vdUZA85SgDHiZvS8wzzQK6GU404bbLHF8KHTogxHhb3nTirI3ih\r\nO3u+n15e3ipY6UQ8HMofkDHvIfhCeeV5IItRG8VCuKILEnF8CkxddM+WGsj9\r\nJC+dsZjDpKevrhFLNjVs8bL96phGmOMEQMohLHzrHT2y8O9qgCjcSSgGmV2U\r\ncjHQevlJ6kzXRU/Jy7sGwzjcq3E3g/VYpbXPDP3iSJKWDC3jnNE4yzqf48ZD\r\nNgRRIJM69BBpRj3FKyVV8O/9u9YVGk6GZGtdvFs1Edo18kPspE1T0Ru6SLzG\r\nvr674IwOPi8/4GVQfNrHRg6FY0Td1toLnYQHVsZnhkShkUfo7pU53MLupi9b\r\nfnDww2T57cY3A7IY8K6CEKgsxLj8vahX+lUSpZkryEK55kWWD8/PlM823bku\r\nDpTglcBJ+Unz32z5tx2m+pV5coW3oMZnvhPo1qTM6zZnTNhPbCxLcIZipd6C\r\nTKaFyxe4Krts+swXfur0dAHcpQLKblttUW/Lfb/lA6i1dYSwlg0xx/RwBq+w\r\nCr51f1TpsnJXRUpcpK4ErKW8DsKlCWB4POI=\r\n=BPKM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":"^14.15.0 || >=16.0.0"},"gitHead":"04f85a38c72dd043e7e25072c6e29d8a6411b867","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/5.6.2/node@v16.15.0+arm64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"16.15.0","dependencies":{"p-map":"^4.0.0","@lerna/command":"5.6.2","@lerna/profiler":"5.6.2","@lerna/child-process":"5.6.2","@lerna/filter-options":"5.6.2","@lerna/validation-error":"5.6.2","@lerna/run-topologically":"5.6.2"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_5.6.2_1665350302474_0.3426466219551114","host":"s3://npm-registry-packages"}},"6.0.0-alpha.1":{"name":"@lerna/exec","version":"6.0.0-alpha.1","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@6.0.0-alpha.1","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://lerna.js.org","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"6e9b3c20cf6a21f388719f81f5d2d54018c6269b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-6.0.0-alpha.1.tgz","fileCount":4,"integrity":"sha512-EQuZdThTG2RrSKwN07kOGyjb5DbPk2OZgvQZWajtT7lRFTtPZF73ORuKxKPBsuuiqZT5jrOpH6Em5QQPRE55uw==","signatures":[{"sig":"MEQCIAwxm+KdnKvbtiDGRwkEuYUCKicEiN5nUvXM65kJvP8FAiBDHuwsgecW4q5Mnrvy6PsdLUKbncCNuCYFxcasXX+ygg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12150,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjQ0BcACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpFxQ//ebYBPVIEIthf/e42EEJEdFc6nr/Zi4m/5OoR1ccMfK92PphN\r\nPWcIZEmlE5NMO7XyovgUMJtNL67vAJ3Mw+ckI33idoenmIEc6n9T/Gjj25Wj\r\nMpalyDiB4mkREbNvljH9TzrzIbpTF/O3H6vbTYJvAlXdPSDyJlPAozFb8Vtc\r\nAZcQnMIdNm5LCSl1Snda+kJioq2BgvTxUVSw2Xy1dbOlp6QUqHg3/rR0ekj3\r\nLYav7yLLZE69mvRZbr1OwX28NplALxftPdW+Ss1fD2A9+ItFwgWu9ueBmiro\r\nRavSo5Za7mcKkS0FZhwnLUtUpOt2Q9YiQbmOman3dhVd7F7NA27xxEm5B6qC\r\naED9d4IloD+XrKvo3Ck46hYAtCNIQhaJ40nbVGzvQIVa5i5blM0FNdyOkbQw\r\ncTmaCzBxU96icEVewodDYMPa5K23cWhxLOz6BZzVcjmHOBT907PzlRHssvfm\r\nDaHGpG1XaIIjj+ewDj0p7+prJA2LIX5iqz/QdWS55VHou+g4batyICYFc2Tr\r\n//5WzM9QRRgeRPBXXfDrYMgG942tXNCK8p6fJWrmdik0oIngtkSRGLFomckA\r\nJF4eYquDe0YInG02rBQqWZWiTIZPqy13E1dgQfWanB+CNn1UHMlNc4vxgXD8\r\ncFC/pKt99UiJFT4ew6gk8qrqvyPh9FL4bDc=\r\n=Sf0c\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","readme":"# `@lerna/exec`\n\n> Execute an arbitrary command in each package\n\nInstall [lerna](https://www.npmjs.com/package/lerna) for access to the `lerna` CLI.\n\n## Usage\n\n```sh\n$ lerna exec -- <command> [..args] # runs the command in all packages\n$ lerna exec -- rm -rf ./node_modules\n$ lerna exec -- protractor conf.js\n```\n\nRun an arbitrary command in each package.\nA double-dash (`--`) is necessary to pass dashed flags to the spawned command, but is not necessary when all the arguments are positional.\n\nThe name of the current package is available through the environment variable `LERNA_PACKAGE_NAME`:\n\n```sh\n$ lerna exec -- npm view \\$LERNA_PACKAGE_NAME\n```\n\nYou may also run a script located in the root dir, in a complicated dir structure through the environment variable `LERNA_ROOT_PATH`:\n\n```sh\n$ lerna exec -- node \\$LERNA_ROOT_PATH/scripts/some-script.js\n```\n\n## Options\n\n`lerna exec` accepts all [filter flags](https://www.npmjs.com/package/@lerna/filter-options).\n\n```sh\n$ lerna exec --scope my-component -- ls -la\n```\n\n> The commands are spawned in parallel, using the concurrency given (except with `--parallel`).\n> The output is piped through, so not deterministic.\n> If you want to run the command in one package after another, use it like this:\n\n```sh\n$ lerna exec --concurrency 1 -- ls -la\n```\n\n### `--stream`\n\nStream output from child processes immediately, prefixed with the originating\npackage name. This allows output from different packages to be interleaved.\n\n```sh\n$ lerna exec --stream -- babel src -d lib\n```\n\n### `--parallel`\n\nSimilar to `--stream`, but completely disregards concurrency and topological sorting, running a given command or script immediately in all matching packages with prefixed streaming output. This is the preferred flag for long-running processes such as `babel src -d lib -w` run over many packages.\n\n```sh\n$ lerna exec --parallel -- babel src -d lib -w\n```\n\n> **Note:** It is advised to constrain the scope of this command when using\n> the `--parallel` flag, as spawning dozens of subprocesses may be\n> harmful to your shell's equanimity (or maximum file descriptor limit,\n> for example). YMMV\n\n### `--no-bail`\n\n```sh\n# Run a command, ignoring non-zero (error) exit codes\n$ lerna exec --no-bail <command>\n```\n\nBy default, `lerna exec` will exit with an error if _any_ execution returns a non-zero exit code.\nPass `--no-bail` to disable this behavior, executing in _all_ packages regardless of exit code.\n\n### `--no-prefix`\n\nDisable package name prefixing when output is streaming (`--stream` _or_ `--parallel`).\nThis option can be useful when piping results to other processes, such as editor plugins.\n\n### `--profile`\n\nProfiles the command executions and produces a performance profile which can be analyzed using DevTools in a\nChromium-based browser (direct url: `devtools://devtools/bundled/devtools_app.html`). The profile shows a timeline of\nthe command executions where each execution is assigned to an open slot. The number of slots is determined by the\n`--concurrency` option and the number of open slots is determined by `--concurrency` minus the number of ongoing\noperations. The end result is a visualization of the parallel execution of your commands.\n\nThe default location of the performance profile output is at the root of your project.\n\n```sh\n$ lerna exec --profile -- <command>\n```\n\n> **Note:** Lerna will only profile when topological sorting is enabled (i.e. without `--parallel` and `--no-sort`).\n\n### `--profile-location <location>`\n\nYou can provide a custom location for the performance profile output. The path provided will be resolved relative to the current working directory.\n\n```sh\n$ lerna exec --profile --profile-location=logs/profile/ -- <command>\n```\n","engines":{"node":"^14.15.0 || >=16.0.0"},"gitHead":"8a1660e1e78c39db2f7a080862d93bbde6dd9339","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"8.11.0","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"16.15.1","dependencies":{"p-map":"^4.0.0","@lerna/command":"6.0.0-alpha.1","@lerna/profiler":"6.0.0-alpha.1","@lerna/child-process":"6.0.0-alpha.1","@lerna/filter-options":"6.0.0-alpha.1","@lerna/validation-error":"6.0.0-alpha.1","@lerna/run-topologically":"6.0.0-alpha.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/exec_6.0.0-alpha.1_1665351772455_0.9584021698350229","host":"s3://npm-registry-packages"}},"6.0.0-alpha.2":{"name":"@lerna/exec","version":"6.0.0-alpha.2","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@6.0.0-alpha.2","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://lerna.js.org","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"ddff1d35dd446a453a19b59c27cd311d58abe366","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-6.0.0-alpha.2.tgz","fileCount":5,"integrity":"sha512-8YYGDA8bMJOD3BHg7GfWG+rOUlRropyZjqbP8yMTdbSmuDh2ErC9sLS37IVA8k8j2XhAnb3CVbAXzmad1b0d1Q==","signatures":[{"sig":"MEQCICKbnbylfj7AQt5yOapkzOhRgBB56KHjO1HUi0rlCdTXAiAN3/FZ45knT94MvV53UmvIOFKQ4P/SlUoR8lmHTcraww==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13233,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjRut3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqdHBAAgGjF635uSL5w4p9o28nutxqyAyNqpAQj7S+IlImAPBCcUA8N\r\ndoy0/yUOBwMiYCE6X+WNA/su2XRofC7iUXKXbIIrwPSPcMdivWqapieCj75l\r\nEh7vBv9AmBOnra8siQrSbqeXx1NNx1ti2MQEjC9vPSKnVS8vrR/SnkBaz4wg\r\nexz6FOaAs9fQFzJ/ULg2XDzANlCO0+AZSMLesXCxbxQAak265RN6hQG+wUEJ\r\nrV1KY3ck6vKw0uaFD234RkTv24gsC3DE8TFzwMiuZzsR/K4I6wqr/Va0nsTO\r\n306gdgrAr8jEM7EBCBI+PPjPmC67N3yDuuXyyOz5+UTNJ5oLtjUvqbygZCsl\r\nKICeZw2dFw0ZAiTtvA0ssHDwWX6+3DkFYGHw4U28r+iM0q0AWOrfsiSX/giN\r\nbI6t8IRM+Fjkm8ZEnWwD29gvrvVI2gf7ZH/WUuYxHrPifCprAoAT8MJI8cV8\r\nQNk2EyuTPgHbpctGoJlAmBVJZUrFgpNbZvj3zkOS9cTcOeh5fC39QciOIiXH\r\nH+TJYnwUF8E6TsnUlsEik2evtD0lbfTr8glrQepNlDAhUk484TQu+x3f13Ic\r\nEC23ONtVIA3P1yJrbWkN3NJIqRVgf1IN+o4IB9NbLQIk8nKOHcUh61NhDjN1\r\naMCrVfBkRRVc3QLWomZ8gNtodWyCtG9pMjU=\r\n=xl2v\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","readme":"# `@lerna/exec`\n\n> Execute an arbitrary command in each package\n\nInstall [lerna](https://www.npmjs.com/package/lerna) for access to the `lerna` CLI.\n\n## Usage\n\n```sh\n$ lerna exec -- <command> [..args] # runs the command in all packages\n$ lerna exec -- rm -rf ./node_modules\n$ lerna exec -- protractor conf.js\n```\n\nRun an arbitrary command in each package.\nA double-dash (`--`) is necessary to pass dashed flags to the spawned command, but is not necessary when all the arguments are positional.\n\nThe name of the current package is available through the environment variable `LERNA_PACKAGE_NAME`:\n\n```sh\n$ lerna exec -- npm view \\$LERNA_PACKAGE_NAME\n```\n\nYou may also run a script located in the root dir, in a complicated dir structure through the environment variable `LERNA_ROOT_PATH`:\n\n```sh\n$ lerna exec -- node \\$LERNA_ROOT_PATH/scripts/some-script.js\n```\n\n## Options\n\n`lerna exec` accepts all [filter flags](https://www.npmjs.com/package/@lerna/filter-options).\n\n```sh\n$ lerna exec --scope my-component -- ls -la\n```\n\n> The commands are spawned in parallel, using the concurrency given (except with `--parallel`).\n> The output is piped through, so not deterministic.\n> If you want to run the command in one package after another, use it like this:\n\n```sh\n$ lerna exec --concurrency 1 -- ls -la\n```\n\n### `--stream`\n\nStream output from child processes immediately, prefixed with the originating\npackage name. This allows output from different packages to be interleaved.\n\n```sh\n$ lerna exec --stream -- babel src -d lib\n```\n\n### `--parallel`\n\nSimilar to `--stream`, but completely disregards concurrency and topological sorting, running a given command or script immediately in all matching packages with prefixed streaming output. This is the preferred flag for long-running processes such as `babel src -d lib -w` run over many packages.\n\n```sh\n$ lerna exec --parallel -- babel src -d lib -w\n```\n\n> **Note:** It is advised to constrain the scope of this command when using\n> the `--parallel` flag, as spawning dozens of subprocesses may be\n> harmful to your shell's equanimity (or maximum file descriptor limit,\n> for example). YMMV\n\n### `--no-bail`\n\n```sh\n# Run a command, ignoring non-zero (error) exit codes\n$ lerna exec --no-bail <command>\n```\n\nBy default, `lerna exec` will exit with an error if _any_ execution returns a non-zero exit code.\nPass `--no-bail` to disable this behavior, executing in _all_ packages regardless of exit code.\n\n### `--no-prefix`\n\nDisable package name prefixing when output is streaming (`--stream` _or_ `--parallel`).\nThis option can be useful when piping results to other processes, such as editor plugins.\n\n### `--profile`\n\nProfiles the command executions and produces a performance profile which can be analyzed using DevTools in a\nChromium-based browser (direct url: `devtools://devtools/bundled/devtools_app.html`). The profile shows a timeline of\nthe command executions where each execution is assigned to an open slot. The number of slots is determined by the\n`--concurrency` option and the number of open slots is determined by `--concurrency` minus the number of ongoing\noperations. The end result is a visualization of the parallel execution of your commands.\n\nThe default location of the performance profile output is at the root of your project.\n\n```sh\n$ lerna exec --profile -- <command>\n```\n\n> **Note:** Lerna will only profile when topological sorting is enabled (i.e. without `--parallel` and `--no-sort`).\n\n### `--profile-location <location>`\n\nYou can provide a custom location for the performance profile output. The path provided will be resolved relative to the current working directory.\n\n```sh\n$ lerna exec --profile --profile-location=logs/profile/ -- <command>\n```\n","engines":{"node":"^14.15.0 || >=16.0.0"},"gitHead":"154b93901308cbfd6b803e1f199e9b6d2e362b6f","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/6.0.0-alpha.2/node@v16.15.0+arm64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"16.15.0","dependencies":{"p-map":"^4.0.0","@lerna/command":"6.0.0-alpha.2","@lerna/profiler":"6.0.0-alpha.2","@lerna/child-process":"6.0.0-alpha.2","@lerna/filter-options":"6.0.0-alpha.2","@lerna/validation-error":"6.0.0-alpha.2","@lerna/run-topologically":"6.0.0-alpha.2"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/exec_6.0.0-alpha.2_1665592183436_0.3554963736763037","host":"s3://npm-registry-packages"}},"6.0.0":{"name":"@lerna/exec","version":"6.0.0","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@6.0.0","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://lerna.js.org","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"7320fefb0146b98965a17f995b95db231cccdb55","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-6.0.0.tgz","fileCount":5,"integrity":"sha512-LfZFdDXkpSITWk81cpwKh/MS/5YQkABZC3rzFSojwAtcqUHdhbcDgCFE519wYqoAuHYOXhjetho9a4N1EMNG/Q==","signatures":[{"sig":"MEYCIQDi/sB7TRccw6+O364f6YTGpfROcuEBFCJ3Qj+ngywAGQIhAOT1t4PwbT3a0rKPzFLloVIGmBuQc9tUZAygjMcPsTzp","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13177,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjRvvRACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqubA//UJxs2Rej5mr/kvSWwpHrF4DCktyMeOnNX6LpE/M+2yq57sUs\r\nBZ0hDY43SS5wnrHQOE2CqXNQ0zyeJ3f8wZCsnPXDiZsmLkvBZYKdohBC3GK/\r\nwWS0YX2HwCgdx17wTXOlzCbVUDVMw+kaTcHoZNL78XFaOpeeCuF2P2HDu6s2\r\nhyPZa0w/SMBW3VQBVim/+YNq8aje7/be7jBfdOUnGPLgWE3JkCAkq0ea10NU\r\nvyiUy3PqH4uIIKWI6bmKz43UZLFNuolNsoUAWuBKScMYkAzr9V2od0BsPIbo\r\nPZHCWKBbtEsfxr9waF49I1Yzf1+OfFwFM8pHu+83sjHXo4X/UVt1MDLFzfmb\r\nPpOvsRnl+KoLUhwHwhg1GF7oBuB7aryrGyz0FTGqFMIL7NItOu52I/WilNPc\r\nYJ1ksmLbv6R4BLBvdw8w/GA6RfJSilQ867VzWKcFZG8T61IpIF/Y+emQhFhG\r\nooiOCRw3klEIaZehU9t+GzA7pGMBl7yrEVqghGFVABku973nHckMEERw/SHw\r\nqusmcty4kQ0Owp/hNAKMxTQav5W6zce/KmWgTV/tsrI/UJ6T7YiTux9FFDxB\r\n46PlHCm82PfvOO7KzusRkyeHQ2TrjxFNfp7j/5recT/vmi52SJVY6IH5Vxgi\r\nVInYjEEUbaCrNo6RDxTVgViphaCZTbx/41Y=\r\n=Gvag\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":"^14.15.0 || >=16.0.0"},"gitHead":"6fa5951a03d3c0c4bd2f154b413cc9a378adc02b","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/6.0.0/node@v16.15.0+arm64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"16.15.0","dependencies":{"p-map":"^4.0.0","@lerna/command":"6.0.0","@lerna/profiler":"6.0.0","@lerna/child-process":"6.0.0","@lerna/filter-options":"6.0.0","@lerna/validation-error":"6.0.0","@lerna/run-topologically":"6.0.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_6.0.0_1665596369119_0.6011578519024434","host":"s3://npm-registry-packages"}},"6.0.1":{"name":"@lerna/exec","version":"6.0.1","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@6.0.1","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://lerna.js.org","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"d2d0785c46b7ceb3758fe75bb6d95d177a0a0ec3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-6.0.1.tgz","fileCount":5,"integrity":"sha512-x9puoI3091Alp45w7XOGRxThOw45p+tWGPR5TBCEQiiH7f8eF9Dc4WX5HXf31ooK6NmD40eKPYhBgy8oQnJY9w==","signatures":[{"sig":"MEUCIQCBULLVEUmNeIFbvKpYzVGBizZ+t+KDxsjzJHBaJJiy5AIgcQo+Wcy3fsOWlteYxztqAmwTnmAzh/ikg2MApNfX+mE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13177,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjSZLVACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpvPA//WzP7Sf5tKjkBw5D0PMUhTRjrmwQOCGWkPbVZXodTTXkM+/J4\r\nFgV+05EPzT+f5lFAv9V0mF5ohlogTepyG35RBzgNYxmVfH1LvkWL8SLU+CIP\r\n1/sGaKO6qfQrJCi5BomH3mKDHFemR0kJq7ufB20bNaj+fsVDeyq+9VbWW+Sp\r\n3gGdfqwunOoAkVeMZ5/s09xsJZW4EEVNr6XDNmAIPiZkCJEymcSz23bFztwT\r\nzNkqaLh5zm0eDD3d7+E9J+oyCKy6W1++ets6nZlG/N+JWXDYA0nEBNieFEJE\r\na7Yuo0x/FKVR+frEsu6aLge4rpcb6Q5xUnErRsg/hSU3nmAuDLwHc/WcjsKd\r\ne+pNHikpJEIgJ6gxypk0xW4FFzMXWzYAUU6l6d6ydE/icOnerd2AjKgDPdsZ\r\nSzc7JtsCMx8LZdMKmaobfZmaRmXWn6+K5kEX7LafV42lQIOjwM1btxWecjS3\r\npZSIZKzSdlx4JD2dKGv4FJzCjD87uS39vF+i8gt4p/hOhcOKjla1txSBmDiO\r\nj37UlE7cQAuOxEyjnhpIEjbK8I4bKYZvwopef8bkYmJz6zkBVOL0jhwVpcZu\r\nmHmi41ev0KrQtAc8eeKFTtSvThU7KVWm0q1NqvVZfv1My4wPSYu0swJjhA9k\r\ng5ViLPHMXViH018zUml1eMxuYgZecpy0oSc=\r\n=Mxx0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":"^14.15.0 || >=16.0.0"},"gitHead":"4fcefff1b7d982c83b6d68d0a84d7e878ea87449","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/6.0.1/node@v16.15.0+arm64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"16.15.0","dependencies":{"p-map":"^4.0.0","@lerna/command":"6.0.1","@lerna/profiler":"6.0.1","@lerna/child-process":"6.0.1","@lerna/filter-options":"6.0.1","@lerna/validation-error":"6.0.1","@lerna/run-topologically":"6.0.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_6.0.1_1665766101156_0.737726496226921","host":"s3://npm-registry-packages"}},"6.0.2":{"name":"@lerna/exec","version":"6.0.2","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@6.0.2","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://lerna.js.org","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"5a78594bc4abbafda7b30546ded25530d302f4db","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-6.0.2.tgz","fileCount":5,"integrity":"sha512-GoRHMPokUqb+fhe+8PdQ689QTChv+MBbykBVCQ1NgnaqCG/BpEtOa3bLhOCnVjrMZoMcWA6bkb983CuCvpesCQ==","signatures":[{"sig":"MEYCIQCvYZYAPq/cg/xN0492xfha6CLOdfwkysnRiSNPUg2c6gIhAMswh8aduzJL7a3635U3G+4zzJ2VCEyg5798fVQ8IZKx","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13177,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjYsOlACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqsNw/5AYRcrqVOc+DzaHd5/pVn8BvUfArU86oSMAK+BrkQ+RmJZw5X\r\neW3BNE1/W09HZBnV/n51Enncxl1TqTY6Cm2wAuMrwurFSfSIu5Yyie/YSobK\r\nXyqQgLahkdL30lE2Axb7O43kzFKIz80SB5mRpzh2/TFzg7XncZqg0NQzWINo\r\nRRNpF8XgG2kNIKPKmolJ4B8E6vgSl/J6n5PvdVIMEczITFZttyY3OKGjGt4W\r\nGaxesf9ws4IMkXWZRYfWd2D29Zv5oBzPo77ddai2p/yEebUCKqrFgpCGtJsq\r\nM8RuojRVnQ639TQlLoaIbW6uw992AnrHsYAHimXPeYhsMtNTLOJxGWM1w2B2\r\njbYjlw57TptmFPfjSqlA3+fMfiIv4EknfQm6VsILiH5hxFh9byXR95xABQk2\r\nIlIAo1UILOnsSY2q4LALauTJAglwsm+cbJTX65UTJ5Znzrqj2P3jw//a1yaQ\r\n1gX1e8squc5bRQpOrQZVTkLKGpWfv9TK6Gv1RNBEZ9IiTeTmJAJv4fNFz9/P\r\njCiNK5QiRQ9052k58pdfVJeWhldQXSKsVyEfcgJQYQS6NhtqN49ZWG/UfGBM\r\nOBYznCmbPE7zm0Uo29T0GwE2jJavOHWNzjGbO9Zzv67I5pXYcVEXi3vpd5ve\r\nKl7faiWuPwA7nMq9zN2Zd+3tSgm/Ekp80iw=\r\n=3fKL\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":"^14.15.0 || >=16.0.0"},"gitHead":"b31a92c4009d7ca08777828560cb1d3117e6d206","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/6.0.2/node@v16.15.0+arm64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"16.15.0","dependencies":{"p-map":"^4.0.0","@lerna/command":"6.0.2","@lerna/profiler":"6.0.2","@lerna/child-process":"6.0.2","@lerna/filter-options":"6.0.2","@lerna/validation-error":"6.0.2","@lerna/run-topologically":"6.0.2"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_6.0.2_1667416997681_0.3753168188795033","host":"s3://npm-registry-packages"}},"6.0.3":{"name":"@lerna/exec","version":"6.0.3","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@6.0.3","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://lerna.js.org","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"01de1eed611879c73b3ec2b2385256a709ef7bd0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-6.0.3.tgz","fileCount":5,"integrity":"sha512-4xKTXPQe3/0hrwCao7evcQfaacfROhVkR2zfnQEA+rkKRiV6ILWdvu9jCxI7DMkzoh4DgABVuGAv84CeraunMg==","signatures":[{"sig":"MEUCIQDzAHhCNT0IvW+iEeofIaqvj/L4umgbJuR0mkTOjv3ZhQIgVkna/KE1bQrwqEp0H8SqXaQw6cfYdNi3Mxe0H13oA/k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13177,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjaUuTACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqiuQ//YtgN01JzwC/6ivB17CWWc5d0I+aPlWv6+PW/utgFM6gw7Wuu\r\nWJHL/Q0ekl23wm/hf3JRiUdH1O4Z9T301IygHtYMeELSenzajS3F0DYOkvtZ\r\nkr7EGo0cyjI5cqZzhYRdhHG5dSXysOsBriURyvHTneCAcNBEsNZ4hGbk2JT0\r\nSrEqfqlUnVhSE5KJQRC+L5m2d40k2aol4DumjiU580u1LTdKDoQKvZknrtXp\r\npmwuazBPn48uVadz2yMveb1aZw6lDUTNqTWtfVEWWzrl01oPlxDo+VBsTiHY\r\n+eHiUTMHA+YnZWUD405F278vt7bbf2XE2eYFg7+ryfnUmAjjfXl3Lne70wBG\r\nNOc3gAgGShbW2MpC+saIkRQCwfLtMBUqVwxb+omfb3+Sd0A9nHQtqkhxPdZM\r\nkHqsL6Yn564d+WIVOGPoSyL+/UAN2jgkxab5JOe7yH2lntVG80KMSkMPM/lj\r\nQuKkWD/daWPu9akJ0hDpSsvIMDKlAqc/sg8tXxuS+ruhFn/iTaxuCcZLvL6L\r\nX39UuGRJThPeuB/q+DZDR18m7x3cXUKICxm1tkjyLVqCucOm3W+0X+kTp1X4\r\nhFjNUHovAiBxVIPekytlGFaz4ImzWPPhY6hjZi9bRLm7f1YzZu9GH4e4R8Wz\r\nJab42G3E6Rz3WjGayn5u7x2ioJrP1bWB+zk=\r\n=Rc5/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":"^14.15.0 || >=16.0.0"},"gitHead":"0f785e404be84e62cb9ce225a54c76e89ac9efdb","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/6.0.3/node@v16.15.0+arm64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"16.15.0","dependencies":{"p-map":"^4.0.0","@lerna/command":"6.0.3","@lerna/profiler":"6.0.3","@lerna/child-process":"6.0.3","@lerna/filter-options":"6.0.3","@lerna/validation-error":"6.0.3","@lerna/run-topologically":"6.0.3"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_6.0.3_1667845011723_0.47585463660481575","host":"s3://npm-registry-packages"}},"6.1.0":{"name":"@lerna/exec","version":"6.1.0","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@6.1.0","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://lerna.js.org","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"a2d165576471ff61e33c49952d40a5dbc36fc78f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-6.1.0.tgz","fileCount":4,"integrity":"sha512-Ej6WlPHXLF6hZHsfD+J/dxeuTrnc0HIfIXR1DU//msHW5RNCdi9+I7StwreCAQH/dLEsdBjPg5chNmuj2JLQRg==","signatures":[{"sig":"MEYCIQDPyj94GABYyeUWamE7t1oPMM8JE7DNSd09As3VSWirlQIhANZwYJ1T8QXAyndMw5iYm75InHsSM/NEKDyjMD18dQsD","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12094,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjhnvmACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmowxQ//e+juiMNuphdpUTptOGpaPsejRWPOY0h6fl84oRq6x8mFfDgs\r\n0LqrTI4vgb1AYpPhV/XfpZ+kWdwndquFvK5xJ5oOYZUzFurzKncifDqZ6YSC\r\n443qG5GbyymOU3Kt+8L/n8UtLmRVwtOxcB4OzGAv1mqVy1RlPQKZKQnWsdOc\r\nVEIt5HENnE/+hi42azLOV04G9sYYHexeN/FbPqH+sG+D8+4WZtxsS+j8BAS/\r\ngSBpHzMoU2fnalPUGYinjV+1k8vSgDNR2RDeoTvoQoQAEwJXsRBGUTOevZAu\r\nUaH12abyWrJq4H9od/fnhYiKzuC4xq/vVZz7qzOHz+qMtg5pd3sb1hS8pxaY\r\nvI97UijZLWBGg3PzYQ5lQylSt3tB2moeW6KjxxBXaf3qjJwE9P80Xu9Za0ti\r\nwkQ3P/bkuaETUtdHnoACXcUER3j0Ww3HEbDi3BVaFWls3qfy69YXjs+DkTOg\r\narV4KOtBwX8CN0fZp0FmfG1TrIhdGbVFShwpDOO3rB1ItxiA7Sif+E5xK6ur\r\nSejBhKOGjAQ+h35BidscQWpx/ZL9I3fhpkIancKRAcI/h+2u9tdkK1KSYlDA\r\nbQSddo0Af7VZ08OR8NNoxZ/1/fe/b7iiuKQfFvrquE0GPrHhc7LXIDwNmS5e\r\nZBfMqiOaD5eXXd3yLbuaP8HzEqUIckatOSc=\r\n=ai5I\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","readme":"# `@lerna/exec`\n\n> Execute an arbitrary command in each package\n\nInstall [lerna](https://www.npmjs.com/package/lerna) for access to the `lerna` CLI.\n\n## Usage\n\n```sh\n$ lerna exec -- <command> [..args] # runs the command in all packages\n$ lerna exec -- rm -rf ./node_modules\n$ lerna exec -- protractor conf.js\n```\n\nRun an arbitrary command in each package.\nA double-dash (`--`) is necessary to pass dashed flags to the spawned command, but is not necessary when all the arguments are positional.\n\nThe name of the current package is available through the environment variable `LERNA_PACKAGE_NAME`:\n\n```sh\n$ lerna exec -- npm view \\$LERNA_PACKAGE_NAME\n```\n\nYou may also run a script located in the root dir, in a complicated dir structure through the environment variable `LERNA_ROOT_PATH`:\n\n```sh\n$ lerna exec -- node \\$LERNA_ROOT_PATH/scripts/some-script.js\n```\n\n## Options\n\n`lerna exec` accepts all [filter flags](https://www.npmjs.com/package/@lerna/filter-options).\n\n```sh\n$ lerna exec --scope my-component -- ls -la\n```\n\n> The commands are spawned in parallel, using the concurrency given (except with `--parallel`).\n> The output is piped through, so not deterministic.\n> If you want to run the command in one package after another, use it like this:\n\n```sh\n$ lerna exec --concurrency 1 -- ls -la\n```\n\n### `--stream`\n\nStream output from child processes immediately, prefixed with the originating\npackage name. This allows output from different packages to be interleaved.\n\n```sh\n$ lerna exec --stream -- babel src -d lib\n```\n\n### `--parallel`\n\nSimilar to `--stream`, but completely disregards concurrency and topological sorting, running a given command or script immediately in all matching packages with prefixed streaming output. This is the preferred flag for long-running processes such as `babel src -d lib -w` run over many packages.\n\n```sh\n$ lerna exec --parallel -- babel src -d lib -w\n```\n\n> **Note:** It is advised to constrain the scope of this command when using\n> the `--parallel` flag, as spawning dozens of subprocesses may be\n> harmful to your shell's equanimity (or maximum file descriptor limit,\n> for example). YMMV\n\n### `--no-bail`\n\n```sh\n# Run a command, ignoring non-zero (error) exit codes\n$ lerna exec --no-bail <command>\n```\n\nBy default, `lerna exec` will exit with an error if _any_ execution returns a non-zero exit code.\nPass `--no-bail` to disable this behavior, executing in _all_ packages regardless of exit code.\n\n### `--no-prefix`\n\nDisable package name prefixing when output is streaming (`--stream` _or_ `--parallel`).\nThis option can be useful when piping results to other processes, such as editor plugins.\n\n### `--profile`\n\nProfiles the command executions and produces a performance profile which can be analyzed using DevTools in a\nChromium-based browser (direct url: `devtools://devtools/bundled/devtools_app.html`). The profile shows a timeline of\nthe command executions where each execution is assigned to an open slot. The number of slots is determined by the\n`--concurrency` option and the number of open slots is determined by `--concurrency` minus the number of ongoing\noperations. The end result is a visualization of the parallel execution of your commands.\n\nThe default location of the performance profile output is at the root of your project.\n\n```sh\n$ lerna exec --profile -- <command>\n```\n\n> **Note:** Lerna will only profile when topological sorting is enabled (i.e. without `--parallel` and `--no-sort`).\n\n### `--profile-location <location>`\n\nYou can provide a custom location for the performance profile output. The path provided will be resolved relative to the current working directory.\n\n```sh\n$ lerna exec --profile --profile-location=logs/profile/ -- <command>\n```\n","engines":{"node":"^14.15.0 || >=16.0.0"},"gitHead":"05ad1860e2da7fc16c9c0a072c9389e94792ab64","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"8.11.0","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"16.15.1","dependencies":{"p-map":"^4.0.0","@lerna/command":"6.1.0","@lerna/profiler":"6.1.0","@lerna/child-process":"6.1.0","@lerna/filter-options":"6.1.0","@lerna/validation-error":"6.1.0","@lerna/run-topologically":"6.1.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/exec_6.1.0_1669757926711_0.30568981747810264","host":"s3://npm-registry-packages"}},"6.2.0":{"name":"@lerna/exec","version":"6.2.0","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@6.2.0","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://lerna.js.org","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"faa962c94f54be68f1501258ced508e301c5f769","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-6.2.0.tgz","fileCount":5,"integrity":"sha512-GUebTWszMyqMq1KTN8LCOd0aJtV+757RTFdIGZePL1NVYx5iPp55RJJG2tyopFp0ZOu8krkr2YCOWUHuRNrlwg==","signatures":[{"sig":"MEYCIQD474DwscSqasEXvdJmIrObbcSlAtm4g3f5dIkWiz4k0AIhALqEktkF/537MSNknrVgy064UDboTntwWhk0PqZ3jB/e","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13177,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjmHWJACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrucw/9GloUh/MEcNqfK0sSDtxBGc9mXriH90KUCiw8mggAmITOmrjQ\r\nCcAz1i9CCJ1RfVJ68Vde10ADc97ftLGvwb9GfVEbAWtysNciG0qBsDFOFEJb\r\n3RwsgjPqEhqBss33RbESE9tYECe2gAzDQu1GK/MBNyt03LOp1s4otpX2FT/j\r\nKpG8NLv8ntE5gH2X62zQxPTJNo9Wpixu4DVTmAz0Fsy0JoTH/1J5EMkQLPXS\r\nTbjka55eDh5KJM3aaO7hH8VTYHtD5id/pcVh4Vx4YJjLMLq9BGCxyD/V2Aph\r\nLhnH5u9PYQwzNCuucmUJYrWeu+7FS2mb3xOz/V1pyX97x8/AvjOglfMfvdhR\r\n0gBw84Kxxlo+386CeEoPFwoTaGn8mQBXgSTiSZucyAU0QUia4mQPDQbbNe4R\r\nIx5VTbW7kkLO5iitSXzeVQ4b8H29S2OddkbcJdVsiyUeXrX7BetMS7BA+WQp\r\n4ObamP3mf22F/6s9OKEVVioWFh31PpZY/k0f0ZkLE2B7ce17Vg3VH9XG1BR1\r\ncUadANC75wnnHECQdABD8BXaAxujdLLYuPH+jOypsPN3QfMH0nl8Qs6pJ6Vq\r\n28eGuV2yOG/OB9lLwioz12ul6d2DczbIRJE3mxSzq9CMzgTMA/vHm0AOJRDg\r\n4szu8Ac4N5gNDZY8jXL8Dd7Hid+xnKP90WM=\r\n=kmqz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":"^14.15.0 || >=16.0.0"},"gitHead":"e057f56e15562496249d8d0a1e3516bd507536fd","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/6.2.0/node@v16.15.0+arm64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"16.15.0","dependencies":{"p-map":"^4.0.0","@lerna/command":"6.2.0","@lerna/profiler":"6.2.0","@lerna/child-process":"6.2.0","@lerna/filter-options":"6.2.0","@lerna/validation-error":"6.2.0","@lerna/run-topologically":"6.2.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_6.2.0_1670935944834_0.14969933043889405","host":"s3://npm-registry-packages"}},"6.3.0":{"name":"@lerna/exec","version":"6.3.0","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@6.3.0","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://lerna.js.org","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"596f99b484f80f5518b9fde4b282dee82cc01e0e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-6.3.0.tgz","fileCount":5,"integrity":"sha512-f++DKi9MgmaY+WXhICPoied6G2BfB0U+Q6erqdsGXVfeeZcVLzuWcVckYPg6CmVHx4pvQskeV6b07zvuX5v0PQ==","signatures":[{"sig":"MEQCIBdivpVVqqRIG0I2RGEUiU+acuNQROQtvZs4E3qsn0GDAiA5C+SaeCCUmpYYd8Y7G7QubT/mDVoulWizWeuAvmNYQw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13177,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjqeqRACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmpo3A//alCGqWmQ5a3oo1uwPfVvT5ZCPtRpOvVLGvGdlQZAzsOlpMwm\r\n0/yR6mmLSCW34uDbhq5deom1W9Cp24RAbJ1MmppGlvkCpS64x3fWNcLsLOXb\r\nMqiYagD8iH0zYL8Evm2q+08jfVFI2OudiSbvp2PYRDChvKmZ62uYQ+hUVv02\r\nYS2+V40Wo7T+V+TW0bM2amw5q+oPkNkOUOHwa7zN9J3yBOXg637QZ3LmbV8T\r\nL1mukO5QKXB2wAQQcz852aX9t+ORjmCu6rN0mjQ3V6Mz2HLF2AdBrm1bNJRB\r\njz9eiAEeCYZHRtUMH3fQJO8qH5j2FUCWlnFPzl0G1RgQ5B+PW3ZSk/+0md2u\r\nFuE4WtJqcuCOxOw42o89eQrS5Cn+psEC52+K7jhVqGEO1oAvjOKnQT9hzLuv\r\n0CFF8NGTqmxJ9eKv9hTRfrlF3pvKvzNRq+Q/oTp9357jMU/aHRYJcEdBUWuP\r\n+fDOzikmO7vQqtIKjAOqInqDHAhEsYT+khKGe6Y6x5j4Jun29aHJdKjf+OwW\r\ndU71avGFQxyviIMF0s/56ihnDBC0XDf2SkOZ/uGBVSzSi1etnVVVNJFqVeol\r\nHEqBDL5+M0Py7f4VRdVeZpqjcp4g+VCJxp34MUV42Uu7+dl8n0iGVqQ6tMmt\r\noSUcKFasK4XBMzwIu9N3VOU41ONA51KaZOA=\r\n=mKqc\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":"^14.15.0 || >=16.0.0"},"gitHead":"329eb99e3080cc4d5de53960a7d0421091b08782","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/6.3.0/node@v16.15.0+arm64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"16.15.0","dependencies":{"p-map":"^4.0.0","@lerna/command":"6.3.0","@lerna/profiler":"6.3.0","@lerna/child-process":"6.3.0","@lerna/filter-options":"6.3.0","@lerna/validation-error":"6.3.0","@lerna/run-topologically":"6.3.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_6.3.0_1672080016851_0.49941415264309374","host":"s3://npm-registry-packages"}},"6.3.1-beta.0":{"name":"@lerna/exec","version":"6.3.1-beta.0","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@6.3.1-beta.0","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://lerna.js.org","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"ab04da33be26be840dd405d3ca24e714af4effa0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-6.3.1-beta.0.tgz","fileCount":5,"integrity":"sha512-83AdocVIGHXdV/hQ7uOFoMhHDqpnZVt8IqCt7CWhFgOjJ+Q9mITm79tzSRlUfBI5IYBoPqsfGi39VnhnvWjrlQ==","signatures":[{"sig":"MEUCIDvUMEIymu25SxmtMofi0f5svFGl79WpZxBsFmwI/0R1AiEAjO7ASORFhNm5WJwm8+52HmU87oimJmNVW5USf48s6O8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13226,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjqe7FACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpZ2Q//RIXqGTYUc9/1PWVRo64G1WHsnprVl1U4uvTLhxk4F1m48qvh\r\nNtLIKVvKNKkBa95ZesQ/5a/YDDobUywPqY6bhx0N71agoq7mneamv0pjwHHq\r\nPMKKBd6DDShn3+puEISWkbMXmfmYSF+iS2HXs3EuaMTM20XYK1nJl2MuDABA\r\n9xETHJqyvnZl4LS2odrtC5eDzCT/6IirmQkgMhVHb+kQBe2kIN5EaKY+dj1z\r\noNDXkfwF3j+KJ8UNlbkGfEHKJ76YJNhW1Vo4chYlpOQYC37lASJ1rxBKJmyA\r\nGczJGyQAxzrqlaeAT6/SAwpKayHNIKI+FoF4wcvV4RZjxymnIzqtT+GT6+dQ\r\nRAivmzahMSDv1pEUbI4rxienTDr0+xxF9mWIa8+J1lpkOnirbJQzdFITu9MX\r\nHcOihBgkOjOjfd3eDOpVb88C+oG+CAs41e8JiqCrl3s+yLwlGFrGPpGbVrNN\r\n/o8S2XG02ZfHoINQ9FgZnuJ9lm6N/iOlpDmPyRqqq/ggWY7p8CdOmok+wZi6\r\nqdIE0HhiwrF7/0S4uVCjhlAPncIwXd1W913bCQ3+betnMbWHqTv6ICVdkrsS\r\nfGf2adygTuUb04ImjuKrse7htTkdi2YqskIn85echrOt/HCLo37q+bmewrPr\r\niBKyJkNxDUev1zXPqJvTwwk8uvLnj5VJpow=\r\n=Gy6T\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","readme":"# `@lerna/exec`\n\n> Execute an arbitrary command in each package\n\nInstall [lerna](https://www.npmjs.com/package/lerna) for access to the `lerna` CLI.\n\n## Usage\n\n```sh\n$ lerna exec -- <command> [..args] # runs the command in all packages\n$ lerna exec -- rm -rf ./node_modules\n$ lerna exec -- protractor conf.js\n```\n\nRun an arbitrary command in each package.\nA double-dash (`--`) is necessary to pass dashed flags to the spawned command, but is not necessary when all the arguments are positional.\n\nThe name of the current package is available through the environment variable `LERNA_PACKAGE_NAME`:\n\n```sh\n$ lerna exec -- npm view \\$LERNA_PACKAGE_NAME\n```\n\nYou may also run a script located in the root dir, in a complicated dir structure through the environment variable `LERNA_ROOT_PATH`:\n\n```sh\n$ lerna exec -- node \\$LERNA_ROOT_PATH/scripts/some-script.js\n```\n\n## Options\n\n`lerna exec` accepts all [filter flags](https://www.npmjs.com/package/@lerna/filter-options).\n\n```sh\n$ lerna exec --scope my-component -- ls -la\n```\n\n> The commands are spawned in parallel, using the concurrency given (except with `--parallel`).\n> The output is piped through, so not deterministic.\n> If you want to run the command in one package after another, use it like this:\n\n```sh\n$ lerna exec --concurrency 1 -- ls -la\n```\n\n### `--stream`\n\nStream output from child processes immediately, prefixed with the originating\npackage name. This allows output from different packages to be interleaved.\n\n```sh\n$ lerna exec --stream -- babel src -d lib\n```\n\n### `--parallel`\n\nSimilar to `--stream`, but completely disregards concurrency and topological sorting, running a given command or script immediately in all matching packages with prefixed streaming output. This is the preferred flag for long-running processes such as `babel src -d lib -w` run over many packages.\n\n```sh\n$ lerna exec --parallel -- babel src -d lib -w\n```\n\n> **Note:** It is advised to constrain the scope of this command when using\n> the `--parallel` flag, as spawning dozens of subprocesses may be\n> harmful to your shell's equanimity (or maximum file descriptor limit,\n> for example). YMMV\n\n### `--no-bail`\n\n```sh\n# Run a command, ignoring non-zero (error) exit codes\n$ lerna exec --no-bail <command>\n```\n\nBy default, `lerna exec` will exit with an error if _any_ execution returns a non-zero exit code.\nPass `--no-bail` to disable this behavior, executing in _all_ packages regardless of exit code.\n\n### `--no-prefix`\n\nDisable package name prefixing when output is streaming (`--stream` _or_ `--parallel`).\nThis option can be useful when piping results to other processes, such as editor plugins.\n\n### `--profile`\n\nProfiles the command executions and produces a performance profile which can be analyzed using DevTools in a\nChromium-based browser (direct url: `devtools://devtools/bundled/devtools_app.html`). The profile shows a timeline of\nthe command executions where each execution is assigned to an open slot. The number of slots is determined by the\n`--concurrency` option and the number of open slots is determined by `--concurrency` minus the number of ongoing\noperations. The end result is a visualization of the parallel execution of your commands.\n\nThe default location of the performance profile output is at the root of your project.\n\n```sh\n$ lerna exec --profile -- <command>\n```\n\n> **Note:** Lerna will only profile when topological sorting is enabled (i.e. without `--parallel` and `--no-sort`).\n\n### `--profile-location <location>`\n\nYou can provide a custom location for the performance profile output. The path provided will be resolved relative to the current working directory.\n\n```sh\n$ lerna exec --profile --profile-location=logs/profile/ -- <command>\n```\n","engines":{"node":"^14.15.0 || >=16.0.0"},"gitHead":"329eb99e3080cc4d5de53960a7d0421091b08782","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/undefined/node@v16.15.0+arm64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"16.15.0","dependencies":{"p-map":"^4.0.0","@lerna/command":"6.3.1-beta.0","@lerna/profiler":"6.3.1-beta.0","@lerna/child-process":"6.3.1-beta.0","@lerna/filter-options":"6.3.1-beta.0","@lerna/validation-error":"6.3.1-beta.0","@lerna/run-topologically":"6.3.1-beta.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/exec_6.3.1-beta.0_1672081093388_0.38873708129175677","host":"s3://npm-registry-packages"}},"6.3.1-beta.1":{"name":"@lerna/exec","version":"6.3.1-beta.1","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@6.3.1-beta.1","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://lerna.js.org","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"7ed44a41e3dccfc607805ea7f0dfd108135bd54a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-6.3.1-beta.1.tgz","fileCount":5,"integrity":"sha512-u406oQHTfP6KhfpGNIh6NbX87AadeKCWngyzijaCcULVIZ1zkLSGrQXRH0Jfyc8pjmUZHvSCtmqP/BgaIa/QkA==","signatures":[{"sig":"MEUCIQCs2WC3K824UtIe5p6CUIMrvz+FodwV5rfK6VrR2GSR5wIgR7xMtZI25K8mmYSXkXV//oo8arPoAh053U/Ti4m6R3c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13226,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjquCCACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmod6A/9GW9XP/FLZuzzYE0zVOSmJ9SxiAF06YWKOVhlujiJSQC2Sz+b\r\nqsGKqQzWsRqi9vTxlZk6BcGOcmjgCvchOGVQhXBMoQ+chNIIIwiPgQ04Lb0y\r\nCj35te5uCodYGjCXZo1UK/qOqp40u0cOjSs7/fxqkIkUTH0cJ/kcxJiz4Swl\r\n0c76Pd2e2+FaQLBGlOtrUgqpQeZVXYZlOjVpv8ib2dsvRFDcnrln3Y7eJlZ3\r\nvYS/zu3G6mtc/ftbvXKfBD36M7C6+w4OFlAg6HziglkdnMWFH/sdvKQ3yvaj\r\nWfP+02M7IC8XUtipR5eoB8VROW/MOkPK+uIQ3sGeNGuDOAJ49gGE3txlHDwN\r\nDDNMmrqRyhmyZlj3b7wy9AN2ADTApvoIAYAJHYAM74IHdrIco4cAQ/CEbGZc\r\nuYcC0lu9H/n0abjJGSM5OnSgRqyMbzEUuMbn1A9otMSiCaKshuHUqy1kGMgc\r\n4VE7F8CsbSX8Ok/QnIS4ErtqqHUsaXR4AsmJqJxCwKPETre3UXDeLCSEMCAp\r\nLJJM1iedf03Ds6mBHLn5KwYKRk/vfWi6rA5NV7XJT5XT+epDmfUSaPQIGfD2\r\naxLaxs4PpuhopK3ZSiuG3Wm3gfW4tQkMtWaG3hc10T91gVz0s4XDDzUIeZV6\r\nwLMRh/VsThBStVbxF5oe7K4iREZrH5x/poc=\r\n=ruVe\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","readme":"# `@lerna/exec`\n\n> Execute an arbitrary command in each package\n\nInstall [lerna](https://www.npmjs.com/package/lerna) for access to the `lerna` CLI.\n\n## Usage\n\n```sh\n$ lerna exec -- <command> [..args] # runs the command in all packages\n$ lerna exec -- rm -rf ./node_modules\n$ lerna exec -- protractor conf.js\n```\n\nRun an arbitrary command in each package.\nA double-dash (`--`) is necessary to pass dashed flags to the spawned command, but is not necessary when all the arguments are positional.\n\nThe name of the current package is available through the environment variable `LERNA_PACKAGE_NAME`:\n\n```sh\n$ lerna exec -- npm view \\$LERNA_PACKAGE_NAME\n```\n\nYou may also run a script located in the root dir, in a complicated dir structure through the environment variable `LERNA_ROOT_PATH`:\n\n```sh\n$ lerna exec -- node \\$LERNA_ROOT_PATH/scripts/some-script.js\n```\n\n## Options\n\n`lerna exec` accepts all [filter flags](https://www.npmjs.com/package/@lerna/filter-options).\n\n```sh\n$ lerna exec --scope my-component -- ls -la\n```\n\n> The commands are spawned in parallel, using the concurrency given (except with `--parallel`).\n> The output is piped through, so not deterministic.\n> If you want to run the command in one package after another, use it like this:\n\n```sh\n$ lerna exec --concurrency 1 -- ls -la\n```\n\n### `--stream`\n\nStream output from child processes immediately, prefixed with the originating\npackage name. This allows output from different packages to be interleaved.\n\n```sh\n$ lerna exec --stream -- babel src -d lib\n```\n\n### `--parallel`\n\nSimilar to `--stream`, but completely disregards concurrency and topological sorting, running a given command or script immediately in all matching packages with prefixed streaming output. This is the preferred flag for long-running processes such as `babel src -d lib -w` run over many packages.\n\n```sh\n$ lerna exec --parallel -- babel src -d lib -w\n```\n\n> **Note:** It is advised to constrain the scope of this command when using\n> the `--parallel` flag, as spawning dozens of subprocesses may be\n> harmful to your shell's equanimity (or maximum file descriptor limit,\n> for example). YMMV\n\n### `--no-bail`\n\n```sh\n# Run a command, ignoring non-zero (error) exit codes\n$ lerna exec --no-bail <command>\n```\n\nBy default, `lerna exec` will exit with an error if _any_ execution returns a non-zero exit code.\nPass `--no-bail` to disable this behavior, executing in _all_ packages regardless of exit code.\n\n### `--no-prefix`\n\nDisable package name prefixing when output is streaming (`--stream` _or_ `--parallel`).\nThis option can be useful when piping results to other processes, such as editor plugins.\n\n### `--profile`\n\nProfiles the command executions and produces a performance profile which can be analyzed using DevTools in a\nChromium-based browser (direct url: `devtools://devtools/bundled/devtools_app.html`). The profile shows a timeline of\nthe command executions where each execution is assigned to an open slot. The number of slots is determined by the\n`--concurrency` option and the number of open slots is determined by `--concurrency` minus the number of ongoing\noperations. The end result is a visualization of the parallel execution of your commands.\n\nThe default location of the performance profile output is at the root of your project.\n\n```sh\n$ lerna exec --profile -- <command>\n```\n\n> **Note:** Lerna will only profile when topological sorting is enabled (i.e. without `--parallel` and `--no-sort`).\n\n### `--profile-location <location>`\n\nYou can provide a custom location for the performance profile output. The path provided will be resolved relative to the current working directory.\n\n```sh\n$ lerna exec --profile --profile-location=logs/profile/ -- <command>\n```\n","engines":{"node":"^14.15.0 || >=16.0.0"},"gitHead":"329eb99e3080cc4d5de53960a7d0421091b08782","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/undefined/node@v16.15.0+arm64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"16.15.0","dependencies":{"p-map":"^4.0.0","@lerna/command":"6.3.1-beta.1","@lerna/profiler":"6.3.1-beta.1","@lerna/child-process":"6.3.1-beta.1","@lerna/filter-options":"6.3.1-beta.1","@lerna/validation-error":"6.3.1-beta.1","@lerna/run-topologically":"6.3.1-beta.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/exec_6.3.1-beta.1_1672142978574_0.6248075250559832","host":"s3://npm-registry-packages"}},"6.3.1-beta.2":{"name":"@lerna/exec","version":"6.3.1-beta.2","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@6.3.1-beta.2","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://lerna.js.org","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"3c0c12cf66a56b247dda55fb0c278828b06abe64","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-6.3.1-beta.2.tgz","fileCount":5,"integrity":"sha512-IzFUmew60OikSitjD/I6kYkNs8yAeM+ObHnwMlzZGSc4646NZbYOrF9Ik52FK/OZlw41DQSMtYTstvpubtWgDw==","signatures":[{"sig":"MEUCIB1D8j51ZwUPm9w+U9Up/fcQCcic/g2oBP7qxKUjpixoAiEAwXMZMDmq0rHqFQCiGRpW8wgAkNsGjeCky/R0UInd4t0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13226,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjquKHACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpeyxAAn5efYmg3uymdgG7W3djbqmyaDtVTzs+BbM7bsgVPrSc/ZIg6\r\nUoABk0QZszsc3GtiPjzd4qDv7rydRNDCTXvxr7sWu2/cMhozpi6AJxCyaUYz\r\n0dCJ2YlV+2Wg32A0EdiWI2fwFlE3eJzPr2WUhd7xdq8FWZWiExhc2RQSRu8b\r\nDFBTyFopXk4oDCpKDlF1/wz4FaDjKeRtnpvDWDR8mzklJIdFNMY7ZugdHpUi\r\nb4rq0aBGZAj64oVhrPUiP6vdORrZPoxGGGlUGdRdZMRIONYtlm/VVY5oeFk3\r\nKUPuhR9l5oriGVzqLJlncAuXN6z35x0P3GBGQpRmTWrEwgjkEd16qEB0Bbnq\r\n6aqKXrMoXVM4XCa46mm8miSH9WM6/1BTCm66LzKRsJHcrNbXQpCSXIZ8XKLV\r\nFjtalCqCHvG8dvqnYpSlBak4EnJTMHrkaIzNTABJ6NUGVcVrtztT7YBHZU+a\r\n8ggJ0I4g7Ja1Gljj3kpV3w3giqzRXAw3EW/fkb2CrXfLZxcrd3LyhjrHamIN\r\niw0QyAeL28CCwNuUhA3IxiRfZZX1gySsTMeB0m9Jj6Q8ighGR6iMR4hQP8FN\r\nipNP3aFMMLY6RMTwOrIcxvbaNgZQOG7zZZMsiLhAXMgUzOlUnWlRoOQ0/83B\r\n0Wy9Z+gz9ISSP1ueVkXglWkV0XXq9mbf2JE=\r\n=tpmU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","readme":"# `@lerna/exec`\n\n> Execute an arbitrary command in each package\n\nInstall [lerna](https://www.npmjs.com/package/lerna) for access to the `lerna` CLI.\n\n## Usage\n\n```sh\n$ lerna exec -- <command> [..args] # runs the command in all packages\n$ lerna exec -- rm -rf ./node_modules\n$ lerna exec -- protractor conf.js\n```\n\nRun an arbitrary command in each package.\nA double-dash (`--`) is necessary to pass dashed flags to the spawned command, but is not necessary when all the arguments are positional.\n\nThe name of the current package is available through the environment variable `LERNA_PACKAGE_NAME`:\n\n```sh\n$ lerna exec -- npm view \\$LERNA_PACKAGE_NAME\n```\n\nYou may also run a script located in the root dir, in a complicated dir structure through the environment variable `LERNA_ROOT_PATH`:\n\n```sh\n$ lerna exec -- node \\$LERNA_ROOT_PATH/scripts/some-script.js\n```\n\n## Options\n\n`lerna exec` accepts all [filter flags](https://www.npmjs.com/package/@lerna/filter-options).\n\n```sh\n$ lerna exec --scope my-component -- ls -la\n```\n\n> The commands are spawned in parallel, using the concurrency given (except with `--parallel`).\n> The output is piped through, so not deterministic.\n> If you want to run the command in one package after another, use it like this:\n\n```sh\n$ lerna exec --concurrency 1 -- ls -la\n```\n\n### `--stream`\n\nStream output from child processes immediately, prefixed with the originating\npackage name. This allows output from different packages to be interleaved.\n\n```sh\n$ lerna exec --stream -- babel src -d lib\n```\n\n### `--parallel`\n\nSimilar to `--stream`, but completely disregards concurrency and topological sorting, running a given command or script immediately in all matching packages with prefixed streaming output. This is the preferred flag for long-running processes such as `babel src -d lib -w` run over many packages.\n\n```sh\n$ lerna exec --parallel -- babel src -d lib -w\n```\n\n> **Note:** It is advised to constrain the scope of this command when using\n> the `--parallel` flag, as spawning dozens of subprocesses may be\n> harmful to your shell's equanimity (or maximum file descriptor limit,\n> for example). YMMV\n\n### `--no-bail`\n\n```sh\n# Run a command, ignoring non-zero (error) exit codes\n$ lerna exec --no-bail <command>\n```\n\nBy default, `lerna exec` will exit with an error if _any_ execution returns a non-zero exit code.\nPass `--no-bail` to disable this behavior, executing in _all_ packages regardless of exit code.\n\n### `--no-prefix`\n\nDisable package name prefixing when output is streaming (`--stream` _or_ `--parallel`).\nThis option can be useful when piping results to other processes, such as editor plugins.\n\n### `--profile`\n\nProfiles the command executions and produces a performance profile which can be analyzed using DevTools in a\nChromium-based browser (direct url: `devtools://devtools/bundled/devtools_app.html`). The profile shows a timeline of\nthe command executions where each execution is assigned to an open slot. The number of slots is determined by the\n`--concurrency` option and the number of open slots is determined by `--concurrency` minus the number of ongoing\noperations. The end result is a visualization of the parallel execution of your commands.\n\nThe default location of the performance profile output is at the root of your project.\n\n```sh\n$ lerna exec --profile -- <command>\n```\n\n> **Note:** Lerna will only profile when topological sorting is enabled (i.e. without `--parallel` and `--no-sort`).\n\n### `--profile-location <location>`\n\nYou can provide a custom location for the performance profile output. The path provided will be resolved relative to the current working directory.\n\n```sh\n$ lerna exec --profile --profile-location=logs/profile/ -- <command>\n```\n","engines":{"node":"^14.15.0 || >=16.0.0"},"gitHead":"329eb99e3080cc4d5de53960a7d0421091b08782","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/undefined/node@v16.15.0+arm64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"16.15.0","dependencies":{"p-map":"^4.0.0","@lerna/command":"6.3.1-beta.2","@lerna/profiler":"6.3.1-beta.2","@lerna/child-process":"6.3.1-beta.2","@lerna/filter-options":"6.3.1-beta.2","@lerna/validation-error":"6.3.1-beta.2","@lerna/run-topologically":"6.3.1-beta.2"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/exec_6.3.1-beta.2_1672143495779_0.039006219988191315","host":"s3://npm-registry-packages"}},"6.3.1-beta.3":{"name":"@lerna/exec","version":"6.3.1-beta.3","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@6.3.1-beta.3","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://lerna.js.org","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"80a15823b41946a2d895019dc618780fd29b1365","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-6.3.1-beta.3.tgz","fileCount":5,"integrity":"sha512-khc483wVu8NflRDScLKd0cEkq8jPIRLFfN7Pwb5KxNYP66qGcvdyJysP6khnvcYPwZNm8EiNJ3SfQCviy4FnFQ==","signatures":[{"sig":"MEUCIQCNB1qlgzUxynMBUYKStyb9P8AH7itJe44ZM946kkHt/gIgI0XacHZdlvwg5cmscFMtjli+dvMDqMwJfdyA2l3lW2Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13226,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjquQWACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp8gxAAoIHdjYYZlzEgE2SS8MBIviGtakEfyp1gOALqispWAO3zfPsi\r\n+Ee0dYZFtbgfC0LoDwHqV8macU1PE8RASoD77OpKJTiAt/eUeYz4mj4FArew\r\nXlJPXz6C0jXU7U8Anipkx6foulDwcO8bbU1RfD+wAUG5yhsNU6HAEMRDLW0I\r\nq/Crv4RIpLre+0p7iN0VMQLS3AAUs6qLpBnFzwFc98rOh7jazP3U3LGd4O5g\r\nC0tY465ZaKAGoqq2AfsNoxzc+RlzhzvvZ8dH2VQBIyfCqr+K+gDByK1CQtBO\r\nqlXwpfwWlK/Pvqw6UwO6K4mgczqgHMbDql/EX+YliInfNORsIeIV1fvIYTwk\r\nNRQM7+6dwbB0PUyCKIdkQJny/QSALJRvyddR18kfsYN8+9jlxwlnD4W7XH34\r\nWhPE2sr0p/x1Frsui9SEuJgv52u6AFtz7ZdUtV+ebPxcRxYyUaRMiMa1DOcY\r\nP+yMBvycPcIAx5WuTEfooybfKyM2RncxsAzWF6fYhP75Wx6ocD4hdIL1fk6f\r\nA4Wdnf4VYEpPip7DerrKPNKmiGyfLe55wwF1xCVEFlvzrNa3KgvbBOGHK2W/\r\nu/0zJvRMVwqyALHpcmcZXTM8gvWL/1cUg1OYhJb6ujixQtWEItLza3gfMQxA\r\nEV5QvqhCxxnZOt97bMh7G5qOJJWF/jaZfZY=\r\n=1yIp\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","readme":"# `@lerna/exec`\n\n> Execute an arbitrary command in each package\n\nInstall [lerna](https://www.npmjs.com/package/lerna) for access to the `lerna` CLI.\n\n## Usage\n\n```sh\n$ lerna exec -- <command> [..args] # runs the command in all packages\n$ lerna exec -- rm -rf ./node_modules\n$ lerna exec -- protractor conf.js\n```\n\nRun an arbitrary command in each package.\nA double-dash (`--`) is necessary to pass dashed flags to the spawned command, but is not necessary when all the arguments are positional.\n\nThe name of the current package is available through the environment variable `LERNA_PACKAGE_NAME`:\n\n```sh\n$ lerna exec -- npm view \\$LERNA_PACKAGE_NAME\n```\n\nYou may also run a script located in the root dir, in a complicated dir structure through the environment variable `LERNA_ROOT_PATH`:\n\n```sh\n$ lerna exec -- node \\$LERNA_ROOT_PATH/scripts/some-script.js\n```\n\n## Options\n\n`lerna exec` accepts all [filter flags](https://www.npmjs.com/package/@lerna/filter-options).\n\n```sh\n$ lerna exec --scope my-component -- ls -la\n```\n\n> The commands are spawned in parallel, using the concurrency given (except with `--parallel`).\n> The output is piped through, so not deterministic.\n> If you want to run the command in one package after another, use it like this:\n\n```sh\n$ lerna exec --concurrency 1 -- ls -la\n```\n\n### `--stream`\n\nStream output from child processes immediately, prefixed with the originating\npackage name. This allows output from different packages to be interleaved.\n\n```sh\n$ lerna exec --stream -- babel src -d lib\n```\n\n### `--parallel`\n\nSimilar to `--stream`, but completely disregards concurrency and topological sorting, running a given command or script immediately in all matching packages with prefixed streaming output. This is the preferred flag for long-running processes such as `babel src -d lib -w` run over many packages.\n\n```sh\n$ lerna exec --parallel -- babel src -d lib -w\n```\n\n> **Note:** It is advised to constrain the scope of this command when using\n> the `--parallel` flag, as spawning dozens of subprocesses may be\n> harmful to your shell's equanimity (or maximum file descriptor limit,\n> for example). YMMV\n\n### `--no-bail`\n\n```sh\n# Run a command, ignoring non-zero (error) exit codes\n$ lerna exec --no-bail <command>\n```\n\nBy default, `lerna exec` will exit with an error if _any_ execution returns a non-zero exit code.\nPass `--no-bail` to disable this behavior, executing in _all_ packages regardless of exit code.\n\n### `--no-prefix`\n\nDisable package name prefixing when output is streaming (`--stream` _or_ `--parallel`).\nThis option can be useful when piping results to other processes, such as editor plugins.\n\n### `--profile`\n\nProfiles the command executions and produces a performance profile which can be analyzed using DevTools in a\nChromium-based browser (direct url: `devtools://devtools/bundled/devtools_app.html`). The profile shows a timeline of\nthe command executions where each execution is assigned to an open slot. The number of slots is determined by the\n`--concurrency` option and the number of open slots is determined by `--concurrency` minus the number of ongoing\noperations. The end result is a visualization of the parallel execution of your commands.\n\nThe default location of the performance profile output is at the root of your project.\n\n```sh\n$ lerna exec --profile -- <command>\n```\n\n> **Note:** Lerna will only profile when topological sorting is enabled (i.e. without `--parallel` and `--no-sort`).\n\n### `--profile-location <location>`\n\nYou can provide a custom location for the performance profile output. The path provided will be resolved relative to the current working directory.\n\n```sh\n$ lerna exec --profile --profile-location=logs/profile/ -- <command>\n```\n","engines":{"node":"^14.15.0 || >=16.0.0"},"gitHead":"329eb99e3080cc4d5de53960a7d0421091b08782","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/undefined/node@v16.15.0+arm64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"16.15.0","dependencies":{"p-map":"^4.0.0","@lerna/command":"6.3.1-beta.3","@lerna/profiler":"6.3.1-beta.3","@lerna/child-process":"6.3.1-beta.3","@lerna/filter-options":"6.3.1-beta.3","@lerna/validation-error":"6.3.1-beta.3","@lerna/run-topologically":"6.3.1-beta.3"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/exec_6.3.1-beta.3_1672143894068_0.8734367534238634","host":"s3://npm-registry-packages"}},"6.3.1-beta.4":{"name":"@lerna/exec","version":"6.3.1-beta.4","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@6.3.1-beta.4","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://lerna.js.org","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"f52188eec3ee34cd1716e1685238951743891dee","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-6.3.1-beta.4.tgz","fileCount":5,"integrity":"sha512-pWos6PojJqs1vBXHPMBgeb401Mm0bP0lj/csi7lRiNQmpDy3HSZK/ssm2MshzETuF7jigYbQGIZ/p7HbmoH+Dg==","signatures":[{"sig":"MEYCIQCb47MLpXMbaHzUDj1FBHz0vmjRdL26S1nww5g8uz3+6QIhAL6k4HSkermeQ2SG+6ewPVOSbCgzYi7CTaiyzlfSYWOh","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13261,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjqueSACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo8Kg//b4YN307yfC5o0EC+MaeHiwwZUQUYQgeQDR9BmpAYRFBSDYsj\r\nOr/WNphWSUO8CbhnrMn0CCMznMB++2YXj2XdQoACPonOvsuzGXSV8tIQdCrG\r\nPB5e87AJCwNPFkNlrX8rXuNimoVd/SSeC2IXBXbCex8tzFnXGZZEBQxL2/tl\r\n+p9xJWj4kwVT8P3NtXkRYqpcYSsx/oxDZKK3aA2OEd+Rfl15J8aI282FXh+h\r\nQi4ggCFGC+mSoNQJUkUbaSn5umE7a0lEddQfpPqtM0p17sys9/vA8j75B8RU\r\n+ehUfqYKelMpofVhyUp6G2pOjYg+1mUmYku8vJIjArAHQ+p+mC7Ko5rne4R5\r\nTTdzCklURzO4R592pnmQOj15piI7kFFQENHNu2nLKWubgGBGfo58a6gxvxBy\r\nU5CFn6QK7MrvyxHxUZNvFWJAsy8sf+CB8J8u24cUDHePUIh5UEMFxz8QcqKD\r\nnBUGPQtErIuWEYZuNQpIlfpjAIicVdyrrtYqt8qOzt1wknkZGlJlbjWzflRq\r\nnNjDDanXhJ704LZnMfJCfUQFb0Ll6AeRgGFaGrq7Ju40waMYK3jhWzR9vyVY\r\nsTzFgEme5lVLGcoj0sqABtiwXvuA+2FeyC4YZ2QMatVCcEAL6VFwiMvq9/ds\r\ns/ZgFu7rACAsHga8ed3cUGvoJoXoaWSs0s0=\r\n=kk+s\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","readme":"# `@lerna/exec`\n\n> Execute an arbitrary command in each package\n\nInstall [lerna](https://www.npmjs.com/package/lerna) for access to the `lerna` CLI.\n\n## Usage\n\n```sh\n$ lerna exec -- <command> [..args] # runs the command in all packages\n$ lerna exec -- rm -rf ./node_modules\n$ lerna exec -- protractor conf.js\n```\n\nRun an arbitrary command in each package.\nA double-dash (`--`) is necessary to pass dashed flags to the spawned command, but is not necessary when all the arguments are positional.\n\nThe name of the current package is available through the environment variable `LERNA_PACKAGE_NAME`:\n\n```sh\n$ lerna exec -- npm view \\$LERNA_PACKAGE_NAME\n```\n\nYou may also run a script located in the root dir, in a complicated dir structure through the environment variable `LERNA_ROOT_PATH`:\n\n```sh\n$ lerna exec -- node \\$LERNA_ROOT_PATH/scripts/some-script.js\n```\n\n## Options\n\n`lerna exec` accepts all [filter flags](https://www.npmjs.com/package/@lerna/filter-options).\n\n```sh\n$ lerna exec --scope my-component -- ls -la\n```\n\n> The commands are spawned in parallel, using the concurrency given (except with `--parallel`).\n> The output is piped through, so not deterministic.\n> If you want to run the command in one package after another, use it like this:\n\n```sh\n$ lerna exec --concurrency 1 -- ls -la\n```\n\n### `--stream`\n\nStream output from child processes immediately, prefixed with the originating\npackage name. This allows output from different packages to be interleaved.\n\n```sh\n$ lerna exec --stream -- babel src -d lib\n```\n\n### `--parallel`\n\nSimilar to `--stream`, but completely disregards concurrency and topological sorting, running a given command or script immediately in all matching packages with prefixed streaming output. This is the preferred flag for long-running processes such as `babel src -d lib -w` run over many packages.\n\n```sh\n$ lerna exec --parallel -- babel src -d lib -w\n```\n\n> **Note:** It is advised to constrain the scope of this command when using\n> the `--parallel` flag, as spawning dozens of subprocesses may be\n> harmful to your shell's equanimity (or maximum file descriptor limit,\n> for example). YMMV\n\n### `--no-bail`\n\n```sh\n# Run a command, ignoring non-zero (error) exit codes\n$ lerna exec --no-bail <command>\n```\n\nBy default, `lerna exec` will exit with an error if _any_ execution returns a non-zero exit code.\nPass `--no-bail` to disable this behavior, executing in _all_ packages regardless of exit code.\n\n### `--no-prefix`\n\nDisable package name prefixing when output is streaming (`--stream` _or_ `--parallel`).\nThis option can be useful when piping results to other processes, such as editor plugins.\n\n### `--profile`\n\nProfiles the command executions and produces a performance profile which can be analyzed using DevTools in a\nChromium-based browser (direct url: `devtools://devtools/bundled/devtools_app.html`). The profile shows a timeline of\nthe command executions where each execution is assigned to an open slot. The number of slots is determined by the\n`--concurrency` option and the number of open slots is determined by `--concurrency` minus the number of ongoing\noperations. The end result is a visualization of the parallel execution of your commands.\n\nThe default location of the performance profile output is at the root of your project.\n\n```sh\n$ lerna exec --profile -- <command>\n```\n\n> **Note:** Lerna will only profile when topological sorting is enabled (i.e. without `--parallel` and `--no-sort`).\n\n### `--profile-location <location>`\n\nYou can provide a custom location for the performance profile output. The path provided will be resolved relative to the current working directory.\n\n```sh\n$ lerna exec --profile --profile-location=logs/profile/ -- <command>\n```\n","engines":{"node":"^14.15.0 || >=16.0.0"},"gitHead":"329eb99e3080cc4d5de53960a7d0421091b08782","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/undefined/node@v16.15.0+arm64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"16.15.0","dependencies":{"p-map":"^4.0.0","@lerna/command":"6.3.1-beta.4","@lerna/profiler":"file:../../utils/profiler","@lerna/child-process":"6.3.1-beta.4","@lerna/filter-options":"6.3.1-beta.4","@lerna/validation-error":"6.3.1-beta.4","@lerna/run-topologically":"file:../../utils/run-topologically"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/exec_6.3.1-beta.4_1672144785911_0.8831020956000588","host":"s3://npm-registry-packages"}},"6.3.1-beta.5":{"name":"@lerna/exec","version":"6.3.1-beta.5","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@6.3.1-beta.5","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://lerna.js.org","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"c9d2a54ff7fa871eb45e1215c28f31f45cf1f730","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-6.3.1-beta.5.tgz","fileCount":5,"integrity":"sha512-+YwGqHHQBRdflwtPF/l2Oq07IaTUleTibfM1qXcLJgbB3eAlmUkLRWmeEHbFnoSjE7VlQZfQmfYQG7Mt8YrhNw==","signatures":[{"sig":"MEUCIQCj8Pli4qAwxPvQ4U7HfknCqo7y+LMmElR+FnXnkRTjrAIgOnlrS9hcpKnA+P5jQh4VejgwCmULoowgCktRAuCsdCA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13226,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjquuUACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmriEQ/5AEf5VqLMdoTloK+ciebIkeC+9ozBpWgLy0nMX2Ics3zbcL4Z\r\nNf90HY0Ct2VfXUeGotULEZws8jGnENgb0jcKgIN/28u75cprGB14V4tOpi0v\r\nBY8BuSNrZDL0jmp8bID1KVdnqXlJvIDpcpQ6Qj1kytPSBruW4vgEvKHCHuug\r\nK0hE7C+ZmTmLhm6rI5tJS1Qdfz0nDAQyed9qjnTFFS1U3nddFP0nlTARxpTU\r\n1owRWc9yugzr4m60d+kpT3tQScyFMANod7ruBRTSe+N1C5NkcxvWRck1Q5AZ\r\nemdsthh9nwvxk6/7moa8AnXDH9vPd0QUJp/3GqBph/aljgk9D8qieHHBTR/V\r\nSzgwWSKVpjiT2ubas1wtlsGyL0GM1SITCDBOP58sKH4135sN3bbbligQyOME\r\nkZ60dIS9ZLuOKag+rmSgM4O9NQnuA2fqARvY2uZjJbSi+i2fnGBNexTMAD8S\r\n6K6Cql/5bx9mkmcgHvutpOpJemYNkAp4Ni6cCMB8Bs9bdnvsgrXnw+vWwCvN\r\nQFTuxQTnRw5f+kNxyNEkW7ZA+WBdKF90GAzqplglr2IDx+1kWqk38DOPbirk\r\nmKxuSZ0i7zOPIuBuLz4ue4AL8SUdxBjH61chAtTp2Jwc55hp9Atnj9I4IX3H\r\noNzP896crw7qpKw/d1VduKiou2kUIpwmZvI=\r\n=PVEL\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","readme":"# `@lerna/exec`\n\n> Execute an arbitrary command in each package\n\nInstall [lerna](https://www.npmjs.com/package/lerna) for access to the `lerna` CLI.\n\n## Usage\n\n```sh\n$ lerna exec -- <command> [..args] # runs the command in all packages\n$ lerna exec -- rm -rf ./node_modules\n$ lerna exec -- protractor conf.js\n```\n\nRun an arbitrary command in each package.\nA double-dash (`--`) is necessary to pass dashed flags to the spawned command, but is not necessary when all the arguments are positional.\n\nThe name of the current package is available through the environment variable `LERNA_PACKAGE_NAME`:\n\n```sh\n$ lerna exec -- npm view \\$LERNA_PACKAGE_NAME\n```\n\nYou may also run a script located in the root dir, in a complicated dir structure through the environment variable `LERNA_ROOT_PATH`:\n\n```sh\n$ lerna exec -- node \\$LERNA_ROOT_PATH/scripts/some-script.js\n```\n\n## Options\n\n`lerna exec` accepts all [filter flags](https://www.npmjs.com/package/@lerna/filter-options).\n\n```sh\n$ lerna exec --scope my-component -- ls -la\n```\n\n> The commands are spawned in parallel, using the concurrency given (except with `--parallel`).\n> The output is piped through, so not deterministic.\n> If you want to run the command in one package after another, use it like this:\n\n```sh\n$ lerna exec --concurrency 1 -- ls -la\n```\n\n### `--stream`\n\nStream output from child processes immediately, prefixed with the originating\npackage name. This allows output from different packages to be interleaved.\n\n```sh\n$ lerna exec --stream -- babel src -d lib\n```\n\n### `--parallel`\n\nSimilar to `--stream`, but completely disregards concurrency and topological sorting, running a given command or script immediately in all matching packages with prefixed streaming output. This is the preferred flag for long-running processes such as `babel src -d lib -w` run over many packages.\n\n```sh\n$ lerna exec --parallel -- babel src -d lib -w\n```\n\n> **Note:** It is advised to constrain the scope of this command when using\n> the `--parallel` flag, as spawning dozens of subprocesses may be\n> harmful to your shell's equanimity (or maximum file descriptor limit,\n> for example). YMMV\n\n### `--no-bail`\n\n```sh\n# Run a command, ignoring non-zero (error) exit codes\n$ lerna exec --no-bail <command>\n```\n\nBy default, `lerna exec` will exit with an error if _any_ execution returns a non-zero exit code.\nPass `--no-bail` to disable this behavior, executing in _all_ packages regardless of exit code.\n\n### `--no-prefix`\n\nDisable package name prefixing when output is streaming (`--stream` _or_ `--parallel`).\nThis option can be useful when piping results to other processes, such as editor plugins.\n\n### `--profile`\n\nProfiles the command executions and produces a performance profile which can be analyzed using DevTools in a\nChromium-based browser (direct url: `devtools://devtools/bundled/devtools_app.html`). The profile shows a timeline of\nthe command executions where each execution is assigned to an open slot. The number of slots is determined by the\n`--concurrency` option and the number of open slots is determined by `--concurrency` minus the number of ongoing\noperations. The end result is a visualization of the parallel execution of your commands.\n\nThe default location of the performance profile output is at the root of your project.\n\n```sh\n$ lerna exec --profile -- <command>\n```\n\n> **Note:** Lerna will only profile when topological sorting is enabled (i.e. without `--parallel` and `--no-sort`).\n\n### `--profile-location <location>`\n\nYou can provide a custom location for the performance profile output. The path provided will be resolved relative to the current working directory.\n\n```sh\n$ lerna exec --profile --profile-location=logs/profile/ -- <command>\n```\n","engines":{"node":"^14.15.0 || >=16.0.0"},"gitHead":"329eb99e3080cc4d5de53960a7d0421091b08782","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/undefined/node@v16.15.0+arm64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"16.15.0","dependencies":{"p-map":"^4.0.0","@lerna/command":"6.3.1-beta.5","@lerna/profiler":"6.3.1-beta.5","@lerna/child-process":"6.3.1-beta.5","@lerna/filter-options":"6.3.1-beta.5","@lerna/validation-error":"6.3.1-beta.5","@lerna/run-topologically":"6.3.1-beta.5"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/exec_6.3.1-beta.5_1672145811999_0.561350532659467","host":"s3://npm-registry-packages"}},"6.3.1-beta.6":{"name":"@lerna/exec","version":"6.3.1-beta.6","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@6.3.1-beta.6","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://lerna.js.org","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"ffd9fd99867a12010d2e17a2a4cfd6d9b328c525","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-6.3.1-beta.6.tgz","fileCount":5,"integrity":"sha512-ypKbTzUy2oTTeIWYFrL2RbPzMOFQifX/lFvA2JFBaP4AJ6FCX0w6tPPdrsBb/sFTRcpPTm+fRXUMuX8sULVKfA==","signatures":[{"sig":"MEYCIQC8XVrSK96RpfjYXJVS/iMc/7o4rRqYpjmSL5IDqkFOQAIhAOVUreXE9mFtGKnKjoUCTSOTnQcgyu5886qjwkHyzF1X","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13226,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjqu5YACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo9mg/8DEro69DBzjvRotUsnqR92oatGdJAVtqicM7Ty+qefsrrPKWQ\r\neufdtSWxlMV8+qax/q48v5sJBaKAscGW9L8+gE4hWVuaIWsQdQgC8OEPdFBK\r\niMF6ni5Q9FIVTctwToqq8efn4p8l5U3u/M5e6UVxc4fHt41Ci6LoVZkJYwXw\r\nhfvGD+LgfsWyCkk7nk1gpTIDGZpcl+Lh3F6YDT7lySWHNQRh2SLEH5OIixeh\r\n1WFrvr68u0FWY5bgiS4hxjY+lOwA8KgYqQwOydjdxTr/cXFpTurwhPEb+7mt\r\n9PmcrhSR3gKoCvNRhp5iBKb7lNkpKjQ6tCnncqt37lCTdsaS2vJ6xZ14lZY4\r\nRw3Z8Of7dd7NUCXkzNdN+mAdBDtG1aFopKcRxlrHZzwvPWkYjOUSdi4T7C1A\r\nuLUmVFD8nIot9i8w00f65qzCopzqkeny7b+rY3Uob958wfrFm1ejG6cLa5/r\r\nEkOjR/1lRwBnom5XIUJ8A7wxivicD1KKSSVxqfAcHKYBIqpX52n5GD6/V/tm\r\npFX+Lll69mV4vFUwFg2hT6/+hBS17Gckpa/lS65Z+zu5jsbspyz4F/iP5QcV\r\nurN9h/brLzM/BJMb3dg6HhAkNKx5/okTBm8jopAL9mQ8LACp4hYVjY5/N9ug\r\nSfHxYdXJCv6UFd6Y77hvI7n9RX3oNrAA2sE=\r\n=aH1m\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","readme":"# `@lerna/exec`\n\n> Execute an arbitrary command in each package\n\nInstall [lerna](https://www.npmjs.com/package/lerna) for access to the `lerna` CLI.\n\n## Usage\n\n```sh\n$ lerna exec -- <command> [..args] # runs the command in all packages\n$ lerna exec -- rm -rf ./node_modules\n$ lerna exec -- protractor conf.js\n```\n\nRun an arbitrary command in each package.\nA double-dash (`--`) is necessary to pass dashed flags to the spawned command, but is not necessary when all the arguments are positional.\n\nThe name of the current package is available through the environment variable `LERNA_PACKAGE_NAME`:\n\n```sh\n$ lerna exec -- npm view \\$LERNA_PACKAGE_NAME\n```\n\nYou may also run a script located in the root dir, in a complicated dir structure through the environment variable `LERNA_ROOT_PATH`:\n\n```sh\n$ lerna exec -- node \\$LERNA_ROOT_PATH/scripts/some-script.js\n```\n\n## Options\n\n`lerna exec` accepts all [filter flags](https://www.npmjs.com/package/@lerna/filter-options).\n\n```sh\n$ lerna exec --scope my-component -- ls -la\n```\n\n> The commands are spawned in parallel, using the concurrency given (except with `--parallel`).\n> The output is piped through, so not deterministic.\n> If you want to run the command in one package after another, use it like this:\n\n```sh\n$ lerna exec --concurrency 1 -- ls -la\n```\n\n### `--stream`\n\nStream output from child processes immediately, prefixed with the originating\npackage name. This allows output from different packages to be interleaved.\n\n```sh\n$ lerna exec --stream -- babel src -d lib\n```\n\n### `--parallel`\n\nSimilar to `--stream`, but completely disregards concurrency and topological sorting, running a given command or script immediately in all matching packages with prefixed streaming output. This is the preferred flag for long-running processes such as `babel src -d lib -w` run over many packages.\n\n```sh\n$ lerna exec --parallel -- babel src -d lib -w\n```\n\n> **Note:** It is advised to constrain the scope of this command when using\n> the `--parallel` flag, as spawning dozens of subprocesses may be\n> harmful to your shell's equanimity (or maximum file descriptor limit,\n> for example). YMMV\n\n### `--no-bail`\n\n```sh\n# Run a command, ignoring non-zero (error) exit codes\n$ lerna exec --no-bail <command>\n```\n\nBy default, `lerna exec` will exit with an error if _any_ execution returns a non-zero exit code.\nPass `--no-bail` to disable this behavior, executing in _all_ packages regardless of exit code.\n\n### `--no-prefix`\n\nDisable package name prefixing when output is streaming (`--stream` _or_ `--parallel`).\nThis option can be useful when piping results to other processes, such as editor plugins.\n\n### `--profile`\n\nProfiles the command executions and produces a performance profile which can be analyzed using DevTools in a\nChromium-based browser (direct url: `devtools://devtools/bundled/devtools_app.html`). The profile shows a timeline of\nthe command executions where each execution is assigned to an open slot. The number of slots is determined by the\n`--concurrency` option and the number of open slots is determined by `--concurrency` minus the number of ongoing\noperations. The end result is a visualization of the parallel execution of your commands.\n\nThe default location of the performance profile output is at the root of your project.\n\n```sh\n$ lerna exec --profile -- <command>\n```\n\n> **Note:** Lerna will only profile when topological sorting is enabled (i.e. without `--parallel` and `--no-sort`).\n\n### `--profile-location <location>`\n\nYou can provide a custom location for the performance profile output. The path provided will be resolved relative to the current working directory.\n\n```sh\n$ lerna exec --profile --profile-location=logs/profile/ -- <command>\n```\n","engines":{"node":"^14.15.0 || >=16.0.0"},"gitHead":"329eb99e3080cc4d5de53960a7d0421091b08782","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/undefined/node@v16.15.0+arm64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"16.15.0","dependencies":{"p-map":"^4.0.0","@lerna/command":"6.3.1-beta.6","@lerna/profiler":"6.3.1-beta.6","@lerna/child-process":"6.3.1-beta.6","@lerna/filter-options":"6.3.1-beta.6","@lerna/validation-error":"6.3.1-beta.6","@lerna/run-topologically":"6.3.1-beta.6"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/exec_6.3.1-beta.6_1672146520535_0.2972264581132522","host":"s3://npm-registry-packages"}},"6.3.1-beta.8":{"name":"@lerna/exec","version":"6.3.1-beta.8","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@6.3.1-beta.8","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://lerna.js.org","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"66b9efad51a533c040806f096ebf92cf2c2710b2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-6.3.1-beta.8.tgz","fileCount":5,"integrity":"sha512-4RIyDcK2YTmcYC2CrSbEvpq2F2rRL1gEGdtLzmhNPHi/VnNEGs1RM9RM0inx2T1GmkMTKsO/Q+y6Cp30JAZIrQ==","signatures":[{"sig":"MEUCIQC07Byne1svszl5wDlwRikSTvbImPmBHGSGJGNE3uO7xAIgNze+JN7qwhVaUoFLXE0b4LWRap6GBibDvotAUUmgNxE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13226,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjqvAWACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqZZQ//W8Rj+LoO0IMPEdy5xfEsiGayEaPdUwg+6kLzjfcvCCpQ4fZZ\r\nD/AonP7z7c+joIdRW/ORUlOzlg5tu37tGeBtWlzzAD7dctIJNIvNL2ceBxKl\r\nflsjiX/Zclg7iBQVZyxd60Zt5TYhESWCGsIeVw3lboaL+Ypm3XRdTQiPdW0x\r\nmZhKm2n0AEWPxE2HmIOWn6PEiMbIE9SCzGTA3w4CaX07w8mYY7A6tP3MIn+z\r\nwhis9ksuTCU1dya3hKceWJQ25URusrZ9yZ7qiyT1W4BmwCTxaDY59xOU+liv\r\nkzArTvQkgH5VlH/Jzz3nxBzrCXsbrblhxUoqFzl9ym7AE23N5CNJgQsZsKIN\r\nxRQvdsbOYkZIipi6Pwe9fispyfEWaCbw70P+R5oAYkdqHSSfJ6TWnGG+vBc+\r\nxnAwfJsNJNfE/7+DUdt+QdI8+VOtv5mZ7E4nrJS6O3yD3Pyy+ZoaiZE5pq3o\r\nCNZh5lx7o+5RATvEEfkDDPopq/aJHqiCvgiMD4iOclJ6oY0GfsHgwMsL+32b\r\nC+Ci2mkK8wQnXwcVFu3I39ld9elK7SPtIxFtm81wxjbbRIkkEjUeGxzAyEI1\r\nbY5HkBKPGYZO+2PkC4JujFs2t3eVo00HCpsLyIsvlFneohJlrBfqxbciotPc\r\n4+h0qQpfxD3FYXBwU9/ZlkHpi2lbX3oMvz0=\r\n=XRy3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","readme":"# `@lerna/exec`\n\n> Execute an arbitrary command in each package\n\nInstall [lerna](https://www.npmjs.com/package/lerna) for access to the `lerna` CLI.\n\n## Usage\n\n```sh\n$ lerna exec -- <command> [..args] # runs the command in all packages\n$ lerna exec -- rm -rf ./node_modules\n$ lerna exec -- protractor conf.js\n```\n\nRun an arbitrary command in each package.\nA double-dash (`--`) is necessary to pass dashed flags to the spawned command, but is not necessary when all the arguments are positional.\n\nThe name of the current package is available through the environment variable `LERNA_PACKAGE_NAME`:\n\n```sh\n$ lerna exec -- npm view \\$LERNA_PACKAGE_NAME\n```\n\nYou may also run a script located in the root dir, in a complicated dir structure through the environment variable `LERNA_ROOT_PATH`:\n\n```sh\n$ lerna exec -- node \\$LERNA_ROOT_PATH/scripts/some-script.js\n```\n\n## Options\n\n`lerna exec` accepts all [filter flags](https://www.npmjs.com/package/@lerna/filter-options).\n\n```sh\n$ lerna exec --scope my-component -- ls -la\n```\n\n> The commands are spawned in parallel, using the concurrency given (except with `--parallel`).\n> The output is piped through, so not deterministic.\n> If you want to run the command in one package after another, use it like this:\n\n```sh\n$ lerna exec --concurrency 1 -- ls -la\n```\n\n### `--stream`\n\nStream output from child processes immediately, prefixed with the originating\npackage name. This allows output from different packages to be interleaved.\n\n```sh\n$ lerna exec --stream -- babel src -d lib\n```\n\n### `--parallel`\n\nSimilar to `--stream`, but completely disregards concurrency and topological sorting, running a given command or script immediately in all matching packages with prefixed streaming output. This is the preferred flag for long-running processes such as `babel src -d lib -w` run over many packages.\n\n```sh\n$ lerna exec --parallel -- babel src -d lib -w\n```\n\n> **Note:** It is advised to constrain the scope of this command when using\n> the `--parallel` flag, as spawning dozens of subprocesses may be\n> harmful to your shell's equanimity (or maximum file descriptor limit,\n> for example). YMMV\n\n### `--no-bail`\n\n```sh\n# Run a command, ignoring non-zero (error) exit codes\n$ lerna exec --no-bail <command>\n```\n\nBy default, `lerna exec` will exit with an error if _any_ execution returns a non-zero exit code.\nPass `--no-bail` to disable this behavior, executing in _all_ packages regardless of exit code.\n\n### `--no-prefix`\n\nDisable package name prefixing when output is streaming (`--stream` _or_ `--parallel`).\nThis option can be useful when piping results to other processes, such as editor plugins.\n\n### `--profile`\n\nProfiles the command executions and produces a performance profile which can be analyzed using DevTools in a\nChromium-based browser (direct url: `devtools://devtools/bundled/devtools_app.html`). The profile shows a timeline of\nthe command executions where each execution is assigned to an open slot. The number of slots is determined by the\n`--concurrency` option and the number of open slots is determined by `--concurrency` minus the number of ongoing\noperations. The end result is a visualization of the parallel execution of your commands.\n\nThe default location of the performance profile output is at the root of your project.\n\n```sh\n$ lerna exec --profile -- <command>\n```\n\n> **Note:** Lerna will only profile when topological sorting is enabled (i.e. without `--parallel` and `--no-sort`).\n\n### `--profile-location <location>`\n\nYou can provide a custom location for the performance profile output. The path provided will be resolved relative to the current working directory.\n\n```sh\n$ lerna exec --profile --profile-location=logs/profile/ -- <command>\n```\n","engines":{"node":"^14.15.0 || >=16.0.0"},"gitHead":"329eb99e3080cc4d5de53960a7d0421091b08782","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/undefined/node@v16.15.0+arm64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"16.15.0","dependencies":{"p-map":"^4.0.0","@lerna/command":"6.3.1-beta.8","@lerna/profiler":"6.3.1-beta.8","@lerna/child-process":"6.3.1-beta.8","@lerna/filter-options":"6.3.1-beta.8","@lerna/validation-error":"6.3.1-beta.8","@lerna/run-topologically":"6.3.1-beta.8"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/exec_6.3.1-beta.8_1672146965856_0.13633085837261305","host":"s3://npm-registry-packages"}},"6.4.0":{"name":"@lerna/exec","version":"6.4.0","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@6.4.0","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://lerna.js.org","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"e025bbd64a6b641f3e647cc87c2db9429fb6c8b3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-6.4.0.tgz","fileCount":5,"integrity":"sha512-AFz5kMoBJtRr5HK5MJIQGnW8Jp4wPFTIYPvxgNvNAFJum9skrk2bfEFUJ/e2G5imd0zSNzm7pZHzRujEcD6tJA==","signatures":[{"sig":"MEUCIQD35VUtQl/4CTv5NiligUP6PPu8II09ZC0HLnXOrUAzSAIgXZKzSdcI5iZQWlgusiIDCp6KMg5Xx2RanQMAscX697Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13177,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjtxbmACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoO2A//Q1xisE9MeLxrvuau24KvFQ4MyKkgt8/RYlKE4YqBcXnWv02P\r\n7lG8wqE0/AaWMtSaVNe3n7rQhmosbKEDBAMr2kGupG7pYOzTgPzBGFlBktHl\r\nRVw18g2zzHapeMZhs5DcS7AisnEYxzb/H6ZqqcaGPtV6e6x8WkCE4Th311+u\r\nncxo2AwxjOe0Ub/O4T5YtPKYNIAp1yDQpjzYS1+osVFQRky12tY8Z7gw0kS0\r\nZgU2R3GWYdbU4cWFgOeEPRRpgpr0lnHrehzs7ibVKpThWv8f1poJxyjVo8lh\r\nnE/OVn5gjhkP9nDHP2ZZXbJ9yFiuJivX1++AwAp62fqxh/ccXj8IReTxqVBR\r\ngNogvn6/3RIFSwWqzh7ROdRbHRhMnwD5rKPLdJ8wftIGAfn6tBy7iE65LPsa\r\n2yj8cVjEnhbqphuufm+Cm2XykNMo9/0ETW06LHQ/+r12puL9wLK5FWCZ1x42\r\nUGf2SkIRTla5QQkRsN94mHHw81B3/hnIho49eMAswfbI+7VYbVer3q4WwziC\r\nqdGilccWusUkvQYsRR/Fnr0HYRu0EVJragtrTWkfKhme9qU/WGgDKovt/LtB\r\n6A2STYpiX9i+IPpqMjdogVG8vTgoWT+Fnu8c41tIy2Y3UjHSdaIsv1QIMiVj\r\nySXzOSc24Rg5fZX1GWGKWmzF3fAf4Octyfg=\r\n=mPKC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":"^14.15.0 || >=16.0.0"},"gitHead":"1053de382bac5c7a5ec1a54d493935eda75e0796","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/6.4.0/node@v16.15.0+arm64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"16.15.0","dependencies":{"p-map":"^4.0.0","@lerna/command":"6.4.0","@lerna/profiler":"6.4.0","@lerna/child-process":"6.4.0","@lerna/filter-options":"6.4.0","@lerna/validation-error":"6.4.0","@lerna/run-topologically":"6.4.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_6.4.0_1672943333976_0.9036618521234141","host":"s3://npm-registry-packages"}},"6.4.1":{"name":"@lerna/exec","version":"6.4.1","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@6.4.1","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://lerna.js.org","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"493ce805b6959e8299ec58fab8d31fd01ed209ba","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-6.4.1.tgz","fileCount":5,"integrity":"sha512-KAWfuZpoyd3FMejHUORd0GORMr45/d9OGAwHitfQPVs4brsxgQFjbbBEEGIdwsg08XhkDb4nl6IYVASVTq9+gA==","signatures":[{"sig":"MEYCIQCD0oDB0MBjFTWg0ecT7YaBoFN48XkGJBrMHorfP+eS6wIhAM7I7D1fpKcjtC20o7wUb1WMETZk2H8coUkkIyhwTT5E","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13177,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjwGGqACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo0Dw/+LvsD2v2svqEvkqVzUCFSeMh6nRih01CYUcGQr4AfbrhZOVpT\r\n31J5nGL0AdFscq9/TMdbh/s9Yq1/0TIhRg8V9aEFJIJsdFC61wx7j2c0RnjM\r\nh8Oj/l4xC8n13mgT6NLkD2CGSSrubhumVUEDQRJlYutD9iJT+pnWBHYUtg/V\r\nqWGEbpPJqy970coVwgiwaDnweel82LD+WJqcWcdH47T5cCyWdJk+NFGEC+NA\r\nMx+i72PbflkjB2YDQtuA3MB1J7CVu+Z4bZJCSqdzZpjiYZbNXD4GJajDbFqQ\r\nrpu+lStYBCBhXwGOaViyhA5TnhEMqo69fqSYjtYtjcSuvjGks2PenvNxh6uN\r\nZds/LdraBN8whBvTAXOPuoTKG221PXPMULym5aQY3ZSrSz1n7jGZmvkIZzeZ\r\nd8Xz0tap9w3Ja+kslpxmD9FEHqWyA1RETKyLTORruTC6o+oLd25DiuuN6N5I\r\ni52+12SBuDx0YT0x+GbQnj2kE8BJgB+lNBGgF8FQTE2ZsAV/WMSrCJpt+Elw\r\ni2G22IsG2hZOHExTtPPko6pm14izFEn81PjuQWUJS2xYjveyjHFCZI4aumv3\r\nHorIWQVx4DQQaiKIR7BtD2Uk9fJ+eIOlhONW8DVuloDVaE5F0G3moSN/hy6J\r\nV7axTLlhR+jN/AVnB2vMU1Ati9p01xnjJH0=\r\n=tBSD\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":"^14.15.0 || >=16.0.0"},"gitHead":"a5217c6b0e06ab1e28845be04a1bdbe4d0c093ab","scripts":{"test":"echo \"Run tests from root\" && exit 1"},"_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"commands/exec"},"_npmVersion":"lerna/6.4.1/node@v16.15.0+arm64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"16.15.0","dependencies":{"p-map":"^4.0.0","@lerna/command":"6.4.1","@lerna/profiler":"6.4.1","@lerna/child-process":"6.4.1","@lerna/filter-options":"6.4.1","@lerna/validation-error":"6.4.1","@lerna/run-topologically":"6.4.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_6.4.1_1673552297923_0.5639802653636983","host":"s3://npm-registry-packages"}},"6.4.2-beta.0":{"name":"@lerna/exec","version":"6.4.2-beta.0","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@6.4.2-beta.0","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://lerna.js.org","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"2f7138884452770a06b240b0df7b0116a0cc93bd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-6.4.2-beta.0.tgz","fileCount":6,"integrity":"sha512-I1+lvFPHOFHpQJXJpM+F5QlGIfhOrp8awvNPufvQgZT+5UeBs2fxS1bSTdDwOtUddvZZSydoyBuRsBaLMkGUYw==","signatures":[{"sig":"MEYCIQCRYW9WkAMjGHFAOrb2CnGshWJz6zANj1ur7Ic/Wlkt7wIhAObK33jAt/n3RxVulHJZJTou2XGHoE790R9p87lXG8I6","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":269951,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjyX0EACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo4oBAAh24ivxBPoBRzOyW6ZqDSlD96CUrVwCfckAGJq/1+1LgmzF2P\r\nOk1+bop8pxsILQ5GgdH5itPVejnQJN56nM4urF5p5imR3t+7jcLIYCSIzV1X\r\nes3RALpZS/t0A+CMzSzClD6N6cVmjczPz47UGsoWzB9jqd55NiFS/Oygi/Km\r\nCwUGv0SOMA8sPTh6Lr4KEk9GQUUmIe9Ql2mYa38nqH+dyciZnNNXEhpZOTX8\r\ntYk8olLTsuN0RyJP6jhq3GiYRIfwamem09K9SJAnupibWHF+E59biRP7pT3w\r\nZw9PMdOMXELDSgRF16JaHjTlmpIPdsgG21oNWyAcYy/KSEbw7eIumkj+I3+7\r\nrfpgFZCrqZTOgiAHv3zoR+dtk4r3vzF9ga0PxeoohXKKTjvMvc6LPuCfZrsI\r\ndu49HmVv+xOaJHjarKFbRSqlNlHnz46H7Lk99vTR5j4mnMB0wAp3z0hbyNkY\r\nRQ1VVkTus7ZCL9JoTIa5PXnlCGvsRh9fEMNb2CYYwIZG1AQfFl/GAVaVgjq1\r\n7d9gx6UH47c+ogIgB7lT6q+rR6co9E9Gsxt6YcWEy6wIN/+N71ob2jP0aCMU\r\ncOf9diYpvy3tlt4BpuxdmmDWBtYpjVf+AZhdjpBb16smdrm3aKDI2nbV0njb\r\nrlojihbX6mwJ3wmKrSJ4cEs1PyiEJCoBsXg=\r\n=fOnc\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","readme":"# `@lerna/exec`\n\n> Execute an arbitrary command in each package\n\nInstall [lerna](https://www.npmjs.com/package/lerna) for access to the `lerna` CLI.\n\n## Usage\n\n```sh\n$ lerna exec -- <command> [..args] # runs the command in all packages\n$ lerna exec -- rm -rf ./node_modules\n$ lerna exec -- protractor conf.js\n```\n\nRun an arbitrary command in each package.\nA double-dash (`--`) is necessary to pass dashed flags to the spawned command, but is not necessary when all the arguments are positional.\n\nThe name of the current package is available through the environment variable `LERNA_PACKAGE_NAME`:\n\n```sh\n$ lerna exec -- npm view \\$LERNA_PACKAGE_NAME\n```\n\nYou may also run a script located in the root dir, in a complicated dir structure through the environment variable `LERNA_ROOT_PATH`:\n\n```sh\n$ lerna exec -- node \\$LERNA_ROOT_PATH/scripts/some-script.js\n```\n\n## Options\n\n`lerna exec` accepts all [filter flags](https://www.npmjs.com/package/@lerna/filter-options).\n\n```sh\n$ lerna exec --scope my-component -- ls -la\n```\n\n> The commands are spawned in parallel, using the concurrency given (except with `--parallel`).\n> The output is piped through, so not deterministic.\n> If you want to run the command in one package after another, use it like this:\n\n```sh\n$ lerna exec --concurrency 1 -- ls -la\n```\n\n### `--stream`\n\nStream output from child processes immediately, prefixed with the originating\npackage name. This allows output from different packages to be interleaved.\n\n```sh\n$ lerna exec --stream -- babel src -d lib\n```\n\n### `--parallel`\n\nSimilar to `--stream`, but completely disregards concurrency and topological sorting, running a given command or script immediately in all matching packages with prefixed streaming output. This is the preferred flag for long-running processes such as `babel src -d lib -w` run over many packages.\n\n```sh\n$ lerna exec --parallel -- babel src -d lib -w\n```\n\n> **Note:** It is advised to constrain the scope of this command when using\n> the `--parallel` flag, as spawning dozens of subprocesses may be\n> harmful to your shell's equanimity (or maximum file descriptor limit,\n> for example). YMMV\n\n### `--no-bail`\n\n```sh\n# Run a command, ignoring non-zero (error) exit codes\n$ lerna exec --no-bail <command>\n```\n\nBy default, `lerna exec` will exit with an error if _any_ execution returns a non-zero exit code.\nPass `--no-bail` to disable this behavior, executing in _all_ packages regardless of exit code.\n\n### `--no-prefix`\n\nDisable package name prefixing when output is streaming (`--stream` _or_ `--parallel`).\nThis option can be useful when piping results to other processes, such as editor plugins.\n\n### `--profile`\n\nProfiles the command executions and produces a performance profile which can be analyzed using DevTools in a\nChromium-based browser (direct url: `devtools://devtools/bundled/devtools_app.html`). The profile shows a timeline of\nthe command executions where each execution is assigned to an open slot. The number of slots is determined by the\n`--concurrency` option and the number of open slots is determined by `--concurrency` minus the number of ongoing\noperations. The end result is a visualization of the parallel execution of your commands.\n\nThe default location of the performance profile output is at the root of your project.\n\n```sh\n$ lerna exec --profile -- <command>\n```\n\n> **Note:** Lerna will only profile when topological sorting is enabled (i.e. without `--parallel` and `--no-sort`).\n\n### `--profile-location <location>`\n\nYou can provide a custom location for the performance profile output. The path provided will be resolved relative to the current working directory.\n\n```sh\n$ lerna exec --profile --profile-location=logs/profile/ -- <command>\n```\n","engines":{"node":"^14.15.0 || >=16.0.0"},"exports":{".":{"import":"./dist/index.js","require":"./dist/index.js"},"./command":{"import":"./dist/command.js","require":"./dist/command.js"}},"gitHead":"d8ff988205dfc596d55cab91477b5719460e9fa4","_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"packages/legacy-structure/commands/exec"},"_npmVersion":"lerna/undefined/node@v16.15.0+arm64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"16.15.0","dependencies":{"p-map":"^4.0.0","@lerna/child-process":"6.4.2-beta.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/exec_6.4.2-beta.0_1674149124501_0.9075595343859668","host":"s3://npm-registry-packages"}},"6.5.0-alpha.0":{"name":"@lerna/exec","version":"6.5.0-alpha.0","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@6.5.0-alpha.0","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://lerna.js.org","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"18bd64b5d0fc4fc300695106fe57a0ebee7d9101","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-6.5.0-alpha.0.tgz","fileCount":6,"integrity":"sha512-kbYTx90JQaIZjmcSgjg+xydnsTZvnoLjm9Quezf7lN7TBuYv9t/JNj9EMOJ19OBrR52NuqBEp0VR2iU6riVMrA==","signatures":[{"sig":"MEUCIQD4gzuO9CGRWZdOF+Ao6KEV+Ju9coPhxh9M6L6CP4eLiwIgRNr1nQgJtkeKRaWBnkaO9c1zk42jnn72cia9kOgckA4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":24129,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj13o8ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmobKBAAoWlwWw9CsZDq1yUcdYHja7fC0vQYrH+xVJ8VmgHw1cHDBqbJ\r\ne0er5Jgwhl1LfanX4gBbD3inmBAy+thJqnQCr5mIyctibsKu55X6jI+HKekz\r\n6ici1qk3LdN5DPiSfZxeKfym6OGBPhEcvmn27NBeDwWANIP6IuYrBFOg3ksF\r\nU8zmeVs9TMu/ONJlExYIziGlNwPuPqS5O+da5jS9AAZUXjAhUGWfbP9xxVXr\r\n7+tirmBQVVWvjtWDLZ9jIEmX6j/4jXoAofbDwcTJtp2eY9KyEgUMayW0nDtB\r\nWacw/jz0n1K2XiScPXij3Ks49WCYe8K7pUOpKEwplEFR0UdrHPoO4uM8sw7F\r\n0c8zXLWHS85YPuCA5921UCYzrgmqlBoPrQMe2Qd9mrbaZzIWoOC9r1JYTtKq\r\n/P9/8yI928VJ17hVA18QK/X/yEBOVBx01aoj6VTKezxvtqk/qge02Oelys7x\r\nV189pGkITyWe8fxKgZQyL2p6NCfSrsGFhrPfbAr0knUlk73he9wQ6in9j7uu\r\nh8dMoOre8Gp7oSn2o855MwutzRkRa2wQRyEQr6mr0AfZGww8D04eQK66AKqv\r\nHvFroeY87RgAh+jlC3XDO94tWqfg7mPtxXZIKcv99/vsa05GwIkoW4YxhJdJ\r\nQtM6iAlhIIG6EJkroh2jfl2y2dFwpIvsZj8=\r\n=IbeS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","readme":"# `@lerna/exec`\n\n> Execute an arbitrary command in each package\n\nInstall [lerna](https://www.npmjs.com/package/lerna) for access to the `lerna` CLI.\n\n## Usage\n\n```sh\n$ lerna exec -- <command> [..args] # runs the command in all packages\n$ lerna exec -- rm -rf ./node_modules\n$ lerna exec -- protractor conf.js\n```\n\nRun an arbitrary command in each package.\nA double-dash (`--`) is necessary to pass dashed flags to the spawned command, but is not necessary when all the arguments are positional.\n\nThe name of the current package is available through the environment variable `LERNA_PACKAGE_NAME`:\n\n```sh\n$ lerna exec -- npm view \\$LERNA_PACKAGE_NAME\n```\n\nYou may also run a script located in the root dir, in a complicated dir structure through the environment variable `LERNA_ROOT_PATH`:\n\n```sh\n$ lerna exec -- node \\$LERNA_ROOT_PATH/scripts/some-script.js\n```\n\n## Options\n\n`lerna exec` accepts all [filter flags](https://www.npmjs.com/package/@lerna/filter-options).\n\n```sh\n$ lerna exec --scope my-component -- ls -la\n```\n\n> The commands are spawned in parallel, using the concurrency given (except with `--parallel`).\n> The output is piped through, so not deterministic.\n> If you want to run the command in one package after another, use it like this:\n\n```sh\n$ lerna exec --concurrency 1 -- ls -la\n```\n\n### `--stream`\n\nStream output from child processes immediately, prefixed with the originating\npackage name. This allows output from different packages to be interleaved.\n\n```sh\n$ lerna exec --stream -- babel src -d lib\n```\n\n### `--parallel`\n\nSimilar to `--stream`, but completely disregards concurrency and topological sorting, running a given command or script immediately in all matching packages with prefixed streaming output. This is the preferred flag for long-running processes such as `babel src -d lib -w` run over many packages.\n\n```sh\n$ lerna exec --parallel -- babel src -d lib -w\n```\n\n> **Note:** It is advised to constrain the scope of this command when using\n> the `--parallel` flag, as spawning dozens of subprocesses may be\n> harmful to your shell's equanimity (or maximum file descriptor limit,\n> for example). YMMV\n\n### `--no-bail`\n\n```sh\n# Run a command, ignoring non-zero (error) exit codes\n$ lerna exec --no-bail <command>\n```\n\nBy default, `lerna exec` will exit with an error if _any_ execution returns a non-zero exit code.\nPass `--no-bail` to disable this behavior, executing in _all_ packages regardless of exit code.\n\n### `--no-prefix`\n\nDisable package name prefixing when output is streaming (`--stream` _or_ `--parallel`).\nThis option can be useful when piping results to other processes, such as editor plugins.\n\n### `--profile`\n\nProfiles the command executions and produces a performance profile which can be analyzed using DevTools in a\nChromium-based browser (direct url: `devtools://devtools/bundled/devtools_app.html`). The profile shows a timeline of\nthe command executions where each execution is assigned to an open slot. The number of slots is determined by the\n`--concurrency` option and the number of open slots is determined by `--concurrency` minus the number of ongoing\noperations. The end result is a visualization of the parallel execution of your commands.\n\nThe default location of the performance profile output is at the root of your project.\n\n```sh\n$ lerna exec --profile -- <command>\n```\n\n> **Note:** Lerna will only profile when topological sorting is enabled (i.e. without `--parallel` and `--no-sort`).\n\n### `--profile-location <location>`\n\nYou can provide a custom location for the performance profile output. The path provided will be resolved relative to the current working directory.\n\n```sh\n$ lerna exec --profile --profile-location=logs/profile/ -- <command>\n```\n","engines":{"node":"^14.15.0 || >=16.0.0"},"exports":{".":"./dist/index.js","./lib/*":"./dist/lib/*.js","./command":"./dist/command.js"},"gitHead":"624a5459a1d6dbb00628467c42d41c8b432b2408","_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"packages/legacy-structure/commands/exec"},"_npmVersion":"lerna/undefined/node@v16.19.0+arm64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"16.19.0","dependencies":{"lerna":"6.5.0-alpha.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/exec_6.5.0-alpha.0_1675065916722_0.6411716004549386","host":"s3://npm-registry-packages"}},"6.5.0-alpha.1":{"name":"@lerna/exec","version":"6.5.0-alpha.1","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@6.5.0-alpha.1","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://lerna.js.org","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"15e380162fcf09b52645fff408d092340d92c03b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-6.5.0-alpha.1.tgz","fileCount":6,"integrity":"sha512-Axe/TmXXKVDc+1lmnVp4bCp3CtxE5gVCRIPbLemhwlHyX7iNwIuVYOkgA0LIziTZRD84yQUZ08Nkvjv1JBQjyg==","signatures":[{"sig":"MEUCIHUgg8D9acYDd2FpJU7rX453madDZ5KsAnkHFCnlDqCwAiEA1K6Zd2CBhqRQP3GYeMTPwUcGk+s98jKjdUhVqLe9cjU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":24128,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj36VbACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpE2xAAnh5VQoE/phQ9E/t/DRh9T0nszl5Liy4CS4IJyckpbRrLnIjA\r\nyNHgY3o9P8wVlqhfs6zNWx1UVLwDrA6nbpPWJxKQ6kTTXvzS7NGw+1JFXA5J\r\nDGXghID1pkYENNeuXGWbdow1mN2ZCm+2Up9BN35eqJGEv1ilF4j5B/tZAA1x\r\npOyyBMd7c1x477yVJ3OSO/8PwQad0ryy0+nqxLte0UXgSwSrTyuSf6SCuIqi\r\n7roXRXzRxI3Ar71dP7CNm5RUEm9YOv8l5BttTSJeErjUkdT/ceFOYpsyrcQi\r\nFm5c1MULpydcSG+/ObEpCRFLxzTTwxfqmStnOE9J0Q0xa7fwdlfwHVzZ+Uz4\r\n58yYqhVRyZf1MgaJyElNQAtFpSZXjuXN20vD7ezjhIV1g9moYjEAkw1JvUBt\r\n1742kgRCSWFPUmOiV9O8c21qZmiKCGSjGLpHwMg5pHV8U9tWnKTwYRGuY9iL\r\nYMtRt1MrDhBQRa78RKax3jN20Ph/E95Dkyd2luTCSSJgpjopPkJoao4oHPgv\r\nj3lrcTfyEW9+cdgxIRJg6oN5EKfneWZyR54DGQI+J2KpAzBK00ad0L8yfpoC\r\nwG/EZE8yuZq5c6gIRy+soN+xigoNk1fuKP8G8WEH6GUvyJZnvPbJxEpuLnSo\r\n6cn1Z60fpUPABM0iIvKTNKP/2096Ohv7vVI=\r\n=P/wb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","readme":"# `lerna exec`\n\n> Execute an arbitrary command in each package\n\nInstall [lerna](https://www.npmjs.com/package/lerna) for access to the `lerna` CLI.\n\n## Usage\n\n```sh\n$ lerna exec -- <command> [..args] # runs the command in all packages\n$ lerna exec -- rm -rf ./node_modules\n$ lerna exec -- protractor conf.js\n```\n\nRun an arbitrary command in each package.\nA double-dash (`--`) is necessary to pass dashed flags to the spawned command, but is not necessary when all the arguments are positional.\n\nThe name of the current package is available through the environment variable `LERNA_PACKAGE_NAME`:\n\n```sh\n$ lerna exec -- npm view \\$LERNA_PACKAGE_NAME\n```\n\nYou may also run a script located in the root dir, in a complicated dir structure through the environment variable `LERNA_ROOT_PATH`:\n\n```sh\n$ lerna exec -- node \\$LERNA_ROOT_PATH/scripts/some-script.js\n```\n\n## Options\n\n`lerna exec` accepts all [filter flags](https://www.npmjs.com/package/@lerna/filter-options).\n\n```sh\n$ lerna exec --scope my-component -- ls -la\n```\n\n> The commands are spawned in parallel, using the concurrency given (except with `--parallel`).\n> The output is piped through, so not deterministic.\n> If you want to run the command in one package after another, use it like this:\n\n```sh\n$ lerna exec --concurrency 1 -- ls -la\n```\n\n### `--stream`\n\nStream output from child processes immediately, prefixed with the originating\npackage name. This allows output from different packages to be interleaved.\n\n```sh\n$ lerna exec --stream -- babel src -d lib\n```\n\n### `--parallel`\n\nSimilar to `--stream`, but completely disregards concurrency and topological sorting, running a given command or script immediately in all matching packages with prefixed streaming output. This is the preferred flag for long-running processes such as `babel src -d lib -w` run over many packages.\n\n```sh\n$ lerna exec --parallel -- babel src -d lib -w\n```\n\n> **Note:** It is advised to constrain the scope of this command when using\n> the `--parallel` flag, as spawning dozens of subprocesses may be\n> harmful to your shell's equanimity (or maximum file descriptor limit,\n> for example). YMMV\n\n### `--no-bail`\n\n```sh\n# Run a command, ignoring non-zero (error) exit codes\n$ lerna exec --no-bail <command>\n```\n\nBy default, `lerna exec` will exit with an error if _any_ execution returns a non-zero exit code.\nPass `--no-bail` to disable this behavior, executing in _all_ packages regardless of exit code.\n\n### `--no-prefix`\n\nDisable package name prefixing when output is streaming (`--stream` _or_ `--parallel`).\nThis option can be useful when piping results to other processes, such as editor plugins.\n\n### `--profile`\n\nProfiles the command executions and produces a performance profile which can be analyzed using DevTools in a\nChromium-based browser (direct url: `devtools://devtools/bundled/devtools_app.html`). The profile shows a timeline of\nthe command executions where each execution is assigned to an open slot. The number of slots is determined by the\n`--concurrency` option and the number of open slots is determined by `--concurrency` minus the number of ongoing\noperations. The end result is a visualization of the parallel execution of your commands.\n\nThe default location of the performance profile output is at the root of your project.\n\n```sh\n$ lerna exec --profile -- <command>\n```\n\n> **Note:** Lerna will only profile when topological sorting is enabled (i.e. without `--parallel` and `--no-sort`).\n\n### `--profile-location <location>`\n\nYou can provide a custom location for the performance profile output. The path provided will be resolved relative to the current working directory.\n\n```sh\n$ lerna exec --profile --profile-location=logs/profile/ -- <command>\n```\n","engines":{"node":"^14.15.0 || >=16.0.0"},"exports":{".":"./dist/index.js","./lib/*":"./dist/lib/*.js","./command":"./dist/command.js"},"gitHead":"f03ee3e2efe052d3b21dcb3b15cdad15f5ded499","_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"packages/legacy-structure/commands/exec"},"_npmVersion":"lerna/undefined/node@v16.18.1+arm64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"16.18.1","dependencies":{"lerna":"6.5.0-alpha.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/exec_6.5.0-alpha.1_1675601243675_0.008074049947822903","host":"s3://npm-registry-packages"}},"6.5.0-alpha.2":{"name":"@lerna/exec","version":"6.5.0-alpha.2","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@6.5.0-alpha.2","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://lerna.js.org","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"2a0c0df08008cbae0f5dc43eebe49dd2aec99f37","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-6.5.0-alpha.2.tgz","fileCount":6,"integrity":"sha512-Vr3rBINrv1AVNj7Xc2kW6Y7YV9de2B7IMJZAQn0oJE5+Y7eiEqu0V1u1u32HCUop5CLiIhEjKm8vIsjmTMkMYw==","signatures":[{"sig":"MEYCIQCNmnyILjJXW/v69CeY09L1ClzVRg3jkBir3kYQSgwQ1wIhAIj5PYTcjc10YI+pknChVyfbPyH1yTLTudYFiPFbv7qk","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":24128,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj366hACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqljA//WFePPBETxNuOrmP9dJeT1iCiiuoR1cOzQXktEzY4Z5tZuBBP\r\ngDCjtDRyXRCvDXXFiFNFelbA7YdaTsJsdAk6VktiKt3SPeAon03OTTU3kaaA\r\nl3h/Nfiv5q0mBB6K2JFF3xJXdpeeH5RHcNnq52AQT0S+LFjYDiE2s8ohxn2R\r\nBpypI5Fwo8Kj7uu7TU+yzwGpXw19FL0lNIWvXptnZBCz+9fQI04QZjnkzwYL\r\nD4yjzf5DJ9jfKa/LeOyvW+5eG0bv9AO5nDfTnsJrE+gAVW7I8vRqAF+fUrQC\r\nQNcDq01Mkdoh70F42JS6eElv34zCNtccStQgiFB3ftKbTPVEbCwuIaxHtW82\r\nJB+Y5I8BLQ5NTrBpP87YJEpgNxzqo/1q7jmKssDdTuH6k29bs/StTg1R0JeR\r\nRmN7JMRMM73n1pGbe87j/G0CDJc9C9f3TiXvBuO20TPlFuH/7LkGC5kqpcSS\r\n98T+Y9S84Qkso0R6wBF0GwYMHtWny7U4uhE7FFTvzUehUvPr7ELubjZJJKcF\r\n5jqChFYxTtWl8pjT71tXhWjtm8YmSyV/RjayUWYL7IqMaBb8azLhUBz9ijWH\r\nQb4JuB0oVkZQiu0HkgAe5pm19GGGkc6w5zAbehXubrbdqR46vTDLS76xUMVz\r\nC6nLTt/KG6LwmFAEG18r9ODcXkBxsIeJapw=\r\n=qzaS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","readme":"# `lerna exec`\n\n> Execute an arbitrary command in each package\n\nInstall [lerna](https://www.npmjs.com/package/lerna) for access to the `lerna` CLI.\n\n## Usage\n\n```sh\n$ lerna exec -- <command> [..args] # runs the command in all packages\n$ lerna exec -- rm -rf ./node_modules\n$ lerna exec -- protractor conf.js\n```\n\nRun an arbitrary command in each package.\nA double-dash (`--`) is necessary to pass dashed flags to the spawned command, but is not necessary when all the arguments are positional.\n\nThe name of the current package is available through the environment variable `LERNA_PACKAGE_NAME`:\n\n```sh\n$ lerna exec -- npm view \\$LERNA_PACKAGE_NAME\n```\n\nYou may also run a script located in the root dir, in a complicated dir structure through the environment variable `LERNA_ROOT_PATH`:\n\n```sh\n$ lerna exec -- node \\$LERNA_ROOT_PATH/scripts/some-script.js\n```\n\n## Options\n\n`lerna exec` accepts all [filter flags](https://www.npmjs.com/package/@lerna/filter-options).\n\n```sh\n$ lerna exec --scope my-component -- ls -la\n```\n\n> The commands are spawned in parallel, using the concurrency given (except with `--parallel`).\n> The output is piped through, so not deterministic.\n> If you want to run the command in one package after another, use it like this:\n\n```sh\n$ lerna exec --concurrency 1 -- ls -la\n```\n\n### `--stream`\n\nStream output from child processes immediately, prefixed with the originating\npackage name. This allows output from different packages to be interleaved.\n\n```sh\n$ lerna exec --stream -- babel src -d lib\n```\n\n### `--parallel`\n\nSimilar to `--stream`, but completely disregards concurrency and topological sorting, running a given command or script immediately in all matching packages with prefixed streaming output. This is the preferred flag for long-running processes such as `babel src -d lib -w` run over many packages.\n\n```sh\n$ lerna exec --parallel -- babel src -d lib -w\n```\n\n> **Note:** It is advised to constrain the scope of this command when using\n> the `--parallel` flag, as spawning dozens of subprocesses may be\n> harmful to your shell's equanimity (or maximum file descriptor limit,\n> for example). YMMV\n\n### `--no-bail`\n\n```sh\n# Run a command, ignoring non-zero (error) exit codes\n$ lerna exec --no-bail <command>\n```\n\nBy default, `lerna exec` will exit with an error if _any_ execution returns a non-zero exit code.\nPass `--no-bail` to disable this behavior, executing in _all_ packages regardless of exit code.\n\n### `--no-prefix`\n\nDisable package name prefixing when output is streaming (`--stream` _or_ `--parallel`).\nThis option can be useful when piping results to other processes, such as editor plugins.\n\n### `--profile`\n\nProfiles the command executions and produces a performance profile which can be analyzed using DevTools in a\nChromium-based browser (direct url: `devtools://devtools/bundled/devtools_app.html`). The profile shows a timeline of\nthe command executions where each execution is assigned to an open slot. The number of slots is determined by the\n`--concurrency` option and the number of open slots is determined by `--concurrency` minus the number of ongoing\noperations. The end result is a visualization of the parallel execution of your commands.\n\nThe default location of the performance profile output is at the root of your project.\n\n```sh\n$ lerna exec --profile -- <command>\n```\n\n> **Note:** Lerna will only profile when topological sorting is enabled (i.e. without `--parallel` and `--no-sort`).\n\n### `--profile-location <location>`\n\nYou can provide a custom location for the performance profile output. The path provided will be resolved relative to the current working directory.\n\n```sh\n$ lerna exec --profile --profile-location=logs/profile/ -- <command>\n```\n","engines":{"node":"^14.15.0 || >=16.0.0"},"exports":{".":"./dist/index.js","./lib/*":"./dist/lib/*.js","./command":"./dist/command.js"},"gitHead":"6b50725267b830d5079e6de739ba2fb1cabe5423","_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"packages/legacy-structure/commands/exec"},"_npmVersion":"lerna/undefined/node@v16.18.1+arm64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"16.18.1","dependencies":{"lerna":"6.5.0-alpha.2"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/exec_6.5.0-alpha.2_1675603617743_0.8413758710318715","host":"s3://npm-registry-packages"}},"6.5.0":{"name":"@lerna/exec","version":"6.5.0","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@6.5.0","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://lerna.js.org","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"50e7a942a6dcbf1d319d5fba9457ea467acf26da","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-6.5.0.tgz","fileCount":6,"integrity":"sha512-Oh973G45Cp0FPsgqevUWH3bdInuCTdi+efVjNUzH0W82JxlH6XtFIiCZoVUmFZiQEoWXKP0Nxq9igKH9yb3Zhw==","signatures":[{"sig":"MEYCIQDadJrVwdzVVQTpmKSjv9j9UmQlWK8VMlQDfUHEuyuA1AIhAJAGvQygmkGDlo2rKGeeKfsq8XockSoJJy73Et8SGvh2","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":24096,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj6mZTACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoWdA//YzpfiFWTt9ENT2hexlAAGtRCSIG8r34/7mzMlW/FQwOmnJMD\r\nWMPz7dw2llVIM7fIP2dN+SG/zWE9iaVR1HuU5REQDkfjt7BU6NxUVfIaotRx\r\nYwfbhMhF8e7XwAXTa/SOOdAQSpypbst18ARHXNZ+BHhqp6Y3a4slka5E80ug\r\niaeL2rjONnqqfpodKNILqnOBpxpBWa1JpaoPGE1CgKIqGox24jdNLNMkE4iv\r\n/OGwzCRcROO2FzhR52V+KI6Wtznv3IVeiyiuYJyCNZI3JRVi2vtoMPZM1oT1\r\nXcI4BmuJyqy/XPvx2QwPYpoDa0djxvali7Eytcu7bDIAjjUxanGojQTH0Fto\r\nPP1JE9O3NwHAsVlesaR4HsPchFdgZR+SR55HGczBLRbGiZKQY8k0xG6K92Tn\r\nKUXrxW9mhyQhOE38vE7LJeDntdtr3ZAMx7HFNjKuetBLIo3dyHVqG+GSMXG0\r\nYcqbztbdTVrL80UcJcve4nsau8LreKNOTVnH6YT1/czSqcUM4mRUjRva0L97\r\n/8SF+VR/4rlqtAVMyoolbSeGV6NGeDVK1R5CjrKkyzI8TMOtn/5eTtDfAw/u\r\nCZ3Xv+5eKYUIFF7+aaVwGSnHblgTjDzvJXo5zgOfLrr3WiVNJVdeW8SzpJOD\r\n5/c8/pyCrasQZUiMLw7lHJS2+LLN9dyUnC8=\r\n=EFet\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":"^14.15.0 || >=16.0.0"},"exports":{".":"./dist/index.js","./lib/*":"./dist/lib/*.js","./command":"./dist/command.js"},"gitHead":"02c534e3796150ac564c57aa5a248c7bdf7835ab","_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"packages/legacy-structure/commands/exec"},"_npmVersion":"lerna/undefined/node@v16.18.1+arm64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"16.18.1","dependencies":{"lerna":"6.5.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_6.5.0_1676306003501_0.5016833198188624","host":"s3://npm-registry-packages"}},"6.5.1":{"name":"@lerna/exec","version":"6.5.1","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@6.5.1","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://lerna.js.org","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"373999ed4ed73580bac513df0fed04535ef46fe4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-6.5.1.tgz","fileCount":6,"integrity":"sha512-ugy7D0TRJb8LzpOG8G08ewaWmXebrPIMjtsnr7CItTKM3aLre8pGMcBd6CKjQov17NoihRRSXNH/G4mGS/1YBw==","signatures":[{"sig":"MEQCIG+usqYvO2SlrbLWcKZOpO+RobJj1ekjlSDoPOoNdcwYAiBKurBOJK9IuCHETeuFosAFml0yFDkT37r148ftXwNqOw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":24224,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj6161ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoqgQ/8DYCOIUohJMPajjZsqxED3AWQw9nfObXtVpTHFomb+0sp8qou\r\nrclyXANeTNfiQ/2Kq1JvAqmtigm/jbhWjssOfiPFr3n11KsGW4v3MwBrAnO3\r\nM2FC7jvC4f9LZspE9lotBMaZlUx+dSNeIqdLixFIDBouj9pDHMuPEXNp6dYX\r\nhHamc4QMy1OvPJ8XBt4vxAJCZvUbFxKVUj73p6E2hhXA4tdl8LvV+F0FviAA\r\nzarNp9meDE7GrZ9JNToEGIWRIj46HLQr6JLjdoPrvxMwFisCQ5dBUNY0avW0\r\nSRDsyFG21XYp/t44ruqHTYOSPfuQ7WfclHR1ePRfZ1uglK29p5oFQt2tblF/\r\nEv43hojpWAIVKw/Zs+bOc9DnDZWtpNQcYqhUDrMfLgSBDGWSy9F1wmBYFL56\r\nlLz7PDrmzePhT358w7TEGbTaeXVapGLfQ3PsSwYDm30nFPt/7fFt7M/oNOO0\r\nPQ53diRpmHxXk9d/nRxuOFcyU+RTy1Ipmshk4N3eCTnW4OH7pn3BAKxc1Lrh\r\nj8cZAXZ51GNIN52rWO8KXq/vGH5OZGlYTBI9ck1RPncJ9clrtwJqJ1cCrDFJ\r\nUgC1zFmLnhxPqFrL/CUtSiQhvCdT5Esl74knZ7hx5J3nAr7qM7NQznALnRHg\r\nxkM9bSlJ9zmlkPzoeXjOf+OS8aGyUoi00Oo=\r\n=e106\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":"^14.15.0 || >=16.0.0"},"exports":{".":"./dist/index.js","./lib/*":"./dist/lib/*.js","./command":"./dist/command.js"},"gitHead":"0a7ac45bb2b6322e6f20f37c2aa04eae74b553c8","_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"packages/legacy-structure/commands/exec"},"_npmVersion":"lerna/undefined/node@v16.18.1+arm64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"16.18.1","dependencies":{"lerna":"6.5.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_6.5.1_1676369589638_0.24852849900222274","host":"s3://npm-registry-packages"}},"6.6.0":{"name":"@lerna/exec","version":"6.6.0","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@6.6.0","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://lerna.js.org","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"37f2659f6fd809f41c265ceceab8b419bd8527e3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-6.6.0.tgz","fileCount":233,"integrity":"sha512-C1z4XtfQ02/57ClwoOfhg9kjE/cZFn5JZHdoJguKKeVx3S/noqlrXG5MENysjoRQItl+4G5uzRlaudxOkWwdSA==","signatures":[{"sig":"MEYCIQDD86wZDqsRjeI9dfbv8efbtddf/ChuLty/zE5a870cYwIhAJfub7plK9RK5Kskg8NcJfp5f3DFhhJpqRudpSs8QUt8","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":611252,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkHBa+ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqLIg/+Im+1uivNtt/jAetqyQDH5jsaGm4ExCpVMRlKNNoJgn/gLW4A\r\np2/Aez8Nv1aUCFWXPx8pqA2x5bEU1SI3f8hyWbG2ZXuCgtGTc/+X/zq9N/3k\r\nnk/DtY50WSOHEqf4y01ZSYX76Ckv7j7StPoPnQDpQ+vV9A7yPQ2I8nQGiYCO\r\nDzYHEzuywSRx+nJgalTdniPgmBiiSQqlF7gX+yW7aADlAN972lPNPHPsxsk5\r\nS/vpzX5mY2xDnpmINyTYOIkzKficTYSsTDZAUnCOnjyv1JdzSO7V1vtTtbbw\r\nj4LQDTgu7PpUzH1+XoEIutU2iAQHXZ322rDW1bTuDWLyfUWAO8jz77mAHPVO\r\nj8w9iaiX4ZHJemxYf3jTHKlVBKMEV47pykWA50MVKz+RxRt8FwoVc3abm3yd\r\nkRGcbtzqi0EMWFAkBI0tDvN7Cre18p4GUxciShMY9oo/tDYuzRh+ZdU5LrFw\r\n7Yk+MIUVdErw8LRRxqvsxYoBkJWgdllpdZVEcJmZaVMXxey2PNSzqNOno9uY\r\nxaE62ecI/ZcvnYai80XEMO6afgJf+g2WJerMIqfWpGbJlFD24JsIcIdFvDYN\r\njHgm1VX6LSAo8STg8RGCe8yx8EZTVBpeHhrfhVmNS/WduV9MLPCkdey/PcI2\r\naYRrEsiI/CvpIiD9z1T/lBE/90P1Xv6ycFA=\r\n=03F4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":"^14.15.0 || >=16.0.0"},"exports":{".":"./dist/index.js","./lib/*":"./dist/lib/*.js","./command":"./dist/command.js"},"gitHead":"43afbf83a55698b0e6f8745753a87c7863f0e4c5","_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"packages/legacy-structure/commands/exec"},"_npmVersion":"lerna/undefined/node@v18.15.0+arm64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"18.15.0","dependencies":{"lerna":"6.6.0"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_6.6.0_1679562429923_0.9039220453741614","host":"s3://npm-registry-packages"}},"6.6.1":{"name":"@lerna/exec","version":"6.6.1","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@6.6.1","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://lerna.js.org","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"1395948a7a5bcf27f7cb40b8e0b6fafe21ff0e79","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-6.6.1.tgz","fileCount":233,"integrity":"sha512-DVHpjsb19gFzco84WKWIJaBnKcqUmMDtnzUxDt8EGHWZ7q+RXaSH8NGQ/EEIFFQz7Pt2GI4UjikwLz5DKSzw7w==","signatures":[{"sig":"MEUCIQCxnnwponEZDEY4/VyCIrNtPEpT1pwIkBrJ4LmYujLhYQIgd+CTvezYIAjH+9qJTVgDbEUAIDOKOb+rJJLlu2WQj/8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":611757,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkHemSACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqweg/9E/oRLcFTfrnxrtlHvaMab53CCj03sQYCQIGW4hyvaDzkDYrv\r\nGYzcqW2DAotYI2C1UdfgOrjjy+4iTf/fF3WQVfF75nQElanhfkSUHfcUQlCX\r\nzbKHRvG4ZHERu7uO4ELzgOr3ezudFqQ5+HiKthnoZGVcV9+SwvWmYoaLCRIQ\r\nq4wvi9/BJJMWRhwb4eMn2+oS+eGj1Xc71JbQU1D5ucnLMTbaqpOA52Q4XTSQ\r\nSop4JHplE5QBhWDBYKcXNYJZL2IYr86UHKc7gyxyYKmOsGoAeICKEwoWZ2jl\r\nAs2GcB7rF2ZVI66ZGJeVW8b3Vo0Nuxu0XWyWI8oAfKWEQZEakd3jJAOk1t51\r\nWmP2jY8FqKZVYzufG2q5BtiHe0TJe1sOVCpf0+Yifhjz+WMAW22tUQbX9yUb\r\ns/5VDY0HhEto4AnWJ8isUAGrVSIV5JXKXRTIiRyh6sblP5JuymDI6oFjzOkR\r\n0RWQ1nJ327AFuNYcS1z/AKcJCt6MHv6HG3/HlNu+7XcjxjroKJzpbiBwPpFF\r\nlEce4RZi6bYmJe4CbWfu4xlWghjYl/WAayHYMDkFf6ABfeeV4BcwOZy6DOxB\r\n94E11hWMGuqwSWNhmIqKaLDAZTVmWq2RCcmKfyVH8vGspRL9WZBU2hXaRG1O\r\nGdI0qf0gwYr14uc9XO3SlGfulZjodlXxHLQ=\r\n=kzOf\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","engines":{"node":"^14.15.0 || >=16.0.0"},"exports":{".":"./dist/index.js","./lib/*":"./dist/lib/*.js","./command":"./dist/command.js"},"gitHead":"dbc6df8b8074a77e3964bd46fa559afa7a4e6b74","_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"packages/legacy-structure/commands/exec"},"_npmVersion":"lerna/undefined/node@v18.15.0+arm64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"18.15.0","dependencies":{"lerna":"6.6.1"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/exec_6.6.1_1679681937867_0.4055313287792448","host":"s3://npm-registry-packages"}},"6.6.2":{"name":"@lerna/exec","version":"6.6.2","keywords":["lerna","command"],"author":{"url":"https://github.com/evocateur","name":"Daniel Stockman"},"license":"MIT","_id":"@lerna/exec@6.6.2","maintainers":[{"name":"anonymous","email":"npm@jameshenry.email"},{"name":"anonymous","email":"hello@nrwl.io"}],"homepage":"https://lerna.js.org","bugs":{"url":"https://github.com/lerna/lerna/issues"},"dist":{"shasum":"fab52c1ccd7753ee99b65424a85c77b93364f2f0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/@lerna/exec/-/exec-6.6.2.tgz","fileCount":239,"integrity":"sha512-LhRg+f4GkYzvF/abqsbQF31nyukQ0mLzWiyfSsCmtmGU9KeUKSUiwZVlgj/BXCXzwwtP3R6Ho9XW2oRC6KKmuw==","signatures":[{"sig":"MEQCIC8rhD6c8aYP3Qrqg2K3PxZ8SwsQw5Qfgn9t4DciEzPPAiB7wCgJm6aD3hjqDSeNfm7/BoY0eI9Hm+asjpYntbTRFA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":625148,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkVAOqACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrdHA/+IXMHrSbQCDSQKgt47RtempoCHEhFL4WIlbNxDuYtWTspapvj\r\nf/iOKccEctLshwaC1rjeaEQnD2ePqAermRkz43iXA0a9d9P4jMkMQYTsMU0Q\r\nXKpg/l92aT9EaQxNC1av4OBB8cNNO83ozpCrc6PhrbrDaZWRq/+wJsrb6vTF\r\n9m3zF6Rj25M25CG5uUxBPDcjqj2xusucCfc/ZxcgymiykduxgYM1T5pX3HQZ\r\nIJmIFbtp7pnn1F5WLK7Xdpc72iT6YOfc8A8wh759VdwevC8Kz7yoGf0wqq+o\r\ncDIropDJEgryZWMjA5ML9qnMrR6yGyo4niC6V7QTNuQMeco9pHy+DNca1q+9\r\nUtN8+aw847ovyvpklGDH5XgJi9E3555kuRA8ktHAtBKczfJ3TDbYrT23TDlP\r\nnO0HDEISpY0k+VI3N/r2ZJUC9BJo72IDUTCOTAPiZQN5UJi95/qF19i+XKOx\r\nM6RfULBVZ7NelHW8DwUeAmkvyv4bbFYwcgGMFX80sncZgSAAbme2at5s8D/O\r\nEsPbPa5O7M2Qq8SantjDiTzbSjjHWlGwRYC0glWUzaKOR6QQDuZZh0KYRB9p\r\n8ix2p+THQ8k4z6AJGzCq6gIzhINdikURKsnHFKdKMf7UL/Vugc2Jthf9MWZU\r\n8Bf6PSZ6Qy+o9WYgNzGFdPlMYsrgK9SZOx8=\r\n=C96B\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","readme":"# `lerna exec`\n\n> Execute an arbitrary command in each package\n\nInstall [lerna](https://www.npmjs.com/package/lerna) for access to the `lerna` CLI.\n\n## Usage\n\n```sh\n$ lerna exec -- <command> [..args] # runs the command in all packages\n$ lerna exec -- rm -rf ./node_modules\n$ lerna exec -- protractor conf.js\n```\n\nRun an arbitrary command in each package.\nA double-dash (`--`) is necessary to pass dashed flags to the spawned command, but is not necessary when all the arguments are positional.\n\nThe name of the current package is available through the environment variable `LERNA_PACKAGE_NAME`:\n\n```sh\n$ lerna exec -- npm view \\$LERNA_PACKAGE_NAME\n```\n\nYou may also run a script located in the root dir, in a complicated dir structure through the environment variable `LERNA_ROOT_PATH`:\n\n```sh\n$ lerna exec -- node \\$LERNA_ROOT_PATH/scripts/some-script.js\n```\n\n## Options\n\n`lerna exec` accepts all [filter flags](https://www.npmjs.com/package/@lerna/filter-options).\n\n```sh\n$ lerna exec --scope my-component -- ls -la\n```\n\n> The commands are spawned in parallel, using the concurrency given (except with `--parallel`).\n> The output is piped through, so not deterministic.\n> If you want to run the command in one package after another, use it like this:\n\n```sh\n$ lerna exec --concurrency 1 -- ls -la\n```\n\n### `--stream`\n\nStream output from child processes immediately, prefixed with the originating\npackage name. This allows output from different packages to be interleaved.\n\n```sh\n$ lerna exec --stream -- babel src -d lib\n```\n\n### `--parallel`\n\nSimilar to `--stream`, but completely disregards concurrency and topological sorting, running a given command or script immediately in all matching packages with prefixed streaming output. This is the preferred flag for long-running processes such as `babel src -d lib -w` run over many packages.\n\n```sh\n$ lerna exec --parallel -- babel src -d lib -w\n```\n\n> **Note:** It is advised to constrain the scope of this command when using\n> the `--parallel` flag, as spawning dozens of subprocesses may be\n> harmful to your shell's equanimity (or maximum file descriptor limit,\n> for example). YMMV\n\n### `--no-bail`\n\n```sh\n# Run a command, ignoring non-zero (error) exit codes\n$ lerna exec --no-bail <command>\n```\n\nBy default, `lerna exec` will exit with an error if _any_ execution returns a non-zero exit code.\nPass `--no-bail` to disable this behavior, executing in _all_ packages regardless of exit code.\n\n### `--no-prefix`\n\nDisable package name prefixing when output is streaming (`--stream` _or_ `--parallel`).\nThis option can be useful when piping results to other processes, such as editor plugins.\n\n### `--profile`\n\nProfiles the command executions and produces a performance profile which can be analyzed using DevTools in a\nChromium-based browser (direct url: `devtools://devtools/bundled/devtools_app.html`). The profile shows a timeline of\nthe command executions where each execution is assigned to an open slot. The number of slots is determined by the\n`--concurrency` option and the number of open slots is determined by `--concurrency` minus the number of ongoing\noperations. The end result is a visualization of the parallel execution of your commands.\n\nThe default location of the performance profile output is at the root of your project.\n\n```sh\n$ lerna exec --profile -- <command>\n```\n\n> **Note:** Lerna will only profile when topological sorting is enabled (i.e. without `--parallel` and `--no-sort`).\n\n### `--profile-location <location>`\n\nYou can provide a custom location for the performance profile output. The path provided will be resolved relative to the current working directory.\n\n```sh\n$ lerna exec --profile --profile-location=logs/profile/ -- <command>\n```\n","engines":{"node":"^14.17.0 || >=16.0.0"},"exports":{".":"./dist/index.js","./lib/*":"./dist/lib/*.js","./command":"./dist/command.js"},"gitHead":"9a7796145124eeeec45a4a3e8afd0a438077268d","_npmUser":{"name":"anonymous","email":"npm@jameshenry.email"},"deprecated":"Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.","repository":{"url":"git+https://github.com/lerna/lerna.git","type":"git","directory":"packages/legacy-structure/commands/exec"},"_npmVersion":"lerna/6.6.2/node@v18.15.0+arm64 (darwin)","description":"Execute an arbitrary command in each package","directories":{},"_nodeVersion":"18.15.0","dependencies":{"lerna":"6.6.2"},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/exec_6.6.2_1683227561871_0.5418803024748706","host":"s3://npm-registry-packages"}}},"name":"@lerna/exec","time":{"created":"2018-03-07T02:14:58.137Z","modified":"2025-08-27T15:19:21.040Z","3.0.0-beta.0":"2018-03-07T02:14:58.290Z","3.0.0-beta.1":"2018-03-09T02:50:47.789Z","3.0.0-beta.2":"2018-03-10T02:28:29.805Z","3.0.0-beta.3":"2018-03-15T15:01:17.810Z","3.0.0-beta.4":"2018-03-19T21:31:18.102Z","3.0.0-beta.7":"2018-03-20T00:50:57.801Z","3.0.0-beta.9":"2018-03-24T02:10:30.658Z","3.0.0-beta.10":"2018-03-27T00:08:51.518Z","3.0.0-beta.11":"2018-03-29T01:37:36.162Z","3.0.0-beta.12":"2018-03-30T01:29:35.465Z","3.0.0-beta.13":"2018-03-31T00:57:31.289Z","3.0.0-beta.14":"2018-04-03T23:34:50.971Z","3.0.0-beta.15":"2018-04-09T23:33:39.416Z","3.0.0-beta.17":"2018-04-13T01:32:05.453Z","3.0.0-beta.18":"2018-04-24T20:18:59.944Z","3.0.0-beta.19":"2018-05-03T16:55:55.488Z","3.0.0-beta.20":"2018-05-07T23:33:38.076Z","3.0.0-beta.21":"2018-05-12T01:04:06.899Z","3.0.0-rc.0":"2018-07-27T01:36:45.665Z","3.0.0":"2018-08-10T01:16:25.638Z","3.0.2":"2018-08-11T00:43:19.794Z","3.0.5":"2018-08-15T00:30:15.907Z","3.0.6":"2018-08-16T00:33:53.188Z","3.1.0":"2018-08-17T21:44:40.304Z","3.1.2":"2018-08-20T23:32:57.379Z","3.1.3":"2018-08-21T17:37:57.470Z","3.3.0":"2018-09-06T01:33:22.664Z","3.3.2":"2018-09-12T23:59:03.841Z","3.5.0":"2018-11-27T20:04:10.954Z","3.6.0":"2018-12-07T23:58:25.797Z","3.7.0":"2018-12-19T20:19:35.823Z","3.7.1":"2018-12-20T00:18:24.847Z","3.7.2":"2018-12-21T01:07:02.362Z","3.8.1":"2018-12-31T23:54:48.394Z","3.8.5":"2019-01-05T01:19:08.837Z","3.9.0":"2019-01-08T02:40:27.504Z","3.10.0":"2019-01-08T22:13:48.110Z","3.10.1":"2019-01-09T00:29:47.459Z","3.10.6":"2019-01-19T00:07:13.457Z","3.11.0":"2019-02-08T01:38:32.981Z","3.12.0":"2019-02-14T20:49:15.313Z","3.12.1":"2019-02-14T23:12:46.222Z","3.13.0":"2019-02-15T01:50:28.490Z","3.13.1":"2019-02-26T22:13:02.741Z","3.13.3":"2019-04-17T00:57:07.802Z","3.14.0":"2019-05-14T23:29:36.584Z","3.14.2":"2019-06-09T22:33:19.831Z","3.15.0":"2019-06-09T23:19:51.449Z","3.16.0":"2019-07-18T23:44:42.165Z","3.16.5":"2019-10-07T22:54:14.706Z","3.18.0":"2019-10-15T20:05:07.400Z","3.18.4":"2019-11-08T01:54:00.179Z","3.18.5":"2019-11-20T01:25:45.705Z","3.20.0":"2019-12-27T21:08:17.057Z","3.21.0":"2020-05-13T00:50:54.887Z","4.0.0":"2021-02-10T22:42:21.705Z","5.0.0-alpha.0":"2022-05-24T06:22:59.287Z","5.0.0-alpha.1":"2022-05-24T06:32:25.021Z","5.0.0-alpha.2":"2022-05-24T08:03:31.493Z","5.0.0":"2022-05-24T15:43:33.395Z","5.1.0-alpha.0":"2022-05-25T11:45:00.173Z","5.1.0":"2022-06-07T17:59:22.158Z","5.1.1":"2022-06-09T10:07:36.383Z","5.1.2":"2022-06-13T10:21:00.773Z","5.1.3":"2022-06-15T15:09:24.772Z","5.1.4":"2022-06-15T16:30:36.949Z","5.1.5":"2022-06-24T08:26:38.196Z","5.1.6":"2022-06-24T17:07:57.698Z","5.1.7":"2022-07-06T13:53:17.888Z","5.1.8":"2022-07-07T11:34:36.131Z","5.2.0":"2022-07-22T17:13:25.827Z","5.3.0":"2022-07-27T13:28:32.649Z","5.4.0":"2022-08-08T14:52:48.958Z","5.4.1":"2022-08-12T13:30:19.389Z","5.4.2":"2022-08-14T14:08:25.571Z","5.4.3":"2022-08-16T18:37:48.934Z","5.5.0":"2022-08-31T20:06:11.560Z","5.5.1":"2022-09-09T14:39:48.733Z","5.5.2":"2022-09-20T20:30:18.430Z","5.5.3":"2022-09-28T13:45:47.436Z","5.5.4":"2022-09-28T13:48:05.767Z","5.6.0":"2022-09-29T21:56:16.380Z","5.6.1":"2022-09-30T14:25:16.962Z","6.0.0-alpha.0":"2022-10-07T13:39:48.343Z","5.6.2":"2022-10-09T21:18:22.810Z","6.0.0-alpha.1":"2022-10-09T21:42:52.683Z","6.0.0-alpha.2":"2022-10-12T16:29:43.628Z","6.0.0":"2022-10-12T17:39:29.335Z","6.0.1":"2022-10-14T16:48:21.296Z","6.0.2":"2022-11-02T19:23:17.858Z","6.0.3":"2022-11-07T18:16:51.946Z","6.1.0":"2022-11-29T21:38:46.892Z","6.2.0":"2022-12-13T12:52:24.998Z","6.3.0":"2022-12-26T18:40:17.026Z","6.3.1-beta.0":"2022-12-26T18:58:13.552Z","6.3.1-beta.1":"2022-12-27T12:09:38.731Z","6.3.1-beta.2":"2022-12-27T12:18:15.935Z","6.3.1-beta.3":"2022-12-27T12:24:54.221Z","6.3.1-beta.4":"2022-12-27T12:39:46.041Z","6.3.1-beta.5":"2022-12-27T12:56:52.147Z","6.3.1-beta.6":"2022-12-27T13:08:40.762Z","6.3.1-beta.8":"2022-12-27T13:16:06.051Z","6.4.0":"2023-01-05T18:28:54.115Z","6.4.1":"2023-01-12T19:38:18.081Z","6.4.2-beta.0":"2023-01-19T17:25:24.646Z","6.5.0-alpha.0":"2023-01-30T08:05:16.859Z","6.5.0-alpha.1":"2023-02-05T12:47:23.882Z","6.5.0-alpha.2":"2023-02-05T13:26:57.841Z","6.5.0":"2023-02-13T16:33:23.684Z","6.5.1":"2023-02-14T10:13:09.811Z","6.6.0":"2023-03-23T09:07:10.099Z","6.6.1":"2023-03-24T18:18:58.023Z","6.6.2":"2023-05-04T19:12:42.197Z"},"readmeFilename":"README.md","homepage":"https://lerna.js.org"}