aboutsummaryrefslogtreecommitdiff
path: root/node_modules/is-windows
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/is-windows
parent3771b4d6b67b34c130f3a9a1a15f42deefdb2eda (diff)
remove node_modules
Diffstat (limited to 'node_modules/is-windows')
-rw-r--r--node_modules/is-windows/LICENSE21
-rw-r--r--node_modules/is-windows/index.js27
-rw-r--r--node_modules/is-windows/package.json71
3 files changed, 0 insertions, 119 deletions
diff --git a/node_modules/is-windows/LICENSE b/node_modules/is-windows/LICENSE
deleted file mode 100644
index f8de06305..000000000
--- a/node_modules/is-windows/LICENSE
+++ /dev/null
@@ -1,21 +0,0 @@
-The MIT License (MIT)
-
-Copyright (c) 2015-2018, Jon Schlinkert.
-
-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/is-windows/index.js b/node_modules/is-windows/index.js
deleted file mode 100644
index 55d43e092..000000000
--- a/node_modules/is-windows/index.js
+++ /dev/null
@@ -1,27 +0,0 @@
-/*!
- * is-windows <https://github.com/jonschlinkert/is-windows>
- *
- * Copyright © 2015-2018, Jon Schlinkert.
- * Released under the MIT License.
- */
-
-(function(factory) {
- if (exports && typeof exports === 'object' && typeof module !== 'undefined') {
- module.exports = factory();
- } else if (typeof define === 'function' && define.amd) {
- define([], factory);
- } else if (typeof window !== 'undefined') {
- window.isWindows = factory();
- } else if (typeof global !== 'undefined') {
- global.isWindows = factory();
- } else if (typeof self !== 'undefined') {
- self.isWindows = factory();
- } else {
- this.isWindows = factory();
- }
-})(function() {
- 'use strict';
- return function isWindows() {
- return process && (process.platform === 'win32' || /^(msys|cygwin)$/.test(process.env.OSTYPE));
- };
-});
diff --git a/node_modules/is-windows/package.json b/node_modules/is-windows/package.json
deleted file mode 100644
index fca09f9c0..000000000
--- a/node_modules/is-windows/package.json
+++ /dev/null
@@ -1,71 +0,0 @@
-{
- "name": "is-windows",
- "description": "Returns true if the platform is windows. UMD module, works with node.js, commonjs, browser, AMD, electron, etc.",
- "version": "1.0.2",
- "homepage": "https://github.com/jonschlinkert/is-windows",
- "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
- "contributors": [
- "Jon Schlinkert (http://twitter.com/jonschlinkert)",
- "Simen Bekkhus (https://github.com/SimenB)",
- "刘祺 (gucong.co.cc)"
- ],
- "repository": "jonschlinkert/is-windows",
- "bugs": {
- "url": "https://github.com/jonschlinkert/is-windows/issues"
- },
- "license": "MIT",
- "files": [
- "index.js"
- ],
- "main": "index.js",
- "engines": {
- "node": ">=0.10.0"
- },
- "scripts": {
- "test": "mocha"
- },
- "devDependencies": {
- "gulp-format-md": "^1.0.0",
- "mocha": "^3.5.3"
- },
- "keywords": [
- "check",
- "cywin",
- "is",
- "is-windows",
- "nix",
- "operating system",
- "os",
- "platform",
- "process",
- "unix",
- "win",
- "win32",
- "windows"
- ],
- "verb": {
- "toc": false,
- "layout": "default",
- "tasks": [
- "readme"
- ],
- "plugins": [
- "gulp-format-md"
- ],
- "related": {
- "list": [
- "is-absolute",
- "is-glob",
- "is-relative",
- "isobject",
- "window-size"
- ]
- },
- "lint": {
- "reflinks": true
- },
- "reflinks": [
- "verb"
- ]
- }
-}