New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

gulp-licenser

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-licenser

Add licenses to gulp streams.

latest
npmnpm
Version
1.0.2
Version published
Maintainers
1
Created
Source

gulp-licenser

Update licenses plugin for gulp.

Installation

Install this package with npm and add it to your development dependencies:

npm install --save-dev gulp-licenser

Usage

var licenser = require('gulp-licenser');

var LICENSE_TEMPLATE =
  '/**\n\
  * Package v1.0.0\n\
  *\
  * Copyright 2015, Company.\n\
  * All rights reserved.\n\
  *\
  */';

gulp.task('updateLicense', function() {
  gulp.src('./src/*.js')
    .pipe(license(LICENSE_TEMPLATE))
    .pipe(gulp.dest('./src/'))
});

Keywords

gulpplugin

FAQs

Package last updated on 28 Aug 2015

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