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

coins-validate

Package Overview
Dependencies
Maintainers
1
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

coins-validate - npm Package Compare versions

Comparing version 1.1.5 to 1.1.6

6

index.js
var validate = require('git-validate');
var validateUtils = require('git-validate/lib/utils');
var path = require('path');
var exec = require('child_process').exec;
var cp = require('child_process');
var root = validateUtils.findProjectRoot();

@@ -15,2 +15,4 @@ var packages = [

console.log('installing coins-validate hooks and scripts into your project...');
cp.execSync('rm -f .jshintrc .jscsrc', { cwd: root });
validate.copy('templates/.jshintrc', '.jshintrc');

@@ -33,3 +35,3 @@ validate.copy('templates/.jscsrc', '.jscsrc');

var installDev = function(packages) {
exec('npm install --save-dev ' + packages.join(' '), { cwd: root }, function(err, stdout, stderr) {
cp.exec('npm install --save-dev ' + packages.join(' '), { cwd: root }, function(err, stdout, stderr) {
if (err) {

@@ -36,0 +38,0 @@ console.error(err);

{
"name": "coins-validate",
"version": "1.1.5",
"version": "1.1.6",
"description": "configures a package to fall inline with coins standards",

@@ -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