55 lines
1.3 KiB
JSON
55 lines
1.3 KiB
JSON
|
|
{
|
||
|
|
"name": "adm-zip",
|
||
|
|
"version": "0.5.18",
|
||
|
|
"description": "Javascript implementation of zip for nodejs with support for electron original-fs. Allows user to create or extract zip files both in memory or to/from disk",
|
||
|
|
"scripts": {
|
||
|
|
"test": "mocha -R spec",
|
||
|
|
"test:format": "npm run format:prettier:raw -- --check",
|
||
|
|
"format": "npm run format:prettier",
|
||
|
|
"format:prettier": "npm run format:prettier:raw -- --write",
|
||
|
|
"format:prettier:raw": "prettier \"**/*.{js,yml,json}\""
|
||
|
|
},
|
||
|
|
"keywords": [
|
||
|
|
"zip",
|
||
|
|
"methods",
|
||
|
|
"archive",
|
||
|
|
"unzip"
|
||
|
|
],
|
||
|
|
"homepage": "https://github.com/cthackers/adm-zip",
|
||
|
|
"author": "Nasca Iacob <adm-zip@pm.me> (https://github.com/cthackers)",
|
||
|
|
"bugs": {
|
||
|
|
"email": "adm-zip@pm.me",
|
||
|
|
"url": "https://github.com/cthackers/adm-zip/issues"
|
||
|
|
},
|
||
|
|
"license": "MIT",
|
||
|
|
"files": [
|
||
|
|
"adm-zip.js",
|
||
|
|
"headers",
|
||
|
|
"methods",
|
||
|
|
"util",
|
||
|
|
"zipEntry.js",
|
||
|
|
"zipFile.js",
|
||
|
|
"LICENSE"
|
||
|
|
],
|
||
|
|
"main": "adm-zip.js",
|
||
|
|
"repository": {
|
||
|
|
"type": "git",
|
||
|
|
"url": "https://github.com/cthackers/adm-zip.git"
|
||
|
|
},
|
||
|
|
"engines": {
|
||
|
|
"node": ">=12.0"
|
||
|
|
},
|
||
|
|
"overrides": {
|
||
|
|
"mocha": {
|
||
|
|
"chokidar": "^4.0.3"
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"devDependencies": {
|
||
|
|
"chai": "^6.2.2",
|
||
|
|
"iconv-lite": "^0.7.2",
|
||
|
|
"mocha": "12.0.0-beta-10",
|
||
|
|
"prettier": "^3.8.1",
|
||
|
|
"rimraf": "^3.0.2"
|
||
|
|
}
|
||
|
|
}
|