pax_global_header00006660000000000000000000000064125743761540014530gustar00rootroot0000000000000052 comment=16ef7af9911ec91838b2762bf1ba38b4578e6f6f has-gulplog-0.1.0/000077500000000000000000000000001257437615400137505ustar00rootroot00000000000000has-gulplog-0.1.0/.editorconfig000066400000000000000000000003051257437615400164230ustar00rootroot00000000000000# http://editorconfig.org root = true [*] indent_style = space indent_size = 2 charset = utf-8 trim_trailing_whitespace = true insert_final_newline = true [*.md] trim_trailing_whitespace = false has-gulplog-0.1.0/.eslintrc000066400000000000000000000002511257437615400155720ustar00rootroot00000000000000{ "rules": { "semi": [2, "always"], "quotes": [2, "single"], "strict": [2, "global"], "no-underscore-dangle": 0 }, "env": { "node": true } } has-gulplog-0.1.0/.gitignore000066400000000000000000000011461257437615400157420ustar00rootroot00000000000000# Logs logs *.log # Runtime data pids *.pid *.seed # Directory for instrumented libs generated by jscoverage/JSCover lib-cov # Coverage directory used by tools like istanbul coverage # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) .grunt # Compiled binary addons (http://nodejs.org/api/addons.html) build/Release # Dependency directory # Commenting this out is preferred by some people, see # https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git- node_modules # Users Environment Variables .lock-wscript # Garbage files .DS_Store has-gulplog-0.1.0/.travis.yml000066400000000000000000000001101257437615400160510ustar00rootroot00000000000000sudo: false language: node_js node_js: - 'iojs' - '0.12' - '0.10' has-gulplog-0.1.0/LICENSE000066400000000000000000000020601257437615400147530ustar00rootroot00000000000000The 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. has-gulplog-0.1.0/README.md000066400000000000000000000001101257437615400152170ustar00rootroot00000000000000# has-gulplog Check if gulplog is available before attempting to use it has-gulplog-0.1.0/index.js000066400000000000000000000002201257437615400154070ustar00rootroot00000000000000'use strict'; var sparkles = require('sparkles'); function hasGulplog(){ return sparkles.exists('gulplog'); } module.exports = hasGulplog; has-gulplog-0.1.0/package.json000066400000000000000000000011361257437615400162370ustar00rootroot00000000000000{ "name": "has-gulplog", "version": "0.1.0", "description": "Check if gulplog is available before attempting to use it", "author": "Blaine Bublitz (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" ] }