mirror of
https://github.com/github/codeql-action.git
synced 2025-12-28 02:00:12 +08:00
Co-authored-by: Andrew Eisenberg <aeisenberg@github.com> Co-authored-by: Henry Mercer <henrymercer@github.com>
46 lines
922 B
JSON
46 lines
922 B
JSON
{
|
|
"name": "unzip-stream",
|
|
"version": "0.3.4",
|
|
"description": "Process zip files using streaming API",
|
|
"author": "Michal Hruby <michal.mhr@gmail.com>",
|
|
"maintainers": [
|
|
{
|
|
"name": "Michal Hruby",
|
|
"email": "michal.mhr@gmail.com"
|
|
}
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/mhr3/unzip-stream.git"
|
|
},
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"binary": "^0.3.0",
|
|
"mkdirp": "^0.5.1"
|
|
},
|
|
"devDependencies": {
|
|
"dirdiff": ">= 0.0.1 < 1",
|
|
"stream-buffers": ">= 0.2.5 < 1",
|
|
"tap": "^11.0.1",
|
|
"temp": ">= 0.4.0 < 1"
|
|
},
|
|
"directories": {
|
|
"example": "examples",
|
|
"test": "test"
|
|
},
|
|
"keywords": [
|
|
"zip",
|
|
"unzip",
|
|
"zlib",
|
|
"uncompress",
|
|
"archive",
|
|
"stream",
|
|
"extract"
|
|
],
|
|
"main": "unzip.js",
|
|
"scripts": {
|
|
"test": "tap ./test/*.js",
|
|
"coverage": "tap ./test/*.js --cov --coverage-report=html"
|
|
}
|
|
}
|