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 May 6, 2024 via pnpm
Package summary
Share
0
issues
4
licenses
82
MIT
15
ISC
2
BSD-3-Clause
1
BSD-2-Clause
Package created
12 Jan 2012
Version published
31 Jan 2023
Maintainers
4
Total deps
100
Direct deps
13
License
MIT

Issues

0
This package has no issues

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
82 Packages, Including:
ansi-styles@4.3.0
argparse@1.0.10
array-each@1.0.1
array-slice@1.1.0
async@3.2.5
balanced-match@1.0.2
brace-expansion@1.1.11
braces@3.0.2
chalk@4.1.2
color-convert@2.0.1
color-name@1.1.4
colors@1.1.2
concat-map@0.0.1
dateformat@4.6.3
detect-file@1.0.0
eventemitter2@0.4.14
exit@0.1.2
expand-tilde@2.0.2
extend@3.0.2
fill-range@7.0.1
findup-sync@4.0.0
findup-sync@5.0.0
fined@1.2.0
flagged-respawn@1.0.1
for-in@1.0.2
for-own@1.0.0
function-bind@1.1.2
getobject@1.0.2
global-modules@1.0.0
global-prefix@1.0.2
grunt-cli@1.4.3
grunt-known-options@2.0.0
grunt-legacy-log-utils@2.1.0
grunt-legacy-log@3.0.0
grunt-legacy-util@2.0.1
grunt@1.6.1
has-flag@4.0.0
hasown@2.0.2
homedir-polyfill@1.0.3
hooker@0.2.3
iconv-lite@0.6.3
interpret@1.1.0
is-absolute@1.0.0
is-core-module@2.13.1
is-extglob@2.1.1
is-glob@4.0.3
is-number@7.0.0
is-plain-object@2.0.4
is-relative@1.0.0
is-unc-path@1.0.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
15 Packages, Including:
abbrev@1.1.1
fs.realpath@1.0.0
glob@7.1.7
inflight@1.0.6
inherits@2.0.4
ini@1.3.8
isexe@2.0.0
minimatch@3.0.8
nopt@3.0.6
nopt@4.0.3
once@1.4.0
osenv@0.1.5
which@1.3.1
which@2.0.2
wrappy@1.0.2

BSD 3-Clause "New" or "Revised" License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
place-warranty
Cannot
use-trademark
hold-liable
Must
include-copyright
include-license
2 Packages, Including:
sprintf-js@1.0.3
sprintf-js@1.1.3

BSD 2-Clause "Simplified" License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
place-warranty
Cannot
hold-liable
Must
include-copyright
include-license
1 Packages, Including:
esprima@4.0.1
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

13
All Dependencies CSV
β“˜ This is a list of grunt 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities
dateformat4.6.36.15 kBMIT
prod
eventemitter20.4.146.79 kBMIT
prod
exit0.1.214.94 kBMIT
prod
findup-sync5.0.02.87 kBMIT
prod
glob7.1.715.41 kBISC
prod
grunt-cli1.4.33.92 kBMIT
prod
grunt-known-options2.0.02.14 kBMIT
prod
grunt-legacy-log3.0.08.7 kBMIT
prod
grunt-legacy-util2.0.19.39 kBMIT
prod
iconv-lite0.6.3186.2 kBMIT
prod
js-yaml3.14.175.07 kBMIT
prod
minimatch3.0.811.57 kBISC
prod
nopt3.0.610.07 kBISC
prod

Visualizations

Frequently Asked Questions

What does grunt do?

Grunt is a powerful JavaScript Task Runner, designed to automate repetitive tasks in the development process. With its numerous plugins, Grunt can handle tasks ranging from linting and minifying files, to unit testing and compiling code, making it an essential tool for any JavaScript developer's toolkit.

How do you use grunt?

To use Grunt, it needs to be installed in your project using npm (Node Package Manager). You can install Grunt by running the following command in your project root:

npm install grunt --save-dev

After installing, you create a 'Gruntfile.js' in your project root where you define your tasks. Here's an example of a basic Gruntfile:

module.exports = function(grunt) {
  // Project configuration.
  grunt.initConfig({
    pkg: grunt.file.readJSON('package.json'), // Read the package.json file
    uglify: { // Task for uglifying JavaScript files
      my_target: {
        files: {
          'dest/output.min.js': ['src/input1.js', 'src/input2.js'] //uglified output of input js files
        }
      }
    }
  });

  // Load the plugin that provides the "uglify" task.
  grunt.loadNpmTasks('grunt-contrib-uglify');

  // Default task(s).
  grunt.registerTask('default', ['uglify']);
};

Once you've defined your tasks in the Gruntfile, you can run them from the command line with:

grunt <task-name>

For the default task, simply run grunt with no arguments.

Where are the grunt docs?

The Grunt documentation is available on the official Grunt website gruntjs.com. Here, you will find detailed guides and tutorials on how to use Grunt, configure Grunt tasks, create your own Grunt plugins, and much more. The support and contributing guidelines can also be accessed from the website.