109 lines
3.2 KiB
JSON
109 lines
3.2 KiB
JSON
|
{
|
||
|
"_args": [
|
||
|
[
|
||
|
{
|
||
|
"raw": "is-stream@^1.0.0",
|
||
|
"scope": null,
|
||
|
"escapedName": "is-stream",
|
||
|
"name": "is-stream",
|
||
|
"rawSpec": "^1.0.0",
|
||
|
"spec": ">=1.0.0 <2.0.0",
|
||
|
"type": "range"
|
||
|
},
|
||
|
"/home/jdaugherty/work/GT2/GT2-Android/node_modules/got"
|
||
|
]
|
||
|
],
|
||
|
"_from": "is-stream@>=1.0.0 <2.0.0",
|
||
|
"_id": "is-stream@1.1.0",
|
||
|
"_inCache": true,
|
||
|
"_location": "/is-stream",
|
||
|
"_nodeVersion": "4.4.2",
|
||
|
"_npmOperationalInternal": {
|
||
|
"host": "packages-12-west.internal.npmjs.com",
|
||
|
"tmp": "tmp/is-stream-1.1.0.tgz_1460446915184_0.806101513793692"
|
||
|
},
|
||
|
"_npmUser": {
|
||
|
"name": "sindresorhus",
|
||
|
"email": "sindresorhus@gmail.com"
|
||
|
},
|
||
|
"_npmVersion": "2.15.0",
|
||
|
"_phantomChildren": {},
|
||
|
"_requested": {
|
||
|
"raw": "is-stream@^1.0.0",
|
||
|
"scope": null,
|
||
|
"escapedName": "is-stream",
|
||
|
"name": "is-stream",
|
||
|
"rawSpec": "^1.0.0",
|
||
|
"spec": ">=1.0.0 <2.0.0",
|
||
|
"type": "range"
|
||
|
},
|
||
|
"_requiredBy": [
|
||
|
"/got",
|
||
|
"/node-fetch"
|
||
|
],
|
||
|
"_resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz",
|
||
|
"_shasum": "12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44",
|
||
|
"_shrinkwrap": null,
|
||
|
"_spec": "is-stream@^1.0.0",
|
||
|
"_where": "/home/jdaugherty/work/GT2/GT2-Android/node_modules/got",
|
||
|
"author": {
|
||
|
"name": "Sindre Sorhus",
|
||
|
"email": "sindresorhus@gmail.com",
|
||
|
"url": "sindresorhus.com"
|
||
|
},
|
||
|
"bugs": {
|
||
|
"url": "https://github.com/sindresorhus/is-stream/issues"
|
||
|
},
|
||
|
"dependencies": {},
|
||
|
"description": "Check if something is a Node.js stream",
|
||
|
"devDependencies": {
|
||
|
"ava": "*",
|
||
|
"tempfile": "^1.1.0",
|
||
|
"xo": "*"
|
||
|
},
|
||
|
"directories": {},
|
||
|
"dist": {
|
||
|
"shasum": "12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44",
|
||
|
"tarball": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz"
|
||
|
},
|
||
|
"engines": {
|
||
|
"node": ">=0.10.0"
|
||
|
},
|
||
|
"files": [
|
||
|
"index.js"
|
||
|
],
|
||
|
"gitHead": "e21d73f1028c189d16150cea52641059b0936310",
|
||
|
"homepage": "https://github.com/sindresorhus/is-stream#readme",
|
||
|
"keywords": [
|
||
|
"stream",
|
||
|
"type",
|
||
|
"streams",
|
||
|
"writable",
|
||
|
"readable",
|
||
|
"duplex",
|
||
|
"transform",
|
||
|
"check",
|
||
|
"detect",
|
||
|
"is"
|
||
|
],
|
||
|
"license": "MIT",
|
||
|
"maintainers": [
|
||
|
{
|
||
|
"name": "sindresorhus",
|
||
|
"email": "sindresorhus@gmail.com"
|
||
|
}
|
||
|
],
|
||
|
"name": "is-stream",
|
||
|
"optionalDependencies": {},
|
||
|
"readme": "# is-stream [![Build Status](https://travis-ci.org/sindresorhus/is-stream.svg?branch=master)](https://travis-ci.org/sindresorhus/is-stream)\n\n> Check if something is a [Node.js stream](https://nodejs.org/api/stream.html)\n\n\n## Install\n\n```\n$ npm install --save is-stream\n```\n\n\n## Usage\n\n```js\nconst fs = require('fs');\nconst isStream = require('is-stream');\n\nisStream(fs.createReadStream('unicorn.png'));\n//=> true\n\nisStream({});\n//=> false\n```\n\n\n## API\n\n### isStream(stream)\n\n#### isStream.writable(stream)\n\n#### isStream.readable(stream)\n\n#### isStream.duplex(stream)\n\n#### isStream.transform(stream)\n\n\n## License\n\nMIT © [Sindre Sorhus](https://sindresorhus.com)\n",
|
||
|
"readmeFilename": "readme.md",
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git+https://github.com/sindresorhus/is-stream.git"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"test": "xo && ava"
|
||
|
},
|
||
|
"version": "1.1.0"
|
||
|
}
|