Socket
Socket
Sign inDemoInstall

dependency-manifest-webpack-plugin

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dependency-manifest-webpack-plugin

Dependency Manifest


Version published
Weekly downloads
2
decreased by-71.43%
Maintainers
1
Weekly downloads
 
Created
Source

Dependency Manifest

This webpack plugin will create manifest file for all your dependencies.

The plugin will create a JSON from all the external dependencies used by your project from the entry point you defined in your webpack file.

Usage

In your webpack.config.js:

const DependencyManifestPlugin = require('dependency-manifest-webpack-plugin');

module.exports = {
    // ...
    plugins: [
        // ...
        new DependencyManifestPlugin({
            // These are the default values
            packageLocation: path.join(process.cwd(), 'package.json'),
            output: 'dependency-manifest.json',
        }),
    ],
};

The following will generate a manifest file with all the dependencies used by your project with it's versions.

Example:

{
    "muject": "1"
}

Keywords

FAQs

Package last updated on 16 Nov 2016

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc