I'm interested to know if there is a way for passing custom license urls in NPM's package.json files.
I tried:
{
"license": {"name": "foo", "url": "http://example.com" }
}
It seems that this format is now deprecated:
// Not valid metadata
{ "license" :
{ "type" : "ISC"
, "url" : "http://opensource.org/licenses/ISC"
}
}
Is there another way to pass the license url in package.json?