initial commit taken from gitlab.lrz.de

This commit is contained in:
privatereese
2018-08-24 18:09:42 +02:00
parent ae54ed4c48
commit fc05486403
28494 changed files with 2159823 additions and 0 deletions

15
node_modules/global/.npmignore generated vendored Normal file
View File

@@ -0,0 +1,15 @@
.DS_Store
.monitor
.*.swp
.nodemonignore
releases
*.log
*.err
fleet.json
public/browserify
bin/*.json
.bin
build
compile
.lock-wscript
node_modules

4
node_modules/global/.travis.yml generated vendored Normal file
View File

@@ -0,0 +1,4 @@
language: node_js
node_js:
- 0.8
- 0.9

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

@@ -0,0 +1,19 @@
Copyright (c) 2012 Colingo.
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.

30
node_modules/global/README.md generated vendored Normal file
View File

@@ -0,0 +1,30 @@
# global
<!-- [![build status][1]][2]
[![browser support][3]][4] -->
Require global variables
## Example
```js
var global = require("global")
var document = require("global/document")
var window = require("global/window")
```
## Installation
`npm install global`
## Contributors
- Raynos
## MIT Licenced
[1]: https://secure.travis-ci.org/Colingo/global.png
[2]: http://travis-ci.org/Colingo/global
[3]: http://ci.testling.com/Colingo/global.png
[4]: http://ci.testling.com/Colingo/global

1
node_modules/global/console.js generated vendored Normal file
View File

@@ -0,0 +1 @@
module.exports = console;

17
node_modules/global/document.js generated vendored Normal file
View File

@@ -0,0 +1,17 @@
var topLevel = typeof global !== 'undefined' ? global :
typeof window !== 'undefined' ? window : {}
var minDoc = require('min-document');
var doccy;
if (typeof document !== 'undefined') {
doccy = document;
} else {
doccy = topLevel['__GLOBAL_DOCUMENT_CACHE@4'];
if (!doccy) {
doccy = topLevel['__GLOBAL_DOCUMENT_CACHE@4'] = minDoc;
}
}
module.exports = doccy;

129
node_modules/global/package.json generated vendored Normal file
View File

@@ -0,0 +1,129 @@
{
"_args": [
[
"global@^4.3.0",
"/home/bernhard/freifunk-app/node_modules/react-transform-hmr"
]
],
"_from": "global@>=4.3.0 <5.0.0",
"_id": "global@4.3.2",
"_inCache": true,
"_installable": true,
"_location": "/global",
"_nodeVersion": "0.10.32",
"_npmOperationalInternal": {
"host": "packages-18-east.internal.npmjs.com",
"tmp": "tmp/global-4.3.2.tgz_1492580146760_0.3673510455992073"
},
"_npmUser": {
"email": "raynos2@gmail.com",
"name": "raynos"
},
"_npmVersion": "2.15.11",
"_phantomChildren": {},
"_requested": {
"name": "global",
"raw": "global@^4.3.0",
"rawSpec": "^4.3.0",
"scope": null,
"spec": ">=4.3.0 <5.0.0",
"type": "range"
},
"_requiredBy": [
"/react-transform-hmr"
],
"_resolved": "https://registry.npmjs.org/global/-/global-4.3.2.tgz",
"_shasum": "e76989268a6c74c38908b1305b10fc0e394e9d0f",
"_shrinkwrap": null,
"_spec": "global@^4.3.0",
"_where": "/home/bernhard/freifunk-app/node_modules/react-transform-hmr",
"author": {
"email": "raynos2@gmail.com",
"name": "Raynos"
},
"browser": {
"individual": false,
"min-document": false
},
"bugs": {
"email": "raynos2@gmail.com",
"url": "https://github.com/Raynos/global/issues"
},
"contributors": [
{
"name": "Raynos"
}
],
"dependencies": {
"min-document": "^2.19.0",
"process": "~0.5.1"
},
"description": "Require global variables",
"devDependencies": {
"tape": "^2.12.0"
},
"directories": {},
"dist": {
"shasum": "e76989268a6c74c38908b1305b10fc0e394e9d0f",
"tarball": "https://registry.npmjs.org/global/-/global-4.3.2.tgz"
},
"gitHead": "dca6193fee92549cb0a1944705f8b054beb338a2",
"homepage": "https://github.com/Raynos/global",
"keywords": [],
"license": "MIT",
"main": "window.js",
"maintainers": [
{
"name": "raynos",
"email": "raynos2@gmail.com"
},
{
"name": "mattesch",
"email": "matt@mattesch.info"
},
{
"name": "jerrysievert",
"email": "code@legitimatesounding.com"
}
],
"name": "global",
"optionalDependencies": {},
"readme": "ERROR: No README data found!",
"repository": {
"type": "git",
"url": "git://github.com/Raynos/global.git"
},
"scripts": {
"build": "browserify test/index.js -o test/static/bundle.js",
"test": "node ./test",
"testem": "testem"
},
"testling": {
"browsers": {
"chrome": [
"22",
"23",
"canary"
],
"firefox": [
"16",
"17",
"nightly"
],
"ie": [
"10",
"8",
"9"
],
"opera": [
"12",
"next"
],
"safari": [
"5.1"
]
},
"files": "test/index.js"
},
"version": "4.3.2"
}

1
node_modules/global/process.js generated vendored Normal file
View File

@@ -0,0 +1 @@
module.exports = require('process');

13
node_modules/global/window.js generated vendored Normal file
View File

@@ -0,0 +1,13 @@
var win;
if (typeof window !== "undefined") {
win = window;
} else if (typeof global !== "undefined") {
win = global;
} else if (typeof self !== "undefined"){
win = self;
} else {
win = {};
}
module.exports = win;