strong-tie/inbound-calls
0
1{2 "name": "readable-stream",3 "version": "3.6.2",4 "description": "Streams3, a user-land copy of the stream library from Node.js",5 "main": "readable.js",6 "engines": {7 "node": ">= 6"8 },9 "dependencies": {10 "inherits": "^2.0.3",11 "string_decoder": "^1.1.1",12 "util-deprecate": "^1.0.1"13 },14 "devDependencies": {15 "@babel/cli": "^7.2.0",16 "@babel/core": "^7.2.0",17 "@babel/polyfill": "^7.0.0",18 "@babel/preset-env": "^7.2.0",19 "airtap": "0.0.9",20 "assert": "^1.4.0",21 "bl": "^2.0.0",22 "deep-strict-equal": "^0.2.0",23 "events.once": "^2.0.2",24 "glob": "^7.1.2",25 "gunzip-maybe": "^1.4.1",26 "hyperquest": "^2.1.3",27 "lolex": "^2.6.0",28 "nyc": "^11.0.0",29 "pump": "^3.0.0",30 "rimraf": "^2.6.2",31 "tap": "^12.0.0",32 "tape": "^4.9.0",33 "tar-fs": "^1.16.2",34 "util-promisify": "^2.1.0"35 },36 "scripts": {37 "test": "tap -J --no-esm test/parallel/*.js test/ours/*.js",38 "ci": "TAP=1 tap --no-esm test/parallel/*.js test/ours/*.js | tee test.tap",39 "test-browsers": "airtap --sauce-connect --loopback airtap.local -- test/browser.js",40 "test-browser-local": "airtap --open --local -- test/browser.js",41 "cover": "nyc npm test",42 "report": "nyc report --reporter=lcov",43 "update-browser-errors": "babel -o errors-browser.js errors.js"44 },45 "repository": {46 "type": "git",47 "url": "git://github.com/nodejs/readable-stream"48 },49 "keywords": [50 "readable",51 "stream",52 "pipe"53 ],54 "browser": {55 "util": false,56 "worker_threads": false,57 "./errors": "./errors-browser.js",58 "./readable.js": "./readable-browser.js",59 "./lib/internal/streams/from.js": "./lib/internal/streams/from-browser.js",60 "./lib/internal/streams/stream.js": "./lib/internal/streams/stream-browser.js"61 },62 "nyc": {63 "include": [64 "lib/**.js"65 ]66 },67 "license": "MIT"68}69 