update modules

This commit is contained in:
s2
2020-06-08 08:50:28 +02:00
parent ae4aaf2668
commit 27635904a6
477 changed files with 20385 additions and 35036 deletions

15
node_modules/.bin/ejs generated vendored Normal file
View File

@@ -0,0 +1,15 @@
#!/bin/sh
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
case `uname` in
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
esac
if [ -x "$basedir/node" ]; then
"$basedir/node" "$basedir/../ejs/bin/cli.js" "$@"
ret=$?
else
node "$basedir/../ejs/bin/cli.js" "$@"
ret=$?
fi
exit $ret

17
node_modules/.bin/ejs.cmd generated vendored Normal file
View File

@@ -0,0 +1,17 @@
@ECHO off
SETLOCAL
CALL :find_dp0
IF EXIST "%dp0%\node.exe" (
SET "_prog=%dp0%\node.exe"
) ELSE (
SET "_prog=node"
SET PATHEXT=%PATHEXT:;.JS;=;%
)
"%_prog%" "%dp0%\..\ejs\bin\cli.js" %*
ENDLOCAL
EXIT /b %errorlevel%
:find_dp0
SET dp0=%~dp0
EXIT /b

18
node_modules/.bin/ejs.ps1 generated vendored Normal file
View File

@@ -0,0 +1,18 @@
#!/usr/bin/env pwsh
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
$exe=""
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
# Fix case when both the Windows and Linux builds of Node
# are installed in the same directory
$exe=".exe"
}
$ret=0
if (Test-Path "$basedir/node$exe") {
& "$basedir/node$exe" "$basedir/../ejs/bin/cli.js" $args
$ret=$LASTEXITCODE
} else {
& "node$exe" "$basedir/../ejs/bin/cli.js" $args
$ret=$LASTEXITCODE
}
exit $ret

15
node_modules/.bin/jake generated vendored Normal file
View File

@@ -0,0 +1,15 @@
#!/bin/sh
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
case `uname` in
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
esac
if [ -x "$basedir/node" ]; then
"$basedir/node" "$basedir/../jake/bin/cli.js" "$@"
ret=$?
else
node "$basedir/../jake/bin/cli.js" "$@"
ret=$?
fi
exit $ret

17
node_modules/.bin/jake.cmd generated vendored Normal file
View File

@@ -0,0 +1,17 @@
@ECHO off
SETLOCAL
CALL :find_dp0
IF EXIST "%dp0%\node.exe" (
SET "_prog=%dp0%\node.exe"
) ELSE (
SET "_prog=node"
SET PATHEXT=%PATHEXT:;.JS;=;%
)
"%_prog%" "%dp0%\..\jake\bin\cli.js" %*
ENDLOCAL
EXIT /b %errorlevel%
:find_dp0
SET dp0=%~dp0
EXIT /b

18
node_modules/.bin/jake.ps1 generated vendored Normal file
View File

@@ -0,0 +1,18 @@
#!/usr/bin/env pwsh
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
$exe=""
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
# Fix case when both the Windows and Linux builds of Node
# are installed in the same directory
$exe=".exe"
}
$ret=0
if (Test-Path "$basedir/node$exe") {
& "$basedir/node$exe" "$basedir/../jake/bin/cli.js" $args
$ret=$LASTEXITCODE
} else {
& "node$exe" "$basedir/../jake/bin/cli.js" $args
$ret=$LASTEXITCODE
}
exit $ret

View File

@@ -0,0 +1,11 @@
function _arrayLikeToArray(arr, len) {
if (len == null || len > arr.length) len = arr.length;
for (var i = 0, arr2 = new Array(len); i < len; i++) {
arr2[i] = arr[i];
}
return arr2;
}
module.exports = _arrayLikeToArray;

View File

@@ -1,11 +1,7 @@
function _arrayWithoutHoles(arr) { var arrayLikeToArray = require("./arrayLikeToArray");
if (Array.isArray(arr)) {
for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) {
arr2[i] = arr[i];
}
return arr2; function _arrayWithoutHoles(arr) {
} if (Array.isArray(arr)) return arrayLikeToArray(arr);
} }
module.exports = _arrayWithoutHoles; module.exports = _arrayWithoutHoles;

View File

