Reputation: 65
While executing the following command :
npm install
i'm getting the following error :
npm WARN [email protected] No repository field.
npm WARN [email protected] No license field.
Please help me on how to resolve the above warning.
Upvotes: 1
Views: 83
Reputation: 203286
If kibana_api
is your own project, you can remove those warnings by adding a repository
and a license
field to package.json
.
However, they are just warnings, and you may not even have a repository or a license for your project, or kibana_api
isn't your own project (i.e. it's just a dependency of your project). In that case, just ignore them.
Upvotes: 2