From the NPM docs on package.json:
privateIf you set
"private": truein your package.json, then npm will refuse to publish it.This is a way to prevent accidental publication of private repositories.
From the NPM docs on package.json:
privateIf you set
"private": truein your package.json, then npm will refuse to publish it.This is a way to prevent accidental publication of private repositories.