This repository has been archived on 2022-03-12. You can view files and clone it, but cannot push or open issues or pull requests.

44 lines
1.0 KiB
JSON
Raw Normal View History

2021-04-02 02:24:13 +03:00
{
"name": "node-stream-zip",
"version": "1.13.3",
"description": "node.js library for reading and extraction of ZIP archives",
"keywords": [
"zip",
"archive",
"unzip",
"stream"
],
"homepage": "https://github.com/antelle/node-stream-zip",
"author": "Antelle <antelle.net@gmail.com> (https://github.com/antelle)",
"bugs": {
"email": "antelle.net@gmail.com",
"url": "https://github.com/antelle/node-stream-zip/issues"
},
"license": "MIT",
"files": [
"LICENSE",
"node_stream_zip.js",
"node_stream_zip.d.ts"
],
"scripts": {
"lint": "eslint node_stream_zip.js test/tests.js",
"check-types": "tsc node_stream_zip.d.ts",
"test": "nodeunit test/tests.js"
},
"main": "node_stream_zip.js",
"types": "node_stream_zip.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/antelle/node-stream-zip.git"
},
"engines": {
"node": ">=0.10.0"
},
"devDependencies": {
"@types/node": "^14.14.6",
"eslint": "^7.19.0",
"nodeunit": "^0.11.3",
"prettier": "^2.2.1"
}
}