Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

shrvr

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

shrvr - npm Package Compare versions

Comparing version 0.0.2 to 0.0.3

1

dist/bin/shrvr.js

@@ -0,1 +1,2 @@

#!/usr/bin/env node
var app, argv, express, fslib, http, util, yargs;

@@ -2,0 +3,0 @@

@@ -5,6 +5,9 @@ var gulp = require('gulp');

var pathlib = require('path');
var header = require('gulp-header');
var spawn = require('child_process').spawn;
var paths = {
coffee: './src/**/*.coffee',
sources: ['./src/**/*.sh', './src/**/*.js', './src/test/*']
coffee: ['./src/**/*.coffee', '!./src/bin/*.coffee'],
coffeebin: './src/bin/*.coffee',
sources: ['./src/**/*.sh', './src/**/*.js'],
jsbin: ['./dist/bin/*.js']
};

@@ -20,2 +23,7 @@ gulp.task('clean', function(cb) {

.pipe(gulp.dest('./dist'));
gulp.src(paths.coffeebin)
.pipe(coffee({bare: true})).on('error', gutil.log)
.pipe(header('#!/usr/bin/env node\n'))
.pipe(gulp.dest('./dist/bin'))
});

@@ -22,0 +30,0 @@ gulp.task('copy', function() {

2

package.json
{
"name": "shrvr",
"version": "0.0.2",
"version": "0.0.3",
"description": "Shell server",

@@ -5,0 +5,0 @@ "bin": {

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