UNPKG

dir-archiver

Version:

Compress a whole directory (including subdirectories) into a zip file, with options to exclude specific files, or directories.

61 lines (60 loc) 1.57 kB
{ "name": "dir-archiver", "version": "2.2.0", "description": "Compress a whole directory (including subdirectories) into a zip file, with options to exclude specific files, or directories.", "license": "MIT", "main": "dist/index.js", "types": "dist/index.d.ts", "bin": { "dir-archiver": "dist/cli.js" }, "files": [ "LICENSE", "dist" ], "keywords": [ "zip", "compression", "archive", "archiver", "folder", "directory", "dir" ], "repository": { "type": "git", "url": "git+https://github.com/Ismail-elkorchi/dir-archiver.git" }, "author": { "name": "Ismail El Korchi", "email": "ismail.elkorchi@gmail.com", "url": "https://ismailelkorchi.com" }, "bugs": "https://github.com/Ismail-elkorchi/dir-archiver/issues", "homepage": "https://github.com/Ismail-elkorchi/dir-archiver", "scripts": { "build": "tsc -p tsconfig.json", "typecheck": "tsc -p tsconfig.json --noEmit", "lint": "npm run typecheck && eslint . --max-warnings=0", "test": "npm run build && node test/smoke.js && node test/cli.js", "prepack": "npm run build" }, "engines": { "node": ">=18" }, "dependencies": { "archiver": "^7.0.1", "argv-flags": "^0.2.1" }, "devDependencies": { "@eslint/js": "^9.39.2", "@types/archiver": "^7.0.0", "@types/node": "^20.11.0", "@typescript-eslint/eslint-plugin": "^8.54.0", "@typescript-eslint/parser": "^8.54.0", "eslint": "^9.39.2", "globals": "^17.2.0", "typescript": "^5.3.3", "yauzl": "^3.2.0" } }