zip-iterator
Version:
Extract contents from zip archive type using an iterator API using streams or paths. Use stream interface and pipe transforms to add decompression algorithms
77 lines (76 loc) • 1.95 kB
JSON
{
"name": "zip-iterator",
"version": "1.2.23",
"description": "Extract contents from zip archive type using an iterator API using streams or paths. Use stream interface and pipe transforms to add decompression algorithms",
"keywords": [
"extract",
"iterator",
"asyncIterator",
"Symbol.asyncIterator",
"extract-zip",
"decompress",
"decompress-zip",
".zip",
"zip",
"yauzl",
"zip-stream",
"stream"
],
"homepage": "https://github.com/kmalakoff/zip-iterator",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/kmalakoff/zip-iterator.git"
},
"license": "MIT",
"author": "Kevin Malakoff <kmalakoff@gmail.com> (https://github.com/kmalakoff)",
"type": "module",
"exports": {
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.cjs",
"types": "./dist/types/index.d.ts"
},
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.mjs",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsds build",
"format": "biome check --write --unsafe src/ test/",
"test": "tsds test:node --no-timeouts",
"test:engines": "nvu engines npm test",
"version": "tsds version"
},
"dependencies": {
"buffer-v6-polyfill": "^1.0.5",
"call-once-fn": "^1.0.15",
"extract-base-iterator": "^1.2.22",
"lifecycle": "^1.0.4",
"lodash.compact": "^3.0.1",
"mkdirp-classic": "^0.5.3",
"on-one": "^0.1.4",
"os-shim": "^0.1.3",
"queue-cb": "^1.4.16",
"readable-stream": "^2.3.7",
"rimraf2": "^2.8.2",
"short-hash": "^1.0.0",
"temp-suffix": "^0.1.14",
"zip": "^1.2.0"
},
"devDependencies": {
"@types/mocha": "*",
"@types/node": "*",
"cr": "*",
"fs-iterator": "*",
"fs-stats-spys": "*",
"pinkie-promise": "*",
"unbzip2-stream": "*"
},
"engines": {
"node": ">=0.8"
},
"tsds": {
"source": "src/index.mjs"
}
}