Skip to content

Commit

Permalink
NPM v0.0.1 package has been released.
Browse files Browse the repository at this point in the history
  • Loading branch information
ViShell committed Jan 3, 2020
1 parent 3c085be commit c5854f6
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Console command manager
It manages console commands. It uses own string parse that can be used independently.
[![Build Status](https://travis-ci.org/vlikin/console.svg?branch=master)](https://travis-ci.org/vlikin/console)
[![Coverage Status](https://coveralls.io/repos/github/vlikin/console/badge.svg?branch=master)](https://coveralls.io/github/vlikin/console?branch=master)

[![NPM](https://nodei.co/npm/console.png?downloads=true&downloadRank=true)](https://nodei.co/npm/console/)
[![NPM](https://nodei.co/npm-dl/console.png?months=9&height=3)](https://nodei.co/npm/console/)

It manages console commands. It uses own string parser that can be used independently.
## Command pattern.
```
--longArg1="arg1" -shortArg="arg1" -flag command value1 valuen
Expand Down
File renamed without changes.
9 changes: 7 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,24 @@
{
"name": "cli",
"name": "console-command-manager",
"version": "0.0.1",
"description": "Console command manager.",
"main": "src/index.js",
"types": "dts/index.d.ts",
"scripts": {
"lint": "eslint src/**/*.js test/**/*.js",
"lint-fix": "eslint --fix src/**/*.js test/**/*.js",
"test": " mocha test/**/*.spec.js",
"coverage": "nyc npm run test"
},
"author": "",
"author": "vlikin",
"license": "ISC",
"dependencies": {
"readline": "^1.3.0"
},
"files": [
"src",
"dts"
],
"devDependencies": {
"coveralls": "^3.0.9",
"eslint": "^6.7.2",
Expand Down

0 comments on commit c5854f6

Please sign in to comment.