1.0.0 • Published 8 years ago
script-list v1.0.0
sl
A tiny and useful tool to list all npm scripts from package.json file.
sl = script list
Requirements
node >= v4.0.0
Note: If node and npm are not installed, Install them from here.
Installation
Install it from npm:
$ npm install -g script-listUsage
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 --verboseScript List for Multiple Projects
$ 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 testUse Globbing
$ 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 testNote: It has built-in support for path globbing on windows.
Contributing
Your PRs and stars are always welcome.
Checkout the CONTRIBUTING guides.
1.0.0
8 years ago