Socket
Socket
Sign inDemoInstall

all-contributors-cli

Package Overview
Dependencies
131
Maintainers
2
Versions
121
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    all-contributors-cli

Tool to easily add recognition for new contributors


Version published
Weekly downloads
35K
increased by6.45%
Maintainers
2
Install size
7.69 MB
Created
Weekly downloads
 

Readme

Source

all-contributors-cli

version All Contributors

This is a tool to help automate adding contributor acknowledgements according to the all-contributors specification.

Installation

You can install it via npm:

npm install all-contributors-cli -g

Then init the project using init and answer a few questions:

all-contributors init

Once initialized, you don't need to have all-contributors-cli installed globally. You can instead save it as a devDependency of your project and add it to your package.json scripts:

npm install --save-dev all-contributors-cli
{
  "scripts": {
    "contributors:add": "all-contributors add",
    "contributors:generate": "all-contributors generate"
  }
}

and use them via npm run:

npm run contributors:add -- jfmengels doc
npm run contributors:generate

Usage

Generating the contributors list

Use generate to generate the contributors list and inject it into your contributors file. Contributors will be read from your configuration file.

all-contributors generate

Add/update contributors

Use add to add new contributors to your project, or add new ways in which they have contributed. They will be added to your configuration file, and the contributors file will be updated just as if you used the generate command.

# Add new contributor <username>, who made a contribution of type <contribution>
all-contributors add <username> <contribution>
# Example:
all-contributors add jfmengels code,doc

Where username is the user's GitHub username, and contribution is a ,-separated list of ways to contribute, from the following list (see the specs):

Check for missing contributors

Use check to compare contributors from GitHub with the ones credited in your .all-contributorsrc file, in order to make sure that credit is given where it's due.

all-contributors check

Due to GitHub API restrictions, this command only works for projects with less than 500 contributors.

Configuration

You can configure the project by updating the .all-contributorsrc JSON file. The data used to generate the contributors list will be stored in there, and you can configure how you want all-contributors-cli to generate the list.

These are the keys you can specify:

  • files: Array of files to update. Default: ['README.md']
  • projectOwner: Name of the user the project is hosted by. Example: jfmengels/all-contributors-cli --> jfmengels. Mandatory.
  • projectName: Name of the project. Example: jfmengels/all-contributors-cli --> all-contributors-cli. Mandatory.
  • types: Specify custom symbols or link templates for contribution types. Can override the documented types.
  • imageSize: Size (in px) of the user's avatar. Default: 100.
  • contributorsPerLine: Maximum number of columns for the contributors table. Default: 7.
  • contributorTemplate: Define your own template to generate the contributor list.
  • badgeTemplate: Define your own template to generate the badge.

Contributors

Thanks goes to these wonderful people (emoji key):


Jeroen Engels

💻 📖 ⚠️

Kent C. Dodds

📖 💻

João Guimarães

💻

Ben Briggs

💻

Itai Steinherz

📖 💻

Alex Jover

💻 📖

Jerod Santo

💻

Kevin Jalbert

💻

tunnckoCore

🔧

Mehdi Achour

💻

Roy Revelt

🐛

Chris Vickery

💻

Bryce Reynolds

💻

James, please

🤔 💻

Spyros Ioakeimidis

💻

Fernando Costa

💻

snipe

📖

This project follows the all-contributors specification. Contributions of any kind are welcome!

LICENSE

MIT

Keywords

FAQs

Last updated on 10 Nov 2017

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc