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 Apr 3, 2024 via pnpm
Package summary
Share
3
issues
3
high severity
vulnerability
1
meta
2
4
licenses
69
MIT
3
ISC
1
BSD-2-Clause
1
BSD-3-Clause
Package created
15 Feb 2015
Version published
26 Jan 2018
Maintainers
7
Total deps
74
Direct deps
5
License
MIT

Issues

3

3 high severity issues

high
Recommendation: Upgrade to version 1.0.2 or later
via: babel-core@6.26.3
via: babel-core@6.26.3
via: babel-core@6.26.3
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
69 Packages, Including:
ansi-colors@1.1.0
ansi-regex@2.1.1
ansi-styles@2.2.1
ansi-wrap@0.1.0
arr-diff@4.0.0
arr-union@3.1.0
assign-symbols@1.0.0
babel-code-frame@6.26.0
babel-core@6.26.3
babel-generator@6.26.1
babel-helpers@6.24.1
babel-messages@6.23.0
babel-register@6.26.0
babel-runtime@6.26.0
babel-template@6.26.0
babel-traverse@6.26.0
babel-types@6.26.0
babylon@6.18.0
balanced-match@1.0.2
brace-expansion@1.1.11
chalk@1.1.3
concat-map@0.0.1
convert-source-map@1.9.0
core-js@2.6.12
core-util-is@1.0.3
debug@2.6.9
detect-indent@4.0.0
escape-string-regexp@1.0.5
extend-shallow@3.0.2
globals@9.18.0
gulp-babel@7.0.1
has-ansi@2.0.0
home-or-tmp@2.0.0
invariant@2.2.4
is-extendable@1.0.1
is-finite@1.1.0
is-plain-object@2.0.4
isarray@1.0.0
isobject@3.0.1
js-tokens@3.0.2
js-tokens@4.0.0
jsesc@1.3.0
json5@0.5.1
lodash@4.17.21
loose-envify@1.4.0
minimist@1.2.8
mkdirp@0.5.6
ms@2.0.0
os-homedir@1.0.2
os-tmpdir@1.0.2

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
minimatch@3.1.2
vinyl-sourcemaps-apply@0.2.1

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:
esutils@2.0.3

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
1 Packages, Including:
source-map@0.5.7
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

5
All Dependencies CSV
β“˜ This is a list of gulp-babel 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities
babel-core6.26.323.21 kBMIT
prod peer
3
plugin-error1.0.14.3 kBMIT
prod
replace-ext0.0.12.19 kBMIT
prod
through22.0.53.96 kBMIT
prod
vinyl-sourcemaps-apply0.2.11.33 kBISC
prod

Visualizations

Frequently Asked Questions

What does gulp-babel do?

Gulp-Babel is a JavaScript tool that allows developers to use next-generation JavaScript syntax today. Powered by Babel, it effectively transforms cutting-edge, latest JavaScript code into version that current browsers can comprehend. This significantly broadens browser compatibility for JavaScript applications, thus enhancing the user experience.

How do you use gulp-babel?

To utilize Gulp-Babel, you will first need to install the package and its prerequisites @babel/core and @babel/preset-env into your development environment. For Babel version 7, this can be achieved with this command:

$ npm install --save-dev gulp-babel @babel/core @babel/preset-env

Afterward, you can integrate Gulp-Babel into your gulp tasks. A common use case involves selecting source files with gulp.src(), piping them through the Babel processor, and outputting the transformed files to a destiny folder. Here's what the code might look like:

const gulp = require('gulp');
const babel = require('gulp-babel');

gulp.task('default', () =>
    gulp.src('src/app.js')
        .pipe(babel({
            presets: ['@babel/env']
        }))
        .pipe(gulp.dest('dist'))
);

You can further customize Babel's behavior by altering its options.

Where are the gulp-babel docs?

Complete documentation for Gulp-Babel can be accessed directly from Babel's official website. To report issues with the output of Gulp-Babel, you can resort to Babel's issue tracker. For additional details on Gulp-Babel's usage, such as including source maps or handling Babel metadata, visit Gulp-Babel's page on GitHub.