{"_id":"ship","_rev":"52-2dd78742288cbbc57d011d7b58ab2b0b","name":"ship","time":{"modified":"2022-06-26T18:54:56.118Z","created":"2011-01-13T19:00:15.890Z","0.0.1":"2011-01-13T19:00:16.565Z","0.0.1-beta1":"2013-11-20T16:33:32.237Z","0.0.1-beta2":"2013-12-02T22:23:22.704Z","0.0.1-beta3":"2013-12-13T20:28:37.452Z","0.0.2":"2014-02-21T21:26:17.151Z","0.1.0":"2014-07-23T17:10:32.926Z","0.1.1":"2014-08-26T21:56:54.954Z","0.1.2":"2014-09-16T19:02:14.607Z","0.1.3":"2014-09-18T15:03:23.978Z","0.1.4":"2014-10-10T18:18:38.515Z","0.2.0":"2014-11-05T20:55:47.319Z","0.2.1":"2014-11-14T23:07:55.085Z","0.2.2":"2015-02-02T20:30:26.924Z","0.2.3":"2015-02-03T15:27:24.084Z","0.2.4":"2015-02-20T16:23:16.348Z","0.2.5":"2015-08-27T20:56:55.540Z"},"description":"multi-platform deployment with node","readme":"Ship\n----\n\n[![npm](http://img.shields.io/npm/v/ship.svg?style=flat)](https://badge.fury.io/js/ship) [![tests](http://img.shields.io/travis/carrot/ship/master.svg?style=flat)](https://travis-ci.org/carrot/ship) [![coverage](http://img.shields.io/coveralls/carrot/ship.svg?style=flat)](https://coveralls.io/r/carrot/ship) [![dependencies](http://img.shields.io/gemnasium/carrot/ship.svg?style=flat)](https://gemnasium.com/carrot/ship)\n\nMulti-platform deployment with node.\n\n> **Note:** This project is in early development, and versioning is a little different. [Read this](http://markup.im/#q4_cRZ1Q) for more details.\n\n### Why should you care?\n\nIf you often need to deploy files quickly to bunch of different platforms, or you have an app or library written in node and would like to give your users the ability to deploy files to a variety of platforms, ship is probably what you are looking for.\n\nShip is small library that deploys files smoothly to the platforms listed below:\n\n- [Amazon S3](lib/deployers/s3)\n- [Heroku](lib/deployers/heroku)\n- [Github Pages](lib/deployers/gh-pages)\n- [Bitballoon](lib/deployers/bitballoon)\n- [Netlify](lib/deployers/netlify)\n\nAnd many more coming soon, like:\n- Linux VPS\n- FTP\n- Divshot\n- Tumblr\n- Dropbox\n- SiteLeaf\n- Email\n\nShip is also built on the adapter pattern, so if there's another platforms you'd like to deploy to, the project structure is easy to understand, and you can write a deployer, send a pull request, and we'd be happy to include it.\n\n### Installation\n\n`npm install ship -g`\n\n### Usage\n\nIf you are using ship directly for your own deployments, its primary interface is through the command line. If you'd like to integrate it into your node app, skip to the section below on the [javascript API](#javascript-api).\n\nThe command line interface is simple -- just follow the format below\n\n```\nship /path/to/folder -to deployer-name\n```\n\nFor example, if I wanted to ship my desktop via s3 to my server (why? no idea), I could run `ship /Users/jeff/Desktop -to s3`. Ship would then prompt me for authentication details if needed, and send the files off to their destination. It will also place a file called `ship.conf` in the root of the folder you shipped, and if you have a gitignore, add it to your gitignore because you don't want to commit your sensitive information. Next time you ship it, you won't need to enter your details because they are already saved to that file.\n\nAfter the first time running `ship` on a folder, you can skip the deployer name if you'd like to deploy to the same target. If you have deployed the same folder to multiple targets and you run it without the deployer argument, ship will deploy to all targets.\n\nFinally, if you are inside the folder you want to deploy, you can run ship without the path argument. If you name your folder the same thing as one of the deployers, things will get confused, so don't do that please.\n\nAvailable deployers are as such (linked to the documentation for authentication details, if needed):\n\n- [Amazon S3](lib/deployers/s3) - `s3`\n- [Github Pages](lib/deployers/gh-pages) - `gh-pages`\n- [Heroku](lib/deployers/heroku) - `heroku`\n- [Bitballoon](lib/deployers/bitballoon) - `bitballoon`\n- [Netlify](lib/deployers/netlify) - `netlify`\n\n### ship.conf\n\nThis is a simple file used by ship to hold on to config values for various platforms. It's a yaml file and is quite straightforward. An example might look like this, if it was configured for amazon s3.\n\n```\ns3:\n  access_key: 'xxxx'\n  secret_key: 'xxxx'\n```\n\nIf there are other network configs, they appear namespaced under the deployer name in a similar manner.\n\nIf you want to deploy to multiple environments, you can do this. Just drop an environment name after \"ship\" and before \".conf\" like this: `ship.staging.conf`, and provide the environment in your command, like this `ship -e staging`, and ship will look for the appropriate environment file and use that.\n\nFinally, some deployers support built in 'ignores'. If you'd like to ignore a file or folder from the deploy process, just add an `ignore` array to the `ship.conf` file and fill it with [minimatch](https://github.com/isaacs/minimatch)-compatible strings. Any deployer that supports ignores will automatically ignore `ship*.conf` because you do not want to deploy that file, ever.\n\n### Javascript API\n\nThe interface is fairly straightforward. An example is below. Please note that this is not a working example to be pasted into your project, it's a walkthrough of the public API at a high level.\n\n```js\n// First thing's first, let's create a new instance of Ship with the deployer we\n// want to deploy with and the folder we want to be deployed.\n\nvar Ship = require('ship');\nvar project = new Ship({ root: 'path/to/folder', deployer: 's3' });\n\n// First, you might want to make sure the deployer has been configured. This\n// means that either there's a yaml file at the project root called `ship.conf`\n// with the relevant config details for that deployer, or you have manually\n// configured the instance. You can quickly check whether the deployer has been\n// configured or not as such:\n\nproject.is_configured(); // returns a boolean\n\n// If the deployer has been configured already as indicated above, you can skip\n// the part below discussing manual configuration. If it has not however, you\n// need to manually configure the deployer. You can do this by calling\n// `configure` directly with the config values as such:\n\nproject.configure({ token: 'xxxx', secret: 'xxxx' });\n\n// Or you can use ship's command line prompt to collect the info. This method is\n// async and returns a promise.\n\nproject.config_prompt()\n  .then(function(){ console.log('configured!'); });\n\n// You might want to write the details to a `ship.conf` file once they have been\n// collected so you don't need to continually input them. A convenience method\n// will do this for you quickly, and try to add `ship.conf` to a `.gitignore` if\n// there is one present, since you don't want to deploy or push it.\n\nproject.write_config();\n\n// To actually deploy, just call project.deploy(). This returns a promise so\n// you know when it's done. It also emits progress events along the way, since\n// some deployments take a while and you might want to keep track of progress.\n\n// If you want to deploy a directory different than the root you passed to the\n// ship constructor, pass the path in as an argument to the deploy function. If\n// you don't it will just deploy the root passed to the constructor.\n\nproject.deploy('path/to/folder/public')\n  .progress(console.log.bind(console))\n  .done(function(res){\n    console.log('successfully deployed!');\n    console.log(res);\n  }, function(err){\n    console.log('there was an error : (');\n    console.log(err);\n  });\n\n// The response returned by the deployer contains as much useful information as\n// possible. If possible, it will contain a `url`, so you can open up the site\n// and check it on the spot. Each deployer has a slightly different response,\n// you can find more specific details in that deployer's docs.\n```\n\nSo in summary, require `ship`, initialize it with a folder and deployer, make sure it's configured, run `deploy`, then celebrate great success!\n\n### License & Contributing\n\nShip is licensed under [MIT](license.md). See [contributing.md](contributing.md) for more information on contributing to ship.\n","maintainers":[{"name":"jescalan","email":"npm.je@mailhero.io"},{"name":"kylemac","email":"kyle@carrotcreative.com"}],"dist-tags":{"latest":"0.2.5"},"versions":{"0.0.2":{"name":"ship","preferGlobal":true,"version":"0.0.2","author":{"name":"Carrot Creative","email":"dev@carrotcreative.com"},"description":"multi-platform deployment with node","keywords":["deploy","ship","shipit"],"bin":{"ship":"./bin/ship"},"main":"./lib","repository":{"type":"git","url":"https://github.com/carrot/ship.git"},"dependencies":{"optimist":"0.6.x","coffee-script":"1.7.x","js-yaml":"2.x.x","colors":"0.6.x","indx":"0.0.x","async":"0.2.x","prompt":"0.2.x","ftp":"0.3.x","readdirp":"0.x.x","dbox":"0.6.x","semver":"2.x.x","open":"0.0.x","mime":"1.x.x","ssh2":"0.2.x","when":"2.x.x","aws-sdk":"1.x.x","minimatch":"0.2.x","lodash":"2.x.x","shelljs":"0.2.6"},"devDependencies":{"mocha":"*","should":"*","request":"*"},"bugs":{"url":"https://github.com/carrot/ship/issues"},"homepage":"https://github.com/carrot/ship","_id":"ship@0.0.2","dist":{"shasum":"63185a4db2ac1fa2f2f45843a86ea1bf35c36e61","tarball":"https://registry.npmjs.org/ship/-/ship-0.0.2.tgz","integrity":"sha512-4sG3pJk4p7ShkOhlz6nF1G+qYo3Q0rRQoZKijoGFvWLnkg1erD3jb+9CE7L2QrnyOiKtPUXUdYp7oFPfnZW4tQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDfAs3LtmiRvNhnPu0l0z+Kb5vkjN3BvCQuNNgLv5juWAiBHrkoi7AgEAwhG7r5qExSfGIsmLeqcgt1BVtyYD7EB/w=="}]},"_from":".","_npmVersion":"1.3.24","_npmUser":{"name":"jenius","email":"hello@jenius.me"},"maintainers":[{"name":"jenius","email":"hello@jenius.me"}]},"0.1.0":{"name":"ship","preferGlobal":true,"version":"0.1.0","author":{"name":"Carrot Creative","email":"dev@carrotcreative.com"},"description":"multi-platform deployment with node","keywords":["deploy","ship","shipit"],"bin":{"ship":"bin/ship"},"main":"lib","repository":{"type":"git","url":"https://github.com/carrot/ship.git"},"dependencies":{"argparse":"0.1.x","aws-sdk":"2.x","coffee-script":"1.7.x","colors":"0.6.x","file-map":"0.0.1","fstream":"0.1.x","ftp":"0.3.x","github":"0.2.x","heroku-client":"1.5.x","indx":"0.1.x","inquirer":"0.5.x","js-yaml":"3.x","lodash":"2.x","mime":"1.x","minimatch":"0.4.x","open":"0.0.5","optimist":"0.6.x","readdirp":"1.x","request":"2.x","ssh2":"0.3.x","tar":"0.1.x","update-notifier":"0.2.x","when":"3.x"},"devDependencies":{"chai":"1.x","chai-as-promised":"4.x","coffeelint":"*","coveralls":"*","istanbul":"*","mocha":"*","mocha-lcov-reporter":"*","mockery":"1.x","request":"*","sinon":"1.x","sinon-chai":"2.x"},"scripts":{"test":"npm run lint && mocha","lint":"find lib/ -name '*.coffee' | xargs coffeelint","coverage":"make build; istanbul cover _mocha --report html -- -R spec && open coverage/index.html && make unbuild","coveralls":"make build; istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage; make unbuild","encrypt":"./encrypt-config.sh"},"bugs":{"url":"https://github.com/carrot/ship/issues"},"homepage":"https://github.com/carrot/ship","_id":"ship@0.1.0","_shasum":"ab4a7b89f6e456b092203c9c4f56c4460543144e","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"jenius","email":"hello@jenius.me"},"maintainers":[{"name":"jenius","email":"hello@jenius.me"}],"dist":{"shasum":"ab4a7b89f6e456b092203c9c4f56c4460543144e","tarball":"https://registry.npmjs.org/ship/-/ship-0.1.0.tgz","integrity":"sha512-gyrOnji9yJ3ffWm5DmTM1T80mOXM+MVzDrXkKZy1aW8NEYuUZp2/bvhHV+IdGkdB/s4uufzrNvAXsI37yAKU+A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDDG3H76Jzj45xbfqbwafryjGihakdL7fdhY/bf22IGuwIhANH6AipXyPcPDXmr9KgVIi+652RpweavIfZLL8tElyEU"}]}},"0.1.1":{"name":"ship","preferGlobal":true,"version":"0.1.1","author":{"name":"Carrot Creative","email":"dev@carrotcreative.com"},"description":"multi-platform deployment with node","keywords":["deploy","ship","shipit"],"bin":{"ship":"bin/ship"},"main":"lib","repository":{"type":"git","url":"https://github.com/carrot/ship.git"},"dependencies":{"argparse":"0.1.x","aws-sdk":"2.x","coffee-script":"1.7.x","colors":"0.6.x","file-map":"0.0.1","fstream":"0.1.x","ftp":"0.3.x","github":"git://github.com/jenius/node-github.git#create-blob-content","heroku-client":"1.5.x","indx":"0.2.x","inquirer":"0.5.x","js-yaml":"3.x","lodash":"2.x","mime":"1.x","minimatch":"0.4.x","open":"0.0.5","optimist":"0.6.x","readdirp":"1.x","request":"2.x","ssh2":"0.3.x","tar":"0.1.x","update-notifier":"0.2.x","when":"3.x"},"devDependencies":{"chai":"1.x","chai-as-promised":"4.x","coffeelint":"1.x","coveralls":"2.x","istanbul":"0.3.x","mocha":"1.x","mocha-lcov-reporter":"0.0.1","mockery":"1.x","sinon":"1.x","sinon-chai":"2.x"},"scripts":{"test":"npm run lint && mocha","lint":"find lib/ -name '*.coffee' | xargs coffeelint","coverage":"make build; istanbul cover _mocha --report html -- -R spec && open coverage/index.html && make unbuild","coveralls":"make build; istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage; make unbuild","encrypt":"./encrypt-config.sh"},"bugs":{"url":"https://github.com/carrot/ship/issues"},"homepage":"https://github.com/carrot/ship","_id":"ship@0.1.1","_shasum":"5b027e35d90646b5c8ba4ab378bf4aa927adc07e","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"jenius","email":"hello@jenius.me"},"maintainers":[{"name":"jenius","email":"hello@jenius.me"}],"dist":{"shasum":"5b027e35d90646b5c8ba4ab378bf4aa927adc07e","tarball":"https://registry.npmjs.org/ship/-/ship-0.1.1.tgz","integrity":"sha512-GBnf7g7eLFEfut9vWhYXRkJgds/YYrBwQJgOcj9HlXQVDs7JLz/lb0vIPN+Uq3CJdgLLGPuhbTKB/u2LxzcaUg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICfznWJZ1j7q7BGHWOaN4IUhTZyQHDUfqInGEF4+4AQoAiEAoaQnjpy2VBuIL3OETI0yNZ/QV2wVbPtJfZ+l0ARM0ZA="}]}},"0.1.2":{"name":"ship","preferGlobal":true,"version":"0.1.2","author":{"name":"Carrot Creative","email":"dev@carrotcreative.com"},"description":"multi-platform deployment with node","keywords":["deploy","ship","shipit"],"bin":{"ship":"bin/ship"},"main":"lib","repository":{"type":"git","url":"https://github.com/carrot/ship.git"},"dependencies":{"argparse":"0.1.x","aws-sdk":"2.x","coffee-script":"1.7.x","colors":"0.6.x","file-map":"0.0.1","fstream":"0.1.x","ftp":"0.3.x","github":"git://github.com/jenius/node-github.git#create-blob-content","heroku-client":"1.5.x","indx":"0.2.x","inquirer":"0.5.x","js-yaml":"3.x","lodash":"2.x","mime":"1.x","minimatch":"0.4.x","open":"0.0.5","optimist":"0.6.x","readdirp":"1.x","request":"2.x","ssh2":"0.3.x","tar":"0.1.x","update-notifier":"0.2.x","when":"3.x"},"devDependencies":{"chai":"1.x","chai-as-promised":"4.x","coffeelint":"1.x","coveralls":"2.x","istanbul":"0.3.x","mocha":"1.x","mocha-lcov-reporter":"0.0.1","mockery":"1.x","sinon":"1.x","sinon-chai":"2.x"},"scripts":{"test":"npm run lint && mocha","lint":"find lib/ -name '*.coffee' | xargs coffeelint","coverage":"make build; istanbul cover _mocha --report html -- -R spec && open coverage/index.html && make unbuild","coveralls":"make build; istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage; make unbuild","encrypt":"./encrypt-config.sh"},"bugs":{"url":"https://github.com/carrot/ship/issues"},"homepage":"https://github.com/carrot/ship","_id":"ship@0.1.2","_shasum":"4bb852b0b8863edf875d4239c0374e76aa043105","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"jenius","email":"hello@jenius.me"},"maintainers":[{"name":"jenius","email":"hello@jenius.me"}],"dist":{"shasum":"4bb852b0b8863edf875d4239c0374e76aa043105","tarball":"https://registry.npmjs.org/ship/-/ship-0.1.2.tgz","integrity":"sha512-tUSZMaOY5DwL/uAZz7E0ByjlhH0kzaLcHSN+jDOdc3LcH+ws++7ZHqxJ9ls/oWyW5oGFTylpHroadBbGpdY6pw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIB8L0q5Lj906pl0G0DsRpHF2py/77ntOq4uzBBge/ye/AiBtGNiXV48OehuZYynuLga5H7QUjCfSYGy7oxX6TCkNLg=="}]}},"0.1.3":{"name":"ship","preferGlobal":true,"version":"0.1.3","author":{"name":"Carrot Creative","email":"dev@carrotcreative.com"},"description":"multi-platform deployment with node","keywords":["deploy","ship","shipit"],"bin":{"ship":"bin/ship"},"main":"lib","repository":{"type":"git","url":"https://github.com/carrot/ship.git"},"dependencies":{"argparse":"0.1.x","aws-sdk":"2.x","coffee-script":"1.7.x","colors":"0.6.x","file-map":"0.0.1","fstream":"0.1.x","ftp":"0.3.x","github":"git://github.com/jenius/node-github.git#create-blob-content","heroku-client":"1.5.x","indx":"0.2.x","inquirer":"0.5.x","js-yaml":"3.x","lodash":"2.x","mime":"1.x","minimatch":"0.4.x","open":"0.0.5","optimist":"0.6.x","readdirp":"1.x","request":"2.x","ssh2":"0.3.x","tar":"0.1.x","update-notifier":"0.2.x","when":"3.x"},"devDependencies":{"chai":"1.x","chai-as-promised":"4.x","coffeelint":"1.x","coveralls":"2.x","istanbul":"0.3.x","mocha":"1.x","mocha-lcov-reporter":"0.0.1","mockery":"1.x","sinon":"1.x","sinon-chai":"2.x"},"scripts":{"test":"npm run lint && mocha","lint":"find lib/ -name '*.coffee' | xargs coffeelint","coverage":"make build; istanbul cover _mocha --report html -- -R spec && open coverage/index.html && make unbuild","coveralls":"make build; istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage; make unbuild","encrypt":"./encrypt-config.sh"},"bugs":{"url":"https://github.com/carrot/ship/issues"},"homepage":"https://github.com/carrot/ship","_id":"ship@0.1.3","_shasum":"0e36207138a6985606ea46b9e37beb009ee92c63","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"jenius","email":"hello@jenius.me"},"maintainers":[{"name":"jenius","email":"hello@jenius.me"}],"dist":{"shasum":"0e36207138a6985606ea46b9e37beb009ee92c63","tarball":"https://registry.npmjs.org/ship/-/ship-0.1.3.tgz","integrity":"sha512-hpW2ZUJVc7TklPB17kzfgduOoqmiEYie7zVdKRxyZPfWpL3sU2IpaOtPbc5NzdBrDyFF89l2im5Y5HgJT5Nk7A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDBeN7MTkAWN5ewo1jV9N9S4jUhcl6mPy/xWce4z8Es4gIhAKCX6PRqiIYQhVOKe80Tmcsio6G5fW+asineruCh46Vh"}]}},"0.1.4":{"name":"ship","preferGlobal":true,"version":"0.1.4","author":{"name":"Carrot Creative","email":"dev@carrotcreative.com"},"description":"multi-platform deployment with node","keywords":["deploy","ship","shipit"],"bin":{"ship":"bin/ship"},"main":"lib","repository":{"type":"git","url":"https://github.com/carrot/ship.git"},"dependencies":{"argparse":"0.1.x","aws-sdk":"2.x","coffee-script":"1.8.x","colors":"1.x","file-map":"0.0.1","fstream":"1.x","ftp":"0.3.x","github":"git://github.com/jenius/node-github.git#create-blob-content","heroku-client":"1.5.x","indx":"0.2.x","inquirer":"0.8.x","js-yaml":"3.x","lodash":"2.x","mime":"1.x","minimatch":"1.x","open":"0.0.5","optimist":"0.6.x","readdirp":"1.x","request":"2.x","ssh2":"0.3.x","tar":"1.x","update-notifier":"0.2.x","when":"3.x"},"devDependencies":{"chai":"1.x","chai-as-promised":"4.x","coffeelint":"1.x","coveralls":"2.x","istanbul":"0.3.x","mocha":"1.x","mocha-lcov-reporter":"0.0.1","mockery":"1.x","sinon":"1.x","sinon-chai":"2.x"},"scripts":{"test":"npm run lint && mocha","lint":"find lib/ -name '*.coffee' | xargs coffeelint","coverage":"make build; istanbul cover _mocha --report html -- -R spec && open coverage/index.html && make unbuild","coveralls":"make build; istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage; make unbuild","encrypt":"./encrypt-config.sh"},"bugs":{"url":"https://github.com/carrot/ship/issues"},"homepage":"https://github.com/carrot/ship","_id":"ship@0.1.4","_shasum":"de440ab0493d5f5856f783f9428697940ad29a9d","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"jenius","email":"hello@jenius.me"},"maintainers":[{"name":"jenius","email":"hello@jenius.me"}],"dist":{"shasum":"de440ab0493d5f5856f783f9428697940ad29a9d","tarball":"https://registry.npmjs.org/ship/-/ship-0.1.4.tgz","integrity":"sha512-Fg7E+WksDXK+GrDNCkUpFKRrPUTKL939t4/x07K9YlGhw+iWoqnOtchcGy0neyB2ZjBMcJmkw49/yVFn/Iqo9Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCuxwhBGYH180pgekVQYAKikPnavXDt1LzedPpsWbKBjwIgHYGKWMytTv86BPI54k8h+S02UyPHwfwAXlLmeIQIyT8="}]}},"0.2.0":{"name":"ship","preferGlobal":true,"version":"0.2.0","author":{"name":"Carrot Creative","email":"dev@carrotcreative.com"},"description":"multi-platform deployment with node","keywords":["deploy","ship","shipit"],"bin":{"ship":"bin/ship"},"main":"lib","repository":{"type":"git","url":"https://github.com/carrot/ship.git"},"dependencies":{"argparse":"0.1.x","aws-sdk":"2.x","bitballoon":"0.2.x","coffee-script":"1.8.x","colors":"1.x","file-map":"0.0.1","fstream":"1.x","ftp":"0.3.x","github":"git://github.com/jenius/node-github.git#create-blob-content","heroku-client":"1.5.x","indx":"0.2.x","inquirer":"0.8.x","js-yaml":"3.x","lodash":"2.x","mime":"1.x","minimatch":"1.x","open":"0.0.5","optimist":"0.6.x","readdirp":"1.x","request":"2.x","ssh2":"0.3.x","tar":"1.x","update-notifier":"0.2.x","when":"3.x"},"devDependencies":{"chai":"1.x","chai-as-promised":"4.x","coffeelint":"1.x","coveralls":"2.x","istanbul":"0.3.x","mocha":"1.x","mocha-lcov-reporter":"0.0.1","mockery":"1.x","sinon":"1.x","sinon-chai":"2.x"},"scripts":{"test":"npm run lint && mocha","lint":"find lib/ -name '*.coffee' | xargs coffeelint","coverage":"make build; istanbul cover _mocha --report html -- -R spec && open coverage/index.html && make unbuild","coveralls":"make build; istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage; make unbuild","encrypt":"./encrypt-config.sh"},"bugs":{"url":"https://github.com/carrot/ship/issues"},"homepage":"https://github.com/carrot/ship","_id":"ship@0.2.0","_shasum":"c269eae93e3f8dd42002ca2844079a1b3a973bbf","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"jenius","email":"hello@jenius.me"},"maintainers":[{"name":"jenius","email":"hello@jenius.me"}],"dist":{"shasum":"c269eae93e3f8dd42002ca2844079a1b3a973bbf","tarball":"https://registry.npmjs.org/ship/-/ship-0.2.0.tgz","integrity":"sha512-yVFFAyLbOUaJC2gnuAFOGc/a5ARzLbSBB3/lr0QiE7qulMcTp1k+HkjGdNLFrqs8ol/kLqrR2/zN3yXBM8WWeQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICTVAHZNaxeECat8O6URoEYLCQq7+YbpWBC39OZkVWe8AiEAnwifik6/4g3h/NrEBrEdO8Su8Dhax8k0jJr+wDTDIdA="}]}},"0.2.1":{"name":"ship","preferGlobal":true,"version":"0.2.1","author":{"name":"Carrot Creative","email":"dev@carrotcreative.com"},"description":"multi-platform deployment with node","keywords":["deploy","ship","shipit"],"bin":{"ship":"bin/ship"},"main":"lib","repository":{"type":"git","url":"https://github.com/carrot/ship.git"},"dependencies":{"argparse":"0.1.x","aws-sdk":"2.x","bitballoon":"0.2.x","coffee-script":"1.8.x","colors":"1.x","file-map":"0.0.1","fstream":"1.x","ftp":"0.3.x","github":"git://github.com/jenius/node-github.git#create-blob-content","heroku-client":"1.5.x","indx":"0.2.x","inquirer":"0.8.x","js-yaml":"3.x","lodash":"2.x","mime":"1.x","minimatch":"1.x","netlify":"0.2.x","open":"0.0.5","optimist":"0.6.x","readdirp":"1.x","request":"2.x","ssh2":"0.3.x","tar":"1.x","update-notifier":"0.2.x","when":"3.x"},"devDependencies":{"chai":"1.x","chai-as-promised":"4.x","coffeelint":"1.x","coveralls":"2.x","istanbul":"0.3.x","mocha":"1.x","mocha-lcov-reporter":"0.0.1","mockery":"1.x","sinon":"1.x","sinon-chai":"2.x"},"scripts":{"test":"npm run lint && mocha","lint":"find lib/ -name '*.coffee' | xargs coffeelint","coverage":"make build; istanbul cover _mocha --report html -- -R spec && open coverage/index.html && make unbuild","coveralls":"make build; istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage; make unbuild","encrypt":"./encrypt-config.sh"},"bugs":{"url":"https://github.com/carrot/ship/issues"},"homepage":"https://github.com/carrot/ship","_id":"ship@0.2.1","_shasum":"637c181c3c898e1f785fdac703bc492f057ba104","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"jenius","email":"hello@jenius.me"},"maintainers":[{"name":"jenius","email":"hello@jenius.me"}],"dist":{"shasum":"637c181c3c898e1f785fdac703bc492f057ba104","tarball":"https://registry.npmjs.org/ship/-/ship-0.2.1.tgz","integrity":"sha512-FlayV77ceG2q7gDWh6kFTLo05VOv4ccpcc1JnV3ks/SgxIxD6D11o5RlwtFRIMUj+DGC6o7CEk3/RxFMrI55Cw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEFgGRE3nAPZ1YlEOPPMrZmw6oaQnH4T1SiCPV1myY5vAiEAkUl6MFo6lWBRVyiRIJLtOycyV5grwSPrNBZi4NwmPEI="}]}},"0.2.2":{"name":"ship","preferGlobal":true,"version":"0.2.2","author":{"name":"Carrot Creative","email":"dev@carrotcreative.com"},"description":"multi-platform deployment with node","keywords":["deploy","ship","shipit"],"bin":{"ship":"bin/ship"},"main":"lib","repository":{"type":"git","url":"https://github.com/carrot/ship.git"},"dependencies":{"argparse":"0.1.x","aws-sdk":"2.x","bitballoon":"0.2.x","coffee-script":"1.8.x","colors":"1.x","file-map":"0.0.1","fstream":"1.x","ftp":"0.3.x","github":"git://github.com/jenius/node-github.git#create-blob-content","heroku-client":"1.5.x","indx":"0.2.x","inquirer":"0.8.x","js-yaml":"3.x","lodash":"2.x","mime":"1.x","minimatch":"1.x","netlify":"0.2.x","open":"0.0.5","optimist":"0.6.x","readdirp":"1.x","request":"2.x","ssh2":"0.3.x","tar":"1.x","update-notifier":"0.2.x","when":"3.x"},"devDependencies":{"chai":"1.x","chai-as-promised":"4.x","coffeelint":"1.x","coveralls":"2.x","istanbul":"0.3.x","mocha":"1.x","mocha-lcov-reporter":"0.0.1","mockery":"1.x","sinon":"1.x","sinon-chai":"2.x"},"scripts":{"test":"npm run lint && mocha","lint":"find lib/ -name '*.coffee' | xargs coffeelint","coverage":"make build; istanbul cover _mocha --report html -- -R spec && open coverage/index.html && make unbuild","coveralls":"make build; istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage; make unbuild","encrypt":"./encrypt-config.sh"},"gitHead":"10988da1bb6ac248e57119ed64295d7216cedb75","bugs":{"url":"https://github.com/carrot/ship/issues"},"homepage":"https://github.com/carrot/ship","_id":"ship@0.2.2","_shasum":"68ab5ea6e2b5183e27bae81fe3399a6f2bd16cb9","_from":".","_npmVersion":"2.4.1","_nodeVersion":"0.10.36","_npmUser":{"name":"jenius","email":"hello@jenius.me"},"maintainers":[{"name":"jenius","email":"hello@jenius.me"}],"dist":{"shasum":"68ab5ea6e2b5183e27bae81fe3399a6f2bd16cb9","tarball":"https://registry.npmjs.org/ship/-/ship-0.2.2.tgz","integrity":"sha512-mIaAJ4+qB7cQwlQiS8mitWrwQ2vc6P6tZzyzFScGAnQsWZ38msg1zSTiUg0Ih78cVYenco1CnylE2kHFXx53qA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDwUL4xHzSkb0cYDT7p3jtTBLbE1gHiCnRLGhW8YzkctwIhAJ5alijJ38DgKTyVqbt6wuq+Daxn2imachu6h3YTzK2z"}]}},"0.2.3":{"name":"ship","preferGlobal":true,"version":"0.2.3","author":{"name":"Carrot Creative","email":"dev@carrotcreative.com"},"description":"multi-platform deployment with node","keywords":["deploy","ship","shipit"],"bin":{"ship":"bin/ship"},"main":"lib","repository":{"type":"git","url":"https://github.com/carrot/ship.git"},"dependencies":{"argparse":"0.1.x","aws-sdk":"2.x","bitballoon":"0.2.x","coffee-script":"1.8.x","colors":"1.x","file-map":"0.0.1","fstream":"1.x","ftp":"0.3.x","github":"git://github.com/jenius/node-github.git#create-blob-content","heroku-client":"1.5.x","indx":"0.2.x","inquirer":"0.8.x","js-yaml":"3.x","lodash":"2.x","mime":"1.x","minimatch":"1.x","netlify":"0.2.x","open":"0.0.5","optimist":"0.6.x","readdirp":"1.x","request":"2.x","ssh2":"0.3.x","tar":"1.x","update-notifier":"0.2.x","when":"3.x"},"devDependencies":{"chai":"1.x","chai-as-promised":"4.x","coffeelint":"1.x","coveralls":"2.x","istanbul":"0.3.x","mocha":"1.x","mocha-lcov-reporter":"0.0.1","mockery":"1.x","sinon":"1.x","sinon-chai":"2.x"},"scripts":{"test":"npm run lint && mocha","lint":"find lib/ -name '*.coffee' | xargs coffeelint","coverage":"make build; istanbul cover _mocha --report html -- -R spec && open coverage/index.html && make unbuild","coveralls":"make build; istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage; make unbuild","encrypt":"./encrypt-config.sh"},"gitHead":"430971836bfb0e0cd2662569e405990ba9437760","bugs":{"url":"https://github.com/carrot/ship/issues"},"homepage":"https://github.com/carrot/ship","_id":"ship@0.2.3","_shasum":"0c9faf8a2a05c293042e64124471f987a9d2b12b","_from":".","_npmVersion":"2.4.1","_nodeVersion":"0.10.36","_npmUser":{"name":"jenius","email":"hello@jenius.me"},"maintainers":[{"name":"jenius","email":"hello@jenius.me"}],"dist":{"shasum":"0c9faf8a2a05c293042e64124471f987a9d2b12b","tarball":"https://registry.npmjs.org/ship/-/ship-0.2.3.tgz","integrity":"sha512-HODo3Dihztmfhx3Skp00v6vIYQRLHfu+njwoTp2hYhb3tva6vPF2LbfowbFVNFXhveB/K3hnYSYAE0saWWTTgA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDqhZ3uNQE9O8pJsWSRJDOX/AtyAiVW3aYvhcNVH1Nm0wIhAMiDqrF/xsPKmHfEHTpPqAa7fWiZkzhro9QAFcSVfNHF"}]}},"0.2.4":{"name":"ship","preferGlobal":true,"version":"0.2.4","author":{"name":"Carrot Creative","email":"dev@carrotcreative.com"},"description":"multi-platform deployment with node","keywords":["deploy","ship","shipit"],"bin":{"ship":"bin/ship"},"main":"lib","repository":{"type":"git","url":"https://github.com/carrot/ship.git"},"dependencies":{"argparse":"0.1.x","aws-sdk":"2.x","bitballoon":"0.2.x","coffee-script":"1.8.x","colors":"1.x","file-map":"0.0.1","fstream":"1.x","ftp":"0.3.x","github":"git://github.com/jenius/node-github.git#create-blob-content","heroku-client":"1.5.x","indx":"0.2.x","inquirer":"0.8.x","js-yaml":"3.x","lodash":"2.x","mime":"1.x","minimatch":"1.x","netlify":"0.2.x","open":"0.0.5","optimist":"0.6.x","readdirp":"1.x","request":"2.x","ssh2":"0.3.x","tar":"1.x","update-notifier":"0.2.x","when":"3.x"},"devDependencies":{"chai":"1.x","chai-as-promised":"4.x","coffeelint":"1.x","coveralls":"2.x","istanbul":"0.3.x","mocha":"1.x","mocha-lcov-reporter":"0.0.1","mockery":"1.x","sinon":"1.x","sinon-chai":"2.x"},"scripts":{"test":"npm run lint && mocha","lint":"find lib/ -name '*.coffee' | xargs coffeelint","coverage":"make build; istanbul cover _mocha --report html -- -R spec && open coverage/index.html && make unbuild","coveralls":"make build; istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage; make unbuild","encrypt":"./encrypt-config.sh"},"gitHead":"c7d5e88465a4b404184a1a37a019ec2b7a203216","bugs":{"url":"https://github.com/carrot/ship/issues"},"homepage":"https://github.com/carrot/ship","_id":"ship@0.2.4","_shasum":"6a295dd012945e4198ce1fef8291d5fb639edcf8","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"jenius","email":"hello@jenius.me"},"maintainers":[{"name":"jenius","email":"hello@jenius.me"}],"dist":{"shasum":"6a295dd012945e4198ce1fef8291d5fb639edcf8","tarball":"https://registry.npmjs.org/ship/-/ship-0.2.4.tgz","integrity":"sha512-87SEPMKTj317DwOwA/LjynBJBk4VEfHRrGEXohMKbEDMGgkvUq/02riQY8zJOIoA2ByPAwI0vEE+zR/lqHqtzQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHYuU9Zk6yziVMxSAViTWS68Q4o1XtaeT11zIkrYCkZ4AiEA2PgK5D3yB6fBgyYtjqVbGhrPYVL9TA76Dux3uKG3p8U="}]}},"0.2.5":{"name":"ship","preferGlobal":true,"version":"0.2.5","author":{"name":"Carrot Creative","email":"dev@carrotcreative.com"},"description":"multi-platform deployment with node","keywords":["deploy","ship","shipit"],"bin":{"ship":"bin/ship"},"main":"lib","repository":{"type":"git","url":"https://github.com/carrot/ship.git"},"dependencies":{"argparse":"0.1.x","aws-sdk":"2.x","bitballoon":"0.2.x","coffee-script":"1.8.x","colors":"1.x","file-map":"0.0.1","fstream":"1.x","ftp":"0.3.x","github":"git://github.com/jenius/node-github.git#create-blob-content","heroku-client":"1.5.x","indx":"0.2.x","inquirer":"0.8.x","js-yaml":"3.x","lodash":"2.x","mime":"1.x","minimatch":"1.x","netlify":"0.2.x","open":"0.0.5","optimist":"0.6.x","readdirp":"1.x","request":"2.x","ssh2":"0.3.x","tar":"1.x","update-notifier":"0.2.x","when":"3.x"},"devDependencies":{"chai":"1.x","chai-as-promised":"4.x","coffeelint":"1.x","coveralls":"2.x","istanbul":"0.3.x","mocha":"1.x","mocha-lcov-reporter":"0.0.1","mockery":"1.x","sinon":"1.x","sinon-chai":"2.x"},"scripts":{"test":"npm run lint && mocha","lint":"find lib/ -name '*.coffee' | xargs coffeelint","coverage":"make build; istanbul cover _mocha --report html -- -R spec && open coverage/index.html && make unbuild","coveralls":"make build; istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage; make unbuild","encrypt":"./encrypt-config.sh"},"gitHead":"1dfcf7fe3950e9f3a5f28b98a4edcc00061b4b26","bugs":{"url":"https://github.com/carrot/ship/issues"},"homepage":"https://github.com/carrot/ship","_id":"ship@0.2.5","_shasum":"4bd29789b1cbe6c4650b6cf264853ffcff241998","_from":".","_npmVersion":"2.7.3","_nodeVersion":"0.12.0","_npmUser":{"name":"jenius","email":"hello@jenius.me"},"maintainers":[{"name":"jenius","email":"hello@jenius.me"},{"name":"kylemac","email":"kyle@carrotcreative.com"}],"dist":{"shasum":"4bd29789b1cbe6c4650b6cf264853ffcff241998","tarball":"https://registry.npmjs.org/ship/-/ship-0.2.5.tgz","integrity":"sha512-ElaE78oq/w8i0caFUS+IHB4ReqVi/BrJ2piEcftZllGXfhp/PEYvu69RpLBauS71KJ6/6/OItNu3pnsK8UKJ9g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCqwStNfeVrpym+hUnFLEgqEhDkcloBWUu8Xg1sAgXZXAIgJq5CAq7ufdFc066ACuZ1hysDhHM+BStPpTZhrJhxt9U="}]}}},"readmeFilename":"readme.md","homepage":"https://github.com/carrot/ship","keywords":["deploy","ship","shipit"],"repository":{"type":"git","url":"https://github.com/carrot/ship.git"},"author":{"name":"Carrot Creative","email":"dev@carrotcreative.com"},"bugs":{"url":"https://github.com/carrot/ship/issues"},"users":{"timdp":true}}