Socket
Socket
Sign inDemoInstall

jsftp

Package Overview
Dependencies
Maintainers
1
Versions
84
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jsftp - npm Package Compare versions

Comparing version 1.3.1 to 1.3.2

22

package.json
{
"name": "jsftp",
"id": "jsftp",
"version": "1.3.1",
"version": "1.3.2",
"description": "A sane FTP client implementation for NodeJS",

@@ -17,14 +17,14 @@ "keywords": [ "ftp", "protocol", "files", "server", "client", "async" ],

"dependencies": {
"event-stream": "~3.0.14",
"ftp-response-parser": "~1.0.0",
"parse-listing": "~1.1.0",
"once": "~1.3.0"
"event-stream": "3.1.7",
"ftp-response-parser": "1.0.0",
"parse-listing": "1.1.0",
"once": "1.3.0"
},
"devDependencies": {
"mocha": "~1.10.0",
"istanbul": "~0.1.36",
"mocha-istanbul": "~0.2.0",
"sinon": "~1.7.2",
"ftp-test-server": "~0.0.1",
"rimraf": "~2.2.0"
"mocha": "1.21.4",
"istanbul": "0.3.2",
"mocha-istanbul": "0.2.0",
"sinon": "1.10.3",
"ftp-test-server": "0.0.1",
"rimraf": "4.2.8"
},

@@ -31,0 +31,0 @@ "main": "./jsftp.js",

@@ -9,8 +9,2 @@ jsftp <a href="http://flattr.com/thing/1452098/" target="_blank"><img src="http://api.flattr.com/button/flattr-badge-large.png" alt="Flattr this" title="Flattr this" border="0" /></a>

**Warning: The latest version (1.0.0) of jsftp breaks API compatibility with previous
versions, it is NOT a drop-in replacement. Please be careful when upgrading. The
API changes are not drastic at all and it is all documented below. If you do not
want to upgrade yet you should stay with version 0.6.0, the last one before the
upgrade. The API docs below are updated for 1.0.**
Starting it up

@@ -279,3 +273,3 @@ --------------

npm install --dev
make test
npm test

@@ -282,0 +276,0 @@ License

@@ -157,3 +157,2 @@ /*

});
it("test parseResponse with no mark", function(next) {

@@ -311,3 +310,3 @@ var cb = sinon.spy();

ftp.raw.pwd(function(err, res) {
var parent = /.*"(.*)".*/.exec(res.text)[1];
var parent = new RegExp('.*"(.*)".*').exec(res.text)[1];
var path = Path.resolve(parent + "/" + remoteCWD);

@@ -314,0 +313,0 @@ ftp.raw.stat(path, function(err, res) {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc