JoshuaKGoldberg / package.json-validator

Tools to validate package.json files
MIT License
107 stars 26 forks source link

Not parsing "contributors" array as person strings #3

Closed jasonkarns closed 11 years ago

jasonkarns commented 11 years ago

The following should be valid for contributors

{
  "contributors": [
    "Some Dude <thedude@abides.com> (http://lebowski.com)"
  ]
}

but I'm getting the following:

  "errors": [
    "contributors field should have name",
    "contributors field should have email or url"
  ],
TechNickAI commented 11 years ago

Thanks for the report!