Template Upload
This commit is contained in:
21
node_modules/is-windows/LICENSE
generated
vendored
Normal file
21
node_modules/is-windows/LICENSE
generated
vendored
Normal file
@ -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.
|
22
node_modules/is-windows/index.js
generated
vendored
Normal file
22
node_modules/is-windows/index.js
generated
vendored
Normal file
@ -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';
|
||||
}());
|
||||
}));
|
121
node_modules/is-windows/package.json
generated
vendored
Normal file
121
node_modules/is-windows/package.json
generated
vendored
Normal file
@ -0,0 +1,121 @@
|
||||
{
|
||||
"_args": [
|
||||
[
|
||||
"is-windows@^0.2.0",
|
||||
"C:\\Users\\x2mjbyrn\\Source\\Repos\\Skeleton\\node_modules\\is-absolute"
|
||||
]
|
||||
],
|
||||
"_from": "is-windows@>=0.2.0-0 <0.3.0-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": {
|
||||
"email": "github@sellside.com",
|
||||
"name": "jonschlinkert"
|
||||
},
|
||||
"_npmVersion": "3.8.9",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"name": "is-windows",
|
||||
"raw": "is-windows@^0.2.0",
|
||||
"rawSpec": "^0.2.0",
|
||||
"scope": null,
|
||||
"spec": ">=0.2.0-0 <0.3.0-0",
|
||||
"type": "range"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/is-absolute"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/is-windows/-/is-windows-0.2.0.tgz",
|
||||
"_shasum": "de1aa6d63ea29dd248737b69f1ff8b8002d2108c",
|
||||
"_shrinkwrap": null,
|
||||
"_spec": "is-windows@^0.2.0",
|
||||
"_where": "C:\\Users\\x2mjbyrn\\Source\\Repos\\Skeleton\\node_modules\\is-absolute",
|
||||
"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",
|
||||
"installable": true,
|
||||
"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": {},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/jonschlinkert/is-windows.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "mocha"
|
||||
},
|
||||
"verb": {
|
||||
"layout": "default",
|
||||
"lint": {
|
||||
"reflinks": true
|
||||
},
|
||||
"plugins": [
|
||||
"gulp-format-md"
|
||||
],
|
||||
"reflinks": [
|
||||
"verb"
|
||||
],
|
||||
"related": {
|
||||
"list": [
|
||||
"is-absolute",
|
||||
"is-glob",
|
||||
"is-relative",
|
||||
"isobject",
|
||||
"window-size"
|
||||
]
|
||||
},
|
||||
"tasks": [
|
||||
"readme"
|
||||
],
|
||||
"toc": false
|
||||
},
|
||||
"version": "0.2.0"
|
||||
}
|
Reference in New Issue
Block a user