zipster
Version:
TypeScript library built for Node backends to create ZIP files with password protection
73 lines (72 loc) • 1.69 kB
JSON
{
"name": "zipster",
"version": "3.0.0",
"description": "TypeScript library built for Node backends to create ZIP files with password protection",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"prepare": "npm run lint && npm audit && npm run build",
"lint": "",
"build": "tsc",
"test": "mocha --config ./test/support/unit.yml",
"coverage": "nyc --reporter=lcov npm run test"
},
"keywords": [
"ZIP",
"password",
"secure",
"node",
"typescript",
"files",
"compression",
"compress",
"bulk",
"pattern",
"directory",
"promises"
],
"files": [
"lib",
"test",
"LICENSE",
"tsconfig.json"
],
"author": {
"name": "Alex Pickering",
"url": "https://github.com/ToeFungi/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ToeFungi/zipster.git"
},
"bugs": {
"url": "https://github.com/ToeFungi/zipster/issues"
},
"homepage": "https://github.com/ToeFungi/zipster",
"dependencies": {
"archiver": "5.3.0",
"archiver-zip-encryptable": "1.0.10",
"guarder": "0.5.0",
"uuid": "3.4.0"
},
"devDependencies": {
"@types/archiver": "5.1.1",
"@types/chai": "4.2.22",
"@types/chai-as-promised": "7.1.4",
"@types/mocha": "9.0.0",
"@types/sinon": "10.0.6",
"@types/sinon-chai": "3.2.5",
"@types/uuid": "3.4.6",
"chai": "4.3.4",
"chai-as-promised": "7.1.1",
"mocha": "9.1.3",
"nyc": "15.1.0",
"sinon": "12.0.1",
"sinon-chai": "3.7.0",
"source-map-support": "0.5.20",
"ts-node": "8.6.2",
"tsconfig-paths": "3.9.0",
"typescript": "3.8.3"
}
}