https://github.com/maxdome/npm-readme
https://github.com/maxdome/npm-readme
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/maxdome/npm-readme
- Owner: maxdome
- Created: 2017-04-27T09:08:42.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-05-22T09:32:45.000Z (about 9 years ago)
- Last Synced: 2025-10-10T14:36:05.733Z (8 months ago)
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```