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

devebot-cli

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

devebot-cli - npm Package Compare versions

Comparing version 0.1.0 to 0.1.1

20

lib/utils/appinfo.js

@@ -1,13 +0,15 @@

/*
* devebot-cli
* https://github.com/devebot
*/
'use strict';
var fs = require('fs');
// Project metadata.
var pkg = require('../../package.json');
var pkg = JSON.parse(fs.readFileSync(__dirname + '/../../package.json', 'utf8'));
var appinfo = {};
// Commandline user-agent
appinfo.useragent = [pkg.name, '/', pkg.version].join('');
// Commandline header.
exports.displayCliHeader = function() {
appinfo.displayCliHeader = function() {
console.log('%s: %s (v%s)', pkg.name, pkg.description, pkg.version);

@@ -17,3 +19,3 @@ };

// Commandline footer.
exports.displayCliFooter = function() {
appinfo.displayCliFooter = function() {
[

@@ -27,1 +29,3 @@ "",

};
module.exports = appinfo;

2

package.json
{
"name": "devebot-cli",
"version": "0.1.0",
"version": "0.1.1",
"description": "command line interface",

@@ -5,0 +5,0 @@ "main": "index.js",

Sorry, the diff of this file is not supported yet

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