You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1002 B
43 lines
1002 B
{ |
|
"name": "adm-zip", |
|
"version": "0.5.5", |
|
"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" |
|
}, |
|
"keywords": [ |
|
"zip", |
|
"methods", |
|
"archive", |
|
"unzip" |
|
], |
|
"homepage": "https://github.com/cthackers/adm-zip", |
|
"author": "Nasca Iacob <sy@another-d-mention.ro> (https://github.com/cthackers)", |
|
"bugs": { |
|
"email": "sy@another-d-mention.ro", |
|
"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": ">=6.0" |
|
}, |
|
"devDependencies": { |
|
"chai": "^4.3.4", |
|
"mocha": "^8.3.2", |
|
"rimraf": "^3.0.2" |
|
} |
|
}
|
|
|