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

coverify

Package Overview
Dependencies
Maintainers
2
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

coverify - npm Package Compare versions

Comparing version 1.3.1 to 1.3.2

4

package.json
{
"name": "coverify",
"version": "1.3.1",
"version": "1.3.2",
"description": "code coverage browserify transform",

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

"source-map": "~0.4.2",
"split2": "^0.2.1",
"stream-combiner2": "^1.0.2",
"through2": "~0.6.5"

@@ -16,0 +18,0 @@ },

@@ -1,4 +0,4 @@

var split = require('split');
var through = require('through');
var combine = require('stream-combiner');
var split = require('split2');
var through = require('through2');
var combine = require('stream-combiner2');
var fs = require('fs');

@@ -13,3 +13,3 @@

function write (line) {
function write (line, enc, next) {
var m;

@@ -27,3 +27,4 @@ if (m = /^COVERAGE\s+("[^"]+"|\S+)\s+(\S+)/.exec(line)) {

}
else this.queue(line + '\n');
else this.push(line + '\n');
next();
}

@@ -30,0 +31,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