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

jshint-stylish

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

jshint-stylish - npm Package Compare versions

Comparing version 0.3.0 to 0.4.0

9

package.json
{
"name": "jshint-stylish",
"version": "0.3.0",
"version": "0.4.0",
"description": "Stylish reporter for JSHint",

@@ -31,9 +31,10 @@ "license": "MIT",

"dependencies": {
"chalk": "~0.4.0",
"text-table": "~0.2.0"
"chalk": "^0.5.1",
"log-symbols": "^1.0.0",
"text-table": "^0.2.0"
},
"devDependencies": {
"mocha": "*",
"jshint": "~2"
"jshint": "^2"
}
}
'use strict';
var chalk = require('chalk');
var table = require('text-table');
var logSymbols = require('log-symbols');

@@ -46,5 +47,5 @@ module.exports = {

if (total > 0) {
ret += chalk.red((process.platform !== 'win32' ? '✖ ' : '') + total + ' problem' + (total === 1 ? '' : 's'));
ret += logSymbols.error + ' ' + total + ' problem' + (total === 1 ? '' : 's');
} else {
ret += chalk.green((process.platform !== 'win32' ? '✔ ' : '') + 'No problems');
ret += logSymbols.success + ' No problems';
ret = '\n' + ret.trim();

@@ -51,0 +52,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