Is there a way to specify how to output a deploy?

Is it possible to specify how to format the output of a sls deploy (or sls info) command? The idea would be to specify a specific format (like JSON) and then give that output to another process that would execute other tasks based on that JSON.

Serverless: Stack update finished...
Service Information
service: my-service
stage: qa
region: us-west-2
stack: my-service-qa
api keys:
  None
endpoints:
  GET - https://gs8lvo0k19.execute-api.us-west-2.amazonaws.com/qa/stuff
  GET - https://gs8lvo0k19.execute-api.us-west-2.amazonaws.com/qa/lstuff/{id}
functions:
  get_stuff: my-service-qa-get_get_stuff
  get_stuff_by_id: my-service-qa-get_stuff_by_id

Thanks!

AFAIK there isn’t. Might be an interesting feature though.

The output is always well structured, so you could probably easily parse it yourself and convert it to JSON.