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

hubot-forecast-schedule

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hubot-forecast-schedule - npm Package Compare versions

Comparing version 0.0.1 to 0.0.2

2

package.json
{
"name": "hubot-forecast-schedule",
"version": "0.0.1",
"version": "0.0.2",
"description": "A hubot script for showing Forecast schedules",

@@ -5,0 +5,0 @@ "keywords": [

@@ -45,3 +45,3 @@ // Description

}
_.map(lines, msg.send);
msg.send(lines.join('\n'));
});

@@ -55,3 +55,3 @@ });

}
_.map(lines, msg.send);
msg.send(lines.join('\n'));
});

@@ -69,3 +69,3 @@ });

robot.respond(/show ((\d+) day |)(schedule|forecast)(| for (.*))$/, function(msg) {
var days = match[2] ? parseInt(match[2], 10) : 1;
var days = msg.match[2] ? parseInt(msg.match[2], 10) : 1;
var term = msg.match[5] || '';

@@ -82,3 +82,3 @@

}
_.map(lines, msg.send);
msg.send(lines.join('\n'));
});

@@ -115,3 +115,3 @@ });

if (!project.archived) {
lines.push(project.name);
lines.push('\t' + project.name);
}

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