Socket
Socket
Sign inDemoInstall

@semantic-release/npm

Package Overview
Dependencies
Maintainers
5
Versions
130
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@semantic-release/npm

Set of semantic-release plugins to publish to a npm registry


Version published
Weekly downloads
1.1M
decreased by-16.67%
Maintainers
5
Weekly downloads
 
Created

What is @semantic-release/npm?

The @semantic-release/npm package is designed to automate the process of releasing new versions of npm packages. It updates the package version in package.json and publishes the package to the npm registry based on semantic versioning rules and the commit messages history. This tool is part of the Semantic Release ecosystem, which aims to fully automate the package release workflow, including determining the next version number, generating the release notes, and publishing the package.

What are @semantic-release/npm's main functionalities?

Update package version

This configuration snippet for the Semantic Release setup in the package.json file demonstrates how to automatically update the package version in package.json and publish the package to the npm registry. The 'npmPublish' option is set to true to enable publishing.

"release": {
  "prepare": [
    {
      "path": "@semantic-release/npm",
      "npmPublish": true
    }
  ]
}

Publish to npm registry

This configuration enables the automatic publishing of the package to the npm registry as part of the release process. It specifies that the @semantic-release/npm plugin should be used for the publishing step.

"release": {
  "publish": [
    {
      "path": "@semantic-release/npm",
      "npmPublish": true
    }
  ]
}

Other packages similar to @semantic-release/npm

Keywords

FAQs

Package last updated on 17 Jul 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc