Home
Docs
GitHub
Pricing
Blog
Log In

Run Sandworm Audit for your App

Get started
Hold on, we're currently generating a fresh version of this report
Generated on Feb 20, 2024 via pnpm

gulp-load-plugins 0.5.1

Automatically load any gulp plugins in your package.json
Package summary
Share
12
issues
1
critical severity
vulnerability
1
7
high severity
vulnerability
4
license
1
meta
2
2
moderate severity
vulnerability
2
2
low severity
vulnerability
1
license
1
3
licenses
6
MIT
3
ISC
1
BSD
Package created
18 Jan 2014
Version published
10 May 2014
Maintainers
2
Total deps
10
Direct deps
2
License
MIT

Issues

12

1 critical severity issue

critical
Recommendation: Upgrade to version 4.17.12 or later
via: findup-sync@0.1.3 & others
Collapse
Expand

7 high severity issues

high
Recommendation: Upgrade to version 3.0.2 or later
via: findup-sync@0.1.3 & others
Recommendation: Upgrade to version 4.17.11 or later
via: findup-sync@0.1.3 & others
Recommendation: Upgrade to version 3.0.5 or later
via: findup-sync@0.1.3 & others
Recommendation: Upgrade to version 4.17.21 or later
via: findup-sync@0.1.3 & others
Recommendation: Validate that the package complies with your license policy
via: findup-sync@0.1.3 & others
via: globule@0.2.0
via: findup-sync@0.1.3 & others
Collapse
Expand

2 moderate severity issues

moderate
Recommendation: Upgrade to version 4.17.11 or later
via: findup-sync@0.1.3 & others
Recommendation: Upgrade to version 4.17.21 or later
via: findup-sync@0.1.3 & others
Collapse
Expand

2 low severity issues

low
Recommendation: Upgrade to version 4.17.5 or later
via: findup-sync@0.1.3 & others
Recommendation: Read and validate the license terms
via: findup-sync@0.1.3 & others
Collapse
Expand

Licenses

MIT License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
sublicense
private-use
Cannot
hold-liable
Must
include-copyright
include-license
6 Packages, Including:
findup-sync@0.1.3
globule@0.2.0
gulp-load-plugins@0.5.1
lodash@2.4.2
minimatch@0.2.14
minimatch@0.3.0

ISC License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
Cannot
hold-liable
Must
include-copyright
include-license
3 Packages, Including:
inherits@2.0.4
lru-cache@2.7.3
sigmund@1.0.1

BSD

Invalid
Not OSI Approved
1 Packages, Including:
glob@3.2.11
Disclaimer

This deed highlights only some of the key features and terms of the actual license. It is not a license and has no legal value. You should carefully review all of the terms and conditions of the actual license before using the licensed material.

Sandworm is not a law firm and does not provide legal services. Distributing, displaying, or linking to this deed or the license that it summarizes does not create a lawyer-client or any other relationship.

Direct Dependencies

2
All Dependencies CSV
β“˜ This is a list of gulp-load-plugins 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities
findup-sync0.1.33.41 kBMIT
prod
1
6
2
2
globule0.2.08.7 kBMIT
prod
1
7
2
2

Visualizations

Frequently Asked Questions

What does gulp-load-plugins do?

"gulp-load-plugins" is a valuable tool that automatically loads any gulp plugins listed in your package.json file. The plugin grabs these dependencies and binds them to an object of your choice, streamlining your workflow by saving you from manually having to require each plugin. With the "gulp-load-plugins" package, you can centralize your project's dependencies and simplify your gulpfile.js.

How do you use gulp-load-plugins?

To use "gulp-load-plugins", you first need to install it via npm or Yarn. For npm, use the command npm install --save-dev gulp-load-plugins and for Yarn, use yarn add -D gulp-load-plugins.

Once installed, require "gulp-load-plugins" in your Gulpfile.js. Here is a basic example:

const gulp = require('gulp');
const gulpLoadPlugins = require('gulp-load-plugins');
const plugins = gulpLoadPlugins();

Or in an even shorter format:

const gulp = require('gulp');
const plugins = require('gulp-load-plugins')();

Assuming you have certain gulp plugins like gulp-jshint or gulp-concat in your package.json, they will be loaded and can be accessed as following:

plugins.jshint = require('gulp-jshint');
plugins.concat = require('gulp-concat');

Instead of using require('gulp-plugin') each time, you can simply use plugins.plugin().

"gulp-load-plugins" is highly customizable and supports a wide range of options such as DEBUG, pattern, scope, lazy loading, renaming, and more. You can look at the plugin's documentation to understand and tune these options according to your project's needs.

Where are the gulp-load-plugins docs?

The comprehensive documentation for "gulp-load-plugins" can be found on the package's GitHub page: https://github.com/jackfranklin/gulp-load-plugins. The readme section provides detailed information about installation, usage, options, and provides a list of the package's version updates. The examples in the documentation are practical and easy to follow, allowing developers to quickly comprehend and implement the plugin in their projects.