UNPKG

downzip

Version:

Library to enable client-side code to stream potentially large files into a zipped download

48 lines (47 loc) 1.47 kB
{ "name": "downzip", "version": "2.0.1", "description": "Library to enable client-side code to stream potentially large files into a zipped download", "main": "./dist/main.js", "scripts": { "setup_nyc_folder": "mkdir -p .nyc_output && chmod -R u+x .", "test": "mocha --require @babel/register --require @babel/polyfill --require mocha-steps --text", "test:coverage": "NODE_ENV=nyc npx babel src --out-dir instrumented-src && nyc --reporter=lcov --reporter=text --all --include=src/* npm run test", "build": "npx webpack --mode=production", "build_dev": "npx webpack --mode=development" }, "repository": { "type": "git", "url": "https://github.com/robbederks/downzip" }, "homepage": "https://github.com/robbederks/downzip", "keywords": [ "zip", "download", "stream", "zip64", "client" ], "author": "Robbe Derks", "license": "MIT", "devDependencies": { "@babel/cli": "^7.12.10", "@babel/core": "^7.12.10", "@babel/plugin-proposal-class-properties": "^7.12.1", "@babel/polyfill": "^7.12.1", "@babel/preset-env": "^7.12.11", "@babel/register": "^7.12.10", "babel-loader": "^8.2.2", "babel-plugin-istanbul": "^6.0.0", "mocha": "^6.2.3", "mocha-steps": "^1.3.0", "node": "^13.14.0", "nyc": "^15.1.0", "service-worker-loader": "^4.0.2", "webpack": "^4.44.2", "webpack-cli": "^3.3.12" }, "dependencies": { "jszip": "^3.5.0" } }