Example .npmrc file for private NPM Registry organization
To publish a private scoped package to the npm registry, you'll need to create an .npmrc file in the root directory of your package with the following content:
//registry.npmjs.org/:_authToken=YOUR_AUTH_TOKEN
@your-scope:registry=https://registry.npmjs.org/
Replace YOUR_AUTH_TOKEN with your npm authentication token,