Package Exports
- imagemin-gifsicle
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (imagemin-gifsicle) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
imagemin-gifsicle 
gifsicle image-min plugin
Install
$ npm install --save imagemin-gifsicle
Usage
var Imagemin = require('image-min');
var gifsicle = require('imagemin-gifsicle');
var imagemin = new Imagemin()
.src('foo.gif')
.dest('foo-optimized.gif')
.use(gifsicle({ interlaced: true }));
imagemin.optimize();
Options
interlaced
Type: Boolean
Default: false
Interlace gif for progressive rendering.
License
MIT © imagemin