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

mekano

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mekano - npm Package Compare versions

Comparing version 0.0.7 to 0.1.0

bin/help-aliases

10

bin/cli.js

@@ -75,5 +75,11 @@ #!/usr/bin/env node

Commands.help = function () {
Commands.help = function (opts) {
var ev = new EventEmitter()
var f = fs.createReadStream(path.join(__dirname, 'help'), 'utf8')
var file = 'help'
if (opts.argv.remain.length > 0) {
var command = COMMANDS[opts.argv.remain.shift()]
if (command && command != 'help')
file += '-' + command
}
var f = fs.createReadStream(path.join(__dirname, file), 'utf8')
f.pipe(process.stderr)

@@ -80,0 +86,0 @@ f.on('end', function () { ev.emit('finish') })

2

package.json
{
"name": "mekano",
"version": "0.0.7",
"version": "0.1.0",
"description": "maintain, update and regenerate groups of files",

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

@@ -5,5 +5,2 @@ # ![mekano](https://cdn.mediacru.sh/0hecryCVR3vS.svg)

**This is still an alpha version of the tool, keep in mind the current version
is not feature-complete. Work is in progress toward that goal.**
Synopsis

@@ -10,0 +7,0 @@ --------

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