chore(package): re-init package with commitizen and standard-release

This commit is contained in:
Pavel Pertsev
2018-05-16 12:54:46 +03:00
parent cb4e7a5643
commit eaf2328575
10640 changed files with 609660 additions and 117 deletions

48
node_modules/cli-spinners/readme.md generated vendored Normal file
View File

@@ -0,0 +1,48 @@
# cli-spinners [![Build Status](https://travis-ci.org/sindresorhus/cli-spinners.svg?branch=master)](https://travis-ci.org/sindresorhus/cli-spinners)
> 50+ spinners for use in the terminal
![](screenshot.gif)
The list of spinners is just a [JSON file](spinners.json) and can be used wherever.
You probably want to use one of these spinners through the [`ora`](https://github.com/sindresorhus/ora) module.
## Install
```
$ npm install --save cli-spinners
```
## Usage
```js
const cliSpinners = require('cli-spinners');
console.log(cliSpinners.dots);
/*
{
interval: 80,
frames: ['⠋', '⠙', '⠹', '⠸', '⠼', '⠴', '⠦', '⠧', '⠇', '⠏']
}
*/
```
## API
Each spinner comes with a recommended `interval` and an array of `frames`.
[See the spinners.](spinners.json)
## Related
- [ora](https://github.com/sindresorhus/ora) - Elegant terminal spinner
## License
MIT © [Sindre Sorhus](https://sindresorhus.com)