updated deps

This commit is contained in:
Philipp Kunz 2016-04-05 01:22:11 +02:00
parent 7eed737120
commit 65d50ab238
5 changed files with 27 additions and 60 deletions

View File

@ -1,13 +1,14 @@
# smartcli
nodejs wrapper for CLI related tasks
[![Dev Status](https://img.shields.io/badge/DevStatus-Active-green.svg)](https://github.com/pushrocks/smartcli/commits/dev)
nodejs wrapper for CLI related tasks
## Buildstatus/Dependencies
## Status
[![Build Status](https://travis-ci.org/pushrocks/smartcli.svg?branch=master)](https://travis-ci.org/pushrocks/smartcli)
[![devDependency Status](https://david-dm.org/pushrocks/smartcli/dev-status.svg)](https://david-dm.org/pushrocks/smartcli#info=devDependencies)
[![Dependency Status](https://david-dm.org/pushrocks/smartcli.svg)](https://david-dm.org/pushrocks/smartcli)
[![bitHound Overall Score](https://www.bithound.io/github/pushrocks/smartcli/badges/score.svg)](https://www.bithound.io/github/pushrocks/smartcli)
[![bitHound Code](https://www.bithound.io/github/pushrocks/smartcli/badges/code.svg)](https://www.bithound.io/github/pushrocks/smartcli)
## Install the package
npm install smartcli
npm install smartcli --save
## Usage
@ -53,5 +54,3 @@ smartcli.check.command('jazz');
smartcli.get.option('myoption');
```
Cheers
Phil from Lossless Digital

View File

@ -27,15 +27,15 @@
},
"homepage": "https://github.com/pushrocks/smartcli",
"dependencies": {
"beautylog": "3.1.2",
"beautylog": "4.1.2",
"cliff": "^0.1.10",
"inquirer": "^0.12.0",
"smartparam": "0.0.7",
"yargs": "^4.1.0"
"yargs": "^4.3.2"
},
"devDependencies": {
"gulp": "3.9.1",
"gulp-typescript": "2.11.0",
"npmts": "^3.1.2"
"gulp-typescript": "2.12.2",
"npmts": "^5.0.3"
}
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -23,15 +23,6 @@ describe("smartcli",function(){
});
var checkCommandPresenceTest = function() {
if (smartcli.check.commandPresence()) {
beautylog.success('There are commands present, like supposed to. Perfect!');
} else {
beautylog.error('There do not seem to be any commands present... This is wrong');
process.exit(1);
}
};
checkCommandPresenceTest();
var checkCommandArgumentTest = function() {