aboutsummaryrefslogtreecommitdiff
path: root/node_modules/is-windows
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/is-windows
parenta0247c6a3fd6a09a41a7e35a3441324c4dcb58be (diff)
downloadwallet-core-abd94a7f5a50f43c797a11b53549ae48fff667c3.tar.xz
add node_modules to address #4364
Diffstat (limited to 'node_modules/is-windows')
-rw-r--r--node_modules/is-windows/LICENSE21
-rw-r--r--node_modules/is-windows/index.js22
-rw-r--r--node_modules/is-windows/package.json131
3 files changed, 174 insertions, 0 deletions
diff --git a/node_modules/is-windows/LICENSE b/node_modules/is-windows/LICENSE
new file mode 100644
index 000000000..65f90aca8
--- /dev/null
+++ b/node_modules/is-windows/LICENSE
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2015, 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
new file mode 100644
index 000000000..e0480edcb
--- /dev/null
+++ b/node_modules/is-windows/index.js
@@ -0,0 +1,22 @@
+/*! is-windows v0.2.0 | MIT LICENSE (c) 2015 | https://github.com/jonschlinkert/is-windows */
+(function (root, factory) {
+ if (typeof define === 'function' && define.amd) {
+ // AMD
+ define(factory);
+ } else if (typeof exports === 'object') {
+ // Node.js
+ module.exports = factory;
+ } else {
+ // Browser
+ root.isWindows = factory;
+ }
+}(this, function () {
+ 'use strict';
+
+ return (function isWindows() {
+ if (typeof process === 'undefined' || !process) {
+ return false;
+ }
+ return process.platform === 'win32';
+ }());
+}));
diff --git a/node_modules/is-windows/package.json b/node_modules/is-windows/package.json
new file mode 100644
index 000000000..c86a7e5b2
--- /dev/null
+++ b/node_modules/is-windows/package.json
@@ -0,0 +1,131 @@
+{
+ "_args": [
+ [
+ {
+ "raw": "is-windows@^0.2.0",
+ "scope": null,
+ "escapedName": "is-windows",
+ "name": "is-windows",
+ "rawSpec": "^0.2.0",
+ "spec": ">=0.2.0 <0.3.0",
+ "type": "range"
+ },
+ "/home/dold/repos/taler/wallet-webex/node_modules/global-modules"
+ ]
+ ],
+ "_from": "is-windows@>=0.2.0 <0.3.0",
+ "_id": "is-windows@0.2.0",
+ "_inCache": true,
+ "_location": "/is-windows",
+ "_nodeVersion": "6.2.0",
+ "_npmOperationalInternal": {
+ "host": "packages-12-west.internal.npmjs.com",
+ "tmp": "tmp/is-windows-0.2.0.tgz_1465117629609_0.3620154741220176"
+ },
+ "_npmUser": {
+ "name": "jonschlinkert",
+ "email": "github@sellside.com"
+ },
+ "_npmVersion": "3.8.9",
+ "_phantomChildren": {},
+ "_requested": {
+ "raw": "is-windows@^0.2.0",
+ "scope": null,
+ "escapedName": "is-windows",
+ "name": "is-windows",
+ "rawSpec": "^0.2.0",
+ "spec": ">=0.2.0 <0.3.0",
+ "type": "range"
+ },
+ "_requiredBy": [
+ "/global-modules",
+ "/global-prefix"
+ ],
+ "_resolved": "https://registry.npmjs.org/is-windows/-/is-windows-0.2.0.tgz",
+ "_shasum": "de1aa6d63ea29dd248737b69f1ff8b8002d2108c",
+ "_shrinkwrap": null,
+ "_spec": "is-windows@^0.2.0",
+ "_where": "/home/dold/repos/taler/wallet-webex/node_modules/global-modules",
+ "author": {
+ "name": "Jon Schlinkert",
+ "url": "https://github.com/jonschlinkert"
+ },
+ "bugs": {
+ "url": "https://github.com/jonschlinkert/is-windows/issues"
+ },
+ "dependencies": {},
+ "description": "Returns true if the platform is windwows.",
+ "devDependencies": {
+ "gulp-format-md": "^0.1.9",
+ "mocha": "*"
+ },
+ "directories": {},
+ "dist": {
+ "shasum": "de1aa6d63ea29dd248737b69f1ff8b8002d2108c",
+ "tarball": "https://registry.npmjs.org/is-windows/-/is-windows-0.2.0.tgz"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ },
+ "files": [
+ "index.js"
+ ],
+ "gitHead": "79167eabd3da5438439ac9c60ff1ef3ced8c148d",
+ "homepage": "https://github.com/jonschlinkert/is-windows",
+ "keywords": [
+ "check",
+ "is",
+ "is-windows",
+ "nix",
+ "platform",
+ "process",
+ "unix",
+ "win",
+ "win32",
+ "windows"
+ ],
+ "license": "MIT",
+ "main": "index.js",
+ "maintainers": [
+ {
+ "name": "jonschlinkert",
+ "email": "github@sellside.com"
+ }
+ ],
+ "name": "is-windows",
+ "optionalDependencies": {},
+ "readme": "ERROR: No README data found!",
+ "repository": {
+ "type": "git",
+ "url": "git+https://github.com/jonschlinkert/is-windows.git"
+ },
+ "scripts": {
+ "test": "mocha"
+ },
+ "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"
+ ]
+ },
+ "version": "0.2.0"
+}