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

lint-trap

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lint-trap - npm Package Compare versions

Comparing version 0.2.0 to 0.2.1

11

lint-stream.js

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

var es = require('event-stream');
var fs = require('fs');
var which = require('npm-which');

@@ -33,11 +32,3 @@ var commondir = require('commondir');

function getBinPath(type, callback) {
var binPath = path.resolve(__dirname, '../node_modules/.bin/' + type);
fs.exists(binPath, function existsCallback(exists) {
if (exists) {
callback(null, binPath);
} else {
which(type, callback);
}
});
which(type, {cwd: __dirname}, callback);
}

@@ -44,0 +35,0 @@

2

package.json
{
"name": "lint-trap",
"version": "0.2.0",
"version": "0.2.1",
"description": "JavaScript linter module for Uber projects",

@@ -5,0 +5,0 @@ "author": "Andrew de Andrade <aandrade@uber.com>",

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