pnpm
Version:
Fast, disk space efficient package manager
116 lines (115 loc) • 3.71 kB
JSON
{
"_args": [
[
{
"raw": "into-stream@^2.0.0",
"scope": null,
"escapedName": "into-stream",
"name": "into-stream",
"rawSpec": "^2.0.0",
"spec": ">=2.0.0 <3.0.0",
"type": "range"
},
"/home/zoltan/src/pnpm/pnpm/packages/pnpm/node_modules/neat-csv"
]
],
"_from": "into-stream@>=2.0.0 <3.0.0",
"_id": "into-stream@2.0.1",
"_inCache": true,
"_location": "/into-stream",
"_nodeVersion": "4.4.2",
"_npmOperationalInternal": {
"host": "packages-16-east.internal.npmjs.com",
"tmp": "tmp/into-stream-2.0.1.tgz_1461852868336_0.3723208885639906"
},
"_npmUser": {
"name": "sindresorhus",
"email": "sindresorhus@gmail.com"
},
"_npmVersion": "2.15.0",
"_phantomChildren": {},
"_requested": {
"raw": "into-stream@^2.0.0",
"scope": null,
"escapedName": "into-stream",
"name": "into-stream",
"rawSpec": "^2.0.0",
"spec": ">=2.0.0 <3.0.0",
"type": "range"
},
"_requiredBy": [
"/neat-csv"
],
"_resolved": "https://registry.npmjs.org/into-stream/-/into-stream-2.0.1.tgz",
"_shasum": "db9b003694453eae091d8a5c84cc11507b781d31",
"_shrinkwrap": null,
"_spec": "into-stream@^2.0.0",
"_where": "/home/zoltan/src/pnpm/pnpm/packages/pnpm/node_modules/neat-csv",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com"
},
"bugs": {
"url": "https://github.com/sindresorhus/into-stream/issues"
},
"dependencies": {
"from2": "^2.1.1"
},
"description": "Convert a buffer/string/array/object into a stream",
"devDependencies": {
"ava": "*",
"buffer-equals": "^1.0.3",
"concat-stream": "^1.4.8",
"xo": "*"
},
"directories": {},
"dist": {
"shasum": "db9b003694453eae091d8a5c84cc11507b781d31",
"tarball": "https://registry.npmjs.org/into-stream/-/into-stream-2.0.1.tgz"
},
"engines": {
"node": ">=0.10.0"
},
"files": [
"index.js"
],
"gitHead": "6f25f1737fc480c31cb14514f32752c4a9fd90bf",
"homepage": "https://github.com/sindresorhus/into-stream#readme",
"keywords": [
"stream",
"buffer",
"string",
"object",
"array",
"from",
"into",
"to",
"transform",
"convert",
"readable",
"pull",
"gulpfriendly",
"value",
"str"
],
"license": "MIT",
"maintainers": [
{
"name": "sindresorhus",
"email": "sindresorhus@gmail.com"
}
],
"name": "into-stream",
"optionalDependencies": {},
"readme": "# into-stream [](https://travis-ci.org/sindresorhus/into-stream)\n\n> Convert a buffer/string/array/object into a stream\n\nCorrectly chunks up the input and handles backpressure.\n\n\n## Install\n\n```\n$ npm install --save into-stream\n```\n\n\n## Usage\n\n```js\nconst intoStream = require('into-stream');\n\nintoStream('unicorn').pipe(process.stdout);\n//=> 'unicorn'\n```\n\n\n## API\n\n### intoStream(input)\n\nType: `buffer` `string` `array<buffer|string>`<br>\nReturns: [Readable stream](https://nodejs.org/api/stream.html#stream_class_stream_readable)\n\nAdheres to the requested chunk size, except for `array` where each element will be a chunk.\n\n### intoStream.obj(input)\n\nType: `object`, `array<object>`<br>\nReturns: [Readable object stream](https://nodejs.org/api/stream.html#stream_object_mode)\n\n\n## License\n\nMIT © [Sindre Sorhus](https://sindresorhus.com)\n",
"readmeFilename": "readme.md",
"repository": {
"type": "git",
"url": "git+https://github.com/sindresorhus/into-stream.git"
},
"scripts": {
"test": "xo && ava"
},
"version": "2.0.1"
}