Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

unzip

Package Overview
Dependencies
Maintainers
2
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

unzip - npm Package Compare versions

Comparing version 0.1.9 to 0.1.10

6

lib/entry.js

@@ -5,9 +5,5 @@ 'use strict';

var PassThrough = require('stream').PassThrough;
var PassThrough = require('readable-stream/passthrough');
var inherits = require('util').inherits;
if (!PassThrough) {
PassThrough = require('readable-stream/passthrough');
}
inherits(Entry, PassThrough);

@@ -14,0 +10,0 @@

@@ -7,10 +7,6 @@ 'use strict';

var Writer = require("fstream").Writer;
var Writable = require('stream').Writable;
var Writable = require('readable-stream/writable');
var path = require('path');
var inherits = require('util').inherits;
if (!Writable) {
Writable = require('readable-stream/writable');
}
inherits(Extract, Writable);

@@ -17,0 +13,0 @@

@@ -6,3 +6,3 @@ 'use strict';

require("setimmediate");
var Transform = require('stream').Transform;
var Transform = require('readable-stream/transform');
var inherits = require('util').inherits;

@@ -15,6 +15,2 @@ var zlib = require('zlib');

if (!Transform) {
Transform = require('readable-stream/transform');
}
inherits(Parse, Transform);

@@ -21,0 +17,0 @@

30

package.json
{
"name": "unzip",
"version": "0.1.9",
"version": "0.1.10",
"description": "Unzip cross-platform streaming API compatible with fstream and fs.ReadStream",
"author": "Evan Oxfeld <evan.oxfeld@nearinfinity.com>",
"author": "Evan Oxfeld <eoxfeld@gmail.com>",
"maintainers": [
{
"name": "Evan Oxfeld",
"email": "evan.oxfeld@nearinfinity.com"
"email": "eoxfeld@gmail.com"
},

@@ -18,18 +18,18 @@ {

"type": "git",
"url": "https://github.com/nearinfinity/node-unzip.git"
"url": "https://github.com/EvanOxfeld/node-unzip.git"
},
"license": "MIT",
"dependencies": {
"fstream": "~0.1.21",
"pullstream": "~0.4.0",
"binary": "~0.3.0",
"readable-stream": "~1.0.0",
"setimmediate": "~1.0.1",
"match-stream": "~0.0.2"
"fstream": ">= 0.1.30 < 1",
"pullstream": ">= 0.4.0 < 1",
"binary": ">= 0.3.0 < 1",
"readable-stream": "~1.0.31",
"setimmediate": ">= 1.0.1 < 2",
"match-stream": ">= 0.0.2 < 1"
},
"devDependencies": {
"tap": "~0.3.0",
"temp": "~0.4.0",
"dirdiff": "~0.0.1",
"stream-buffers": "~0.2.3"
"tap": ">= 0.3.0 < 1",
"temp": ">= 0.4.0 < 1",
"dirdiff": ">= 0.0.1 < 1",
"stream-buffers": ">= 0.2.5 < 1"
},

@@ -51,4 +51,4 @@ "directories": {

"scripts": {
"test": "./node_modules/.bin/tap ./test/*.js"
"test": "tap ./test/*.js"
}
}

@@ -1,2 +0,2 @@

# unzip [![Build Status](https://travis-ci.org/nearinfinity/node-unzip.png)](https://travis-ci.org/nearinfinity/node-unzip)
# unzip [![Build Status](https://travis-ci.org/EvanOxfeld/node-unzip.png)](https://travis-ci.org/EvanOxfeld/node-unzip)

@@ -7,3 +7,3 @@ Streaming cross-platform unzip tool written in node.js.

There are no added compiled dependencies - inflation is handled by node.js's built in zlib support. Unzip is also an
example use case of [node-pullstream](https://github.com/nearinfinity/node-pullstream).
example use case of [node-pullstream](https://github.com/EvanOxfeld/node-pullstream).

@@ -10,0 +10,0 @@ ## Installation

Sorry, the diff of this file is not supported yet

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