{"id":13991989,"url":"https://github.com/terrierscript/gulp-unzip","last_synced_at":"2025-10-30T08:31:25.687Z","repository":{"id":15054700,"uuid":"17780842","full_name":"terrierscript/gulp-unzip","owner":"terrierscript","description":null,"archived":false,"fork":false,"pushed_at":"2019-06-02T08:25:21.000Z","size":878,"stargazers_count":14,"open_issues_count":3,"forks_count":8,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-02-06T13:11:30.186Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"AICP/device_samsung_galaxys2-common","license":"bsd-2-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/terrierscript.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-03-15T17:18:05.000Z","updated_at":"2023-01-19T07:10:18.000Z","dependencies_parsed_at":"2022-08-27T21:51:15.410Z","dependency_job_id":null,"html_url":"https://github.com/terrierscript/gulp-unzip","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/terrierscript%2Fgulp-unzip","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/terrierscript%2Fgulp-unzip/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/terrierscript%2Fgulp-unzip/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/terrierscript%2Fgulp-unzip/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/terrierscript","download_url":"https://codeload.github.com/terrierscript/gulp-unzip/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238945642,"owners_count":19556701,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-09T14:01:43.482Z","updated_at":"2025-10-30T08:31:25.297Z","avatar_url":"https://github.com/terrierscript.png","language":"JavaScript","funding_links":[],"categories":["JavaScript"],"sub_categories":[],"readme":"[![travis](https://travis-ci.org/terrierscript/gulp-unzip.svg)](https://travis-ci.org/terrierscript/gulp-unzip)\n![dependencies](https://img.shields.io/david/terrierscript/gulp-unzip.svg)\n![devDependencies](https://img.shields.io/david/dev/terrierscript/gulp-unzip.svg)\n![Downloads per Week NPM](https://img.shields.io/npm/dw/gulp-unzip.svg)\n![Open PRs](https://img.shields.io/github/issues-pr/terrierscript/gulp-unzip.svg)\n![Open Issues](https://img.shields.io/github/issues-raw/terrierscript/gulp-unzip.svg)\n\n\n# gulp-unzip\n\u003e gulp plugin for unzip file.\n\n### Usage\n\n```bash\nnpm install gulp-unzip --save\n```\n\n```js\nvar unzip = require('gulp-unzip')\ngulp.task('filter_sample', function(){\n  gulp.src(\"./download/bootstrap-3.1.1-dist.zip\")\n    .pipe(unzip())\n    .pipe(gulp.dest('./tmp'))\n})\n```\n\n### Options\n\n#### filter\n\nYou can provide a `filter` option. It should be a function that gets an `entry` as an argument and returns `true` or `false`.\n\n```js\nvar concat = require('gulp-concat')\nvar unzip = require('gulp-unzip')\nvar minimatch = require('minimatch')\ngulp.task('filter_sample', function(){\n  gulp.src(\"./download/bootstrap-3.1.1-dist.zip\")\n    .pipe(unzip({\n      filter : function(entry){\n        return minimatch(entry.path, \"**/*.min.css\")\n      }\n    }))\n    .pipe(concat(\"bootstrap.css\"))\n    .pipe(gulp.dest('./tmp'))\n})\n```\n\n#### keepEmpty\n\nYou can provide `true` or `false` in `keepEmpty` for whether you want to extract empty files from the archive or not. Defaults to `false`.\n\n```js\ngulp.task('filter_sample', function(){\n  gulp.src(\"./download/bootstrap-3.1.1-dist.zip\")\n    .pipe(unzip({ keepEmpty : true }))\n    //...\n})\n```\n\n### Contributors\n\nIf you want to contribute to the project, please check de [Contribution Guidelines](CONTRIBUTING.md)\n\n**Author**\n- [terrierscript (@terrierscript)](https://github.com/terrierscript)\n\n**Maintainers**\n- [Ulises Gascón (@ulisesGascon)](https://github.com/ulisesGascon)\n\n**Contributors**\n- [Joey Cozza (@joeycozza)](https://github.com/joeycozza)\n- [Joe Pettersson (@Joe8Bit)](https://github.com/Joe8Bit)\n- [Erik Vold (@erikvold)](https://github.com/erikvold)\n- [hami (@hami-jp)](https://github.com/hami-jp)\n- [Selwyn (@Selwyn)](https://github.com/Siilwyn)\n- [João Moreno (@joaomoreno)](https://github.com/joaomoreno)\n- [Evan Oxfeld (@EvanOxfeld)](https://github.com/EvanOxfeld)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fterrierscript%2Fgulp-unzip","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fterrierscript%2Fgulp-unzip","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fterrierscript%2Fgulp-unzip/lists"}