List followed projects

## Usage

`circleci project list [flags]`

Aliases: `circleci project ls`

## Flags

| Flag          | Description                                                                       |
| ------------- | --------------------------------------------------------------------------------- |
| `--jq string` | Process values from the response using jq syntax (see `circleci help formatting`) |
| `--json`      | Output as JSON                                                                    |

Global flags: `-c, --config`, `--debug`, `--no-color`, `-q, --quiet` — see `circleci --help`.

## Examples

- List all followed projects: 
  `circleci project list`
- Output as JSON for scripting: 
  `circleci project list --json`
- Filter by org: 
  `circleci project list --json --jq '.[] | select(.username == "myorg")'`

## Details

List all CircleCI projects followed by the authenticated user.

Projects are identified by a slug in the form vcs/org/repo
(e.g. gh/myorg/myrepo). Use 'circleci project follow' to start
following a new project.

JSON fields: slug, name, vcs_type, username, reponame

