npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

gulp-backpack

v0.1.3

Published

Collect all the classic gulp's dependencies you need in one package and simplify your task

Readme

This repository is meant to simplify the inclusion of all those tools and gulp plugins we all need to compile our angular app with gulp. One gulp-backpack to gulp them all!

  • "gulp-angular-templatecache": "^1.1.3"
  • "gulp-autoprefixer": "^2.0.0"
  • "gulp-coffee": "^1.4.3"
  • "gulp-coffeelint": "^0.4.0"
  • "gulp-concat": "^2.2.0"
  • "gulp-filter": "^0.4.1"
  • "gulp-jade": "^0.5.0"
  • "gulp-less": "^1.3.9"
  • "gulp-manifest": "0.0.6"
  • "gulp-ng-annotate": "^0.5.2"
  • "gulp-plumber": "^0.6.5"
  • "gulp-rename": "^1.2.0"
  • "gulp-replace": "^0.4.0"
  • "gulp-rev": "^2.0.1"
  • "gulp-rev-collector": "^0.1.1"
  • "gulp-uglify": "^0.2.1"
  • "gulp-util": "^2.2.20"
  • "gulp-webserver": "^0.8.8"
  • "del": "^1.1.1"
  • "require-dir": "^0.1.0"
...
"gulp": "~3.8.10",
"gulp-backpack": "^0.1.2",
..
  1. Use it to build your task Here a example of how to use it. This is a task to compile the less files. You don't need to worry to what you have to include or not you just use it with gulp-backpack.

Not Using gulp-backpack

gulp = require 'gulp'
path = require 'path'
parameters = require '../../parameters.coffee'

less = require 'gulp-less'
plumber = require 'gulp-plumber'
rename = require 'gulp-rename'
rev = require 'gulp-rev'
autoprefixer = require 'gulp-autoprefixer'

# Compile LESS files into CSS
gulp.task 'less', ->
  gulp.src parameters.less_main_file
  .pipe plumber()
  .pipe less paths: [ path.join(__dirname) ]
  .pipe autoprefixer
    browsers: ['last 2 versions', 'Firefox >= 24', 'ie >= 8']
    cascade: false
  .pipe rev()
  .pipe gulp.dest "#{parameters.web_path}/css"
  .pipe rev.manifest()
  .pipe rename 'rev-less.json'
  .pipe gulp.dest parameters.build_temp_path

Using gulp-backpack

gbp = require 'gulp-backpack'
path = require 'path'
parameters = require '../../parameters.coffee'

# Compile LESS files into CSS
gbp.gulp.task 'less', ->
  gbp.gulp.src parameters.less_main_file
  .pipe gbp.plumber()
  .pipe gbp.less paths: [ path.join(__dirname) ]
  .pipe gbp.autoprefixer
    browsers: ['last 2 versions', 'Firefox >= 24', 'ie >= 8']
    cascade: false
  .pipe gbp.rev()
  .pipe gbp.gulp.dest "#{parameters.web_path}/css"
  .pipe gbp.rev.manifest()
  .pipe gbp.rename 'rev-less.json'
  .pipe gbp.gulp.dest parameters.build_temp_path
* The package.json is more simple
* No need to require for every file every plugin
* Less conflicts with the dependencies
* Maybe a little slower because we load all plugin