{"_id":"shx","maintainers":[{"name":"nfischer","email":"ntfschr@gmail.com"},{"name":"freitagbr","email":"freitagbr@gmail.com"}],"keywords":["shelljs","shell","unix","bash","sh","exec","cli","zsh"],"dist-tags":{"latest":"0.4.0"},"description":"Portable Shell Commands for Node","readme":"# Shx\n\n[![GitHub Actions](https://img.shields.io/github/actions/workflow/status/shelljs/shx/main.yml?style=flat-square&logo=github)](https://github.com/shelljs/shx/actions/workflows/main.yml)\n[![Codecov](https://img.shields.io/codecov/c/github/shelljs/shx/main.svg?style=flat-square&label=coverage)](https://codecov.io/gh/shelljs/shx)\n[![npm version](https://img.shields.io/npm/v/shx.svg?style=flat-square)](https://www.npmjs.com/package/shx)\n[![npm downloads](https://img.shields.io/npm/dm/shx.svg?style=flat-square)](https://www.npmjs.com/package/shx)\n\n`shx` is a wrapper around [ShellJS](https://github.com/shelljs/shelljs) Unix\ncommands, providing an easy solution for simple Unix-like, cross-platform\ncommands in npm package scripts.\n\n`shx` is proudly tested on every LTS node release since <!-- start minVersion -->`v18`<!-- stop minVersion -->!\n\n## Difference Between ShellJS and shx\n\n- **ShellJS:** Good for writing long scripts, all in JS, running via NodeJS (e.g. `node myScript.js`).\n- **shx:** Good for writing one-off commands in npm package scripts (e.g. `\"clean\": \"shx rm -rf out/\"`).\n\n## Install\n\n```shell\nnpm install shx --save-dev\n```\nThis will allow using `shx` in your `package.json` scripts.\n\n## Usage\n\n### Command Line\n\nIf you'd like to use `shx` on the command line, install it globally with the `-g` flag.\nThe following code can be run *either a Unix or Windows* command line:\n\n```Bash\n$ shx pwd                       # ShellJS commands are supported automatically\n/home/username/path/to/dir\n\n$ shx ls                        # files are outputted one per line\nfile.txt\nfile2.txt\n\n$ shx rm *.txt                  # a cross-platform way to delete files!\n\n$ shx ls\n\n$ shx echo \"Hi there!\"\nHi there!\n\n$ shx touch helloworld.txt\n\n$ shx cp helloworld.txt foobar.txt\n\n$ shx mkdir sub\n\n$ shx ls\nfoobar.txt\nhelloworld.txt\nsub\n\n$ shx rm -r sub                 # options work as well\n\n$ shx --silent ls fakeFileName  # silence error output\n\n$ shx --negate test -d dir      # Negate status code output (e.g., failed commands will now have status 0)\n```\n\nAll commands internally call the ShellJS corresponding function, guaranteeing\ncross-platform compatibility.\n\n### package.json\n\nShellJS is good for writing long scripts. If you want to write bash-like,\nplatform-independent scripts, we recommend you go with that.\n\nHowever, `shx` is ideal for one-liners inside `package.json`:\n\n```json\n{\n  \"scripts\": {\n    \"clean\": \"shx rm -rf \\\"build/**/*.js\\\" \\\"build/output\\\" && shx echo \\\"Done cleaning\\\"\"\n  }\n}\n```\n\nIt's safe to use `&&` and `||` operators in npm package scripts. These will be\ninterpreted by the operating system's shell (`sh` on Unix, `cmd.exe` on\nWindows). If you're using glob operators like `*` or `**`, then we recommend to\n**put these in double quotes**, which ensures that `shx` will expand the glob\nrather than the operating system shell.\n\n> [!IMPORTANT]\n> Windows treats single quotes (ex. `'some string'`) differently than double\n> quotes.\n> [We recommend](https://github.com/shelljs/shx/issues/165#issuecomment-563127983)\n> wrapping your arguments in **escaped double quotes** so that your code is\n> compatible cross platform (ex. `\"clean\": \"shx echo \\\"some string\\\"\"`).\n\n## Command reference\n\nShx exposes [most ShellJS\ncommands](https://github.com/shelljs/shelljs#command-reference). If a command is\nnot listed here, assume it's supported!\n\n### sed\n\nShx provides unix-like syntax on top of `shell.sed()`. So ShellJS code like:\n\n```js\nshell.sed('-i', /original string/g, 'replacement', 'filename.txt');\n```\n\nwould turn into the following Shx command:\n\n```sh\nshx sed -i \"s/original string/replacement/g\" filename.txt\n```\n\n**Note:** like unix `sed`, `shx sed` treats `/` as a special character, and\n[this must be\nescaped](https://github.com/shelljs/shx/issues/169#issuecomment-563013849) (as\n`\\/` in the shell, or `\\\\/` in `package.json`) if you intend to use this\ncharacter in either the regex or replacement string. Do **not** escape `/`\ncharacters in the file path.\n\n### Unsupported Commands\n\nAs mentioned above, most ShellJS commands are supported in `shx`. Due to the\ndifferences in execution environments between ShellJS and `shx` (JS vs CLI) the\nfollowing commands are not supported:\n\n| Unsupported command | Recommend workaround |\n| ------------------- | -------------------- |\n| `shx cd`            | Just use plain old `cd` (it's the same on windows too) |\n| `shx pushd`         | Just use plain old `pushd`. Use forward slashes and double-quote the path. (e.g. `pushd \"../docs\"`. This would fail on Windows without the quotes) |\n| `shx popd`          | Just use plain old `popd` |\n| `shx dirs`          | No workaround |\n| `shx set`           | See below |\n| `shx exit`          | Just use plain old `exit` |\n| `shx exec`          | Instead of `shx exec cmd`, just use plain old `cmd` |\n| `shx ShellString`   | No workaround (but why would you want this?) |\n\n### Shx options\n\nShx allows you to modify its behavior by passing arguments. Here's a list of\nsupported options:\n\n| [`set`](https://github.com/shelljs/shelljs#setoptions) flag | [`shell.config`](https://github.com/shelljs/shelljs#configuration) setting | shx command | Effect |\n|:---:| --- | --- | --- |\n| `-e` | `config.fatal = true` | Not supported | Exit upon first error. |\n| `-v` | `config.verbose = true` | `shx --verbose cd foo` | Log the command as it's run. |\n| `-f` | `config.noglob = true` | `shx --noglob cat '*.txt'` | Don't expand wildcards. |\n| N/A | `config.silent = true` | `shx --silent cd noexist` | Don't show error output. |\n| N/A | N/A | `shx --negate test -d dir` | Runs the specified command but negates the exit status. Failed command = status 0, successful command = status 1. |\n| N/A | N/A | `shx --help` | Show help text. |\n| N/A | N/A | `shx --version` | Print the shx version. |\n\n## Team\n\n| [![Nate Fischer](https://avatars.githubusercontent.com/u/5801521?s=130)](https://github.com/nfischer) | [![Ari Porad](https://avatars1.githubusercontent.com/u/1817508?v=3&s=130)](http://github.com/ariporad) | [![Levi Thomason](https://avatars1.githubusercontent.com/u/5067638?v=3&s=130)](https://github.com/levithomason) |\n|:---:|:---:|:---:|\n| [Nate Fischer](https://github.com/nfischer) | [Ari Porad](http://github.com/ariporad) | [Levi Thomason](https://github.com/levithomason) |\n","repository":{"type":"git","url":"git+https://github.com/shelljs/shx.git"},"users":{"mdedirudianto":true,"bigslycat":true,"omanizz12345678":true,"mdecker":true,"yehudag":true,"ognjen.jevremovic":true,"jakeparis":true,"abraham":true,"acs1899":true,"alexreg90":true,"eightyfour84":true,"flumpus-dev":true,"tomgao365":true,"drewigg":true,"alexreg":true,"yeming":true,"gvn":true,"tmurngon":true,"nickytonline":true},"bugs":{"url":"https://github.com/shelljs/shx/issues"},"license":"MIT","versions":{"0.3.3":{"name":"shx","version":"0.3.3","keywords":["shelljs","shell","unix","bash","sh","exec","cli","zsh"],"license":"MIT","_id":"shx@0.3.3","maintainers":[{"name":"nfischer","email":"ntfschr@gmail.com"},{"name":"freitagbr","email":"freitagbr@gmail.com"}],"contributors":[{"url":"http://ariporad.com/","name":"Ari Porad","email":"ari@ariporad.com"},{"url":"https://github.com/levithomason","name":"Levi Thomason","email":"me@levithomason.com"},{"name":"Nate Fischer","email":"ntfschr@gmail.com"}],"homepage":"https://github.com/shelljs/shx#readme","bugs":{"url":"https://github.com/shelljs/shx/issues"},"bin":{"shx":"lib/cli.js"},"dist":{"shasum":"681a88c7c10db15abe18525349ed474f0f1e7b9f","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/shx/-/shx-0.3.3.tgz","fileCount":10,"integrity":"sha512-nZJ3HFWVoTSyyB+evEKjJ1STiixGztlqwKLTUNV5KqMWtGey9fTd4KU1gdZ1X9BV6215pswQ/Jew9NsuS/fNDA==","signatures":[{"sig":"MEYCIQCwjRl0wqSZg86OS5BZO3Ofgmb04xX95dEHd1JJ80BacAIhANNh5H2qB1yJStJtgnq8LYcMalEfQLtmHe6OTcoMFcpZ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":35235,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJflmATCRA9TVsSAnZWagAA0hgP+gPYTIuu/W8hId1lVI2Q\n/S/iyh8vZVESvtrIXPmSWPKMkj+ZjYfdxx+2qsF8XARyVbmtyO8jvohGoJGA\nwkFiTAkNDKVWSWpl2yswEQqR5EpayvGcRr3LeSfcaOxQKRwYFZNm9CKyOd/M\nk3z3F1rwv86OEDrfw8/wVprQ5w6fjFLlnFyLVTIQLfb1cQQioj8epXcPr6Ek\nmhRqav+AHS4vKVBz0oj+T9wXPkiLo61miycqoMxP5QHEjd1iN+RcB9ufixXI\nuTkEg8YP2gLKzkRfUSTt64h2DH00RRDQOQh2mUAaj3d8kwMScnocnE8tuNd4\npfLOO4TevQ6RfRf4fR51ufDshrXUjNLy5nV2tCmp1i4SIzFfHqYjL8LrW/Z+\nXrEZKJ6uau/MIHSKzN9aMPfq4IhIz0S+YObjSn6Dk3Glay+W9nn6WhBbSWuL\nfOSil3n7tYeqgD29LWIXwQPiaBvooRuj263QZeJNwZ01PUe3aXc6Pz8mWcyI\nb79f3haxfY1f3eLnMjXFUpPFbmJF0N2dRj+Oy41WGr0rRvRnmpxvzvSWiAyy\n/O4TRAybqGKyWP29ripyihTBzmcTfuQPo62H9QNrzdaUgx4L1kGRzBGQFEFz\nRbOcqotyI2UlbGefbEJJUE/tkW/Jzd8SSQNBMsasZ2MhIP+GjzUCoVJ9/UiJ\nwxnb\r\n=mzXn\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=6"},"gitHead":"6d2d2f21753de01c10cc5bdaefb2f032bfe7f66d","scripts":{"dev":"concurrently -rk 'npm run build:watch' 'npm run lint:watch'","lint":"eslint .","test":"nyc --reporter=text --reporter=lcov mocha","build":"babel src -d lib","codecov":"codecov","lint:fix":"npm run lint --silent -- --fix","posttest":"npm run lint --silent","prebuild":"rimraf lib","changelog":"shelljs-changelog","lint:watch":"watch 'npm run lint --silent' src test","prepublish":"npm run build","test:watch":"concurrently -rk 'npm run test --silent -- -w' 'npm run lint:watch'","build:watch":"npm run build -- -w","release:major":"shelljs-release major","release:minor":"shelljs-release minor","release:patch":"shelljs-release patch","check-node-support":"node scripts/check-node-support"},"_npmUser":{"name":"nfischer","email":"ntfschr@gmail.com"},"repository":{"url":"git+https://github.com/shelljs/shx.git","type":"git"},"_npmVersion":"6.14.4","description":"Portable Shell Commands for Node","directories":{},"_nodeVersion":"10.19.0","dependencies":{"shelljs":"^0.8.4","minimist":"^1.2.3"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","mocha":"^6.1.4","watch":"^1.0.2","eslint":"^5.16.0","rimraf":"^2.5.2","should":"^13.2.3","codecov":"^3.0.2","js-yaml":"^3.12.0","babel-cli":"^6.6.5","concurrently":"^2.1.0","babel-register":"^6.7.2","shelljs-release":"^0.3.0","babel-preset-env":"^1.7.0","shelljs-changelog":"^0.2.0","shelljs-plugin-open":"^0.2.0","eslint-plugin-import":"^2.17.3","eslint-config-airbnb-base":"^13.1.0"},"_npmOperationalInternal":{"tmp":"tmp/shx_0.3.3_1603690514825_0.6728869112127944","host":"s3://npm-registry-packages"}},"0.3.4":{"name":"shx","version":"0.3.4","keywords":["shelljs","shell","unix","bash","sh","exec","cli","zsh"],"license":"MIT","_id":"shx@0.3.4","maintainers":[{"name":"nfischer","email":"ntfschr@gmail.com"},{"name":"freitagbr","email":"freitagbr@gmail.com"}],"contributors":[{"url":"http://ariporad.com/","name":"Ari Porad","email":"ari@ariporad.com"},{"url":"https://github.com/levithomason","name":"Levi Thomason","email":"me@levithomason.com"},{"name":"Nate Fischer","email":"ntfschr@gmail.com"}],"homepage":"https://github.com/shelljs/shx#readme","bugs":{"url":"https://github.com/shelljs/shx/issues"},"bin":{"shx":"lib/cli.js"},"dist":{"shasum":"74289230b4b663979167f94e1935901406e40f02","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/shx/-/shx-0.3.4.tgz","fileCount":10,"integrity":"sha512-N6A9MLVqjxZYcVn8hLmtneQWIJtp8IKzMP4eMnx+nqkvXoqinUPCbUFLp2UcWTEIUONhlk0ewxr/jaVGlc+J+g==","signatures":[{"sig":"MEYCIQD+h8q379O2+DVYp5cYMmqC77xsgwfWgK/IC7H0agedBgIhAIEWu/DDN0ZByrWkiuZW+ZAn35wIWnTOXhczmQcUnnf5","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38643,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh25cVCRA9TVsSAnZWagAAhSMP/0exORJW9so28slkFLnL\nBYhv7skUXw2PoQdIxkByKWh/9+tbPYvdeRscKlKV6ysZ9ix2YsEP3EbcHH4H\ndINb7aWvPoJnAFwCOKiWRx6nWtchGEPd5Nesw6uTBQQzZYbtunw7UHr1WCmj\nSDtQ7MdGYf2PZv66diY3Ca7BSYpZYNpfJwwSu7xPu9SpWc71ZsELxPnquHKM\njhcam4qSK5DyLMISXvxdgVhBEFMnnidX9m/G8SwZvmqbmfVJ5KhsuNyMMFtm\nYHhyTdwCkPikRdrIs+xhG40GzmSOtQyQvTr2jZ/e3xrO3ckROnjJtiWLnS57\n7oMkBraUABxGrYBed96e9z1t57eEzrMOM8uZW1+O3F4E8m6xx3FgT5IFflIA\nKvDi55pWzY7C5Ru4t5AsBBhL0SkG2Qzje/19FW1xRs3S4uYY8S5QjMFbq5zc\ndx+koADzObqNMP6YeSZw2SWTF9/GfZ3d1YvJnKkHNqv3RH92hrYyQ3frYXJQ\nkXBKUcHuHT4UyKFFgozSjLJlHh3Upfrs+BwMa3jW7Kyfyysr/u7wdQm7JNA0\nWuem02xmlvCcgy9G1bIqjOq47v9D6KqjWWzZXQKWSilye+FgW1zbuRgKScYh\nrmEJzRr9KXxoxu2lxcT4MR/Sr2UzFIpLvrx9MdeEBUjSW7/39CwqEAQZNsHt\nigxj\r\n=lWRP\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=6"},"gitHead":"2eb1a35e2e5db503f568fcdfba465cf444496108","scripts":{"dev":"concurrently -rk 'npm run build:watch' 'npm run lint:watch'","lint":"eslint .","test":"nyc --reporter=text --reporter=lcov mocha","build":"babel src -d lib","codecov":"codecov","lint:fix":"npm run lint --silent -- --fix","posttest":"npm run lint --silent","prebuild":"rimraf lib","changelog":"shelljs-changelog","lint:watch":"watch 'npm run lint --silent' src test","prepublish":"npm run build","test:watch":"concurrently -rk 'npm run test --silent -- -w' 'npm run lint:watch'","build:watch":"npm run build -- -w","release:major":"shelljs-release major","release:minor":"shelljs-release minor","release:patch":"shelljs-release patch","check-node-support":"node scripts/check-node-support"},"_npmUser":{"name":"nfischer","email":"ntfschr@gmail.com"},"repository":{"url":"git+https://github.com/shelljs/shx.git","type":"git"},"_npmVersion":"6.14.4","description":"Portable Shell Commands for Node","directories":{},"_nodeVersion":"10.19.0","dependencies":{"shelljs":"^0.8.5","minimist":"^1.2.3"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","mocha":"^6.1.4","watch":"^1.0.2","eslint":"^5.16.0","rimraf":"^2.5.2","should":"^13.2.3","codecov":"^3.0.2","js-yaml":"^3.12.0","babel-cli":"^6.6.5","concurrently":"^2.1.0","babel-register":"^6.7.2","shelljs-release":"^0.5.1","babel-preset-env":"^1.7.0","shelljs-changelog":"^0.2.6","shelljs-plugin-open":"^0.2.1","eslint-plugin-import":"^2.17.3","eslint-config-airbnb-base":"^13.1.0"},"_npmOperationalInternal":{"tmp":"tmp/shx_0.3.4_1641781013779_0.6793147967233488","host":"s3://npm-registry-packages"}},"0.1.3":{"name":"shx","version":"0.1.3","keywords":["shelljs","shell","unix","bash","sh","exec","cli","zsh"],"license":"MIT","_id":"shx@0.1.3","maintainers":[{"name":"ariporad","email":"ari@ariporad.com"},{"name":"levithomason","email":"me@levithomason.com"},{"name":"nfischer","email":"ntfschr@gmail.com"}],"contributors":[{"url":"http://ariporad.com/","name":"Ari Porad","email":"ari@ariporad.com"},{"url":"https://github.com/levithomason","name":"Levi Thomason","email":"me@levithomason.com"},{"name":"Nate Fischer","email":"ntfschr@gmail.com"}],"homepage":"https://github.com/shelljs/shx#readme","bugs":{"url":"https://github.com/shelljs/shx/issues"},"bin":{"shx":"lib/cli.js"},"dist":{"shasum":"f8a2f72b3a97eac58eb5285fba84defbf5fcfbe7","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/shx/-/shx-0.1.3.tgz","integrity":"sha512-c0ZQicDWV6PRyQb1/eUgiy7+6u/nPpZjy7rRyY4o25IN1woyAH6WpeJ5PERKIskIiHI7qVWEcaU9MrL1J/hTFA==","signatures":[{"sig":"MEUCIQDgmSUDOEl0056hXUi4e8IAWgVee5rl+HZk0IVz11EWPgIgDAUqkyv8CY3iqHlRGxWli7tc9+U9fmtFSo9ocAnRd1c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["lib"],"_shasum":"f8a2f72b3a97eac58eb5285fba84defbf5fcfbe7","gitHead":"cb799878e9c156edbb303fada63c1df889a41ff1","scripts":{"dev":"concurrently -rk 'npm run build:watch' 'npm run lint:watch'","lint":"eslint .","test":"nyc --reporter=text --reporter=lcov mocha","build":"babel src -d lib","lint:fix":"npm run lint --silent -- --fix","posttest":"npm run lint --silent","prebuild":"rimraf lib","changelog":"shelljs-changelog","lint:watch":"watch 'npm run lint --silent' src test","prepublish":"npm run build","test:watch":"concurrently -rk 'npm run test --silent -- -w' 'npm run lint:watch'","build:watch":"npm run build -- -w","release:major":"shelljs-release major","release:minor":"shelljs-release minor","release:patch":"shelljs-release patch"},"_npmUser":{"name":"nfischer","email":"ntfschr@gmail.com"},"repository":{"url":"git+https://github.com/shelljs/shx.git","type":"git"},"_npmVersion":"3.5.2","description":"Portable Shell Commands for Node","directories":{},"_nodeVersion":"6.0.0","dependencies":{"shelljs":"^0.7.0","minimist":"^1.2.0"},"devDependencies":{"nyc":"^6.4.0","chai":"^3.5.0","mocha":"^2.4.5","sinon":"^1.17.3","watch":"^0.18.0","eslint":"^2.10.1","rimraf":"^2.5.2","babel-cli":"^6.6.5","dirty-chai":"^1.2.2","sinon-chai":"^2.8.0","concurrently":"^2.1.0","babel-register":"^6.7.2","shelljs-release":"^0.2.0","shelljs-changelog":"^0.2.0","babel-preset-es2015":"^6.6.0","eslint-plugin-import":"^1.8.0","eslint-config-airbnb-base":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/shx-0.1.3.tgz_1470869358435_0.5820441690739244","host":"packages-12-west.internal.npmjs.com"}},"0.2.2":{"name":"shx","version":"0.2.2","keywords":["shelljs","shell","unix","bash","sh","exec","cli","zsh"],"license":"MIT","_id":"shx@0.2.2","maintainers":[{"name":"ariporad","email":"ari@ariporad.com"},{"name":"levithomason","email":"me@levithomason.com"},{"name":"nfischer","email":"ntfschr@gmail.com"}],"contributors":[{"url":"http://ariporad.com/","name":"Ari Porad","email":"ari@ariporad.com"},{"url":"https://github.com/levithomason","name":"Levi Thomason","email":"me@levithomason.com"},{"name":"Nate Fischer","email":"ntfschr@gmail.com"}],"homepage":"https://github.com/shelljs/shx#readme","bugs":{"url":"https://github.com/shelljs/shx/issues"},"bin":{"shx":"lib/cli.js"},"dist":{"shasum":"0a304d020b0edf1306ad81570e80f0346df58a39","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/shx/-/shx-0.2.2.tgz","integrity":"sha512-zg9pch6Ha/hQy0RgvwKfbF5ufJk6h+gNMwJK6EapuhCjr/tBbkGN4lRV9aU5SSgMxcFcKzhWMrqfuG8RvOPB+A==","signatures":[{"sig":"MEQCIDRFFUoBuLcB9GyDUY65HhsZqcqOb5ZCJFdNLadANDQuAiAbMsXhx5o/fT4U8yEUwi3HrwCd33JNdvCrqo9cQ3ciXw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["lib"],"_shasum":"0a304d020b0edf1306ad81570e80f0346df58a39","gitHead":"413368d01ef5d81808ebf62c45c33b1680b7913b","scripts":{"dev":"concurrently -rk 'npm run build:watch' 'npm run lint:watch'","lint":"eslint .","test":"nyc --reporter=text --reporter=lcov mocha","build":"babel src -d lib","codecov":"codecov","lint:fix":"npm run lint --silent -- --fix","posttest":"npm run lint --silent","prebuild":"rimraf lib","changelog":"shelljs-changelog","lint:watch":"watch 'npm run lint --silent' src test","prepublish":"npm run build","test:watch":"concurrently -rk 'npm run test --silent -- -w' 'npm run lint:watch'","build:watch":"npm run build -- -w","release:major":"shelljs-release major","release:minor":"shelljs-release minor","release:patch":"shelljs-release patch"},"_npmUser":{"name":"nfischer","email":"ntfschr@gmail.com"},"repository":{"url":"git+https://github.com/shelljs/shx.git","type":"git"},"_npmVersion":"3.10.8","description":"Portable Shell Commands for Node","directories":{},"_nodeVersion":"6.7.0","dependencies":{"shelljs":"^0.7.3","minimist":"^1.2.0","es6-object-assign":"^1.0.3"},"devDependencies":{"nyc":"^6.4.0","mocha":"^2.4.5","watch":"^0.18.0","eslint":"^2.10.1","rimraf":"^2.5.2","should":"^11.1.1","codecov":"^1.0.1","babel-cli":"^6.6.5","concurrently":"^2.1.0","babel-register":"^6.7.2","shelljs-release":"^0.2.0","shelljs-changelog":"^0.2.0","babel-preset-es2015":"^6.6.0","shelljs-plugin-open":"^0.1.1","eslint-plugin-import":"^1.8.0","eslint-config-airbnb-base":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/shx-0.2.2.tgz_1483865443811_0.557509504025802","host":"packages-18-east.internal.npmjs.com"}},"0.3.1":{"name":"shx","version":"0.3.1","keywords":["shelljs","shell","unix","bash","sh","exec","cli","zsh"],"license":"MIT","_id":"shx@0.3.1","maintainers":[{"name":"freitagbr","email":"freitagbr@gmail.com"},{"name":"nfischer","email":"ntfschr@gmail.com"}],"contributors":[{"url":"http://ariporad.com/","name":"Ari Porad","email":"ari@ariporad.com"},{"url":"https://github.com/levithomason","name":"Levi Thomason","email":"me@levithomason.com"},{"name":"Nate Fischer","email":"ntfschr@gmail.com"}],"homepage":"https://github.com/shelljs/shx#readme","bugs":{"url":"https://github.com/shelljs/shx/issues"},"bin":{"shx":"lib/cli.js"},"dist":{"shasum":"876918dd6e7a1b531926afc0bdcb1565ab030ae4","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/shx/-/shx-0.3.1.tgz","fileCount":9,"integrity":"sha512-k1OnMqe9ibnmx/9x1TPXDipxhsx7tQj2z+1NCvp+Vj6wspf+2O9IApR60E5uJIZXMhBuKk19RgWkIzH1G5UE7A==","signatures":[{"sig":"MEQCIEAseJX95r8DNQKqRDuv2TPoHX5dHYgCkfOD36n8x4NRAiACb4L3ue8BJQbGovIq2vkpi5vKLFYXRjYFdLh4PkRCfw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":30573,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbMclaCRA9TVsSAnZWagAA+WgP/ROUDKCdy6fYjoRSPJN4\nkDL9oGeQgU9DvcD5LQu14vqiUmYuTNg3ZafiBLY0MUiYdvQmPjtws74XE6lO\nN/CFZu6U35al1xe+zKBpuJ0mew8caLH2UxqHP+hN+JzgoC84PH+QxTOocakk\nmG1Dznu8/C2w7uMmHXzkQYOroCjnGedsvTfv0NVJP1+rqoEuQ/tta0VAnUV6\ngpxccQOtWXX5KDrNWbWR5RAbI4QEqzs8NtqWekZFSNqj5kAi5hXae+uAv2wl\nOyTpJis+RIB7CJc4mWyspfTsIxDDA/53+FEEvr6i0nKQl4cvciwMsPWEcCXh\nAb1CdMIyEIXfvh/lN4lvZnHoEzpeAWYxKAt9orSVIPIObC86hbTXZ3SVwlD7\ni145uUjV923U/He9MvDbydWNwSq95yd1XzrAF3qE4cmkXwAnEIrCHxtcCCUw\nUa+6OcHVpC2yD3S+9+zlYE4SqIr/AHZXUeSc60+c8biF5/rEuI5Zf/YaxiUd\nFL9DjGkrY4Gvcrvs++us3buQhpBXR2ssas3TBQUqPO7xb1Qe7eC50TRjkAKR\n8nMxcmdzVB2A+MIxt4NyF8dDZtgK7e/PbuTVGzz3WkFvysgxKKHsggZ/8qsA\nCpk8a3TH0nlQ8zUsOjBjRzFgqchOnCMh0sVUatJ14et7X1jr5Oz+3qPCYZwe\n0Dt5\r\n=x+2v\r\n-----END PGP SIGNATURE-----\r\n"},"files":["lib"],"engines":{"node":">=4"},"gitHead":"263a96059a2b6c6ee07bafefe08f5320d377c3af","scripts":{"dev":"concurrently -rk 'npm run build:watch' 'npm run lint:watch'","lint":"eslint .","test":"nyc --reporter=text --reporter=lcov mocha","build":"babel src -d lib","codecov":"codecov","lint:fix":"npm run lint --silent -- --fix","posttest":"npm run lint --silent","prebuild":"rimraf lib","changelog":"shelljs-changelog","lint:watch":"watch 'npm run lint --silent' src test","prepublish":"npm run build","test:watch":"concurrently -rk 'npm run test --silent -- -w' 'npm run lint:watch'","build:watch":"npm run build -- -w","release:major":"shelljs-release major","release:minor":"shelljs-release minor","release:patch":"shelljs-release patch"},"_npmUser":{"name":"nfischer","email":"ntfschr@gmail.com"},"repository":{"url":"git+https://github.com/shelljs/shx.git","type":"git"},"_npmVersion":"5.5.1","description":"Portable Shell Commands for Node","directories":{},"_nodeVersion":"8.9.0","dependencies":{"shelljs":"^0.8.1","minimist":"^1.2.0","es6-object-assign":"^1.0.3"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^12.0.2","mocha":"^5.2.0","watch":"^0.18.0","eslint":"^2.10.1","rimraf":"^2.5.2","should":"^11.1.1","codecov":"^3.0.2","babel-cli":"^6.6.5","concurrently":"^2.1.0","babel-register":"^6.7.2","shelljs-release":"^0.3.0","babel-preset-env":"^1.7.0","shelljs-changelog":"^0.2.0","shelljs-plugin-open":"^0.2.0","eslint-plugin-import":"^1.8.0","eslint-config-airbnb-base":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/shx_0.3.1_1529989466383_0.8838452340699197","host":"s3://npm-registry-packages"}},"0.4.0":{"name":"shx","version":"0.4.0","description":"Portable Shell Commands for Node","bin":{"shx":"lib/cli.js"},"scripts":{"check-node-support":"node scripts/check-node-support","prebuild":"rimraf lib","build":"babel src -d lib","lint":"eslint .","prepublish":"npm run build","posttest":"npm run lint","release:major":"shelljs-release major","release:minor":"shelljs-release minor","release:patch":"shelljs-release patch","changelog":"shelljs-changelog","test":"nyc --reporter=text --reporter=lcov mocha"},"repository":{"type":"git","url":"git+https://github.com/shelljs/shx.git"},"keywords":["shelljs","shell","unix","bash","sh","exec","cli","zsh"],"contributors":[{"name":"Ari Porad","email":"ari@ariporad.com","url":"http://ariporad.com/"},{"name":"Levi Thomason","email":"me@levithomason.com","url":"https://github.com/levithomason"},{"name":"Nate Fischer","email":"ntfschr@gmail.com"}],"license":"MIT","bugs":{"url":"https://github.com/shelljs/shx/issues"},"homepage":"https://github.com/shelljs/shx#readme","devDependencies":{"babel-cli":"^6.6.5","babel-preset-env":"^1.7.0","babel-register":"^6.7.2","eslint":"^8.57.1","eslint-config-airbnb-base":"^15.0.0","eslint-import-resolver-node":"0.3.7","eslint-plugin-import":"^2.31.0","js-yaml":"^4.1.0","mocha":"^11.1.0","nyc":"^17.1.0","rimraf":"^5.0.10","shelljs-changelog":"^0.2.6","shelljs-plugin-open":"^0.3.0","shelljs-release":"^0.5.3","should":"^13.2.3"},"dependencies":{"minimist":"^1.2.8","shelljs":"^0.9.2"},"engines":{"node":">=18"},"gitHead":"8886c3e3acf9ec84454c938ab6ee49388a64a4f7","_id":"shx@0.4.0","_nodeVersion":"18.19.1","_npmVersion":"9.2.0","dist":{"integrity":"sha512-Z0KixSIlGPpijKgcH6oCMCbltPImvaKy0sGH8AkLRXw1KyzpKtaCTizP2xen+hNDqVF4xxgvA0KXSb9o4Q6hnA==","shasum":"c6ea6ace7e778da0ab32d2eab9def59d788e9336","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/shx/-/shx-0.4.0.tgz","fileCount":9,"unpackedSize":20025,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIE/LsWUDOFuNfNBpDu2Tbd2JP3jqfk+cIH8rcgGY/8sXAiEAgPJMGMddhmgfsFjyQs/JgwSZ+Lssp1hF1SNzUtofOps="}]},"_npmUser":{"name":"nfischer","email":"ntfschr@gmail.com"},"directories":{},"maintainers":[{"name":"nfischer","email":"ntfschr@gmail.com"},{"name":"freitagbr","email":"freitagbr@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/shx_0.4.0_1742174332677_0.9063333411943506"},"_hasShrinkwrap":false},"0.1.4":{"name":"shx","version":"0.1.4","keywords":["shelljs","shell","unix","bash","sh","exec","cli","zsh"],"license":"MIT","_id":"shx@0.1.4","maintainers":[{"name":"ariporad","email":"ari@ariporad.com"},{"name":"levithomason","email":"me@levithomason.com"},{"name":"nfischer","email":"ntfschr@gmail.com"}],"contributors":[{"url":"http://ariporad.com/","name":"Ari Porad","email":"ari@ariporad.com"},{"url":"https://github.com/levithomason","name":"Levi Thomason","email":"me@levithomason.com"},{"name":"Nate Fischer","email":"ntfschr@gmail.com"}],"homepage":"https://github.com/shelljs/shx#readme","bugs":{"url":"https://github.com/shelljs/shx/issues"},"bin":{"shx":"lib/cli.js"},"dist":{"shasum":"9a3a94271e6cbb788149fdc6696237154ab6379f","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/shx/-/shx-0.1.4.tgz","integrity":"sha512-UAjae2bbL77gpbaQftI5HfGEuCoIIxk2HmWdwpfcSqwKmplTdQBSv5hiT03JIu1iAJu2ALL3Or9UzcdqX8iQIQ==","signatures":[{"sig":"MEUCIQDauQBzVZAHkGTgCIarpnhD29brqf0+iPp4n2BF4FLEHQIgYwFNv4dWDpiCqp+NOaAV3my7K+pnl4b1znGk5EbIf3M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["lib"],"_shasum":"9a3a94271e6cbb788149fdc6696237154ab6379f","gitHead":"c540bf5b5e234f4662dbbb129ec55bdd4d5d37a2","scripts":{"dev":"concurrently -rk 'npm run build:watch' 'npm run lint:watch'","lint":"eslint .","test":"nyc --reporter=text --reporter=lcov mocha","build":"babel src -d lib","lint:fix":"npm run lint --silent -- --fix","posttest":"npm run lint --silent","prebuild":"rimraf lib","changelog":"shelljs-changelog","lint:watch":"watch 'npm run lint --silent' src test","prepublish":"npm run build","test:watch":"concurrently -rk 'npm run test --silent -- -w' 'npm run lint:watch'","build:watch":"npm run build -- -w","release:major":"shelljs-release major","release:minor":"shelljs-release minor","release:patch":"shelljs-release patch"},"_npmUser":{"name":"nfischer","email":"ntfschr@gmail.com"},"repository":{"url":"git+https://github.com/shelljs/shx.git","type":"git"},"_npmVersion":"3.5.2","description":"Portable Shell Commands for Node","directories":{},"_nodeVersion":"6.0.0","dependencies":{"shelljs":"^0.7.0","minimist":"^1.2.0"},"devDependencies":{"nyc":"^6.4.0","chai":"^3.5.0","mocha":"^2.4.5","sinon":"^1.17.3","watch":"^0.18.0","eslint":"^2.10.1","rimraf":"^2.5.2","babel-cli":"^6.6.5","dirty-chai":"^1.2.2","sinon-chai":"^2.8.0","concurrently":"^2.1.0","babel-register":"^6.7.2","shelljs-release":"^0.2.0","shelljs-changelog":"^0.2.0","babel-preset-es2015":"^6.6.0","eslint-plugin-import":"^1.8.0","eslint-config-airbnb-base":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/shx-0.1.4.tgz_1471495183445_0.863045760197565","host":"packages-16-east.internal.npmjs.com"}},"0.3.2":{"name":"shx","version":"0.3.2","keywords":["shelljs","shell","unix","bash","sh","exec","cli","zsh"],"license":"MIT","_id":"shx@0.3.2","maintainers":[{"name":"freitagbr","email":"freitagbr@gmail.com"},{"name":"nfischer","email":"ntfschr@gmail.com"}],"contributors":[{"url":"http://ariporad.com/","name":"Ari Porad","email":"ari@ariporad.com"},{"url":"https://github.com/levithomason","name":"Levi Thomason","email":"me@levithomason.com"},{"name":"Nate Fischer","email":"ntfschr@gmail.com"}],"homepage":"https://github.com/shelljs/shx#readme","bugs":{"url":"https://github.com/shelljs/shx/issues"},"bin":{"shx":"lib/cli.js"},"dist":{"shasum":"40501ce14eb5e0cbcac7ddbd4b325563aad8c123","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/shx/-/shx-0.3.2.tgz","fileCount":10,"integrity":"sha512-aS0mWtW3T2sHAenrSrip2XGv39O9dXIFUqxAEWHEOS1ePtGIBavdPJY1kE2IHl14V/4iCbUiNDPGdyYTtmhSoA==","signatures":[{"sig":"MEQCIE8Ja1dWMPEEVwJzF4LX6RL7yjnYe8A7HXUC8pLQ00YSAiAhVRhdLBNl+Rz1UCFNuMeelCKu7F9cpaDuJdsm4g2kHA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":34108,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbRYQCCRA9TVsSAnZWagAAPX4P/3gUCVkng6oKFiu2qmQV\nETeVOcM49g1YD5Lufc3K8kpoo4JrBc7pJcLIDk0riKfpShcQMvGizRp2BAHM\nFyqsXqo5GoC4Lo6j6ue2MSbiHoYTLTvfWF9lnp8otbvWuJKauqVOnEyKhRl/\niPSt0Fh+C0X9D7OlIk05MMpvFcXOJ6evTZF6tOil3MHme+gMzJjcEI7tEthh\ngbyCaMntvPj4w6MuujuYiYD6pMWE+Mjm4DuxJhTwIijTDs8m120jyuXDZ7WY\nBo8jD37PyRr7iTvX8Fd9cMIi7V9gy89Klc7mgpH/AUx7JTRAWOIk1mgqRSrx\nVtddpCD4UPZDH/dIGTqByO2Yab77hbWNfnnqw8EQSx7jyCzPnvWBP8oo67LX\nVBGbtL05v2NsAvvY560Q3mxNAqw5imDZ4dpTqsHYYTbSJFwhFGyKQqEPhDdp\nMsECl60ubvGDPiQEmdm/nT02lE7nONTJPJfV1p7eO633BCrnofEtuypd1swI\nK1zf8jAPQrjmIHH3XbWaMJI4OghloS5hoLa3geZb2FWNSuQ/uPdSa/1o1wVd\nlYJC/CR8gNzACaKkfQ7dzXjrlEM5xkZKlXtaUgKEvt6+/QymMawohj0jT694\ngEISfDFCqp1asA4isMeNMSChLLy+/B/opAtKv55di7mkAXusI97O/1Tatcm+\nij58\r\n=j/va\r\n-----END PGP SIGNATURE-----\r\n"},"files":["lib"],"engines":{"node":">=4"},"gitHead":"4ade36d43cf7545d7fcac2a6c248486a6a068c15","scripts":{"dev":"concurrently -rk 'npm run build:watch' 'npm run lint:watch'","lint":"eslint .","test":"nyc --reporter=text --reporter=lcov mocha","build":"babel src -d lib","codecov":"codecov","lint:fix":"npm run lint --silent -- --fix","posttest":"npm run lint --silent","prebuild":"rimraf lib","changelog":"shelljs-changelog","lint:watch":"watch 'npm run lint --silent' src test","prepublish":"npm run build","test:watch":"concurrently -rk 'npm run test --silent -- -w' 'npm run lint:watch'","build:watch":"npm run build -- -w","release:major":"shelljs-release major","release:minor":"shelljs-release minor","release:patch":"shelljs-release patch"},"_npmUser":{"name":"nfischer","email":"ntfschr@gmail.com"},"repository":{"url":"git+https://github.com/shelljs/shx.git","type":"git"},"_npmVersion":"5.5.1","description":"Portable Shell Commands for Node","directories":{},"_nodeVersion":"8.9.0","dependencies":{"shelljs":"^0.8.1","minimist":"^1.2.0","es6-object-assign":"^1.0.3"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^11.0.0","mocha":"^5.2.0","watch":"^0.18.0","eslint":"^2.10.1","rimraf":"^2.5.2","should":"^11.1.1","codecov":"^3.0.2","babel-cli":"^6.6.5","concurrently":"^2.1.0","babel-register":"^6.7.2","shelljs-release":"^0.3.0","babel-preset-env":"^1.7.0","shelljs-changelog":"^0.2.0","shelljs-plugin-open":"^0.2.0","eslint-plugin-import":"^1.8.0","eslint-config-airbnb-base":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/shx_0.3.2_1531282434194_0.2465678720806308","host":"s3://npm-registry-packages"}},"0.1.1":{"name":"shx","version":"0.1.1","keywords":["shelljs","shell","unix","bash","sh","exec","cli","zsh"],"license":"MIT","_id":"shx@0.1.1","maintainers":[{"name":"ariporad","email":"ari@ariporad.com"},{"name":"levithomason","email":"me@levithomason.com"},{"name":"nfischer","email":"ntfschr@gmail.com"}],"contributors":[{"url":"http://ariporad.com/","name":"Ari Porad","email":"ari@ariporad.com"},{"name":"Nate Fischer","email":"ntfschr@gmail.com"}],"homepage":"https://github.com/shelljs/shx#readme","bugs":{"url":"https://github.com/shelljs/shx/issues"},"bin":{"shx":"lib/cli.js"},"dist":{"shasum":"ceec0149571ec7ee43abcb81c80db841138c8009","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/shx/-/shx-0.1.1.tgz","integrity":"sha512-cpKFK1Fe8L2xYNlBp+2b1yY4EMhnlOs3QpNjhuN83nvuIK2SIF4W7Mnb6/iTSw0MvYubkpEk3RtbJU2DVdlf5Q==","signatures":[{"sig":"MEUCIBgyWYGWZlJ/y2EquHYBNc8X++h9jlUQIOmpI6VBkOs4AiEAoFhme9JQ0/KaLlZoYLDOfBFboMqV00RGkR2mkSf+nfw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["lib"],"_shasum":"ceec0149571ec7ee43abcb81c80db841138c8009","gitHead":"5e778118c242c3668d332794b56382b6a27be466","scripts":{"dev":"concurrently -rk 'npm run build:watch' 'npm run lint:watch'","lint":"eslint .","test":"nyc --reporter=text --reporter=lcov mocha","build":"babel src -d lib","lint:fix":"npm run lint --silent -- --fix","posttest":"npm run lint --silent","prebuild":"rimraf lib","lint:watch":"watch 'npm run lint --silent' src test","prepublish":"npm run build","test:watch":"concurrently -rk 'npm run test --silent -- -w' 'npm run lint:watch'","build:watch":"npm run build -- -w","release:major":"bash scripts/release.sh major","release:minor":"bash scripts/release.sh minor","release:patch":"bash scripts/release.sh patch"},"_npmUser":{"name":"levithomason","email":"me@levithomason.com"},"repository":{"url":"git+https://github.com/shelljs/shx.git","type":"git"},"_npmVersion":"3.8.6","description":"Portable Shell Commands for Node","directories":{},"_nodeVersion":"6.0.0","dependencies":{"shelljs":"^0.7.0","babel-polyfill":"^6.8.0"},"devDependencies":{"nyc":"^6.4.0","chai":"^3.5.0","mocha":"^2.4.5","sinon":"^1.17.3","watch":"^0.17.1","eslint":"^1.10.3","rimraf":"^2.5.2","codecov":"^1.0.1","babel-cli":"^6.6.5","dirty-chai":"^1.2.2","sinon-chai":"^2.8.0","concurrently":"^2.0.0","babel-register":"^6.7.2","babel-preset-es2015":"^6.6.0","eslint-plugin-react":"^3.16.1","eslint-config-airbnb":"^5.0.1"},"_npmOperationalInternal":{"tmp":"tmp/shx-0.1.1.tgz_1462311943090_0.16427906998433173","host":"packages-12-west.internal.npmjs.com"}},"0.2.0":{"name":"shx","version":"0.2.0","keywords":["shelljs","shell","unix","bash","sh","exec","cli","zsh"],"license":"MIT","_id":"shx@0.2.0","maintainers":[{"name":"ariporad","email":"ari@ariporad.com"},{"name":"levithomason","email":"me@levithomason.com"},{"name":"nfischer","email":"ntfschr@gmail.com"}],"contributors":[{"url":"http://ariporad.com/","name":"Ari Porad","email":"ari@ariporad.com"},{"url":"https://github.com/levithomason","name":"Levi Thomason","email":"me@levithomason.com"},{"name":"Nate Fischer","email":"ntfschr@gmail.com"}],"homepage":"https://github.com/shelljs/shx#readme","bugs":{"url":"https://github.com/shelljs/shx/issues"},"bin":{"shx":"lib/cli.js"},"dist":{"shasum":"43fd7c4b9abb011ca3607971e5bb5a9e1369b5e5","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/shx/-/shx-0.2.0.tgz","integrity":"sha512-ju8mf/zhtmGI6AElUclRdS8RdKAHDoLaX1FkoL7w3F6tZFJZGTOpORtZa/kuMJZVPxjITRV7ElvD8zqRhn5P/g==","signatures":[{"sig":"MEYCIQCjdokD748Sb9jYw6Vwh2z7ZcltB5TtD4aEMNgCZu/ZwwIhAPDLGvMyDsErYvcmixZNiBvC7DBeTilTCzkzUI+wNHr8","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["lib"],"_shasum":"43fd7c4b9abb011ca3607971e5bb5a9e1369b5e5","gitHead":"92c16d765afcff0660fcb8aae4efe3cc58d150d1","scripts":{"dev":"concurrently -rk 'npm run build:watch' 'npm run lint:watch'","lint":"eslint .","test":"nyc --reporter=text --reporter=lcov mocha","build":"babel src -d lib","codecov":"codecov","lint:fix":"npm run lint --silent -- --fix","posttest":"npm run lint --silent","prebuild":"rimraf lib","changelog":"shelljs-changelog","lint:watch":"watch 'npm run lint --silent' src test","prepublish":"npm run build","test:watch":"concurrently -rk 'npm run test --silent -- -w' 'npm run lint:watch'","build:watch":"npm run build -- -w","release:major":"shelljs-release major","release:minor":"shelljs-release minor","release:patch":"shelljs-release patch"},"_npmUser":{"name":"nfischer","email":"ntfschr@gmail.com"},"deprecated":"critical bug fixed in v0.2.1","repository":{"url":"git+https://github.com/shelljs/shx.git","type":"git"},"_npmVersion":"3.10.8","description":"Portable Shell Commands for Node","directories":{},"_nodeVersion":"6.7.0","dependencies":{"shelljs":"^0.7.3","minimist":"^1.2.0","es6-object-assign":"^1.0.3"},"devDependencies":{"nyc":"^6.4.0","mocha":"^2.4.5","watch":"^0.18.0","eslint":"^2.10.1","rimraf":"^2.5.2","should":"^11.1.1","codecov":"^1.0.1","babel-cli":"^6.6.5","concurrently":"^2.1.0","babel-register":"^6.7.2","shelljs-release":"^0.2.0","shelljs-changelog":"^0.2.0","babel-preset-es2015":"^6.6.0","shelljs-plugin-open":"^0.1.1","eslint-plugin-import":"^1.8.0","eslint-config-airbnb-base":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/shx-0.2.0.tgz_1478589819985_0.4677979866974056","host":"packages-18-east.internal.npmjs.com"}},"0.1.2":{"name":"shx","version":"0.1.2","keywords":["shelljs","shell","unix","bash","sh","exec","cli","zsh"],"license":"MIT","_id":"shx@0.1.2","maintainers":[{"name":"ariporad","email":"ari@ariporad.com"},{"name":"levithomason","email":"me@levithomason.com"},{"name":"nfischer","email":"ntfschr@gmail.com"}],"contributors":[{"url":"http://ariporad.com/","name":"Ari Porad","email":"ari@ariporad.com"},{"name":"Nate Fischer","email":"ntfschr@gmail.com"}],"homepage":"https://github.com/shelljs/shx#readme","bugs":{"url":"https://github.com/shelljs/shx/issues"},"bin":{"shx":"lib/cli.js"},"dist":{"shasum":"4ccce6c7684bd3aad69b480024b0944279687db9","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/shx/-/shx-0.1.2.tgz","integrity":"sha512-SnY+JLJZihfBd0nw5m9OjidiljJXa1PGvpYUB8yzPNCJxbN1dFlt/NppqoYwDIKdN9fpP925z7TkrQklxK3M+Q==","signatures":[{"sig":"MEUCIQDk7CsxVrPteKKH/5zu+3K1WtSTAOU/uibE70U+IoQabwIgcdBRc0f7+iE4+LFJMpB/cYD7iCm09aqiFLODtjtAAro=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["lib"],"_shasum":"4ccce6c7684bd3aad69b480024b0944279687db9","gitHead":"643056804d919a7e01857dff8026919d0cd3da4a","scripts":{"dev":"concurrently -rk 'npm run build:watch' 'npm run lint:watch'","lint":"eslint .","test":"nyc --reporter=text --reporter=lcov mocha","build":"babel src -d lib","lint:fix":"npm run lint --silent -- --fix","posttest":"npm run lint --silent","prebuild":"rimraf lib","lint:watch":"watch 'npm run lint --silent' src test","prepublish":"npm run build","test:watch":"concurrently -rk 'npm run test --silent -- -w' 'npm run lint:watch'","build:watch":"npm run build -- -w","release:major":"bash scripts/release.sh major","release:minor":"bash scripts/release.sh minor","release:patch":"bash scripts/release.sh patch"},"_npmUser":{"name":"levithomason","email":"me@levithomason.com"},"repository":{"url":"git+https://github.com/shelljs/shx.git","type":"git"},"_npmVersion":"3.8.6","description":"Portable Shell Commands for Node","directories":{},"_nodeVersion":"6.0.0","dependencies":{"shelljs":"^0.7.0"},"devDependencies":{"nyc":"^6.4.0","chai":"^3.5.0","mocha":"^2.4.5","sinon":"^1.17.3","watch":"^0.17.1","eslint":"^1.10.3","rimraf":"^2.5.2","codecov":"^1.0.1","babel-cli":"^6.6.5","dirty-chai":"^1.2.2","sinon-chai":"^2.8.0","concurrently":"^2.0.0","babel-register":"^6.7.2","babel-preset-es2015":"^6.6.0","eslint-plugin-react":"^3.16.1","eslint-config-airbnb":"^5.0.1"},"_npmOperationalInternal":{"tmp":"tmp/shx-0.1.2.tgz_1462993760430_0.6730909741017967","host":"packages-12-west.internal.npmjs.com"}},"0.2.1":{"name":"shx","version":"0.2.1","keywords":["shelljs","shell","unix","bash","sh","exec","cli","zsh"],"license":"MIT","_id":"shx@0.2.1","maintainers":[{"name":"ariporad","email":"ari@ariporad.com"},{"name":"levithomason","email":"me@levithomason.com"},{"name":"nfischer","email":"ntfschr@gmail.com"}],"contributors":[{"url":"http://ariporad.com/","name":"Ari Porad","email":"ari@ariporad.com"},{"url":"https://github.com/levithomason","name":"Levi Thomason","email":"me@levithomason.com"},{"name":"Nate Fischer","email":"ntfschr@gmail.com"}],"homepage":"https://github.com/shelljs/shx#readme","bugs":{"url":"https://github.com/shelljs/shx/issues"},"bin":{"shx":"lib/cli.js"},"dist":{"shasum":"d5f8c536e77e6b6ec83bd66f746ab300f1775ecf","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/shx/-/shx-0.2.1.tgz","integrity":"sha512-ZrsaH3QpQ+2E5ASafrpsetlqHMp7+VNKq9yhdUnEvXoJ15AwseyrLkYMUuAoOc9sWlqR1r21tcHn82koQo1aRA==","signatures":[{"sig":"MEUCIEaPbbsDA2B8x6nmUriAJXS1g6LuRi43oW7CgZAn6/kyAiEAsGjRAksdMBqHJZkd7aBMxK9PbQg1BXbIvf868SXz9ME=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["lib"],"_shasum":"d5f8c536e77e6b6ec83bd66f746ab300f1775ecf","gitHead":"a1faf54d6902954d904099e0cb9760395b805383","scripts":{"dev":"concurrently -rk 'npm run build:watch' 'npm run lint:watch'","lint":"eslint .","test":"nyc --reporter=text --reporter=lcov mocha","build":"babel src -d lib","codecov":"codecov","lint:fix":"npm run lint --silent -- --fix","posttest":"npm run lint --silent","prebuild":"rimraf lib","changelog":"shelljs-changelog","lint:watch":"watch 'npm run lint --silent' src test","prepublish":"npm run build","test:watch":"concurrently -rk 'npm run test --silent -- -w' 'npm run lint:watch'","build:watch":"npm run build -- -w","release:major":"shelljs-release major","release:minor":"shelljs-release minor","release:patch":"shelljs-release patch"},"_npmUser":{"name":"nfischer","email":"ntfschr@gmail.com"},"repository":{"url":"git+https://github.com/shelljs/shx.git","type":"git"},"_npmVersion":"3.10.8","description":"Portable Shell Commands for Node","directories":{},"_nodeVersion":"6.7.0","dependencies":{"shelljs":"^0.7.3","minimist":"^1.2.0","es6-object-assign":"^1.0.3"},"devDependencies":{"nyc":"^6.4.0","mocha":"^2.4.5","watch":"^0.18.0","eslint":"^2.10.1","rimraf":"^2.5.2","should":"^11.1.1","codecov":"^1.0.1","babel-cli":"^6.6.5","concurrently":"^2.1.0","babel-register":"^6.7.2","shelljs-release":"^0.2.0","shelljs-changelog":"^0.2.0","babel-preset-es2015":"^6.6.0","shelljs-plugin-open":"^0.1.1","eslint-plugin-import":"^1.8.0","eslint-config-airbnb-base":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/shx-0.2.1.tgz_1479542274919_0.5202778929378837","host":"packages-12-west.internal.npmjs.com"}},"0.3.0":{"name":"shx","version":"0.3.0","keywords":["shelljs","shell","unix","bash","sh","exec","cli","zsh"],"license":"MIT","_id":"shx@0.3.0","maintainers":[{"name":"freitagbr","email":"freitagbr@gmail.com"},{"name":"nfischer","email":"ntfschr@gmail.com"}],"contributors":[{"url":"http://ariporad.com/","name":"Ari Porad","email":"ari@ariporad.com"},{"url":"https://github.com/levithomason","name":"Levi Thomason","email":"me@levithomason.com"},{"name":"Nate Fischer","email":"ntfschr@gmail.com"}],"homepage":"https://github.com/shelljs/shx#readme","bugs":{"url":"https://github.com/shelljs/shx/issues"},"bin":{"shx":"lib/cli.js"},"dist":{"shasum":"f978c7a2c18cbf26ecdc1c44c22cc0238ff7c444","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/shx/-/shx-0.3.0.tgz","fileCount":9,"integrity":"sha512-Ly+fVsQD9QJbG0R88Z2SLOF6I6T0DB/BKjUhwTe4AX6L4bWJXAlsBN2UD7dWDkvZ1YVcmaw4s4wnsiyrhmoA8Q==","signatures":[{"sig":"MEUCIFuVmg+fILPd2fBtso3hP1hJ0nJYmtZZMV5WDQtCaYOXAiEAp8pd90us2k+dxRS6MgYf+iz0iiLGmwXDtje0DrD6bbM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29316,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbGhRGCRA9TVsSAnZWagAAt6kQAIGuPgm1Tew2QAkyX8QJ\nH9P+9BFHqyMBWZzpVtofzKibQ9mmTT5DglKtpa+pnZPKGHlR1vmvHG7LozDb\nDlX6C2XG99iCIfLTnwy1tmcWzQ/9Ii2uol4UZzcLXUdK8udVMjrlFiP94C5R\nsJgCVvbAcyQqukeYF1rRMttuwWlPV4YdrSKnQtHSpCt3bkMbG1a5f8KxhcBq\nRjWikTt9kbrnrwn0WstQ+/DnKV5G1ePW9Z8iUU/vQJ9AvbWfFOzKxHXJFJbh\nBctnIFRC1D6Y1ayLf/mvYS/OE2+AXskDN8roCWqMO8K3doDOSNXMQMw4CG0O\nk5o6EGrULZ8SyVayVFL6RstEIHsfWNovR/lfw/XE1TcG9CBOAmYQBFEvY7AG\nYrnxQTbPF1W3Z8QbmGQXhmOctX4HhHJOPVy0cPk7zNKnTgQ7yuDd2DXGroot\n4fnnphpWQ56T4M+p1lCdeAH+AkkDJXDekvDQk/ZxCscjnhMO5Ppjn/tw14DS\nTNHOr4Jp6eoRkya4AIywc1YltsvFQT8yDCQ45FljiO0jbUOborlRykOBRjq7\n0vY11qLtVbSOP/PbpQTBx5xVpBRH7tTHpG/yjV7hSRCn1xOjGqo40SulyqtP\nLfaSdsx6xyHoO3kDhrgFyAS2s5xjvvwubfeF5he+4YkEJskR60U+BZDz0coN\nnfC7\r\n=YmL7\r\n-----END PGP SIGNATURE-----\r\n"},"files":["lib"],"engines":{"node":">=4"},"gitHead":"a942ca0553d7d6d6384235be18e5e331d478314c","scripts":{"dev":"concurrently -rk 'npm run build:watch' 'npm run lint:watch'","lint":"eslint .","test":"nyc --reporter=text --reporter=lcov mocha","build":"babel src -d lib","codecov":"codecov","lint:fix":"npm run lint --silent -- --fix","posttest":"npm run lint --silent","prebuild":"rimraf lib","changelog":"shelljs-changelog","lint:watch":"watch 'npm run lint --silent' src test","prepublish":"npm run build","test:watch":"concurrently -rk 'npm run test --silent -- -w' 'npm run lint:watch'","build:watch":"npm run build -- -w","release:major":"shelljs-release major","release:minor":"shelljs-release minor","release:patch":"shelljs-release patch"},"_npmUser":{"name":"nfischer","email":"ntfschr@gmail.com"},"repository":{"url":"git+https://github.com/shelljs/shx.git","type":"git"},"_npmVersion":"5.5.1","description":"Portable Shell Commands for Node","directories":{},"_nodeVersion":"8.9.0","dependencies":{"shelljs":"^0.8.1","minimist":"^1.2.0","es6-object-assign":"^1.0.3"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^6.4.0","mocha":"^2.4.5","watch":"^0.18.0","eslint":"^2.10.1","rimraf":"^2.5.2","should":"^11.1.1","codecov":"^1.0.1","babel-cli":"^6.6.5","concurrently":"^2.1.0","babel-register":"^6.7.2","shelljs-release":"^0.3.0","shelljs-changelog":"^0.2.0","babel-preset-es2015":"^6.6.0","shelljs-plugin-open":"^0.2.0","eslint-plugin-import":"^1.8.0","eslint-config-airbnb-base":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/shx_0.3.0_1528435781085_0.4172528640959128","host":"s3://npm-registry-packages"}},"0.1.0":{"name":"shx","version":"0.1.0","keywords":["shelljs","shell","unix","bash","sh","exec","cli","zsh"],"license":"MIT","_id":"shx@0.1.0","maintainers":[{"name":"levithomason","email":"me@levithomason.com"}],"contributors":[{"url":"http://ariporad.com/","name":"Ari Porad","email":"ari@ariporad.com"},{"name":"Nate Fischer","email":"ntfschr@gmail.com"}],"homepage":"https://github.com/shelljs/shx#readme","bugs":{"url":"https://github.com/shelljs/shx/issues"},"bin":{"shx":"lib/cli.js"},"dist":{"shasum":"feca4429fb90c8b5dd8a1cc6a93c2b8e0f1cb730","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/shx/-/shx-0.1.0.tgz","integrity":"sha512-K4jqdro3WOOl/PUYkmmOxK1t02f1k98fsT6LxRKpsFxGwjMZ/guI+jEDqwbdZRHY0qNvo3rQNFySIEu7BnMWAw==","signatures":[{"sig":"MEUCIC5oB7Pi+cRe6dwGjPOYkeS9agOkgcXB7O7azwZXAEMHAiEAw7D4qmfwt28kAZCllRLNUAGEbnGLFpZaoWocOwLn2fY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["lib"],"_shasum":"feca4429fb90c8b5dd8a1cc6a93c2b8e0f1cb730","gitHead":"49c7f88cf97fe637386e8451a415b21377634e18","scripts":{"dev":"concurrently -rk 'npm run build:watch' 'npm run lint:watch'","lint":"eslint .","test":"nyc --reporter=text --reporter=lcov mocha","build":"babel src -d lib","lint:fix":"npm run lint --silent -- --fix","posttest":"npm run lint --silent","prebuild":"rimraf lib","lint:watch":"watch 'npm run lint --silent' src test","prepublish":"npm run build","test:watch":"concurrently -rk 'npm run test --silent -- -w' 'npm run lint:watch'","build:watch":"npm run build -- -w","release:major":"bash scripts/release.sh major","release:minor":"bash scripts/release.sh minor","release:patch":"bash scripts/release.sh patch"},"_npmUser":{"name":"levithomason","email":"me@levithomason.com"},"deprecated":"missing dependencies fixed in v0.1.1","repository":{"url":"git+https://github.com/shelljs/shx.git","type":"git"},"_npmVersion":"3.8.2","description":"Portable Shell Commands for Node","directories":{},"_nodeVersion":"5.9.0","dependencies":{"shelljs":"^0.7.0"},"devDependencies":{"nyc":"^6.4.0","chai":"^3.5.0","mocha":"^2.4.5","sinon":"^1.17.3","watch":"^0.17.1","eslint":"^1.10.3","rimraf":"^2.5.2","codecov":"^1.0.1","babel-cli":"^6.6.5","dirty-chai":"^1.2.2","sinon-chai":"^2.8.0","concurrently":"^2.0.0","babel-polyfill":"^6.7.4","babel-register":"^6.7.2","babel-preset-es2015":"^6.6.0","eslint-plugin-react":"^3.16.1","eslint-config-airbnb":"^5.0.1"},"_npmOperationalInternal":{"tmp":"tmp/shx-0.1.0.tgz_1462249092353_0.339009900810197","host":"packages-12-west.internal.npmjs.com"}}},"name":"shx","time":{"0.3.3":"2020-10-26T05:35:14.984Z","0.3.4":"2022-01-10T02:16:53.953Z","0.1.3":"2016-08-10T22:49:18.677Z","0.2.2":"2017-01-08T08:50:45.692Z","0.3.1":"2018-06-26T05:04:26.567Z","0.4.0":"2025-03-17T01:18:52.828Z","0.1.4":"2016-08-18T04:39:45.293Z","0.3.2":"2018-07-11T04:13:54.318Z","created":"2016-05-03T04:18:14.956Z","0.1.1":"2016-05-03T21:45:45.407Z","0.2.0":"2016-11-08T07:23:41.840Z","0.1.2":"2016-05-11T19:09:22.972Z","0.2.1":"2016-11-19T07:57:55.186Z","0.3.0":"2018-06-08T05:29:41.183Z","0.1.0":"2016-05-03T04:18:14.956Z","modified":"2025-05-07T15:12:40.659Z"},"contributors":[{"name":"Ari Porad","email":"ari@ariporad.com","url":"http://ariporad.com/"},{"name":"Levi Thomason","email":"me@levithomason.com","url":"https://github.com/levithomason"},{"name":"Nate Fischer","email":"ntfschr@gmail.com"}],"readmeFilename":"README.md","homepage":"https://github.com/shelljs/shx#readme"}