Socket
Socket
Sign inDemoInstall

tap-mocha-reporter

Package Overview
Dependencies
Maintainers
1
Versions
44
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tap-mocha-reporter - npm Package Compare versions

Comparing version 5.0.0 to 5.0.1

8

index.js

@@ -9,10 +9,2 @@ #!/usr/bin/env node

var Writable = require('stream').Writable
if (!Writable) {
try {
Writable = require('readable-stream').Writable
} catch (er) {
throw new Error('Please install "readable-stream" to use this module ' +
'with Node.js v0.8 and before')
}
}

@@ -19,0 +11,0 @@ var Runner = require('./lib/runner.js')

@@ -7,11 +7,2 @@ // A formatter is a Duplex stream that TAP data is written into,

var Duplex = require('stream').Duplex
if (!Duplex) {
try {
Duplex = require('readable-stream').Duplex
} catch (er) {
throw new Error('Please install "readable-stream" to use this module ' +
'with Node.js v0.8 and before')
}
}
var util = require('util')

@@ -18,0 +9,0 @@ var Parser = require('tap-parser')

@@ -48,11 +48,2 @@ // A facade from the tap-parser to the Mocha "Runner" object.

var Writable = require('stream').Writable
if (!Writable) {
try {
Writable = require('readable-stream').Writable
} catch (er) {
throw new Error('Please install "readable-stream" to use this module ' +
'with Node.js v0.8 and before')
}
}
var Parser = require('tap-parser')

@@ -59,0 +50,0 @@

20

package.json
{
"name": "tap-mocha-reporter",
"version": "5.0.0",
"version": "5.0.1",
"description": "Format a TAP stream using Mocha's set of reporters",
"main": "index.js",
"scripts": {
"test": "tap test/*.js"
"test": "tap test/*.js",
"preversion": "npm test",
"postversion": "npm publish",
"postpublish": "git push origin --follow-tags"
},

@@ -21,17 +24,14 @@ "repository": {

"color-support": "^1.1.0",
"debug": "^2.1.3",
"diff": "^1.3.2",
"escape-string-regexp": "^1.0.3",
"debug": "^4.1.1",
"diff": "^4.0.1",
"escape-string-regexp": "^2.0.0",
"glob": "^7.0.5",
"tap-parser": "^10.0.0",
"tap-yaml": "^1.0.0",
"unicode-length": "^1.0.0"
"unicode-length": "^2.0.2"
},
"devDependencies": {
"tap": "^12.7.0"
"tap": "^14.10.2"
},
"bin": "index.js",
"optionalDependencies": {
"readable-stream": "^2.1.5"
},
"files": [

@@ -38,0 +38,0 @@ "index.js",

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