{"maintainers":[{"name":"anonymous","email":"hotbelgo@gmail.com"}],"keywords":["ftp","deploy"],"dist-tags":{"latest":"2.4.7"},"author":{"name":"Simon Hampton"},"description":"Ftp a folder from your local disk to an ftp destination","readme":"# ftp-deploy\n\nA Node.js package to help with deploying code. Ftp a folder from your local disk to a remote ftp destination. Does not delete from destination directory.\n\n## Installation\n\n```js\nnpm install --save-dev ftp-deploy\n```\n\n## Usage\n\nThe most basic usage:\n\n```js\nconst FtpDeploy = require(\"ftp-deploy\");\nconst ftpDeploy = new FtpDeploy();\n\nconst config = {\n    user: \"user\",\n    // Password optional, prompted if none given\n    password: \"password\",\n    host: \"ftp.someserver.com\",\n    port: 21,\n    localRoot: __dirname + \"/local-folder\",\n    remoteRoot: \"/public_html/remote-folder/\",\n    // include: [\"*\", \"**/*\"],      // this would upload everything except dot files\n    include: [\"*.php\", \"dist/*\", \".*\"],\n    // e.g. exclude sourcemaps, and ALL files in node_modules (including dot files)\n    exclude: [\n        \"dist/**/*.map\",\n        \"node_modules/**\",\n        \"node_modules/**/.*\",\n        \".git/**\",\n    ],\n    // delete ALL existing files at destination before uploading, if true\n    deleteRemote: false,\n    // Passive mode is forced (EPSV command is not sent)\n    forcePasv: true,\n    // use sftp or ftp\n    sftp: false,\n};\n\nftpDeploy\n    .deploy(config)\n    .then((res) => console.log(\"finished:\", res))\n    .catch((err) => console.log(err));\n```\n\n**Note:**\n\n-   in version 2 the config file expects a field of `user` rather than `username` in 1.x.\n-   The config file is passed as-is to Promise-FTP.\n-   I create a file - e.g. deploy.js - in the root of my source code and add a script to its `package.json` so that I can `npm run deploy`.\n\n```json\n\"scripts\": {\n    \"deploy\": \"node deploy\"\n},\n```\n\n-   You can use callback instead of promise.\n\n```js\n// use with callback\nftpDeploy.deploy(config, function (err, res) {\n    if (err) console.log(err);\n    else console.log(\"finished:\", res);\n});\n```\n\n## Configuration include and exclude\n\nThese are lists of [minimatch globs](https://github.com/isaacs/minimatch). ftp-deploy works by checking for each file in your source directory, whether it is included by one of the include patterns and whether it is NOT excluded by one of the exclude patterns. In other words:\n\n-   `include`: all files that match will be uploaded. **Note** that a `[ ]` matches nothing\n-   `exclude`: if a file matches the include pattern a subset may nonetheless be excluded\n\n## Events\n\nftp-deploy reports to clients using events. To get the output you need to implement watchers for \"uploading\", \"uploaded\" and \"log\":\n\n```js\nftpDeploy.on(\"uploading\", function (data) {\n    console.log(data.totalFilesCount); // total file count being transferred\n    console.log(data.transferredFileCount); // number of files transferred\n    console.log(data.filename); // partial path with filename being uploaded\n});\nftpDeploy.on(\"uploaded\", function (data) {\n    console.log(data); // same data as uploading event\n});\nftpDeploy.on(\"log\", function (data) {\n    console.log(data); // same data as uploading event\n});\nftpDeploy.on(\"upload-error\", function (data) {\n    console.log(data.err); // data will also include filename, relativePath, and other goodies\n});\n```\n\n## Testing\n\nA script to run a simple ftp server (using [ftp-srv](https://github.com/trs/ftp-srv)) is included, together with a test directory.\n\nTo use open a console to run the ftp server:\n\n```\ncd test\nnpm run server\n```\n\nand then in another console run the tests:\n\n```\nnpm test\n```\n\n## Release\n\n```sh\nnpm version patch\ngit commit -m 'bump'\nnpm publish\ngit push origin vx.y.z\n```\n\n## ToDo\n\n-   re-enable continueOnError\n-   update newer files only (PR welcome)\n","repository":{"type":"git","url":"git://github.com/simonh1000/ftp-deploy.git"},"users":{"mattecapu":true,"fusijie":true,"webs":true,"powerweb":true,"jwright04":true,"mrdain":true,"diroru":true,"ivan.marquez":true,"okmogwai":true,"itobuztech":true,"leonardothibes":true},"bugs":{"url":"https://github.com/simonh1000/ftp-deploy/issues"},"license":"MIT","versions":{"0.1.0":{"name":"ftp-deploy","version":"0.1.0","author":{"name":"Rick Bergfalk","email":"rick.bergfalk@gmail.com","url":"http://rickbergfalk.com/"},"description":"Ftp a folder from your local disk to an ftp destination. Does not delete from destination directory. Derived from grunt-ftp-deploy","keywords":["ftp","deploy"],"dependencies":{"jsftp":"0.5.x","async":"0.2.x"},"main":"ftp-deploy","_id":"ftp-deploy@0.1.0","dist":{"shasum":"96dcb51437a2b4814b5028041968f9bf2af907b1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ftp-deploy/-/ftp-deploy-0.1.0.tgz","integrity":"sha512-9RK/0j+69itnMEcmUordNAi5ngI8BHS8tU1n7qBqgruS1fR2V+A4nehNlHVKhzANhLDG9LBlVdBqn5ShEI/ETA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDbWMl1UmoBS1iwoh5U0X3gUtjiVfI6Nd2tABzg2lPGeAIgGTCAqpIfyTHXioUVadXSPVzAq4tfTES9w0MHhaDEIFs="}]},"_from":".","_npmVersion":"1.2.18","_npmUser":{"name":"anonymous","email":"rick.bergfalk@gmail.com"},"maintainers":[{"name":"anonymous","email":"rick.bergfalk@gmail.com"}],"directories":{}},"0.1.1":{"name":"ftp-deploy","version":"0.1.1","author":{"name":"Rick Bergfalk","email":"rick.bergfalk@gmail.com","url":"http://rickbergfalk.com/"},"description":"Ftp a folder from your local disk to an ftp destination. Does not delete from destination directory. Derived from grunt-ftp-deploy","keywords":["ftp","deploy"],"dependencies":{"jsftp":"0.5.x","async":"0.2.x"},"repository":{"type":"git","url":"git://github.com/rickbergfalk/ftp-deploy"},"main":"ftp-deploy","bugs":{"url":"https://github.com/rickbergfalk/ftp-deploy/issues"},"_id":"ftp-deploy@0.1.1","dist":{"shasum":"42047993c0bc8cd214e60ee34730bb9ecb0a5ccc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ftp-deploy/-/ftp-deploy-0.1.1.tgz","integrity":"sha512-1GqFNg8NPUKpy7NDz9VFrqLiXh6Ak1ZgwcKlAp//4jEO9YqgmYRJqWxv16CDsCBftmutqiTybHELIWv4YYpBwA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDF+SP3yPRqkpUtPx5KXh6BtigXzwAy7GsOEYqeLpeTlAIgMlWHA8NQfJ281+RxBgf3sIWG8XANQypiVCHHgMkQSDU="}]},"_from":".","_npmVersion":"1.3.11","_npmUser":{"name":"anonymous","email":"rick.bergfalk@gmail.com"},"maintainers":[{"name":"anonymous","email":"rick.bergfalk@gmail.com"}],"directories":{}},"0.2.0":{"name":"ftp-deploy","version":"0.2.0","author":{"name":"Rick Bergfalk","email":"rick.bergfalk@gmail.com","url":"http://rickbergfalk.com/"},"description":"Ftp a folder from your local disk to an ftp destination. Does not delete from destination directory. Derived from grunt-ftp-deploy","keywords":["ftp","deploy"],"dependencies":{"jsftp":"0.5.x","async":"0.2.x"},"repository":{"type":"git","url":"git://github.com/rickbergfalk/ftp-deploy"},"main":"ftp-deploy","bugs":{"url":"https://github.com/rickbergfalk/ftp-deploy/issues"},"_id":"ftp-deploy@0.2.0","dist":{"shasum":"131020db4b5a16c9813a3d2d042b81192fb5008a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ftp-deploy/-/ftp-deploy-0.2.0.tgz","integrity":"sha512-dbITqm5qDw+06OhvdLTkwIqFt6cFG4BE1pz9/a4bZd8/sHsufVCanaBI4OPineRENMs4mb0XW6MeYbR6E7J4uA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCt4+QgLLLXAQg3rjQPJ9xdpiMnnOnjBw71GMW5xQzVzQIgahXzzjtY98dmrIZK27crNxiGHsCgE/KpGwFxC6ykBPY="}]},"_from":".","_npmVersion":"1.3.11","_npmUser":{"name":"anonymous","email":"rick.bergfalk@gmail.com"},"maintainers":[{"name":"anonymous","email":"rick.bergfalk@gmail.com"}],"directories":{}},"0.2.1":{"name":"ftp-deploy","version":"0.2.1","author":{"name":"Rick Bergfalk","email":"rick.bergfalk@gmail.com","url":"http://rickbergfalk.com/"},"description":"Ftp a folder from your local disk to an ftp destination. Does not delete from destination directory. Derived from grunt-ftp-deploy","keywords":["ftp","deploy"],"dependencies":{"jsftp":"0.5.x","async":"0.2.x"},"repository":{"type":"git","url":"git://github.com/rickbergfalk/ftp-deploy"},"contributors":[{"name":"Ondrej","url":"https://github.com/der-On"}],"main":"ftp-deploy","bugs":{"url":"https://github.com/rickbergfalk/ftp-deploy/issues"},"_id":"ftp-deploy@0.2.1","dist":{"shasum":"b46d7f2b840753b85e97785b923c47c1fd9f8710","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ftp-deploy/-/ftp-deploy-0.2.1.tgz","integrity":"sha512-duAr9D/FoUBfb1hoIuyhs1lotnafMJCSzFCFcmZiBlxcRXzKM05SmuA7kxCQBhGWQ4bSSqZuMmgvS+x+YJq3XQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCMdm6IKRQr9vY8ydTr05ZKIwcKxXwPN23NPKgXTs0gmwIhANvEyHZFCUOWJDxp/x/GKsNVGmjea3tG1rEi4Xy54KPC"}]},"_from":".","_npmVersion":"1.3.11","_npmUser":{"name":"anonymous","email":"rick.bergfalk@gmail.com"},"maintainers":[{"name":"anonymous","email":"rick.bergfalk@gmail.com"}],"directories":{}},"0.2.2":{"name":"ftp-deploy","version":"0.2.2","author":{"name":"Rick Bergfalk","email":"rick.bergfalk@gmail.com","url":"http://rickbergfalk.com/"},"description":"Ftp a folder from your local disk to an ftp destination. Does not delete from destination directory. Derived from grunt-ftp-deploy","keywords":["ftp","deploy"],"dependencies":{"jsftp":"0.5.x","async":"0.2.x"},"repository":{"type":"git","url":"git://github.com/rickbergfalk/ftp-deploy"},"contributors":[{"name":"Ondrej","url":"https://github.com/der-On"}],"main":"ftp-deploy","bugs":{"url":"https://github.com/rickbergfalk/ftp-deploy/issues"},"_id":"ftp-deploy@0.2.2","dist":{"shasum":"1b9b80d6f7a27fbf1d1f4ea65e6302c106199995","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ftp-deploy/-/ftp-deploy-0.2.2.tgz","integrity":"sha512-OboiLTvJHQs0Gnqkc6nvfVZ4s6ZCtG2T8B3G0F5Be6PGKWwhRwQRV0utyMKCX4guKo6270l+FoH7ua2ZrPlg5Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIG72l1cqE/tdCZjUV4YmmMiLLTDHUI8pI87t+UKknPRZAiBmUymhH82V9BQ8FUZD8h+8bZGTryfM26sYZynsivbOdA=="}]},"_from":".","_npmVersion":"1.3.11","_npmUser":{"name":"anonymous","email":"rick.bergfalk@gmail.com"},"maintainers":[{"name":"anonymous","email":"rick.bergfalk@gmail.com"}],"directories":{}},"0.3.0":{"name":"ftp-deploy","version":"0.3.0","author":{"name":"Rick Bergfalk","email":"rick.bergfalk@gmail.com","url":"http://rickbergfalk.com/"},"description":"Ftp a folder from your local disk to an ftp destination. Does not delete from destination directory. Derived from grunt-ftp-deploy","keywords":["ftp","deploy"],"dependencies":{"jsftp":"0.5.x","async":"0.2.x","minimatch":"0.2.12"},"repository":{"type":"git","url":"git://github.com/rickbergfalk/ftp-deploy"},"contributors":[{"name":"Ondrej","url":"https://github.com/der-On"}],"main":"ftp-deploy","bugs":{"url":"https://github.com/rickbergfalk/ftp-deploy/issues"},"_id":"ftp-deploy@0.3.0","dist":{"shasum":"cb615de50a8b77f88bf861fea3bbc49d098d470b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ftp-deploy/-/ftp-deploy-0.3.0.tgz","integrity":"sha512-U0SCmsVgiCvNNk9oq2z9dyC58HsU/ZavxrsnMS2lwt2BwDzEXZy9EJ0ns1k1CqKCETMZn6i1KFdPADPMnuO7lw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDnJ8X4fVXWNTDkvI/v05+LqJwr9PeF0/jVV77ix0UkvQIhAISIUBVU8Dj8lZBQkreVsYXAD6k9lT8W6TDExea+AqNj"}]},"_from":".","_npmVersion":"1.3.11","_npmUser":{"name":"anonymous","email":"rick.bergfalk@gmail.com"},"maintainers":[{"name":"anonymous","email":"rick.bergfalk@gmail.com"}],"directories":{}},"0.3.1":{"name":"ftp-deploy","version":"0.3.1","author":{"name":"Rick Bergfalk","email":"rick.bergfalk@gmail.com","url":"http://rickbergfalk.com/"},"description":"Ftp a folder from your local disk to an ftp destination. Does not delete from destination directory. Derived from grunt-ftp-deploy","keywords":["ftp","deploy"],"dependencies":{"jsftp":"0.6.x","async":"0.2.x","minimatch":"0.2.12"},"repository":{"type":"git","url":"git://github.com/rickbergfalk/ftp-deploy"},"bugs":{"url":"https://github.com/rickbergfalk/ftp-deploy/issues"},"contributors":[{"name":"Ondrej","url":"https://github.com/der-On"}],"main":"ftp-deploy","_id":"ftp-deploy@0.3.1","dist":{"shasum":"a6e29c6082032ff2abf9600fe8a17d85b7571e29","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ftp-deploy/-/ftp-deploy-0.3.1.tgz","integrity":"sha512-5eJJ3YiITA+nO3XdSXtu400P5jZGRxuEA4SAopSBi7A1XkK9jDWdn7RL9+NKRWg57KOYa6uhCVlqH/GsV0vvuw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCID7ijSqvMbUm7bEYqXXkWCYv/dwIgKMxvkskWo+4XP1FAiEAxWkdbqdmiPSRg+gI4IDjmHOovKE0YUr0sfnf7y0+yjU="}]},"_from":".","_npmVersion":"1.3.11","_npmUser":{"name":"anonymous","email":"rick.bergfalk@gmail.com"},"maintainers":[{"name":"anonymous","email":"rick.bergfalk@gmail.com"}],"directories":{}},"0.4.0":{"name":"ftp-deploy","version":"0.4.0","author":{"name":"Rick Bergfalk","email":"rick.bergfalk@gmail.com","url":"http://rickbergfalk.com/"},"description":"Ftp a folder from your local disk to an ftp destination. Does not delete from destination directory. Derived from grunt-ftp-deploy","keywords":["ftp","deploy"],"dependencies":{"jsftp":"0.6.x","async":"0.2.x","minimatch":"0.2.12"},"repository":{"type":"git","url":"git://github.com/rickbergfalk/ftp-deploy"},"bugs":{"url":"https://github.com/rickbergfalk/ftp-deploy/issues"},"contributors":[{"name":"Ondrej","url":"https://github.com/der-On"}],"main":"ftp-deploy","homepage":"https://github.com/rickbergfalk/ftp-deploy","_id":"ftp-deploy@0.4.0","dist":{"shasum":"396b4d5f55ab24ff33f1b5c1f653d1ac7bf36ac9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ftp-deploy/-/ftp-deploy-0.4.0.tgz","integrity":"sha512-izZisZaFtpHjqggIWpkfJb3hCq5UN2DPqUL6q2u0h2xg6FCpDxwCMIIegqTF6IjLs/atCm2B4hyZcKpUmHhzcw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGba/Qv86nphcAfnh7u/33ZHDjhKeSl6WJNrkPoqRUBNAiA+UXxk5LwVNYfLV0VCIiUEctVSIT0DBK9rvDcLibXjDQ=="}]},"_from":".","_npmVersion":"1.3.14","_npmUser":{"name":"anonymous","email":"rick.bergfalk@gmail.com"},"maintainers":[{"name":"anonymous","email":"rick.bergfalk@gmail.com"}],"directories":{}},"0.4.1":{"name":"ftp-deploy","version":"0.4.1","author":{"name":"Rick Bergfalk","email":"rick.bergfalk@gmail.com","url":"http://rickbergfalk.com/"},"description":"Ftp a folder from your local disk to an ftp destination. Does not delete from destination directory. Derived from grunt-ftp-deploy","keywords":["ftp","deploy"],"dependencies":{"jsftp":"0.6.x","async":"0.2.x","minimatch":"0.2.12"},"repository":{"type":"git","url":"git://github.com/rickbergfalk/ftp-deploy"},"bugs":{"url":"https://github.com/rickbergfalk/ftp-deploy/issues"},"contributors":[{"name":"Ondrej","url":"https://github.com/der-On"}],"main":"ftp-deploy","_id":"ftp-deploy@0.4.1","dist":{"shasum":"76caa4f43156bcc3438f51c738e6f52fddd6d2f3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ftp-deploy/-/ftp-deploy-0.4.1.tgz","integrity":"sha512-LNi05FYOWBq/t9pu9g+8iR0b73uk1FICNBTOl7ZfaLm3phLlXewCU91b4rBUlEIJLmiukrv2GqYE/oo47k/UCA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCLp/CUul7HiHgLGqfFTKnFU+0AiPJVADYnm0jsdcG5eAIgYzPPyQNWz44nShzCtyot2BOiRNAmRZF9gOUK5yVPEag="}]},"_from":".","_npmVersion":"1.3.11","_npmUser":{"name":"anonymous","email":"rick.bergfalk@gmail.com"},"maintainers":[{"name":"anonymous","email":"rick.bergfalk@gmail.com"}],"directories":{}},"0.5.0":{"name":"ftp-deploy","version":"0.5.0","author":{"name":"Rick Bergfalk","email":"rick.bergfalk@gmail.com","url":"http://rickbergfalk.com/"},"description":"Ftp a folder from your local disk to an ftp destination. Does not delete from destination directory. Derived from grunt-ftp-deploy","keywords":["ftp","deploy"],"dependencies":{"jsftp":"1.2.x","async":"0.2.x","minimatch":"0.2.12"},"repository":{"type":"git","url":"git://github.com/rickbergfalk/ftp-deploy"},"bugs":{"url":"https://github.com/rickbergfalk/ftp-deploy/issues"},"contributors":[{"name":"Ondrej","url":"https://github.com/der-On"}],"main":"ftp-deploy","_id":"ftp-deploy@0.5.0","dist":{"shasum":"4088bd0b7b7b3484d83a66398afc9e5e869e77a6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ftp-deploy/-/ftp-deploy-0.5.0.tgz","integrity":"sha512-12+sXu+a+wjjzWndSmbttofORZTzWP+QiJf4sV7CjK/lePT3xYIJcj4HvVqOJmqLZmAnzml0vHaJPf9pR5ZJWw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBaK6QVqGPi08iyAaT7SE5vsW6r871vZDbwa64Hok6ozAiEAzgWrHTtOH0mX4mlhBT/BVIyDvl8DE7tHfDOq3JEUyRU="}]},"_from":".","_npmVersion":"1.3.11","_npmUser":{"name":"anonymous","email":"rick.bergfalk@gmail.com"},"maintainers":[{"name":"anonymous","email":"rick.bergfalk@gmail.com"}],"directories":{}},"0.5.1":{"name":"ftp-deploy","version":"0.5.1","author":{"name":"Rick Bergfalk","email":"rick.bergfalk@gmail.com","url":"http://rickbergfalk.com/"},"description":"Ftp a folder from your local disk to an ftp destination. Does not delete from destination directory. Derived from grunt-ftp-deploy","keywords":["ftp","deploy"],"dependencies":{"jsftp":"1.2.x","async":"0.2.x","minimatch":"0.2.12"},"repository":{"type":"git","url":"git://github.com/rickbergfalk/ftp-deploy"},"bugs":{"url":"https://github.com/rickbergfalk/ftp-deploy/issues"},"contributors":[{"name":"Ondrej","url":"https://github.com/der-On"}],"main":"ftp-deploy","homepage":"https://github.com/rickbergfalk/ftp-deploy","_id":"ftp-deploy@0.5.1","dist":{"shasum":"e11f4c57bd3012a32f9632e5551323d037121579","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ftp-deploy/-/ftp-deploy-0.5.1.tgz","integrity":"sha512-7S8QFjkKK7culqONKt2fgDRMOVcxkvuutyco8Nrhfd1sj27+QXZFQ3z+ivRNGPzIWfOQXK9iwAi0mDCVR41yaQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD0f2Blp7tTERiCUbyhDVi48riyaOW8+QKrpbqvanI1tQIhAMJ7Fsey4NiIESZ265KkGIxE1/sZHEfScvC8OgfN8H4e"}]},"_from":".","_npmVersion":"1.3.24","_npmUser":{"name":"anonymous","email":"rick.bergfalk@gmail.com"},"maintainers":[{"name":"anonymous","email":"rick.bergfalk@gmail.com"}],"directories":{}},"0.6.0":{"name":"ftp-deploy","version":"0.6.0","author":{"name":"Rick Bergfalk","email":"rick.bergfalk@gmail.com","url":"http://rickbergfalk.com/"},"description":"Ftp a folder from your local disk to an ftp destination. Does not delete from destination directory. Derived from grunt-ftp-deploy","keywords":["ftp","deploy"],"dependencies":{"jsftp":"1.2.x","async":"0.2.x","minimatch":"0.2.12"},"repository":{"type":"git","url":"git://github.com/rickbergfalk/ftp-deploy"},"bugs":{"url":"https://github.com/rickbergfalk/ftp-deploy/issues"},"contributors":[{"name":"Ondrej","url":"https://github.com/der-On"}],"main":"ftp-deploy","homepage":"https://github.com/rickbergfalk/ftp-deploy","_id":"ftp-deploy@0.6.0","dist":{"shasum":"69a76c3635f90670bee337a2c6c2a912526aec11","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ftp-deploy/-/ftp-deploy-0.6.0.tgz","integrity":"sha512-y0v1c7Lx8ySdko22sulbUXgnRhHbJkpCjfWUR0AMD7fqZtaHm1KwltbWThDvywMs9LRMYTZlhKZSS0ZuB6JGsg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCspwPYW/cfaR668jcbmWWXoX17zazIU2lEM3pfRpH+KwIhAKVTbyaMU57fTdrsDiC+k7Nvqor3wo7loMJemFwX7kyo"}]},"_from":".","_npmVersion":"1.3.24","_npmUser":{"name":"anonymous","email":"rick.bergfalk@gmail.com"},"maintainers":[{"name":"anonymous","email":"rick.bergfalk@gmail.com"}],"directories":{}},"0.7.0":{"name":"ftp-deploy","version":"0.7.0","author":{"name":"Rick Bergfalk","email":"rick.bergfalk@gmail.com","url":"http://rickbergfalk.com/"},"description":"Ftp a folder from your local disk to an ftp destination. Does not delete from destination directory. Derived from grunt-ftp-deploy","keywords":["ftp","deploy"],"dependencies":{"jsftp":"1.2.x","async":"0.2.x","minimatch":"0.2.12","read":"1.0.5"},"repository":{"type":"git","url":"git://github.com/rickbergfalk/ftp-deploy"},"bugs":{"url":"https://github.com/rickbergfalk/ftp-deploy/issues"},"contributors":[{"name":"Ondrej","url":"https://github.com/der-On"},{"name":"keyle","url":"https://github.com/keyle"}],"main":"ftp-deploy","homepage":"https://github.com/rickbergfalk/ftp-deploy","_id":"ftp-deploy@0.7.0","dist":{"shasum":"d8b97fc93ffd1894c9fcdfb42a2f832af1190ddd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ftp-deploy/-/ftp-deploy-0.7.0.tgz","integrity":"sha512-BBLKk5cSt0/KcvYkHICxoFXNbaK4BQB0m4RIiSJla7J244EpGGekDci3DJDeR5p5zl4D9XxQ+Dem3A6QSD5xdQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDprD1hKNJitDVcVWkOvURRQ4ti9nLYdFSmH1CwjIlBawIhAM7TKI7lSENCVJPkPtOdiStP2ihOLz4eZ3OXwXBhyTzu"}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"anonymous","email":"rick.bergfalk@gmail.com"},"maintainers":[{"name":"anonymous","email":"rick.bergfalk@gmail.com"}],"directories":{}},"1.0.0":{"name":"ftp-deploy","version":"1.0.0","author":{"name":"Rick Bergfalk","email":"rick.bergfalk@gmail.com","url":"http://rickbergfalk.com/"},"description":"Ftp a folder from your local disk to an ftp destination. Does not delete from destination directory. Derived from grunt-ftp-deploy","keywords":["ftp","deploy"],"dependencies":{"jsftp":"1.3.x","async":"0.9.x","minimatch":"0.2.12","read":"1.0.5"},"repository":{"type":"git","url":"git://github.com/rickbergfalk/ftp-deploy"},"bugs":{"url":"https://github.com/rickbergfalk/ftp-deploy/issues"},"contributors":[{"name":"Ondrej","url":"https://github.com/der-On"},{"name":"keyle","url":"https://github.com/keyle"}],"scripts":{"test":"node test/test.js"},"main":"ftp-deploy","gitHead":"6c042c3fbc740dee370f5d7d23f3c88741461db6","homepage":"https://github.com/rickbergfalk/ftp-deploy","_id":"ftp-deploy@1.0.0","_shasum":"deea0503fd850c04584b720f46f487ee237ef622","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"anonymous","email":"rick.bergfalk@gmail.com"},"maintainers":[{"name":"anonymous","email":"rick.bergfalk@gmail.com"}],"dist":{"shasum":"deea0503fd850c04584b720f46f487ee237ef622","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ftp-deploy/-/ftp-deploy-1.0.0.tgz","integrity":"sha512-6JPOKOS1840pbdMXSyI1MP2zSWd6zIdHiYbxF3IglEJRZEMc+SD1RhcigatdDUvvtWTMmvSwq3Yjwje7c1WLRw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD58E0Zh8UpDdH73SAYDmpKFvAek/HKh+iue6gdWjjJGAIhAJrFdr0/HFFKbpWNfspFXAtOugCdej1qnqUNaoDRbzSD"}]},"directories":{}},"1.1.0":{"name":"ftp-deploy","version":"1.1.0","author":{"name":"Rick Bergfalk","email":"rick.bergfalk@gmail.com","url":"http://rickbergfalk.com/"},"description":"Ftp a folder from your local disk to an ftp destination. Does not delete from destination directory. Derived from grunt-ftp-deploy","keywords":["ftp","deploy"],"dependencies":{"jsftp":"1.x.x","async":"1.x.x","minimatch":"0.2.12","read":"1.0.5"},"repository":{"type":"git","url":"git://github.com/rickbergfalk/ftp-deploy"},"bugs":{"url":"https://github.com/rickbergfalk/ftp-deploy/issues"},"contributors":[{"name":"Ondrej","url":"https://github.com/der-On"},{"name":"keyle","url":"https://github.com/keyle"}],"scripts":{"test":"node test/test.js"},"main":"ftp-deploy","gitHead":"abb0c81beb3a5536f3efe7bd4f2bee591a1772e9","homepage":"https://github.com/rickbergfalk/ftp-deploy","_id":"ftp-deploy@1.1.0","_shasum":"402f4bfe424f63348aaeffa8ce9cb08c293f96d1","_from":".","_npmVersion":"2.5.0","_nodeVersion":"0.10.30","_npmUser":{"name":"anonymous","email":"rick.bergfalk@gmail.com"},"maintainers":[{"name":"anonymous","email":"rick.bergfalk@gmail.com"}],"dist":{"shasum":"402f4bfe424f63348aaeffa8ce9cb08c293f96d1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ftp-deploy/-/ftp-deploy-1.1.0.tgz","integrity":"sha512-nfkQxKB471Dmt7usuhJdjvO3wtIV95FBVi0Ym2uuVeoukXNVg0a3XsUz1JYdrrqeO+NZ8GKacAiD0GgY9/0rJw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDtlCGoAAX/UWWW0YuPfS8lSJMpo1aQoGGWnCyfCiYauAiEAuGmCF2Gy9NO4FWeTa9uz8DJmYAeeUaEXF2vVJ/zziLs="}]},"directories":{}},"1.2.0":{"name":"ftp-deploy","version":"1.2.0","author":{"name":"Rick Bergfalk","email":"rick.bergfalk@gmail.com","url":"http://rickbergfalk.com/"},"description":"Ftp a folder from your local disk to an ftp destination. Does not delete from destination directory. Derived from grunt-ftp-deploy","keywords":["ftp","deploy"],"dependencies":{"jsftp":"1.x.x","async":"1.x.x","minimatch":"0.2.12","read":"1.0.5"},"repository":{"type":"git","url":"git://github.com/rickbergfalk/ftp-deploy.git"},"bugs":{"url":"https://github.com/rickbergfalk/ftp-deploy/issues"},"engines":{"node":">=4"},"contributors":[{"name":"Ondrej","url":"https://github.com/der-On"},{"name":"keyle","url":"https://github.com/keyle"}],"scripts":{"lint":"xo","lint-fix":"xo --fix","test":"node test/test.js"},"main":"ftp-deploy","devDependencies":{"xo":"^0.18.1"},"gitHead":"75c2856a9210501a4cc842b62cccd136307fd23d","homepage":"https://github.com/rickbergfalk/ftp-deploy#readme","_id":"ftp-deploy@1.2.0","_shasum":"552a63fa47756947bb8d8c4321722228343eb3d0","_from":".","_npmVersion":"4.0.2","_nodeVersion":"6.7.0","_npmUser":{"name":"anonymous","email":"rick.bergfalk@gmail.com"},"maintainers":[{"name":"anonymous","email":"rick.bergfalk@gmail.com"}],"dist":{"shasum":"552a63fa47756947bb8d8c4321722228343eb3d0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ftp-deploy/-/ftp-deploy-1.2.0.tgz","integrity":"sha512-QKOLRTus/5nzzYMTG5A30Yz1mCpVpKQJkcfx+FbACx0KoXfPcf1GjSWVWEelrzE8SrdngDc9NYBWkU+vl+DCvg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDSPQ/ou+XqRvnhVyNLWZnw2dXPv9iOqOOHKq5EHOL9owIhAOmXy+IAi3xhxZ52PJfeMlMyKWhVMxUGsOuB/sHRnVOz"}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ftp-deploy-1.2.0.tgz_1491677143561_0.8726580983493477"},"directories":{}},"1.2.1":{"name":"ftp-deploy","version":"1.2.1","author":{"name":"Simon Hampton","url":"was Rick Bergfalk"},"description":"Ftp a folder from your local disk to an ftp destination. Does not delete from destination directory. Derived from grunt-ftp-deploy","keywords":["ftp","deploy"],"license":"","dependencies":{"jsftp":"1.x.x","async":"2.x.x","minimatch":"3.0.3","read":"1.0.7"},"repository":{"type":"git","url":"git://github.com/rickbergfalk/ftp-deploy.git"},"bugs":{"url":"https://github.com/rickbergfalk/ftp-deploy/issues"},"engines":{"node":">=4"},"contributors":[{"name":"Ondrej","url":"https://github.com/der-On"},{"name":"keyle","url":"https://github.com/keyle"}],"scripts":{"lint":"xo","lint-fix":"xo --fix","test":"node test/test.js"},"main":"ftp-deploy","devDependencies":{"xo":"^0.18.1"},"gitHead":"751e93f682d4a931cb7fc88fcc77805f2cf441a5","homepage":"https://github.com/rickbergfalk/ftp-deploy#readme","_id":"ftp-deploy@1.2.1","_shasum":"ef2e70a16844965f8bab4dffd9d9eb408b3c0f7f","_from":".","_npmVersion":"4.1.1","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"hotbelgo@gmail.com"},"dist":{"shasum":"ef2e70a16844965f8bab4dffd9d9eb408b3c0f7f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ftp-deploy/-/ftp-deploy-1.2.1.tgz","integrity":"sha512-7JI88kO/+gAedc8YUk6eq5NuT+BAWY1wdsGZZ+hOdWw9+cGV1YVndNT14iYayLM1nC2Vfq2LAKWikGyd+7EzDg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD4q+Bk3v3JQhU+6dhxwhZqsXLhkd4r9GvhAJGI+f011gIhAJpmspaa+21jXJV2AGsuOOoaff9sZfF9jp5aNbmbluMv"}]},"maintainers":[{"name":"anonymous","email":"hotbelgo@gmail.com"},{"name":"anonymous","email":"rick.bergfalk@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/ftp-deploy-1.2.1.tgz_1493752432437_0.7764461098704487"},"directories":{}},"1.2.2":{"name":"ftp-deploy","version":"1.2.2","author":{"name":"Simon Hampton","url":"was Rick Bergfalk"},"description":"Ftp a folder from your local disk to an ftp destination. Does not delete from destination directory. Derived from grunt-ftp-deploy","keywords":["ftp","deploy"],"license":"","dependencies":{"jsftp":"2.0.x","async":"2.x.x","minimatch":"3.0.4","read":"1.0.7"},"repository":{"type":"git","url":"git://github.com/simonh1000/ftp-deploy.git"},"bugs":{"url":"https://github.com/simonh1000/ftp-deploy/issues"},"engines":{"node":">=4"},"contributors":[{"name":"Ondrej","url":"https://github.com/der-On"},{"name":"keyle","url":"https://github.com/keyle"}],"scripts":{"lint":"xo","lint-fix":"xo --fix","test":"node test/test.js"},"main":"ftp-deploy","devDependencies":{"xo":"^0.18.2"},"gitHead":"ee1bdd35e9ffcdf8c929fde70084a4bde4d9bbc4","homepage":"https://github.com/simonh1000/ftp-deploy#readme","_id":"ftp-deploy@1.2.2","_shasum":"60fa8bd24b16781ac1d67f713056f833c7d72465","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.11.0","_npmUser":{"name":"anonymous","email":"hotbelgo@gmail.com"},"dist":{"shasum":"60fa8bd24b16781ac1d67f713056f833c7d72465","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ftp-deploy/-/ftp-deploy-1.2.2.tgz","integrity":"sha512-6w/lO0BnQpsT2kR0WWFr6XLGL3MQpwjrtluOjYkvLv05scOR74S+2T8kSievah3pryNfA/mWcLWqk5zEgtZpqQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAjbXpLHbr9CXZNV2JCzm2/LK0nT/CfgYrlTQd8l8+naAiAwJ+daXEpt+G8LFky4eX07LMdfg7jZm1A9465L/kmJTg=="}]},"maintainers":[{"name":"anonymous","email":"hotbelgo@gmail.com"},{"name":"anonymous","email":"rick.bergfalk@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ftp-deploy-1.2.2.tgz_1497088931225_0.6802344946190715"},"directories":{}},"2.0.0":{"name":"ftp-deploy","version":"2.0.0","author":{"name":"Simon Hampton"},"description":"Ftp a folder from your local disk to an ftp destination. Does not delete from destination directory. Derived from grunt-ftp-deploy","main":"src/ftp-deploy","scripts":{"test":"mocha **/**.spec.js","test_server":"node test/server.js"},"dependencies":{"bluebird":"^3.5.1","minimatch":"3.0.4","promise-ftp":"^1.3.5","read":"^1.0.7"},"devDependencies":{"delete":"^1.1.0","chai":"^4.1.2","ftp-srv":"^2.16.1","mocha":"^4.1.0"},"keywords":["ftp","deploy"],"license":"MIT","repository":{"type":"git","url":"git://github.com/simonh1000/ftp-deploy.git"},"bugs":{"url":"https://github.com/simonh1000/ftp-deploy/issues"},"engines":{"node":">=6"},"contributors":[{"name":"Rick Bergfalk"},{"name":"Ondrej","url":"https://github.com/der-On"},{"name":"keyle","url":"https://github.com/keyle"}],"gitHead":"34d4ab7f3f43ae270a53df8b2cae6f41000084b4","homepage":"https://github.com/simonh1000/ftp-deploy#readme","_id":"ftp-deploy@2.0.0","_npmVersion":"5.5.1","_nodeVersion":"8.9.0","_npmUser":{"name":"anonymous","email":"hotbelgo@gmail.com"},"dist":{"integrity":"sha512-Vx3K5BttOWElQC1hDcZQOVmVBBv7koYojdYJ3hldxfduCDW3V05cgsW2+AuiF0i0FmshgqYo273ai6c3lqXn6w==","shasum":"22fa1f425ccccfa63d10741649010554b05bd2ff","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ftp-deploy/-/ftp-deploy-2.0.0.tgz","fileCount":40,"unpackedSize":39760,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa7rNoCRA9TVsSAnZWagAA/O8P/iHlAu7JUauo4UAgkKQz\nNpyzfH7IMHNDP5u/lIeDHXJmF8rNK7q48rYRwTBUJmfdqvbNG4vDObNXtpjJ\n7YnJJNQ+38bencR/G8H8XGAnZMIzCo8L2lbcVpSvms8Wx7iOg6jrBZY2KTq7\n6g9EnnQWVs48HwBSnRdihgaTntIvOUaDJsZW4qBuOfyQEGWnZaJLqgwr/Clt\nmk7DvOgPuZqy5bMtGKEaRtfz/3iPcNoerLif36V7n2k2w9c07ktZkwB+R8MS\n6w5jas5ykn1/tO4jShtpfLIBJYbn+KDSh+IcBkZte16aVxsvAtqt0bxM0Y+7\nVnbK0uMB31cAsxY4WAZn+hD88KgxILJ8q2OC8zlzpSRDm/FB2tsVMxaO8gU+\nBQIgP7e2kY0MW5+0xRlK39tSbnhuVyOxqR2SzSBdVs9Tl9/RyBCPIdGEfB3l\nAJdEE8umnPIiAdg8TwL4siJJ3aSV77yeGGJfhRTpLTotylBepKOI4dJ3wn9u\nYEkUnSmAHCABfpr/7/7lR3xnV5eG7lpJIYowuKwHfIpdAyLk3Z8zpz5/shID\nErPRCyBl6tfnlSPfUAR6L42rwCefpnfS7Z6FqYRuo6TeitZxwk9ga0/pWT63\nq21Tix7aAtnbXpYXw/hM1PBKTzcJ2WGKqIEHOnadp2UkxovRjTR+b8QLrla7\nNLYW\r\n=1GBn\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAaiji0qhh4mL5d60JJpupCDuGzVGdFVFWzlNlPTi+AoAiAxgBlzelmJaOfObJkAKJpHAtQiznr2X6gbecY5GSYc8Q=="}]},"maintainers":[{"name":"anonymous","email":"hotbelgo@gmail.com"},{"name":"anonymous","email":"rick.bergfalk@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ftp-deploy_2.0.0_1525592934884_0.610598429517575"},"_hasShrinkwrap":false},"2.0.1":{"name":"ftp-deploy","version":"2.0.1","author":{"name":"Simon Hampton"},"description":"Ftp a folder from your local disk to an ftp destination. Does not delete from destination directory. Derived from grunt-ftp-deploy","main":"src/ftp-deploy","scripts":{"test":"mocha **/**.spec.js","test_server":"node test/server.js"},"dependencies":{"bluebird":"^3.5.1","minimatch":"3.0.4","promise-ftp":"^1.3.5","read":"^1.0.7"},"devDependencies":{"delete":"^1.1.0","chai":"^4.1.2","ftp-srv":"^2.16.1","mocha":"^4.1.0"},"keywords":["ftp","deploy"],"license":"MIT","repository":{"type":"git","url":"git://github.com/simonh1000/ftp-deploy.git"},"bugs":{"url":"https://github.com/simonh1000/ftp-deploy/issues"},"engines":{"node":">=6"},"contributors":[{"name":"Rick Bergfalk"},{"name":"Ondrej","url":"https://github.com/der-On"},{"name":"keyle","url":"https://github.com/keyle"}],"gitHead":"c41c07a0d646bc04a99ffe54ba47475ad4d2d7cf","homepage":"https://github.com/simonh1000/ftp-deploy#readme","_id":"ftp-deploy@2.0.1","_npmVersion":"5.5.1","_nodeVersion":"8.9.0","_npmUser":{"name":"anonymous","email":"hotbelgo@gmail.com"},"dist":{"integrity":"sha512-tzkX2bZqe8/Ltp6nIPrKIEFLbTt3/lWikIk41/ACHIBXVS0kLZsVap+Bsvj9Vr3abF1vouaTcAseb8K5BnEqjg==","shasum":"2106e84cf777bb24fa883f595ed40348b183a9a4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ftp-deploy/-/ftp-deploy-2.0.1.tgz","fileCount":38,"unpackedSize":61649,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa7+lQCRA9TVsSAnZWagAAvT0P/0zorzTGl2VnJf4OigdR\nUGY/X5ElzeyX7qx1yVEGG638OG75ym+0OPb4bfCOBZ8rq3q8nMgeGVKbuoaf\nK+kgEiAdTnxKzUELzOMqKVbrD1QYkbfC/NlkUtKcX+gXh7LUe+VoET1jIasQ\nZ0elEMPD2ukky93XMKeS3X9GmTU9+paWlf6wqQozk/Pea8yIMbMJb6LKxZm5\n3EcOGPX9LcddV353vipLkAq8QUE36xIPsNNSTX7yLR4FxiKLStOYAIH8U9f5\ncgviUXQ/PjFTq4rBCPU8+cJZodqg6/MvXbPmH4+we3XiTm46YJxi6igjmgx8\n8/xAQEKwmPJEfY4w7/4knNigsy3aapCOKkOrEAqQWn80BKkN/n/28QieM1Fl\nw84STCj8i9P+tXeg30+FL0oo6GAZ31seGVauN+VW9ldJGMyY6W6t4xM6g4gu\n/l2bCDGlgfxYQKB17ag+I4F7tY2GCqiH8Yd7oV+pWyNdRXMm5VRsDYzthwtV\nNxs9b0qeVvnnKuT7CeQum8esmXw3ZLfw1wXSf5SgdhTWI7sSf5wG9V/fPzBi\nW4CywMEL4cdP6+7QhKhz9rIRpJZhfrwJQFKIGkA5Fib6dZhWLmFc+GWEP5X/\nfPKQpsLLy2HA7yC6RJJz4LD+WnQofkzm351m0dewDL3EFnJptkQEzpjpIq0T\n3KwB\r\n=u3NN\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDniU349i1JPm09OJA6EAs6iP4Jk/YXlUga4Tj2+ierTgIgSVDoYKAHOfnYm0srvyEPkjwFt13WRlwxIr3u/A1xY30="}]},"maintainers":[{"name":"anonymous","email":"hotbelgo@gmail.com"},{"name":"anonymous","email":"rick.bergfalk@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ftp-deploy_2.0.1_1525672271888_0.464231702127222"},"_hasShrinkwrap":false},"2.0.2":{"name":"ftp-deploy","version":"2.0.2","author":{"name":"Simon Hampton"},"description":"Ftp a folder from your local disk to an ftp destination. Does not delete from destination directory. Derived from grunt-ftp-deploy","main":"src/ftp-deploy","scripts":{"test":"mocha **/**.spec.js","test_server":"node test/server.js"},"dependencies":{"bluebird":"^3.5.1","minimatch":"3.0.4","promise-ftp":"^1.3.5","read":"^1.0.7"},"devDependencies":{"delete":"^1.1.0","chai":"^4.1.2","ftp-srv":"^2.16.1","mocha":"^4.1.0"},"keywords":["ftp","deploy"],"license":"MIT","repository":{"type":"git","url":"git://github.com/simonh1000/ftp-deploy.git"},"bugs":{"url":"https://github.com/simonh1000/ftp-deploy/issues"},"engines":{"node":">=6"},"contributors":[{"name":"Rick Bergfalk"},{"name":"Ondrej","url":"https://github.com/der-On"},{"name":"keyle","url":"https://github.com/keyle"}],"gitHead":"7d6b79e1756e1126fc4d3664d326b84d354a0e4d","homepage":"https://github.com/simonh1000/ftp-deploy#readme","_id":"ftp-deploy@2.0.2","_npmVersion":"5.5.1","_nodeVersion":"8.9.0","_npmUser":{"name":"anonymous","email":"hotbelgo@gmail.com"},"dist":{"integrity":"sha512-CgVDBvbIph279z3OejYKoB7YrwCCvIUG7g3zBnisTr5zRBacAM4uPs4sMcgM8mnoToLIM2iE8xbSk5VV3bZEAg==","shasum":"bb276252ef97034a5bada27036b1076fbd912761","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ftp-deploy/-/ftp-deploy-2.0.2.tgz","fileCount":38,"unpackedSize":61867,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa7/ddCRA9TVsSAnZWagAApKMP/jnMcjBRVhqrtdG/JK4k\nvxNhaZXLlM7m0gWXNAcYAeibxLQhm4UXZoS3FdG0Zsu/OmYsQEJ8WvZEQtDx\nLPjbAtUqGHhUqcz0msxbV2dURWuqhXmS+c+S401xtk6FGm6o450e1d+RV+9o\n75ZIpmj5G1uxQBiRE++jKGOWtlfI2tCeylBizoLBd8TYb9p4L0tJSzRhErzZ\nR9/D76kHm8L1nzfI2qxGa7EULLqQLys3DjY9CBRrrZlx8SPrlriPTeS5u89Y\nXe+Ei4w/xHax2oKNNMygxjvfaURvELKf2P5HGY+QYePRLZ94e1ZTwlCVBOYD\n0LlrnuVXY4qLmasua8HstXY32iZ0zBWf9CYfgtj4ARZKbvAYdcXJPiL0PMTI\nHs97sz/Xpqyk1EtlIVHYMRndjGLeaaYxQJr7NHhGRj0f6KPydTJkATTdJ0H/\nvAmrk7vtuNYlh7YowvRwoiXKLbnVUW11RD7wILu9u1KYLQ/E/orCmBJa4IYJ\n6A+jdqmunJ6pqhacLiW1WJ61yXJND3OuMnf/UpvVH4pYcCO9NTZIMfJM1Bdh\n3wUTboNAvappw0t76SEhHgmFz7F2NT5slYtJ0vqjMsAXLMLDNn1/genaOqHq\nCcM7St3+cJcj7CU6J0N2E2SatzLwTVC/Vg6x9MX8iWvdlWr33Z1lyzXQS+Ky\nvH7M\r\n=svXd\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD0qpQwdi9VeuO0KYvK5zAMerKE23dNsOV9PMb9GR8oKwIgBHylsldHzB2+pv79Lm24u0NgSp7zfI0ZiY34Gzr4hlc="}]},"maintainers":[{"name":"anonymous","email":"hotbelgo@gmail.com"},{"name":"anonymous","email":"rick.bergfalk@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ftp-deploy_2.0.2_1525675868438_0.8656037698700061"},"_hasShrinkwrap":false},"2.0.3":{"name":"ftp-deploy","version":"2.0.3","author":{"name":"Simon Hampton"},"description":"Ftp a folder from your local disk to an ftp destination. Does not delete from destination directory. Derived from grunt-ftp-deploy","main":"src/ftp-deploy","scripts":{"test":"mocha **/**.spec.js","test_server":"node test/server.js"},"dependencies":{"bluebird":"^3.5.1","minimatch":"3.0.4","promise-ftp":"^1.3.5","read":"^1.0.7"},"devDependencies":{"delete":"^1.1.0","chai":"^4.1.2","ftp-srv":"^2.16.1","mocha":"^4.1.0"},"keywords":["ftp","deploy"],"license":"MIT","repository":{"type":"git","url":"git://github.com/simonh1000/ftp-deploy.git"},"bugs":{"url":"https://github.com/simonh1000/ftp-deploy/issues"},"engines":{"node":">=6"},"contributors":[{"name":"Rick Bergfalk"},{"name":"Ondrej","url":"https://github.com/der-On"},{"name":"keyle","url":"https://github.com/keyle"}],"gitHead":"b4ce7f62d395686d34848251801fe82937a587bd","homepage":"https://github.com/simonh1000/ftp-deploy#readme","_id":"ftp-deploy@2.0.3","_npmVersion":"5.5.1","_nodeVersion":"8.9.0","_npmUser":{"name":"anonymous","email":"hotbelgo@gmail.com"},"dist":{"integrity":"sha512-ZyK0VroIxBpwnY9S5gIP4d8SDB90Bu0Yg4Tv31ZGTT+HMUFAx18wEYTcGxc02VQ6DKzgarWlFbw1uf2bDTQ67w==","shasum":"4310c213d636655c72ce0f16981cb6e56f7b95e1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ftp-deploy/-/ftp-deploy-2.0.3.tgz","fileCount":38,"unpackedSize":62121,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa8GJUCRA9TVsSAnZWagAAbIIP/i1Q6/QRe/GTR4xDazC4\nNYKHlG3AvG+6FrtxnRctcgWLw/JXvNUfCnAurP/xrR4g/LgDooIZJv54llvE\nsdVSmwh8of0bhYImPXvkuQTlgIC7jvyrM/kUagm2k16mT945dLK60IXZM+ss\nm8c7qCvxn9ivb46SIE/igDbs6PxAafACLL2/v8U59n8CW6qmqS9MQMqS3RN+\nY41Dm91bKuR33DpBXD3kI+D44Ib3CVBAkl9Gy7AQUXkGnc4ZzTgqyg5QlA8c\nAcKBhOsTMgEJyJAQFuix3FhHS9eDkDrCCKiktDApWVOUXtqHjoNqLNWamA0t\nij1UmOOAE0Su6NkAlyV6YWTSgtzJJweMsOfGDXc/QXF5ZkZ8B0ygl7tg4U8h\n+q7HW/SANOrFIFa8nzDqztppuTIHZuTgA0rqT9yGc6DVY9Ffpy8b8UX1yOlQ\nDAZLDrnoxOey2aTzh9uY8YicbhqjIqgnr4teZ0mPjMH3U8lWEpLt4rmgO+B7\n0RSwY2F5fa3prnq86A8cmwcYcSLBsoMFJtIYxc6lpF2Ac97r4HR6Ck4kNapF\noRQHQSpgsvail3rLsNjZziIsyB/cY/WTHZYhChwb8RJg0K9m5RHfoT88hGCR\nt1BqrZiEiaxZClr3Kpsq4qaAt7ri28IymTNdbKWnRAznoKku5dADQMgHVxP+\nkEq7\r\n=yEDW\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAlEqH+wLecukGJyqqzN6k9RXmumNqbfr3SfrGXJYeIaAiEAnTF7XmVzthvkvPqGXW+2L3NIMO69ZQg7ugAlo7ZnlHU="}]},"maintainers":[{"name":"anonymous","email":"hotbelgo@gmail.com"},{"name":"anonymous","email":"rick.bergfalk@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ftp-deploy_2.0.3_1525703252195_0.5464445504138136"},"_hasShrinkwrap":false},"2.0.4":{"name":"ftp-deploy","version":"2.0.4","author":{"name":"Simon Hampton"},"description":"Ftp a folder from your local disk to an ftp destination. Does not delete from destination directory. Derived from grunt-ftp-deploy","main":"src/ftp-deploy","scripts":{"test":"mocha **/**.spec.js","test_server":"node test/server.js"},"dependencies":{"bluebird":"^3.5.1","minimatch":"3.0.4","promise-ftp":"^1.3.5","read":"^1.0.7"},"devDependencies":{"delete":"^1.1.0","chai":"^4.1.2","ftp-srv":"^2.16.1","mocha":"^4.1.0"},"keywords":["ftp","deploy"],"license":"MIT","repository":{"type":"git","url":"git://github.com/simonh1000/ftp-deploy.git"},"bugs":{"url":"https://github.com/simonh1000/ftp-deploy/issues"},"engines":{"node":">=6"},"contributors":[{"name":"Rick Bergfalk"},{"name":"Ondrej","url":"https://github.com/der-On"},{"name":"keyle","url":"https://github.com/keyle"}],"gitHead":"489b0d9d5b960414931614e3c08a312f1a254567","homepage":"https://github.com/simonh1000/ftp-deploy#readme","_id":"ftp-deploy@2.0.4","_npmVersion":"6.0.0","_nodeVersion":"10.0.0","_npmUser":{"name":"anonymous","email":"hotbelgo@gmail.com"},"dist":{"integrity":"sha512-ClP/cnu8UOQSYjZqqZlLMtRVYjXlRt8wnm0Iolrzv3sNh9hLqc900KpQsQS+W0smVi3rNZ1+//rVhFl2I8Z7Hw==","shasum":"f125c66f15eeed3299dd332cb7607c7c8058619b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ftp-deploy/-/ftp-deploy-2.0.4.tgz","fileCount":42,"unpackedSize":62271,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa8ecWCRA9TVsSAnZWagAATxAQAJ/SFcik3gyVMsHlpzHq\nzpsUE9knccFdrk74yc1BHWPeAdNnFdakjXhaOINu/e57a/DOvxxLMKylO1NF\nC2dc2gCa8xM58LlloOTByzlxhvJH5XIdjbexsyMeVo+cL/ib/iIyXeM/wOeb\nh3x2+eCmmeo/+9kDb9K4Y2a5TrHJBY+SMxSntV4PvxDvVqnWmf69TG6QzPKN\nWVc4zb37Coi0wjeU6Snubs5FhDh5bfPJptKTVhfV6C5FsMhtclEI06aieiwG\nAAr8jf42rpOjQZ2SjyNShMPOkAk3YhNseBAdi1p8Q6bUx53H6myEvA57HxGl\nDC6oAwiBI+yMBQB0+R72XHq1HM7uBGqmzbp6y3554Xzji6bRMZZ+B3CrlUoX\nqVkv3g03i13nsDtTIiZgfMPbp6M8XK7QVd6E1zwaaFge40L2zIZP4/feic7h\no4xhg4RHG5fwYR+wPaKoMS/TockkAkRbrkdDETZQYoJaMEHuOkEQojMZONge\nj7/538/AYkaIkVz+IQQxLw42datAxqRTzYo0nYaj74j/i1Hf2SpaxmP2zqvn\neea+nEBCHaOcSzDOdfUkQnlJopfKPSMY+3vv4pDUAjEnouT1cUrFLf+14wNS\nOnkYiJURQlg+AYUeB6vgFVYZDq/2b0d8kWDKXUj18Ts70H1zlOomspGWTM4y\nvckY\r\n=SMKW\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC64jEGgmT0039IsQlRnqzYj+s0hz8vuS1PgImvDDi4sgIgE9J5mlFV4eQQYN7VQ+3zj3icZs1EldQ0OBmt5C0EohU="}]},"maintainers":[{"name":"anonymous","email":"hotbelgo@gmail.com"},{"name":"anonymous","email":"rick.bergfalk@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ftp-deploy_2.0.4_1525802773323_0.638396488223832"},"_hasShrinkwrap":false},"2.0.5":{"name":"ftp-deploy","version":"2.0.5","author":{"name":"Simon Hampton"},"description":"Ftp a folder from your local disk to an ftp destination. Does not delete from destination directory. Derived from grunt-ftp-deploy","main":"src/ftp-deploy","scripts":{"test":"mocha **/**.spec.js","test_server":"node test/server.js"},"dependencies":{"bluebird":"^3.5.1","minimatch":"3.0.4","promise-ftp":"^1.3.5","read":"^1.0.7"},"devDependencies":{"delete":"^1.1.0","chai":"^4.1.2","ftp-srv":"^2.16.1","mocha":"^4.1.0"},"keywords":["ftp","deploy"],"license":"MIT","repository":{"type":"git","url":"git://github.com/simonh1000/ftp-deploy.git"},"bugs":{"url":"https://github.com/simonh1000/ftp-deploy/issues"},"engines":{"node":">=6"},"contributors":[{"name":"Rick Bergfalk"},{"name":"Ondrej","url":"https://github.com/der-On"},{"name":"keyle","url":"https://github.com/keyle"}],"gitHead":"8e55386eaa90eae9d9529fe948ee186bce0e2f6d","homepage":"https://github.com/simonh1000/ftp-deploy#readme","_id":"ftp-deploy@2.0.5","_npmVersion":"5.5.1","_nodeVersion":"8.9.0","_npmUser":{"name":"anonymous","email":"hotbelgo@gmail.com"},"dist":{"integrity":"sha512-KPU5Ja3q2cMv2cnNpga/MP605Yys5t1RvamQfe4TAib624uSiCNiZMZnXxajXnG5bNugjKe0J7ia0j182EPw5A==","shasum":"a5aedde350a9c1e7e47d186152ce37b535b35634","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ftp-deploy/-/ftp-deploy-2.0.5.tgz","fileCount":42,"unpackedSize":63009,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa+EYbCRA9TVsSAnZWagAAqTcP/3zPABquUj+B1R5PldVG\nZou29H8xWfsPfx5X3dX2Ef5kW4odzp5E9+y+V/0DK59DslyWK5aEggW47CmT\nSE6tSFmue94FGo507zMDGYIfuG9QeOn90PbXpO2g265cXlAo9/g48UI6+G4Y\nd1WoHTX5b8JkAowoomBUe754nO+RAVKniwYJcU2OcVINJrP5LHyKGeaw+Pys\ner+09VU7cv3mXMoxChHEqtIPj0ygwdP37eeV8nDPQmGIWufJeXobyw5sMlQt\nNf5JTX3rDwKErCJfhOGpuaCuIHY2el3pp63dxxiUTlaMhi+e9FXjB92/eU9p\nXGRL/FkGqPu4WD7P9kFdtb1xWEHfUDTfNqbkLbdSRggg13WFWbwBwusE41qO\nHeHMPB7xV2cjhTjqrtq6PvcTztNUcBQZuvtvN0NIC7kGZe3OhWxrWSAffHWH\ng7zMK0llbG429ULDhezkM/FAZbmGqOBoHKUmYDVs3Lum7IkCklF2uZI17GLr\nqJyjHiddz+y8kB9P/UWcFqdd89klIthNxqw9u2oxq7+DF2rlJe5ipp3Bg9pR\nGChSA3fR8qnkYCGZe/lC/oXoO4EGjIAa9EWjZs/9D7vLf6bpwfkLMIFZG8p5\nyj/2xPaKF+Q0fQ0zuP84jQMZYZBaeBbve0ucN7QESLnbMjQSTZbT/eLjQnoi\nvUC8\r\n=pBQ6\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDGrQHd2+hk7u9tMbBVa3Wdb9Xnm8XH0URZyu4ZodbdiAIgPt9nrTq57L5bFpI0TfLMPAHrnLgWQdkmk+bgQtcwmnU="}]},"maintainers":[{"name":"anonymous","email":"hotbelgo@gmail.com"},{"name":"anonymous","email":"rick.bergfalk@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ftp-deploy_2.0.5_1526220314076_0.9979472821976709"},"_hasShrinkwrap":false},"2.1.0":{"name":"ftp-deploy","version":"2.1.0","author":{"name":"Simon Hampton"},"description":"Ftp a folder from your local disk to an ftp destination. Does not delete from destination directory. Derived from grunt-ftp-deploy","main":"src/ftp-deploy","scripts":{"test":"mocha **/**.spec.js","test_server":"node test/server.js"},"dependencies":{"bluebird":"^3.5.1","minimatch":"3.0.4","promise-ftp":"^1.3.5","read":"^1.0.7"},"devDependencies":{"delete":"^1.1.0","chai":"^4.1.2","ftp-srv":"^2.16.1","mocha":"^4.1.0"},"keywords":["ftp","deploy"],"license":"MIT","repository":{"type":"git","url":"git://github.com/simonh1000/ftp-deploy.git"},"bugs":{"url":"https://github.com/simonh1000/ftp-deploy/issues"},"engines":{"node":">=6"},"contributors":[{"name":"Rick Bergfalk"},{"name":"Ondrej","url":"https://github.com/der-On"},{"name":"keyle","url":"https://github.com/keyle"}],"gitHead":"80480634c19363f84bb892cf5c1ac9cafd7fc135","homepage":"https://github.com/simonh1000/ftp-deploy#readme","_id":"ftp-deploy@2.1.0","_npmVersion":"5.5.1","_nodeVersion":"8.9.0","_npmUser":{"name":"anonymous","email":"hotbelgo@gmail.com"},"dist":{"integrity":"sha512-EUDD1YV55hNUr2FofmRC3JwvQapyiRpLXtVlY8MUuNDt9WQkhHHCLSYefMtX0aRvOBGM9Y2gUm1DK9Y9FTNlHw==","shasum":"2cde4d216933940ad5391e1087065bf1c5361beb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ftp-deploy/-/ftp-deploy-2.1.0.tgz","fileCount":46,"unpackedSize":64695,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbAa2VCRA9TVsSAnZWagAAOQQP/ihDK7oqZlNZjIQAZcHD\nfs2mopUpEVhi/EmZYniaN55o9KpLRdGx6ordVBWLbdwVk2cpOXF7T92xJP+7\nWKvZ23J0Ss2aNRcj8A3VR1L1Ku7Xh0Y2XgQlBKPoYfbJN2X0Ju/A9+aHZa0m\ndOlONAYxqYJ5dlXRaXgAKxKy2O5XJG0HygLk1VYvMPYFNqVDQLXudSjWRSs+\nzb9b4vYii62obX+3jDLiMXFBIJr5ZOEBuI2e8BiAKnS8RiMvPnVJtBTgYqGn\n6h8+UYlQ4Wi4VaEi/CKt4Hg717r4OyP46Cab4b7sZjMIxxJcVg+3+jhsEFst\nFszFiaxpcDOG65CE5m3nBxGBbkUgXnoYhntwjEfru6bQgNwA+WjwCebe5P8q\n6TXvXo+qNn3KH+ZDQW5y1MUMVEBFSzJTv3iNM1cqcF07ySfvQWRDZsID/s6i\nNQmXPtLSU3bkUwP8HUO2L/DnUYudgu0CBCYR4fT68heYWwo8uQXju4v/ilYf\nFbKAtpP9qWQ8UY3HGeBlv1XDNxEyvEguncNklU2aucm3serTroD+3JIfW42J\nULUrciblCpxus6U77r/wroaSmkzFsh/TlBLg5HHO6Q1EBylV8K1EW5SKMerb\n/GWB2UgsncbzyulEb5BVV5v++/xxFMwoxG7P8JvaUBv5GUZow5lFTa9j0TSn\nNVo2\r\n=XU4C\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC1oTPlwNFQtkk6goOXuIfFDxRxFJ8/uOlZmVu0GF4q9wIgCwKe5oi7seqkMer0O5Cpe+XX9sSDPHaV7Oaicmw2X2Y="}]},"maintainers":[{"name":"anonymous","email":"hotbelgo@gmail.com"},{"name":"anonymous","email":"rick.bergfalk@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ftp-deploy_2.1.0_1526836628604_0.37569584185320326"},"_hasShrinkwrap":false},"2.1.1":{"name":"ftp-deploy","version":"2.1.1","author":{"name":"Simon Hampton"},"description":"Ftp a folder from your local disk to an ftp destination. Does not delete from destination directory. Derived from grunt-ftp-deploy","main":"src/ftp-deploy","scripts":{"test":"mocha **/**.spec.js","test_server":"node test/server.js"},"dependencies":{"bluebird":"^3.5.1","minimatch":"3.0.4","promise-ftp":"^1.3.5","read":"^1.0.7","upath":"^1.0.5"},"devDependencies":{"delete":"^1.1.0","chai":"^4.1.2","ftp-srv":"^2.16.1","mocha":"^4.1.0"},"keywords":["ftp","deploy"],"license":"MIT","repository":{"type":"git","url":"git://github.com/simonh1000/ftp-deploy.git"},"bugs":{"url":"https://github.com/simonh1000/ftp-deploy/issues"},"engines":{"node":">=6"},"contributors":[{"name":"Rick Bergfalk"},{"name":"Ondrej","url":"https://github.com/der-On"},{"name":"keyle","url":"https://github.com/keyle"}],"gitHead":"2904fd27e4ea552c69872fa7a0f2c34f0f8b8830","homepage":"https://github.com/simonh1000/ftp-deploy#readme","_id":"ftp-deploy@2.1.1","_npmVersion":"5.6.0","_nodeVersion":"10.1.0","_npmUser":{"name":"anonymous","email":"hotbelgo@gmail.com"},"dist":{"integrity":"sha512-AKSQs+Yr6Y9uciHC/IPs4lXfxMEqgW4/yGttw7we8BMKnGBXhHldVpP29b5FF0cN0VoV40ACao9v8MxlCR5b7g==","shasum":"d383c900b8285edb41661c79f6ebef920f064f69","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ftp-deploy/-/ftp-deploy-2.1.1.tgz","fileCount":38,"unpackedSize":64791,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbBaMSCRA9TVsSAnZWagAA70YP/js6srrqWhTuzlPjAqOO\nOKT+sOSc/yTJMJRuhRmRJFsUQBeLkUOv14a33XH32+UkxWvRm1kYX5E8k5rG\nr3FCGCZPVecsx4ZUu4Yi6YghjFhFHImvWcalRyRmwM7hCdHgu17WG5D40vHq\nEqeapUAWqwPdQw+fcj736g/mhg6u+OnfrqMbQFDalqyoNLoNSFmAYq3+S7GU\ncR6Ac3IwqsGejpwmNh7/dXklNt5BPzGV+Qr5lY+RMwnkQgGhX94Vdk2nt089\n4doP6U5VBRevCXVSsth3kn8dggYUwWcZtO9vgfXrGydJxaO6GtDt/jQWYLnV\n0B7JsaUiCuvQ/HI35Sezyfdb93jTxo+FMQg5NiCDAxU+jCxhJ50IoGqmgPDw\nfK/9cxvf3GnR0TXhBqXWWxwjx554QkOUu7//Y6XiywQSXEOoN9oWFrk5I8I3\nX6amz7UXyLqpnFGkAez3J3nTehMhbpyXcuIT2fUwvVKDXe0WA5QE/vrXbkc5\no9gDxg61L9qepluyJ61RVGLg0psqGjkdCWDKqLQxnTfHCl7m80rEGfzRtNYI\nQLeA/NZlMbTCcKodvVRb2DP41L/Guy+zfj8tyRgMHz17IvKr83PPf7Nf0RJt\nreDaiUBT38FoI/lS5tiJIlv1z248e9qhc2DifbOJM7bpvCw6yw9keBogditS\nG9wZ\r\n=pU3t\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCt0gO0mB61Y8/ZmdnjPad3XsEKvpel2vrelRRj9t/ZvgIhAJtZbjDQN8X0ThRRLvbDOYdRylGfDDgMFe2KPgbtoaDf"}]},"maintainers":[{"name":"anonymous","email":"hotbelgo@gmail.com"},{"name":"anonymous","email":"rick.bergfalk@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ftp-deploy_2.1.1_1527096080255_0.23825998254899639"},"_hasShrinkwrap":false},"2.1.2":{"name":"ftp-deploy","version":"2.1.2","author":{"name":"Simon Hampton"},"description":"Ftp a folder from your local disk to an ftp destination. Does not delete from destination directory. Derived from grunt-ftp-deploy","main":"src/ftp-deploy","scripts":{"test":"mocha **/**.spec.js","test_server":"node test/server.js"},"dependencies":{"bluebird":"^3.5.1","minimatch":"3.0.4","promise-ftp":"^1.3.5","read":"^1.0.7","upath":"^1.0.5"},"devDependencies":{"delete":"^1.1.0","chai":"^4.1.2","ftp-srv":"^2.16.1","mocha":"^4.1.0"},"keywords":["ftp","deploy"],"license":"MIT","repository":{"type":"git","url":"git://github.com/simonh1000/ftp-deploy.git"},"bugs":{"url":"https://github.com/simonh1000/ftp-deploy/issues"},"engines":{"node":">=6"},"contributors":[{"name":"Rick Bergfalk"},{"name":"Ondrej","url":"https://github.com/der-On"},{"name":"keyle","url":"https://github.com/keyle"}],"prettier":{"tabWidth":4},"gitHead":"e56c84b854f69b10d0818ce1107a4790efc989fc","homepage":"https://github.com/simonh1000/ftp-deploy#readme","_id":"ftp-deploy@2.1.2","_npmVersion":"5.5.1","_nodeVersion":"8.9.0","_npmUser":{"name":"anonymous","email":"hotbelgo@gmail.com"},"dist":{"integrity":"sha512-6TnAhRkAjnr2hf1Q7/db5JLh2SEj+kPZyAEWmgmNFMb8rabvalamZ4ALtRlj04mEOadDyeu6CUvs6/hyT2pTnA==","shasum":"d8b4c6619f563eff189fa64ee1f5c8159ca15960","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ftp-deploy/-/ftp-deploy-2.1.2.tgz","fileCount":39,"unpackedSize":64959,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbQauuCRA9TVsSAnZWagAAn10QAKL+cdQzfmVNZtswrn2S\nyBtmZZc/h4qtIhR36g2Ji+lxFsxxJ+fOdZ6xm6yQx0d37VXZYLWqi0HOcVZT\nbn9UOvEPI51pbMzM4ZXXFVGHu3eaPH2C6HAhZQxo3z1xac1ZfgtKon4AmpTv\neMw2gtL4/JpgSRQ4DCumydhfehzuSEh5TwP0VC7XhoWqoeNrkz1mDcSDdQzG\n+jZf6c9lrK4PpEFjKafLLjxU+C0va5GQN8p9kf1lwIJrEJepFxkkX4jd85Oo\no3oAZE6ZpeuKcZ0PSIOwwzZFg5elxbmukgoVRFV4JuTvWCw1ZLht3pgmDfJ+\nU+/i3XAQPRNw36yXuW/ZbH8XIndyvm0s+jNoLmx7ibwTA+fVdkwk/7bgoXRb\nsU9VvkVRKnofIIkknjSnl5UZK5qBj9ydFLSEAIETGczM0/rHLo9jGrJ69NH1\ntHEULTd2PUJCDNwpDyMDpbftDJi9ySxFgiOt0qD0jFSnnh4jWKhaxfZfaeP2\nziQQI+4iz5U1t7lfOHvnWRC0x4owNyDx7k2tN1EqMWYjlNvG2lHQLmEF0BfQ\nizWrCkmCO51VrKqxkq4OpLSj5fSJPo9RhN9kLfR3shNVypafqr41b4+VjC29\n2ybVCv+gfswXlh9jXagUtqQe6UCDzhbx1HMK001wRU59eNuvfhqq+OrxJmRt\nVhVr\r\n=HYvw\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEDTH2Uv15aerSgtdS0PGyfSBkMkHao5MM3lifVWuWWlAiAgyWrxbxjjG+jKpX00vDdlfXF9QNGrWdsc+iuaGyVWcw=="}]},"maintainers":[{"name":"anonymous","email":"hotbelgo@gmail.com"},{"name":"anonymous","email":"rick.bergfalk@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ftp-deploy_2.1.2_1531030446203_0.14450707793724415"},"_hasShrinkwrap":false},"2.1.3":{"name":"ftp-deploy","version":"2.1.3","author":{"name":"Simon Hampton"},"description":"Ftp a folder from your local disk to an ftp destination. Does not delete from destination directory. Derived from grunt-ftp-deploy","main":"src/ftp-deploy","scripts":{"test":"mocha **/**.spec.js","test_server":"node test/server.js"},"dependencies":{"bluebird":"^3.5.1","minimatch":"3.0.4","promise-ftp":"^1.3.5","read":"^1.0.7","upath":"^1.0.5"},"devDependencies":{"delete":"^1.1.0","chai":"^4.1.2","ftp-srv":"^2.16.1","mocha":"^4.1.0"},"keywords":["ftp","deploy"],"license":"MIT","repository":{"type":"git","url":"git://github.com/simonh1000/ftp-deploy.git"},"bugs":{"url":"https://github.com/simonh1000/ftp-deploy/issues"},"engines":{"node":">=6"},"contributors":[{"name":"Rick Bergfalk"},{"name":"Ondrej","url":"https://github.com/der-On"},{"name":"keyle","url":"https://github.com/keyle"}],"prettier":{"tabWidth":4},"gitHead":"4251024d3ac13fef79d6161cd63350512fc2dac1","homepage":"https://github.com/simonh1000/ftp-deploy#readme","_id":"ftp-deploy@2.1.3","_npmVersion":"5.6.0","_nodeVersion":"8.11.4","_npmUser":{"name":"anonymous","email":"hotbelgo@gmail.com"},"dist":{"integrity":"sha512-haVrbc1MTRv2hUuuEhn3n/OMHdlQADY2uoBS8XJUawaUyCqVzJcpU6i7o/wO3+JDlvFjPQ0V7aqHQtSJ4NUAeg==","shasum":"71d9759117621e220e9c4b35bca1d9a067de5a38","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ftp-deploy/-/ftp-deploy-2.1.3.tgz","fileCount":40,"unpackedSize":68075,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbnf2UCRA9TVsSAnZWagAA6gUP/1IXcOIHkNj5iXLehZ2G\nQELHP2YsirwQ4J1wwbw0b5elEf6XyQH3zCNDq2TSiyju0nJjW2Zwc0DR12d7\nplTsipPJUzKTJJh9pS2Lo4hbD4dmHnti39BkhOT+VYKIXniFR//4xpV3rCtl\npZ/ZNEsSykVyjuBlr7IWphjWZ5kn40Nq163S/Szc+Q9K3iv8qRCgzjs7F52D\n3M3QVYah3IKHFwsSLFk1HL8K9nPZEymF6AP9rMUz19f412cuS/MiX0l6SX/a\nQdMcbSQ6wllhN+d/mDrMGND5CtLDShJJj5wB2KE17/4/OEE9WvJ079uPLbNV\n4aKCMknbonau4seHUUR0Otjrcmq/8lw8niPwxLnu4gRA6IQ1H48aUlAgoDqy\nAH90MKcxD9lZxjf/LnDVoWQ58qm1whDcnA4PboQ0ihE2A30cvenwLF6BM/0V\nQgqfbfIW0Ziv6kgcw6/FVau/2Hwf2oB8a2rfkeYyZCbZOi9vCriBQD39X7G/\nPF1Jo6oNfcukqfobPnu7/4rXZ3B9qL+epHaULJ3CP9xSou+rvUwYCx6gVCvj\n6nErZNQU525yhrYWMh/6OYxOFrVzztOiQdyy8UXnzun8uVw63xBkV9cw2vCh\ngif7EsqjEKzedSsWIgZqljei9Pjxk4PtUgQEbzOaxaZ8oVzK2cESkRA+arMb\nhIDj\r\n=MLr3\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEkM59BD+nQO63IojDVZK1OfxHE+1RfRX3e7J+cOBdZdAiBNyA6G+4fPk55/HaLUz0kjSCOK1bpifS3nVCDgQkIsXQ=="}]},"maintainers":[{"name":"anonymous","email":"hotbelgo@gmail.com"},{"name":"anonymous","email":"rick.bergfalk@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ftp-deploy_2.1.3_1537080723506_0.6698383961645817"},"_hasShrinkwrap":false},"2.1.4":{"name":"ftp-deploy","version":"2.1.4","author":{"name":"Simon Hampton"},"description":"Ftp a folder from your local disk to an ftp destination. Does not delete from destination directory. Derived from grunt-ftp-deploy","main":"src/ftp-deploy","scripts":{"test":"mocha **/**.spec.js","test_server":"node test/server.js"},"dependencies":{"bluebird":"^3.5.1","minimatch":"3.0.4","promise-ftp":"^1.3.5","read":"^1.0.7","upath":"^1.0.5"},"devDependencies":{"delete":"^1.1.0","chai":"^4.1.2","ftp-srv":"^2.16.1","mocha":"^4.1.0"},"keywords":["ftp","deploy"],"license":"MIT","repository":{"type":"git","url":"git://github.com/simonh1000/ftp-deploy.git"},"bugs":{"url":"https://github.com/simonh1000/ftp-deploy/issues"},"engines":{"node":">=6"},"contributors":[{"name":"Rick Bergfalk"},{"name":"Ondrej","url":"https://github.com/der-On"},{"name":"keyle","url":"https://github.com/keyle"}],"prettier":{"tabWidth":4},"gitHead":"beca138a847c3298aa5f9340e26a3f15d16b8438","homepage":"https://github.com/simonh1000/ftp-deploy#readme","_id":"ftp-deploy@2.1.4","_npmVersion":"5.5.1","_nodeVersion":"8.9.0","_npmUser":{"name":"anonymous","email":"hotbelgo@gmail.com"},"dist":{"integrity":"sha512-JV83rXPgcFU0N2Ot6nnNjf+HLVdFf5dvld0xYpU/IjV6WMe8IP68fPo6TKHynG07DrPusf5+2QkRDwYAv9j8gQ==","shasum":"84afb3ccf429412d3d0943fe101c9bb5a60488d0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ftp-deploy/-/ftp-deploy-2.1.4.tgz","fileCount":40,"unpackedSize":68240,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbxLUVCRA9TVsSAnZWagAAytQP/1lfi1ZB1pH80vWbqDxb\nR6PpU3EWhQwPkzmWJDjhWno+HHHsv3ouNIdQ+pXWjIH8RLXD2fApia5IBT5K\ndGVrCxP7J8acVOXhc1EiYBBtChw2XrNLOqjSli9uQCz3oxTUtt1dgxui/16f\nT4uxLQdnqk3i2G4syNpVkT5FX19uowRP9ZCz2tKfDwvGNQ8YB3Y1Hylo4H0f\nwvroMqJwyVyGWt/w1rbFejQKuwA36Loor8bJDTJgAZHUDWkkEZXvMJ8bbTUE\nkNHbka4YnhnsadnivWySLKLSeSgQN+frbUInQs+FzoFQaR+VvtpCom8L1mkn\nudEqk8jOUBFmhSAj/Ka9u5V14557u/Ko3QBV7M8HH4wRyjquXTPrfchCmIYE\ndPH/hC8rKJFcvPQRefr3t/gaCVJ3s9qbsMYxxdlyqEfvna0i1lNYtO71ZlQM\nC2+v4WBpcQ5pr/2tSR3VnUACPM4XOFp1MYf2LuMs5Cd6RjqCXE31RyAB4wml\nDRnRl5sT6ROmyAs+4zvfhf30nZ3QDPGQCvmwc4iVZxQuO+TIPtYNiToFCSlN\n1GNtXQPF+YfQUIMXUnxF1cUtLwFhQOibnk5SgAvg9idFTKnzEwNp352Y4iaz\nenOieF62tjN0eJq8D9Cfg0DrIamlqciTrcEYfpUdyy1eht4Q4DkxOLRvIkMV\nUdHJ\r\n=vXe1\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIA4U+rP55sCEOurM18YJGwJUmg+it/VpRFyPSzws2729AiAuGtMYMBDANOEYLxSulWG7lUAdlI+7BklWEbVmCYjh9A=="}]},"maintainers":[{"name":"anonymous","email":"hotbelgo@gmail.com"},{"name":"anonymous","email":"rick.bergfalk@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ftp-deploy_2.1.4_1539618068239_0.4696945510467796"},"_hasShrinkwrap":false},"2.2.0":{"name":"ftp-deploy","version":"2.2.0","author":{"name":"Simon Hampton"},"description":"Ftp a folder from your local disk to an ftp destination. Does not delete from destination directory. Derived from grunt-ftp-deploy","main":"src/ftp-deploy","scripts":{"test":"mocha **/**.spec.js","test_server":"node test/server.js"},"dependencies":{"bluebird":"^3.5.1","minimatch":"3.0.4","promise-ftp":"^1.3.5","read":"^1.0.7","upath":"^1.0.5"},"devDependencies":{"chai":"^4.1.2","delete":"^1.1.0","ftp-srv":"^3.0.4","mocha":"^4.1.0"},"keywords":["ftp","deploy"],"license":"MIT","repository":{"type":"git","url":"git://github.com/simonh1000/ftp-deploy.git"},"bugs":{"url":"https://github.com/simonh1000/ftp-deploy/issues"},"engines":{"node":">=6"},"contributors":[{"name":"Rick Bergfalk"},{"name":"Ondrej","url":"https://github.com/der-On"},{"name":"keyle","url":"https://github.com/keyle"}],"prettier":{"tabWidth":4},"gitHead":"f31f41e94d78b682f9371fb2f1b08b8339b594a8","homepage":"https://github.com/simonh1000/ftp-deploy#readme","_id":"ftp-deploy@2.2.0","_npmVersion":"6.4.1","_nodeVersion":"10.10.0","_npmUser":{"name":"anonymous","email":"hotbelgo@gmail.com"},"dist":{"integrity":"sha512-ESAPx4nk+sO+w9gohBFe/sQyFmhBWZ5EEdsa0rMxLg6Q0PVtTmXfDC4D8XboEDtdXJSrwp/Yc2t/pqOWU+kd6Q==","shasum":"bb9fe49673b5a72e7af8657dce7a42b2a49fe5af","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ftp-deploy/-/ftp-deploy-2.2.0.tgz","fileCount":39,"unpackedSize":68664,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcCUvCCRA9TVsSAnZWagAAnsAP/jccdipvdl5g9U/8Ukyj\nTRMz7RyWlJdPqtJIU3DeZVjedLvTBX0tYzFPy2RMTYBCeQvmYnOe1MXNJvWn\nLTrE7x9CpDiXr70GQoNc5RvV0wb4dQnsRdHAiz3MfmygxM1wJ7CjY/1A/Xfo\npDlJvH2cCGvbgF3cQwwfJOqFP6RDuD7c2p3DgKSB01ySynH8no8HI/lYrPt0\nnR6hArzi8VpBUBEqH1RQuxLMQ9RbuR6gLZDsSIC/AxffL76p0+SGRt2lIRd2\nS/ZqyPbuoAEgdJ15IDfX8kKJMXVsl5ejAJKNrN6Oin+TF4n8N7L9+G+DFibI\na8RkmJ7j9SCtTop2i/oVzIMUqal52kUkWlOB/v4FUmeBnyeqVluhuuu05ugi\n/aWslZAc9GksYtT3PKOnVh2shrqetzLAiyR+FthwEynrZQXqoXsBuCay89mq\n7dP98MV+iMLntnwXrboq+IDlK9yzvf7Xot3yBt6e68xDkOm5iI+Jyr62QkmA\n4+tiCXpc1Tz/ZfkKkw8CyLuyhB+n40Z9dHapfQpfw+UQSeiNAVg2Eug62Bi9\nCStKbCswnX58J9d7cxfvf+S1wx3Vj7AVErSBg/GiJ8T7tnoaxKmhA/0q6Phf\njqikQwFl4acJEybeDmojgR+RNb+uCXd3IcJRJ5+bAxvrd9dWBCFWHAfjTQd5\nT9sP\r\n=Qyex\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIB7YED89UskLNVWgQA6rBZB5AxbX2VY8YuRDCAdIufTVAiEApS145h72PZ0sZe2uwHxZzcsnuhvScELLIrxPunSdVps="}]},"maintainers":[{"name":"anonymous","email":"hotbelgo@gmail.com"},{"name":"anonymous","email":"rick.bergfalk@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ftp-deploy_2.2.0_1544113089707_0.2787392323344946"},"_hasShrinkwrap":false},"2.2.1":{"name":"ftp-deploy","version":"2.2.1","author":{"name":"Simon Hampton"},"description":"Ftp a folder from your local disk to an ftp destination. Does not delete from destination directory. Derived from grunt-ftp-deploy","main":"src/ftp-deploy","scripts":{"test":"mocha **/**.spec.js","test_server":"node test/server.js"},"dependencies":{"bluebird":"^3.5.1","minimatch":"3.0.4","promise-ftp":"^1.3.5","read":"^1.0.7","upath":"^1.0.5"},"devDependencies":{"chai":"^4.1.2","delete":"^1.1.0","ftp-srv":"^3.0.4","mocha":"^4.1.0"},"keywords":["ftp","deploy"],"license":"MIT","repository":{"type":"git","url":"git://github.com/simonh1000/ftp-deploy.git"},"bugs":{"url":"https://github.com/simonh1000/ftp-deploy/issues"},"engines":{"node":">=6"},"contributors":[{"name":"Rick Bergfalk"},{"name":"Ondrej","url":"https://github.com/der-On"},{"name":"keyle","url":"https://github.com/keyle"}],"prettier":{"tabWidth":4},"gitHead":"e728935b84d2491c0e6736b50d915e63fc8af137","homepage":"https://github.com/simonh1000/ftp-deploy#readme","_id":"ftp-deploy@2.2.1","_npmVersion":"6.4.1","_nodeVersion":"10.10.0","_npmUser":{"name":"anonymous","email":"hotbelgo@gmail.com"},"dist":{"integrity":"sha512-X/g9OJsNuOXBPQYxqoek2/y0qE7Zn/QeGL+4GVUWr5ovrlx51EZ1kPhC+EYiN/sKx3M10vIbpmw6b6kwR6GbDA==","shasum":"dbf7c235d5ccdf1cfe6be6930136d9daecd827f5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ftp-deploy/-/ftp-deploy-2.2.1.tgz","fileCount":48,"unpackedSize":68811,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcC4o7CRA9TVsSAnZWagAAYJ0QAIM23pJnCBjOUinMeG71\nclG9v0CLMSkjBkleydnXw+2UI6TcFSDhVIJU/nr6N1YGmBS++FVGcg+Oprbq\nv2TmwpyEpFmNFlSrn6I9g9tyVkYjh/nY7wf4ee7m3dfdKQRh7k7lOWeT43Jd\nK6fdz4s4kcfYsMjzp6pTZVbpFNyIj5VCi+H/L1zvyeVbhtQg3KTUyoTRxOeP\nvmjNCsDvbnj2XQmyq+1E9Pmk0uFhCzDmjGfeqaeDCevJWNObVh4B8q8nI807\n+HteXptO/9Px6D6LCFEjTdUSkISnOKShdAjxRBQChGOK1XhgqWKhEYn4SLRr\nAPDI8JKwv+2dUgYjmDOnU2mKRMGy788RkO3KsLNQYSDlYXkwX9URgPEW9Vbi\nd+F3KBpk4gKTcWzXxza6NLhQu7vWqNuqmDX/tLGAxLSFj1mF4IzUQZKSuzzG\nUtuNeUBE9osAjrIkO5ZO/BQH0hJRGjy6ODBsCQYCVsgnsGt+8us2M84yEpMn\nSzwkTi+S8wVuul8/BNT2A0/CBrNMuXtBtVL7Sqe81FmC9WC0mJZYUeBZHG2y\n/aU60fYxrRPso8PRH4As4q98G6JNDAYuEVrueosDkqxgw9i0iO48oVSKbud6\n8OyhD2MeQD7fah8LM0w4R53Ie8Ngcg9pc/eGYUtgvAbS6mD9yfsMyhLu1oZu\nWmuj\r\n=xjme\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDFdF0Cuq1w7VXfJkn4eSsmeva1onlMH/R43cY/YQC1QAIhAOR7LPd3E2GeBVjQqBdeWbvknCsHiQC8q+SvHVnfkyWc"}]},"maintainers":[{"name":"anonymous","email":"hotbelgo@gmail.com"},{"name":"anonymous","email":"rick.bergfalk@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ftp-deploy_2.2.1_1544260154841_0.5805543883742925"},"_hasShrinkwrap":false},"2.3.0":{"name":"ftp-deploy","version":"2.3.0","author":{"name":"Simon Hampton"},"description":"Ftp a folder from your local disk to an ftp destination","main":"src/ftp-deploy","scripts":{"test":"mocha **/**.spec.js","server":"node test/server.js"},"dependencies":{"bluebird":"^3.5.1","minimatch":"3.0.4","promise-ftp":"^1.3.5","read":"^1.0.7","upath":"^1.0.5"},"devDependencies":{"chai":"^4.1.2","delete":"^1.1.0","ftp-srv":"^3.0.4","mocha":"^4.1.0"},"keywords":["ftp","deploy"],"license":"MIT","repository":{"type":"git","url":"git://github.com/simonh1000/ftp-deploy.git"},"bugs":{"url":"https://github.com/simonh1000/ftp-deploy/issues"},"engines":{"node":">=6"},"contributors":[{"name":"Rick Bergfalk"},{"name":"Ondrej","url":"https://github.com/der-On"},{"name":"keyle","url":"https://github.com/keyle"}],"prettier":{"tabWidth":4},"gitHead":"d9070cd40df71b6aaad1d17a4831193d5b455a3e","homepage":"https://github.com/simonh1000/ftp-deploy#readme","_id":"ftp-deploy@2.3.0","_npmVersion":"6.4.1","_nodeVersion":"10.10.0","_npmUser":{"name":"anonymous","email":"hotbelgo@gmail.com"},"dist":{"integrity":"sha512-xdNTL/suh5BSxjuJr7/YCiZVqzTNmgUj6FN1Vesv4pTONo5YTBc/CdjZO3KvAVGawmQRn2Tlkoy3shcd0Mvlmw==","shasum":"d275626a251928897e7d7b329109d6af43e5c740","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ftp-deploy/-/ftp-deploy-2.3.0.tgz","fileCount":22,"unpackedSize":26774,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcHTDzCRA9TVsSAnZWagAA7KcP/2LxhM+HpultaqJpQnSP\nWoCbQRyZlWSjxCc9tLTKmdNjNnbbvt9nfLFXlcSHkGuollq+TKe2vtijNOud\n0g/IATS3kVJ9yAMm8YiDfdf2w12ecH7DmnqrQFYFttrmTfJphUZenLGWEclx\nn0kbroeqaJdmj0YhM4eJ7a9+x05RvkQ8CUE872Grz5r4ycrrQZGIBbzVYvgA\nMI8j8moLobohc8XpCZV8xye5b4Co5pljUHT7zzlGEZDLL0Y8CSklJmFj6tL/\nM2u1D5CQnHk08uwyhBL8HgD8znk6MxR88C3PIXQVzYFZaufk4A6Kw3jKVhvd\nd3+rTIRqeH+sqnAhDCfdeWvRD+wM06bUphR6c7/lqWaLaq9yCm3FnSKFUWzA\ns8/2Qw//w32pnXSd5uShEmh4B40Jp2hDhX+0VXgB8WSt2MQLdl8eA8mfKctr\nYOFPkRFjQd2/ydLndpFTgYCFXLB6wz83N9WDbABdEHloEvwvXptygQk4BS/J\n6qE5HRziMYfcmajrsFRvy2D3jU7XvjEaSieNwphs14xCS7vwui1OF8a6jNfA\nnfzsYUnopm7SKQvReFU9HIvQoBgWeWIrAnRD1zG9JymGN7rbgGYX+egJ4wil\n29T/ZToQhMHtmnIAkmQTtI0LH1HQ84jhjceJmVOqkv8T5fSrdveOv5S8ONje\nH9C3\r\n=KnAb\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICZsz/UX958rfljXkxF2+tp2v/mjPcgJC1mKCgTj2aE2AiB53rtN2j5bdu8rNPo+Uwb+F2PAxakH20RJOYX4rPl5zg=="}]},"maintainers":[{"name":"anonymous","email":"hotbelgo@gmail.com"},{"name":"anonymous","email":"rick.bergfalk@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ftp-deploy_2.3.0_1545416946831_0.02022047959641582"},"_hasShrinkwrap":false},"2.3.1":{"name":"ftp-deploy","version":"2.3.1","author":{"name":"Simon Hampton"},"description":"Ftp a folder from your local disk to an ftp destination","main":"src/ftp-deploy","scripts":{"test":"mocha **/**.spec.js","server":"node test/server.js"},"dependencies":{"bluebird":"^3.5.1","minimatch":"3.0.4","promise-ftp":"^1.3.5","read":"^1.0.7","upath":"^1.0.5"},"devDependencies":{"chai":"^4.1.2","delete":"^1.1.0","ftp-srv":"^3.0.4","mocha":"^4.1.0"},"keywords":["ftp","deploy"],"license":"MIT","repository":{"type":"git","url":"git://github.com/simonh1000/ftp-deploy.git"},"bugs":{"url":"https://github.com/simonh1000/ftp-deploy/issues"},"engines":{"node":">=6"},"contributors":[{"name":"Rick Bergfalk"},{"name":"Ondrej","url":"https://github.com/der-On"},{"name":"keyle","url":"https://github.com/keyle"}],"prettier":{"tabWidth":4},"gitHead":"92f6736be8c7ff5b6211979aa21d6a56e71744ad","homepage":"https://github.com/simonh1000/ftp-deploy#readme","_id":"ftp-deploy@2.3.1","_nodeVersion":"10.10.0","_npmVersion":"6.6.0","dist":{"integrity":"sha512-au9oHCbOZp+FCHjOhz7lNHkLlFfCu90cpb1CVTJL14NynrmX2xLILD0VQhx0zVaiLBRUx1OdcTwTjITiDcysYQ==","shasum":"788fbb8f71a6047535a8499417ebc81351b8cf19","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ftp-deploy/-/ftp-deploy-2.3.1.tgz","fileCount":22,"unpackedSize":27351,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcYIt+CRA9TVsSAnZWagAA27IP/061lCQb07A1goBY1mn9\n/S4J/jATGeTm1hrWQmxZRNdpaoCio9RytaosmasF7pKAKlKII1FuB3re32mq\nzad5YEqzI20aPLwIwPAgYrAHxiixdWplIQM7cDhOzyOYcy2YNs/VKy9XNnKt\nd24S5LBBc2tUj4/xNxwO0smctFYAhDjNYGFizSfkl2IgJBB1t8X6fdsnWbml\nLR9rQzbuBol92HQF+6oVM8UD3Rj3M07igcMYjc2HAqKCDn4rqYndkrPGgvWT\nCg+xUkMyLBttkOm+nxcLQhPDgLjMOoifK+WM3VLzgxKTV3JIOmlwOoK/Yk2W\nxBGAvGKj8ZtAPbzmSP87SxLCiPy0RJxSSUB7mcWW0EnOfYhhCY97Ti4K6a+U\n+GTtyaDzrJvXjcGN1Ju6lge8/qruYztVbP7zPNERhW3EIR3VdRZIJcw35Nns\nqd6pV8ChJzayg64SvBSkmCk63Owxi4yeSwXrq/Ut/slxxQoi1M+4womiO5na\nK0OD6jwao0wnVgLGEFri6y1/WKDqsFQq6YiTqnNIrXW7f0uvuJj16Ng5ChZ9\nUmp9Xf5Tqddrxp9LILL3w7t0fSbdJpeQ8dsck8vh9SM6ejZkS6T3tq44Rvqa\nDycup2Eqqn18NMH4gEYPSHxd1P++OyzCGdGlOneu1Gm8+TSRZjR/b5pDHSL6\n+2wr\r\n=+Kl8\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCZJNZP85ENVG+EekFqPx6XblR/cQx6opx6FARUdorYDQIgZwIeNau77thVc/j+rnphZSeOxl2RexY4bp/gZnhNqag="}]},"maintainers":[{"name":"anonymous","email":"hotbelgo@gmail.com"},{"name":"anonymous","email":"rick.bergfalk@gmail.com"}],"_npmUser":{"name":"anonymous","email":"hotbelgo@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ftp-deploy_2.3.1_1549831038165_0.843241413802394"},"_hasShrinkwrap":false},"2.3.2":{"name":"ftp-deploy","version":"2.3.2","author":{"name":"Simon Hampton"},"description":"Ftp a folder from your local disk to an ftp destination","main":"src/ftp-deploy","scripts":{"test":"mocha **/**.spec.js","server":"node test/server.js"},"dependencies":{"bluebird":"^3.5.1","minimatch":"3.0.4","promise-ftp":"^1.3.5","read":"^1.0.7","upath":"^1.0.5"},"devDependencies":{"chai":"^4.1.2","delete":"^1.1.0","ftp-srv":"^3.0.4","mocha":"^4.1.0"},"keywords":["ftp","deploy"],"license":"MIT","repository":{"type":"git","url":"git://github.com/simonh1000/ftp-deploy.git"},"bugs":{"url":"https://github.com/simonh1000/ftp-deploy/issues"},"engines":{"node":">=8"},"contributors":[{"name":"Rick Bergfalk"},{"name":"Ondrej","url":"https://github.com/der-On"},{"name":"keyle","url":"https://github.com/keyle"}],"prettier":{"tabWidth":4},"gitHead":"6799a1c2b7da5f666abb0b8f43d74d371b795232","homepage":"https://github.com/simonh1000/ftp-deploy#readme","_id":"ftp-deploy@2.3.2","_nodeVersion":"10.10.0","_npmVersion":"6.8.0","dist":{"integrity":"sha512-DDZdOdGnMpcbH+126wwgup6TmJSirqW4Q+5xiti6w/w6luwG4BnCaZ8/mSvM5YoVNC7youGpjwALwxDAN9NAhQ==","shasum":"b26bd51f051503b9f2f3bf2fc8c4b638754bb3ca","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ftp-deploy/-/ftp-deploy-2.3.2.tgz","fileCount":34,"unpackedSize":27510,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJciobrCRA9TVsSAnZWagAAf9IP+gK4INc4t6Ilg8JVs3Jg\np3/WVmRTqVxiqDcMT0uUaDGyciYcst8KLlBQGHpptnmVYAApag7UeoeoQ9JK\nnhr0SbujDJbiJDJBPr4Zo1kqLmEWYiRXmMkkUDztMlHSbB1qZP6XBXly+CA5\np5jz91HzpMxMH25UTscoodhzXBxYkjbD8/Yho3ec4wluoSUe1Y9qEqglkjcP\n75vH+E9EYQXIsAxtqi3WRzb9D3LV27ufw4KQ2tb/8JIn8EWjBtxCJBkihhNf\nvd1oq70IZqIx/2RSh8UfFm9bxIJXsrpq0VpgyowD4F9BHORzZjJEEij064V2\nTXvcHqTa6L8HSc8hdYsCPQ57TXziwrJhhlgMhIAd5QVF8ghx2ko8Fleivgr3\nhRIYs9QQAtKx/kEyJ2sFld7MsPqIGU4RSJrqomSL4jtj6V4tOdbZdFS1dCHz\nuD2iuLM7w4a9Bwr36KcRsiNmRwG8Lw47JCwXq85AnLxpTfyjOeW0rp+kSAx2\noDPYjsJyYIHYQ7v3mOkILWcsMiqZW0DgK0NDOEGR07JEJKCI6MDu5fwidI+Q\nRA3aYbK71/n4iVPCbLE5dB9emrNvxBzGzTNubGGXtY7qoVahWOn8FXtHyo0F\nD62kIcXjpQl6NZpZ6z55RNmLBHdT0fIcBtvrkLsikuIhmuKmpFCk1Co/kec1\n3DOm\r\n=Uk9I\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHuJntTbEYe6z241Ip+TCAwwgPazHP/SSwbaOIh8HqitAiEA+Y8DbTJFaqJE0qQKZsER+djZgVhc8n1+HhxTIdNUiXI="}]},"maintainers":[{"name":"anonymous","email":"hotbelgo@gmail.com"},{"name":"anonymous","email":"rick.bergfalk@gmail.com"}],"_npmUser":{"name":"anonymous","email":"hotbelgo@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ftp-deploy_2.3.2_1552582379034_0.7292433875103721"},"_hasShrinkwrap":false},"2.3.3":{"name":"ftp-deploy","version":"2.3.3","author":{"name":"Simon Hampton"},"description":"Ftp a folder from your local disk to an ftp destination","main":"src/ftp-deploy","scripts":{"test":"mocha **/**.spec.js","server":"node test/server.js"},"dependencies":{"bluebird":"^3.5.1","minimatch":"3.0.4","promise-ftp":"^1.3.5","read":"^1.0.7","upath":"^1.0.5"},"devDependencies":{"chai":"^4.1.2","delete":"^1.1.0","ftp-srv":"^3.0.4","mocha":"^4.1.0"},"keywords":["ftp","deploy"],"license":"MIT","repository":{"type":"git","url":"git://github.com/simonh1000/ftp-deploy.git"},"bugs":{"url":"https://github.com/simonh1000/ftp-deploy/issues"},"engines":{"node":">=8"},"contributors":[{"name":"Rick Bergfalk"},{"name":"Ondrej","url":"https://github.com/der-On"},{"name":"keyle","url":"https://github.com/keyle"}],"prettier":{"tabWidth":4},"gitHead":"fec29764eddb7a5689c25aa43804ce9e4c5b4120","homepage":"https://github.com/simonh1000/ftp-deploy#readme","_id":"ftp-deploy@2.3.3","_nodeVersion":"10.10.0","_npmVersion":"6.9.0","dist":{"integrity":"sha512-JUpl90GX33q0QGfr8183EKhG00B+XI7HpdGrUPoV4izIxFUo7tQWeqmC7UyQZ3SrTSeO/+v47A8IlgolhSjSEQ==","shasum":"ea1c3be19533bae49fd27d3983b8d7b7e2a4e812","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ftp-deploy/-/ftp-deploy-2.3.3.tgz","fileCount":21,"unpackedSize":26785,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcoGBJCRA9TVsSAnZWagAA5x0P/RSZZqVUrtgNOuly+Waq\nk0JJfSHFhr0fSyhnB7zngjh58ZGnUswRcBSNVD8rFv+V7qKMw4Wz7Z+KnQ4V\nCwAZcd1EoZNzJUtl9ZgaVCmDLzyfWgl3Js+AiPML484hW3JiQGa3cUhySaUN\npAzkWgR8nCnENGkF8jXiQwXRssaAcR/szwl8POLyYMxe97EqMBWj/t5U4Mij\n/3Cjb8vaSJwGYNj9f+PXifDIqwz4cZWcpeJRmCZ4cMY8/X7yjT6hSBJgZUz6\n0O8KnOXB1tMMNkvZN7BuBHvU/rFXf1kOKMHHJA3v/uK+p4QaqcD/gtyiRZuW\n/jPIrHAGpIhc9Frnl9MZCOxBv4G5WibIoqFwlcz0Sa0oMmYeld666gJgM0Hi\n8G+iQwy6A5tmSezK237MXS4zT5x2u78MvFbtIuozzIdg5IB5Ljn0tdsgrfex\n9U9upW8zSkUQcGqU2WvzukDaNZuVGjGL0tl/cn3ECOek4LIr2aRuqsZS5DsJ\nbcHEDnBFbcyExRq6MAo8haN86d7qBYFEQNnt7nimsKE3cPTQzFCw8nGI+ZoR\nb+wYntbjYQ95m4MsI3hhFIBkZmuJ0qYgVObElLmv3l/DBTz1qzy6H59O4MdO\nK04nc6oSG7+nfgiAPH4iVW3KXdPU5hGdR56xBZMkzDe1ynScQzf4wk4e10Z3\nqnoY\r\n=wPe1\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC1pwWVSAqMm99CHhwALM0/2mIpgFLqTUk007ag3D7RUwIhAPPHH1Gl8evEMJ3J3qPo6/oDZDFxtBYSnXg2MpCCnasv"}]},"maintainers":[{"name":"anonymous","email":"hotbelgo@gmail.com"},{"name":"anonymous","email":"rick.bergfalk@gmail.com"}],"_npmUser":{"name":"anonymous","email":"hotbelgo@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ftp-deploy_2.3.3_1554014281245_0.2011406438058363"},"_hasShrinkwrap":false},"2.3.4":{"name":"ftp-deploy","version":"2.3.4","author":{"name":"Simon Hampton"},"description":"Ftp a folder from your local disk to an ftp destination","main":"src/ftp-deploy","scripts":{"test":"mocha **/**.spec.js","server":"node test/server.js"},"dependencies":{"bluebird":"^3.5.1","minimatch":"3.0.4","promise-ftp":"^1.3.5","read":"^1.0.7","upath":"^1.0.5"},"devDependencies":{"chai":"^4.1.2","delete":"^1.1.0","ftp-srv":"^3.0.4","mocha":"^4.1.0"},"keywords":["ftp","deploy"],"license":"MIT","repository":{"type":"git","url":"git://github.com/simonh1000/ftp-deploy.git"},"bugs":{"url":"https://github.com/simonh1000/ftp-deploy/issues"},"engines":{"node":">=8"},"contributors":[{"name":"Rick Bergfalk"},{"name":"Ondrej","url":"https://github.com/der-On"},{"name":"keyle","url":"https://github.com/keyle"}],"prettier":{"tabWidth":4},"gitHead":"f1e8c38faa59bbcb49d92f80f2e938bf1b1828da","homepage":"https://github.com/simonh1000/ftp-deploy#readme","_id":"ftp-deploy@2.3.4","_nodeVersion":"10.10.0","_npmVersion":"6.11.3","dist":{"integrity":"sha512-+td7PdOdzW1T+4XWu+EBankP9H4IeUhKvAB/cN/vs90nFe8j4UcjhuVYIX0FzS50F21OcVAPgxzcdavvGeRlbA==","shasum":"4f35b864b364917e7508dbb4a8e44a1e04dc1857","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ftp-deploy/-/ftp-deploy-2.3.4.tgz","fileCount":24,"unpackedSize":27481,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdmguICRA9TVsSAnZWagAA+zYP/AqrO/W1LNO6kyKw9CwE\nmTJ+62QjazMzR2/otDEAi9gpL4vNU6GGTGA2SHOr+iFRwo+d8t3RmNqHZAgL\nR+vqP7zHn7TZGumbq5I05htS9wijCAj07JzTbfmXQXYK3h4ZnLUHNEknwD3m\n5olK/n/31qdpoOCq+t9zPlCf+w2Cu0JSdz7dGCPl9kZVtNDA9jZQcgCdAlS7\n4rd3pxCRCScjwpTLmhWcE5tLAuLUIDu8Po0DmZlLYfU1ktOOOmOkHeH1j3bE\nxFE9IjYQPjv8Z6ve0g2s5aFIfZMc2JybWnyuAaGE2Fdq2ia7YtwOa8l+2lT7\nPLou+JAxjTKMvyAZtCecKLMbEKy6aMFhpJX/0G5yfIVvwvPcjdyWTxBvdLmw\ntdIjoAJMZVCW/jyCax3BZ21GmMTu0j44MTrfVEoZlOdqY5JdKVN9jfASRfJ+\nzOEZHHD2C3OfItvb5obZNrldCqntD552j3HDK8xk4yhEbi93zT4Dw5Q9AJfq\nXH26PW9ptwg2PcYT5ryc5lbA6wBwa3T6HH+mXjy1HTdum0sm/0fC1lJdr6JB\ncdX6+FjzxRFadld6sXCwsKQpFDYqgH6aHQ2qC5i6lLOlN3KkP7+p3bbj5AdX\n0GZHzRAJsKCvHZw8PBGBNBknwKE8k2G311ghS4AxO6hx/Npp2s+bN9VWougO\ny8RV\r\n=rQvf\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFmcV5FoS22Ug3U99tVtJa5IPy8w+aKwyne2gMZOEXfVAiBRkTDlYN6lF7Ughj/Iww5Do28K+9sdrONzi84k7QFXhw=="}]},"maintainers":[{"email":"hotbelgo@gmail.com","name":"anonymous"}],"_npmUser":{"name":"anonymous","email":"hotbelgo@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ftp-deploy_2.3.4_1570376584180_0.6517849353917047"},"_hasShrinkwrap":false},"2.3.5":{"name":"ftp-deploy","version":"2.3.5","author":{"name":"Simon Hampton"},"description":"Ftp a folder from your local disk to an ftp destination","main":"src/ftp-deploy","scripts":{"test":"mocha **/**.spec.js","server":"node test/server.js"},"dependencies":{"bluebird":"^3.7.0","minimatch":"3.0.4","promise-ftp":"^1.3.5","read":"^1.0.7","upath":"^1.2.0"},"devDependencies":{"chai":"^4.2.0","delete":"^1.1.0","ftp-srv":"^4.2.0","mocha":"^6.2.1"},"keywords":["ftp","deploy"],"license":"MIT","repository":{"type":"git","url":"git://github.com/simonh1000/ftp-deploy.git"},"bugs":{"url":"https://github.com/simonh1000/ftp-deploy/issues"},"engines":{"node":">=8"},"contributors":[{"name":"Rick Bergfalk"},{"name":"Ondrej","url":"https://github.com/der-On"},{"name":"keyle","url":"https://github.com/keyle"}],"prettier":{"tabWidth":4},"gitHead":"1155fcc33bcf4e3780670e40c5f2996fd65ffb42","homepage":"https://github.com/simonh1000/ftp-deploy#readme","_id":"ftp-deploy@2.3.5","_nodeVersion":"10.10.0","_npmVersion":"6.11.3","dist":{"integrity":"sha512-3q5ku+jOACgRD1J7lcpO5Mil2w3XzgDeq9IbzcGGWJqB6+7PqN8RcOkKYp1W1xbJ0kKoHlzzk3dncZNK8GHPaA==","shasum":"b42b7a359cc0c1c87ca60e74742974d19abc948b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ftp-deploy/-/ftp-deploy-2.3.5.tgz","fileCount":24,"unpackedSize":27481,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdmgzMCRA9TVsSAnZWagAAexgP/3BY/I5eKsYOqbxPREb7\nQ3l6fijH9bJUq4vCBdDDuAA0CfdoRtqyH2u38xu/NRMidKKzoa1Qev/4CifK\nfOtQRmBR6QldkfovPaOdSh29YjthDng14qt8bovWPXQdr84Jr8fY7hWfHrbo\n0skGLPmXsqFscV+RDW1N/s5LEro1up8aZQsWUJ7voKGU4xOWM1xOn5h1aGcr\n7+G4nJfuCQH6R2uvvLiQgsLlK7xs46iIQRcVkvxJe1sz62f1SdHKKjko5eKr\nN3NKpSwtLETNSjTaTNkq/9kqDVh/lNAou4TfG9MZNsGkvZkSeXPuf8l/ytE8\nbXLUPoMtbQiXVPZt+/Th0IX0D0Hl7uWlOQwgu+r7Bpfiaely2dMQiInizKDK\n0WRDlWOmkYbdD3TvL5R3ENeDF8Ox3HFwz9uBdR3x8K+3vWMOBzg3lCPA412m\nQEH37qowrJvh9EUE+orZcp7bwIkfT7LEkle/Ja0D5M3pfxhF9Zn94rxv8WaS\nzvjSP4YfjBGq1M77UygHXpyixA5/2Q0MRqHOBuIzj32L9i8rhtaBHYPletMf\n3R4r38b+tEuxmReOaDgCEQytbeg1gWPENEQhmLyRP2BU5AHyedJ3vTNAnEoZ\nK0hV6Yj8fdlcWTv809Tma4XC4wDoAFcrb1J0EGDQwscLudcadtsFh38760pD\n8/Rq\r\n=h8BV\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDhNYhrKWSaj+fQGt0Q1YCy5FrRGDA6L4UKSnLfht/OoQIgSCcpR9OS6PQLZgYTb9uu6G27TldyDLwlNfMEb4hVxgw="}]},"maintainers":[{"email":"hotbelgo@gmail.com","name":"anonymous"}],"_npmUser":{"name":"anonymous","email":"hotbelgo@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ftp-deploy_2.3.5_1570376907701_0.9360808303471859"},"_hasShrinkwrap":false},"2.3.6":{"name":"ftp-deploy","version":"2.3.6","author":{"name":"Simon Hampton"},"description":"Ftp a folder from your local disk to an ftp destination","main":"src/ftp-deploy","scripts":{"test":"mocha **/**.spec.js","server":"node test/server.js"},"dependencies":{"bluebird":"^3.7.0","minimatch":"3.0.4","promise-ftp":"^1.3.5","read":"^1.0.7","upath":"^1.2.0"},"devDependencies":{"chai":"^4.2.0","delete":"^1.1.0","ftp-srv":"^4.2.0","mocha":"^6.2.1"},"keywords":["ftp","deploy"],"license":"MIT","repository":{"type":"git","url":"git://github.com/simonh1000/ftp-deploy.git"},"bugs":{"url":"https://github.com/simonh1000/ftp-deploy/issues"},"engines":{"node":">=8"},"contributors":[{"name":"Rick Bergfalk"},{"name":"Ondrej","url":"https://github.com/der-On"},{"name":"keyle","url":"https://github.com/keyle"}],"prettier":{"tabWidth":4},"gitHead":"f1b085beb0046d756988f8d50cf68e16818296cf","homepage":"https://github.com/simonh1000/ftp-deploy#readme","_id":"ftp-deploy@2.3.6","_nodeVersion":"10.16.3","_npmVersion":"6.11.3","dist":{"integrity":"sha512-X4/LaHhyQuGNcu3U9mogEgNiktuYubVsFhZiP90mDfvb8UxUrveZ/ESzauX5dI1YonDZvRqJp25iJ1mYUMeyyQ==","shasum":"08ee8784fe77800a86af088d7c57af4d5c1c8cd9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ftp-deploy/-/ftp-deploy-2.3.6.tgz","fileCount":24,"unpackedSize":27565,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdvq2lCRA9TVsSAnZWagAAWVQQAI8hLQ62eiGW2dboPjXS\nbB6maATkc1Ywu3DbIluQPAtIzIV2uScpc1LXmtY7shVmZWsrhkWnhJl0FuYh\n3FY5E3QrLbflmiG7WV1l2lLZA1ZByqt48z0bKzBXi9OzOl53rQOX9ytfT4+T\n1T1THEX7YXQvFRXQGAoa2CDd8Qe7mUM3i2WuMmwYbElWKi+/vBsOVj0Tqbme\ngRYYc4aU991suq9tlJrFJh5y/gAcJ7w3eGRAyft7ML0x8uBshQN0nKnTYNQn\nm4ErJOC17MBt/Dg6qc0RxlNQYSFAZthULn63iGq3nDns0SeUwkQfaSdb0ce3\np7ap7KUCdI+oyyTic5U0I8f3CChuRdGXZQsVrWmsmQuaN4D0ulSp7WHknRWf\n5ljQwxwrmv/C1teKdxsiaPLjyFXyLR88gmFnBpZLAgqemCX3Cp5gnPC2BHwW\nstDRneq4dzQAraDzeakDExInLr9IoQWxeFnyV2TelnFQGaIcxaWwLEgsi5lX\nvdJigRyDPh64mwmeXdCpXsHAbRWLVYHlS57yL8LW5ovZhjTSZ7Nmip5/6zXY\nLaFWPxFqphJUpqwqDKvAa8nAq5pfRJuiw7y4ALDDKwgXxLyGHCih2yZnHdlk\neOnynMRnSnDMD7uqYefTj4y75+ljDYnBgU9t756HIq+CiFKy7OeMFJf8+YY9\nKCYK\r\n=hbfg\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDK2VPkq4paC5HY29R2dgKHnF5FnCV1O3OCbzUJO4c3wwIhAMckuvPdg86bkQxQDQOefHq5UZRNKv+uwIB2qWOabdZa"}]},"maintainers":[{"email":"hotbelgo@gmail.com","name":"anonymous"}],"_npmUser":{"name":"anonymous","email":"hotbelgo@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ftp-deploy_2.3.6_1572777381441_0.18741876567919324"},"_hasShrinkwrap":false},"2.3.7":{"name":"ftp-deploy","version":"2.3.7","author":{"name":"Simon Hampton"},"description":"Ftp a folder from your local disk to an ftp destination","main":"src/ftp-deploy","scripts":{"test":"mocha **/**.spec.js","server":"node test/server.js"},"dependencies":{"bluebird":"^3.7.0","minimatch":"3.0.4","promise-ftp":"^1.3.5","read":"^1.0.7","upath":"^1.2.0"},"devDependencies":{"chai":"^4.2.0","delete":"^1.1.0","ftp-srv":"^4.2.0","mocha":"^6.2.1"},"keywords":["ftp","deploy"],"license":"MIT","repository":{"type":"git","url":"git://github.com/simonh1000/ftp-deploy.git"},"bugs":{"url":"https://github.com/simonh1000/ftp-deploy/issues"},"engines":{"node":">=8"},"contributors":[{"name":"Rick Bergfalk"},{"name":"Ondrej","url":"https://github.com/der-On"},{"name":"keyle","url":"https://github.com/keyle"}],"prettier":{"tabWidth":4},"gitHead":"4aeb4c4af73f18165502629c1e8a9a235db64e25","homepage":"https://github.com/simonh1000/ftp-deploy#readme","_id":"ftp-deploy@2.3.7","_nodeVersion":"12.16.1","_npmVersion":"6.13.4","dist":{"integrity":"sha512-U1sCplhEGAaABFPy1vZ37xXJTHzu37lsPZsl4pGMvMnjc+WiBuRu72gSxufK3QLo+H9bkt4KA0PMs7tQ2hQm9g==","shasum":"06c6fe7550fc2dfed336f602937ea8caf1b275fc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ftp-deploy/-/ftp-deploy-2.3.7.tgz","fileCount":27,"unpackedSize":29392,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeiDmECRA9TVsSAnZWagAArCkQAJf2Yr3SBKaxSTxUJc0x\nbISE0b2MKgjKMF3vJzQ3Aw/IOHnP4AsMNK0+jIUAskJU9nwkHkYzsfHSz+Ab\nffmoq8h9gHx3Ev8o8gpsJTzNpD2urCkdw6fEWByvWDoV0B8TJlM1DIGh51Io\nVgj3FJIS40uHZRKnehNJf26Ay78OFv0oTnaDk4mW2+CuJ4M2xaZbsqO2QLIC\ncqVz+b6WtKj/4KXRm6wsRPmKVjEJNhbWomtX7MVenNp1fc8seK6y7BolTfxr\n5RxlUbILgCj+ewWDUto8IgbNq6MuLukDg2anowoqivBtr97XIAkf2wU1DyWD\n0dzGYmgVdJ+M8mvbxfMg+yikLfrBesp7ry9Yv9TysJvOwTTzS+oy3yzXbmYJ\nYWFDuNaXgiLGsvowhqWo9+heFXpN9dSKur4AEzYieGS1SbKuvF2EBzwzQHtC\nWXPVvWuoXPyBdHrGZiA0vCsou4+e8hfFSmmgwjs8FU/S6QSXJXofy9TSEYz6\niHWHKloCCfYd2m+GwxDShooo0XfhAPhdCdEtilr6S3Wee30UgCzD4gjamARX\n+H/1WlnK9yGoqtwA34eBPlU+xt89y/OjsnEwlXOcxcbZ6RedvfIO2N57Ohzy\nKJzBohtzu3Vs82Ja1otf6wx08vEJgK4qoUPTniZ80zuuZxZSos0o2x8oDzAi\n6KeP\r\n=HINN\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCID42ZLgbJnlrO3Kc5VZ4uqk8FoAJCVyg2UEUhqVIITdRAiEA/nIQvFceUR8wkoio/mE7D+PzcIJEczuSy5R83FZKSdg="}]},"maintainers":[{"email":"hotbelgo@gmail.com","name":"anonymous"}],"_npmUser":{"name":"anonymous","email":"hotbelgo@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ftp-deploy_2.3.7_1585985923816_0.3835504211720173"},"_hasShrinkwrap":false},"2.3.8":{"name":"ftp-deploy","version":"2.3.8","author":{"name":"Simon Hampton"},"description":"Ftp a folder from your local disk to an ftp destination","main":"src/ftp-deploy","scripts":{"test":"mocha **/**.spec.js","server":"node test/server.js"},"dependencies":{"bluebird":"^3.7.0","minimatch":"3.0.4","promise-ftp":"^1.3.5","read":"^1.0.7","upath":"^1.2.0"},"devDependencies":{"chai":"^4.2.0","delete":"^1.1.0","ftp-srv":"^4.2.0","mocha":"^6.2.1"},"keywords":["ftp","deploy"],"license":"MIT","repository":{"type":"git","url":"git://github.com/simonh1000/ftp-deploy.git"},"bugs":{"url":"https://github.com/simonh1000/ftp-deploy/issues"},"engines":{"node":">=8"},"contributors":[{"name":"Rick Bergfalk"},{"name":"Ondrej","url":"https://github.com/der-On"},{"name":"keyle","url":"https://github.com/keyle"}],"prettier":{"tabWidth":4},"gitHead":"7e5862a39f42b514f9f87e467f26474fb1945af0","homepage":"https://github.com/simonh1000/ftp-deploy#readme","_id":"ftp-deploy@2.3.8","_nodeVersion":"12.18.2","_npmVersion":"6.14.8","dist":{"integrity":"sha512-1mSPYxDpbl9k+9ojFcA4WLa6xyrZqkiJT59G+2Uy+2+DVdC3Bas05RQSomIz/00RIWJH+l/3W0NByYfUPupELQ==","shasum":"f18a02fb2014830eba005f6c19431b397d69ee6a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ftp-deploy/-/ftp-deploy-2.3.8.tgz","fileCount":24,"unpackedSize":27965,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfhUPHCRA9TVsSAnZWagAAIAcP/2y/6/u6X28ESCi0sX/+\ns3ZztXBT7A4ou+NlQiaaDhUL8L82E5Ua0u6XWJQ8nxTpklzSnK9njGUi4XGm\n2/haIC8iuAskoFslNTz2oroDEvJM8eNxJ6R4KGFE17uvk+PFPHZKeAHNUhPx\n8hAA7vWuW1jhuS+QjIa7CX2Ho6jEAJyOHSqgj84Vamb1tJtDG6zXdm8V0SQS\nnICh3pc8S3NpO68e3611rGapzpzBEdEtLT8oWoCq9pCNK3a6IzbhD/dF40kH\nydebOpXK0rKHIPPSfwMNgl7rilKUSvXR4Sr3Sfmx/RSjZmDjuIaw06VaqWnU\nrafairOHQkHDLNdkgydTpq5fRrf5JfDu9NG0jM6c6FZtC2P20GQYrog5WYJS\nnJOf7z1pa54QtOGGiG/Ezl4I8bRb8Df57rtuIVeScRvnfMLKcep3nSC3/vfz\nZH6PibW+T7oD3T5N8jVlFV6NSQdXx8AGPrCZHwYT6KdAAMv0LFKIKliN1103\nvEioJrSPrNE69JbaJwPI1U2uWRKg2LgtFjFQ8tLiV4ix4SGuYgx8mgDnL5+w\n5a42hgoBIs4sFVJ+q2nlUhxO6pjvoe3prCMSZG3xQBs3WMBXa41Nn+F3Psd3\n48vNlUZkfRbQDOAjYpnhiKBg3YwizF/njWgZ+KB9Kyp1Pz0pjYw0ktgsfEe6\n65dW\r\n=t1nf\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDTsGVrk11XcpvqXGmA5HNEoLEMXDRQxZl2bI9ts8FRugIgHIRnBta1LvzDFCSFslVoat/HADihSvTPm69CMN2D36E="}]},"maintainers":[{"name":"anonymous","email":"hotbelgo@gmail.com"}],"_npmUser":{"name":"anonymous","email":"hotbelgo@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ftp-deploy_2.3.8_1602569158942_0.6824575580854659"},"_hasShrinkwrap":false},"2.4.0":{"name":"ftp-deploy","version":"2.4.0","author":{"name":"Simon Hampton"},"description":"Ftp a folder from your local disk to an ftp destination","main":"src/ftp-deploy","scripts":{"test":"mocha **/**.spec.js","server":"node test/server.js"},"dependencies":{"bluebird":"^3.7.2","minimatch":"3.0.4","promise-ftp":"^1.3.5","read":"^1.0.7","ssh2-sftp-client":"^5.3.2","upath":"^1.2.0"},"devDependencies":{"chai":"^4.2.0","delete":"^1.1.0","ftp-srv":"^4.3.4","mocha":"^6.2.3"},"keywords":["ftp","deploy"],"license":"MIT","repository":{"type":"git","url":"git://github.com/simonh1000/ftp-deploy.git"},"bugs":{"url":"https://github.com/simonh1000/ftp-deploy/issues"},"engines":{"node":">=8"},"contributors":[{"name":"Rick Bergfalk"},{"name":"Ondrej","url":"https://github.com/der-On"},{"name":"keyle","url":"https://github.com/keyle"}],"prettier":{"tabWidth":4},"gitHead":"f457e3a4c69898ebac878412f96f7a014d84aa04","homepage":"https://github.com/simonh1000/ftp-deploy#readme","_id":"ftp-deploy@2.4.0","_nodeVersion":"12.18.2","_npmVersion":"6.14.8","dist":{"integrity":"sha512-pcs4a5TbOtTFoJw0C7HCxqrib9AFyRfZrh2OxqXIdvJEByLPW6aAUx/EJU6inPOozYXi7GqGx235EYAc9TsxnA==","shasum":"7b7732a8ca79e78ed54f0293488ff6a0815cdae8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ftp-deploy/-/ftp-deploy-2.4.0.tgz","fileCount":24,"unpackedSize":29047,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf1h0HCRA9TVsSAnZWagAATbUP/0HqAYoyF67Ndsyf8/D0\ndNerG0CEy7sZQUu/N785NL75IRgLWKME6t/j56SitVYrLfkIWJw0p8W/vwjA\n3hgFtTTZUE2l7sA/jPedfJDoNXhbYPQF79Rk7dvZa60LE0jGbWbNTAQE5vyw\nJz+/cFhOn1Pjp7QALGQdsORAg6GrKm6n0kufmBCWIXtczVnZWPV+XKV1Yp8/\nyjhQcQkDRkUwcB2DzLsMH24HJFfndF3N7uZBGIyOcAkVNyR88JZw60AAm1i9\nKCcdwo12wnlLtHTEGvcpe+hqOzXlcho78tARjzxZySJ1KTmDtk2S83K+8tcI\nzzyfBwCseO7gpBMGZsa4hTvDbMXkMjfJVCKTgZ9GSgSzhXSQSKP5X6b8hRRs\nDycaxfccwwRSGLsfVLhGXio/fIpCgNcdHBRq1r52F733RiPNB4WJab4ht1tE\nV0thZLlDZvAd/UNJhVlckeLVU8vprdjxZUvl0r4iamHti6UD8XsJ73Xon7wV\nSt8NDRRPBPJjS9W0AehMjxyoOtDnLXP+ERbXZa/B5Rea/TAP/ROh0jQY2KZ8\n5h/R/Y6H5S+CAt3t10udaSS4rpxqoIbl1nTy/F1Hw8Zve19O1HU2ioKhUF9d\nzAmbkFGNq910ZKf+sE9Mo2n7mKZAmrs2xy40U3Yhq+LzjwIYms0nkNVLzu96\nEUMS\r\n=uU96\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD32GFze3JLi7D5T7XJqaFe/BseX7JRLHzvJQJblHTWigIgOJhEMj3EisdyW7HWdb6tvLHpvXRbcS7Gu1lUFDwT9MY="}]},"_npmUser":{"name":"anonymous","email":"hotbelgo@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"hotbelgo@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ftp-deploy_2.4.0_1607867654649_0.7023476593722011"},"_hasShrinkwrap":false},"2.4.1":{"name":"ftp-deploy","version":"2.4.1","author":{"name":"Simon Hampton"},"description":"Ftp a folder from your local disk to an ftp destination","main":"src/ftp-deploy","scripts":{"test":"mocha **/**.spec.js","server":"node test/server.js"},"dependencies":{"bluebird":"^3.7.2","minimatch":"3.0.4","promise-ftp":"^1.3.5","read":"^1.0.7","ssh2-sftp-client":"^5.3.2","upath":"^2.0.1"},"devDependencies":{"chai":"^4.3.0","delete":"^1.1.0","ftp-srv":"^4.4.0","mocha":"^8.2.1"},"keywords":["ftp","deploy"],"license":"MIT","repository":{"type":"git","url":"git://github.com/simonh1000/ftp-deploy.git"},"bugs":{"url":"https://github.com/simonh1000/ftp-deploy/issues"},"engines":{"node":">=8"},"contributors":[{"name":"Rick Bergfalk"},{"name":"Ondrej","url":"https://github.com/der-On"},{"name":"keyle","url":"https://github.com/keyle"}],"prettier":{"tabWidth":4},"gitHead":"49863ce2ce240d052c89d63a8f656022771546f5","homepage":"https://github.com/simonh1000/ftp-deploy#readme","_id":"ftp-deploy@2.4.1","_nodeVersion":"14.15.3","_npmVersion":"7.5.2","dist":{"integrity":"sha512-UglFOxlv7j2jPqX83kKFfXjoazysymEGWb8buqt+X12KAnFdapXdNjOm0Vwwg6BxgjS4jnKcU8+iq2ndivreOw==","shasum":"6f72936ee4308c46b1aaf5ed30575a6f4637754b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ftp-deploy/-/ftp-deploy-2.4.1.tgz","fileCount":24,"unpackedSize":29046,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgHksrCRA9TVsSAnZWagAARj0P/R5QkFUIKS6KJWsU5zVh\nGQblU4rCD/W50MW/3dDVqAIE9k/wn4WpGjEbn0X8Gcj3NEAt8aFRYMCZXUPf\n+r8SUSDjaDKXa/ylAUmr/RcyRyCCuvA+9Q+SW4RJLxxwR8Yos8ljE5RAKVFe\nX+ggEdfrBV6IJSxfMaPE/o5k3EOhkswbZZxuEd3sL3vOd4K7QgHvjJX7g4Dc\n1VnxxsP1RP1wexkoAepTQxLs1PGW/Vn1qa4eALkdCUesCFQvHtdiavxH7G2w\nbhKalzzjfshBw7VkD2rkZOjbbhsF8EYGdRMiNjnxiPIp9cilEydGtN/eSUUW\ntLEowvSshfuLS0ySq73VgJ8H3lIiwENusY1vlrd6TIghpPfF2J5/2bg/Utei\nZn3phimd8qYVqoaoUgn3YNugHrFrjsTFcqxg8w1eiCdSOhvTJJwNKZ/hWQb1\nGjCBA/s1dHyWxuexWtnbTGWJ4rPJDlf1sZyEl2N3C+Fz49iNY6uOwg+u7UHY\nl+LX6/EYwvMT4cMSLtiqL2IZyKaziBbBNWHE0lS4aDk03ZJlDl5P2EqfkGqm\nHmF02WxGKDE5sG7HwPKuz14fwvu0mrLzBQhJ/6rqnwpbx/quTVjjUgp+3bKo\ncKUKp0u6cF/g8twdk9vnJ42cn6QIwwfW0NnKB2EFhszqmVVDwQsKClfysPZV\n642c\r\n=nwHE\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD7PpZ1q52Fh31J5cHZd9IqzWnbSSSCPz9Rud5RpSwo/gIgeSJNeM99ZIa/fiQTd/QoOjpgZla1o0fEoRlh6C/fr0Y="}]},"_npmUser":{"name":"anonymous","email":"hotbelgo@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"hotbelgo@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ftp-deploy_2.4.1_1612598058487_0.9175074502294132"},"_hasShrinkwrap":false},"2.4.2":{"name":"ftp-deploy","version":"2.4.2","author":{"name":"Simon Hampton"},"description":"Ftp a folder from your local disk to an ftp destination","main":"src/ftp-deploy","scripts":{"test":"mocha **/**.spec.js","server":"node test/server.js"},"dependencies":{"bluebird":"^3.7.2","minimatch":"3.0.4","promise-ftp":"^1.3.5","read":"^1.0.7","ssh2-sftp-client":"^5.3.2","upath":"^2.0.1"},"devDependencies":{"chai":"^4.3.0","delete":"^1.1.0","ftp-srv":"^4.4.0","mocha":"^8.2.1"},"keywords":["ftp","deploy"],"license":"MIT","repository":{"type":"git","url":"git://github.com/simonh1000/ftp-deploy.git"},"bugs":{"url":"https://github.com/simonh1000/ftp-deploy/issues"},"engines":{"node":">=8"},"contributors":[{"name":"Rick Bergfalk"},{"name":"Ondrej","url":"https://github.com/der-On"},{"name":"keyle","url":"https://github.com/keyle"}],"prettier":{"tabWidth":4},"gitHead":"2aaef20e62e288e17c7ab7a401464dfd2782a0aa","homepage":"https://github.com/simonh1000/ftp-deploy#readme","_id":"ftp-deploy@2.4.2","_nodeVersion":"14.19.0","_npmVersion":"8.5.0","dist":{"integrity":"sha512-e+/PFUALz6Ku8s8GLie1b5svtSaNbeDpB80MA5t5TgKwN70OR40Ncsv3CUK6nxudoFTON75E6cuzTljbxPaDqg==","shasum":"81a43d966a0c620ff3345f55c8e0fabd0d88b7a9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ftp-deploy/-/ftp-deploy-2.4.2.tgz","fileCount":21,"unpackedSize":29129,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFzIV+8eRzxSrj3BMHyevjXNT72KC0lkJ+AYmM2foweXAiEAgxVROmLoPFhY9XObaNShJezrmmTAPVv+RXVURRSr6Tc="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiUSd8ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoZHw//TNQIn2xGR0m73GJ/s719z7SP9wxz6xkINl5APaKchutj5Cl8\r\nlgiVYJQAw79J/c5SLtvzf0vlY9F7qkyPLl5ihequk5E9X43vvvmYnb2ChEV5\r\niwa/GjCixxliOS42LuN6spjYH0R1OdOpqF/1PqUCvb6U84k//zfIuMIV8wNY\r\nqGyqfczDXAgReFxaqOgUXj4Cva6i7yPpa6pi7+NmSkD9YPrztlahdWNGwhbb\r\nfZ5rWM6Xc4ETr9KdsUV57zP8qRQ6udrshN+uTcWbRd4gHi+9C9pK/x5p/iZP\r\n4dyeBJ9qFh95DPLYO1jTa7WcCF8kSGCTsjB31L4M63SsLlCzgfccWQlmm0Jb\r\nKeTLWqs2rfj2Z3XywhW6Q7FVedluJMCkvi9YkDX9+7Fpzyua8NeOLhatGP5k\r\nyVV66vGoMORqF4SZuZT/GfRMhOL0u0ZwwTaTEHHByK17pJbPxl9uHXXZexWY\r\n1xfLiDmIUvbdJZje5Naio0J3Q/lDYoH4CZAqsyFm6S4jc+SqnQDSgEcAwftH\r\ngc3xl4tHR8DLt+CgVbChP4v1thstGJVJKtV5+k/DDpk/wbfD2fErcDwkGVEd\r\nfvCChHjnZRxi34TlYX/xTOnbrQArDfTjvPJBBudWkoS/VlumTlqLym9WABJA\r\ni1l9bNpUtxDRXiMV0CkT+i2kapCnIFAkef4=\r\n=Gr6F\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"anonymous","email":"hotbelgo@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"hotbelgo@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ftp-deploy_2.4.2_1649485692066_0.45517247023669705"},"_hasShrinkwrap":false},"2.4.3":{"name":"ftp-deploy","version":"2.4.3","author":{"name":"Simon Hampton"},"description":"Ftp a folder from your local disk to an ftp destination","main":"src/ftp-deploy","scripts":{"test":"mocha **/**.spec.js","server":"node test/server.js"},"dependencies":{"bluebird":"^3.7.2","minimatch":"5.0.1","promise-ftp":"^1.3.5","read":"^1.0.7","ssh2-sftp-client":"^7.2.1","upath":"^2.0.1"},"devDependencies":{"chai":"^4.3.6","delete":"^1.1.0","ftp-srv":"^4.6.2","mocha":"^9.1.3"},"keywords":["ftp","deploy"],"license":"MIT","repository":{"type":"git","url":"git://github.com/simonh1000/ftp-deploy.git"},"bugs":{"url":"https://github.com/simonh1000/ftp-deploy/issues"},"engines":{"node":">=10"},"contributors":[{"name":"Rick Bergfalk"},{"name":"Ondrej","url":"https://github.com/der-On"},{"name":"keyle","url":"https://github.com/keyle"}],"prettier":{"tabWidth":4},"gitHead":"bffc90bdb1b3f4c03292d1220ecc9533f2798000","homepage":"https://github.com/simonh1000/ftp-deploy#readme","_id":"ftp-deploy@2.4.3","_nodeVersion":"14.19.0","_npmVersion":"8.5.0","dist":{"integrity":"sha512-YDO61ElPnzp1wGQN8CR0Kg2bdslmoFC7YSz5fKe/u0ug9d3+eSmJcovwfQ3ypObc8DwkeUiNTCTmZGQdid6XgA==","shasum":"35282429261c967d48b1333c0e143ed28144e691","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ftp-deploy/-/ftp-deploy-2.4.3.tgz","fileCount":23,"unpackedSize":29133,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFRCSHlbKUMO6tlZfmLvPj6e+2+szcsqg6whtv/95lpBAiEAuKhaf4+wFTeEhcCy8owobmZ++by2FGZWRP9ABhDo810="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiw9sLACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrSiRAAnKHVNyMpDYawtS+X6460kZ1wFUBM/0mFQOLL6s2Lcu9ntgq9\r\nKlzOuysPbK7/PgP07LJGePvfHxPmvyRSFA7QVFZ9R/2YTSNY9CLyoVJi36I1\r\nNAtxpVaFGU4gFVGsaDfIvywgOqBjpgTbvD8yK1AzKsOW5HTdw9jggNkSEXn5\r\n5jwIjzPN+XSWfyBEm7XJANp0m7JSVINm3lciOrUPPozydO3h69PnnltmYDoC\r\n+Y+kPWOE1RBFz+t1RH9WoI9cpZ9pWOiJmJuNkJZ9J1BeiNQd+XobVesaVMbP\r\nLgnaPcFCrKnYaCTo4Kmq0VdJnvNoSv9XMzWX3uPwcwRpPrS6CtlNHwCF/1DJ\r\n+067ngWbFQyrJsfRixN3yN1/nP3fOEJiu6zzEQFAFM852kMXR7n2PH0rwsCZ\r\nrCIUylu50s8+5uRQ8U/wHG9Dn5PYppW/Zl+Hl0uX+fA24gFX+vhi56vclzdB\r\nhVTvDloRr5cg/b9ts0DDQpWp+Lw7Fj9CNlkiJ2eSWK4Hhms6PtLogJqfPmH0\r\nFzmMhV/bDxDL0wAzsBqRQBUizHy9eQ4qCt/GQdklXqX0DOxEaM9NnND9Vbkl\r\nT2LiJlKJn4Tkn2bOm8RYJBMu77HQv3XRFMl5VmI3JVbDzDTVeyAYBg779C9o\r\nbq7GFMF/qAy4ULeXGmr/AfOZfnhxAvGgsus=\r\n=QLaq\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"anonymous","email":"hotbelgo@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"hotbelgo@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ftp-deploy_2.4.3_1657002762808_0.7182219552477429"},"_hasShrinkwrap":false},"2.4.4":{"name":"ftp-deploy","version":"2.4.4","author":{"name":"Simon Hampton"},"description":"Ftp a folder from your local disk to an ftp destination","main":"src/ftp-deploy","scripts":{"test":"mocha **/**.spec.js","server":"node test/server.js"},"dependencies":{"bluebird":"^3.7.2","minimatch":"9.0.0","promise-ftp":"^1.3.5","read":"^2.1.0","ssh2-sftp-client":"^7.2.1","upath":"^2.0.1"},"devDependencies":{"chai":"^4.3.7","delete":"^1.1.0","ftp-srv":"^4.6.2","mocha":"^9.1.3"},"keywords":["ftp","deploy"],"license":"MIT","repository":{"type":"git","url":"git://github.com/simonh1000/ftp-deploy.git"},"bugs":{"url":"https://github.com/simonh1000/ftp-deploy/issues"},"engines":{"node":">=12"},"contributors":[{"name":"Rick Bergfalk"},{"name":"Ondrej","url":"https://github.com/der-On"},{"name":"keyle","url":"https://github.com/keyle"}],"prettier":{"tabWidth":4},"gitHead":"2fac5ac4f817a0d7117cc5fa67db49f9b85e5a35","homepage":"https://github.com/simonh1000/ftp-deploy#readme","_id":"ftp-deploy@2.4.4","_nodeVersion":"16.16.0","_npmVersion":"8.11.0","dist":{"integrity":"sha512-KLFzDn2g50lj9HBZsCG28EcyWeBjl7ztrK8gG/ynRoMflg7prcCYqNdKeg8kEyswqsnsku3XJyvMu56CAMvFIA==","shasum":"0499f58cef6f87fea10d7f6d92c7883b46afa5b2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ftp-deploy/-/ftp-deploy-2.4.4.tgz","fileCount":23,"unpackedSize":29226,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD7ALpfUz3L9nhVs4uRKT+M0Tdr6/iBh7wW7GTkDWTOowIhAOuGo7k0F8Dn4l57KsPBnWaksiyupamkbCLjfSEUNrLR"}]},"_npmUser":{"name":"anonymous","email":"hotbelgo@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"hotbelgo@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ftp-deploy_2.4.4_1683966400116_0.9656534783889872"},"_hasShrinkwrap":false},"2.4.5":{"name":"ftp-deploy","version":"2.4.5","author":{"name":"Simon Hampton"},"description":"Ftp a folder from your local disk to an ftp destination","main":"src/ftp-deploy","scripts":{"test":"mocha **/**.spec.js","server":"node test/server.js"},"dependencies":{"bluebird":"^3.7.2","minimatch":"9.0.0","promise-ftp":"^1.3.5","read":"^2.1.0","ssh2-sftp-client":"^7.2.1","upath":"^2.0.1"},"devDependencies":{"chai":"^4.3.7","delete":"^1.1.0","ftp-srv":"^4.6.2","mocha":"^9.1.3"},"keywords":["ftp","deploy"],"license":"MIT","repository":{"type":"git","url":"git://github.com/simonh1000/ftp-deploy.git"},"bugs":{"url":"https://github.com/simonh1000/ftp-deploy/issues"},"engines":{"node":">=12"},"contributors":[{"name":"Rick Bergfalk"},{"name":"Ondrej","url":"https://github.com/der-On"},{"name":"keyle","url":"https://github.com/keyle"}],"prettier":{"tabWidth":4},"gitHead":"e5cd3c54c47c75f73d86849b07f35f1dfd9bcbfe","homepage":"https://github.com/simonh1000/ftp-deploy#readme","_id":"ftp-deploy@2.4.5","_nodeVersion":"18.16.1","_npmVersion":"9.5.1","dist":{"integrity":"sha512-u84uBFw+VAfcZIcvRzGYO9XILcHPZJZ8f7foXFXB4rQiluABiyoq4/d6WwTAlpiCRbDfHAME9IyLT3SSkIHhiw==","shasum":"ca16bd755cf516ad9563fdfe34b672f432481cac","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ftp-deploy/-/ftp-deploy-2.4.5.tgz","fileCount":23,"unpackedSize":29223,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIG+h3DBxsCFg25T0l6oNQBFVPNUfOKF8WVqIrSIR+hCvAiBwMWOZgqA3GhCMdiU56Al/bxdWYXcQECsMu+AinXw16g=="}]},"_npmUser":{"name":"anonymous","email":"hotbelgo@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"hotbelgo@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ftp-deploy_2.4.5_1694413050993_0.0905499877713154"},"_hasShrinkwrap":false},"2.4.6":{"name":"ftp-deploy","version":"2.4.6","author":{"name":"Simon Hampton"},"description":"Ftp a folder from your local disk to an ftp destination","main":"src/ftp-deploy","scripts":{"test":"mocha **/**.spec.js","server":"node test/server.js"},"dependencies":{"minimatch":"9.0.0","promise-ftp":"^1.3.5","read":"^2.1.0","ssh2-sftp-client":"^7.2.1","upath":"^2.0.1"},"devDependencies":{"chai":"^4.3.7","delete":"^1.1.0","ftp-srv":"^4.6.2","mocha":"^9.1.3"},"keywords":["ftp","deploy"],"license":"MIT","repository":{"type":"git","url":"git://github.com/simonh1000/ftp-deploy.git"},"bugs":{"url":"https://github.com/simonh1000/ftp-deploy/issues"},"engines":{"node":">=12"},"contributors":[{"name":"Rick Bergfalk"},{"name":"Ondrej","url":"https://github.com/der-On"},{"name":"keyle","url":"https://github.com/keyle"},{"name":"cyrdam","url":"https://github.com/cyrdam"}],"prettier":{"tabWidth":4},"_id":"ftp-deploy@2.4.6","gitHead":"e97fbfaed39877f23ea76001975422072fc6849c","homepage":"https://github.com/simonh1000/ftp-deploy#readme","_nodeVersion":"18.18.2","_npmVersion":"9.8.1","dist":{"integrity":"sha512-/oWKHKWVUaOVLdnrMQJ8iUf9XiY5/hVMDHCSlRb5S53+bcQzi0frO5UQ6YpipSXS5WgWbJ4aqyQkCbLMrjlfdg==","shasum":"0c6761eb87fb98e99050dbc66fdab25b29c11bc4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ftp-deploy/-/ftp-deploy-2.4.6.tgz","fileCount":23,"unpackedSize":30016,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDpdMJJyHKdJhPtBqKXmiwT04fdi3qPR/uAlAmCLzSfkAiAEA9IwkzcOTwKTK9uXOkPjWPnXhrUHNVJzlP1O12Pu0w=="}]},"_npmUser":{"name":"anonymous","email":"hotbelgo@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"hotbelgo@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ftp-deploy_2.4.6_1705734579391_0.8805589991999345"},"_hasShrinkwrap":false},"2.4.7":{"name":"ftp-deploy","version":"2.4.7","author":{"name":"Simon Hampton"},"description":"Ftp a folder from your local disk to an ftp destination","main":"src/ftp-deploy","scripts":{"test":"mocha **/**.spec.js","server":"node test/server.js"},"dependencies":{"minimatch":"9.0.0","promise-ftp":"^1.3.5","read":"^2.1.0","ssh2-sftp-client":"^7.2.3","upath":"^2.0.1"},"devDependencies":{"chai":"^4.3.7","delete":"^1.1.0","ftp-srv":"^4.6.2","mocha":"^9.1.3"},"keywords":["ftp","deploy"],"license":"MIT","repository":{"type":"git","url":"git://github.com/simonh1000/ftp-deploy.git"},"bugs":{"url":"https://github.com/simonh1000/ftp-deploy/issues"},"engines":{"node":">=12"},"contributors":[{"name":"Rick Bergfalk"},{"name":"Ondrej","url":"https://github.com/der-On"},{"name":"keyle","url":"https://github.com/keyle"},{"name":"cyrdam","url":"https://github.com/cyrdam"}],"prettier":{"tabWidth":4},"_id":"ftp-deploy@2.4.7","gitHead":"34495afc69e3e74d0e36e613655a015970376523","homepage":"https://github.com/simonh1000/ftp-deploy#readme","_nodeVersion":"18.18.2","_npmVersion":"9.8.1","dist":{"integrity":"sha512-GcXI1B4W25e0H6bMgqJ8enwCZfSnOm9Hc0iDAKuevQVrWBqnfU5C9C23QF5bjrzXRfh3Q8Iewn16UfU71g+7Gw==","shasum":"d9194e426018bee07f0a8684fe0fb6f1fbdd2cd6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/ftp-deploy/-/ftp-deploy-2.4.7.tgz","fileCount":23,"unpackedSize":29815,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDy72N/iEIRSeyJ7DWLgIw6zOw0rmEZzPzOuhVXLZ/JMAiEAoLO02BluwU4+9EOcR086BeSCaW1TJhdmbWzo3IspCJE="}]},"_npmUser":{"name":"anonymous","email":"hotbelgo@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"hotbelgo@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ftp-deploy_2.4.7_1709129849071_0.5960428004865768"},"_hasShrinkwrap":false}},"name":"ftp-deploy","time":{"modified":"2024-02-28T14:17:29.667Z","created":"2013-05-16T18:33:30.791Z","0.1.0":"2013-05-16T18:33:32.973Z","0.1.1":"2013-10-19T20:40:20.001Z","0.2.0":"2013-10-19T22:39:31.556Z","0.2.1":"2013-10-19T22:48:38.319Z","0.2.2":"2013-10-21T22:50:07.606Z","0.3.0":"2013-10-23T15:03:01.937Z","0.3.1":"2013-11-27T20:01:54.005Z","0.4.0":"2013-11-28T17:27:34.100Z","0.4.1":"2013-12-12T17:24:25.262Z","0.5.0":"2014-02-19T00:08:08.507Z","0.5.1":"2014-02-19T00:38:52.953Z","0.6.0":"2014-02-20T02:58:04.457Z","0.7.0":"2014-04-08T14:49:13.162Z","1.0.0":"2014-11-12T04:29:42.377Z","1.1.0":"2015-09-29T02:50:08.824Z","1.2.0":"2017-04-08T18:45:45.362Z","1.2.1":"2017-05-02T19:13:54.179Z","1.2.2":"2017-06-10T10:02:12.383Z","2.0.0":"2018-05-06T07:48:55.001Z","2.0.1":"2018-05-07T05:51:11.967Z","2.0.2":"2018-05-07T06:51:08.586Z","2.0.3":"2018-05-07T14:27:32.349Z","2.0.4":"2018-05-08T18:06:13.453Z","2.0.5":"2018-05-13T14:05:14.246Z","2.1.0":"2018-05-20T17:17:08.701Z","2.1.1":"2018-05-23T17:21:21.651Z","2.1.2":"2018-07-08T06:14:06.313Z","2.1.3":"2018-09-16T06:52:03.668Z","2.1.4":"2018-10-15T15:41:08.342Z","2.2.0":"2018-12-06T16:18:09.850Z","2.2.1":"2018-12-08T09:09:14.988Z","2.3.0":"2018-12-21T18:29:07.022Z","2.3.1":"2019-02-10T20:37:18.303Z","2.3.2":"2019-03-14T16:52:59.177Z","2.3.3":"2019-03-31T06:38:01.472Z","2.3.4":"2019-10-06T15:43:04.315Z","2.3.5":"2019-10-06T15:48:27.834Z","2.3.6":"2019-11-03T10:36:21.590Z","2.3.7":"2020-04-04T07:38:43.956Z","2.3.8":"2020-10-13T06:05:59.124Z","2.4.0":"2020-12-13T13:54:14.782Z","2.4.1":"2021-02-06T07:54:18.652Z","2.4.2":"2022-04-09T06:28:12.245Z","2.4.3":"2022-07-05T06:32:43.015Z","2.4.4":"2023-05-13T08:26:40.309Z","2.4.5":"2023-09-11T06:17:31.233Z","2.4.6":"2024-01-20T07:09:39.628Z","2.4.7":"2024-02-28T14:17:29.209Z"},"readmeFilename":"README.md","contributors":[{"name":"Rick Bergfalk"},{"name":"Ondrej","url":"https://github.com/der-On"},{"name":"keyle","url":"https://github.com/keyle"},{"name":"cyrdam","url":"https://github.com/cyrdam"}],"homepage":"https://github.com/simonh1000/ftp-deploy#readme"}