{
"name": "marvel/xmen",
"description": "Mutants saving the world for people who hate them",
"keywprds": ["mutant", "superhero", "bald", "guy"],
"homepage": "htp://marvel.com/mutants",
"time": "1963-09-01",
"license": "MIT",
"authors":
[
{
"name": "Stan Lee"
"email": "StanLee@gmail.com"
"homepage": "http://marvel.com",
"role": "engineer"
}
]
}
在"authors"数组中缺少逗号。应该是这样:
{
"name": "marvel/xmen",
"description": "Mutants saving the world for people who hate them",
"keywprds": ["mutant", "superhero", "bald", "guy"],
"homepage": "htp://marvel.com/mutants",
"time": "1963-09-01",
"license": "MIT",
"authors":
[
{
"name": "Stan Lee",
"email": "StanLee@gmail.com",
"homepage": "http://marvel.com",
"role": "engineer"
}
]
}