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

verifyjs

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

verifyjs - npm Package Compare versions

Comparing version 0.0.1 to 0.0.2

.npmignore

13

index.js
var express = require('express'),
stylus = require('stylus'),
path = require('path'),
linter = require('./linter'),
analysis = require('./lib/analysis'),
jshint = require('./lib/jshint'),
app = express();
module.exports = function(options) {
module.exports.analyzer = analysis;
module.exports.jshint = jshint;
module.exports.viewer = function(options) {
options = options || {};

@@ -41,6 +46,6 @@

linter.hint(options);
analysis.hint(options);
app.get('/*', function(req, res) {
return res.render(path.join(__dirname, 'viewer'), {summary: linter.summary, results:linter.errors});
return res.render(path.join(__dirname, 'viewer'), {summary: analysis.summary, results:analysis.errors});
});

@@ -47,0 +52,0 @@

{
"name": "verifyjs",
"version": "0.0.1",
"version": "0.0.2",
"directories": {},

@@ -12,3 +12,3 @@ "engines": {

"express": "3.0.0rc2",
"stylus": "0.24.0",
"stylus": "0.30.1",
"async": "0.1.18",

@@ -18,2 +18,7 @@ "underscore": "1.3.3",

},
"devDependencies": {
"coffee-script": "latest",
"mocha": "latest",
"should": "latest"
},
"_npmUser": {

@@ -24,3 +29,2 @@ "name": "snodgrass23",

"_id": "verifyjs@0.0.1",
"devDependencies": {},
"optionalDependencies": {},

@@ -27,0 +31,0 @@ "_engineSupported": true,

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