An open API service indexing awesome lists of open source software.

https://github.com/maxdome/npm-readme


https://github.com/maxdome/npm-readme

Last synced: 4 months ago
JSON representation

Awesome Lists containing this project

README

          

# How To publish a NPM package in the [@maxdome](https://www.npmjs.com/org/maxdome/) scope

1. Ensure you're a member of [maxdome](https://www.npmjs.com/org/maxdome/members) (if you get a `Forbidden` at this URL you're not a member)
2. Add the scope to the `name` and the `publishConfig` in the `package.json`
```json
"name": "@maxdome/...",
"publishConfig": {
" access": "public"
}
```
3. Publish
```bash
npm publish
```