__tests
db.unit.test.js +0 -50
gitlab.unit.test.js +0 -36
public.endpoint.test.js +0 -16
built
classes
project.js +3 -0
repo.js +1 -0
user.js +7 -0
website.js +1 -0
config
config.js +22 -0
const.js +1 -0
dbconn.js +2 -0
mailer.js +1 -0
controller
dbController.js +14 -0
gitlabController.js +2 -0
publicController.js +9 -0
public
default
logo.png +0 -0
js
generalFunction.js +0 -0
headfoot.js +0 -0
headfootLogout.js +0 -0
registration.js +0 -0
security.js +0 -0
routes
cert
cert.pem +0 -0
cert_idp.pem +0 -0
key.pem +0 -0
account.js +12 -0
public.js +7 -0
views
DE
account
contact.pug +0 -0
forgotPwd.pug +0 -0
home.pug +0 -0
newInformation.pug +0 -0
profile.pug +0 -0
registration.pug +0 -0
reset.pug +0 -0
security.pug +0 -0
services.pug +0 -0
updateInformation.pug +0 -0
verification.pug +0 -0
project
updateProjectOverview.pug +0 -0
404.pug +0 -0
500.pug +0 -0
EN
account
forgotPwd.pug +0 -0
home.pug +0 -0
profile.pug +0 -0
registration.pug +0 -0
reset.pug +0 -0
security.pug +0 -0
services.pug +0 -0
404.pug +0 -0
500.pug +0 -0
app.js +7 -0
node_modules
.bin
_mocha +12 -0
_mocha.cmd +17 -0
_mocha.ps1 +28 -0
he +12 -0
he.cmd +17 -0
he.ps1 +28 -0
mime +12 -0
mime.cmd +17 -0
mime.ps1 +28 -0
mkdirp +12 -0
mkdirp.cmd +17 -0
mkdirp.ps1 +28 -0
mocha +12 -0
mocha.cmd +17 -0
mocha.ps1 +28 -0
parser +12 -0
parser.cmd +17 -0
parser.ps1 +28 -0
@babel
helper-validator-identifier
lib
identifier.js +84 -0
index.js +57 -0
keyword.js +38 -0
scripts
generate-identifier-regex.js +75 -0
LICENSE +22 -0
README.md +19 -0
package.json +28 -0
parser
bin
babel-parser.js +15 -0
lib
index.js +16667 -0
index.js.map +1 -0
typings
babel-parser.d.ts +214 -0
CHANGELOG.md +1073 -0
LICENSE +19 -0
README.md +19 -0
package.json +44 -0
types
lib
asserts
generated
index.js +1522 -0
assertNode.js +17 -0
ast-types/generated
index.js +0 -0
builders
flow
createFlowUnionType.js +20 -0
createTypeAnnotationBasedOnTypeof.js +41 -0
generated
index.js +2227 -0
uppercase.js +1519 -0
react
buildChildren.js +29 -0
typescript
createTSUnionType.js +21 -0
validateNode.js +20 -0
clone
clone.js +12 -0
cloneDeep.js +12 -0
cloneDeepWithoutLoc.js +12 -0
cloneNode.js +120 -0
cloneWithoutLoc.js +12 -0
comments
addComment.js +15 -0
addComments.js +23 -0
inheritInnerComments.js +12 -0
inheritLeadingComments.js +12 -0
inheritTrailingComments.js +12 -0
inheritsComments.js +19 -0
removeComments.js +16 -0
constants
generated
index.js +107 -0
index.js +49 -0
converters
ensureBlock.js +14 -0
gatherSequenceExpressions.js +75 -0
toBindingIdentifierName.js +14 -0
toBlock.js +34 -0
toComputedKey.js +15 -0
toExpression.js +33 -0
toIdentifier.js +30 -0
toKeyAlias.js +46 -0
toSequenceExpression.js +21 -0
toStatement.js +47 -0
valueToNode.js +99 -0
definitions
core.js +1658 -0
experimental.js +133 -0
flow.js +486 -0
index.js +103 -0
jsx.js +157 -0
misc.js +32 -0
placeholders.js +33 -0
typescript.js +487 -0
utils.js +343 -0
modifications
flow
removeTypeDuplicates.js +78 -0
typescript
removeTypeDuplicates.js +54 -0
appendToMemberExpression.js +15 -0
inherits.js +33 -0
prependToMemberExpression.js +13 -0
removeProperties.js +29 -0
removePropertiesDeep.js +15 -0
retrievers
getBindingIdentifiers.js +105 -0
getOuterBindingIdentifiers.js +15 -0
traverse
traverse.js +55 -0
traverseFast.js +28 -0
utils
react
cleanJSXElementLiteralChild.js +47 -0
inherit.js +12 -0
shallowEqual.js +18 -0
validators
generated
index.js +4827 -0
react
isCompatTag.js +10 -0
isReactComponent.js +12 -0
buildMatchMemberExpression.js +13 -0
is.js +33 -0
isBinding.js +31 -0
isBlockScoped.js +14 -0
isImmutable.js +24 -0
isLet.js +14 -0
isNode.js +12 -0
isNodesEquivalent.js +70 -0
isPlaceholderType.js +21 -0
isReferenced.js +128 -0
isScope.js +20 -0
isSpecifierDefault.js +14 -0
isType.js +24 -0
isValidES3Identifier.js +14 -0
isValidIdentifier.js +20 -0
isVar.js +16 -0
matchesPattern.js +42 -0
validate.js +32 -0
index-legacy.d.ts +2732 -0
index.d.ts +2963 -0
index.js +647 -0
index.js.flow +2586 -0
scripts
generators
asserts.js +50 -0
ast-types.js +146 -0
builders.js +192 -0
constants.js +15 -0
docs.js +283 -0
flow.js +260 -0
typescript-legacy.js +369 -0
validators.js +87 -0
utils
formatBuilderName.js +8 -0
lowerFirst.js +3 -0
stringifyValidator.js +66 -0
toFunctionName.js +4 -0
package.json +1 -0
LICENSE +22 -0
README.md +19 -0
package.json +40 -0
@xmldom/xmldom
lib
.eslintrc.yml +2 -0
conventions.js +144 -0
dom-parser.js +268 -0
dom.js +1500 -0
entities.js +273 -0
index.js +4 -0
sax.js +644 -0
CHANGELOG.md +328 -0
LICENSE +8 -0
index.d.ts +43 -0
package.json +57 -0
readme.md +338 -0
accepts
HISTORY.md +236 -0
LICENSE +23 -0
README.md +142 -0
index.js +238 -0
package.json +47 -0
array-flatten
LICENSE +21 -0
README.md +43 -0
array-flatten.js +64 -0
package.json +39 -0
asap
CHANGES.md +70 -0
LICENSE.md +21 -0
README.md +237 -0
asap.js +65 -0
browser-asap.js +66 -0
browser-raw.js +223 -0
package.json +58 -0
raw.js +101 -0
assert-never
README.md +39 -0
index.d.ts +27 -0
index.js +35 -0
index.ts +36 -0
package.json +28 -0
assertion-error
History.md +24 -0
README.md +41 -0
index.d.ts +11 -0
index.js +116 -0
package.json +29 -0
async
dist
async.js +6059 -0
async.min.js +1 -0
async.mjs +5947 -0
internal
DoublyLinkedList.js +92 -0
Heap.js +120 -0
applyEach.js +29 -0
asyncEachOfLimit.js +75 -0
awaitify.js +27 -0
breakLoop.js +10 -0
consoleFunc.js +31 -0
createTester.js +40 -0
eachOfLimit.js +90 -0
filter.js +55 -0
getIterator.js +11 -0
initialParams.js +14 -0
isArrayLike.js +10 -0
iterator.js +57 -0
map.js +30 -0
once.js +17 -0
onlyOnce.js +15 -0
parallel.js +34 -0
promiseCallback.js +23 -0
queue.js +294 -0
range.js +14 -0
reject.js +26 -0
setImmediate.js +34 -0
withoutIndex.js +10 -0
wrapAsync.js +34 -0
CHANGELOG.md +348 -0
LICENSE +19 -0
README.md +59 -0
all.js +119 -0
allLimit.js +46 -0
allSeries.js +45 -0
any.js +122 -0
anyLimit.js +47 -0
anySeries.js +46 -0
apply.js +55 -0
applyEach.js +57 -0
applyEachSeries.js +37 -0
asyncify.js +118 -0
auto.js +333 -0
autoInject.js +182 -0
bower.json +17 -0
cargo.js +63 -0
cargoQueue.js +71 -0
compose.js +55 -0
concat.js +115 -0
concatLimit.js +60 -0
concatSeries.js +41 -0
constant.js +55 -0
detect.js +96 -0
detectLimit.js +48 -0
detectSeries.js +47 -0
dir.js +43 -0
doDuring.js +68 -0
doUntil.js +46 -0
doWhilst.js +68 -0
during.js +78 -0
each.js +129 -0
eachLimit.js +50 -0
eachOf.js +185 -0
eachOfLimit.js +47 -0
eachOfSeries.js +39 -0
eachSeries.js +44 -0
ensureAsync.js +67 -0
every.js +119 -0
everyLimit.js +46 -0
everySeries.js +45 -0
filter.js +93 -0
filterLimit.js +45 -0
filterSeries.js +43 -0
find.js +96 -0
findLimit.js +48 -0
findSeries.js +47 -0
flatMap.js +115 -0
flatMapLimit.js +60 -0
flatMapSeries.js +41 -0
foldl.js +153 -0
foldr.js +41 -0
forEach.js +129 -0
forEachLimit.js +50 -0
forEachOf.js +185 -0
forEachOfLimit.js +47 -0
forEachOfSeries.js +39 -0
forEachSeries.js +44 -0
forever.js +68 -0
groupBy.js +108 -0
groupByLimit.js +71 -0
groupBySeries.js +36 -0
index.js +588 -0
inject.js +153 -0
log.js +41 -0
map.js +142 -0
mapLimit.js +45 -0
mapSeries.js +44 -0
mapValues.js +152 -0
mapValuesLimit.js +61 -0
mapValuesSeries.js +37 -0
memoize.js +91 -0
nextTick.js +52 -0
package.json +75 -0
parallel.js +180 -0
parallelLimit.js +41 -0
priorityQueue.js +86 -0
queue.js +167 -0
race.js +67 -0
reduce.js +153 -0
reduceRight.js +41 -0
reflect.js +78 -0
reflectAll.js +93 -0
reject.js +87 -0
rejectLimit.js +45 -0
rejectSeries.js +43 -0
retry.js +159 -0
retryable.js +77 -0
select.js +93 -0
selectLimit.js +45 -0
selectSeries.js +43 -0
seq.js +79 -0
series.js +186 -0
setImmediate.js +45 -0
some.js +122 -0
someLimit.js +47 -0
someSeries.js +46 -0
sortBy.js +190 -0
timeout.js +89 -0
times.js +50 -0
timesLimit.js +43 -0
timesSeries.js +32 -0
transform.js +173 -0
tryEach.js +78 -0
unmemoize.js +25 -0
until.js +61 -0
waterfall.js +105 -0
whilst.js +78 -0
wrapSync.js +118 -0
asynckit
lib
abort.js +29 -0
async.js +34 -0
defer.js +26 -0
iterate.js +75 -0
readable_asynckit.js +91 -0
readable_parallel.js +25 -0
readable_serial.js +25 -0
readable_serial_ordered.js +29 -0
state.js +37 -0
streamify.js +141 -0
terminator.js +29 -0
LICENSE +21 -0
README.md +233 -0
bench.js +76 -0
index.js +6 -0
package.json +63 -0
parallel.js +43 -0
serial.js +17 -0
serialOrdered.js +75 -0
stream.js +21 -0
axios
dist
axios.js +2193 -0
axios.map +1 -0
axios.min.js +3 -0
axios.min.map +1 -0
lib
adapters
README.md +37 -0
http.js +331 -0
xhr.js +189 -0
cancel
Cancel.js +19 -0
CancelToken.js +57 -0
isCancel.js +5 -0
core
Axios.js +148 -0
axios.js +56 -0
CHANGELOG.md +775 -0
LICENSE +19 -0
README.md +868 -0
SECURITY.md +5 -0
UPGRADE_GUIDE.md +162 -0
index.d.ts +168 -0
index.js +1 -0
.package-lock.json +1805 -0
.babelrc +0 -5
.gitignore +5 -3
.gitlab-ci.yml +0 -3
jest.config.js +0 -4
__tests/db.unit.test.js deleted
100644 → 0
+ 0
- 50
__tests/gitlab.unit.test.js deleted
100644 → 0
+ 0
- 36
__tests/public.endpoint.test.js deleted
100644 → 0
+ 0
- 16
built/classes/project.js
0 → 100644
+ 3
- 0
"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.Project=void 0;function _classCallCheck(a,b){if(!(a instanceof b))throw new TypeError("Cannot call a class as a function")}function _defineProperties(a,b){for(var c,d=0;d<b.length;d++)c=b[d],c.enumerable=c.enumerable||!1,c.configurable=!0,"value"in c&&(c.writable=!0),Object.defineProperty(a,c.key,c)}function _createClass(a,b,c){return b&&_defineProperties(a.prototype,b),c&&_defineProperties(a,c),Object.defineProperty(a,"prototype",{writable:!1}),a}var Project=/*#__PURE__*/function(){function a(b,c,d,e,f,g){_classCallCheck(this,a),this.ownerGitlabId=b,this.name=c,this.desc=d,this.id=e,this.logo=f,this.path=g}// getter
return _createClass(a,[{key:"getOwnerGitlabId",value:function getOwnerGitlabId(){return this.ownerGitlabId}},{key:"getId",value:function getId(){return this.id}},{key:"getName",value:function getName(){return this.name}},{key:"getDesc",value:function getDesc(){return this.desc}},{key:"getLogo",value:function getLogo(){return this.logo}},{key:"getPath",value:function getPath(){return this.path}// setter
},{key:"setOwnerGitlabId",value:function setOwnerGitlabId(a){this.ownerGitlabId=a}},{key:"setId",value:function setId(a){this.id=a}},{key:"setName",value:function setName(a){this.name=a}},{key:"setDesc",value:function setDesc(a){this.desc=a}},{key:"setLogo",value:function setLogo(a){this.logo=a}},{key:"setPath",value:function setPath(a){this.path=a}}]),a}();exports.Project=Project;
\ No newline at end of file
built/classes/repo.js
0 → 100644
+ 1
- 0
"use strict";var _project=require("./project");function _typeof(a){"@babel/helpers - typeof";return _typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(a){return typeof a}:function(a){return a&&"function"==typeof Symbol&&a.constructor===Symbol&&a!==Symbol.prototype?"symbol":typeof a},_typeof(a)}Object.defineProperty(exports,"__esModule",{value:!0}),exports.Repo=void 0;function _defineProperties(a,b){for(var c,d=0;d<b.length;d++)c=b[d],c.enumerable=c.enumerable||!1,c.configurable=!0,"value"in c&&(c.writable=!0),Object.defineProperty(a,c.key,c)}function _createClass(a,b,c){return b&&_defineProperties(a.prototype,b),c&&_defineProperties(a,c),Object.defineProperty(a,"prototype",{writable:!1}),a}function _classCallCheck(a,b){if(!(a instanceof b))throw new TypeError("Cannot call a class as a function")}function _inherits(a,b){if("function"!=typeof b&&null!==b)throw new TypeError("Super expression must either be null or a function");a.prototype=Object.create(b&&b.prototype,{constructor:{value:a,writable:!0,configurable:!0}}),Object.defineProperty(a,"prototype",{writable:!1}),b&&_setPrototypeOf(a,b)}function _setPrototypeOf(a,b){return _setPrototypeOf=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(a,b){return a.__proto__=b,a},_setPrototypeOf(a,b)}function _createSuper(a){var b=_isNativeReflectConstruct();return function(){var c,d=_getPrototypeOf(a);if(b){var e=_getPrototypeOf(this).constructor;c=Reflect.construct(d,arguments,e)}else c=d.apply(this,arguments);return _possibleConstructorReturn(this,c)}}function _possibleConstructorReturn(a,b){if(b&&("object"===_typeof(b)||"function"==typeof b))return b;if(void 0!==b)throw new TypeError("Derived constructors may only return object or undefined");return _assertThisInitialized(a)}function _assertThisInitialized(a){if(void 0===a)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return a}function _isNativeReflectConstruct(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(a){return!1}}function _getPrototypeOf(a){return _getPrototypeOf=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(a){return a.__proto__||Object.getPrototypeOf(a)},_getPrototypeOf(a)}var Repo=/*#__PURE__*/function(a){function b(a,d,e,f,g,h){return _classCallCheck(this,b),c.call(this,a,d,e,f,g,h)}_inherits(b,a);var c=_createSuper(b);return _createClass(b)}(_project.Project);exports.Repo=Repo;
\ No newline at end of file