npm-scripts-catalog
Advanced tools
Comparing version 1.0.4 to 1.0.5
{ | ||
"name": "npm-scripts-catalog", | ||
"version": "1.0.4", | ||
"version": "1.0.5", | ||
"description": "list your npm scripts according to your package.json", | ||
"main": "index.js", | ||
"bin": { | ||
"catalog": "./index" | ||
"catalog": "./bin/index" | ||
}, | ||
@@ -9,0 +9,0 @@ "repository": { |
# catalog | ||
list your npm scripts according to your package.json | ||
## usage | ||
``` sh | ||
$ npm install -g npm-scripts-catalog | ||
``` | ||
## description | ||
`npm-scripts-catalog` will list the available scripts of your current projects according to the package.json file. | ||
## demo | ||
``` sh | ||
$ cd someRepo | ||
$ catalog | ||
scripts available: | ||
test: node test.js | ||
start: node app.js | ||
``` | ||
and if there is no scripts available, it will console | ||
``` sh | ||
no script is available | ||
``` |
1679
34