aboutsummaryrefslogtreecommitdiff
path: root/node_modules/has-gulplog
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-03-27 21:01:33 +0100
committerFlorian Dold <florian.dold@gmail.com>2019-03-27 21:01:33 +0100
commitcc97a4dd2a967e1c2273bd5f4c5f49a5bf2e2585 (patch)
tree92c5d88706a6ffc654d1b133618d357890e7096b /node_modules/has-gulplog
parent3771b4d6b67b34c130f3a9a1a15f42deefdb2eda (diff)
remove node_modules
Diffstat (limited to 'node_modules/has-gulplog')
-rw-r--r--node_modules/has-gulplog/LICENSE22
-rw-r--r--node_modules/has-gulplog/README.md2
-rw-r--r--node_modules/has-gulplog/index.js9
-rw-r--r--node_modules/has-gulplog/package.json31
4 files changed, 0 insertions, 64 deletions
diff --git a/node_modules/has-gulplog/LICENSE b/node_modules/has-gulplog/LICENSE
deleted file mode 100644
index ce6aef79b..000000000
--- a/node_modules/has-gulplog/LICENSE
+++ /dev/null
@@ -1,22 +0,0 @@
-The MIT License (MIT)
-
-Copyright (c) 2015 gulp
-
-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/has-gulplog/README.md b/node_modules/has-gulplog/README.md
deleted file mode 100644
index 072cfa4cc..000000000
--- a/node_modules/has-gulplog/README.md
+++ /dev/null
@@ -1,2 +0,0 @@
-# has-gulplog
-Check if gulplog is available before attempting to use it
diff --git a/node_modules/has-gulplog/index.js b/node_modules/has-gulplog/index.js
deleted file mode 100644
index c78b51f29..000000000
--- a/node_modules/has-gulplog/index.js
+++ /dev/null
@@ -1,9 +0,0 @@
-'use strict';
-
-var sparkles = require('sparkles');
-
-function hasGulplog(){
- return sparkles.exists('gulplog');
-}
-
-module.exports = hasGulplog;
diff --git a/node_modules/has-gulplog/package.json b/node_modules/has-gulplog/package.json
deleted file mode 100644
index e492b19ee..000000000
--- a/node_modules/has-gulplog/package.json
+++ /dev/null
@@ -1,31 +0,0 @@
-{
- "name": "has-gulplog",
- "version": "0.1.0",
- "description": "Check if gulplog is available before attempting to use it",
- "author": "Blaine Bublitz <blaine@iceddev.com> (http://iceddev.com)",
- "contributors": [],
- "repository": "gulpjs/has-gulplog",
- "license": "MIT",
- "engines": {
- "node": ">= 0.10"
- },
- "main": "index.js",
- "files": [
- "index.js",
- "LICENSE"
- ],
- "scripts": {
- "test": "eslint *.js"
- },
- "dependencies": {
- "sparkles": "^1.0.0"
- },
- "devDependencies": {
- "eslint": "^1.3.1"
- },
- "keywords": [
- "gulp-util",
- "gulplog",
- "logging"
- ]
-}