UNPKG

archiver

Version:

a streaming interface for archive generation

65 lines (64 loc) 1.42 kB
{ "name": "archiver", "version": "8.0.0", "description": "a streaming interface for archive generation", "homepage": "https://github.com/archiverjs/node-archiver", "author": { "name": "Chris Talkington", "url": "http://christalkington.com/" }, "repository": { "type": "git", "url": "https://github.com/archiverjs/node-archiver.git" }, "bugs": { "url": "https://github.com/archiverjs/node-archiver/issues" }, "license": "MIT", "type": "module", "exports": "./index.js", "files": [ "index.js", "lib" ], "engines": { "node": ">=18" }, "scripts": { "test": "mocha --reporter dot", "bench": "node benchmark/simple/pack-zip.js" }, "dependencies": { "async": "^3.2.4", "buffer-crc32": "^1.0.0", "is-stream": "^4.0.0", "lazystream": "^1.0.0", "normalize-path": "^3.0.0", "readable-stream": "^4.0.0", "readdir-glob": "^3.0.0", "tar-stream": "^3.0.0", "zip-stream": "^7.0.2" }, "devDependencies": { "archiver-jsdoc-theme": "1.1.3", "chai": "6.2.2", "jsdoc": "4.0.5", "mkdirp": "3.0.1", "mocha": "11.7.5", "prettier": "3.8.3", "rimraf": "6.1.3", "stream-bench": "0.1.2", "tar": "6.2.1", "yauzl": "3.3.0" }, "keywords": [ "archive", "archiver", "stream", "zip", "tar" ], "publishConfig": { "registry": "https://registry.npmjs.org/" } }