aboutsummaryrefslogtreecommitdiff
path: root/node_modules/concat-stream
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-11-03 01:33:53 +0100
committerFlorian Dold <florian.dold@gmail.com>2016-11-03 01:33:53 +0100
commitd1291f67551c58168af43698a359cb5ddfd266b0 (patch)
tree55a13ed29fe1915e3f42f1b1b7038dafa2e975a7 /node_modules/concat-stream
parentd0a0695fb5d34996850723f7d4b1b59c3df909c2 (diff)
node_modules
Diffstat (limited to 'node_modules/concat-stream')
-rw-r--r--node_modules/concat-stream/node_modules/isarray/.npmignore1
-rw-r--r--node_modules/concat-stream/node_modules/isarray/.travis.yml4
-rw-r--r--node_modules/concat-stream/node_modules/isarray/Makefile6
-rw-r--r--node_modules/concat-stream/node_modules/isarray/README.md60
-rw-r--r--node_modules/concat-stream/node_modules/isarray/component.json19
-rw-r--r--node_modules/concat-stream/node_modules/isarray/index.js5
-rw-r--r--node_modules/concat-stream/node_modules/isarray/package.json104
-rw-r--r--node_modules/concat-stream/node_modules/isarray/test.js20
-rw-r--r--node_modules/concat-stream/node_modules/readable-stream/package.json106
-rw-r--r--node_modules/concat-stream/package.json120
10 files changed, 38 insertions, 407 deletions
diff --git a/node_modules/concat-stream/node_modules/isarray/.npmignore b/node_modules/concat-stream/node_modules/isarray/.npmignore
deleted file mode 100644
index 3c3629e64..000000000
--- a/node_modules/concat-stream/node_modules/isarray/.npmignore
+++ /dev/null
@@ -1 +0,0 @@
-node_modules
diff --git a/node_modules/concat-stream/node_modules/isarray/.travis.yml b/node_modules/concat-stream/node_modules/isarray/.travis.yml
deleted file mode 100644
index cc4dba29d..000000000
--- a/node_modules/concat-stream/node_modules/isarray/.travis.yml
+++ /dev/null
@@ -1,4 +0,0 @@
-language: node_js
-node_js:
- - "0.8"
- - "0.10"
diff --git a/node_modules/concat-stream/node_modules/isarray/Makefile b/node_modules/concat-stream/node_modules/isarray/Makefile
deleted file mode 100644
index 787d56e1e..000000000
--- a/node_modules/concat-stream/node_modules/isarray/Makefile
+++ /dev/null
@@ -1,6 +0,0 @@
-
-test:
- @node_modules/.bin/tape test.js
-
-.PHONY: test
-
diff --git a/node_modules/concat-stream/node_modules/isarray/README.md b/node_modules/concat-stream/node_modules/isarray/README.md
deleted file mode 100644
index 16d2c59c6..000000000
--- a/node_modules/concat-stream/node_modules/isarray/README.md
+++ /dev/null
@@ -1,60 +0,0 @@
-
-# isarray
-
-`Array#isArray` for older browsers.
-
-[![build status](https://secure.travis-ci.org/juliangruber/isarray.svg)](http://travis-ci.org/juliangruber/isarray)
-[![downloads](https://img.shields.io/npm/dm/isarray.svg)](https://www.npmjs.org/package/isarray)
-
-[![browser support](https://ci.testling.com/juliangruber/isarray.png)
-](https://ci.testling.com/juliangruber/isarray)
-
-## Usage
-
-```js
-var isArray = require('isarray');
-
-console.log(isArray([])); // => true
-console.log(isArray({})); // => false
-```
-
-## Installation
-
-With [npm](http://npmjs.org) do
-
-```bash
-$ npm install isarray
-```
-
-Then bundle for the browser with
-[browserify](https://github.com/substack/browserify).
-
-With [component](http://component.io) do
-
-```bash
-$ component install juliangruber/isarray
-```
-
-## License
-
-(MIT)
-
-Copyright (c) 2013 Julian Gruber &lt;julian@juliangruber.com&gt;
-
-Permission is hereby granted, free of charge, to any person obtaining a copy of
-this software and associated documentation files (the "Software"), to deal in
-the Software without restriction, including without limitation the rights to
-use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
-of the Software, and to permit persons to whom the Software is furnished to do
-so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
diff --git a/node_modules/concat-stream/node_modules/isarray/component.json b/node_modules/concat-stream/node_modules/isarray/component.json
deleted file mode 100644
index 9e31b6838..000000000
--- a/node_modules/concat-stream/node_modules/isarray/component.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- "name" : "isarray",
- "description" : "Array#isArray for older browsers",
- "version" : "0.0.1",
- "repository" : "juliangruber/isarray",
- "homepage": "https://github.com/juliangruber/isarray",
- "main" : "index.js",
- "scripts" : [
- "index.js"
- ],
- "dependencies" : {},
- "keywords": ["browser","isarray","array"],
- "author": {
- "name": "Julian Gruber",
- "email": "mail@juliangruber.com",
- "url": "http://juliangruber.com"
- },
- "license": "MIT"
-}
diff --git a/node_modules/concat-stream/node_modules/isarray/index.js b/node_modules/concat-stream/node_modules/isarray/index.js
deleted file mode 100644
index a57f63495..000000000
--- a/node_modules/concat-stream/node_modules/isarray/index.js
+++ /dev/null
@@ -1,5 +0,0 @@
-var toString = {}.toString;
-
-module.exports = Array.isArray || function (arr) {
- return toString.call(arr) == '[object Array]';
-};
diff --git a/node_modules/concat-stream/node_modules/isarray/package.json b/node_modules/concat-stream/node_modules/isarray/package.json
deleted file mode 100644
index 875b900da..000000000
--- a/node_modules/concat-stream/node_modules/isarray/package.json
+++ /dev/null
@@ -1,104 +0,0 @@
-{
- "_args": [
- [
- {
- "raw": "isarray@~1.0.0",
- "scope": null,
- "escapedName": "isarray",
- "name": "isarray",
- "rawSpec": "~1.0.0",
- "spec": ">=1.0.0 <1.1.0",
- "type": "range"
- },
- "/home/dold/repos/taler/wallet-webex/node_modules/concat-stream/node_modules/readable-stream"
- ]
- ],
- "_from": "isarray@>=1.0.0 <1.1.0",
- "_id": "isarray@1.0.0",
- "_inCache": true,
- "_location": "/concat-stream/isarray",
- "_nodeVersion": "5.1.0",
- "_npmUser": {
- "name": "juliangruber",
- "email": "julian@juliangruber.com"
- },
- "_npmVersion": "3.3.12",
- "_phantomChildren": {},
- "_requested": {
- "raw": "isarray@~1.0.0",
- "scope": null,
- "escapedName": "isarray",
- "name": "isarray",
- "rawSpec": "~1.0.0",
- "spec": ">=1.0.0 <1.1.0",
- "type": "range"
- },
- "_requiredBy": [
- "/concat-stream/readable-stream"
- ],
- "_resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
- "_shasum": "bb935d48582cba168c06834957a54a3e07124f11",
- "_shrinkwrap": null,
- "_spec": "isarray@~1.0.0",
- "_where": "/home/dold/repos/taler/wallet-webex/node_modules/concat-stream/node_modules/readable-stream",
- "author": {
- "name": "Julian Gruber",
- "email": "mail@juliangruber.com",
- "url": "http://juliangruber.com"
- },
- "bugs": {
- "url": "https://github.com/juliangruber/isarray/issues"
- },
- "dependencies": {},
- "description": "Array#isArray for older browsers",
- "devDependencies": {
- "tape": "~2.13.4"
- },
- "directories": {},
- "dist": {
- "shasum": "bb935d48582cba168c06834957a54a3e07124f11",
- "tarball": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz"
- },
- "gitHead": "2a23a281f369e9ae06394c0fb4d2381355a6ba33",
- "homepage": "https://github.com/juliangruber/isarray",
- "keywords": [
- "browser",
- "isarray",
- "array"
- ],
- "license": "MIT",
- "main": "index.js",
- "maintainers": [
- {
- "name": "juliangruber",
- "email": "julian@juliangruber.com"
- }
- ],
- "name": "isarray",
- "optionalDependencies": {},
- "readme": "ERROR: No README data found!",
- "repository": {
- "type": "git",
- "url": "git://github.com/juliangruber/isarray.git"
- },
- "scripts": {
- "test": "tape test.js"
- },
- "testling": {
- "files": "test.js",
- "browsers": [
- "ie/8..latest",
- "firefox/17..latest",
- "firefox/nightly",
- "chrome/22..latest",
- "chrome/canary",
- "opera/12..latest",
- "opera/next",
- "safari/5.1..latest",
- "ipad/6.0..latest",
- "iphone/6.0..latest",
- "android-browser/4.2..latest"
- ]
- },
- "version": "1.0.0"
-}
diff --git a/node_modules/concat-stream/node_modules/isarray/test.js b/node_modules/concat-stream/node_modules/isarray/test.js
deleted file mode 100644
index e0c3444d8..000000000
--- a/node_modules/concat-stream/node_modules/isarray/test.js
+++ /dev/null
@@ -1,20 +0,0 @@
-var isArray = require('./');
-var test = require('tape');
-
-test('is array', function(t){
- t.ok(isArray([]));
- t.notOk(isArray({}));
- t.notOk(isArray(null));
- t.notOk(isArray(false));
-
- var obj = {};
- obj[0] = true;
- t.notOk(isArray(obj));
-
- var arr = [];
- arr.foo = 'bar';
- t.ok(isArray(arr));
-
- t.end();
-});
-
diff --git a/node_modules/concat-stream/node_modules/readable-stream/package.json b/node_modules/concat-stream/node_modules/readable-stream/package.json
index bd6d606b5..d77b090ec 100644
--- a/node_modules/concat-stream/node_modules/readable-stream/package.json
+++ b/node_modules/concat-stream/node_modules/readable-stream/package.json
@@ -1,56 +1,8 @@
{
- "_args": [
- [
- {
- "raw": "readable-stream@~2.0.0",
- "scope": null,
- "escapedName": "readable-stream",
- "name": "readable-stream",
- "rawSpec": "~2.0.0",
- "spec": ">=2.0.0 <2.1.0",
- "type": "range"
- },
- "/home/dold/repos/taler/wallet-webex/node_modules/concat-stream"
- ]
- ],
- "_from": "readable-stream@>=2.0.0 <2.1.0",
- "_id": "readable-stream@2.0.6",
- "_inCache": true,
- "_location": "/concat-stream/readable-stream",
- "_nodeVersion": "5.7.0",
- "_npmOperationalInternal": {
- "host": "packages-12-west.internal.npmjs.com",
- "tmp": "tmp/readable-stream-2.0.6.tgz_1457893507709_0.369257491780445"
- },
- "_npmUser": {
- "name": "cwmma",
- "email": "calvin.metcalf@gmail.com"
- },
- "_npmVersion": "3.6.0",
- "_phantomChildren": {},
- "_requested": {
- "raw": "readable-stream@~2.0.0",
- "scope": null,
- "escapedName": "readable-stream",
- "name": "readable-stream",
- "rawSpec": "~2.0.0",
- "spec": ">=2.0.0 <2.1.0",
- "type": "range"
- },
- "_requiredBy": [
- "/concat-stream"
- ],
- "_resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz",
- "_shasum": "8f90341e68a53ccc928788dacfcd11b36eb9b78e",
- "_shrinkwrap": null,
- "_spec": "readable-stream@~2.0.0",
- "_where": "/home/dold/repos/taler/wallet-webex/node_modules/concat-stream",
- "browser": {
- "util": false
- },
- "bugs": {
- "url": "https://github.com/nodejs/readable-stream/issues"
- },
+ "name": "readable-stream",
+ "version": "2.0.6",
+ "description": "Streams3, a user-land copy of the stream library from Node.js",
+ "main": "readable.js",
"dependencies": {
"core-util-is": "~1.0.0",
"inherits": "~2.0.1",
@@ -59,55 +11,27 @@
"string_decoder": "~0.10.x",
"util-deprecate": "~1.0.1"
},
- "description": "Streams3, a user-land copy of the stream library from Node.js",
"devDependencies": {
"tap": "~0.2.6",
"tape": "~4.5.1",
"zuul": "~3.9.0"
},
- "directories": {},
- "dist": {
- "shasum": "8f90341e68a53ccc928788dacfcd11b36eb9b78e",
- "tarball": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz"
+ "scripts": {
+ "test": "tap test/parallel/*.js test/ours/*.js",
+ "browser": "npm run write-zuul && zuul -- test/browser.js",
+ "write-zuul": "printf \"ui: tape\nbrowsers:\n - name: $BROWSER_NAME\n version: $BROWSER_VERSION\n\">.zuul.yml"
+ },
+ "repository": {
+ "type": "git",
+ "url": "git://github.com/nodejs/readable-stream"
},
- "gitHead": "01fb5608a970b42c900b96746cadc13d27dd9d7e",
- "homepage": "https://github.com/nodejs/readable-stream#readme",
"keywords": [
"readable",
"stream",
"pipe"
],
- "license": "MIT",
- "main": "readable.js",
- "maintainers": [
- {
- "name": "isaacs",
- "email": "isaacs@npmjs.com"
- },
- {
- "name": "tootallnate",
- "email": "nathan@tootallnate.net"
- },
- {
- "name": "rvagg",
- "email": "rod@vagg.org"
- },
- {
- "name": "cwmma",
- "email": "calvin.metcalf@gmail.com"
- }
- ],
- "name": "readable-stream",
- "optionalDependencies": {},
- "readme": "ERROR: No README data found!",
- "repository": {
- "type": "git",
- "url": "git://github.com/nodejs/readable-stream.git"
- },
- "scripts": {
- "browser": "npm run write-zuul && zuul -- test/browser.js",
- "test": "tap test/parallel/*.js test/ours/*.js",
- "write-zuul": "printf \"ui: tape\nbrowsers:\n - name: $BROWSER_NAME\n version: $BROWSER_VERSION\n\">.zuul.yml"
+ "browser": {
+ "util": false
},
- "version": "2.0.6"
+ "license": "MIT"
}
diff --git a/node_modules/concat-stream/package.json b/node_modules/concat-stream/package.json
index 61f17f7a3..69bebdf4c 100644
--- a/node_modules/concat-stream/package.json
+++ b/node_modules/concat-stream/package.json
@@ -1,113 +1,40 @@
{
- "_args": [
- [
- {
- "raw": "concat-stream@^1.4.7",
- "scope": null,
- "escapedName": "concat-stream",
- "name": "concat-stream",
- "rawSpec": "^1.4.7",
- "spec": ">=1.4.7 <2.0.0",
- "type": "range"
- },
- "/home/dold/repos/taler/wallet-webex/node_modules/gulp-zip"
- ]
- ],
- "_from": "concat-stream@>=1.4.7 <2.0.0",
- "_id": "concat-stream@1.5.2",
- "_inCache": true,
- "_location": "/concat-stream",
- "_nodeVersion": "4.4.3",
- "_npmOperationalInternal": {
- "host": "packages-12-west.internal.npmjs.com",
- "tmp": "tmp/concat-stream-1.5.2.tgz_1472715196934_0.010375389130786061"
- },
- "_npmUser": {
- "name": "mafintosh",
- "email": "mathiasbuus@gmail.com"
- },
- "_npmVersion": "2.15.9",
- "_phantomChildren": {
- "core-util-is": "1.0.2",
- "inherits": "2.0.3",
- "process-nextick-args": "1.0.7",
- "string_decoder": "0.10.31",
- "util-deprecate": "1.0.2"
- },
- "_requested": {
- "raw": "concat-stream@^1.4.7",
- "scope": null,
- "escapedName": "concat-stream",
- "name": "concat-stream",
- "rawSpec": "^1.4.7",
- "spec": ">=1.4.7 <2.0.0",
- "type": "range"
- },
- "_requiredBy": [
- "/gulp-zip"
+ "name": "concat-stream",
+ "version": "1.5.2",
+ "description": "writable stream that concatenates strings or binary data and calls a callback with the result",
+ "tags": [
+ "stream",
+ "simple",
+ "util",
+ "utility"
],
- "_resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.5.2.tgz",
- "_shasum": "708978624d856af41a5a741defdd261da752c266",
- "_shrinkwrap": null,
- "_spec": "concat-stream@^1.4.7",
- "_where": "/home/dold/repos/taler/wallet-webex/node_modules/gulp-zip",
- "author": {
- "name": "Max Ogden",
- "email": "max@maxogden.com"
+ "author": "Max Ogden <max@maxogden.com>",
+ "repository": {
+ "type": "git",
+ "url": "http://github.com/maxogden/concat-stream.git"
},
"bugs": {
"url": "http://github.com/maxogden/concat-stream/issues"
},
- "dependencies": {
- "inherits": "~2.0.1",
- "readable-stream": "~2.0.0",
- "typedarray": "~0.0.5"
- },
- "description": "writable stream that concatenates strings or binary data and calls a callback with the result",
- "devDependencies": {
- "tape": "~2.3.2"
- },
- "directories": {},
- "dist": {
- "shasum": "708978624d856af41a5a741defdd261da752c266",
- "tarball": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.5.2.tgz"
- },
"engines": [
"node >= 0.8"
],
+ "main": "index.js",
"files": [
"index.js"
],
- "gitHead": "731fedd137eae89d066c249fdca070f8f16afbb8",
- "homepage": "https://github.com/maxogden/concat-stream#readme",
- "license": "MIT",
- "main": "index.js",
- "maintainers": [
- {
- "name": "mafintosh",
- "email": "mathiasbuus@gmail.com"
- },
- {
- "name": "maxogden",
- "email": "max@maxogden.com"
- }
- ],
- "name": "concat-stream",
- "optionalDependencies": {},
- "readme": "ERROR: No README data found!",
- "repository": {
- "type": "git",
- "url": "git+ssh://git@github.com/maxogden/concat-stream.git"
- },
"scripts": {
"test": "tape test/*.js test/server/*.js"
},
- "tags": [
- "stream",
- "simple",
- "util",
- "utility"
- ],
+ "license": "MIT",
+ "dependencies": {
+ "inherits": "~2.0.1",
+ "typedarray": "~0.0.5",
+ "readable-stream": "~2.0.0"
+ },
+ "devDependencies": {
+ "tape": "~2.3.2"
+ },
"testling": {
"files": "test/*.js",
"browsers": [
@@ -123,6 +50,5 @@
"iphone/6.0..latest",
"android-browser/4.2..latest"
]
- },
- "version": "1.5.2"
+ }
}