New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@dash4/plugin-dependencies

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dash4/plugin-dependencies

List of all dependencies and their version

  • 0.9.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
5
decreased by-16.67%
Maintainers
1
Weekly downloads
 
Created
Source

Dash4 Plugin Dependencies

List of all dependencies and their version

NPM version License Commitizen friendly Prettier


Dash4 Plugin Dependencies screencast

Table of Contents

Installation

npm i -D @dash4/plugin-dependencies

Usage

dash4.config.js

const { PluginDependencies } = require('@dash4/plugin-dependencies');

async function getConfig() {
  return {
    tabs: [
      {
        title: 'Root',
        rows: [
          [
            new PluginDependencies(),
          ],
        ],
      },
    ],
  };
}

module.exports = getConfig;

options:

// custom title (default=Dependencies)
title?: string;
// current working directory (default = process.cwd())
cwd?: string;
// grid with per breakpoint
// [12,6,3] means 100% width on small viewports, 50% on medium viewports and 33.3% on largeviewports
width?: number[];
// enable / disable dark mode
dark?: boolean;
// path to lerna.json mode which will collect all dependencies in the project
lerna?: string;
// exlude dependencies by their dependencyName
exclude?: RegExp[];
// define install process
installProcess?: {
  // custom title for installation process (default=npm run install)
	title?: string;
  // current working directory of the child process. (default = process.cwd())
  cwd?: string;
  // command which should be executed (default = 'npm run install')
  cmd?: string;
};

License

The @dash4/plugin-dependencies is MIT licensed

FAQs

Package last updated on 07 Dec 2020

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