All Projects → rousan → sl

rousan / sl

Licence: MIT License
🍻 An utility tool to list npm scripts from package.json file

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to sl

license-ls
Get a list of licenses used by a projects dependencies
Stars: ✭ 17 (-22.73%)
Mutual labels:  ls, npm-ls
awesome-indie-android-apps
A curated list & timeline of awesome android apps by indie developers / solopreneurs
Stars: ✭ 34 (+54.55%)
Mutual labels:  list
treeage
Expose aging code by listing contents of repository in a tree-like format with eye-catching age metric.
Stars: ✭ 42 (+90.91%)
Mutual labels:  ls
NonEmptyCollections
A type-safe implementation for collections that cannot be empty. Life is too short for emptiness-checks!
Stars: ✭ 45 (+104.55%)
Mutual labels:  list
awesome-htmlhint
🖖 A list of awesome HTMLHint plugins, configs, etc.
Stars: ✭ 20 (-9.09%)
Mutual labels:  list
tasuku
✅ タスク — The minimal task runner for Node.js
Stars: ✭ 1,488 (+6663.64%)
Mutual labels:  list
SettingsAppInSwiftUI
I have recreated a Settings App in iPhoneXR using SwiftUI concepts such as Form,Section,Toggle,Picker,Stack..etc
Stars: ✭ 37 (+68.18%)
Mutual labels:  list
org
No description or website provided.
Stars: ✭ 15 (-31.82%)
Mutual labels:  list
awesome-game-design
A comprehensive list of Game Design related learning materials, examples and tools.
Stars: ✭ 43 (+95.45%)
Mutual labels:  list
better-ls
ls with customizable icons and colors. Uses nerd-fonts.
Stars: ✭ 47 (+113.64%)
Mutual labels:  ls
raspap-awesome
🎉 A curated list of awesome things created with RaspAP
Stars: ✭ 55 (+150%)
Mutual labels:  list
wunderlist-api
📕 Wunderlist in a simple way.
Stars: ✭ 11 (-50%)
Mutual labels:  list
react-native-reseau
[WIP] An ios-like grid view based on react-native.
Stars: ✭ 13 (-40.91%)
Mutual labels:  list
vue-virtual-stream
Simple vue-virtualized package for Vue.js
Stars: ✭ 16 (-27.27%)
Mutual labels:  list
recyclerview-list-drag-and-drop
No description or website provided.
Stars: ✭ 50 (+127.27%)
Mutual labels:  list
Compact-Unity-Events
UnityEvents drawer with collapsing, reordering and compact UX
Stars: ✭ 41 (+86.36%)
Mutual labels:  list
recycler-adapter
RecyclerView-driven declarative UIs
Stars: ✭ 124 (+463.64%)
Mutual labels:  list
react-tabllist
React-based customizable style table or list components that support event and callback functions.
Stars: ✭ 20 (-9.09%)
Mutual labels:  list
awesome
my personal collection of awesome projects, links, books.
Stars: ✭ 16 (-27.27%)
Mutual labels:  list
ienumerable
Deep immutable, Lightweight Enumerable with superpowers
Stars: ✭ 63 (+186.36%)
Mutual labels:  list

NPM Script listing Demo

Build Status NPM version Required Node version NPM total downloads Contributors License

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-list

Usage

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

Script 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 test

Use 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 test

Note: It has built-in support for path globbing on windows.

Contributing

Your PRs and stars are always welcome.

Checkout the CONTRIBUTING guides.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].