Socket
Socket
Sign inDemoInstall

z85-cli

Package Overview
Dependencies
1
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.1.3 to 0.1.4

0

bin/z85-cli.js

@@ -0,0 +0,0 @@ #!/usr/bin/env node

@@ -0,0 +0,0 @@ /*jslint node: true */

@@ -0,0 +0,0 @@ /*jslint node: true */

95

package.json
{
"name": "z85-cli",
"description": "Command line client for ZeroMQ Base-85 encoding",
"version": "0.1.3",
"homepage": "https://github.com/bkimminich/z85-cli",
"author": {
"name": "Bjoern Kimminich",
"email": "npmjs.org@kimminich.de"
},
"repository": {
"type": "git",
"url": "https://github.com/bkimminich/z85-cli.git"
},
"bugs": {
"url": "https://github.com/bkimminich/z85-cli/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/bkimminich/z85-cli/blob/master/LICENSE-MIT"
}
],
"main": "bin/z85-cli",
"engines": {
"node": ">=0.10"
},
"scripts": {
"test": "grunt test"
},
"dependencies": {
"z85": "~0.0"
},
"devDependencies": {
"grunt-contrib-jshint": "~0.6.4",
"grunt-contrib-nodeunit": "~0.2.0",
"grunt": "~0.4.5"
},
"keywords": ["z85", "zeromq", "base85", "base-85", "encoding", "decoding", "encoder", "decoder"],
"preferGlobal": "true",
"bin": {
"z85": "bin/z85-cli.js"
"name": "z85-cli",
"description": "Command line client for ZeroMQ Base-85 encoding",
"version": "0.1.4",
"homepage": "https://github.com/bkimminich/z85-cli",
"author": {
"name": "Bjoern Kimminich",
"email": "npmjs.org@kimminich.de"
},
"repository": {
"type": "git",
"url": "https://github.com/bkimminich/z85-cli.git"
},
"bugs": {
"url": "https://github.com/bkimminich/z85-cli/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/bkimminich/z85-cli/blob/master/LICENSE-MIT"
}
}
],
"main": "bin/z85-cli",
"engines": {
"node": ">=0.10"
},
"scripts": {
"test": "grunt test",
"coveralls": "jscoverage lib && Z85_CLI_COVERAGE=1 nodeunit --reporter=lcov test | coveralls"
},
"dependencies": {
"z85": "~0.0"
},
"devDependencies": {
"nodeunit": "~0.9.0",
"jscoverage": "~0.5.9",
"coveralls": "~2.11.2",
"grunt": "~0.4.5",
"grunt-contrib-jshint": "~0.6.4",
"grunt-contrib-nodeunit": "~0.2.0"
},
"keywords": [
"z85",
"zeromq",
"base85",
"base-85",
"encoding",
"decoding",
"encoder",
"decoder"
],
"preferGlobal": "true",
"bin": {
"z85": "bin/z85-cli.js"
}
}

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

# z85-cli [![Build Status](https://secure.travis-ci.org/bkimminich/z85-cli.png?branch=master)](http://travis-ci.org/bkimminich/z85-cli)
# z85-cli [![Build Status](https://secure.travis-ci.org/bkimminich/z85-cli.png?branch=master)](http://travis-ci.org/bkimminich/z85-cli) [![Coverage Status](https://img.shields.io/coveralls/bkimminich/z85-cli.svg)](https://coveralls.io/r/bkimminich/z85-cli)

@@ -3,0 +3,0 @@ Command line client for ZeroMQ Base-85 encoding

/*jslint node: true */
'use strict';
var z85_cli = require('../lib/z85-cli.js');
var z85_cli = process.env.Z85_CLI_COVERAGE ? require('../lib-cov/z85-cli') : require('../lib/z85-cli');

@@ -9,3 +9,3 @@ exports['z85-cli'] = {

test.expect(1);
test.throws(function() {z85_cli.z85cli()}, Error, 'throws an error.');
test.throws(function() {z85_cli.z85cli();}, Error, 'throws an error.');
test.done();

@@ -15,3 +15,3 @@ },

test.expect(1);
test.throws(function() {z85_cli.z85cli('-x', 'value')}, '', 'throws an error.');
test.throws(function() {z85_cli.z85cli('-x', 'value');}, '', 'throws an error.');
test.done();

@@ -21,3 +21,3 @@ },

test.expect(1);
test.throws(function() {z85_cli.z85cli('-d', 'xxx')}, Error, 'throws an error.');
test.throws(function() {z85_cli.z85cli('-d', 'xxx');}, Error, 'throws an error.');
test.done();

@@ -27,3 +27,3 @@ },

test.expect(1);
test.throws(function() {z85_cli.z85cli('-e', 'xxx')}, Error, 'throws an error.');
test.throws(function() {z85_cli.z85cli('-e', 'xxx');}, Error, 'throws an error.');
test.done();

@@ -30,0 +30,0 @@ },

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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