GT2/GT2-iOS/node_modules/minizlib/package.json

109 lines
4.5 KiB
JSON

{
"_args": [
[
{
"raw": "minizlib@^1.1.0",
"scope": null,
"escapedName": "minizlib",
"name": "minizlib",
"rawSpec": "^1.1.0",
"spec": ">=1.1.0 <2.0.0",
"type": "range"
},
"/Volumes/2009-SSD/GT2/GT2-iOS/node_modules/tar"
]
],
"_from": "minizlib@>=1.1.0 <2.0.0",
"_id": "minizlib@1.1.0",
"_inCache": true,
"_location": "/minizlib",
"_nodeVersion": "8.9.1",
"_npmOperationalInternal": {
"host": "s3://npm-registry-packages",
"tmp": "tmp/minizlib-1.1.0.tgz_1513828974124_0.5935359639115632"
},
"_npmUser": {
"name": "isaacs",
"email": "i@izs.me"
},
"_npmVersion": "5.6.0",
"_phantomChildren": {},
"_requested": {
"raw": "minizlib@^1.1.0",
"scope": null,
"escapedName": "minizlib",
"name": "minizlib",
"rawSpec": "^1.1.0",
"spec": ">=1.1.0 <2.0.0",
"type": "range"
},
"_requiredBy": [
"/tar"
],
"_resolved": "https://registry.npmjs.org/minizlib/-/minizlib-1.1.0.tgz",
"_shasum": "11e13658ce46bc3a70a267aac58359d1e0c29ceb",
"_shrinkwrap": null,
"_spec": "minizlib@^1.1.0",
"_where": "/Volumes/2009-SSD/GT2/GT2-iOS/node_modules/tar",
"author": {
"name": "Isaac Z. Schlueter",
"email": "i@izs.me",
"url": "http://blog.izs.me/"
},
"bugs": {
"url": "https://github.com/isaacs/minizlib/issues"
},
"dependencies": {
"minipass": "^2.2.1"
},
"description": "A small fast zlib stream built on [minipass](http://npm.im/minipass) and Node.js's zlib binding.",
"devDependencies": {
"tap": "^10.7.2"
},
"directories": {},
"dist": {
"integrity": "sha512-4T6Ur/GctZ27nHfpt9THOdRZNgyJ9FZchYO1ceg5S8Q3DNLCKYy44nCZzgCJgcvx2UM8czmqak5BCxJMrq37lA==",
"shasum": "11e13658ce46bc3a70a267aac58359d1e0c29ceb",
"tarball": "https://registry.npmjs.org/minizlib/-/minizlib-1.1.0.tgz"
},
"files": [
"index.js",
"constants.js"
],
"gitHead": "e10e489a9d7a41b52dccacb39bb22e078835ebed",
"homepage": "https://github.com/isaacs/minizlib#readme",
"keywords": [
"zlib",
"gzip",
"gunzip",
"deflate",
"inflate",
"compression",
"zip",
"unzip"
],
"license": "MIT",
"main": "index.js",
"maintainers": [
{
"name": "isaacs",
"email": "i@izs.me"
}
],
"name": "minizlib",
"optionalDependencies": {},
"readme": "# minizlib\n\nA tiny fast zlib stream built on [minipass](http://npm.im/minipass)\nand Node.js's zlib binding.\n\nThis module was created to serve the needs of\n[node-tar](http://npm.im/tar) v2. If your needs are different, then\nit may not be for you.\n\n## How does this differ from the streams in `require('zlib')`?\n\nFirst, there are no convenience methods to compress or decompress a\nbuffer. If you want those, use the built-in `zlib` module. This is\nonly streams.\n\nThis module compresses and decompresses the data as fast as you feed\nit in. It is synchronous, and runs on the main process thread. Zlib\noperations can be high CPU, but they're very fast, and doing it this\nway means much less bookkeeping and artificial deferral.\n\nNode's built in zlib streams are built on top of `stream.Transform`.\nThey do the maximally safe thing with respect to consistent\nasynchrony, buffering, and backpressure.\n\nThis module _does_ support backpressure, and will buffer output chunks\nthat are not consumed, but is less of a mediator between the input and\noutput. There is no high or low watermarks, no state objects, and so\nartificial async deferrals. It will not protect you from Zalgo.\n\nIf you write, data will be emitted right away. If you write\neverything synchronously in one tick, and you are listening to the\n`data` event to consume it, then it'll all be emitted right away in\nthat same tick. If you want data to be emitted in the next tick, then\nwrite it in the next tick.\n\nIt is thus the responsibility of the reader and writer to manage their\nown consumption and process execution flow.\n\nThe goal is to compress and decompress as fast as possible, even for\nfiles that are too large to store all in one buffer.\n\nThe API is very similar to the built-in zlib module. There are\nclasses that you instantiate with `new` and they are streams that can\nbe piped together.\n",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/isaacs/minizlib.git"
},
"scripts": {
"postpublish": "git push origin --all; git push origin --tags",
"postversion": "npm publish",
"preversion": "npm test",
"test": "tap test/*.js --100 -J"
},
"version": "1.1.0"
}