{"maintainers":[{"name":"satazor","email":"andremiguelcruz@msn.com"}],"keywords":["spawn","spawnSync","windows","cross","platform","path","ext","path-ext","path_ext","shebang","hashbang","cmd","execute"],"dist-tags":{"latest":"5.1.0"},"author":{"name":"IndigoUnited","email":"hello@indigounited.com","url":"http://indigounited.com"},"description":"Cross platform child_process#spawn and child_process#spawnSync","readme":"# cross-spawn\n\n[![NPM version][npm-image]][npm-url] [![Downloads][downloads-image]][npm-url] [![Build Status][travis-image]][travis-url] [![Build status][appveyor-image]][appveyor-url] [![Dependency status][david-dm-image]][david-dm-url] [![Dev Dependency status][david-dm-dev-image]][david-dm-dev-url]\n\n[npm-url]:https://npmjs.org/package/cross-spawn\n[downloads-image]:http://img.shields.io/npm/dm/cross-spawn.svg\n[npm-image]:http://img.shields.io/npm/v/cross-spawn.svg\n[travis-url]:https://travis-ci.org/IndigoUnited/node-cross-spawn\n[travis-image]:http://img.shields.io/travis/IndigoUnited/node-cross-spawn/master.svg\n[appveyor-url]:https://ci.appveyor.com/project/satazor/node-cross-spawn\n[appveyor-image]:https://img.shields.io/appveyor/ci/satazor/node-cross-spawn/master.svg\n[david-dm-url]:https://david-dm.org/IndigoUnited/node-cross-spawn\n[david-dm-image]:https://img.shields.io/david/IndigoUnited/node-cross-spawn.svg\n[david-dm-dev-url]:https://david-dm.org/IndigoUnited/node-cross-spawn#info=devDependencies\n[david-dm-dev-image]:https://img.shields.io/david/dev/IndigoUnited/node-cross-spawn.svg\n\nA cross platform solution to node's spawn and spawnSync.\n\n\n## Installation\n\n`$ npm install cross-spawn`\n\nIf you are using `spawnSync` on node 0.10 or older, you will also need to install `spawn-sync`:\n\n`$ npm install spawn-sync`\n\n\n## Why\n\nNode has issues when using spawn on Windows:\n\n- It ignores [PATHEXT](https://github.com/joyent/node/issues/2318)\n- It does not support [shebangs](http://pt.wikipedia.org/wiki/Shebang)\n- No `options.shell` support on node < v6\n- It does not allow you to run `del` or `dir`\n\nAll these issues are handled correctly by `cross-spawn`.\nThere are some known modules, such as [win-spawn](https://github.com/ForbesLindesay/win-spawn), that try to solve this but they are either broken or provide faulty escaping of shell arguments.\n\n\n## Usage\n\nExactly the same way as node's [`spawn`](https://nodejs.org/api/child_process.html#child_process_child_process_spawn_command_args_options) or [`spawnSync`](https://nodejs.org/api/child_process.html#child_process_child_process_spawnsync_command_args_options), so it's a drop in replacement.\n\n\n```js\nvar spawn = require('cross-spawn');\n\n// Spawn NPM asynchronously\nvar child = spawn('npm', ['list', '-g', '-depth', '0'], { stdio: 'inherit' });\n\n// Spawn NPM synchronously\nvar results = spawn.sync('npm', ['list', '-g', '-depth', '0'], { stdio: 'inherit' });\n```\n\n\n## Caveats\n\n#### `options.shell` as an alternative to `cross-spawn`\n\nStarting from node v6, `spawn` has a `shell` option that allows you run commands from within a shell. This new option solves most of the problems that `cross-spawn` attempts to solve, but:\n\n- It's not supported in node < v6\n- It has no support for shebangs on Windows\n- You must manually escape the command and arguments which is very error prone, specially when passing user input\n\nIf you are using the `shell` option to spawn a command in a cross platform way, consider using `cross-spawn` instead. You have been warned.\n\n\n#### Shebangs\n\nWhile `cross-spawn` handles shebangs on Windows, its support is limited: e.g.: it doesn't handle arguments after the path, e.g.: `#!/bin/bash -e`.\n\nRemember to always test your code on Windows!\n\n\n## Tests\n\n`$ npm test`\n\n\n## License\n\nReleased under the [MIT License](http://www.opensource.org/licenses/mit-license.php).\n","repository":{"type":"git","url":"git://github.com/IndigoUnited/node-cross-spawn.git"},"users":{"itonyyo":true,"nubuck":true,"garthk":true,"antixrist":true,"pandao":true,"carsy":true,"crafterm":true,"mysticatea":true,"morganz":true,"akabeko":true,"lichangwei":true,"nichoth":true,"about_hiroppy":true,"razr9":true,"leonardorb":true,"scottfreecode":true,"thorn0":true,"qqcome110":true,"whitelynx":true,"manikantag":true,"mgol":true,"binki":true,"ferchoriverar":true,"tommytroylin":true,"giussa_dan":true,"panlw":true,"newworldcode":true,"kodekracker":true,"kael":true,"latinosoft":true,"phoenix-xsy":true,"stanlous":true,"xiaochao":true,"ssljivic":true,"iori20091101":true,"madsummer":true,"wayn":true,"maoxiaoke":true,"d-band":true},"bugs":{"url":"https://github.com/IndigoUnited/node-cross-spawn/issues/"},"license":"MIT","versions":{"0.1.0":{"name":"cross-spawn","version":"0.1.0","description":"Cross platform child_process#spawn","main":"index.js","scripts":{"test":"mocha -R spec"},"bugs":{"url":"https://github.com/IndigoUnited/npde-cross-spawn/issues/"},"repository":{"type":"git","url":"git://github.com/IndigoUnited/npde-cross-spawn.git"},"keywords":["spawn","windows","cross","platform","path","ext","path-ext","path_ext","cmd","execute"],"author":{"name":"IndigoUnited","email":"hello@indigounited.com","url":"http://indigounited.com"},"license":"MIT","devDependencies":{"expect.js":"^0.3.0","mocha":"^1.20.1"},"homepage":"https://github.com/IndigoUnited/npde-cross-spawn","_id":"cross-spawn@0.1.0","_shasum":"804a4305ffe717f5f50598a855c08221a227c370","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"satazor","email":"andremiguelcruz@msn.com"},"maintainers":[{"name":"satazor","email":"andremiguelcruz@msn.com"}],"dist":{"shasum":"804a4305ffe717f5f50598a855c08221a227c370","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-spawn/-/cross-spawn-0.1.0.tgz"},"directories":{}},"0.1.1":{"name":"cross-spawn","version":"0.1.1","description":"Cross platform child_process#spawn","main":"index.js","scripts":{"test":"mocha -R spec"},"bugs":{"url":"https://github.com/IndigoUnited/node-cross-spawn/issues/"},"repository":{"type":"git","url":"git://github.com/IndigoUnited/node-cross-spawn.git"},"keywords":["spawn","windows","cross","platform","path","ext","path-ext","path_ext","cmd","execute"],"author":{"name":"IndigoUnited","email":"hello@indigounited.com","url":"http://indigounited.com"},"license":"MIT","devDependencies":{"expect.js":"^0.3.0","mocha":"^1.20.1"},"homepage":"https://github.com/IndigoUnited/node-cross-spawn","_id":"cross-spawn@0.1.1","_shasum":"ec7d08cf044c1f349e7aa21738296f665f8d7b8a","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"satazor","email":"andremiguelcruz@msn.com"},"maintainers":[{"name":"satazor","email":"andremiguelcruz@msn.com"}],"dist":{"shasum":"ec7d08cf044c1f349e7aa21738296f665f8d7b8a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-spawn/-/cross-spawn-0.1.1.tgz"},"directories":{}},"0.1.2":{"name":"cross-spawn","version":"0.1.2","description":"Cross platform child_process#spawn","main":"index.js","scripts":{"test":"mocha -R spec"},"bugs":{"url":"https://github.com/IndigoUnited/node-cross-spawn/issues/"},"repository":{"type":"git","url":"git://github.com/IndigoUnited/node-cross-spawn.git"},"keywords":["spawn","windows","cross","platform","path","ext","path-ext","path_ext","cmd","execute"],"author":{"name":"IndigoUnited","email":"hello@indigounited.com","url":"http://indigounited.com"},"license":"MIT","devDependencies":{"expect.js":"^0.3.0","mocha":"^1.20.1"},"homepage":"https://github.com/IndigoUnited/node-cross-spawn","_id":"cross-spawn@0.1.2","_shasum":"83ba4d7f394d41683253684052e669d14a873f10","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"satazor","email":"andremiguelcruz@msn.com"},"maintainers":[{"name":"satazor","email":"andremiguelcruz@msn.com"}],"dist":{"shasum":"83ba4d7f394d41683253684052e669d14a873f10","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-spawn/-/cross-spawn-0.1.2.tgz"},"directories":{}},"0.1.3":{"name":"cross-spawn","version":"0.1.3","description":"Cross platform child_process#spawn","main":"index.js","scripts":{"test":"mocha -R spec"},"bugs":{"url":"https://github.com/IndigoUnited/node-cross-spawn/issues/"},"repository":{"type":"git","url":"git://github.com/IndigoUnited/node-cross-spawn.git"},"keywords":["spawn","windows","cross","platform","path","ext","path-ext","path_ext","cmd","execute"],"author":{"name":"IndigoUnited","email":"hello@indigounited.com","url":"http://indigounited.com"},"license":"MIT","devDependencies":{"expect.js":"^0.3.0","mocha":"^1.20.1"},"homepage":"https://github.com/IndigoUnited/node-cross-spawn","_id":"cross-spawn@0.1.3","_shasum":"08705196268ee352d99edf03c53ce05bf218ae91","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"satazor","email":"andremiguelcruz@msn.com"},"maintainers":[{"name":"satazor","email":"andremiguelcruz@msn.com"}],"dist":{"shasum":"08705196268ee352d99edf03c53ce05bf218ae91","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-spawn/-/cross-spawn-0.1.3.tgz"},"directories":{}},"0.1.4":{"name":"cross-spawn","version":"0.1.4","description":"Cross platform child_process#spawn","main":"index.js","scripts":{"test":"mocha -R spec"},"bugs":{"url":"https://github.com/IndigoUnited/node-cross-spawn/issues/"},"repository":{"type":"git","url":"git://github.com/IndigoUnited/node-cross-spawn.git"},"keywords":["spawn","windows","cross","platform","path","ext","path-ext","path_ext","cmd","execute"],"author":{"name":"IndigoUnited","email":"hello@indigounited.com","url":"http://indigounited.com"},"license":"MIT","devDependencies":{"expect.js":"^0.3.0","mocha":"^1.20.1"},"homepage":"https://github.com/IndigoUnited/node-cross-spawn","_id":"cross-spawn@0.1.4","_shasum":"216fbe401cce5c1fae8f4270367865f841585992","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"satazor","email":"andremiguelcruz@msn.com"},"maintainers":[{"name":"satazor","email":"andremiguelcruz@msn.com"}],"dist":{"shasum":"216fbe401cce5c1fae8f4270367865f841585992","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-spawn/-/cross-spawn-0.1.4.tgz"},"directories":{}},"0.1.5":{"name":"cross-spawn","version":"0.1.5","description":"Cross platform child_process#spawn","main":"index.js","scripts":{"test":"mocha -R spec"},"bugs":{"url":"https://github.com/IndigoUnited/node-cross-spawn/issues/"},"repository":{"type":"git","url":"git://github.com/IndigoUnited/node-cross-spawn.git"},"keywords":["spawn","windows","cross","platform","path","ext","path-ext","path_ext","cmd","execute"],"author":{"name":"IndigoUnited","email":"hello@indigounited.com","url":"http://indigounited.com"},"license":"MIT","devDependencies":{"expect.js":"^0.3.0","mocha":"^1.20.1"},"homepage":"https://github.com/IndigoUnited/node-cross-spawn","_id":"cross-spawn@0.1.5","_shasum":"5578f122bebf8476a6b1846ab082adbea83d0a65","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"satazor","email":"andremiguelcruz@msn.com"},"maintainers":[{"name":"satazor","email":"andremiguelcruz@msn.com"}],"dist":{"shasum":"5578f122bebf8476a6b1846ab082adbea83d0a65","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-spawn/-/cross-spawn-0.1.5.tgz"},"directories":{}},"0.1.6":{"name":"cross-spawn","version":"0.1.6","description":"Cross platform child_process#spawn","main":"index.js","scripts":{"test":"mocha -R spec"},"bugs":{"url":"https://github.com/IndigoUnited/node-cross-spawn/issues/"},"repository":{"type":"git","url":"git://github.com/IndigoUnited/node-cross-spawn.git"},"keywords":["spawn","windows","cross","platform","path","ext","path-ext","path_ext","cmd","execute"],"author":{"name":"IndigoUnited","email":"hello@indigounited.com","url":"http://indigounited.com"},"license":"MIT","devDependencies":{"expect.js":"^0.3.0","mocha":"^1.20.1"},"homepage":"https://github.com/IndigoUnited/node-cross-spawn","_id":"cross-spawn@0.1.6","_shasum":"73de1551529b5865ce0392456ea5491a708aa809","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"satazor","email":"andremiguelcruz@msn.com"},"maintainers":[{"name":"satazor","email":"andremiguelcruz@msn.com"}],"dist":{"shasum":"73de1551529b5865ce0392456ea5491a708aa809","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-spawn/-/cross-spawn-0.1.6.tgz"},"directories":{}},"0.1.7":{"name":"cross-spawn","version":"0.1.7","description":"Cross platform child_process#spawn","main":"index.js","scripts":{"test":"mocha -R spec"},"bugs":{"url":"https://github.com/IndigoUnited/node-cross-spawn/issues/"},"repository":{"type":"git","url":"git://github.com/IndigoUnited/node-cross-spawn.git"},"keywords":["spawn","windows","cross","platform","path","ext","path-ext","path_ext","cmd","execute"],"author":{"name":"IndigoUnited","email":"hello@indigounited.com","url":"http://indigounited.com"},"license":"MIT","devDependencies":{"expect.js":"^0.3.0","mocha":"^1.20.1"},"homepage":"https://github.com/IndigoUnited/node-cross-spawn","_id":"cross-spawn@0.1.7","_shasum":"7e26c368953fd9618215f519056fca17c4c43d0e","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"satazor","email":"andremiguelcruz@msn.com"},"maintainers":[{"name":"satazor","email":"andremiguelcruz@msn.com"}],"dist":{"shasum":"7e26c368953fd9618215f519056fca17c4c43d0e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-spawn/-/cross-spawn-0.1.7.tgz"},"directories":{}},"0.2.0":{"name":"cross-spawn","version":"0.2.0","description":"Cross platform child_process#spawn","main":"index.js","scripts":{"test":"mocha -R spec"},"bugs":{"url":"https://github.com/IndigoUnited/node-cross-spawn/issues/"},"repository":{"type":"git","url":"git://github.com/IndigoUnited/node-cross-spawn.git"},"keywords":["spawn","windows","cross","platform","path","ext","path-ext","path_ext","cmd","execute"],"author":{"name":"IndigoUnited","email":"hello@indigounited.com","url":"http://indigounited.com"},"license":"MIT","devDependencies":{"expect.js":"^0.3.0","mocha":"^1.20.1"},"homepage":"https://github.com/IndigoUnited/node-cross-spawn","_id":"cross-spawn@0.2.0","_shasum":"adf1f68b6b0a1fc221e65446e075e06ba5e34072","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"satazor","email":"andremiguelcruz@msn.com"},"maintainers":[{"name":"satazor","email":"andremiguelcruz@msn.com"}],"dist":{"shasum":"adf1f68b6b0a1fc221e65446e075e06ba5e34072","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-spawn/-/cross-spawn-0.2.0.tgz"},"directories":{}},"0.2.1":{"name":"cross-spawn","version":"0.2.1","description":"Cross platform child_process#spawn","main":"index.js","scripts":{"test":"mocha -R spec"},"bugs":{"url":"https://github.com/IndigoUnited/node-cross-spawn/issues/"},"repository":{"type":"git","url":"git://github.com/IndigoUnited/node-cross-spawn.git"},"keywords":["spawn","windows","cross","platform","path","ext","path-ext","path_ext","cmd","execute"],"author":{"name":"IndigoUnited","email":"hello@indigounited.com","url":"http://indigounited.com"},"license":"MIT","devDependencies":{"expect.js":"^0.3.0","mocha":"^1.20.1"},"homepage":"https://github.com/IndigoUnited/node-cross-spawn","_id":"cross-spawn@0.2.1","_shasum":"740c2be6ef07e4693fadc863438f33c633bedca4","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"satazor","email":"andremiguelcruz@msn.com"},"maintainers":[{"name":"satazor","email":"andremiguelcruz@msn.com"}],"dist":{"shasum":"740c2be6ef07e4693fadc863438f33c633bedca4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-spawn/-/cross-spawn-0.2.1.tgz"},"directories":{}},"0.2.2":{"name":"cross-spawn","version":"0.2.2","description":"Cross platform child_process#spawn","main":"index.js","scripts":{"test":"mocha -R spec"},"bugs":{"url":"https://github.com/IndigoUnited/node-cross-spawn/issues/"},"repository":{"type":"git","url":"git://github.com/IndigoUnited/node-cross-spawn.git"},"keywords":["spawn","windows","cross","platform","path","ext","path-ext","path_ext","cmd","execute"],"author":{"name":"IndigoUnited","email":"hello@indigounited.com","url":"http://indigounited.com"},"license":"MIT","devDependencies":{"expect.js":"^0.3.0","mocha":"^1.20.1"},"homepage":"https://github.com/IndigoUnited/node-cross-spawn","_id":"cross-spawn@0.2.2","_shasum":"e843220593b3bc6e7e7c96decb1dafec69024ecd","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"satazor","email":"andremiguelcruz@msn.com"},"maintainers":[{"name":"satazor","email":"andremiguelcruz@msn.com"}],"dist":{"shasum":"e843220593b3bc6e7e7c96decb1dafec69024ecd","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-spawn/-/cross-spawn-0.2.2.tgz"},"directories":{}},"0.2.3":{"name":"cross-spawn","version":"0.2.3","description":"Cross platform child_process#spawn","main":"index.js","scripts":{"test":"mocha -R spec"},"bugs":{"url":"https://github.com/IndigoUnited/node-cross-spawn/issues/"},"repository":{"type":"git","url":"git://github.com/IndigoUnited/node-cross-spawn.git"},"keywords":["spawn","windows","cross","platform","path","ext","path-ext","path_ext","cmd","execute"],"author":{"name":"IndigoUnited","email":"hello@indigounited.com","url":"http://indigounited.com"},"license":"MIT","dependencies":{"lru-cache":"^2.5.0"},"devDependencies":{"expect.js":"^0.3.0","mocha":"^1.20.1"},"homepage":"https://github.com/IndigoUnited/node-cross-spawn","_id":"cross-spawn@0.2.3","_shasum":"9b40ef3270fbdfba9a0ad42fec9db2c40027d08c","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"satazor","email":"andremiguelcruz@msn.com"},"maintainers":[{"name":"satazor","email":"andremiguelcruz@msn.com"}],"dist":{"shasum":"9b40ef3270fbdfba9a0ad42fec9db2c40027d08c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-spawn/-/cross-spawn-0.2.3.tgz"},"directories":{}},"0.2.4":{"name":"cross-spawn","version":"0.2.4","description":"Cross platform child_process#spawn","main":"index.js","scripts":{"test":"mocha --bail -R spec"},"bugs":{"url":"https://github.com/IndigoUnited/node-cross-spawn/issues/"},"repository":{"type":"git","url":"git://github.com/IndigoUnited/node-cross-spawn.git"},"keywords":["spawn","windows","cross","platform","path","ext","path-ext","path_ext","shebang","hashbang","cmd","execute"],"author":{"name":"IndigoUnited","email":"hello@indigounited.com","url":"http://indigounited.com"},"license":"MIT","dependencies":{"lru-cache":"^2.5.0"},"devDependencies":{"expect.js":"^0.3.0","mocha":"^1.20.1"},"gitHead":"0021b10fbba574e727c92459ff0bfdcc1cc0fab2","homepage":"https://github.com/IndigoUnited/node-cross-spawn","_id":"cross-spawn@0.2.4","_shasum":"b28444c6b8da2d6b5aa99bd04f0af2e029e9f1a1","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"satazor","email":"andremiguelcruz@msn.com"},"maintainers":[{"name":"satazor","email":"andremiguelcruz@msn.com"}],"dist":{"shasum":"b28444c6b8da2d6b5aa99bd04f0af2e029e9f1a1","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-spawn/-/cross-spawn-0.2.4.tgz"},"directories":{}},"0.2.5":{"name":"cross-spawn","version":"0.2.5","description":"Cross platform child_process#spawn","main":"index.js","scripts":{"test":"mocha --bail -R spec"},"bugs":{"url":"https://github.com/IndigoUnited/node-cross-spawn/issues/"},"repository":{"type":"git","url":"git://github.com/IndigoUnited/node-cross-spawn.git"},"keywords":["spawn","windows","cross","platform","path","ext","path-ext","path_ext","shebang","hashbang","cmd","execute"],"author":{"name":"IndigoUnited","email":"hello@indigounited.com","url":"http://indigounited.com"},"license":"MIT","dependencies":{"lru-cache":"^2.5.0"},"devDependencies":{"expect.js":"^0.3.0","mocha":"^1.20.1"},"gitHead":"89edcfa212bb75d5e1afd3e140c3040683ae5502","homepage":"https://github.com/IndigoUnited/node-cross-spawn","_id":"cross-spawn@0.2.5","_shasum":"39b123afcceaf0218ff4c198bfcc665e7ca7879e","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"satazor","email":"andremiguelcruz@msn.com"},"maintainers":[{"name":"satazor","email":"andremiguelcruz@msn.com"}],"dist":{"shasum":"39b123afcceaf0218ff4c198bfcc665e7ca7879e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-spawn/-/cross-spawn-0.2.5.tgz"},"directories":{}},"0.2.6":{"name":"cross-spawn","version":"0.2.6","description":"Cross platform child_process#spawn","main":"index.js","scripts":{"test":"mocha --bail -R spec"},"bugs":{"url":"https://github.com/IndigoUnited/node-cross-spawn/issues/"},"repository":{"type":"git","url":"git://github.com/IndigoUnited/node-cross-spawn.git"},"keywords":["spawn","windows","cross","platform","path","ext","path-ext","path_ext","shebang","hashbang","cmd","execute"],"author":{"name":"IndigoUnited","email":"hello@indigounited.com","url":"http://indigounited.com"},"license":"MIT","dependencies":{"lru-cache":"^2.5.0"},"devDependencies":{"expect.js":"^0.3.0","mocha":"^1.20.1"},"gitHead":"48f2c14382f20a6c9078edb6945be3ae7a4f550a","homepage":"https://github.com/IndigoUnited/node-cross-spawn","_id":"cross-spawn@0.2.6","_shasum":"1a3512dfc5671da621f0974f26ed3bfd1555ee91","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"satazor","email":"andremiguelcruz@msn.com"},"maintainers":[{"name":"satazor","email":"andremiguelcruz@msn.com"}],"dist":{"shasum":"1a3512dfc5671da621f0974f26ed3bfd1555ee91","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-spawn/-/cross-spawn-0.2.6.tgz"},"directories":{}},"0.2.7":{"name":"cross-spawn","version":"0.2.7","description":"Cross platform child_process#spawn","main":"index.js","scripts":{"test":"mocha --bail -R spec"},"bugs":{"url":"https://github.com/IndigoUnited/node-cross-spawn/issues/"},"repository":{"type":"git","url":"git://github.com/IndigoUnited/node-cross-spawn.git"},"keywords":["spawn","windows","cross","platform","path","ext","path-ext","path_ext","shebang","hashbang","cmd","execute"],"author":{"name":"IndigoUnited","email":"hello@indigounited.com","url":"http://indigounited.com"},"license":"MIT","dependencies":{"lru-cache":"^2.5.0"},"devDependencies":{"expect.js":"^0.3.0","mocha":"^1.20.1"},"gitHead":"a403c3d72d811226c3dfb6c3c408a01a4ad37022","homepage":"https://github.com/IndigoUnited/node-cross-spawn","_id":"cross-spawn@0.2.7","_shasum":"b2edc68f95413c35dc2a0bed8f0c981c50dc4f81","_from":".","_npmVersion":"2.6.1","_nodeVersion":"0.10.36","_npmUser":{"name":"satazor","email":"andremiguelcruz@msn.com"},"maintainers":[{"name":"satazor","email":"andremiguelcruz@msn.com"}],"dist":{"shasum":"b2edc68f95413c35dc2a0bed8f0c981c50dc4f81","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-spawn/-/cross-spawn-0.2.7.tgz"},"directories":{}},"0.2.8":{"name":"cross-spawn","version":"0.2.8","description":"Cross platform child_process#spawn","main":"index.js","scripts":{"test":"mocha --bail -R spec"},"bugs":{"url":"https://github.com/IndigoUnited/node-cross-spawn/issues/"},"repository":{"type":"git","url":"git://github.com/IndigoUnited/node-cross-spawn.git"},"keywords":["spawn","windows","cross","platform","path","ext","path-ext","path_ext","shebang","hashbang","cmd","execute"],"author":{"name":"IndigoUnited","email":"hello@indigounited.com","url":"http://indigounited.com"},"license":"MIT","dependencies":{"lru-cache":"^2.5.0"},"devDependencies":{"expect.js":"^0.3.0","mocha":"^1.20.1"},"gitHead":"f41ba1a9758c1f43a1f0fd263ecd6795f80a5807","homepage":"https://github.com/IndigoUnited/node-cross-spawn","_id":"cross-spawn@0.2.8","_shasum":"0f042e792eaeb5fdb098c4524aecfd5553b8ea57","_from":".","_npmVersion":"2.6.1","_nodeVersion":"0.10.36","_npmUser":{"name":"satazor","email":"andremiguelcruz@msn.com"},"maintainers":[{"name":"satazor","email":"andremiguelcruz@msn.com"}],"dist":{"shasum":"0f042e792eaeb5fdb098c4524aecfd5553b8ea57","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-spawn/-/cross-spawn-0.2.8.tgz"},"directories":{}},"0.2.9":{"name":"cross-spawn","version":"0.2.9","description":"Cross platform child_process#spawn","main":"index.js","scripts":{"test":"mocha --bail -R spec"},"bugs":{"url":"https://github.com/IndigoUnited/node-cross-spawn/issues/"},"repository":{"type":"git","url":"git://github.com/IndigoUnited/node-cross-spawn.git"},"keywords":["spawn","windows","cross","platform","path","ext","path-ext","path_ext","shebang","hashbang","cmd","execute"],"author":{"name":"IndigoUnited","email":"hello@indigounited.com","url":"http://indigounited.com"},"license":"MIT","dependencies":{"lru-cache":"^2.5.0"},"devDependencies":{"expect.js":"^0.3.0","mocha":"^1.20.1"},"gitHead":"6fececcbd8331f98b4cfd6560b925bc4d8e77f47","homepage":"https://github.com/IndigoUnited/node-cross-spawn","_id":"cross-spawn@0.2.9","_shasum":"bd67f96c07efb6303b7fe94c1e979f88478e0a39","_from":".","_npmVersion":"2.6.1","_nodeVersion":"0.10.36","_npmUser":{"name":"satazor","email":"andremiguelcruz@msn.com"},"maintainers":[{"name":"satazor","email":"andremiguelcruz@msn.com"}],"dist":{"shasum":"bd67f96c07efb6303b7fe94c1e979f88478e0a39","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-spawn/-/cross-spawn-0.2.9.tgz"},"directories":{}},"0.3.0":{"name":"cross-spawn","version":"0.3.0","description":"Cross platform child_process#spawn","main":"index.js","scripts":{"test":"mocha --bail -R spec"},"bugs":{"url":"https://github.com/IndigoUnited/node-cross-spawn/issues/"},"repository":{"type":"git","url":"git://github.com/IndigoUnited/node-cross-spawn.git"},"keywords":["spawn","windows","cross","platform","path","ext","path-ext","path_ext","shebang","hashbang","cmd","execute"],"author":{"name":"IndigoUnited","email":"hello@indigounited.com","url":"http://indigounited.com"},"license":"MIT","dependencies":{"lru-cache":"^2.5.0"},"devDependencies":{"expect.js":"^0.3.0","mocha":"^1.20.1"},"gitHead":"a431cdc9e431ae59b994d3ac3dced552e90a4434","homepage":"https://github.com/IndigoUnited/node-cross-spawn","_id":"cross-spawn@0.3.0","_shasum":"586ca7abec0887ce0600a119990fb3a3c80ccee2","_from":".","_npmVersion":"2.7.4","_nodeVersion":"0.12.2","_npmUser":{"name":"satazor","email":"andremiguelcruz@msn.com"},"maintainers":[{"name":"satazor","email":"andremiguelcruz@msn.com"}],"dist":{"shasum":"586ca7abec0887ce0600a119990fb3a3c80ccee2","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-spawn/-/cross-spawn-0.3.0.tgz"},"directories":{}},"0.4.0":{"name":"cross-spawn","version":"0.4.0","description":"Cross platform child_process#spawn","main":"index.js","scripts":{"test":"mocha --bail -R spec"},"bugs":{"url":"https://github.com/IndigoUnited/node-cross-spawn/issues/"},"repository":{"type":"git","url":"git://github.com/IndigoUnited/node-cross-spawn.git"},"keywords":["spawn","windows","cross","platform","path","ext","path-ext","path_ext","shebang","hashbang","cmd","execute"],"author":{"name":"IndigoUnited","email":"hello@indigounited.com","url":"http://indigounited.com"},"license":"MIT","dependencies":{"lru-cache":"^2.5.0","spawn-sync":"^1.0.6"},"devDependencies":{"expect.js":"^0.3.0","mocha":"^1.20.1"},"gitHead":"b5e83a90ac4493aceb158b3b5d3274b087da5b10","homepage":"https://github.com/IndigoUnited/node-cross-spawn","_id":"cross-spawn@0.4.0","_shasum":"29e97f5098362d39245d795f63834e6aa9b2df15","_from":".","_npmVersion":"2.7.4","_nodeVersion":"0.12.2","_npmUser":{"name":"satazor","email":"andremiguelcruz@msn.com"},"maintainers":[{"name":"satazor","email":"andremiguelcruz@msn.com"}],"dist":{"shasum":"29e97f5098362d39245d795f63834e6aa9b2df15","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-spawn/-/cross-spawn-0.4.0.tgz"},"directories":{}},"0.4.1":{"name":"cross-spawn","version":"0.4.1","description":"Cross platform child_process#spawn","main":"index.js","scripts":{"test":"mocha --bail -R spec"},"bugs":{"url":"https://github.com/IndigoUnited/node-cross-spawn/issues/"},"repository":{"type":"git","url":"git://github.com/IndigoUnited/node-cross-spawn.git"},"keywords":["spawn","windows","cross","platform","path","ext","path-ext","path_ext","shebang","hashbang","cmd","execute"],"author":{"name":"IndigoUnited","email":"hello@indigounited.com","url":"http://indigounited.com"},"license":"MIT","dependencies":{"lru-cache":"^2.5.0","spawn-sync":"^1.0.6"},"devDependencies":{"expect.js":"^0.3.0","mocha":"^1.20.1"},"gitHead":"3679e6942768de5a61a7c2b5b8064ff4bbd78362","homepage":"https://github.com/IndigoUnited/node-cross-spawn","_id":"cross-spawn@0.4.1","_shasum":"05b2c16fca761350b492ad455802ea1bea3fadae","_from":".","_npmVersion":"2.7.4","_nodeVersion":"0.12.2","_npmUser":{"name":"satazor","email":"andremiguelcruz@msn.com"},"maintainers":[{"name":"satazor","email":"andremiguelcruz@msn.com"}],"dist":{"shasum":"05b2c16fca761350b492ad455802ea1bea3fadae","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-spawn/-/cross-spawn-0.4.1.tgz"},"directories":{}},"1.0.0":{"name":"cross-spawn","version":"1.0.0","description":"Cross platform child_process#spawn and child_process#spawnSync","main":"index.js","scripts":{"test":"node test/prepare && mocha --bail -R spec test/test"},"bugs":{"url":"https://github.com/IndigoUnited/node-cross-spawn/issues/"},"repository":{"type":"git","url":"git://github.com/IndigoUnited/node-cross-spawn.git"},"keywords":["spawn","spawnSync","windows","cross","platform","path","ext","path-ext","path_ext","shebang","hashbang","cmd","execute"],"author":{"name":"IndigoUnited","email":"hello@indigounited.com","url":"http://indigounited.com"},"license":"MIT","dependencies":{"cross-spawn-async":"^0.1.0","spawn-sync":"^1.0.6"},"devDependencies":{"expect.js":"^0.3.0","glob":"^5.0.12","mocha":"^2.2.5"},"gitHead":"b5239f25c0274feba89242b77d8f0ce57dce83ad","homepage":"https://github.com/IndigoUnited/node-cross-spawn#readme","_id":"cross-spawn@1.0.0","_shasum":"53e3c1e2d7a03206b226cd7c57807a5d4fb4282e","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"satazor","email":"andremiguelcruz@msn.com"},"maintainers":[{"name":"satazor","email":"andremiguelcruz@msn.com"}],"dist":{"shasum":"53e3c1e2d7a03206b226cd7c57807a5d4fb4282e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-spawn/-/cross-spawn-1.0.0.tgz"},"directories":{}},"1.0.1":{"name":"cross-spawn","version":"1.0.1","description":"Cross platform child_process#spawn and child_process#spawnSync","main":"index.js","scripts":{"test":"node test/prepare && mocha --bail -R spec test/test"},"bugs":{"url":"https://github.com/IndigoUnited/node-cross-spawn/issues/"},"repository":{"type":"git","url":"git://github.com/IndigoUnited/node-cross-spawn.git"},"keywords":["spawn","spawnSync","windows","cross","platform","path","ext","path-ext","path_ext","shebang","hashbang","cmd","execute"],"author":{"name":"IndigoUnited","email":"hello@indigounited.com","url":"http://indigounited.com"},"license":"MIT","dependencies":{"cross-spawn-async":"^1.0.0","spawn-sync":"^1.0.6"},"devDependencies":{"expect.js":"^0.3.0","glob":"^5.0.12","mocha":"^2.2.5"},"gitHead":"7e354c58e4bc5b94f535c7d488c7d868dcb72dd0","homepage":"https://github.com/IndigoUnited/node-cross-spawn#readme","_id":"cross-spawn@1.0.1","_shasum":"ec68b90d43d7eaf1ae602a5dce7d075b40c472ee","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"satazor","email":"andremiguelcruz@msn.com"},"maintainers":[{"name":"satazor","email":"andremiguelcruz@msn.com"}],"dist":{"shasum":"ec68b90d43d7eaf1ae602a5dce7d075b40c472ee","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-spawn/-/cross-spawn-1.0.1.tgz"},"directories":{}},"1.0.2":{"name":"cross-spawn","version":"1.0.2","description":"Cross platform child_process#spawn and child_process#spawnSync","main":"index.js","scripts":{"test":"node test/prepare && mocha --bail -R spec test/test"},"bugs":{"url":"https://github.com/IndigoUnited/node-cross-spawn/issues/"},"repository":{"type":"git","url":"git://github.com/IndigoUnited/node-cross-spawn.git"},"keywords":["spawn","spawnSync","windows","cross","platform","path","ext","path-ext","path_ext","shebang","hashbang","cmd","execute"],"author":{"name":"IndigoUnited","email":"hello@indigounited.com","url":"http://indigounited.com"},"license":"MIT","dependencies":{"cross-spawn-async":"^1.0.1","spawn-sync":"^1.0.6"},"devDependencies":{"expect.js":"^0.3.0","glob":"^5.0.12","mocha":"^2.2.5"},"gitHead":"bf0d22195571b06ccc882cd100fd7fb7c5a2ad86","homepage":"https://github.com/IndigoUnited/node-cross-spawn#readme","_id":"cross-spawn@1.0.2","_shasum":"16405a46325fb3e0f4dd271f5d9618e02560d68d","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"satazor","email":"andremiguelcruz@msn.com"},"maintainers":[{"name":"satazor","email":"andremiguelcruz@msn.com"}],"dist":{"shasum":"16405a46325fb3e0f4dd271f5d9618e02560d68d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-spawn/-/cross-spawn-1.0.2.tgz"},"directories":{}},"1.0.3":{"name":"cross-spawn","version":"1.0.3","description":"Cross platform child_process#spawn and child_process#spawnSync","main":"index.js","scripts":{"test":"node test/prepare && mocha --bail -R spec test/test"},"bugs":{"url":"https://github.com/IndigoUnited/node-cross-spawn/issues/"},"repository":{"type":"git","url":"git://github.com/IndigoUnited/node-cross-spawn.git"},"keywords":["spawn","spawnSync","windows","cross","platform","path","ext","path-ext","path_ext","shebang","hashbang","cmd","execute"],"author":{"name":"IndigoUnited","email":"hello@indigounited.com","url":"http://indigounited.com"},"license":"MIT","dependencies":{"cross-spawn-async":"^1.0.1","spawn-sync":"^1.0.6"},"devDependencies":{"expect.js":"^0.3.0","glob":"^5.0.12","mocha":"^2.2.5"},"gitHead":"3c02b4036eeb9df39004bfc3f0ad3d13b668d0e0","homepage":"https://github.com/IndigoUnited/node-cross-spawn#readme","_id":"cross-spawn@1.0.3","_shasum":"eb4f604ee204c3c555dd9e4b39bf430b69e977a6","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"satazor","email":"andremiguelcruz@msn.com"},"maintainers":[{"name":"satazor","email":"andremiguelcruz@msn.com"}],"dist":{"shasum":"eb4f604ee204c3c555dd9e4b39bf430b69e977a6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-spawn/-/cross-spawn-1.0.3.tgz"},"directories":{}},"1.0.4":{"name":"cross-spawn","version":"1.0.4","description":"Cross platform child_process#spawn and child_process#spawnSync","main":"index.js","scripts":{"test":"node test/prepare && mocha --bail -R spec test/test"},"bugs":{"url":"https://github.com/IndigoUnited/node-cross-spawn/issues/"},"repository":{"type":"git","url":"git://github.com/IndigoUnited/node-cross-spawn.git"},"keywords":["spawn","spawnSync","windows","cross","platform","path","ext","path-ext","path_ext","shebang","hashbang","cmd","execute"],"author":{"name":"IndigoUnited","email":"hello@indigounited.com","url":"http://indigounited.com"},"license":"MIT","dependencies":{"cross-spawn-async":"^1.0.1","spawn-sync":"^1.0.13"},"devDependencies":{"expect.js":"^0.3.0","glob":"^5.0.12","mocha":"^2.2.5"},"gitHead":"d27621d9ee8b81ee4913d9c8377e5e23add54828","homepage":"https://github.com/IndigoUnited/node-cross-spawn#readme","_id":"cross-spawn@1.0.4","_shasum":"4b60d515f5d8723bb4cde0e8e3d0240517ebffca","_from":".","_npmVersion":"2.13.1","_nodeVersion":"0.12.7","_npmUser":{"name":"satazor","email":"andremiguelcruz@msn.com"},"maintainers":[{"name":"satazor","email":"andremiguelcruz@msn.com"}],"dist":{"shasum":"4b60d515f5d8723bb4cde0e8e3d0240517ebffca","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-spawn/-/cross-spawn-1.0.4.tgz"},"directories":{}},"2.0.0":{"name":"cross-spawn","version":"2.0.0","description":"Cross platform child_process#spawn and child_process#spawnSync","main":"index.js","scripts":{"test":"node test/prepare && mocha --bail -R spec test/test"},"bugs":{"url":"https://github.com/IndigoUnited/node-cross-spawn/issues/"},"repository":{"type":"git","url":"git://github.com/IndigoUnited/node-cross-spawn.git"},"keywords":["spawn","spawnSync","windows","cross","platform","path","ext","path-ext","path_ext","shebang","hashbang","cmd","execute"],"author":{"name":"IndigoUnited","email":"hello@indigounited.com","url":"http://indigounited.com"},"license":"MIT","dependencies":{"cross-spawn-async":"^2.0.0","spawn-sync":"^1.0.13"},"devDependencies":{"expect.js":"^0.3.0","glob":"^5.0.12","mocha":"^2.2.5"},"gitHead":"65d41138e6b5161787df43d5f8de2442765e32d0","homepage":"https://github.com/IndigoUnited/node-cross-spawn#readme","_id":"cross-spawn@2.0.0","_shasum":"32dc93907e8f80e39830aa3f0bd9f32538b3bcf1","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"satazor","email":"andremiguelcruz@msn.com"},"maintainers":[{"name":"satazor","email":"andremiguelcruz@msn.com"}],"dist":{"shasum":"32dc93907e8f80e39830aa3f0bd9f32538b3bcf1","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-spawn/-/cross-spawn-2.0.0.tgz"},"directories":{}},"2.0.1":{"name":"cross-spawn","version":"2.0.1","description":"Cross platform child_process#spawn and child_process#spawnSync","main":"index.js","scripts":{"test":"node test/prepare && mocha --bail -R spec test/test"},"bugs":{"url":"https://github.com/IndigoUnited/node-cross-spawn/issues/"},"repository":{"type":"git","url":"git://github.com/IndigoUnited/node-cross-spawn.git"},"keywords":["spawn","spawnSync","windows","cross","platform","path","ext","path-ext","path_ext","shebang","hashbang","cmd","execute"],"author":{"name":"IndigoUnited","email":"hello@indigounited.com","url":"http://indigounited.com"},"license":"MIT","dependencies":{"cross-spawn-async":"^2.0.0","spawn-sync":"1.0.13"},"devDependencies":{"expect.js":"^0.3.0","glob":"^5.0.12","mkdirp":"^0.5.1","mocha":"^2.2.5","rimraf":"^2.4.4","which":"^1.2.0"},"gitHead":"22cae907b13de66edb5882aea6f1cb405740d283","homepage":"https://github.com/IndigoUnited/node-cross-spawn#readme","_id":"cross-spawn@2.0.1","_shasum":"ab6fd893a099759d9b85220e3a64397de946b0f6","_from":".","_npmVersion":"2.13.1","_nodeVersion":"0.12.7","_npmUser":{"name":"satazor","email":"andremiguelcruz@msn.com"},"maintainers":[{"name":"satazor","email":"andremiguelcruz@msn.com"}],"dist":{"shasum":"ab6fd893a099759d9b85220e3a64397de946b0f6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-spawn/-/cross-spawn-2.0.1.tgz"},"directories":{}},"2.1.0":{"name":"cross-spawn","version":"2.1.0","description":"Cross platform child_process#spawn and child_process#spawnSync","main":"index.js","scripts":{"test":"node test/prepare && mocha --bail -R spec test/test"},"bugs":{"url":"https://github.com/IndigoUnited/node-cross-spawn/issues/"},"repository":{"type":"git","url":"git://github.com/IndigoUnited/node-cross-spawn.git"},"keywords":["spawn","spawnSync","windows","cross","platform","path","ext","path-ext","path_ext","shebang","hashbang","cmd","execute"],"author":{"name":"IndigoUnited","email":"hello@indigounited.com","url":"http://indigounited.com"},"license":"MIT","dependencies":{"cross-spawn-async":"^2.0.0","spawn-sync":"1.0.13"},"devDependencies":{"expect.js":"^0.3.0","glob":"^5.0.12","mkdirp":"^0.5.1","mocha":"^2.2.5","rimraf":"^1.0.9","which":"^1.2.0"},"gitHead":"f2baa6dce3606daf543666ac1e5df6e4d29ed0cc","homepage":"https://github.com/IndigoUnited/node-cross-spawn#readme","_id":"cross-spawn@2.1.0","_shasum":"9bc27f40423e98a445efe9269983e4f4055cde3a","_from":".","_npmVersion":"2.13.1","_nodeVersion":"0.12.7","_npmUser":{"name":"satazor","email":"andremiguelcruz@msn.com"},"maintainers":[{"name":"satazor","email":"andremiguelcruz@msn.com"}],"dist":{"shasum":"9bc27f40423e98a445efe9269983e4f4055cde3a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-spawn/-/cross-spawn-2.1.0.tgz"},"directories":{}},"2.1.1":{"name":"cross-spawn","version":"2.1.1","description":"Cross platform child_process#spawn and child_process#spawnSync","main":"index.js","scripts":{"test":"node test/prepare && mocha --bail -R spec test/test"},"bugs":{"url":"https://github.com/IndigoUnited/node-cross-spawn/issues/"},"repository":{"type":"git","url":"git://github.com/IndigoUnited/node-cross-spawn.git"},"keywords":["spawn","spawnSync","windows","cross","platform","path","ext","path-ext","path_ext","shebang","hashbang","cmd","execute"],"author":{"name":"IndigoUnited","email":"hello@indigounited.com","url":"http://indigounited.com"},"license":"MIT","dependencies":{"cross-spawn-async":"^2.0.0","spawn-sync":"1.0.13"},"devDependencies":{"expect.js":"^0.3.0","glob":"^5.0.12","mkdirp":"^0.5.1","mocha":"^2.2.5","rimraf":"^1.0.9","which":"^1.2.0"},"gitHead":"a9b71dd09dd90b8423707b743ae9ced844a7ae21","homepage":"https://github.com/IndigoUnited/node-cross-spawn#readme","_id":"cross-spawn@2.1.1","_shasum":"c3b85d6a88719068b2b27be55e2974f62d41b5c0","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.3","_npmUser":{"name":"satazor","email":"andremiguelcruz@msn.com"},"maintainers":[{"name":"satazor","email":"andremiguelcruz@msn.com"}],"dist":{"shasum":"c3b85d6a88719068b2b27be55e2974f62d41b5c0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-spawn/-/cross-spawn-2.1.1.tgz"},"directories":{}},"2.1.2":{"name":"cross-spawn","version":"2.1.2","description":"Cross platform child_process#spawn and child_process#spawnSync","main":"index.js","scripts":{"test":"node test/prepare && mocha --bail -R spec test/test"},"bugs":{"url":"https://github.com/IndigoUnited/node-cross-spawn/issues/"},"repository":{"type":"git","url":"git://github.com/IndigoUnited/node-cross-spawn.git"},"keywords":["spawn","spawnSync","windows","cross","platform","path","ext","path-ext","path_ext","shebang","hashbang","cmd","execute"],"author":{"name":"IndigoUnited","email":"hello@indigounited.com","url":"http://indigounited.com"},"license":"MIT","dependencies":{"cross-spawn-async":"^2.0.0","spawn-sync":"1.0.13"},"devDependencies":{"expect.js":"^0.3.0","glob":"^6.0.3","mkdirp":"^0.5.1","mocha":"^2.2.5","rimraf":"^2.5.0","which":"^1.2.1"},"gitHead":"b701ac8cce3b8c21278018d0f2af60860a125c1e","homepage":"https://github.com/IndigoUnited/node-cross-spawn#readme","_id":"cross-spawn@2.1.2","_shasum":"954ea0346437918e803e03c445cb5c3287abc2af","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.3","_npmUser":{"name":"satazor","email":"andremiguelcruz@msn.com"},"maintainers":[{"name":"satazor","email":"andremiguelcruz@msn.com"}],"dist":{"shasum":"954ea0346437918e803e03c445cb5c3287abc2af","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-spawn/-/cross-spawn-2.1.2.tgz"},"directories":{}},"2.1.3":{"name":"cross-spawn","version":"2.1.3","description":"Cross platform child_process#spawn and child_process#spawnSync","main":"index.js","scripts":{"test":"node test/prepare && mocha --bail -R spec test/test"},"bugs":{"url":"https://github.com/IndigoUnited/node-cross-spawn/issues/"},"repository":{"type":"git","url":"git://github.com/IndigoUnited/node-cross-spawn.git"},"keywords":["spawn","spawnSync","windows","cross","platform","path","ext","path-ext","path_ext","shebang","hashbang","cmd","execute"],"author":{"name":"IndigoUnited","email":"hello@indigounited.com","url":"http://indigounited.com"},"license":"MIT","dependencies":{"cross-spawn-async":"^2.0.0","spawn-sync":"1.0.13"},"devDependencies":{"expect.js":"^0.3.0","glob":"^6.0.3","mkdirp":"^0.5.1","mocha":"^2.2.5","rimraf":"^2.5.0","which":"^1.2.1"},"gitHead":"299efd1b11fe8bcc64cdb9cdf8f624b9e56e1bb9","homepage":"https://github.com/IndigoUnited/node-cross-spawn#readme","_id":"cross-spawn@2.1.3","_shasum":"6b801df157e4328b63e3d4c2c9c00488745726e8","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.3","_npmUser":{"name":"satazor","email":"andremiguelcruz@msn.com"},"maintainers":[{"name":"satazor","email":"andremiguelcruz@msn.com"}],"dist":{"shasum":"6b801df157e4328b63e3d4c2c9c00488745726e8","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-spawn/-/cross-spawn-2.1.3.tgz"},"directories":{}},"2.1.4":{"name":"cross-spawn","version":"2.1.4","description":"Cross platform child_process#spawn and child_process#spawnSync","main":"index.js","scripts":{"test":"node test/prepare && mocha --bail -R spec test/test"},"bugs":{"url":"https://github.com/IndigoUnited/node-cross-spawn/issues/"},"repository":{"type":"git","url":"git://github.com/IndigoUnited/node-cross-spawn.git"},"keywords":["spawn","spawnSync","windows","cross","platform","path","ext","path-ext","path_ext","shebang","hashbang","cmd","execute"],"author":{"name":"IndigoUnited","email":"hello@indigounited.com","url":"http://indigounited.com"},"license":"MIT","dependencies":{"cross-spawn-async":"^2.0.0","spawn-sync":"^1.0.15"},"devDependencies":{"expect.js":"^0.3.0","glob":"^6.0.3","mkdirp":"^0.5.1","mocha":"^2.2.5","rimraf":"^2.5.0","which":"^1.2.1"},"gitHead":"1831b3228a38722f431156485b01db3be6d199cc","homepage":"https://github.com/IndigoUnited/node-cross-spawn#readme","_id":"cross-spawn@2.1.4","_shasum":"e64441b7a038e929ccc6e24e2aa7b72a96b26a27","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.3","_npmUser":{"name":"satazor","email":"andremiguelcruz@msn.com"},"maintainers":[{"name":"satazor","email":"andremiguelcruz@msn.com"}],"dist":{"shasum":"e64441b7a038e929ccc6e24e2aa7b72a96b26a27","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-spawn/-/cross-spawn-2.1.4.tgz"},"directories":{}},"2.1.5":{"name":"cross-spawn","version":"2.1.5","description":"Cross platform child_process#spawn and child_process#spawnSync","main":"index.js","scripts":{"test":"node test/prepare && mocha --bail test/test"},"bugs":{"url":"https://github.com/IndigoUnited/node-cross-spawn/issues/"},"repository":{"type":"git","url":"git://github.com/IndigoUnited/node-cross-spawn.git"},"keywords":["spawn","spawnSync","windows","cross","platform","path","ext","path-ext","path_ext","shebang","hashbang","cmd","execute"],"author":{"name":"IndigoUnited","email":"hello@indigounited.com","url":"http://indigounited.com"},"license":"MIT","dependencies":{"cross-spawn-async":"^2.0.0","spawn-sync":"^1.0.15"},"devDependencies":{"expect.js":"^0.3.0","glob":"^6.0.3","mkdirp":"^0.5.1","mocha":"^2.2.5","rimraf":"^2.5.0","which":"^1.2.4"},"gitHead":"a91440123d1d8ec2865cf7643351955e7ad48247","homepage":"https://github.com/IndigoUnited/node-cross-spawn","_id":"cross-spawn@2.1.5","_shasum":"09e1eefb7617270f4f9cad41766e7fcbd2c6ae6c","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.4","_npmUser":{"name":"satazor","email":"andremiguelcruz@msn.com"},"maintainers":[{"name":"satazor","email":"andremiguelcruz@msn.com"}],"dist":{"shasum":"09e1eefb7617270f4f9cad41766e7fcbd2c6ae6c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-spawn/-/cross-spawn-2.1.5.tgz"},"directories":{}},"2.2.0":{"name":"cross-spawn","version":"2.2.0","description":"Cross platform child_process#spawn and child_process#spawnSync","main":"index.js","scripts":{"test":"node test/prepare && mocha --bail test/test"},"bugs":{"url":"https://github.com/IndigoUnited/node-cross-spawn/issues/"},"repository":{"type":"git","url":"git://github.com/IndigoUnited/node-cross-spawn.git"},"keywords":["spawn","spawnSync","windows","cross","platform","path","ext","path-ext","path_ext","shebang","hashbang","cmd","execute"],"author":{"name":"IndigoUnited","email":"hello@indigounited.com","url":"http://indigounited.com"},"license":"MIT","dependencies":{"cross-spawn-async":"^2.2.0","spawn-sync":"^1.0.15"},"devDependencies":{"expect.js":"^0.3.0","glob":"^7.0.0","mkdirp":"^0.5.1","mocha":"^2.2.5","rimraf":"^2.5.0","which":"^1.2.4"},"gitHead":"d55c6fd837ebc9bfb64ed73b7bc9e584547d97c2","homepage":"https://github.com/IndigoUnited/node-cross-spawn#readme","_id":"cross-spawn@2.2.0","_shasum":"69a59997789571ccb64f399555a5169af79c9361","_from":".","_npmVersion":"2.14.20","_nodeVersion":"4.4.0","_npmUser":{"name":"satazor","email":"andremiguelcruz@msn.com"},"maintainers":[{"name":"satazor","email":"andremiguelcruz@msn.com"}],"dist":{"shasum":"69a59997789571ccb64f399555a5169af79c9361","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-spawn/-/cross-spawn-2.2.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cross-spawn-2.2.0.tgz_1459975736466_0.5801793539430946"},"directories":{}},"2.2.2":{"name":"cross-spawn","version":"2.2.2","description":"Cross platform child_process#spawn and child_process#spawnSync","main":"index.js","scripts":{"test":"node test/prepare && mocha --bail test/test"},"bugs":{"url":"https://github.com/IndigoUnited/node-cross-spawn/issues/"},"repository":{"type":"git","url":"git://github.com/IndigoUnited/node-cross-spawn.git"},"keywords":["spawn","spawnSync","windows","cross","platform","path","ext","path-ext","path_ext","shebang","hashbang","cmd","execute"],"author":{"name":"IndigoUnited","email":"hello@indigounited.com","url":"http://indigounited.com"},"license":"MIT","dependencies":{"cross-spawn-async":"^2.2.0","spawn-sync":"^1.0.15"},"devDependencies":{"expect.js":"^0.3.0","glob":"^7.0.0","mkdirp":"^0.5.1","mocha":"^2.2.5","rimraf":"^2.5.0","which":"^1.2.4"},"gitHead":"34bb37ef65c431891f5cc4f033b418dbb24084ae","homepage":"https://github.com/IndigoUnited/node-cross-spawn#readme","_id":"cross-spawn@2.2.2","_shasum":"745cba057f65fb13daca869e4c50cdbda173b45b","_from":".","_npmVersion":"2.14.20","_nodeVersion":"4.4.0","_npmUser":{"name":"satazor","email":"andremiguelcruz@msn.com"},"maintainers":[{"name":"satazor","email":"andremiguelcruz@msn.com"}],"dist":{"shasum":"745cba057f65fb13daca869e4c50cdbda173b45b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-spawn/-/cross-spawn-2.2.2.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cross-spawn-2.2.2.tgz_1460152414353_0.8628160380758345"},"directories":{}},"2.2.3":{"name":"cross-spawn","version":"2.2.3","description":"Cross platform child_process#spawn and child_process#spawnSync","main":"index.js","scripts":{"test":"node test/prepare && mocha --bail test/test"},"bugs":{"url":"https://github.com/IndigoUnited/node-cross-spawn/issues/"},"repository":{"type":"git","url":"git://github.com/IndigoUnited/node-cross-spawn.git"},"keywords":["spawn","spawnSync","windows","cross","platform","path","ext","path-ext","path_ext","shebang","hashbang","cmd","execute"],"author":{"name":"IndigoUnited","email":"hello@indigounited.com","url":"http://indigounited.com"},"license":"MIT","dependencies":{"cross-spawn-async":"^2.2.2","spawn-sync":"^1.0.15"},"devDependencies":{"expect.js":"^0.3.0","glob":"^7.0.0","mkdirp":"^0.5.1","mocha":"^2.2.5","rimraf":"^2.5.0","which":"^1.2.4"},"gitHead":"7bc71932e517c974c80f54ae9f7687c9cd25db74","homepage":"https://github.com/IndigoUnited/node-cross-spawn#readme","_id":"cross-spawn@2.2.3","_shasum":"fac56202dfd3d0dd861778f2da203bf434bb821c","_from":".","_npmVersion":"2.14.20","_nodeVersion":"4.4.0","_npmUser":{"name":"satazor","email":"andremiguelcruz@msn.com"},"maintainers":[{"name":"satazor","email":"andremiguelcruz@msn.com"}],"dist":{"shasum":"fac56202dfd3d0dd861778f2da203bf434bb821c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-spawn/-/cross-spawn-2.2.3.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cross-spawn-2.2.3.tgz_1460574403627_0.18620981369167566"},"directories":{}},"3.0.0":{"name":"cross-spawn","version":"3.0.0","description":"Cross platform child_process#spawn and child_process#spawnSync","main":"index.js","scripts":{"test":"node test/prepare && mocha --bail test/test","lint":"eslint '{*.js,lib/**/*.js,test/**/*.js}'"},"bugs":{"url":"https://github.com/IndigoUnited/node-cross-spawn/issues/"},"repository":{"type":"git","url":"git://github.com/IndigoUnited/node-cross-spawn.git"},"keywords":["spawn","spawnSync","windows","cross","platform","path","ext","path-ext","path_ext","shebang","hashbang","cmd","execute"],"author":{"name":"IndigoUnited","email":"hello@indigounited.com","url":"http://indigounited.com"},"license":"MIT","dependencies":{"lru-cache":"^4.0.1","which":"^1.2.8"},"devDependencies":{"@satazor/eslint-config":"^2.3.0","eslint":"^2.10.2","expect.js":"^0.3.0","glob":"^7.0.0","mkdirp":"^0.5.1","mocha":"^2.2.5","rimraf":"^2.5.0"},"gitHead":"400d26217319a93393ff29d4295b211bd5650e5c","homepage":"https://github.com/IndigoUnited/node-cross-spawn#readme","_id":"cross-spawn@3.0.0","_shasum":"b86d2b005542f5716f2a3fdd437baa53ce4c6729","_from":".","_npmVersion":"2.15.4","_nodeVersion":"4.4.3","_npmUser":{"name":"satazor","email":"andremiguelcruz@msn.com"},"maintainers":[{"name":"satazor","email":"andremiguelcruz@msn.com"}],"dist":{"shasum":"b86d2b005542f5716f2a3fdd437baa53ce4c6729","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-spawn/-/cross-spawn-3.0.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/cross-spawn-3.0.0.tgz_1463577305117_0.17247679783031344"},"directories":{}},"3.0.1":{"name":"cross-spawn","version":"3.0.1","description":"Cross platform child_process#spawn and child_process#spawnSync","main":"index.js","scripts":{"test":"node test/prepare && mocha --bail test/test","lint":"eslint '{*.js,lib/**/*.js,test/**/*.js}'"},"bugs":{"url":"https://github.com/IndigoUnited/node-cross-spawn/issues/"},"repository":{"type":"git","url":"git://github.com/IndigoUnited/node-cross-spawn.git"},"keywords":["spawn","spawnSync","windows","cross","platform","path","ext","path-ext","path_ext","shebang","hashbang","cmd","execute"],"author":{"name":"IndigoUnited","email":"hello@indigounited.com","url":"http://indigounited.com"},"license":"MIT","dependencies":{"lru-cache":"^4.0.1","which":"^1.2.9"},"devDependencies":{"@satazor/eslint-config":"^2.3.0","eslint":"^2.10.2","expect.js":"^0.3.0","glob":"^7.0.0","mkdirp":"^0.5.1","mocha":"^2.2.5","rimraf":"^2.5.0"},"gitHead":"24df88c465e5828b62c374e58366547bd94629db","homepage":"https://github.com/IndigoUnited/node-cross-spawn#readme","_id":"cross-spawn@3.0.1","_shasum":"1256037ecb9f0c5f79e3d6ef135e30770184b982","_from":".","_npmVersion":"2.15.4","_nodeVersion":"4.4.3","_npmUser":{"name":"satazor","email":"andremiguelcruz@msn.com"},"maintainers":[{"name":"satazor","email":"andremiguelcruz@msn.com"}],"dist":{"shasum":"1256037ecb9f0c5f79e3d6ef135e30770184b982","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-spawn/-/cross-spawn-3.0.1.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cross-spawn-3.0.1.tgz_1463607513426_0.7439773543737829"},"directories":{}},"4.0.0":{"name":"cross-spawn","version":"4.0.0","description":"Cross platform child_process#spawn and child_process#spawnSync","main":"index.js","scripts":{"test":"node test/prepare && mocha --bail test/test","lint":"eslint '{*.js,lib/**/*.js,test/**/*.js}'"},"bugs":{"url":"https://github.com/IndigoUnited/node-cross-spawn/issues/"},"repository":{"type":"git","url":"git://github.com/IndigoUnited/node-cross-spawn.git"},"keywords":["spawn","spawnSync","windows","cross","platform","path","ext","path-ext","path_ext","shebang","hashbang","cmd","execute"],"author":{"name":"IndigoUnited","email":"hello@indigounited.com","url":"http://indigounited.com"},"license":"MIT","dependencies":{"lru-cache":"^4.0.1","which":"^1.2.9"},"devDependencies":{"@satazor/eslint-config":"^2.3.0","eslint":"^2.10.2","expect.js":"^0.3.0","glob":"^7.0.0","mkdirp":"^0.5.1","mocha":"^2.2.5","rimraf":"^2.5.0"},"gitHead":"f26c67b14f1f8fc64564aca9eb5319a2dd708e6b","homepage":"https://github.com/IndigoUnited/node-cross-spawn#readme","_id":"cross-spawn@4.0.0","_shasum":"8254774ab4786b8c5b3cf4dfba66ce563932c252","_from":".","_npmVersion":"2.15.4","_nodeVersion":"4.4.3","_npmUser":{"name":"satazor","email":"andremiguelcruz@msn.com"},"maintainers":[{"name":"satazor","email":"andremiguelcruz@msn.com"}],"dist":{"shasum":"8254774ab4786b8c5b3cf4dfba66ce563932c252","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-spawn/-/cross-spawn-4.0.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cross-spawn-4.0.0.tgz_1464295843723_0.5908118768129498"},"directories":{}},"4.0.2":{"name":"cross-spawn","version":"4.0.2","description":"Cross platform child_process#spawn and child_process#spawnSync","main":"index.js","scripts":{"test":"node test/prepare && mocha --bail test/test","lint":"eslint '{*.js,lib/**/*.js,test/**/*.js}'"},"bugs":{"url":"https://github.com/IndigoUnited/node-cross-spawn/issues/"},"repository":{"type":"git","url":"git://github.com/IndigoUnited/node-cross-spawn.git"},"files":["index.js","lib"],"keywords":["spawn","spawnSync","windows","cross","platform","path","ext","path-ext","path_ext","shebang","hashbang","cmd","execute"],"author":{"name":"IndigoUnited","email":"hello@indigounited.com","url":"http://indigounited.com"},"license":"MIT","dependencies":{"lru-cache":"^4.0.1","which":"^1.2.9"},"devDependencies":{"@satazor/eslint-config":"^3.0.0","eslint":"^3.0.0","expect.js":"^0.3.0","glob":"^7.0.0","mkdirp":"^0.5.1","mocha":"^3.0.2","rimraf":"^2.5.0"},"gitHead":"674ceb2f2b69ad64b5dcad661b9bf048d6ec4c22","homepage":"https://github.com/IndigoUnited/node-cross-spawn#readme","_id":"cross-spawn@4.0.2","_shasum":"7b9247621c23adfdd3856004a823cbe397424d41","_from":".","_npmVersion":"2.15.9","_nodeVersion":"4.5.0","_npmUser":{"name":"satazor","email":"andremiguelcruz@msn.com"},"dist":{"shasum":"7b9247621c23adfdd3856004a823cbe397424d41","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-spawn/-/cross-spawn-4.0.2.tgz"},"maintainers":[{"name":"satazor","email":"andremiguelcruz@msn.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cross-spawn-4.0.2.tgz_1474803799646_0.017929385183379054"},"directories":{}},"5.0.0":{"name":"cross-spawn","version":"5.0.0","description":"Cross platform child_process#spawn and child_process#spawnSync","main":"index.js","scripts":{"test":"node test/prepare && mocha --bail test/test","lint":"eslint '{*.js,lib/**/*.js,test/**/*.js}'"},"bugs":{"url":"https://github.com/IndigoUnited/node-cross-spawn/issues/"},"repository":{"type":"git","url":"git://github.com/IndigoUnited/node-cross-spawn.git"},"files":["index.js","lib"],"keywords":["spawn","spawnSync","windows","cross","platform","path","ext","path-ext","path_ext","shebang","hashbang","cmd","execute"],"author":{"name":"IndigoUnited","email":"hello@indigounited.com","url":"http://indigounited.com"},"license":"MIT","dependencies":{"lru-cache":"^4.0.1","shebang-command":"^1.2.0","which":"^1.2.9"},"devDependencies":{"@satazor/eslint-config":"^3.0.0","eslint":"^3.0.0","expect.js":"^0.3.0","glob":"^7.0.0","mkdirp":"^0.5.1","mocha":"^3.0.2","once":"^1.4.0","rimraf":"^2.5.0"},"gitHead":"2d22b33a3fc2300281594b7bf53a3173dd03f62f","homepage":"https://github.com/IndigoUnited/node-cross-spawn#readme","_id":"cross-spawn@5.0.0","_shasum":"655bc986a2aadaa8fdbbe072331f150b8a5e35c4","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"satazor","email":"andremiguelcruz@msn.com"},"dist":{"shasum":"655bc986a2aadaa8fdbbe072331f150b8a5e35c4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-spawn/-/cross-spawn-5.0.0.tgz"},"maintainers":[{"name":"satazor","email":"andremiguelcruz@msn.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cross-spawn-5.0.0.tgz_1477845143510_0.6192892545368522"},"directories":{}},"5.0.1":{"name":"cross-spawn","version":"5.0.1","description":"Cross platform child_process#spawn and child_process#spawnSync","main":"index.js","scripts":{"test":"node test/prepare && mocha --bail test/test","lint":"eslint '{*.js,lib/**/*.js,test/**/*.js}'"},"bugs":{"url":"https://github.com/IndigoUnited/node-cross-spawn/issues/"},"repository":{"type":"git","url":"git://github.com/IndigoUnited/node-cross-spawn.git"},"files":["index.js","lib"],"keywords":["spawn","spawnSync","windows","cross","platform","path","ext","path-ext","path_ext","shebang","hashbang","cmd","execute"],"author":{"name":"IndigoUnited","email":"hello@indigounited.com","url":"http://indigounited.com"},"license":"MIT","dependencies":{"lru-cache":"^4.0.1","shebang-command":"^1.2.0","which":"^1.2.9"},"devDependencies":{"@satazor/eslint-config":"^3.0.0","eslint":"^3.0.0","expect.js":"^0.3.0","glob":"^7.0.0","mkdirp":"^0.5.1","mocha":"^3.0.2","once":"^1.4.0","rimraf":"^2.5.0"},"gitHead":"d74d461bc4543787b955cfac5c006c86da55a4ca","homepage":"https://github.com/IndigoUnited/node-cross-spawn#readme","_id":"cross-spawn@5.0.1","_shasum":"a3bbb302db2297cbea3c04edf36941f4613aa399","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"satazor","email":"andremiguelcruz@msn.com"},"dist":{"shasum":"a3bbb302db2297cbea3c04edf36941f4613aa399","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-spawn/-/cross-spawn-5.0.1.tgz"},"maintainers":[{"name":"satazor","email":"andremiguelcruz@msn.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/cross-spawn-5.0.1.tgz_1478303144933_0.1565041346475482"},"directories":{}},"5.1.0":{"name":"cross-spawn","version":"5.1.0","description":"Cross platform child_process#spawn and child_process#spawnSync","main":"index.js","scripts":{"test":"node test/prepare && mocha --bail test/test","lint":"eslint '{*.js,lib/**/*.js,test/**/*.js}'"},"bugs":{"url":"https://github.com/IndigoUnited/node-cross-spawn/issues/"},"repository":{"type":"git","url":"git://github.com/IndigoUnited/node-cross-spawn.git"},"files":["index.js","lib"],"keywords":["spawn","spawnSync","windows","cross","platform","path","ext","path-ext","path_ext","shebang","hashbang","cmd","execute"],"author":{"name":"IndigoUnited","email":"hello@indigounited.com","url":"http://indigounited.com"},"license":"MIT","dependencies":{"lru-cache":"^4.0.1","shebang-command":"^1.2.0","which":"^1.2.9"},"devDependencies":{"@satazor/eslint-config":"^3.0.0","eslint":"^3.0.0","expect.js":"^0.3.0","glob":"^7.0.0","mkdirp":"^0.5.1","mocha":"^3.0.2","once":"^1.4.0","rimraf":"^2.5.0"},"gitHead":"1da4c09ccf658079849a3d191b16e59bc600e8b4","homepage":"https://github.com/IndigoUnited/node-cross-spawn#readme","_id":"cross-spawn@5.1.0","_shasum":"e8bd0efee58fcff6f8f94510a0a554bbfa235449","_from":".","_npmVersion":"3.10.8","_nodeVersion":"7.0.0","_npmUser":{"name":"satazor","email":"andremiguelcruz@msn.com"},"dist":{"shasum":"e8bd0efee58fcff6f8f94510a0a554bbfa235449","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-spawn/-/cross-spawn-5.1.0.tgz"},"maintainers":[{"name":"satazor","email":"andremiguelcruz@msn.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cross-spawn-5.1.0.tgz_1488134324770_0.025160177145153284"},"directories":{}}},"name":"cross-spawn","time":{"modified":"2017-08-03T07:17:14.751Z","created":"2014-06-30T01:04:42.962Z","0.1.0":"2014-06-30T01:04:42.962Z","0.1.1":"2014-06-30T13:22:52.138Z","0.1.2":"2014-06-30T21:29:40.550Z","0.1.3":"2014-06-30T21:49:21.933Z","0.1.4":"2014-06-30T23:25:24.890Z","0.1.5":"2014-07-02T11:30:53.833Z","0.1.6":"2014-07-03T08:47:30.074Z","0.1.7":"2014-07-11T16:28:05.858Z","0.2.0":"2014-08-28T22:41:05.210Z","0.2.1":"2014-08-28T22:50:35.426Z","0.2.2":"2014-08-28T22:59:55.849Z","0.2.3":"2014-08-29T08:12:24.369Z","0.2.4":"2015-02-08T20:34:37.954Z","0.2.5":"2015-02-08T20:35:35.977Z","0.2.6":"2015-02-08T20:58:31.475Z","0.2.7":"2015-03-28T00:03:44.626Z","0.2.8":"2015-03-28T00:05:26.072Z","0.2.9":"2015-04-08T16:18:38.840Z","0.3.0":"2015-05-06T08:02:28.625Z","0.4.0":"2015-05-06T22:21:11.441Z","0.4.1":"2015-06-10T15:11:37.696Z","1.0.0":"2015-07-02T19:01:47.896Z","1.0.1":"2015-07-02T19:10:06.117Z","1.0.2":"2015-07-02T20:15:01.537Z","1.0.3":"2015-07-02T20:21:46.368Z","1.0.4":"2015-07-16T16:57:22.820Z","2.0.0":"2015-07-21T22:25:49.585Z","2.0.1":"2015-11-29T17:30:31.442Z","2.1.0":"2015-12-06T15:26:20.377Z","2.1.1":"2016-01-02T09:57:15.369Z","2.1.2":"2016-01-02T14:50:05.176Z","2.1.3":"2016-01-02T15:27:58.166Z","2.1.4":"2016-01-03T15:37:28.977Z","2.1.5":"2016-01-27T01:15:02.454Z","2.2.0":"2016-04-06T20:48:59.136Z","2.2.2":"2016-04-08T21:53:36.565Z","2.2.3":"2016-04-13T19:06:45.979Z","3.0.0":"2016-05-18T13:15:07.856Z","3.0.1":"2016-05-18T21:38:35.770Z","4.0.0":"2016-05-26T20:50:45.929Z","4.0.2":"2016-09-25T11:43:21.493Z","5.0.0":"2016-10-30T16:32:25.720Z","5.0.1":"2016-11-04T23:45:45.490Z","5.1.0":"2017-02-26T18:38:46.418Z"},"readmeFilename":"README.md","homepage":"https://github.com/IndigoUnited/node-cross-spawn#readme"}