New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

canvas-data-cli

Package Overview
Dependencies
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

canvas-data-cli - npm Package Compare versions

Comparing version 0.5.0 to 0.5.1

6

lib/Unpack.js

@@ -15,2 +15,4 @@ "use strict";

var async = require('async');
var split = require('split');
var filter = require('stream-filter');

@@ -92,3 +94,5 @@ var Unpack = (function () {

var gunzip = zlib.createUnzip();
ssStream.write(fs.createReadStream(path.join(inputDir, f)).pipe(gunzip));
ssStream.write(fs.createReadStream(path.join(inputDir, f)).pipe(gunzip).pipe(split()).pipe(filter(function (d) {
return d.toString("utf8").trim().length !== 0;
})));
});

@@ -95,0 +99,0 @@ });

4

package.json
{
"name": "canvas-data-cli",
"version": "0.5.0",
"version": "0.5.1",
"description": "A CLI tool for interacting with the Canvas Data API",

@@ -34,2 +34,4 @@ "main": "index.js",

"request": "^2.65.0",
"split": "^1.0.0",
"stream-filter": "^1.0.0",
"stream-stream": "^1.2.6",

@@ -36,0 +38,0 @@ "yargs": "^3.29.0"

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