A tiny and useful tool to list all npm
scripts from package.json
file.
sl = script list
node
>= v4.0.0
Note: If node
and npm
are not installed, Install them from here.
Install it from npm
:
$ npm install -g script-list
Access it from terminal or command prompt by sl
command.
$ sl
MyAwesomeProject
- build : babel src -d lib
- start : node node_modules/react-native/local-cli/cli.js start
- test : jest --coverage --verbose
$ sl MyAwesomeProject MyAwesomeProject2
MyAwesomeProject
- build : babel src -d lib
- start : node node_modules/react-native/local-cli/cli.js start
- test : jest --coverage --verbose
MyAwesomeProject2
- ng : ng
- test:e2e : ng e2e
- test:unit : ng test
- test : ng e2e && ng test
$ sl **/*
MyProject1
- build : babel src -d lib
- start : node node_modules/react-native/local-cli/cli.js start
- test : jest --coverage --verbose
MyProject2
- ng : ng
- test:e2e : ng e2e
- test:unit : ng test
- test : ng e2e && ng test
MyProject3
- build : babel src -d lib
- start : node src/cli.js
- test : mocha test
Note: It has built-in support for path globbing
on windows
.
Your PRs and stars are always welcome.
Checkout the CONTRIBUTING guides.