{"maintainers":[{"name":"deployment","email":"joe@ibershoff.com"}],"keywords":["ftp","client","promise","node"],"dist-tags":{"latest":"1.3.5"},"author":{"name":"RealtyMaps"},"description":"a promise-based ftp client for node.js","readme":"Description\n===========\n\npromise-ftp is an FTP client module for [node.js](http://nodejs.org/) that provides an asynchronous interface for\ncommunicating with an FTP server.\n\nThis module is a wrapper around the [node-ftp](https://github.com/mscdex/node-ftp) module, and provides some additional\nfeatures as well as a convenient promise-based API.\n\nThis library is written primarily in CoffeeScript, but may be used just as easily in a Node app using Javascript or\nCoffeeScript.  Promises in this module are provided by [Bluebird](https://github.com/petkaantonov/bluebird).\n\n\nChange Log\n============\n\n* Version 1.3.0 changes:\n  * addition of the **rawClient** property which exposes the underlying ftp client.\n\n* Version 1.2.0 changes:\n  * the `FtpConnectionError` and `FtpReconectError` classes have been moved to\n  [their own module](https://github.com/realtymaps/promise-ftp-errors), in anticipation of creating a\n  semi-interchangeable API for [promise-sftp](https://github.com/realtymaps/promise-sftp).  They are still exposed\n  on the main module as well.\n\n* Version 1.1.0 adds:\n  * the `autoReconnect` and `preserveCwd` options\n  * the `FtpReconectError` error class\n  * the `reconnect()` and `getConnectionStatus()` methods\n  * the `STATUSES` and `ERROR_CODES` maps\n  * completed API documentation\n\n* Version 1.0.0 provides a promise-based API that mirrors the\n[node-ftp API](https://github.com/mscdex/node-ftp/blob/master/README.md#api) almost identically, except with a promise\ninterface, plus:\n  * the `FtpConnectionError` error class\n\n\nRequirements\n============\n\n* [node.js](http://nodejs.org/) -- v0.8.0 or newer\n\n\nInstall\n=======\n\n    npm install promise-ftp\n\n\nExamples\n========\n\nGet a directory listing of the current (remote) working directory:\n\n```javascript\n  var PromiseFtp = require('promise-ftp');\n  \n  var ftp = new PromiseFtp();\n  ftp.connect({host: host, user: user, password: password})\n  .then(function (serverMessage) {\n    console.log('Server message: '+serverMessage);\n    return ftp.list('/');\n  }).then(function (list) {\n    console.log('Directory listing:');\n    console.dir(list);\n    return ftp.end();\n  });\n```\n\nDownload remote file 'foo.txt' and save it to the local file system:\n\n```javascript\n  var PromiseFtp = require('promise-ftp');\n  var fs = require('fs');\n  \n  var ftp = new PromiseFtp();\n  ftp.connect({host: host, user: user, password: password})\n  .then(function (serverMessage) {\n    return ftp.get('foo.txt');\n  }).then(function (stream) {\n    return new Promise(function (resolve, reject) {\n      stream.once('close', resolve);\n      stream.once('error', reject);\n      stream.pipe(fs.createWriteStream('foo.local-copy.txt'));\n    });\n  }).then(function () {\n    return ftp.end();\n  });\n```\n\nUpload local file 'foo.txt' to the server:\n\n```javascript\n  var PromiseFtp = require('promise-ftp');\n  var fs = require('fs');\n  \n  var ftp = new PromiseFtp();\n  ftp.connect({host: host, user: user, password: password})\n  .then(function (serverMessage) {\n    return ftp.put('foo.txt', 'foo.remote-copy.txt');\n  }).then(function () {\n    return ftp.end();\n  });\n```\n\n\nAPI\n===\n\nFor the most part, this module's API mirrors [node-ftp's API](https://github.com/mscdex/node-ftp#api), except that it\nreturns promises which resolve or reject, rather than emitting events or calling callbacks.  However, there are some\nminor differences and some additional features. If you need access to the underlying events or callback-based methods,\nyou can access the raw node-ftp client via **rawClient** property.\n\nErrors\n------\n\nErrors generated by this module will be instances of one of the following:\n\n* **FtpConnectionError**: Indicates the connection status was not appropriate for the method called; e.g. **connect**()\nor **reconnect()** was called when the connection was not in a disconnected state, **end()** was called when the\nconnection has already closed, etc.\n\n* **FtpReconnectError**: Only possible when the `autoReconnect` option is set true, this indicates a reconnect was\nattempted and failed.  It includes information about both the original disconnect error (if any) as well as the error\nwhile attempting to reconnect.\n\nIn addition, errors from the underlying node-ftp library may be rejected unchanged through method calls.  In the case\nof protocol-level errors, the rejected error will contain a `code` property that references the related 3-digit FTP\nresponse code.  This code may be translated into a (generic) human-readable text explanation by referencing the map\n`PromiseFtp.ERROR_CODES`.\n\nMethods\n-------\n\n* **\\[constructor\\]**(): Creates and returns a new PromiseFtp client instance.\n\n* **connect**(config <_object_>): Connects to an FTP server; returned promise resolves to the server's greeting\nmessage. Valid config properties:\n\n    * host <_string_>: The hostname or IP address of the FTP server. **Default:** 'localhost'\n\n    * port <_integer_>: The port of the FTP server. **Default:** 21\n\n    * secure <_mixed_>: Set to true for both control and data connection encryption, 'control' for control connection\n    encryption only, or 'implicit' for implicitly encrypted control connection (this mode is deprecated in modern times,\n    but usually uses port 990) **Default:** false\n\n    * secureOptions <_object_>: Additional options to be passed to `tls.connect()`. **Default:** (none)\n\n    * user <_string_>: Username for authentication. **Default:** 'anonymous'\n\n    * password <_string_>: Password for authentication. **Default:** 'anonymous@'\n\n    * connTimeout <_integer_>: How long (in milliseconds) to wait for the control connection to be established.\n    **Default:** 10000\n\n    * pasvTimeout <_integer_>: How long (in milliseconds) to wait for a PASV data connection to be established.\n    **Default:** 10000\n\n    * keepalive <_integer_>: How often (in milliseconds) to send a 'dummy' (NOOP) command to keep the connection alive.\n    **Default:** 10000\n    \n    * autoReconnect <_boolean_>: Whether to attempt to automatically reconnect using the existing config if the\n    connection is unexpectedly closed.  Auto-reconnection is lazy, and so will wait until a command needs to be issued\n    before attempting to reconnect.  **Default:** false\n    \n    * preserveCwd <_boolean_>: Whether to attempt to return to the prior current working directory after a successful\n    automatic reconnection.  Only used if `autoReconnect` is true.  **Default:** false\n    \n* **reconnect**(): Connects to an FTP server using the config from the most recent call to **connect()**.  Returned\npromise resolves to the server's greeting message.\n\n* **end**(): Closes the connection to the server after any/all enqueued commands have been executed; returned promise\nresolves to any error associated with closing the connection, or _true_ if there was an error but it wasn't captured.\n\n* **destroy**(): Closes the connection to the server immediately.  Returns a boolean indicating whether the connection\nwas connected prior to the call to **destroy()**.\n\n* **getConnectionStatus**(): Returns a string describing the current connection state.  Possible strings are\nenumerated in `PromiseFtp.`STATUSES, as well as below:\n\n    * not yet connected\n    \n    * connecting\n    \n    * connected\n    \n    * logging out\n    \n    * disconnecting\n    \n    * disconnected\n    \n    * reconnecting\n\n### Required \"standard\" commands (RFC 959)\n\n* **list**(\\[path <_string_>\\]\\[, useCompression <_boolean_>\\]): Retrieves the directory listing of `path`. `path`\ndefaults to the current working directory. `useCompression` defaults to false.  Returned promise resolves to an array\nof objects with these properties:\n\n      * type <_string_>: A single character denoting the entry type: 'd' for directory, '-' for file (or 'l' for\n      symlink on **\\*NIX only**).\n\n      * name <_string_>: The name of the entry.\n\n      * size <_string_>: The size of the entry in bytes.\n\n      * date <_Date_>: The last modified date of the entry.\n\n      * rights <_object_>: The various permissions for this entry **(*NIX only)**.\n\n          * user <_string_>: An empty string or any combination of 'r', 'w', 'x'.\n\n          * group <_string_>: An empty string or any combination of 'r', 'w', 'x'.\n\n          * other <_string_>: An empty string or any combination of 'r', 'w', 'x'.\n     \n      * owner <_string_>: The user name or ID that this entry belongs to **(*NIX only)**.\n\n      * group <_string_>: The group name or ID that this entry belongs to **(*NIX only)**.\n\n      * target <_string_>: For symlink entries, this is the symlink's target **(*NIX only)**.\n\n      * sticky <_boolean_>: True if the sticky bit is set for this entry **(*NIX only)**.\n\n* **get**(path <_string_>\\[, useCompression <_boolean_>\\]): Retrieves a file at `path` from the server.\n`useCompression` defaults to false. Returned promise resolves to a `ReadableStream`.\n\n* **put**(input <_mixed_>, destPath <_string_>\\[, useCompression <_boolean_>\\]): Sends data to the server to be stored\nas `destPath`. `input` can be a ReadableStream, a Buffer, or a path to a local file. `useCompression` defaults to\nfalse. Returned promise resolves to _undefined_.\n\n* **append**(input <_mixed_>, destPath <_string_>\\[, useCompression <_boolean_>\\]): Same as **put()**, except if\n`destPath` already exists, it will be appended to instead of overwritten.\n\n* **rename**(oldPath <_string_>, newPath <_string_>): Renames/moves `oldPath` to `newPath` on the server. Returned\npromise resolves to _undefined_.\n\n* **logout**(): Logs the user out from the server. Returned promise resolves to _undefined_.\n\n* **delete**(path <_string_>): Deletes the file at `path`. Returned promise resolves to _undefined_.\n\n* **cwd**(path <_string_>): Changes the current working directory to `path`. Returned promise resolves to the new\ncurrent directory, if the server replies with it in the response text; otherwise resolves to _undefined_.\n\n* **abort**(): Aborts the current data transfer (e.g. from **get()**, **put()**, or **list()**). Returned promise\nresolves to _undefined_.\n\n* **site**(command <_string_>): Sends `command` (e.g. 'CHMOD 755 foo', 'QUOTA') using SITE; returned promise resolves\nto an object with the following attributes:\n\n  * text <_string_>: responseText\n  \n  * code <_integer_>: responseCode.\n\n* **status**(): Retrieves human-readable information about the server's status. Returned promise resolves to the status\nstring sent by the server.\n\n* **ascii**(): Sets the transfer data type to ASCII. Returned promise resolves to _undefined_.\n\n* **binary**(): Sets the transfer data type to binary (default at time of connection). Returned promise resolves to\n_undefined_.\n\n### Optional \"standard\" commands (RFC 959)\n\n* **mkdir**(path <_string_>\\[, recursive <_boolean_>\\]): Creates a new directory, `path`, on the server. `recursive` is\nfor enabling a 'mkdir -p' algorithm and defaults to false. Returned promise resolves to _undefined_.\n\n* **rmdir**(path <_string_>\\[, includeContents <_boolean_>\\]): Removes a directory, `path`, on the server. If\n`includeContents` is true, this call will delete the contents of the directory if it is not empty; note that this\ncurrently only deletes files within the directory, not subdirectories (the command will fail if there are subdirectories\npresent). Returned promise resolves to _undefined_.\n\n* **cdup**(): Changes the working directory to the parent of the current directory. Returned promise resolves to\n_undefined_.\n\n* **pwd**(): Retrieves the current working directory. Returned promise resolves to the current working directory.\n\n* **system**(): Retrieves the server's operating system. Returned promise resolves to the OS string sent by the server.\n\n* **listSafe**(\\[path <_string_>\\]\\[, useCompression <_boolean_>\\]): Similar to **list()**, except the directory is\ntemporarily changed to `path` to retrieve the directory listing. This is useful for servers that do not handle\ncharacters like spaces and quotes in directory names well for the LIST command. This function is \"optional\" because it\nrelies on **pwd()** being available.\n\n### Extended commands (RFC 3659)\n\n* **size**(path <_string_>): Retrieves the size of `path`. Returned promise resolves to number of bytes.\n\n* **lastMod**(path <_string_>): Retrieves the last modified date and time for `path`. Returned promise resolves an\ninstance of `Date`.\n\n* **restart**(byteOffset <_integer_>): Sets the file byte offset for the next file transfer action initiated via\n**get()** or **put()** to `byteOffset`. Returned promise resolves to _undefined_.\n","repository":{"type":"git","url":"git+https://github.com/realtymaps/promise-ftp.git"},"users":{"sakthiifnotec":true,"chaowei":true,"xbgxwh":true},"bugs":{"url":"https://github.com/realtymaps/promise-ftp/issues"},"license":"MIT","versions":{"1.0.0":{"name":"promise-ftp","description":"a thin promise-based wrapper around a node ftp client","version":"1.0.0","main":"index.js","author":{"name":"RealtyMaps"},"contributors":[{"name":"Joe Ibershoff","email":"joe@realtymaps.com"}],"directories":{"lib":"./lib"},"repository":{"type":"git","url":"git+https://github.com/realtymaps/promise-ftp.git"},"keywords":["ftp","client","promise","node"],"dependencies":{"bluebird":"2.x","coffee-script":"1.x","ftp":"^0.3.10","lodash":"3.x","verror":"1.x"},"license":"MIT","bugs":{"url":"https://github.com/realtymaps/promise-ftp/issues"},"gitHead":"a5ddf67a5590bc0efac77e0659c500c782237527","homepage":"https://github.com/realtymaps/promise-ftp#readme","_id":"promise-ftp@1.0.0","scripts":{},"_shasum":"9a7527d54e12f70a5714110a968c10947f4f42e2","_from":".","_npmVersion":"2.14.7","_nodeVersion":"0.12.6","_npmUser":{"name":"deployment","email":"joe@ibershoff.com"},"maintainers":[{"name":"deployment","email":"joe@ibershoff.com"}],"dist":{"shasum":"9a7527d54e12f70a5714110a968c10947f4f42e2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/promise-ftp/-/promise-ftp-1.0.0.tgz","integrity":"sha512-TSXbBj3Yx3gxNTJq8bUMmATQMr6wZIrHZvgtcj9gHsEX3s0/FFojwpDD3htkv8+4ITARdrTkzCGuv2eazQmbJQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEkty5Zk3N39/A/eZUMXUyHpKjktRef+wGSf5SVb2zYNAiAUq4w581s026C4sNK9XX8wzio9y/vuQx7PwwdPbhtyYA=="}]}},"1.1.0":{"name":"promise-ftp","description":"a thin promise-based wrapper around a node ftp client","version":"1.1.0","main":"index.js","author":{"name":"RealtyMaps"},"contributors":[{"name":"Joe Ibershoff","email":"joe@realtymaps.com"}],"directories":{"lib":"./lib"},"repository":{"type":"git","url":"git+https://github.com/realtymaps/promise-ftp.git"},"keywords":["ftp","client","promise","node"],"dependencies":{"bluebird":"2.x","coffee-script":"1.x","ftp":"0.3.10"},"license":"MIT","bugs":{"url":"https://github.com/realtymaps/promise-ftp/issues"},"gitHead":"3459fc82ca07afc34972a1f48ce634e591ecf97e","homepage":"https://github.com/realtymaps/promise-ftp#readme","_id":"promise-ftp@1.1.0","scripts":{},"_shasum":"b37b07cd696971a39fe0e088cf33c0b1e3e03d5a","_from":".","_npmVersion":"2.14.7","_nodeVersion":"0.12.6","_npmUser":{"name":"deployment","email":"joe@ibershoff.com"},"maintainers":[{"name":"deployment","email":"joe@ibershoff.com"}],"dist":{"shasum":"b37b07cd696971a39fe0e088cf33c0b1e3e03d5a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/promise-ftp/-/promise-ftp-1.1.0.tgz","integrity":"sha512-+BJJ0iYeXfPPkrGmJX1JqBXNVWjsz2T3tyzZJ3YkISWP9Us4wabb6N5BWfVyJZZqXVULkB0p9TxdyPGF1kXXrw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDtHcLjGQqjwxO7ZAbvbsHMV9i4ToznmFco1OPw7dvm9AIhAK2qeBjNNJp3rTd5Dyb3AoYqUW10wuNNFoAB5unotCwt"}]}},"1.2.0":{"name":"promise-ftp","description":"a promise-based ftp client for node.js","version":"1.2.0","main":"index.js","author":{"name":"RealtyMaps"},"contributors":[{"name":"Joe Ibershoff","email":"joe@realtymaps.com"}],"directories":{"lib":"./lib"},"repository":{"type":"git","url":"git+https://github.com/realtymaps/promise-ftp.git"},"keywords":["ftp","client","promise","node"],"dependencies":{"bluebird":"2.x","coffee-script":"1.x","ftp":"0.3.10"},"peerDependencies":{"promise-ftp-errors":"1.x"},"license":"MIT","bugs":{"url":"https://github.com/realtymaps/promise-ftp/issues"},"gitHead":"aa99e886f5584ec10a6c11348c5c0e06456a26b3","homepage":"https://github.com/realtymaps/promise-ftp#readme","_id":"promise-ftp@1.2.0","scripts":{},"_shasum":"8cbf208df8a61ea09fd62280fb30eb13896546c9","_from":".","_npmVersion":"2.14.7","_nodeVersion":"0.12.6","_npmUser":{"name":"deployment","email":"joe@ibershoff.com"},"maintainers":[{"name":"deployment","email":"joe@ibershoff.com"}],"dist":{"shasum":"8cbf208df8a61ea09fd62280fb30eb13896546c9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/promise-ftp/-/promise-ftp-1.2.0.tgz","integrity":"sha512-3QoV468uzjzfQn2ihZlHymSREFef4DvGkAKfVqjYWE1yjjvIFNMWYyQdmPZhn+YXg/kn5vpEmIds5mUMzfOyoQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIB4JCeyH3MxA7XdJVk/KOa/hGPbExJXgSsp5TPr6Fp6wAiB9ogF1qD+NO3iAdlLM52Hvw4LOwMHrKeJKYT7oIGtUgg=="}]}},"1.2.1":{"name":"promise-ftp","description":"a promise-based ftp client for node.js","version":"1.2.1","main":"index.js","author":{"name":"RealtyMaps"},"contributors":[{"name":"Joe Ibershoff","email":"joe@realtymaps.com"}],"directories":{"lib":"./lib"},"repository":{"type":"git","url":"git+https://github.com/realtymaps/promise-ftp.git"},"keywords":["ftp","client","promise","node"],"dependencies":{"bluebird":"2.x","coffee-script":"1.x","ftp":"0.3.10"},"peerDependencies":{"promise-ftp-errors":"1.x"},"license":"MIT","bugs":{"url":"https://github.com/realtymaps/promise-ftp/issues"},"gitHead":"37f4cae95ebd7b6790d81bd1b0b6f1f6f59709bd","homepage":"https://github.com/realtymaps/promise-ftp#readme","_id":"promise-ftp@1.2.1","scripts":{},"_shasum":"7df74abfbb471ec5da89df08b248c4595cf93135","_from":".","_npmVersion":"2.14.7","_nodeVersion":"0.12.6","_npmUser":{"name":"deployment","email":"joe@ibershoff.com"},"maintainers":[{"name":"deployment","email":"joe@ibershoff.com"}],"dist":{"shasum":"7df74abfbb471ec5da89df08b248c4595cf93135","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/promise-ftp/-/promise-ftp-1.2.1.tgz","integrity":"sha512-VHXf+jAZQN6i/zDNVEXp0RPA1zvKjyyFpKxWv0aiJCV9rbzECyapEAzxfcwHmyC48BLjflYfxaxbF8Qn7lUcGQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDz0DBgbgufh4MGpJlq17gh3U0sQow7WEI3U1ql2V+pPgIgHyVgAdY8NwKLPAnSy+5VwSkmunVQrF1nVZc5q+QLt7I="}]}},"1.2.2":{"name":"promise-ftp","description":"a promise-based ftp client for node.js","version":"1.2.2","main":"index.js","author":{"name":"RealtyMaps"},"contributors":[{"name":"Joe Ibershoff","email":"joe@realtymaps.com"}],"directories":{"lib":"./lib"},"repository":{"type":"git","url":"git+https://github.com/realtymaps/promise-ftp.git"},"keywords":["ftp","client","promise","node"],"dependencies":{"bluebird":"2.x","coffee-script":"1.x","ftp":"0.3.10"},"peerDependencies":{"promise-ftp-common":"^1.1.0"},"license":"MIT","bugs":{"url":"https://github.com/realtymaps/promise-ftp/issues"},"gitHead":"44089cfa433dfb46f7f6ff5997fb0450d4c0fed9","homepage":"https://github.com/realtymaps/promise-ftp#readme","_id":"promise-ftp@1.2.2","scripts":{},"_shasum":"f15fc968f3c2b25be603278bcd4b0016f8951406","_from":".","_npmVersion":"2.14.7","_nodeVersion":"0.12.6","_npmUser":{"name":"deployment","email":"joe@ibershoff.com"},"maintainers":[{"name":"deployment","email":"joe@ibershoff.com"}],"dist":{"shasum":"f15fc968f3c2b25be603278bcd4b0016f8951406","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/promise-ftp/-/promise-ftp-1.2.2.tgz","integrity":"sha512-9K4MU6tdU9C+PP4Q9NvR6LzoszchN7Np+93K9PwjS5iMSWOgKrFQOL9FJOtnC1dewmQn7iz4d18zcZq20UANSQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFkcqz6ASv9nhboN2CVJtiUSHjTRvvFgpgV1ZjnNGsUDAiAX8cEqNJQsZ2Qf3FGqNy7RGjSYCWjLS4WXuZq4m1geJA=="}]}},"1.2.3":{"name":"promise-ftp","description":"a promise-based ftp client for node.js","version":"1.2.3","main":"index.js","author":{"name":"RealtyMaps"},"contributors":[{"name":"Joe Ibershoff","email":"joe@realtymaps.com"}],"directories":{"lib":"./lib"},"repository":{"type":"git","url":"git+https://github.com/realtymaps/promise-ftp.git"},"keywords":["ftp","client","promise","node"],"dependencies":{"bluebird":"2.x","coffee-script":"1.x","ftp":"0.3.10"},"peerDependencies":{"promise-ftp-common":"^1.1.1"},"license":"MIT","bugs":{"url":"https://github.com/realtymaps/promise-ftp/issues"},"gitHead":"5588e3aa1f6200969e852512d672bcda4ccb6f4b","homepage":"https://github.com/realtymaps/promise-ftp#readme","_id":"promise-ftp@1.2.3","scripts":{},"_shasum":"87ea855cae251191a5107c0430f814bca2c9ecf3","_from":".","_npmVersion":"2.14.7","_nodeVersion":"0.12.6","_npmUser":{"name":"deployment","email":"joe@ibershoff.com"},"maintainers":[{"name":"deployment","email":"joe@ibershoff.com"}],"dist":{"shasum":"87ea855cae251191a5107c0430f814bca2c9ecf3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/promise-ftp/-/promise-ftp-1.2.3.tgz","integrity":"sha512-v0qw/hi46JquQmR8902Y7zPqU2JqcLGy4OAsKd00ApkJviaRvgkaeOC5LJ6oTUE06lpbf03RVFsepbxS0LssBA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGagcUStq1eJ30YuoHrjjIb2ZTgEln9uJ915MLvnFf7ZAiEAukg5wdYa5MGqXnkYCuJy8So7OdBA9rsD2CdZyBvxe5M="}]}},"1.2.4":{"name":"promise-ftp","description":"a promise-based ftp client for node.js","version":"1.2.4","main":"index.js","author":{"name":"RealtyMaps"},"contributors":[{"name":"Joe Ibershoff","email":"joe@realtymaps.com"}],"directories":{"lib":"./lib"},"repository":{"type":"git","url":"git+https://github.com/realtymaps/promise-ftp.git"},"keywords":["ftp","client","promise","node"],"dependencies":{"bluebird":"2.x","coffee-script":"1.x","ftp":"0.3.10"},"peerDependencies":{"promise-ftp-common":"^1.1.1"},"license":"MIT","bugs":{"url":"https://github.com/realtymaps/promise-ftp/issues"},"gitHead":"06d02f0bbe9e73c08d850fb23c721647e2d5f1b7","homepage":"https://github.com/realtymaps/promise-ftp#readme","_id":"promise-ftp@1.2.4","scripts":{},"_shasum":"97b68742655e432715f5ae966a2e8f0221db0df1","_from":".","_npmVersion":"2.14.7","_nodeVersion":"0.12.6","_npmUser":{"name":"deployment","email":"joe@ibershoff.com"},"maintainers":[{"name":"deployment","email":"joe@ibershoff.com"}],"dist":{"shasum":"97b68742655e432715f5ae966a2e8f0221db0df1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/promise-ftp/-/promise-ftp-1.2.4.tgz","integrity":"sha512-zQxauUzxRKz1jjj65f5vwEYvjl62Cu/H07fAwD0sn+BnYINxCeo9Q+efokDATRxc0jjVcANzvRliOJIzHQl0ng==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD2Jwn2I+bZM/EGUPnb9WC95PhvnvnO8I2EwIzPsldVXwIhAODf3imQ204SWyiC3zUYPv6pU/SZYk3SQ1VK81u4YKZa"}]}},"1.2.5":{"name":"promise-ftp","description":"a promise-based ftp client for node.js","version":"1.2.5","main":"index.js","author":{"name":"RealtyMaps"},"contributors":[{"name":"Joe Ibershoff","email":"joe@realtymaps.com"}],"directories":{"lib":"./lib"},"repository":{"type":"git","url":"git+https://github.com/realtymaps/promise-ftp.git"},"keywords":["ftp","client","promise","node"],"dependencies":{"bluebird":"2.x","coffee-script":"1.x","ftp":"0.3.10"},"peerDependencies":{"promise-ftp-common":"^1.1.2"},"license":"MIT","bugs":{"url":"https://github.com/realtymaps/promise-ftp/issues"},"gitHead":"bbf6df0420db86a50330db797f4df2d7012cf1a0","homepage":"https://github.com/realtymaps/promise-ftp#readme","_id":"promise-ftp@1.2.5","scripts":{},"_shasum":"a3c833c7c3ad6e207d3eb915b567753f74ef370e","_from":".","_npmVersion":"2.14.7","_nodeVersion":"0.12.6","_npmUser":{"name":"deployment","email":"joe@ibershoff.com"},"maintainers":[{"name":"deployment","email":"joe@ibershoff.com"}],"dist":{"shasum":"a3c833c7c3ad6e207d3eb915b567753f74ef370e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/promise-ftp/-/promise-ftp-1.2.5.tgz","integrity":"sha512-fbpDhQNjW/vpL/k5GUIHYvv1NThEhcbzy8+bP5iHy0e1GULoYXGrMpfnyyOoHZrV+EtzA0AzcS6Xg7Xlc17pYw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCKItP7R6S/npuVFR7pFq8SM9HVL21dImSQkRxeZChuGQIhAKrCBOlZQ5JiUIcnwkb7CDkf8tOPoB3d5b850zTtYnsc"}]}},"1.2.6":{"name":"promise-ftp","description":"a promise-based ftp client for node.js","version":"1.2.6","main":"index.js","author":{"name":"RealtyMaps"},"contributors":[{"name":"Joe Ibershoff","email":"joe@realtymaps.com"}],"directories":{"lib":"./lib"},"repository":{"type":"git","url":"git+https://github.com/realtymaps/promise-ftp.git"},"keywords":["ftp","client","promise","node"],"dependencies":{"bluebird":"2.x","coffee-script":"1.x","ftp":"0.3.10"},"peerDependencies":{"promise-ftp-common":"^1.1.2"},"license":"MIT","bugs":{"url":"https://github.com/realtymaps/promise-ftp/issues"},"gitHead":"2e9eccc86195f4a98050c40123dfd9e5451d70dd","homepage":"https://github.com/realtymaps/promise-ftp#readme","_id":"promise-ftp@1.2.6","scripts":{},"_shasum":"8332bd117505a475b553072b2c976a876d8016cc","_from":".","_npmVersion":"2.14.7","_nodeVersion":"0.12.6","_npmUser":{"name":"deployment","email":"joe@ibershoff.com"},"maintainers":[{"name":"deployment","email":"joe@ibershoff.com"}],"dist":{"shasum":"8332bd117505a475b553072b2c976a876d8016cc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/promise-ftp/-/promise-ftp-1.2.6.tgz","integrity":"sha512-4QlyABubrN1eE2ipHuuhiu9d9q3wpLfaQw0NdFWwFZ5mj2/qG2bX5lqt/ZKijepjwyabKoFLvqL/Id8EgIjssA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCQwpnE41n/iw7sd0BUw/AFjuM5ozfGxHkEnngob70CSwIgEGU4imTqaZZvKduzE10EbD+ADrzK0TmW6+43c3dy+9w="}]}},"1.2.7":{"name":"promise-ftp","description":"a promise-based ftp client for node.js","version":"1.2.7","main":"index.js","author":{"name":"RealtyMaps"},"contributors":[{"name":"Joe Ibershoff","email":"joe@realtymaps.com"}],"directories":{"lib":"./lib"},"repository":{"type":"git","url":"git+https://github.com/realtymaps/promise-ftp.git"},"keywords":["ftp","client","promise","node"],"dependencies":{"bluebird":"2.x","coffee-script":"1.x","ftp":"0.3.10"},"peerDependencies":{"promise-ftp-common":"^1.1.2"},"license":"MIT","bugs":{"url":"https://github.com/realtymaps/promise-ftp/issues"},"gitHead":"3831b3eb8b114746ebfd27723e7f448c7dd81345","homepage":"https://github.com/realtymaps/promise-ftp#readme","_id":"promise-ftp@1.2.7","scripts":{},"_shasum":"9f48910723ee398888662cc3c3fc5198ef4f9a3a","_from":".","_npmVersion":"2.14.7","_nodeVersion":"0.12.6","_npmUser":{"name":"deployment","email":"joe@ibershoff.com"},"maintainers":[{"name":"deployment","email":"joe@ibershoff.com"}],"dist":{"shasum":"9f48910723ee398888662cc3c3fc5198ef4f9a3a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/promise-ftp/-/promise-ftp-1.2.7.tgz","integrity":"sha512-KqTdgjl6WGbhqzHUVLAcFxdjwVtvo0TVhMr8/gHSqJhcD+zqmRkkehyerUGaXZT01r++b5hvZTgYJT2UAZTSfA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDTk8WW6rlTiHcXiKKf2AIWF0Mvz1mRkH7mq+1xVPiwjAiEAqgK+0/0fBXzwMGgD5n8iXeFKA4gWS0cfoknX8VyBp9s="}]}},"1.2.8":{"name":"promise-ftp","description":"a promise-based ftp client for node.js","version":"1.2.8","main":"index.js","author":{"name":"RealtyMaps"},"contributors":[{"name":"Joe Ibershoff","email":"joe@realtymaps.com"}],"directories":{"lib":"./lib"},"repository":{"type":"git","url":"git+https://github.com/realtymaps/promise-ftp.git"},"keywords":["ftp","client","promise","node"],"dependencies":{"bluebird":"2.x","coffee-script":"1.x","ftp":"0.3.10"},"peerDependencies":{"promise-ftp-common":"^1.1.2"},"license":"MIT","bugs":{"url":"https://github.com/realtymaps/promise-ftp/issues"},"gitHead":"777e78b6f28f8c1e29aa768e6c9bf0fd1b2c9afd","homepage":"https://github.com/realtymaps/promise-ftp#readme","_id":"promise-ftp@1.2.8","scripts":{},"_shasum":"3c1852f8de09b98800f332444e0bd2aa9c5f08e3","_from":".","_npmVersion":"2.14.7","_nodeVersion":"0.12.6","_npmUser":{"name":"deployment","email":"joe@ibershoff.com"},"maintainers":[{"name":"deployment","email":"joe@ibershoff.com"}],"dist":{"shasum":"3c1852f8de09b98800f332444e0bd2aa9c5f08e3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/promise-ftp/-/promise-ftp-1.2.8.tgz","integrity":"sha512-uHuCDWU5ul1Zq76pXBNZ/sdggDs7D7O2aNh9oyxahN4Vco46DP9Gpp/s0RyjWHHHCIw52c/ykOMtbrP+nAF5Iw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDq+gbNoRNw3wPpdiaufYAdPzPWcbfOaj82RNjq+zIzNwIhANyyUIRMIYYMuUnwqVH40oMwzVWYHg0fDBG26Oq4adYh"}]}},"1.2.9":{"name":"promise-ftp","description":"a promise-based ftp client for node.js","version":"1.2.9","main":"index.js","author":{"name":"RealtyMaps"},"contributors":[{"name":"Joe Ibershoff","email":"joe@realtymaps.com"},{"name":"Moti Zilberman","email":"motiz88@gmail.com"}],"files":["dist","index.js"],"repository":{"type":"git","url":"git+https://github.com/realtymaps/promise-ftp.git"},"keywords":["ftp","client","promise","node"],"dependencies":{"ftp":"0.3.10"},"devDependencies":{"coffee-script":"1.x"},"peerDependencies":{"promise-ftp-common":"^1.1.2"},"license":"MIT","bugs":{"url":"https://github.com/realtymaps/promise-ftp/issues"},"engines":{"node":">=0.11.13","iojs":"*"},"scripts":{"build":"coffee --compile --output dist/ lib/","dev":"coffee --watch --output dist lib/"},"gitHead":"76f701bcd3cf51a3cf50ef56e98acf51710648df","homepage":"https://github.com/realtymaps/promise-ftp#readme","_id":"promise-ftp@1.2.9","_shasum":"57106ca1fab436551f0ed9a62ade55d68ebcdedd","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"deployment","email":"joe@ibershoff.com"},"maintainers":[{"name":"deployment","email":"joe@ibershoff.com"}],"dist":{"shasum":"57106ca1fab436551f0ed9a62ade55d68ebcdedd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/promise-ftp/-/promise-ftp-1.2.9.tgz","integrity":"sha512-Ed4wuePjvDsI+NXF/4qe0sp/7/tgIqVjnurvzq5SzO4vf3mSsMq66WQ1H1Z2eDc559NT3M4LPy1Whl0jdab2+w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDxuNSX/izki3/fdBJejJhl+VTOWWZInJaVikVE1PX6XQIgb4KcC/ct68BjfcKCo3sc3e6GqagJ6MGZ8ZueinDfB9g="}]}},"1.2.11":{"name":"promise-ftp","description":"a promise-based ftp client for node.js","version":"1.2.11","main":"index.js","author":{"name":"RealtyMaps"},"contributors":[{"name":"Joe Ibershoff","email":"joe@realtymaps.com"},{"name":"Moti Zilberman","email":"motiz88@gmail.com"}],"files":["lib","index.js"],"repository":{"type":"git","url":"git+https://github.com/realtymaps/promise-ftp.git"},"keywords":["ftp","client","promise","node"],"dependencies":{"ftp":"0.3.10"},"devDependencies":{"coffee-script":"1.x"},"peerDependencies":{"promise-ftp-common":"^1.1.5"},"license":"MIT","bugs":{"url":"https://github.com/realtymaps/promise-ftp/issues"},"engines":{"node":">=0.11.13","iojs":"*"},"scripts":{"prepublish":"coffee --compile --output dist/ lib/","dev":"coffee --watch --output dist lib/"},"gitHead":"7dae43fcf2a3db5cd6697b18930bc7728995b72a","homepage":"https://github.com/realtymaps/promise-ftp#readme","_id":"promise-ftp@1.2.11","_shasum":"d959fdd8cc25354bee204bec90faf29e5a3b75a8","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"deployment","email":"joe@ibershoff.com"},"maintainers":[{"name":"deployment","email":"joe@ibershoff.com"}],"dist":{"shasum":"d959fdd8cc25354bee204bec90faf29e5a3b75a8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/promise-ftp/-/promise-ftp-1.2.11.tgz","integrity":"sha512-0Gh0mnHHf+o+mGG62moJnY9TF5pszmlF8i5awXvfhpfZgB4RNZmF/w1B5P2dVik8MqbfdMzehD2Tvz0wmVVhrQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDd8sy2Qm9YylsOeReCgBdqHbjGE4lLNtkcifia4FMozwIgFS2XfAF97PXpCvGsnbvxyNw9FMLq5N+fz1B46JMOTho="}]}},"1.2.12":{"name":"promise-ftp","description":"a promise-based ftp client for node.js","version":"1.2.12","main":"index.js","author":{"name":"RealtyMaps"},"contributors":[{"name":"Joe Ibershoff","email":"joe@realtymaps.com"},{"name":"Moti Zilberman","email":"motiz88@gmail.com"}],"files":["dist","index.js"],"repository":{"type":"git","url":"git+https://github.com/realtymaps/promise-ftp.git"},"keywords":["ftp","client","promise","node"],"dependencies":{"ftp":"0.3.10"},"devDependencies":{"coffee-script":"1.x"},"peerDependencies":{"promise-ftp-common":"^1.1.5"},"license":"MIT","bugs":{"url":"https://github.com/realtymaps/promise-ftp/issues"},"engines":{"node":">=0.11.13","iojs":"*"},"scripts":{"prepublish":"coffee --compile --output dist/ lib/","dev":"coffee --watch --output dist lib/"},"gitHead":"258ca622622b4dc939056af6f6dfb822587325d7","homepage":"https://github.com/realtymaps/promise-ftp#readme","_id":"promise-ftp@1.2.12","_shasum":"fb206254534641c99f4fcaf4856dfd65b4861250","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"deployment","email":"joe@ibershoff.com"},"maintainers":[{"name":"deployment","email":"joe@ibershoff.com"}],"dist":{"shasum":"fb206254534641c99f4fcaf4856dfd65b4861250","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/promise-ftp/-/promise-ftp-1.2.12.tgz","integrity":"sha512-oT/olv+nbhtYEfJmRQaWsbrqQNj7BVNagUkxtf6BjMutWP8AYVVM2fpBw62/Ftqub2L6zhGBPYWaUtx0zdp+kw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIB1YZfDlG1gxBsmcjBLIWBukeMmmTFB+uXp/tvGcAf50AiEA8O5xcQO3yAKjJ5IpSHxN/e4MgMFummSGh1j7742qVlQ="}]}},"1.2.13":{"name":"promise-ftp","description":"a promise-based ftp client for node.js","version":"1.2.13","main":"index.js","author":{"name":"RealtyMaps"},"contributors":[{"name":"Joe Ibershoff","email":"joe@realtymaps.com"},{"name":"Moti Zilberman","email":"motiz88@gmail.com"}],"files":["dist","index.js"],"repository":{"type":"git","url":"git+https://github.com/realtymaps/promise-ftp.git"},"keywords":["ftp","client","promise","node"],"dependencies":{"ftp":"0.3.10"},"devDependencies":{"coffee-script":"1.x"},"peerDependencies":{"promise-ftp-common":"^1.1.5"},"license":"MIT","bugs":{"url":"https://github.com/realtymaps/promise-ftp/issues"},"engines":{"node":">=0.11.13","iojs":"*"},"scripts":{"prepublish":"coffee --compile --output dist/ lib/","dev":"coffee --watch --output dist lib/"},"gitHead":"0af48633123f1fe58465abcb6d1a7ac0c0b50326","homepage":"https://github.com/realtymaps/promise-ftp#readme","_id":"promise-ftp@1.2.13","_shasum":"db0768689a3d1a4bb0a9e95514a2f5600ec6ffdc","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"deployment","email":"joe@ibershoff.com"},"maintainers":[{"name":"deployment","email":"joe@ibershoff.com"}],"dist":{"shasum":"db0768689a3d1a4bb0a9e95514a2f5600ec6ffdc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/promise-ftp/-/promise-ftp-1.2.13.tgz","integrity":"sha512-PPxbNTT2SyaDyuN9hwiYmoNXP2/9irc93VVKJwl/+aTLT9clH0b+YutrL4f3br5wStjo1dA8FQZ5wn1og9QRHA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCerRedwuddWBmUe7Pvp6RolH6lI4Gi8Z7q1Vozlpfm9QIhAKwxN2YAI5Y5P3GRl0JtAyKEO4WeIHqdBOonNz6sU0SP"}]},"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/promise-ftp-1.2.13.tgz_1454522167108_0.7957661242689937"}},"1.2.14":{"name":"promise-ftp","description":"a promise-based ftp client for node.js","version":"1.2.14","main":"index.js","author":{"name":"RealtyMaps"},"contributors":[{"name":"Joe Ibershoff","email":"joe@realtymaps.com"},{"name":"Moti Zilberman","email":"motiz88@gmail.com"}],"files":["dist","index.js"],"repository":{"type":"git","url":"git+https://github.com/realtymaps/promise-ftp.git"},"keywords":["ftp","client","promise","node"],"dependencies":{"ftp":"0.3.10"},"devDependencies":{"coffee-script":"1.x"},"peerDependencies":{"promise-ftp-common":"^1.1.5"},"license":"MIT","bugs":{"url":"https://github.com/realtymaps/promise-ftp/issues"},"engines":{"node":">=0.11.13","iojs":"*"},"scripts":{"prepublish":"coffee --compile --output dist/ lib/","dev":"coffee --watch --output dist lib/"},"gitHead":"bd3dbf116025931a7dc19b55d6a611b50d5b67c9","homepage":"https://github.com/realtymaps/promise-ftp#readme","_id":"promise-ftp@1.2.14","_shasum":"c405fe16aba23e17ba5217863d151e47fddd3752","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.3.1","_npmUser":{"name":"deployment","email":"joe@ibershoff.com"},"maintainers":[{"name":"deployment","email":"joe@ibershoff.com"}],"dist":{"shasum":"c405fe16aba23e17ba5217863d151e47fddd3752","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/promise-ftp/-/promise-ftp-1.2.14.tgz","integrity":"sha512-KCfixdYNCAV1aGOI6NLjAe1GcT1jjOgG7wI0j/uzl7RRvA+e43RrSkAFvFwvSQJxlGz7QggWpSoxxo3KCIrUxA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC/9xsuWFbm628UXa9vcqekU2faUJA0Xk5AgwtMHtz5igIhALJD946GHqOIEGAKAO5VMl+DBSc3GcF/prAK1IlkgJQs"}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/promise-ftp-1.2.14.tgz_1459367308611_0.9930478907190263"}},"1.3.0":{"name":"promise-ftp","description":"a promise-based ftp client for node.js","version":"1.3.0","main":"index.js","author":{"name":"RealtyMaps"},"contributors":[{"name":"Joe Ibershoff","email":"joe@realtymaps.com"},{"name":"Moti Zilberman","email":"motiz88@gmail.com"}],"files":["dist","index.js"],"repository":{"type":"git","url":"git+https://github.com/realtymaps/promise-ftp.git"},"keywords":["ftp","client","promise","node"],"dependencies":{"ftp":"0.3.10"},"devDependencies":{"coffee-script":"1.x"},"peerDependencies":{"promise-ftp-common":"^1.1.5"},"license":"MIT","bugs":{"url":"https://github.com/realtymaps/promise-ftp/issues"},"engines":{"node":">=0.11.13","iojs":"*"},"scripts":{"prepublish":"coffee --compile --output dist/ lib/","dev":"coffee --watch --output dist lib/"},"gitHead":"089baee9c3ef0406f382874f4b93a8892ff7068f","homepage":"https://github.com/realtymaps/promise-ftp#readme","_id":"promise-ftp@1.3.0","_shasum":"58318b1d4f0f0686483935eb70519cc8ccbceb66","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.3.1","_npmUser":{"name":"deployment","email":"joe@ibershoff.com"},"maintainers":[{"name":"deployment","email":"joe@ibershoff.com"}],"dist":{"shasum":"58318b1d4f0f0686483935eb70519cc8ccbceb66","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/promise-ftp/-/promise-ftp-1.3.0.tgz","integrity":"sha512-4xKXRi1p48KncaTa8F/Qbqax4QPyDMAXVICnaaP82vnFuCYw6tEYhc7slp58uRS6+6DAnoud+SDRR4B1EISZgg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGnA97OWffZ5WXRlilOmEFVnZsg7ommwanoTJQ5OLhyCAiEAuw3empXII2iKhp4kbB8FGYWg6mYUGUbZ+EkM1fZsyYo="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/promise-ftp-1.3.0.tgz_1467249112219_0.5866770732682198"}},"1.3.1":{"name":"promise-ftp","description":"a promise-based ftp client for node.js","version":"1.3.1","main":"index.js","author":{"name":"RealtyMaps"},"contributors":[{"name":"Joe Ibershoff","email":"joe@realtymaps.com"},{"name":"Moti Zilberman","email":"motiz88@gmail.com"}],"files":["dist","index.js"],"repository":{"type":"git","url":"git+https://github.com/realtymaps/promise-ftp.git"},"keywords":["ftp","client","promise","node"],"dependencies":{"ftp":"0.3.10"},"devDependencies":{"coffee-script":"1.x"},"peerDependencies":{"promise-ftp-common":"^1.1.5"},"license":"MIT","bugs":{"url":"https://github.com/realtymaps/promise-ftp/issues"},"engines":{"node":">=0.11.13","iojs":"*"},"scripts":{"prepublish":"coffee --compile --output dist/ lib/","dev":"coffee --watch --output dist lib/"},"gitHead":"4a86e59247b3ee6cdf19c28688299c9d99567a2b","homepage":"https://github.com/realtymaps/promise-ftp#readme","_id":"promise-ftp@1.3.1","_shasum":"b6101b0cc1a051cceee5cb1ed542d196002c7505","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.3.1","_npmUser":{"name":"deployment","email":"joe@ibershoff.com"},"maintainers":[{"name":"deployment","email":"joe@ibershoff.com"}],"dist":{"shasum":"b6101b0cc1a051cceee5cb1ed542d196002c7505","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/promise-ftp/-/promise-ftp-1.3.1.tgz","integrity":"sha512-K5dY7JNKBP1XspAf59q/HrrXW6UGb6HxBIkzyt8X3xsQ9hsTYc20ypc9ioB30+nh324y8aW15PH3Egau6bIqiA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICH/iafB5KdKUT/8poYMaIunNGdeyHelL946YGtYYNseAiAIdOrCzjavn7/t3i56CRIPGToLI8vl89R1J8qu5f4sfQ=="}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/promise-ftp-1.3.1.tgz_1474642604217_0.7976051457226276"}},"1.3.2":{"name":"promise-ftp","description":"a promise-based ftp client for node.js","version":"1.3.2","main":"index.js","author":{"name":"RealtyMaps"},"contributors":[{"name":"Joe Ibershoff","email":"joe@realtymaps.com"},{"name":"Moti Zilberman","email":"motiz88@gmail.com"}],"files":["dist","index.js"],"repository":{"type":"git","url":"git+https://github.com/realtymaps/promise-ftp.git"},"keywords":["ftp","client","promise","node"],"dependencies":{"ftp":"0.3.10","promise-ftp-common":"^1.1.5"},"devDependencies":{"coffee-script":"1.x"},"peerDependencies":{"promise-ftp-common":"^1.1.5"},"license":"MIT","bugs":{"url":"https://github.com/realtymaps/promise-ftp/issues"},"engines":{"node":">=0.11.13","iojs":"*"},"scripts":{"prepublish":"coffee --compile --output dist/ lib/","dev":"coffee --watch --output dist lib/"},"gitHead":"708836ba4acc948a386a8ae2bc22fc70b8abf22b","homepage":"https://github.com/realtymaps/promise-ftp#readme","_id":"promise-ftp@1.3.2","_shasum":"b8c07566af38601f593225450c1b6c1775b4f6c7","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.3.1","_npmUser":{"name":"deployment","email":"joe@ibershoff.com"},"maintainers":[{"name":"deployment","email":"joe@ibershoff.com"}],"dist":{"shasum":"b8c07566af38601f593225450c1b6c1775b4f6c7","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/promise-ftp/-/promise-ftp-1.3.2.tgz","integrity":"sha512-ARKLhKlvMPEQmNAozHRtIIUZZ+s7TixSJmPfJsnIXTMk0+rVYJiSaVTzv6pHFOnBd4WUI1aM8Ua7JE1pz9xOXg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGPiP1O6K+fdI/iAsOVtzuIJavImr5qeA14ygpcLMziFAiEAsugkbPoeIUuF8ymt/4L5C9MZ8zsUL2kIzSh3GOBbxHI="}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/promise-ftp-1.3.2.tgz_1476245076832_0.3575976218562573"}},"1.3.3":{"name":"promise-ftp","description":"a promise-based ftp client for node.js","version":"1.3.3","main":"index.js","author":{"name":"RealtyMaps"},"contributors":[{"name":"Joe Ibershoff","email":"joe@realtymaps.com"},{"name":"Moti Zilberman","email":"motiz88@gmail.com"}],"files":["dist","index.js"],"repository":{"type":"git","url":"git+https://github.com/realtymaps/promise-ftp.git"},"keywords":["ftp","client","promise","node"],"dependencies":{"bluebird":"2.x","ftp":"0.3.10","promise-ftp-common":"^1.1.5"},"devDependencies":{"coffee-script":"1.x"},"peerDependencies":{"promise-ftp-common":"^1.1.5"},"license":"MIT","bugs":{"url":"https://github.com/realtymaps/promise-ftp/issues"},"engines":{"node":">=0.11.13","iojs":"*"},"scripts":{"prepublish":"coffee --compile --output dist/ lib/","dev":"coffee --watch --output dist lib/"},"gitHead":"cd2492e627ae821e9c6ca458a7f5a63af336146a","homepage":"https://github.com/realtymaps/promise-ftp#readme","_id":"promise-ftp@1.3.3","_shasum":"08ec3a954862b359ab073ed2553a8ade2b4b73c9","_from":".","_npmVersion":"2.15.11","_nodeVersion":"4.3.1","_npmUser":{"name":"deployment","email":"joe@ibershoff.com"},"maintainers":[{"name":"deployment","email":"joe@ibershoff.com"}],"dist":{"shasum":"08ec3a954862b359ab073ed2553a8ade2b4b73c9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/promise-ftp/-/promise-ftp-1.3.3.tgz","integrity":"sha512-a8DFkI3txiFnKkKcASqQ4UcLn2OmLXzAk+9UV60IFg33cyjDWtDdWQqMBSxiNCYTeJWV6tLC0hb+Hdn3o2Dkvg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFapaq9DojuM+J545alh+TESE7OdFssnQT2MkZNAQInVAiAvx9phlygA7x97ODJtqkTnbMKDw7U44UP6pvGiGHp/Sg=="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/promise-ftp-1.3.3.tgz_1487601607913_0.351224243408069"}},"1.3.4":{"name":"promise-ftp","description":"a promise-based ftp client for node.js","version":"1.3.4","main":"index.js","author":{"name":"RealtyMaps"},"contributors":[{"name":"Joe Ibershoff","email":"joe@realtymaps.com"},{"name":"Moti Zilberman","email":"motiz88@gmail.com"},{"name":"Gabe Martin","email":"gabema@gmail.com"}],"files":["dist","index.js"],"repository":{"type":"git","url":"git+https://github.com/realtymaps/promise-ftp.git"},"keywords":["ftp","client","promise","node"],"dependencies":{"bluebird":"2.x","@icetee/ftp":"^0.3.15","promise-ftp-common":"^1.1.5"},"devDependencies":{"coffee-script":"1.x"},"peerDependencies":{"promise-ftp-common":"^1.1.5"},"license":"MIT","bugs":{"url":"https://github.com/realtymaps/promise-ftp/issues"},"engines":{"node":">=0.11.13","iojs":"*"},"scripts":{"prepublish":"coffee --compile --output dist/ lib/","dev":"coffee --watch --output dist lib/"},"gitHead":"cdfdbc60db713d094e58d55b7949d4cf433b0ed9","homepage":"https://github.com/realtymaps/promise-ftp#readme","_id":"promise-ftp@1.3.4","_npmVersion":"5.3.0","_nodeVersion":"8.2.1","_npmUser":{"name":"deployment","email":"joe@ibershoff.com"},"maintainers":[{"name":"deployment","email":"joe@ibershoff.com"}],"dist":{"integrity":"sha512-ioI+T1COOudq+kNI/5WwG7zs84E+7iQvAkvawzN9wQMrqdIo676fxtOKOY8NMjUrk4RYyN+t68DdsQHzJqTcQA==","shasum":"7eb9fe5e1b003b1184a4046be4bc89b57323bff1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/promise-ftp/-/promise-ftp-1.3.4.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBSum30K1V6xeFGD6CUCbn04uXJ5GLXCOshI+oYiclyJAiBYk99z9lNV8CCUGkoOBlSp4PWAnrdYsIYzzYPqSDJ3Sw=="}]},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/promise-ftp-1.3.4.tgz_1509377485279_0.3752907586749643"}},"1.3.5":{"name":"promise-ftp","description":"a promise-based ftp client for node.js","version":"1.3.5","main":"index.js","author":{"name":"RealtyMaps"},"contributors":[{"name":"Joe Ibershoff","email":"joe@stimulating-solutions.com"},{"name":"Moti Zilberman","email":"motiz88@gmail.com"},{"name":"Gabe Martin","email":"gabema@gmail.com"}],"files":["dist","index.js"],"repository":{"type":"git","url":"git+https://github.com/realtymaps/promise-ftp.git"},"keywords":["ftp","client","promise","node"],"dependencies":{"bluebird":"2.x","@icetee/ftp":"^0.3.15","promise-ftp-common":"^1.1.5"},"devDependencies":{"coffee-script":"1.x"},"peerDependencies":{"promise-ftp-common":"^1.1.5"},"license":"MIT","bugs":{"url":"https://github.com/realtymaps/promise-ftp/issues"},"engines":{"node":">=0.11.13","iojs":"*"},"scripts":{"prepublish":"coffee --compile --output dist/ lib/","dev":"coffee --watch --output dist lib/"},"gitHead":"78bd2249303299270ecc8b0d835392831f512335","homepage":"https://github.com/realtymaps/promise-ftp#readme","_id":"promise-ftp@1.3.5","_npmVersion":"5.3.0","_nodeVersion":"8.2.1","_npmUser":{"name":"deployment","email":"joe@ibershoff.com"},"maintainers":[{"name":"deployment","email":"joe@ibershoff.com"}],"dist":{"integrity":"sha512-v368jPSqzmjjKDIyggulC+dRFcpAOEX7aFdEWkFYQp8Ao3P2N4Y6XnFFdKgK7PtkylwvGQkZR/65HZuzmq0V7A==","shasum":"ecfa4a5e5b779a6bfdd4dd3096957b58286f5104","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/promise-ftp/-/promise-ftp-1.3.5.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD/jVT1mrTWjr6eX3OPHQ0zpTqWzTCZ6/ehK6ABtMhUqQIgFVdqtY//zQv6+FOuaS5TnSkO/isd80cM7TBHlavUyT4="}]},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/promise-ftp-1.3.5.tgz_1517773072900_0.2391378153115511"}}},"name":"promise-ftp","time":{"modified":"2022-06-24T18:43:13.559Z","created":"2015-10-25T04:54:56.400Z","1.0.0":"2015-10-25T04:54:56.400Z","1.1.0":"2015-10-27T04:48:12.884Z","1.2.0":"2015-10-27T16:51:36.682Z","1.2.1":"2015-10-27T16:56:14.725Z","1.2.2":"2015-10-27T17:14:56.300Z","1.2.3":"2015-10-28T17:17:13.778Z","1.2.4":"2015-10-28T18:50:31.283Z","1.2.5":"2015-10-29T00:45:03.104Z","1.2.6":"2015-10-29T20:13:59.481Z","1.2.7":"2015-11-02T00:46:46.491Z","1.2.8":"2015-11-02T21:34:25.305Z","1.2.9":"2015-12-22T14:15:09.003Z","1.2.11":"2015-12-30T15:10:54.170Z","1.2.12":"2015-12-30T15:14:49.973Z","1.2.13":"2016-02-03T17:56:08.674Z","1.2.14":"2016-03-30T19:48:30.934Z","1.3.0":"2016-06-30T01:11:54.617Z","1.3.1":"2016-09-23T14:56:45.342Z","1.3.2":"2016-10-12T04:04:37.596Z","1.3.3":"2017-02-20T14:40:09.834Z","1.3.4":"2017-10-30T15:31:26.420Z","1.3.5":"2018-02-04T19:37:53.976Z"},"contributors":[{"name":"Joe Ibershoff","email":"joe@stimulating-solutions.com"},{"name":"Moti Zilberman","email":"motiz88@gmail.com"},{"name":"Gabe Martin","email":"gabema@gmail.com"}],"readmeFilename":"README.md","homepage":"https://github.com/realtymaps/promise-ftp#readme"}