@@ -1,17 +1,6 @@
var setPrototypeOf = require("./setPrototypeOf"); var setPrototypeOf = require("./setPrototypeOf");
function isNativeReflectConstruct() { var isNativeReflectConstruct = require("./isNativeReflectConstruct");
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
if (Reflect.construct.sham) return false;
if (typeof Proxy === "function") return true;
try {
Date.prototype.toString.call(Reflect.construct(Date, [], function () {}));
return true;
} catch (e) {
return false;
}
}
function _construct(Parent, args, Class) { function _construct(Parent, args, Class) {
if (isNativeReflectConstruct()) { if (isNativeReflectConstruct()) {

View File

@@ -0,0 +1,60 @@
var unsupportedIterableToArray = require("./unsupportedIterableToArray");
function _createForOfIteratorHelper(o, allowArrayLike) {
var it;
if (typeof Symbol === "undefined" || o[Symbol.iterator] == null) {
if (Array.isArray(o) || (it = unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") {
if (it) o = it;
var i = 0;
var F = function F() {};
return {
s: F,
n: function n() {
if (i >= o.length) return {
done: true
};
return {
done: false,
value: o[i++]
};
},
e: function e(_e) {
throw _e;
},
f: F
};
}
throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
}
var normalCompletion = true,
didErr = false,
err;
return {
s: function s() {
it = o[Symbol.iterator]();
},
n: function n() {
var step = it.next();
normalCompletion = step.done;
return step;
},
e: function e(_e2) {
didErr = true;
err = _e2;
},
f: function f() {
try {
if (!normalCompletion && it["return"] != null) it["return"]();
} finally {
if (didErr) throw err;
}
}
};
}
module.exports = _createForOfIteratorHelper;

View File

@@ -0,0 +1,28 @@
var unsupportedIterableToArray = require("./unsupportedIterableToArray");
function _createForOfIteratorHelperLoose(o, allowArrayLike) {
var it;
if (typeof Symbol === "undefined" || o[Symbol.iterator] == null) {
if (Array.isArray(o) || (it = unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") {
if (it) o = it;
var i = 0;
return function () {
if (i >= o.length) return {
done: true
};
return {
done: false,
value: o[i++]
};
};
}
throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
}
it = o[Symbol.iterator]();
return it.next.bind(it);
}
module.exports = _createForOfIteratorHelperLoose;

24
node_modules/@babel/runtime/helpers/createSuper.js generated vendored Normal file
View File

@@ -0,0 +1,24 @@
var getPrototypeOf = require("./getPrototypeOf");
var isNativeReflectConstruct = require("./isNativeReflectConstruct");
var possibleConstructorReturn = require("./possibleConstructorReturn");
function _createSuper(Derived) {
var hasNativeReflectConstruct = isNativeReflectConstruct();
return function _createSuperInternal() {
var Super = getPrototypeOf(Derived),
result;
if (hasNativeReflectConstruct) {
var NewTarget = getPrototypeOf(this).constructor;
result = Reflect.construct(Super, arguments, NewTarget);
} else {
result = Super.apply(this, arguments);
}
return possibleConstructorReturn(this, result);
};
}
module.exports = _createSuper;

View File

@@ -0,0 +1,9 @@
export default function _arrayLikeToArray(arr, len) {
if (len == null || len > arr.length) len = arr.length;
for (var i = 0, arr2 = new Array(len); i < len; i++) {
arr2[i] = arr[i];
}
return arr2;
}

View File

@@ -1,9 +1,4 @@
import arrayLikeToArray from "./arrayLikeToArray";
export default function _arrayWithoutHoles(arr) { export default function _arrayWithoutHoles(arr) {
if (Array.isArray(arr)) { if (Array.isArray(arr)) return arrayLikeToArray(arr);
for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) {
arr2[i] = arr[i];
}
return arr2;
}
} }

View File

@@ -1,18 +1,5 @@
import setPrototypeOf from "./setPrototypeOf"; import setPrototypeOf from "./setPrototypeOf";
import isNativeReflectConstruct from "./isNativeReflectConstruct";
function isNativeReflectConstruct() {
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
if (Reflect.construct.sham) return false;
if (typeof Proxy === "function") return true;
try {
Date.prototype.toString.call(Reflect.construct(Date, [], function () {}));
return true;
} catch (e) {
return false;
}
}
export default function _construct(Parent, args, Class) { export default function _construct(Parent, args, Class) {
if (isNativeReflectConstruct()) { if (isNativeReflectConstruct()) {
_construct = Reflect.construct; _construct = Reflect.construct;

View File

@@ -0,0 +1,57 @@
import unsupportedIterableToArray from "./unsupportedIterableToArray";
export default function _createForOfIteratorHelper(o, allowArrayLike) {
var it;
if (typeof Symbol === "undefined" || o[Symbol.iterator] == null) {
if (Array.isArray(o) || (it = unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") {
if (it) o = it;
var i = 0;
var F = function F() {};
return {
s: F,
n: function n() {
if (i >= o.length) return {
done: true
};
return {
done: false,
value: o[i++]
};
},
e: function e(_e) {
throw _e;
},
f: F
};
}
throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
}
var normalCompletion = true,
didErr = false,
err;
return {
s: function s() {
it = o[Symbol.iterator]();
},
n: function n() {
var step = it.next();
normalCompletion = step.done;
return step;
},
e: function e(_e2) {
didErr = true;
err = _e2;
},
f: function f() {
try {
if (!normalCompletion && it["return"] != null) it["return"]();
} finally {
if (didErr) throw err;
}
}
};
}

View File

@@ -0,0 +1,25 @@
import unsupportedIterableToArray from "./unsupportedIterableToArray";
export default function _createForOfIteratorHelperLoose(o, allowArrayLike) {
var it;
if (typeof Symbol === "undefined" || o[Symbol.iterator] == null) {
if (Array.isArray(o) || (it = unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") {
if (it) o = it;
var i = 0;
return function () {
if (i >= o.length) return {
done: true
};
return {
done: false,
value: o[i++]
};
};
}
throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
}
it = o[Symbol.iterator]();
return it.next.bind(it);
}

19
node_modules/@babel/runtime/helpers/esm/createSuper.js generated vendored Normal file
View File

@@ -0,0 +1,19 @@
import getPrototypeOf from "./getPrototypeOf";
import isNativeReflectConstruct from "./isNativeReflectConstruct";
import possibleConstructorReturn from "./possibleConstructorReturn";
export default function _createSuper(Derived) {
var hasNativeReflectConstruct = isNativeReflectConstruct();
return function _createSuperInternal() {
var Super = getPrototypeOf(Derived),
result;
if (hasNativeReflectConstruct) {
var NewTarget = getPrototypeOf(this).constructor;
result = Reflect.construct(Super, arguments, NewTarget);
} else {
result = Super.apply(this, arguments);
}
return possibleConstructorReturn(this, result);
};
}

View File

@@ -0,0 +1,12 @@
export default function _isNativeReflectConstruct() {
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
if (Reflect.construct.sham) return false;
if (typeof Proxy === "function") return true;
try {
Date.prototype.toString.call(Reflect.construct(Date, [], function () {}));
return true;
} catch (e) {
return false;
}
}

View File

@@ -1,3 +1,3 @@
export default function _iterableToArray(iter) { export default function _iterableToArray(iter) {
if (Symbol.iterator in Object(iter) || Object.prototype.toString.call(iter) === "[object Arguments]") return Array.from(iter); if (typeof Symbol !== "undefined" && Symbol.iterator in Object(iter)) return Array.from(iter);
} }

View File

@@ -1,8 +1,5 @@
export default function _iterableToArrayLimit(arr, i) { export default function _iterableToArrayLimit(arr, i) {
if (!(Symbol.iterator in Object(arr) || Object.prototype.toString.call(arr) === "[object Arguments]")) { if (typeof Symbol === "undefined" || !(Symbol.iterator in Object(arr))) return;
return;
}
var _arr = []; var _arr = [];
var _n = true; var _n = true;
var _d = false; var _d = false;

View File

@@ -1,8 +1,5 @@
export default function _iterableToArrayLimitLoose(arr, i) { export default function _iterableToArrayLimitLoose(arr, i) {
if (!(Symbol.iterator in Object(arr) || Object.prototype.toString.call(arr) === "[object Arguments]")) { if (typeof Symbol === "undefined" || !(Symbol.iterator in Object(arr))) return;
return;
}
var _arr = []; var _arr = [];
for (var _iterator = arr[Symbol.iterator](), _step; !(_step = _iterator.next()).done;) { for (var _iterator = arr[Symbol.iterator](), _step; !(_step = _iterator.next()).done;) {

View File

@@ -0,0 +1,9 @@
import arrayLikeToArray from "./arrayLikeToArray";
export default function _maybeArrayLike(next, arr, i) {
if (arr && !Array.isArray(arr) && typeof arr.length === "number") {
var len = arr.length;
return arrayLikeToArray(arr, i !== void 0 && i < len ? i : len);
}
return next(arr, i);
}

View File

@@ -1,3 +1,3 @@
export default function _nonIterableRest() { export default function _nonIterableRest() {
throw new TypeError("Invalid attempt to destructure non-iterable instance"); throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
} }

View File

@@ -1,3 +1,3 @@
export default function _nonIterableSpread() { export default function _nonIterableSpread() {
throw new TypeError("Invalid attempt to spread non-iterable instance"); throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
} }

View File

@@ -1,8 +1,8 @@
import defineProperty from "./defineProperty"; import defineProperty from "./defineProperty";
export default function _objectSpread(target) { export default function _objectSpread(target) {
for (var i = 1; i < arguments.length; i++) { for (var i = 1; i < arguments.length; i++) {
var source = arguments[i] != null ? arguments[i] : {}; var source = arguments[i] != null ? Object(arguments[i]) : {};
var ownKeys = Object.keys(Object(source)); var ownKeys = Object.keys(source);
if (typeof Object.getOwnPropertySymbols === 'function') { if (typeof Object.getOwnPropertySymbols === 'function') {
ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) {

View File

@@ -1,6 +1,7 @@
import arrayWithHoles from "./arrayWithHoles"; import arrayWithHoles from "./arrayWithHoles";
import iterableToArrayLimit from "./iterableToArrayLimit"; import iterableToArrayLimit from "./iterableToArrayLimit";
import unsupportedIterableToArray from "./unsupportedIterableToArray";
import nonIterableRest from "./nonIterableRest"; import nonIterableRest from "./nonIterableRest";
export default function _slicedToArray(arr, i) { export default function _slicedToArray(arr, i) {
return arrayWithHoles(arr) || iterableToArrayLimit(arr, i) || nonIterableRest(); return arrayWithHoles(arr) || iterableToArrayLimit(arr, i) || unsupportedIterableToArray(arr, i) || nonIterableRest();
} }

View File

@@ -1,6 +1,7 @@
import arrayWithHoles from "./arrayWithHoles"; import arrayWithHoles from "./arrayWithHoles";
import iterableToArrayLimitLoose from "./iterableToArrayLimitLoose"; import iterableToArrayLimitLoose from "./iterableToArrayLimitLoose";
import unsupportedIterableToArray from "./unsupportedIterableToArray";
import nonIterableRest from "./nonIterableRest"; import nonIterableRest from "./nonIterableRest";
export default function _slicedToArrayLoose(arr, i) { export default function _slicedToArrayLoose(arr, i) {
return arrayWithHoles(arr) || iterableToArrayLimitLoose(arr, i) || nonIterableRest(); return arrayWithHoles(arr) || iterableToArrayLimitLoose(arr, i) || unsupportedIterableToArray(arr, i) || nonIterableRest();
} }

View File

@@ -1,6 +1,7 @@
import arrayWithHoles from "./arrayWithHoles"; import arrayWithHoles from "./arrayWithHoles";
import iterableToArray from "./iterableToArray"; import iterableToArray from "./iterableToArray";
import unsupportedIterableToArray from "./unsupportedIterableToArray";
import nonIterableRest from "./nonIterableRest"; import nonIterableRest from "./nonIterableRest";
export default function _toArray(arr) { export default function _toArray(arr) {
return arrayWithHoles(arr) || iterableToArray(arr) || nonIterableRest(); return arrayWithHoles(arr) || iterableToArray(arr) || unsupportedIterableToArray(arr) || nonIterableRest();
} }

View File

@@ -1,6 +1,7 @@
import arrayWithoutHoles from "./arrayWithoutHoles"; import arrayWithoutHoles from "./arrayWithoutHoles";
import iterableToArray from "./iterableToArray"; import iterableToArray from "./iterableToArray";
import unsupportedIterableToArray from "./unsupportedIterableToArray";
import nonIterableSpread from "./nonIterableSpread"; import nonIterableSpread from "./nonIterableSpread";
export default function _toConsumableArray(arr) { export default function _toConsumableArray(arr) {
return arrayWithoutHoles(arr) || iterableToArray(arr) || nonIterableSpread(); return arrayWithoutHoles(arr) || iterableToArray(arr) || unsupportedIterableToArray(arr) || nonIterableSpread();
} }

View File

@@ -1,4 +1,6 @@
export default function _typeof(obj) { export default function _typeof(obj) {
"@babel/helpers - typeof";
if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") {
_typeof = function _typeof(obj) { _typeof = function _typeof(obj) {
return typeof obj; return typeof obj;

View File

@@ -0,0 +1,9 @@
import arrayLikeToArray from "./arrayLikeToArray";
export default function _unsupportedIterableToArray(o, minLen) {
if (!o) return;
if (typeof o === "string") return arrayLikeToArray(o, minLen);
var n = Object.prototype.toString.call(o).slice(8, -1);
if (n === "Object" && o.constructor) n = o.constructor.name;
if (n === "Map" || n === "Set") return Array.from(o);
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return arrayLikeToArray(o, minLen);
}

View File

@@ -0,0 +1,14 @@
function _isNativeReflectConstruct() {
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
if (Reflect.construct.sham) return false;
if (typeof Proxy === "function") return true;
try {
Date.prototype.toString.call(Reflect.construct(Date, [], function () {}));
return true;
} catch (e) {
return false;
}
}
module.exports = _isNativeReflectConstruct;

View File

@@ -1,5 +1,5 @@
function _iterableToArray(iter) { function _iterableToArray(iter) {
if (Symbol.iterator in Object(iter) || Object.prototype.toString.call(iter) === "[object Arguments]") return Array.from(iter); if (typeof Symbol !== "undefined" && Symbol.iterator in Object(iter)) return Array.from(iter);
} }
module.exports = _iterableToArray; module.exports = _iterableToArray;

View File

@@ -1,8 +1,5 @@
function _iterableToArrayLimit(arr, i) { function _iterableToArrayLimit(arr, i) {
if (!(Symbol.iterator in Object(arr) || Object.prototype.toString.call(arr) === "[object Arguments]")) { if (typeof Symbol === "undefined" || !(Symbol.iterator in Object(arr))) return;
return;
}
var _arr = []; var _arr = [];
var _n = true; var _n = true;
var _d = false; var _d = false;

View File

@@ -1,8 +1,5 @@
function _iterableToArrayLimitLoose(arr, i) { function _iterableToArrayLimitLoose(arr, i) {
if (!(Symbol.iterator in Object(arr) || Object.prototype.toString.call(arr) === "[object Arguments]")) { if (typeof Symbol === "undefined" || !(Symbol.iterator in Object(arr))) return;
return;
}
var _arr = []; var _arr = [];
for (var _iterator = arr[Symbol.iterator](), _step; !(_step = _iterator.next()).done;) { for (var _iterator = arr[Symbol.iterator](), _step; !(_step = _iterator.next()).done;) {

12
node_modules/@babel/runtime/helpers/maybeArrayLike.js generated vendored Normal file
View File

@@ -0,0 +1,12 @@
var arrayLikeToArray = require("./arrayLikeToArray");
function _maybeArrayLike(next, arr, i) {
if (arr && !Array.isArray(arr) && typeof arr.length === "number") {
var len = arr.length;
return arrayLikeToArray(arr, i !== void 0 && i < len ? i : len);
}
return next(arr, i);
}
module.exports = _maybeArrayLike;

View File

@@ -1,5 +1,5 @@
function _nonIterableRest() { function _nonIterableRest() {
throw new TypeError("Invalid attempt to destructure non-iterable instance"); throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
} }
module.exports = _nonIterableRest; module.exports = _nonIterableRest;

View File

@@ -1,5 +1,5 @@
function _nonIterableSpread() { function _nonIterableSpread() {
throw new TypeError("Invalid attempt to spread non-iterable instance"); throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
} }
module.exports = _nonIterableSpread; module.exports = _nonIterableSpread;

View File

@@ -2,8 +2,8 @@ var defineProperty = require("./defineProperty");
function _objectSpread(target) { function _objectSpread(target) {
for (var i = 1; i < arguments.length; i++) { for (var i = 1; i < arguments.length; i++) {
var source = arguments[i] != null ? arguments[i] : {}; var source = arguments[i] != null ? Object(arguments[i]) : {};
var ownKeys = Object.keys(Object(source)); var ownKeys = Object.keys(source);
if (typeof Object.getOwnPropertySymbols === 'function') { if (typeof Object.getOwnPropertySymbols === 'function') {
ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) {

View File

@@ -2,10 +2,12 @@ var arrayWithHoles = require("./arrayWithHoles");
var iterableToArrayLimit = require("./iterableToArrayLimit"); var iterableToArrayLimit = require("./iterableToArrayLimit");
var unsupportedIterableToArray = require("./unsupportedIterableToArray");
var nonIterableRest = require("./nonIterableRest"); var nonIterableRest = require("./nonIterableRest");
function _slicedToArray(arr, i) { function _slicedToArray(arr, i) {
return arrayWithHoles(arr) || iterableToArrayLimit(arr, i) || nonIterableRest(); return arrayWithHoles(arr) || iterableToArrayLimit(arr, i) || unsupportedIterableToArray(arr, i) || nonIterableRest();
} }
module.exports = _slicedToArray; module.exports = _slicedToArray;

View File

@@ -2,10 +2,12 @@ var arrayWithHoles = require("./arrayWithHoles");
var iterableToArrayLimitLoose = require("./iterableToArrayLimitLoose"); var iterableToArrayLimitLoose = require("./iterableToArrayLimitLoose");
var unsupportedIterableToArray = require("./unsupportedIterableToArray");
var nonIterableRest = require("./nonIterableRest"); var nonIterableRest = require("./nonIterableRest");
function _slicedToArrayLoose(arr, i) { function _slicedToArrayLoose(arr, i) {
return arrayWithHoles(arr) || iterableToArrayLimitLoose(arr, i) || nonIterableRest(); return arrayWithHoles(arr) || iterableToArrayLimitLoose(arr, i) || unsupportedIterableToArray(arr, i) || nonIterableRest();
} }
module.exports = _slicedToArrayLoose; module.exports = _slicedToArrayLoose;

View File

@@ -2,10 +2,12 @@ var arrayWithHoles = require("./arrayWithHoles");
var iterableToArray = require("./iterableToArray"); var iterableToArray = require("./iterableToArray");
var unsupportedIterableToArray = require("./unsupportedIterableToArray");
var nonIterableRest = require("./nonIterableRest"); var nonIterableRest = require("./nonIterableRest");
function _toArray(arr) { function _toArray(arr) {
return arrayWithHoles(arr) || iterableToArray(arr) || nonIterableRest(); return arrayWithHoles(arr) || iterableToArray(arr) || unsupportedIterableToArray(arr) || nonIterableRest();
} }
module.exports = _toArray; module.exports = _toArray;

View File

@@ -2,10 +2,12 @@ var arrayWithoutHoles = require("./arrayWithoutHoles");
var iterableToArray = require("./iterableToArray"); var iterableToArray = require("./iterableToArray");
var unsupportedIterableToArray = require("./unsupportedIterableToArray");
var nonIterableSpread = require("./nonIterableSpread"); var nonIterableSpread = require("./nonIterableSpread");
function _toConsumableArray(arr) { function _toConsumableArray(arr) {
return arrayWithoutHoles(arr) || iterableToArray(arr) || nonIterableSpread(); return arrayWithoutHoles(arr) || iterableToArray(arr) || unsupportedIterableToArray(arr) || nonIterableSpread();
} }
module.exports = _toConsumableArray; module.exports = _toConsumableArray;

View File

@@ -1,4 +1,6 @@
function _typeof(obj) { function _typeof(obj) {
"@babel/helpers - typeof";
if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") {
module.exports = _typeof = function _typeof(obj) { module.exports = _typeof = function _typeof(obj) {
return typeof obj; return typeof obj;

View File

@@ -0,0 +1,12 @@
var arrayLikeToArray = require("./arrayLikeToArray");
function _unsupportedIterableToArray(o, minLen) {
if (!o) return;
if (typeof o === "string") return arrayLikeToArray(o, minLen);
var n = Object.prototype.toString.call(o).slice(8, -1);
if (n === "Object" && o.constructor) n = o.constructor.name;
if (n === "Map" || n === "Set") return Array.from(o);
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return arrayLikeToArray(o, minLen);
}
module.exports = _unsupportedIterableToArray;

View File

@@ -1,33 +1,30 @@
{ {
"_args": [ "_from": "@babel/runtime@^7.3.1",
[ "_id": "@babel/runtime@7.10.2",
"@babel/runtime@7.7.7",
"D:\\Projects\\siag\\vanillajs-seed"
]
],
"_from": "@babel/runtime@7.7.7",
"_id": "@babel/runtime@7.7.7",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha512-uCnC2JEVAu8AKB5do1WRIsvrdJ0flYx/A/9f/6chdacnEZ7LmavjdsDXr5ksYBegxtuTPR5Va9/+13QF/kFkCA==", "_integrity": "sha512-6sF3uQw2ivImfVIl62RZ7MXhO2tap69WeWK57vAaimT6AZbE4FbqjdEJIN1UqoD6wI6B+1n9UiagafH1sxjOtg==",
"_location": "/@babel/runtime", "_location": "/@babel/runtime",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
"type": "version", "type": "range",
"registry": true, "registry": true,
"raw": "@babel/runtime@7.7.7", "raw": "@babel/runtime@^7.3.1",
"name": "@babel/runtime", "name": "@babel/runtime",
"escapedName": "@babel%2fruntime", "escapedName": "@babel%2fruntime",
"scope": "@babel", "scope": "@babel",
"rawSpec": "7.7.7", "rawSpec": "^7.3.1",
"saveSpec": null, "saveSpec": null,
"fetchSpec": "7.7.7" "fetchSpec": "^7.3.1"
}, },
"_requiredBy": [ "_requiredBy": [
"/i18next" "/i18next",
"/i18next-browser-languagedetector",
"/i18next-xhr-backend"
], ],
"_resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.7.7.tgz", "_resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.10.2.tgz",
"_spec": "7.7.7", "_shasum": "d103f21f2602497d38348a32e008637d506db839",
"_where": "D:\\Projects\\siag\\vanillajs-seed", "_spec": "@babel/runtime@^7.3.1",
"_where": "D:\\Projects\\vanillajs-seed\\node_modules\\i18next",
"author": { "author": {
"name": "Sebastian McKenzie", "name": "Sebastian McKenzie",
"email": "sebmck@gmail.com" "email": "sebmck@gmail.com"
@@ -35,14 +32,16 @@
"bugs": { "bugs": {
"url": "https://github.com/babel/babel/issues" "url": "https://github.com/babel/babel/issues"
}, },
"bundleDependencies": false,
"dependencies": { "dependencies": {
"regenerator-runtime": "^0.13.2" "regenerator-runtime": "^0.13.4"
}, },
"deprecated": false,
"description": "babel's modular runtime helpers", "description": "babel's modular runtime helpers",
"devDependencies": { "devDependencies": {
"@babel/helpers": "^7.7.4" "@babel/helpers": "^7.10.1"
}, },
"gitHead": "12da0941c898987ae30045a9da90ed5bf58ecaf9", "gitHead": "b0350e5b1e86bd2d53b4a25705e39eb380ec65a2",
"homepage": "https://babeljs.io/docs/en/next/babel-runtime", "homepage": "https://babeljs.io/docs/en/next/babel-runtime",
"license": "MIT", "license": "MIT",
"name": "@babel/runtime", "name": "@babel/runtime",
@@ -54,5 +53,5 @@
"url": "git+https://github.com/babel/babel.git", "url": "git+https://github.com/babel/babel.git",
"directory": "packages/babel-runtime" "directory": "packages/babel-runtime"
}, },
"version": "7.7.7" "version": "7.10.2"
} }

View File

@@ -245,12 +245,13 @@ try {
function iterator(self, callback) { function iterator(self, callback) {
var items = []; var items = [];
self.forEach(callback, items); self.forEach(callback, items);
/* istanbul ignore next */
return iterable ? return iterable ?
items[Symbol.iterator]() : items[Symbol.iterator]() :
{ {
next: function() { next: function() {
var value = items.shift(); var value = items.shift();
return {done: value === undefined, value: value}; return {done: value === void 0, value: value};
} }
}; };
} }

View File

@@ -0,0 +1 @@
{"type":"commonjs"}

View File

@@ -245,12 +245,13 @@ try {
function iterator(self, callback) { function iterator(self, callback) {
var items = []; var items = [];
self.forEach(callback, items); self.forEach(callback, items);
/* istanbul ignore next */
return iterable ? return iterable ?
items[Symbol.iterator]() : items[Symbol.iterator]() :
{ {
next: function() { next: function() {
var value = items.shift(); var value = items.shift();
return {done: value === undefined, value: value}; return {done: value === void 0, value: value};
} }
}; };
} }

View File

@@ -245,12 +245,13 @@ try {
function iterator(self, callback) { function iterator(self, callback) {
var items = []; var items = [];
self.forEach(callback, items); self.forEach(callback, items);
/* istanbul ignore next */
return iterable ? return iterable ?
items[Symbol.iterator]() : items[Symbol.iterator]() :
{ {
next: function() { next: function() {
var value = items.shift(); var value = items.shift();
return {done: value === undefined, value: value}; return {done: value === void 0, value: value};
} }
}; };
} }

View File

@@ -1,44 +1,45 @@
{ {
"_args": [ "_from": "@ungap/url-search-params@^0.2.0",
[ "_id": "@ungap/url-search-params@0.2.0",
"@ungap/url-search-params@0.1.4",
"D:\\Projects\\siag\\vanillajs-seed"
]
],
"_from": "@ungap/url-search-params@0.1.4",
"_id": "@ungap/url-search-params@0.1.4",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha512-RLwrxCTDNiNev9hpr9rDq8NyeQ8Nn0X1we4Wu7Tlf368I8r+7hBj3uObhifhuLk74egaYaSX5nUsBlWz6kjj+A==", "_integrity": "sha512-KVPTXfdofx9g/1OnO4js0Sos/ITghfNxw+DHJUyXG+X83KEMyJV+fQ6zyd2jTUwqall/SCJlV7p/HDqJbbF5WQ==",
"_location": "/@ungap/url-search-params", "_location": "/@ungap/url-search-params",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
"type": "version", "type": "range",
"registry": true, "registry": true,
"raw": "@ungap/url-search-params@0.1.4", "raw": "@ungap/url-search-params@^0.2.0",
"name": "@ungap/url-search-params", "name": "@ungap/url-search-params",
"escapedName": "@ungap%2furl-search-params", "escapedName": "@ungap%2furl-search-params",
"scope": "@ungap", "scope": "@ungap",
"rawSpec": "0.1.4", "rawSpec": "^0.2.0",
"saveSpec": null, "saveSpec": null,
"fetchSpec": "0.1.4" "fetchSpec": "^0.2.0"
}, },
"_requiredBy": [ "_requiredBy": [
"/" "/"
], ],
"_resolved": "https://registry.npmjs.org/@ungap/url-search-params/-/url-search-params-0.1.4.tgz", "_resolved": "https://registry.npmjs.org/@ungap/url-search-params/-/url-search-params-0.2.0.tgz",
"_spec": "0.1.4", "_shasum": "8942763e5d31330fcd5a04fdbf1c66a5eb97c20e",
"_where": "D:\\Projects\\siag\\vanillajs-seed", "_spec": "@ungap/url-search-params@^0.2.0",
"_where": "D:\\Projects\\vanillajs-seed",
"author": { "author": {
"name": "Andrea Giammarchi" "name": "Andrea Giammarchi"
}, },
"bugs": { "bugs": {
"url": "https://github.com/ungap/url-search-params/issues" "url": "https://github.com/ungap/url-search-params/issues"
}, },
"bundleDependencies": false,
"deprecated": false,
"description": "The URLSearchParams polyfill.", "description": "The URLSearchParams polyfill.",
"devDependencies": { "devDependencies": {
"coveralls": "^3.0.9", "coveralls": "^3.1.0",
"istanbul": "^0.4.5", "nyc": "^15.0.1",
"uglify-js": "^3.7.0" "uglify-js": "^3.9.1"
},
"exports": {
"import": "./esm/index.js",
"default": "./cjs/index.js"
}, },
"homepage": "https://github.com/ungap/url-search-params#readme", "homepage": "https://github.com/ungap/url-search-params#readme",
"keywords": [ "keywords": [
@@ -47,8 +48,8 @@
"ungap" "ungap"
], ],
"license": "ISC", "license": "ISC",
"main": "cjs/index.js", "main": "./cjs/index.js",
"module": "esm/index.js", "module": "./esm/index.js",
"name": "@ungap/url-search-params", "name": "@ungap/url-search-params",
"repository": { "repository": {
"type": "git", "type": "git",
@@ -57,12 +58,13 @@
"scripts": { "scripts": {
"build": "npm run cjs && npm run esm && npm run min && npm run test && npm run size", "build": "npm run cjs && npm run esm && npm run min && npm run test && npm run size",
"cjs": "cp index.js cjs/ && echo 'module.exports = self.URLSearchParams;' >> cjs/index.js", "cjs": "cp index.js cjs/ && echo 'module.exports = self.URLSearchParams;' >> cjs/index.js",
"coveralls": "cat ./coverage/lcov.info | coveralls", "coveralls": "nyc report --reporter=text-lcov | coveralls",
"esm": "cp index.js esm/ && echo 'export default self.URLSearchParams;' >> esm/index.js", "esm": "cp index.js esm/ && echo 'export default self.URLSearchParams;' >> esm/index.js",
"min": "uglifyjs index.js --support-ie8 --comments=/^!/ -c -m -o min.js", "min": "uglifyjs index.js --support-ie8 --comments=/^!/ -c -m -o min.js",
"size": "cat index.js | wc -c && cat min.js | wc -c && gzip -c9 min.js | wc -c && cat min.js | brotli | wc -c", "size": "cat index.js | wc -c && cat min.js | wc -c && gzip -c9 min.js | wc -c && cat min.js | brotli | wc -c",
"test": "istanbul cover test/index.js" "test": "nyc node test/index.js"
}, },
"type": "module",
"unpkg": "min.js", "unpkg": "min.js",
"version": "0.1.4" "version": "0.2.0"
} }

4
node_modules/abab/package.json generated vendored
View File

@@ -2,7 +2,7 @@
"_args": [ "_args": [
[ [
"abab@2.0.3", "abab@2.0.3",
"D:\\Projects\\siag\\vanillajs-seed" "D:\\Projects\\vanillajs-seed"
] ]
], ],
"_development": true, "_development": true,
@@ -28,7 +28,7 @@
], ],
"_resolved": "https://registry.npmjs.org/abab/-/abab-2.0.3.tgz", "_resolved": "https://registry.npmjs.org/abab/-/abab-2.0.3.tgz",
"_spec": "2.0.3", "_spec": "2.0.3",
"_where": "D:\\Projects\\siag\\vanillajs-seed", "_where": "D:\\Projects\\vanillajs-seed",
"author": { "author": {
"name": "Jeff Carpenter", "name": "Jeff Carpenter",
"email": "gcarpenterv@gmail.com" "email": "gcarpenterv@gmail.com"

View File

@@ -2,7 +2,7 @@
"_args": [ "_args": [
[ [
"acorn-bigint@0.4.0", "acorn-bigint@0.4.0",
"D:\\Projects\\siag\\vanillajs-seed" "D:\\Projects\\vanillajs-seed"
] ]
], ],
"_development": true, "_development": true,
@@ -27,7 +27,7 @@
], ],
"_resolved": "https://registry.npmjs.org/acorn-bigint/-/acorn-bigint-0.4.0.tgz", "_resolved": "https://registry.npmjs.org/acorn-bigint/-/acorn-bigint-0.4.0.tgz",
"_spec": "0.4.0", "_spec": "0.4.0",
"_where": "D:\\Projects\\siag\\vanillajs-seed", "_where": "D:\\Projects\\vanillajs-seed",
"bugs": { "bugs": {
"url": "https://github.com/acornjs/acorn-bigint/issues" "url": "https://github.com/acornjs/acorn-bigint/issues"
}, },

View File

@@ -2,7 +2,7 @@
"_args": [ "_args": [
[ [
"acorn-class-fields@0.3.4", "acorn-class-fields@0.3.4",
"D:\\Projects\\siag\\vanillajs-seed" "D:\\Projects\\vanillajs-seed"
] ]
], ],
"_development": true, "_development": true,
@@ -27,7 +27,7 @@
], ],
"_resolved": "https://registry.npmjs.org/acorn-class-fields/-/acorn-class-fields-0.3.4.tgz", "_resolved": "https://registry.npmjs.org/acorn-class-fields/-/acorn-class-fields-0.3.4.tgz",
"_spec": "0.3.4", "_spec": "0.3.4",
"_where": "D:\\Projects\\siag\\vanillajs-seed", "_where": "D:\\Projects\\vanillajs-seed",
"bugs": { "bugs": {
"url": "https://github.com/acornjs/acorn-class-fields/issues" "url": "https://github.com/acornjs/acorn-class-fields/issues"
}, },

View File

@@ -2,7 +2,7 @@
"_args": [ "_args": [
[ [
"acorn-dynamic-import@4.0.0", "acorn-dynamic-import@4.0.0",
"D:\\Projects\\siag\\vanillajs-seed" "D:\\Projects\\vanillajs-seed"
] ]
], ],
"_development": true, "_development": true,
@@ -28,7 +28,7 @@
], ],
"_resolved": "https://registry.npmjs.org/acorn-dynamic-import/-/acorn-dynamic-import-4.0.0.tgz", "_resolved": "https://registry.npmjs.org/acorn-dynamic-import/-/acorn-dynamic-import-4.0.0.tgz",
"_spec": "4.0.0", "_spec": "4.0.0",
"_where": "D:\\Projects\\siag\\vanillajs-seed", "_where": "D:\\Projects\\vanillajs-seed",
"author": { "author": {
"name": "Jordan Gensler", "name": "Jordan Gensler",
"email": "jordangens@gmail.com" "email": "jordangens@gmail.com"

View File

@@ -2,7 +2,7 @@
"_args": [ "_args": [
[ [
"acorn-export-ns-from@0.1.0", "acorn-export-ns-from@0.1.0",
"D:\\Projects\\siag\\vanillajs-seed" "D:\\Projects\\vanillajs-seed"
] ]
], ],
"_development": true, "_development": true,
@@ -27,7 +27,7 @@
], ],
"_resolved": "https://registry.npmjs.org/acorn-export-ns-from/-/acorn-export-ns-from-0.1.0.tgz", "_resolved": "https://registry.npmjs.org/acorn-export-ns-from/-/acorn-export-ns-from-0.1.0.tgz",
"_spec": "0.1.0", "_spec": "0.1.0",
"_where": "D:\\Projects\\siag\\vanillajs-seed", "_where": "D:\\Projects\\vanillajs-seed",
"bugs": { "bugs": {
"url": "https://github.com/acornjs/acorn-export-ns-from/issues" "url": "https://github.com/acornjs/acorn-export-ns-from/issues"
}, },

View File

@@ -2,7 +2,7 @@
"_args": [ "_args": [
[ [
"acorn-globals@4.3.4", "acorn-globals@4.3.4",
"D:\\Projects\\siag\\vanillajs-seed" "D:\\Projects\\vanillajs-seed"
] ]
], ],
"_development": true, "_development": true,
@@ -27,7 +27,7 @@
], ],
"_resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-4.3.4.tgz", "_resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-4.3.4.tgz",
"_spec": "4.3.4", "_spec": "4.3.4",
"_where": "D:\\Projects\\siag\\vanillajs-seed", "_where": "D:\\Projects\\vanillajs-seed",
"author": { "author": {
"name": "ForbesLindesay" "name": "ForbesLindesay"
}, },

View File

@@ -2,7 +2,7 @@
"_args": [ "_args": [
[ [
"acorn-import-meta@1.1.0", "acorn-import-meta@1.1.0",
"D:\\Projects\\siag\\vanillajs-seed" "D:\\Projects\\vanillajs-seed"
] ]
], ],
"_development": true, "_development": true,
@@ -27,7 +27,7 @@
], ],
"_resolved": "https://registry.npmjs.org/acorn-import-meta/-/acorn-import-meta-1.1.0.tgz", "_resolved": "https://registry.npmjs.org/acorn-import-meta/-/acorn-import-meta-1.1.0.tgz",
"_spec": "1.1.0", "_spec": "1.1.0",
"_where": "D:\\Projects\\siag\\vanillajs-seed", "_where": "D:\\Projects\\vanillajs-seed",
"bugs": { "bugs": {
"url": "https://github.com/adrianheine/acorn-import-meta/issues" "url": "https://github.com/adrianheine/acorn-import-meta/issues"
}, },

View File

@@ -2,7 +2,7 @@
"_args": [ "_args": [
[ [
"acorn-jsx@5.2.0", "acorn-jsx@5.2.0",
"D:\\Projects\\siag\\vanillajs-seed" "D:\\Projects\\vanillajs-seed"
] ]
], ],
"_development": true, "_development": true,
@@ -27,7 +27,7 @@
], ],
"_resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.2.0.tgz", "_resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.2.0.tgz",
"_spec": "5.2.0", "_spec": "5.2.0",
"_where": "D:\\Projects\\siag\\vanillajs-seed", "_where": "D:\\Projects\\vanillajs-seed",
"bugs": { "bugs": {
"url": "https://github.com/acornjs/acorn-jsx/issues" "url": "https://github.com/acornjs/acorn-jsx/issues"
}, },

View File

@@ -2,7 +2,7 @@
"_args": [ "_args": [
[ [
"acorn-logical-assignment@0.1.0", "acorn-logical-assignment@0.1.0",
"D:\\Projects\\siag\\vanillajs-seed" "D:\\Projects\\vanillajs-seed"
] ]
], ],
"_development": true, "_development": true,
@@ -27,7 +27,7 @@
], ],
"_resolved": "https://registry.npmjs.org/acorn-logical-assignment/-/acorn-logical-assignment-0.1.0.tgz", "_resolved": "https://registry.npmjs.org/acorn-logical-assignment/-/acorn-logical-assignment-0.1.0.tgz",
"_spec": "0.1.0", "_spec": "0.1.0",
"_where": "D:\\Projects\\siag\\vanillajs-seed", "_where": "D:\\Projects\\vanillajs-seed",
"author": { "author": {
"name": "Adrian Heine", "name": "Adrian Heine",
"email": "mail@adrianheine.de" "email": "mail@adrianheine.de"

View File

@@ -2,7 +2,7 @@
"_args": [ "_args": [
[ [
"acorn-numeric-separator@0.3.2", "acorn-numeric-separator@0.3.2",
"D:\\Projects\\siag\\vanillajs-seed" "D:\\Projects\\vanillajs-seed"
] ]
], ],
"_development": true, "_development": true,
@@ -27,7 +27,7 @@
], ],
"_resolved": "https://registry.npmjs.org/acorn-numeric-separator/-/acorn-numeric-separator-0.3.2.tgz", "_resolved": "https://registry.npmjs.org/acorn-numeric-separator/-/acorn-numeric-separator-0.3.2.tgz",
"_spec": "0.3.2", "_spec": "0.3.2",
"_where": "D:\\Projects\\siag\\vanillajs-seed", "_where": "D:\\Projects\\vanillajs-seed",
"bugs": { "bugs": {
"url": "https://github.com/acornjs/acorn-numeric-separator/issues" "url": "https://github.com/acornjs/acorn-numeric-separator/issues"
}, },

View File

@@ -2,7 +2,7 @@
"_args": [ "_args": [
[ [
"acorn-private-class-elements@0.2.5", "acorn-private-class-elements@0.2.5",
"D:\\Projects\\siag\\vanillajs-seed" "D:\\Projects\\vanillajs-seed"
] ]
], ],
"_development": true, "_development": true,
@@ -29,7 +29,7 @@
], ],
"_resolved": "https://registry.npmjs.org/acorn-private-class-elements/-/acorn-private-class-elements-0.2.5.tgz", "_resolved": "https://registry.npmjs.org/acorn-private-class-elements/-/acorn-private-class-elements-0.2.5.tgz",
"_spec": "0.2.5", "_spec": "0.2.5",
"_where": "D:\\Projects\\siag\\vanillajs-seed", "_where": "D:\\Projects\\vanillajs-seed",
"bugs": { "bugs": {
"url": "https://github.com/acornjs/acorn-private-class-elements/issues" "url": "https://github.com/acornjs/acorn-private-class-elements/issues"
}, },

View File

@@ -2,7 +2,7 @@
"_args": [ "_args": [
[ [
"acorn-private-methods@0.3.1", "acorn-private-methods@0.3.1",
"D:\\Projects\\siag\\vanillajs-seed" "D:\\Projects\\vanillajs-seed"
] ]
], ],
"_development": true, "_development": true,
@@ -27,7 +27,7 @@
], ],
"_resolved": "https://registry.npmjs.org/acorn-private-methods/-/acorn-private-methods-0.3.1.tgz", "_resolved": "https://registry.npmjs.org/acorn-private-methods/-/acorn-private-methods-0.3.1.tgz",
"_spec": "0.3.1", "_spec": "0.3.1",
"_where": "D:\\Projects\\siag\\vanillajs-seed", "_where": "D:\\Projects\\vanillajs-seed",
"bugs": { "bugs": {
"url": "https://github.com/acornjs/acorn-private-methods/issues" "url": "https://github.com/acornjs/acorn-private-methods/issues"
}, },

View File

@@ -2,7 +2,7 @@
"_args": [ "_args": [
[ [
"acorn-stage3@2.1.0", "acorn-stage3@2.1.0",
"D:\\Projects\\siag\\vanillajs-seed" "D:\\Projects\\vanillajs-seed"
] ]
], ],
"_development": true, "_development": true,
@@ -27,7 +27,7 @@
], ],
"_resolved": "https://registry.npmjs.org/acorn-stage3/-/acorn-stage3-2.1.0.tgz", "_resolved": "https://registry.npmjs.org/acorn-stage3/-/acorn-stage3-2.1.0.tgz",
"_spec": "2.1.0", "_spec": "2.1.0",
"_where": "D:\\Projects\\siag\\vanillajs-seed", "_where": "D:\\Projects\\vanillajs-seed",
"bugs": { "bugs": {
"url": "https://github.com/acornjs/acorn-stage3/issues" "url": "https://github.com/acornjs/acorn-stage3/issues"
}, },

View File

@@ -2,7 +2,7 @@
"_args": [ "_args": [
[ [
"acorn-static-class-features@0.2.2", "acorn-static-class-features@0.2.2",
"D:\\Projects\\siag\\vanillajs-seed" "D:\\Projects\\vanillajs-seed"
] ]
], ],
"_development": true, "_development": true,
@@ -27,7 +27,7 @@
], ],
"_resolved": "https://registry.npmjs.org/acorn-static-class-features/-/acorn-static-class-features-0.2.2.tgz", "_resolved": "https://registry.npmjs.org/acorn-static-class-features/-/acorn-static-class-features-0.2.2.tgz",
"_spec": "0.2.2", "_spec": "0.2.2",
"_where": "D:\\Projects\\siag\\vanillajs-seed", "_where": "D:\\Projects\\vanillajs-seed",
"bugs": { "bugs": {
"url": "https://github.com/acornjs/acorn-static-class-features/issues" "url": "https://github.com/acornjs/acorn-static-class-features/issues"
}, },

View File

@@ -2,7 +2,7 @@
"_args": [ "_args": [
[ [
"acorn-walk@6.2.0", "acorn-walk@6.2.0",
"D:\\Projects\\siag\\vanillajs-seed" "D:\\Projects\\vanillajs-seed"
] ]
], ],
"_development": true, "_development": true,
@@ -28,7 +28,7 @@
], ],
"_resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-6.2.0.tgz", "_resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-6.2.0.tgz",
"_spec": "6.2.0", "_spec": "6.2.0",
"_where": "D:\\Projects\\siag\\vanillajs-seed", "_where": "D:\\Projects\\vanillajs-seed",
"bugs": { "bugs": {
"url": "https://github.com/acornjs/acorn/issues" "url": "https://github.com/acornjs/acorn/issues"
}, },

14
node_modules/acorn/package.json generated vendored
View File

@@ -1,4 +1,11 @@
{ {
"_args": [
[
"acorn@6.4.1",
"D:\\Projects\\vanillajs-seed"
]
],
"_development": true,
"_from": "acorn@6.4.1", "_from": "acorn@6.4.1",
"_id": "acorn@6.4.1", "_id": "acorn@6.4.1",
"_inBundle": false, "_inBundle": false,
@@ -21,17 +28,14 @@
"/jsdom" "/jsdom"
], ],
"_resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.1.tgz", "_resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.1.tgz",
"_shasum": "531e58ba3f51b9dacb9a6646ca4debf5b14ca474", "_spec": "6.4.1",
"_spec": "acorn@6.4.1", "_where": "D:\\Projects\\vanillajs-seed",
"_where": "D:\\Projects\\siag\\vanillajs-seed\\node_modules\\acorn-globals",
"bin": { "bin": {
"acorn": "bin/acorn" "acorn": "bin/acorn"
}, },
"bugs": { "bugs": {
"url": "https://github.com/acornjs/acorn/issues" "url": "https://github.com/acornjs/acorn/issues"
}, },
"bundleDependencies": false,
"deprecated": false,
"description": "ECMAScript parser", "description": "ECMAScript parser",
"engines": { "engines": {
"node": ">=0.4.0" "node": ">=0.4.0"

24
node_modules/ajv/package.json generated vendored
View File

@@ -1,34 +1,39 @@
{ {
"_from": "ajv@^6.5.5", "_args": [
[
"ajv@6.12.2",
"D:\\Projects\\vanillajs-seed"
]
],
"_development": true,
"_from": "ajv@6.12.2",
"_id": "ajv@6.12.2", "_id": "ajv@6.12.2",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha512-k+V+hzjm5q/Mr8ef/1Y9goCmlsK4I6Sm74teeyGvFk1XrOsbsKLjEdrvny42CZ+a8sXbk8KWpY/bDwS+FLL2UQ==", "_integrity": "sha512-k+V+hzjm5q/Mr8ef/1Y9goCmlsK4I6Sm74teeyGvFk1XrOsbsKLjEdrvny42CZ+a8sXbk8KWpY/bDwS+FLL2UQ==",
"_location": "/ajv", "_location": "/ajv",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
"type": "range", "type": "version",
"registry": true, "registry": true,
"raw": "ajv@^6.5.5", "raw": "ajv@6.12.2",
"name": "ajv", "name": "ajv",
"escapedName": "ajv", "escapedName": "ajv",
"rawSpec": "^6.5.5", "rawSpec": "6.12.2",
"saveSpec": null, "saveSpec": null,
"fetchSpec": "^6.5.5" "fetchSpec": "6.12.2"
}, },
"_requiredBy": [ "_requiredBy": [
"/har-validator" "/har-validator"
], ],
"_resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.2.tgz", "_resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.2.tgz",
"_shasum": "c629c5eced17baf314437918d2da88c99d5958cd", "_spec": "6.12.2",
"_spec": "ajv@^6.5.5", "_where": "D:\\Projects\\vanillajs-seed",
"_where": "D:\\Projects\\siag\\vanillajs-seed\\node_modules\\har-validator",
"author": { "author": {
"name": "Evgeny Poberezkin" "name": "Evgeny Poberezkin"
}, },
"bugs": { "bugs": {
"url": "https://github.com/epoberezkin/ajv/issues" "url": "https://github.com/epoberezkin/ajv/issues"
}, },
"bundleDependencies": false,
"collective": { "collective": {
"type": "opencollective", "type": "opencollective",
"url": "https://opencollective.com/ajv" "url": "https://opencollective.com/ajv"
@@ -39,7 +44,6 @@
"json-schema-traverse": "^0.4.1", "json-schema-traverse": "^0.4.1",
"uri-js": "^4.2.2" "uri-js": "^4.2.2"
}, },
"deprecated": false,
"description": "Another JSON Schema Validator", "description": "Another JSON Schema Validator",
"devDependencies": { "devDependencies": {
"ajv-async": "^1.0.0", "ajv-async": "^1.0.0",

View File

@@ -2,7 +2,7 @@
"_args": [ "_args": [
[ [
"ansi-styles@3.2.1", "ansi-styles@3.2.1",
"D:\\Projects\\siag\\vanillajs-seed" "D:\\Projects\\vanillajs-seed"
] ]
], ],
"_development": true, "_development": true,
@@ -27,7 +27,7 @@
], ],
"_resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", "_resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
"_spec": "3.2.1", "_spec": "3.2.1",
"_where": "D:\\Projects\\siag\\vanillajs-seed", "_where": "D:\\Projects\\vanillajs-seed",
"author": { "author": {
"name": "Sindre Sorhus", "name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com", "email": "sindresorhus@gmail.com",

View File

@@ -2,7 +2,7 @@
"_args": [ "_args": [
[ [
"append-buffer@1.0.2", "append-buffer@1.0.2",
"D:\\Projects\\siag\\vanillajs-seed" "D:\\Projects\\vanillajs-seed"
] ]
], ],
"_development": true, "_development": true,
@@ -27,7 +27,7 @@
], ],
"_resolved": "https://registry.npmjs.org/append-buffer/-/append-buffer-1.0.2.tgz", "_resolved": "https://registry.npmjs.org/append-buffer/-/append-buffer-1.0.2.tgz",
"_spec": "1.0.2", "_spec": "1.0.2",
"_where": "D:\\Projects\\siag\\vanillajs-seed", "_where": "D:\\Projects\\vanillajs-seed",
"author": { "author": {
"name": "Brian Woodward", "name": "Brian Woodward",
"url": "https://doowb.com" "url": "https://doowb.com"

View File

@@ -2,7 +2,7 @@
"_args": [ "_args": [
[ [
"array-equal@1.0.0", "array-equal@1.0.0",
"D:\\Projects\\siag\\vanillajs-seed" "D:\\Projects\\vanillajs-seed"
] ]
], ],
"_development": true, "_development": true,
@@ -27,7 +27,7 @@
], ],
"_resolved": "https://registry.npmjs.org/array-equal/-/array-equal-1.0.0.tgz", "_resolved": "https://registry.npmjs.org/array-equal/-/array-equal-1.0.0.tgz",
"_spec": "1.0.0", "_spec": "1.0.0",
"_where": "D:\\Projects\\siag\\vanillajs-seed", "_where": "D:\\Projects\\vanillajs-seed",
"author": { "author": {
"name": "Jonathan Ong", "name": "Jonathan Ong",
"email": "me@jongleberry.com", "email": "me@jongleberry.com",

4
node_modules/asn1/package.json generated vendored
View File

@@ -2,7 +2,7 @@
"_args": [ "_args": [
[ [
"asn1@0.2.4", "asn1@0.2.4",
"D:\\Projects\\siag\\vanillajs-seed" "D:\\Projects\\vanillajs-seed"
] ]
], ],
"_development": true, "_development": true,
@@ -27,7 +27,7 @@
], ],
"_resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", "_resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz",
"_spec": "0.2.4", "_spec": "0.2.4",
"_where": "D:\\Projects\\siag\\vanillajs-seed", "_where": "D:\\Projects\\vanillajs-seed",
"author": { "author": {
"name": "Joyent", "name": "Joyent",
"url": "joyent.com" "url": "joyent.com"

View File

@@ -2,7 +2,7 @@
"_args": [ "_args": [
[ [
"assert-plus@1.0.0", "assert-plus@1.0.0",
"D:\\Projects\\siag\\vanillajs-seed" "D:\\Projects\\vanillajs-seed"
] ]
], ],
"_development": true, "_development": true,
@@ -32,7 +32,7 @@
], ],
"_resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", "_resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
"_spec": "1.0.0", "_spec": "1.0.0",
"_where": "D:\\Projects\\siag\\vanillajs-seed", "_where": "D:\\Projects\\vanillajs-seed",
"author": { "author": {
"name": "Mark Cavage", "name": "Mark Cavage",
"email": "mcavage@gmail.com" "email": "mcavage@gmail.com"

View File

@@ -2,7 +2,7 @@
"_args": [ "_args": [
[ [
"async-limiter@1.0.1", "async-limiter@1.0.1",
"D:\\Projects\\siag\\vanillajs-seed" "D:\\Projects\\vanillajs-seed"
] ]
], ],
"_development": true, "_development": true,
@@ -27,7 +27,7 @@
], ],
"_resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", "_resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz",
"_spec": "1.0.1", "_spec": "1.0.1",
"_where": "D:\\Projects\\siag\\vanillajs-seed", "_where": "D:\\Projects\\vanillajs-seed",
"author": { "author": {
"name": "Samuel Reed" "name": "Samuel Reed"
}, },

5
node_modules/async/.travis.yml generated vendored Normal file
View File

@@ -0,0 +1,5 @@
language: node_js
node_js:
- "0.10"
- "0.12"
- "iojs"

19
node_modules/async/LICENSE generated vendored Normal file
View File

@@ -0,0 +1,19 @@
Copyright (c) 2010-2014 Caolan McMahon
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.

1647
node_modules/async/README.md generated vendored Normal file

File diff suppressed because it is too large Load Diff

38
node_modules/async/bower.json generated vendored Normal file
View File

@@ -0,0 +1,38 @@
{
"name": "async",
"description": "Higher-order functions and common patterns for asynchronous code",
"version": "0.9.2",
"main": "lib/async.js",
"keywords": [
"async",
"callback",
"utility",
"module"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/caolan/async.git"
},
"devDependencies": {
"nodeunit": ">0.0.0",
"uglify-js": "1.2.x",
"nodelint": ">0.0.0",
"lodash": ">=2.4.1"
},
"moduleType": [
"amd",
"globals",
"node"
],
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
],
"authors": [
"Caolan McMahon"
]
}

16
node_modules/async/component.json generated vendored Normal file
View File

@@ -0,0 +1,16 @@
{
"name": "async",
"description": "Higher-order functions and common patterns for asynchronous code",
"version": "0.9.2",
"keywords": [
"async",
"callback",
"utility",
"module"
],
"license": "MIT",
"repository": "caolan/async",
"scripts": [
"lib/async.js"
]
}

1123
node_modules/async/lib/async.js generated vendored Normal file

File diff suppressed because it is too large Load Diff

82
node_modules/async/package.json generated vendored Normal file
View File

@@ -0,0 +1,82 @@
{
"_from": "async@0.9.x",
"_id": "async@0.9.2",
"_inBundle": false,
"_integrity": "sha1-rqdNXmHB+JlhO/ZL2mbUx48v0X0=",
"_location": "/async",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "async@0.9.x",
"name": "async",
"escapedName": "async",
"rawSpec": "0.9.x",
"saveSpec": null,
"fetchSpec": "0.9.x"
},
"_requiredBy": [
"/jake"
],
"_resolved": "https://registry.npmjs.org/async/-/async-0.9.2.tgz",
"_shasum": "aea74d5e61c1f899613bf64bda66d4c78f2fd17d",
"_spec": "async@0.9.x",
"_where": "D:\\Projects\\vanillajs-seed\\node_modules\\jake",
"author": {
"name": "Caolan McMahon"
},
"bugs": {
"url": "https://github.com/caolan/async/issues"
},
"bundleDependencies": false,
"deprecated": false,
"description": "Higher-order functions and common patterns for asynchronous code",
"devDependencies": {
"lodash": ">=2.4.1",
"nodelint": ">0.0.0",
"nodeunit": ">0.0.0",
"uglify-js": "1.2.x"
},
"homepage": "https://github.com/caolan/async#readme",
"jam": {
"main": "lib/async.js",
"include": [
"lib/async.js",
"README.md",
"LICENSE"
],
"categories": [
"Utilities"
]
},
"keywords": [
"async",
"callback",
"utility",
"module"
],
"license": "MIT",
"main": "lib/async.js",
"name": "async",
"repository": {
"type": "git",
"url": "git+https://github.com/caolan/async.git"
},
"scripts": {
"test": "nodeunit test/test-async.js"
},
"spm": {
"main": "lib/async.js"
},
"version": "0.9.2",
"volo": {
"main": "lib/async.js",
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
]
}
}

53
node_modules/async/support/sync-package-managers.js generated vendored Normal file
View File

@@ -0,0 +1,53 @@
#!/usr/bin/env node
// This should probably be its own module but complaints about bower/etc.
// support keep coming up and I'd rather just enable the workflow here for now
// and figure out where this should live later. -- @beaugunderson
var fs = require('fs');
var _ = require('lodash');
var packageJson = require('../package.json');
var IGNORES = ['**/.*', 'node_modules', 'bower_components', 'test', 'tests'];
var INCLUDES = ['lib/async.js', 'README.md', 'LICENSE'];
var REPOSITORY_NAME = 'caolan/async';
packageJson.jam = {
main: packageJson.main,
include: INCLUDES,
categories: ['Utilities']
};
packageJson.spm = {
main: packageJson.main
};
packageJson.volo = {
main: packageJson.main,
ignore: IGNORES
};
var bowerSpecific = {
moduleType: ['amd', 'globals', 'node'],
ignore: IGNORES,
authors: [packageJson.author]
};
var bowerInclude = ['name', 'description', 'version', 'main', 'keywords',
'license', 'homepage', 'repository', 'devDependencies'];
var componentSpecific = {
repository: REPOSITORY_NAME,
scripts: [packageJson.main]
};
var componentInclude = ['name', 'description', 'version', 'keywords',
'license'];
var bowerJson = _.merge({}, _.pick(packageJson, bowerInclude), bowerSpecific);
var componentJson = _.merge({}, _.pick(packageJson, componentInclude), componentSpecific);
fs.writeFileSync('./bower.json', JSON.stringify(bowerJson, null, 2));
fs.writeFileSync('./component.json', JSON.stringify(componentJson, null, 2));
fs.writeFileSync('./package.json', JSON.stringify(packageJson, null, 2));

4
node_modules/asynckit/package.json generated vendored
View File

@@ -2,7 +2,7 @@
"_args": [ "_args": [
[ [
"asynckit@0.4.0", "asynckit@0.4.0",
"D:\\Projects\\siag\\vanillajs-seed" "D:\\Projects\\vanillajs-seed"
] ]
], ],
"_development": true, "_development": true,
@@ -27,7 +27,7 @@
], ],
"_resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", "_resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
"_spec": "0.4.0", "_spec": "0.4.0",
"_where": "D:\\Projects\\siag\\vanillajs-seed", "_where": "D:\\Projects\\vanillajs-seed",
"author": { "author": {
"name": "Alex Indigo", "name": "Alex Indigo",
"email": "iam@alexindigo.com" "email": "iam@alexindigo.com"

View File

@@ -2,7 +2,7 @@
"_args": [ "_args": [
[ [
"aws-sign2@0.7.0", "aws-sign2@0.7.0",
"D:\\Projects\\siag\\vanillajs-seed" "D:\\Projects\\vanillajs-seed"
] ]
], ],
"_development": true, "_development": true,
@@ -27,7 +27,7 @@
], ],
"_resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", "_resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz",
"_spec": "0.7.0", "_spec": "0.7.0",
"_where": "D:\\Projects\\siag\\vanillajs-seed", "_where": "D:\\Projects\\vanillajs-seed",
"author": { "author": {
"name": "Mikeal Rogers", "name": "Mikeal Rogers",
"email": "mikeal.rogers@gmail.com", "email": "mikeal.rogers@gmail.com",

24
node_modules/aws4/package.json generated vendored
View File

@@ -1,27 +1,33 @@
{ {
"_from": "aws4@^1.8.0", "_args": [
[
"aws4@1.10.0",
"D:\\Projects\\vanillajs-seed"
]
],
"_development": true,
"_from": "aws4@1.10.0",
"_id": "aws4@1.10.0", "_id": "aws4@1.10.0",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha512-3YDiu347mtVtjpyV3u5kVqQLP242c06zwDOgpeRnybmXlYYsLbtTrUBUm8i8srONt+FWobl5aibnU1030PeeuA==", "_integrity": "sha512-3YDiu347mtVtjpyV3u5kVqQLP242c06zwDOgpeRnybmXlYYsLbtTrUBUm8i8srONt+FWobl5aibnU1030PeeuA==",
"_location": "/aws4", "_location": "/aws4",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
"type": "range", "type": "version",
"registry": true, "registry": true,
"raw": "aws4@^1.8.0", "raw": "aws4@1.10.0",
"name": "aws4", "name": "aws4",
"escapedName": "aws4", "escapedName": "aws4",
"rawSpec": "^1.8.0", "rawSpec": "1.10.0",
"saveSpec": null, "saveSpec": null,
"fetchSpec": "^1.8.0" "fetchSpec": "1.10.0"
}, },
"_requiredBy": [ "_requiredBy": [
"/request" "/request"
], ],
"_resolved": "https://registry.npmjs.org/aws4/-/aws4-1.10.0.tgz", "_resolved": "https://registry.npmjs.org/aws4/-/aws4-1.10.0.tgz",
"_shasum": "a17b3a8ea811060e74d47d306122400ad4497ae2", "_spec": "1.10.0",
"_spec": "aws4@^1.8.0", "_where": "D:\\Projects\\vanillajs-seed",
"_where": "D:\\Projects\\siag\\vanillajs-seed\\node_modules\\request",
"author": { "author": {
"name": "Michael Hart", "name": "Michael Hart",
"email": "michael.hart.au@gmail.com", "email": "michael.hart.au@gmail.com",
@@ -30,8 +36,6 @@
"bugs": { "bugs": {
"url": "https://github.com/mhart/aws4/issues" "url": "https://github.com/mhart/aws4/issues"
}, },
"bundleDependencies": false,
"deprecated": false,
"description": "Signs and prepares requests using AWS Signature Version 4", "description": "Signs and prepares requests using AWS Signature Version 4",
"devDependencies": { "devDependencies": {
"mocha": "^7.1.2", "mocha": "^7.1.2",

View File

@@ -2,7 +2,7 @@
"_args": [ "_args": [
[ [
"balanced-match@1.0.0", "balanced-match@1.0.0",
"D:\\Projects\\siag\\vanillajs-seed" "D:\\Projects\\vanillajs-seed"
] ]
], ],
"_development": true, "_development": true,
@@ -27,7 +27,7 @@
], ],
"_resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", "_resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz",
"_spec": "1.0.0", "_spec": "1.0.0",
"_where": "D:\\Projects\\siag\\vanillajs-seed", "_where": "D:\\Projects\\vanillajs-seed",
"author": { "author": {
"name": "Julian Gruber", "name": "Julian Gruber",
"email": "mail@juliangruber.com", "email": "mail@juliangruber.com",

View File

@@ -2,7 +2,7 @@
"_args": [ "_args": [
[ [
"bcrypt-pbkdf@1.0.2", "bcrypt-pbkdf@1.0.2",
"D:\\Projects\\siag\\vanillajs-seed" "D:\\Projects\\vanillajs-seed"
] ]
], ],
"_development": true, "_development": true,
@@ -27,7 +27,7 @@
], ],
"_resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", "_resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz",
"_spec": "1.0.2", "_spec": "1.0.2",
"_where": "D:\\Projects\\siag\\vanillajs-seed", "_where": "D:\\Projects\\vanillajs-seed",
"bugs": { "bugs": {
"url": "https://github.com/joyent/node-bcrypt-pbkdf/issues" "url": "https://github.com/joyent/node-bcrypt-pbkdf/issues"
}, },

14
node_modules/bootstrap/package.json generated vendored
View File

@@ -1,4 +1,10 @@
{ {
"_args": [
[
"bootstrap@4.5.0",
"D:\\Projects\\vanillajs-seed"
]
],
"_from": "bootstrap@4.5.0", "_from": "bootstrap@4.5.0",
"_id": "bootstrap@4.5.0", "_id": "bootstrap@4.5.0",
"_inBundle": false, "_inBundle": false,
@@ -16,13 +22,11 @@
"fetchSpec": "4.5.0" "fetchSpec": "4.5.0"
}, },
"_requiredBy": [ "_requiredBy": [
"#USER",
"/" "/"
], ],
"_resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-4.5.0.tgz", "_resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-4.5.0.tgz",
"_shasum": "97d9dbcb5a8972f8722c9962483543b907d9b9ec", "_spec": "4.5.0",
"_spec": "bootstrap@4.5.0", "_where": "D:\\Projects\\vanillajs-seed",
"_where": "D:\\Projects\\siag\\vanillajs-seed",
"author": { "author": {
"name": "The Bootstrap Authors", "name": "The Bootstrap Authors",
"url": "https://github.com/twbs/bootstrap/graphs/contributors" "url": "https://github.com/twbs/bootstrap/graphs/contributors"
@@ -30,14 +34,12 @@
"bugs": { "bugs": {
"url": "https://github.com/twbs/bootstrap/issues" "url": "https://github.com/twbs/bootstrap/issues"
}, },
"bundleDependencies": false,
"contributors": [ "contributors": [
{ {
"name": "Twitter, Inc." "name": "Twitter, Inc."
} }
], ],
"dependencies": {}, "dependencies": {},
"deprecated": false,
"description": "The most popular front-end framework for developing responsive, mobile first projects on the web.", "description": "The most popular front-end framework for developing responsive, mobile first projects on the web.",
"devDependencies": { "devDependencies": {
"@babel/cli": "^7.8.4", "@babel/cli": "^7.8.4",

View File

@@ -2,7 +2,7 @@
"_args": [ "_args": [
[ [
"brace-expansion@1.1.11", "brace-expansion@1.1.11",
"D:\\Projects\\siag\\vanillajs-seed" "D:\\Projects\\vanillajs-seed"
] ]
], ],
"_development": true, "_development": true,
@@ -27,7 +27,7 @@
], ],
"_resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", "_resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
"_spec": "1.1.11", "_spec": "1.1.11",
"_where": "D:\\Projects\\siag\\vanillajs-seed", "_where": "D:\\Projects\\vanillajs-seed",
"author": { "author": {
"name": "Julian Gruber", "name": "Julian Gruber",
"email": "mail@juliangruber.com", "email": "mail@juliangruber.com",

View File

@@ -1,35 +1,39 @@
{ {
"_from": "browser-process-hrtime@^1.0.0", "_args": [
[
"browser-process-hrtime@1.0.0",
"D:\\Projects\\vanillajs-seed"
]
],
"_development": true,
"_from": "browser-process-hrtime@1.0.0",
"_id": "browser-process-hrtime@1.0.0", "_id": "browser-process-hrtime@1.0.0",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==", "_integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==",
"_location": "/browser-process-hrtime", "_location": "/browser-process-hrtime",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
"type": "range", "type": "version",
"registry": true, "registry": true,
"raw": "browser-process-hrtime@^1.0.0", "raw": "browser-process-hrtime@1.0.0",
"name": "browser-process-hrtime", "name": "browser-process-hrtime",
"escapedName": "browser-process-hrtime", "escapedName": "browser-process-hrtime",
"rawSpec": "^1.0.0", "rawSpec": "1.0.0",
"saveSpec": null, "saveSpec": null,
"fetchSpec": "^1.0.0" "fetchSpec": "1.0.0"
}, },
"_requiredBy": [ "_requiredBy": [
"/w3c-hr-time" "/w3c-hr-time"
], ],
"_resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", "_resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz",
"_shasum": "3c9b4b7d782c8121e56f10106d84c0d0ffc94626", "_spec": "1.0.0",
"_spec": "browser-process-hrtime@^1.0.0", "_where": "D:\\Projects\\vanillajs-seed",
"_where": "D:\\Projects\\siag\\vanillajs-seed\\node_modules\\w3c-hr-time",
"author": { "author": {
"name": "kumavis" "name": "kumavis"
}, },
"bugs": { "bugs": {
"url": "https://github.com/kumavis/browser-process-hrtime/issues" "url": "https://github.com/kumavis/browser-process-hrtime/issues"
}, },
"bundleDependencies": false,
"deprecated": false,
"description": "Shim for process.hrtime in the browser", "description": "Shim for process.hrtime in the browser",
"homepage": "https://github.com/kumavis/browser-process-hrtime#readme", "homepage": "https://github.com/kumavis/browser-process-hrtime#readme",
"license": "BSD-2-Clause", "license": "BSD-2-Clause",

View File

@@ -2,7 +2,7 @@
"_args": [ "_args": [
[ [
"buffer-equal@1.0.0", "buffer-equal@1.0.0",
"D:\\Projects\\siag\\vanillajs-seed" "D:\\Projects\\vanillajs-seed"
] ]
], ],
"_development": true, "_development": true,
@@ -27,7 +27,7 @@
], ],
"_resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-1.0.0.tgz", "_resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-1.0.0.tgz",
"_spec": "1.0.0", "_spec": "1.0.0",
"_where": "D:\\Projects\\siag\\vanillajs-seed", "_where": "D:\\Projects\\vanillajs-seed",
"author": { "author": {
"name": "James Halliday", "name": "James Halliday",
"email": "mail@substack.net", "email": "mail@substack.net",

View File

@@ -2,7 +2,7 @@
"_args": [ "_args": [
[ [
"buffer-from@1.1.1", "buffer-from@1.1.1",
"D:\\Projects\\siag\\vanillajs-seed" "D:\\Projects\\vanillajs-seed"
] ]
], ],
"_development": true, "_development": true,
@@ -27,7 +27,7 @@
], ],
"_resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", "_resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz",
"_spec": "1.1.1", "_spec": "1.1.1",
"_where": "D:\\Projects\\siag\\vanillajs-seed", "_where": "D:\\Projects\\vanillajs-seed",
"bugs": { "bugs": {
"url": "https://github.com/LinusU/buffer-from/issues" "url": "https://github.com/LinusU/buffer-from/issues"
}, },

View File

@@ -2,7 +2,7 @@
"_args": [ "_args": [
[ [
"camel-case@3.0.0", "camel-case@3.0.0",
"D:\\Projects\\siag\\vanillajs-seed" "D:\\Projects\\vanillajs-seed"
] ]
], ],
"_development": true, "_development": true,
@@ -27,7 +27,7 @@
], ],
"_resolved": "https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz", "_resolved": "https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz",
"_spec": "3.0.0", "_spec": "3.0.0",
"_where": "D:\\Projects\\siag\\vanillajs-seed", "_where": "D:\\Projects\\vanillajs-seed",
"author": { "author": {
"name": "Blake Embrey", "name": "Blake Embrey",
"email": "hello@blakeembrey.com", "email": "hello@blakeembrey.com",

4
node_modules/caseless/package.json generated vendored
View File

@@ -2,7 +2,7 @@
"_args": [ "_args": [
[ [
"caseless@0.12.0", "caseless@0.12.0",
"D:\\Projects\\siag\\vanillajs-seed" "D:\\Projects\\vanillajs-seed"
] ]
], ],
"_development": true, "_development": true,
@@ -27,7 +27,7 @@
], ],
"_resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", "_resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz",
"_spec": "0.12.0", "_spec": "0.12.0",
"_where": "D:\\Projects\\siag\\vanillajs-seed", "_where": "D:\\Projects\\vanillajs-seed",
"author": { "author": {
"name": "Mikeal Rogers", "name": "Mikeal Rogers",
"email": "mikeal.rogers@gmail.com" "email": "mikeal.rogers@gmail.com"

7
node_modules/chalk/package.json generated vendored
View File

@@ -2,7 +2,7 @@
"_args": [ "_args": [
[ [
"chalk@2.4.2", "chalk@2.4.2",
"D:\\Projects\\siag\\vanillajs-seed" "D:\\Projects\\vanillajs-seed"
] ]
], ],
"_development": true, "_development": true,
@@ -23,11 +23,12 @@
"fetchSpec": "2.4.2" "fetchSpec": "2.4.2"
}, },
"_requiredBy": [ "_requiredBy": [
"/i18next-scanner" "/i18next-scanner",
"/jake"
], ],
"_resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", "_resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
"_spec": "2.4.2", "_spec": "2.4.2",
"_where": "D:\\Projects\\siag\\vanillajs-seed", "_where": "D:\\Projects\\vanillajs-seed",
"bugs": { "bugs": {
"url": "https://github.com/chalk/chalk/issues" "url": "https://github.com/chalk/chalk/issues"
}, },

24
node_modules/clean-css/package.json generated vendored
View File

@@ -1,28 +1,34 @@
{ {
"_from": "clean-css@^4.1.6", "_args": [
[
"clean-css@4.2.3",
"D:\\Projects\\vanillajs-seed"
]
],
"_development": true,
"_from": "clean-css@4.2.3",
"_id": "clean-css@4.2.3", "_id": "clean-css@4.2.3",
"_inBundle": false, "_inBundle": false,
"_integrity": "sha512-VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA==", "_integrity": "sha512-VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA==",
"_location": "/clean-css", "_location": "/clean-css",
"_phantomChildren": {}, "_phantomChildren": {},
"_requested": { "_requested": {
"type": "range", "type": "version",
"registry": true, "registry": true,
"raw": "clean-css@^4.1.6", "raw": "clean-css@4.2.3",
"name": "clean-css", "name": "clean-css",
"escapedName": "clean-css", "escapedName": "clean-css",
"rawSpec": "^4.1.6", "rawSpec": "4.2.3",
"saveSpec": null, "saveSpec": null,
"fetchSpec": "^4.1.6" "fetchSpec": "4.2.3"
}, },
"_requiredBy": [ "_requiredBy": [
"/html-minifier", "/html-minifier",
"/minify" "/minify"
], ],
"_resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.3.tgz", "_resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.3.tgz",
"_shasum": "507b5de7d97b48ee53d84adb0160ff6216380f78", "_spec": "4.2.3",
"_spec": "clean-css@^4.1.6", "_where": "D:\\Projects\\vanillajs-seed",
"_where": "D:\\Projects\\siag\\vanillajs-seed\\node_modules\\minify",
"author": { "author": {
"name": "Jakub Pawlowicz", "name": "Jakub Pawlowicz",
"email": "contact@jakubpawlowicz.com", "email": "contact@jakubpawlowicz.com",
@@ -31,11 +37,9 @@
"bugs": { "bugs": {
"url": "https://github.com/jakubpawlowicz/clean-css/issues" "url": "https://github.com/jakubpawlowicz/clean-css/issues"
}, },
"bundleDependencies": false,
"dependencies": { "dependencies": {
"source-map": "~0.6.0" "source-map": "~0.6.0"
}, },
"deprecated": false,
"description": "A well-tested CSS minifier", "description": "A well-tested CSS minifier",
"devDependencies": { "devDependencies": {
"browserify": "^14.0.0", "browserify": "^14.0.0",

View File

@@ -2,7 +2,7 @@
"_args": [ "_args": [
[ [
"clone-buffer@1.0.0", "clone-buffer@1.0.0",
"D:\\Projects\\siag\\vanillajs-seed" "D:\\Projects\\vanillajs-seed"
] ]
], ],
"_development": true, "_development": true,
@@ -27,7 +27,7 @@
], ],
"_resolved": "https://registry.npmjs.org/clone-buffer/-/clone-buffer-1.0.0.tgz", "_resolved": "https://registry.npmjs.org/clone-buffer/-/clone-buffer-1.0.0.tgz",
"_spec": "1.0.0", "_spec": "1.0.0",
"_where": "D:\\Projects\\siag\\vanillajs-seed", "_where": "D:\\Projects\\vanillajs-seed",
"author": { "author": {
"name": "Gulp Team", "name": "Gulp Team",
"email": "team@gulpjs.com", "email": "team@gulpjs.com",

View File

@@ -2,7 +2,7 @@
"_args": [ "_args": [
[ [
"clone-deep@4.0.1", "clone-deep@4.0.1",
"D:\\Projects\\siag\\vanillajs-seed" "D:\\Projects\\vanillajs-seed"
] ]
], ],
"_development": true, "_development": true,
@@ -27,7 +27,7 @@
], ],
"_resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", "_resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz",
"_spec": "4.0.1", "_spec": "4.0.1",
"_where": "D:\\Projects\\siag\\vanillajs-seed", "_where": "D:\\Projects\\vanillajs-seed",
"author": { "author": {
"name": "Jon Schlinkert", "name": "Jon Schlinkert",
"url": "https://github.com/jonschlinkert" "url": "https://github.com/jonschlinkert"

View File

@@ -2,7 +2,7 @@
"_args": [ "_args": [
[ [
"clone-stats@1.0.0", "clone-stats@1.0.0",
"D:\\Projects\\siag\\vanillajs-seed" "D:\\Projects\\vanillajs-seed"
] ]
], ],
"_development": true, "_development": true,
@@ -27,7 +27,7 @@
], ],
"_resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", "_resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz",
"_spec": "1.0.0", "_spec": "1.0.0",
"_where": "D:\\Projects\\siag\\vanillajs-seed", "_where": "D:\\Projects\\vanillajs-seed",
"author": { "author": {
"name": "Hugh Kennedy", "name": "Hugh Kennedy",
"email": "hughskennedy@gmail.com", "email": "hughskennedy@gmail.com",

Some files were not shown because too many files have changed in this diff Show More