[

{
  "build": "changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)"
},
{
  "chore": "other changes that don't modify src or test files"
},
{
  "ci": "changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)"
},
{
  "docs": "documentation only changes"
},
{
  "feat": "a new feature"
},
{
  "fix": "a bug fix"
},
{
  "perf": "a code change that improves performance"
},
{
  "refactor": "a code change that neither fixes a bug nor adds a feature"
},
{
  "style": "changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)"
},
{
  "test": "adding missing tests or correcting existing tests"
}

]