We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I do npm install I receive the warning in the subject field:
"npm WARN [email protected] No repository field"
Everything in the repo appears to run fine with both npm start and the test frameworks. Do you know how to suppress or solve this warning?
Thanks!
The text was updated successfully, but these errors were encountered:
This is a warning that your package.json has missing information. Add a repository element to that file like so...
package.json
repository
{ "name": "your-project", "version": "0.0.0", "repository": { "type": "git", "url": "git+https://github.com/you/your-project.git" }, "scripts": {...} }
If you don't have a repo, you can just ignore the warning.
see also stack overflow
Sorry, something went wrong.
@GaryB432
Awesome, thanks!
No branches or pull requests
When I do npm install I receive the warning in the subject field:
"npm WARN [email protected] No repository field"
Everything in the repo appears to run fine with both npm start and the test frameworks. Do you know how to suppress or solve this warning?
Thanks!
The text was updated successfully, but these errors were encountered: