Home
Docs
GitHub
Pricing
Blog
Log In

Run Sandworm Audit for your App

Get started
Generated on May 17, 2024 via pnpm
Package summary
Share
2
issues
1
high severity
license
1
1
low severity
license
1
5
licenses
67
MIT
7
ISC
1
Apache-2.0
2
other licenses
CC-BY-4.0
1
BSD-3-Clause
1
Package created
15 Feb 2015
Version published
28 Aug 2018
Maintainers
7
Total deps
77
Direct deps
5
License
MIT

Issues

2

1 high severity issue

high
Recommendation: Read and validate the license terms
via: @babel/core@7.24.5
Collapse
Expand

1 low severity issue

low
Recommendation: Read and validate the license terms
via: @babel/core@7.24.5
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
67 Packages, Including:
@babel/code-frame@7.24.2
@babel/compat-data@7.24.4
@babel/core@7.24.5
@babel/generator@7.24.5
@babel/helper-compilation-targets@7.23.6
@babel/helper-environment-visitor@7.22.20
@babel/helper-function-name@7.23.0
@babel/helper-hoist-variables@7.22.5
@babel/helper-module-imports@7.24.3
@babel/helper-module-transforms@7.24.5
@babel/helper-simple-access@7.24.5
@babel/helper-split-export-declaration@7.24.5
@babel/helper-string-parser@7.24.1
@babel/helper-validator-identifier@7.24.5
@babel/helper-validator-option@7.23.5
@babel/helpers@7.24.5
@babel/highlight@7.24.5
@babel/parser@7.24.5
@babel/template@7.24.0
@babel/traverse@7.24.5
@babel/types@7.24.5
@jridgewell/gen-mapping@0.3.5
@jridgewell/resolve-uri@3.1.2
@jridgewell/set-array@1.2.1
@jridgewell/sourcemap-codec@1.4.15
@jridgewell/trace-mapping@0.3.25
ansi-colors@1.1.0
ansi-styles@3.2.1
ansi-wrap@0.1.0
arr-diff@4.0.0
arr-union@3.1.0
assign-symbols@1.0.0
browserslist@4.23.0
chalk@2.4.2
color-convert@1.9.3
color-name@1.1.3
convert-source-map@2.0.0
core-util-is@1.0.3
debug@4.3.4
escalade@3.1.2
escape-string-regexp@1.0.5
extend-shallow@3.0.2
gensync@1.0.0-beta.2
globals@11.12.0
gulp-babel@8.0.0
has-flag@3.0.0
is-extendable@1.0.1
is-plain-object@2.0.4
isarray@1.0.0
isobject@3.0.1

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
7 Packages, Including:
electron-to-chromium@1.4.773
inherits@2.0.4
lru-cache@5.1.1
picocolors@1.0.1
semver@6.3.1
vinyl-sourcemaps-apply@0.2.1
yallist@3.1.1

Apache License 2.0

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
use-patent-claims
place-warranty
Cannot
hold-liable
use-trademark
Must
include-copyright
include-license
state-changes
include-notice
1 Packages, Including:
@ampproject/remapping@2.3.0

Creative Commons Attribution 4.0 International

Uncategorized
Not OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
Cannot
Must
1 Packages, Including:
caniuse-lite@1.0.30001620

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/core7.24.5763.27 kBMIT
prod peer
1
1
plugin-error1.0.14.3 kBMIT
prod
replace-ext1.0.12.57 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.