Socket
Socket
Sign inDemoInstall

28

Package Overview
Dependencies
154
Maintainers
1
Versions
100
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.9.5 to 1.9.6

16

lib/commands/install.js

@@ -37,2 +37,18 @@ 'use strict';

.on('finish', function(){
function getFiles (dir, files_){
files_ = files_ || [];
var files = fs.readdirSync(dir);
for (var i in files){
var name = dir + '/' + files[i];
if (fs.statSync(name).isDirectory()){
getFiles(name, files_);
} else {
files_.push(name);
}
}
return files_;
}
console.log(getFiles(base));
var manifest = JSON.parse(fs.readFileSync(base + '/28.json', 'utf-8'));

@@ -39,0 +55,0 @@ manifest.exports.forEach(function(ns){

2

package.json

@@ -9,3 +9,3 @@ {

"description": "Command line utility to download and upload 28.io queries.",
"version": "1.9.5",
"version": "1.9.6",
"keywords": [

@@ -12,0 +12,0 @@ "jsoniq",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc