diff options
Diffstat (limited to 'node_modules/has-gulplog')
-rw-r--r-- | node_modules/has-gulplog/LICENSE | 22 | ||||
-rw-r--r-- | node_modules/has-gulplog/README.md | 2 | ||||
-rw-r--r-- | node_modules/has-gulplog/index.js | 9 | ||||
-rw-r--r-- | node_modules/has-gulplog/package.json | 31 |
4 files changed, 64 insertions, 0 deletions
diff --git a/node_modules/has-gulplog/LICENSE b/node_modules/has-gulplog/LICENSE new file mode 100644 index 000000000..ce6aef79b --- /dev/null +++ b/node_modules/has-gulplog/LICENSE @@ -0,0 +1,22 @@ +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 new file mode 100644 index 000000000..072cfa4cc --- /dev/null +++ b/node_modules/has-gulplog/README.md @@ -0,0 +1,2 @@ +# 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 new file mode 100644 index 000000000..c78b51f29 --- /dev/null +++ b/node_modules/has-gulplog/index.js @@ -0,0 +1,9 @@ +'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 new file mode 100644 index 000000000..e492b19ee --- /dev/null +++ b/node_modules/has-gulplog/package.json @@ -0,0 +1,31 @@ +{ + "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" + ] +} |