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

proven-cli

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

proven-cli - npm Package Compare versions

Comparing version 1.0.4 to 1.0.5

11

lib/proven.js

@@ -26,5 +26,10 @@ const Promise = require('bluebird');

const extractLimits = (configJson) => configJson
.then((configJsonStr) => JSON.parse(configJsonStr.toString('utf8')))
.catch(die('Error! Invalid configuration file'));
const extractLimits = (configJson) => {
try {
return JSON.parse(configJson.toString('utf8'));
} catch (e) {
console.log('Invalid configuration file.');
process.exit(1);
}
};

@@ -31,0 +36,0 @@ const getLicenses = (spdxExp) => {

{
"name": "proven-cli",
"version": "1.0.4",
"version": "1.0.5",
"description": "CLI tool to enforce quality policies on modules in your project",

@@ -5,0 +5,0 @@ "main": "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