aboutsummaryrefslogtreecommitdiff
path: root/node_modules/gulplog
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-10-10 03:43:44 +0200
committerFlorian Dold <florian.dold@gmail.com>2016-10-10 03:43:44 +0200
commitabd94a7f5a50f43c797a11b53549ae48fff667c3 (patch)
treeab8ed457f65cdd72e13e0571d2975729428f1551 /node_modules/gulplog
parenta0247c6a3fd6a09a41a7e35a3441324c4dcb58be (diff)
downloadwallet-core-abd94a7f5a50f43c797a11b53549ae48fff667c3.tar.xz
add node_modules to address #4364
Diffstat (limited to 'node_modules/gulplog')
-rw-r--r--node_modules/gulplog/CHANGELOG.md10
-rw-r--r--node_modules/gulplog/LICENSE22
-rw-r--r--node_modules/gulplog/README.md79
-rw-r--r--node_modules/gulplog/index.js7
-rw-r--r--node_modules/gulplog/package.json101
5 files changed, 219 insertions, 0 deletions
diff --git a/node_modules/gulplog/CHANGELOG.md b/node_modules/gulplog/CHANGELOG.md
new file mode 100644
index 000000000..5f84e9bb5
--- /dev/null
+++ b/node_modules/gulplog/CHANGELOG.md
@@ -0,0 +1,10 @@
+# gulplog changelog
+
+## 1.0.0
+
+- Initial release
+- No implementation changed since initial commit
+
+## 0.0.0
+
+- Experimentation
diff --git a/node_modules/gulplog/LICENSE b/node_modules/gulplog/LICENSE
new file mode 100644
index 000000000..8ac355493
--- /dev/null
+++ b/node_modules/gulplog/LICENSE
@@ -0,0 +1,22 @@
+The MIT License (MIT)
+
+Copyright (c) 2015 Blaine Bublitz, Eric Schoffstall and other contributors
+
+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/gulplog/README.md b/node_modules/gulplog/README.md
new file mode 100644
index 000000000..484e939e4
--- /dev/null
+++ b/node_modules/gulplog/README.md
@@ -0,0 +1,79 @@
+<p align="center">
+ <a href="http://gulpjs.com">
+ <img height="257" width="114" src="https://raw.githubusercontent.com/gulpjs/artwork/master/gulp-2x.png">
+ </a>
+</p>
+
+# gulplog
+
+[![NPM version][npm-image]][npm-url] [![Downloads][downloads-image]][npm-url] [![Build Status][travis-image]][travis-url] [![Gitter chat][gitter-image]][gitter-url]
+
+Logger for gulp and gulp plugins
+
+## Usage
+
+```js
+var logger = require('gulplog');
+
+// logs strings
+logger.debug('The MOST verbose!');
+logger.info('Some important info');
+logger.warn('All the warnings to you');
+logger.error('OH NO! SOMETHING HAPPENED!');
+
+// supports util.format!
+logger.info('%s style!', 'printf');
+
+// log anything
+logger.debug({ my: 'obj' });
+logger.info([1, 2, 3]);
+```
+
+## API
+
+Logging (and level of logging) is controlled by [`gulp-cli`][gulp-cli-url]
+
+#### logger.debug(msg)
+
+Highest log level. Typically used for debugging purposes.
+
+If the first argument is a string, all arguments are passed to node's
+[`util.format()`][util-format-url] before being emitted.
+
+#### logger.info(msg)
+
+Standard log level. Typically used for user information.
+
+If the first argument is a string, all arguments are passed to node's
+[`util.format()`][util-format-url] before being emitted.
+
+#### logger.warn(msg)
+
+Warning log level. Typically used for warnings.
+
+If the first argument is a string, all arguments are passed to node's
+[`util.format()`][util-format-url] before being emitted.
+
+#### logger.error(msg)
+
+Error log level. Typically used when things went horribly wrong.
+
+If the first argument is a string, all arguments are passed to node's
+[`util.format()`][util-format-url] before being emitted.
+
+## License
+
+MIT
+
+[downloads-image]: http://img.shields.io/npm/dm/gulplog.svg
+[npm-url]: https://npmjs.org/package/gulplog
+[npm-image]: http://img.shields.io/npm/v/gulplog.svg
+
+[travis-url]: https://travis-ci.org/gulpjs/gulplog
+[travis-image]: http://img.shields.io/travis/gulpjs/gulplog.svg
+
+[gitter-url]: https://gitter.im/gulpjs/gulp
+[gitter-image]: https://badges.gitter.im/gulpjs/gulp.png
+
+[gulp-cli-url]: https://github.com/gulpjs/gulp-cli
+[util-format-url]: https://nodejs.org/docs/latest/api/util.html#util_util_format_format
diff --git a/node_modules/gulplog/index.js b/node_modules/gulplog/index.js
new file mode 100644
index 000000000..b92a6466a
--- /dev/null
+++ b/node_modules/gulplog/index.js
@@ -0,0 +1,7 @@
+'use strict';
+
+var getLogger = require('glogg');
+
+var logger = getLogger('gulplog');
+
+module.exports = logger;
diff --git a/node_modules/gulplog/package.json b/node_modules/gulplog/package.json
new file mode 100644
index 000000000..7c4bc2b13
--- /dev/null
+++ b/node_modules/gulplog/package.json
@@ -0,0 +1,101 @@
+{
+ "_args": [
+ [
+ {
+ "raw": "gulplog@^1.0.0",
+ "scope": null,
+ "escapedName": "gulplog",
+ "name": "gulplog",
+ "rawSpec": "^1.0.0",
+ "spec": ">=1.0.0 <2.0.0",
+ "type": "range"
+ },
+ "/home/dold/repos/taler/wallet-webex/node_modules/gulp-util"
+ ]
+ ],
+ "_from": "gulplog@>=1.0.0 <2.0.0",
+ "_id": "gulplog@1.0.0",
+ "_inCache": true,
+ "_location": "/gulplog",
+ "_nodeVersion": "0.10.36",
+ "_npmUser": {
+ "name": "phated",
+ "email": "blaine@iceddev.com"
+ },
+ "_npmVersion": "2.14.3",
+ "_phantomChildren": {},
+ "_requested": {
+ "raw": "gulplog@^1.0.0",
+ "scope": null,
+ "escapedName": "gulplog",
+ "name": "gulplog",
+ "rawSpec": "^1.0.0",
+ "spec": ">=1.0.0 <2.0.0",
+ "type": "range"
+ },
+ "_requiredBy": [
+ "/gulp-util"
+ ],
+ "_resolved": "https://registry.npmjs.org/gulplog/-/gulplog-1.0.0.tgz",
+ "_shasum": "e28c4d45d05ecbbed818363ce8f9c5926229ffe5",
+ "_shrinkwrap": null,
+ "_spec": "gulplog@^1.0.0",
+ "_where": "/home/dold/repos/taler/wallet-webex/node_modules/gulp-util",
+ "author": {
+ "name": "Blaine Bublitz",
+ "email": "blaine@iceddev.com",
+ "url": "http://iceddev.com"
+ },
+ "bugs": {
+ "url": "https://github.com/gulpjs/gulplog/issues"
+ },
+ "contributors": [],
+ "dependencies": {
+ "glogg": "^1.0.0"
+ },
+ "description": "Logger for gulp and gulp plugins",
+ "devDependencies": {
+ "eslint": "^1.5.1",
+ "eslint-config-node-style-guide": "^1.0.1",
+ "jscs": "^2.1.1"
+ },
+ "directories": {},
+ "dist": {
+ "shasum": "e28c4d45d05ecbbed818363ce8f9c5926229ffe5",
+ "tarball": "https://registry.npmjs.org/gulplog/-/gulplog-1.0.0.tgz"
+ },
+ "engines": {
+ "node": ">= 0.10"
+ },
+ "files": [
+ "LICENSE",
+ "index.js"
+ ],
+ "gitHead": "c920ad89da5a8f3724d35c83b6cbd8e132dada2b",
+ "homepage": "https://github.com/gulpjs/gulplog#readme",
+ "keywords": [
+ "gulp",
+ "gulp-util",
+ "log",
+ "logging"
+ ],
+ "license": "MIT",
+ "main": "index.js",
+ "maintainers": [
+ {
+ "name": "phated",
+ "email": "blaine@iceddev.com"
+ }
+ ],
+ "name": "gulplog",
+ "optionalDependencies": {},
+ "readme": "ERROR: No README data found!",
+ "repository": {
+ "type": "git",
+ "url": "git+https://github.com/gulpjs/gulplog.git"
+ },
+ "scripts": {
+ "test": "eslint index.js && jscs index.js"
+ },
+ "version": "1.0.0"
+}