{"maintainers":[{"name":"bengl","email":"bryan@bryanenglish.com"},{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},{"name":"leobalter","email":"leonardo.balter@gmail.com"},{"name":"satazor","email":"andremiguelcruz@msn.com"}],"keywords":[],"dist-tags":{"latest":"1.0.15"},"author":{"name":"ForbesLindesay"},"description":"Prollyfill for child_process.spawnSync","readme":"# spawn-sync\n\nPolyfill for `child_process.spawnSync`.\n\nOn iojs and node >= 0.12 it will just export the built in `child_process.spawnSync`. On platforms that support compiling native modules it uses the [thread-sleep](https://github.com/ForbesLindesay/thread-sleep) module to wait for an output file to exist in a tight loop.  In this way it gains excellent cross platform support, but don't expect it to be efficient on all platforms.\n\n[![Tests Status](https://img.shields.io/travis/ForbesLindesay/spawn-sync/master.svg)](https://travis-ci.org/ForbesLindesay/spawn-sync)\n[![Dependency Status](https://img.shields.io/david/ForbesLindesay/spawn-sync.svg)](https://david-dm.org/ForbesLindesay/spawn-sync)\n[![NPM version](https://img.shields.io/npm/v/spawn-sync.svg)](https://www.npmjs.com/package/spawn-sync)\n\n## Installation\n\n    npm install spawn-sync\n\nIf this fails, you can try one of the following things:\n\n1. Some package managers made a stupid decision to rename the `node` executable to `nodejs` for their platform.  This breaks compatibility with lots of modules.  If you normally use `nodejs` instead of `node`, you should check out http://stackoverflow.com/questions/18130164/nodejs-vs-node-on-ubuntu-12-04 for possible fixes.\n\n2. You can install using `--unsafe-perm`, which will fix any permissions issues.\n\n    npm install --unsafe-perm spawn-sync\n\n3. You can install using `--ignore-scripts`, which will skip native compilation.  You'll get a warning if you try to require the module, but everything should still work.\n\n    npm install --ignore-scripts spawn-sync\n\n4. You can try [updating npm](https://docs.npmjs.com/getting-started/installing-node), since this seems to fail on some older versions of npm:\n\n    sudo npm install npm -g\n\n5. You can upgrade to the latest version of node or iojs.  This will make native compilation unnecessary.  You can then use `--ignore-scripts` without getting a warning if you still have trouble.\n\n## Usage\n\n```js\nvar spawnSync = require('spawn-sync');\n\nvar result = spawnSync('node',\n                       ['filename.js'],\n                       {input: 'write this to stdin'});\n\nif (result.status !== 0) {\n  process.stderr.write(result.stderr);\n  process.exit(result.status);\n} else {\n  process.stdout.write(result.stdout);\n  process.stderr.write(result.stderr);\n}\n```\n\n## License\n\n  MIT\n","repository":{"type":"git","url":"git+https://github.com/ForbesLindesay/spawn-sync.git"},"users":{"jaredvogt":true,"rwhogg":true,"mgol":true},"bugs":{"url":"https://github.com/ForbesLindesay/spawn-sync/issues"},"license":"MIT","versions":{"0.0.0":{"name":"spawn-sync","version":"0.0.0","description":"Prollyfill for child_process.spawnSync","keywords":[],"dependencies":{},"devDependencies":{"mocha":"*"},"scripts":{"test":"mocha -R spec"},"repository":{"type":"git","url":"https://github.com/ForbesLindesay/spawn-sync.git"},"author":{"name":"ForbesLindesay"},"license":"MIT","bugs":{"url":"https://github.com/ForbesLindesay/spawn-sync/issues"},"homepage":"https://github.com/ForbesLindesay/spawn-sync","_id":"spawn-sync@0.0.0","dist":{"shasum":"8f28292151ff92385c7aa61557deb6822d4f1e65","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/spawn-sync/-/spawn-sync-0.0.0.tgz"},"_from":".","_npmVersion":"1.3.21","_npmUser":{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},"maintainers":[{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"}],"directories":{}},"0.0.2":{"name":"spawn-sync","version":"0.0.2","description":"Prollyfill for child_process.spawnSync","keywords":[],"dependencies":{"rimraf":"~2.2.5","execSync":"~1.0.0"},"devDependencies":{},"optionalDependencies":{"execSync":"~1.0.0"},"scripts":{"test":"node test/index.js"},"repository":{"type":"git","url":"https://github.com/ForbesLindesay/spawn-sync.git"},"author":{"name":"ForbesLindesay"},"license":"MIT","bugs":{"url":"https://github.com/ForbesLindesay/spawn-sync/issues"},"_id":"spawn-sync@0.0.2","dist":{"shasum":"a59b1a11bb9e64eab34e06491f174977bb022ddc","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/spawn-sync/-/spawn-sync-0.0.2.tgz"},"_from":".","_npmVersion":"1.3.8","_npmUser":{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},"maintainers":[{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"}],"directories":{}},"1.0.0":{"name":"spawn-sync","version":"1.0.0","description":"Prollyfill for child_process.spawnSync","keywords":[],"dependencies":{"rimraf":"~2.2.5","execSync":"~1.0.0"},"devDependencies":{},"optionalDependencies":{"execSync":"~1.0.0"},"scripts":{"test":"node test/index.js"},"repository":{"type":"git","url":"https://github.com/ForbesLindesay/spawn-sync.git"},"author":{"name":"ForbesLindesay"},"license":"MIT","gitHead":"bac66cdfdfade02c0e11f43a9d215a90c6839f74","bugs":{"url":"https://github.com/ForbesLindesay/spawn-sync/issues"},"homepage":"https://github.com/ForbesLindesay/spawn-sync","_id":"spawn-sync@1.0.0","_shasum":"9cb6dda60b47f260797a3db4c775ca01d2e99d27","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"forbeslindesay","email":"forbes@lindeay.co.uk"},"maintainers":[{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"}],"dist":{"shasum":"9cb6dda60b47f260797a3db4c775ca01d2e99d27","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/spawn-sync/-/spawn-sync-1.0.0.tgz"},"directories":{}},"1.0.1":{"name":"spawn-sync","version":"1.0.1","description":"Prollyfill for child_process.spawnSync","keywords":[],"dependencies":{"concat-stream":"^1.4.7","rimraf":"~2.2.5","execSync":"~1.0.0"},"devDependencies":{},"optionalDependencies":{"execSync":"~1.0.0"},"scripts":{"test":"node test/index.js"},"repository":{"type":"git","url":"https://github.com/ForbesLindesay/spawn-sync.git"},"author":{"name":"ForbesLindesay"},"license":"MIT","gitHead":"4243ae7ad3a9b69e3d02b8705d083e8dfae58141","bugs":{"url":"https://github.com/ForbesLindesay/spawn-sync/issues"},"homepage":"https://github.com/ForbesLindesay/spawn-sync","_id":"spawn-sync@1.0.1","_shasum":"724d52493f07aa40382a0ab806259c917ebc83c4","_from":".","_npmVersion":"1.5.0-alpha-4","_npmUser":{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},"maintainers":[{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"}],"dist":{"shasum":"724d52493f07aa40382a0ab806259c917ebc83c4","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/spawn-sync/-/spawn-sync-1.0.1.tgz"},"directories":{}},"1.0.2":{"name":"spawn-sync","version":"1.0.2","description":"Prollyfill for child_process.spawnSync","keywords":[],"dependencies":{"concat-stream":"^1.4.7","rimraf":"~2.2.5","try-thread-sleep":"^1.0.0"},"devDependencies":{},"scripts":{"test":"node test/index.js"},"repository":{"type":"git","url":"https://github.com/ForbesLindesay/spawn-sync.git"},"author":{"name":"ForbesLindesay"},"license":"MIT","gitHead":"d71ce6158049c858d8d42b0e4bf38f541f8451cd","bugs":{"url":"https://github.com/ForbesLindesay/spawn-sync/issues"},"homepage":"https://github.com/ForbesLindesay/spawn-sync","_id":"spawn-sync@1.0.2","_shasum":"67e280288f01540dc5d14aac4e1b400fba19289a","_from":".","_npmVersion":"1.5.0-alpha-4","_npmUser":{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},"maintainers":[{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"}],"dist":{"shasum":"67e280288f01540dc5d14aac4e1b400fba19289a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/spawn-sync/-/spawn-sync-1.0.2.tgz"},"directories":{}},"1.0.3":{"name":"spawn-sync","version":"1.0.3","description":"Prollyfill for child_process.spawnSync","keywords":[],"dependencies":{"concat-stream":"^1.4.7","rimraf":"~2.2.5","try-thread-sleep":"^1.0.0"},"devDependencies":{},"scripts":{"test":"node test/index.js"},"repository":{"type":"git","url":"https://github.com/ForbesLindesay/spawn-sync.git"},"author":{"name":"ForbesLindesay"},"license":"MIT","gitHead":"1284a42a4e2a809d28133698ed5ff49d6e17c105","bugs":{"url":"https://github.com/ForbesLindesay/spawn-sync/issues"},"homepage":"https://github.com/ForbesLindesay/spawn-sync","_id":"spawn-sync@1.0.3","_shasum":"865eb6d4e4f702965281a4e70d34d9c26459f59a","_from":".","_npmVersion":"2.4.1","_nodeVersion":"0.10.28","_npmUser":{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},"maintainers":[{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"}],"dist":{"shasum":"865eb6d4e4f702965281a4e70d34d9c26459f59a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/spawn-sync/-/spawn-sync-1.0.3.tgz"},"directories":{}},"1.0.4":{"name":"spawn-sync","version":"1.0.4","description":"Prollyfill for child_process.spawnSync","keywords":[],"dependencies":{},"devDependencies":{"concat-stream":"^1.4.7","try-thread-sleep":"^1.0.0"},"scripts":{"test":"node test/index.js","postinstall":"node postinstall","prepublish":"node postinstall"},"repository":{"type":"git","url":"https://github.com/ForbesLindesay/spawn-sync.git"},"author":{"name":"ForbesLindesay"},"license":"MIT","gitHead":"389db8d49a6de3db5c67481530f9db2d885e5f99","bugs":{"url":"https://github.com/ForbesLindesay/spawn-sync/issues"},"homepage":"https://github.com/ForbesLindesay/spawn-sync","_id":"spawn-sync@1.0.4","_shasum":"22da1a08d5edc935bf6004038853eeb77c02dce3","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},"maintainers":[{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"}],"dist":{"shasum":"22da1a08d5edc935bf6004038853eeb77c02dce3","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/spawn-sync/-/spawn-sync-1.0.4.tgz"},"directories":{}},"1.0.5":{"name":"spawn-sync","version":"1.0.5","description":"Prollyfill for child_process.spawnSync","keywords":[],"dependencies":{"concat-stream":"^1.4.7"},"devDependencies":{"try-thread-sleep":"^1.0.0"},"scripts":{"test":"node test/index.js","postinstall":"node postinstall","prepublish":"node postinstall"},"repository":{"type":"git","url":"https://github.com/ForbesLindesay/spawn-sync.git"},"author":{"name":"ForbesLindesay"},"license":"MIT","gitHead":"8e1a97b059ce7cb8cff1eba136d21d43747c25d0","bugs":{"url":"https://github.com/ForbesLindesay/spawn-sync/issues"},"homepage":"https://github.com/ForbesLindesay/spawn-sync","_id":"spawn-sync@1.0.5","_shasum":"2198f6ba0ead366b2bcdd14a735c221238882680","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},"maintainers":[{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"}],"dist":{"shasum":"2198f6ba0ead366b2bcdd14a735c221238882680","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/spawn-sync/-/spawn-sync-1.0.5.tgz"},"directories":{}},"1.0.6":{"name":"spawn-sync","version":"1.0.6","description":"Prollyfill for child_process.spawnSync","keywords":[],"dependencies":{"concat-stream":"^1.4.7","os-shim":"^0.1.2"},"devDependencies":{"try-thread-sleep":"^1.0.0"},"scripts":{"test":"node test/index.js","postinstall":"node postinstall","prepublish":"node postinstall"},"repository":{"type":"git","url":"https://github.com/ForbesLindesay/spawn-sync.git"},"author":{"name":"ForbesLindesay"},"license":"MIT","gitHead":"4b05c610656a2e57c1b776b3026eca6e9cdc4cae","bugs":{"url":"https://github.com/ForbesLindesay/spawn-sync/issues"},"homepage":"https://github.com/ForbesLindesay/spawn-sync","_id":"spawn-sync@1.0.6","_shasum":"1b3e207115dfe1f276063c32b85717e01a17d08e","_from":".","_npmVersion":"2.7.1","_nodeVersion":"1.6.2","_npmUser":{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},"maintainers":[{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"}],"dist":{"shasum":"1b3e207115dfe1f276063c32b85717e01a17d08e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/spawn-sync/-/spawn-sync-1.0.6.tgz"},"directories":{}},"1.0.7":{"name":"spawn-sync","version":"1.0.7","description":"Prollyfill for child_process.spawnSync","keywords":[],"dependencies":{"concat-stream":"^1.4.7","os-shim":"^0.1.2"},"devDependencies":{"try-thread-sleep":"^1.0.0"},"scripts":{"test":"node test/index.js","postinstall":"node postinstall","prepublish":"node postinstall"},"repository":{"type":"git","url":"https://github.com/ForbesLindesay/spawn-sync.git"},"author":{"name":"ForbesLindesay"},"license":"MIT","gitHead":"376700342f7ed753222729bbf8dc42e6755cb86c","bugs":{"url":"https://github.com/ForbesLindesay/spawn-sync/issues"},"homepage":"https://github.com/ForbesLindesay/spawn-sync","_id":"spawn-sync@1.0.7","_shasum":"df348ba1f6c19b838e850f2950576a7ada3c12f0","_from":".","_npmVersion":"2.7.1","_nodeVersion":"1.6.2","_npmUser":{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},"maintainers":[{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},{"name":"leobalter","email":"leonardo.balter@gmail.com"}],"dist":{"shasum":"df348ba1f6c19b838e850f2950576a7ada3c12f0","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/spawn-sync/-/spawn-sync-1.0.7.tgz"},"directories":{}},"1.0.8":{"name":"spawn-sync","version":"1.0.8","description":"Prollyfill for child_process.spawnSync","keywords":[],"dependencies":{"concat-stream":"^1.4.7","os-shim":"^0.1.2"},"devDependencies":{"try-thread-sleep":"^1.0.0"},"scripts":{"test":"node test/index.js","postinstall":"node postinstall","prepublish":"node postinstall"},"repository":{"type":"git","url":"https://github.com/ForbesLindesay/spawn-sync.git"},"author":{"name":"ForbesLindesay"},"license":"MIT","gitHead":"204e9d2719b08f4a7bf56bcebbc5489054db8c12","bugs":{"url":"https://github.com/ForbesLindesay/spawn-sync/issues"},"homepage":"https://github.com/ForbesLindesay/spawn-sync","_id":"spawn-sync@1.0.8","_shasum":"5daf0ae45256ab9755de4ac6469e01cb40e9b118","_from":".","_npmVersion":"2.7.1","_nodeVersion":"1.6.2","_npmUser":{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},"maintainers":[{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},{"name":"leobalter","email":"leonardo.balter@gmail.com"}],"dist":{"shasum":"5daf0ae45256ab9755de4ac6469e01cb40e9b118","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/spawn-sync/-/spawn-sync-1.0.8.tgz"},"directories":{}},"1.0.9":{"name":"spawn-sync","version":"1.0.9","description":"Prollyfill for child_process.spawnSync","keywords":[],"dependencies":{"concat-stream":"^1.4.7","os-shim":"^0.1.2"},"devDependencies":{"try-thread-sleep":"^1.0.0"},"scripts":{"test":"node test/index.js","postinstall":"node postinstall","prepublish":"node postinstall"},"repository":{"type":"git","url":"https://github.com/ForbesLindesay/spawn-sync.git"},"author":{"name":"ForbesLindesay"},"license":"MIT","gitHead":"308f844589596950fc43b2699bdd33d79f67bcb4","bugs":{"url":"https://github.com/ForbesLindesay/spawn-sync/issues"},"homepage":"https://github.com/ForbesLindesay/spawn-sync","_id":"spawn-sync@1.0.9","_shasum":"eea29c7f4c66a470152c60ed320a76e4fcd3904d","_from":".","_npmVersion":"2.7.1","_nodeVersion":"1.6.2","_npmUser":{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},"maintainers":[{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},{"name":"leobalter","email":"leonardo.balter@gmail.com"}],"dist":{"shasum":"eea29c7f4c66a470152c60ed320a76e4fcd3904d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/spawn-sync/-/spawn-sync-1.0.9.tgz"},"directories":{}},"1.0.10":{"name":"spawn-sync","version":"1.0.10","description":"Prollyfill for child_process.spawnSync","keywords":[],"dependencies":{"concat-stream":"^1.4.7","os-shim":"^0.1.2"},"devDependencies":{"try-thread-sleep":"^1.0.0"},"scripts":{"test":"node test/index.js","postinstall":"node postinstall","prepublish":"node postinstall"},"repository":{"type":"git","url":"https://github.com/ForbesLindesay/spawn-sync.git"},"author":{"name":"ForbesLindesay"},"license":"MIT","gitHead":"96b5bb7eb76839d7c34a1d156c6bb72887875fa5","bugs":{"url":"https://github.com/ForbesLindesay/spawn-sync/issues"},"homepage":"https://github.com/ForbesLindesay/spawn-sync","_id":"spawn-sync@1.0.10","_shasum":"d86f6a5c543af70228c9977b85e0b979ef9e5ff9","_from":".","_npmVersion":"2.7.1","_nodeVersion":"1.6.2","_npmUser":{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},"maintainers":[{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},{"name":"leobalter","email":"leonardo.balter@gmail.com"}],"dist":{"shasum":"d86f6a5c543af70228c9977b85e0b979ef9e5ff9","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/spawn-sync/-/spawn-sync-1.0.10.tgz"},"directories":{}},"1.0.11":{"name":"spawn-sync","version":"1.0.11","description":"Prollyfill for child_process.spawnSync","keywords":[],"dependencies":{"concat-stream":"^1.4.7","os-shim":"^0.1.2"},"devDependencies":{"try-thread-sleep":"^1.0.0"},"scripts":{"test":"node test/index.js","postinstall":"node postinstall","prepublish":"node postinstall"},"repository":{"type":"git","url":"https://github.com/ForbesLindesay/spawn-sync.git"},"author":{"name":"ForbesLindesay"},"license":"MIT","gitHead":"6b1f01ae0acce0469e85fde4c6114e50e31b9f04","bugs":{"url":"https://github.com/ForbesLindesay/spawn-sync/issues"},"homepage":"https://github.com/ForbesLindesay/spawn-sync","_id":"spawn-sync@1.0.11","_shasum":"85efcb520d13293fbfff5f2b4c952ded32d55b38","_from":".","_npmVersion":"2.7.1","_nodeVersion":"1.6.2","_npmUser":{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},"maintainers":[{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},{"name":"leobalter","email":"leonardo.balter@gmail.com"}],"dist":{"shasum":"85efcb520d13293fbfff5f2b4c952ded32d55b38","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/spawn-sync/-/spawn-sync-1.0.11.tgz"},"directories":{}},"1.0.12":{"name":"spawn-sync","version":"1.0.12","description":"Prollyfill for child_process.spawnSync","keywords":[],"dependencies":{"concat-stream":"^1.4.7","os-shim":"^0.1.2"},"devDependencies":{"try-thread-sleep":"^1.0.0"},"scripts":{"test":"node test/index.js","postinstall":"node postinstall","prepublish":"node postinstall"},"repository":{"type":"git","url":"https://github.com/ForbesLindesay/spawn-sync.git"},"author":{"name":"ForbesLindesay"},"license":"MIT","gitHead":"b0063ee33b17feaa905602f0b2ff72b4acd1bdbb","bugs":{"url":"https://github.com/ForbesLindesay/spawn-sync/issues"},"homepage":"https://github.com/ForbesLindesay/spawn-sync","_id":"spawn-sync@1.0.12","_shasum":"61dc170379756a7d62c227017a0d88d25edc7c2b","_from":".","_npmVersion":"2.7.1","_nodeVersion":"1.6.2","_npmUser":{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},"maintainers":[{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},{"name":"leobalter","email":"leonardo.balter@gmail.com"},{"name":"bengl","email":"bryan@bryanenglish.com"}],"dist":{"shasum":"61dc170379756a7d62c227017a0d88d25edc7c2b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/spawn-sync/-/spawn-sync-1.0.12.tgz"},"directories":{}},"1.0.13":{"name":"spawn-sync","version":"1.0.13","description":"Prollyfill for child_process.spawnSync","keywords":[],"dependencies":{"concat-stream":"^1.4.7","os-shim":"^0.1.2"},"devDependencies":{"try-thread-sleep":"^1.0.0"},"scripts":{"test":"node test/index.js","postinstall":"node postinstall","prepublish":"node postinstall"},"repository":{"type":"git","url":"https://github.com/ForbesLindesay/spawn-sync.git"},"author":{"name":"ForbesLindesay"},"license":"MIT","gitHead":"5b3e144abb8d9139d985a7fc676a3bcdca9c3485","bugs":{"url":"https://github.com/ForbesLindesay/spawn-sync/issues"},"homepage":"https://github.com/ForbesLindesay/spawn-sync","_id":"spawn-sync@1.0.13","_shasum":"904091b9ad48a0f3afb0e84752154c01e82fd8d8","_from":".","_npmVersion":"2.7.1","_nodeVersion":"1.6.2","_npmUser":{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},"maintainers":[{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},{"name":"leobalter","email":"leonardo.balter@gmail.com"},{"name":"bengl","email":"bryan@bryanenglish.com"}],"dist":{"shasum":"904091b9ad48a0f3afb0e84752154c01e82fd8d8","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/spawn-sync/-/spawn-sync-1.0.13.tgz"},"directories":{}},"1.0.14":{"name":"spawn-sync","version":"1.0.14","description":"Prollyfill for child_process.spawnSync","keywords":[],"dependencies":{"concat-stream":"^1.4.7","os-shim":"^0.1.2"},"devDependencies":{"try-thread-sleep":"^1.0.0"},"scripts":{"test":"node test/index.js","postinstall":"node postinstall","prepublish":"node postinstall"},"repository":{"type":"git","url":"https://github.com/ForbesLindesay/spawn-sync.git"},"author":{"name":"ForbesLindesay"},"license":"MIT","gitHead":"c26fb8d91bbdc21ff2856de8cf327d5c9e6e71d8","bugs":{"url":"https://github.com/ForbesLindesay/spawn-sync/issues"},"homepage":"https://github.com/ForbesLindesay/spawn-sync","_id":"spawn-sync@1.0.14","_shasum":"a69d6ad2bbdbdb74bd5506c9fb0549cc74ab9cbe","_from":".","_npmVersion":"2.7.1","_nodeVersion":"1.6.2","_npmUser":{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},"dist":{"shasum":"a69d6ad2bbdbdb74bd5506c9fb0549cc74ab9cbe","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/spawn-sync/-/spawn-sync-1.0.14.tgz"},"maintainers":[{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},{"name":"leobalter","email":"leonardo.balter@gmail.com"},{"name":"bengl","email":"bryan@bryanenglish.com"}],"directories":{}},"1.0.15":{"name":"spawn-sync","version":"1.0.15","description":"Prollyfill for child_process.spawnSync","keywords":[],"dependencies":{"concat-stream":"^1.4.7","os-shim":"^0.1.2"},"devDependencies":{"try-thread-sleep":"^1.0.0"},"scripts":{"test":"node test/index.js","postinstall":"node postinstall","prepublish":"node postinstall"},"repository":{"type":"git","url":"git+https://github.com/ForbesLindesay/spawn-sync.git"},"author":{"name":"ForbesLindesay"},"license":"MIT","gitHead":"f04f41279b2e02915460a86c9dd538501804af5f","bugs":{"url":"https://github.com/ForbesLindesay/spawn-sync/issues"},"homepage":"https://github.com/ForbesLindesay/spawn-sync#readme","_id":"spawn-sync@1.0.15","_shasum":"b00799557eb7fb0c8376c29d44e8a1ea67e57476","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.2.0","_npmUser":{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},"maintainers":[{"name":"forbeslindesay","email":"forbes@lindesay.co.uk"},{"name":"leobalter","email":"leonardo.balter@gmail.com"},{"name":"bengl","email":"bryan@bryanenglish.com"}],"dist":{"shasum":"b00799557eb7fb0c8376c29d44e8a1ea67e57476","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/spawn-sync/-/spawn-sync-1.0.15.tgz"},"directories":{}}},"name":"spawn-sync","time":{"modified":"2016-11-01T17:18:14.404Z","created":"2014-01-11T02:37:25.402Z","0.0.0":"2014-01-11T02:37:25.402Z","0.0.2":"2014-01-11T03:40:38.322Z","1.0.0":"2014-08-04T09:29:01.501Z","1.0.1":"2014-12-17T19:01:39.188Z","1.0.2":"2015-01-15T06:09:01.408Z","1.0.3":"2015-02-05T00:06:44.519Z","1.0.4":"2015-02-11T13:36:11.978Z","1.0.5":"2015-02-16T09:05:14.695Z","1.0.6":"2015-04-10T01:14:15.314Z","1.0.7":"2015-05-13T09:28:58.317Z","1.0.8":"2015-05-13T10:17:38.540Z","1.0.9":"2015-05-13T16:30:43.855Z","1.0.10":"2015-05-13T16:53:56.747Z","1.0.11":"2015-05-14T11:01:47.832Z","1.0.12":"2015-07-16T16:36:33.635Z","1.0.13":"2015-07-16T16:49:41.711Z","1.0.14":"2015-10-30T12:14:54.540Z","1.0.15":"2016-01-03T15:04:43.341Z"},"readmeFilename":"README.md","homepage":"https://github.com/ForbesLindesay/spawn-sync#readme"}