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

19
node_modules/@babel/plugin-syntax-jsx/README.md generated vendored Normal file
View File

@@ -0,0 +1,19 @@
# @babel/plugin-syntax-jsx
> Allow parsing of jsx
See our website [@babel/plugin-syntax-jsx](https://babeljs.io/docs/en/next/babel-plugin-syntax-jsx.html) for more information.
## Install
Using npm:
```sh
npm install --save-dev @babel/plugin-syntax-jsx
```
or using yarn:
```sh
yarn add @babel/plugin-syntax-jsx --dev
```

32
node_modules/@babel/plugin-syntax-jsx/lib/index.js generated vendored Normal file
View File

@@ -0,0 +1,32 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
function _helperPluginUtils() {
const data = require("@babel/helper-plugin-utils");
_helperPluginUtils = function () {
return data;
};
return data;
}
var _default = (0, _helperPluginUtils().declare)(api => {
api.assertVersion(7);
return {
manipulateOptions(opts, parserOpts) {
if (parserOpts.plugins.some(p => (Array.isArray(p) ? p[0] : p) === "typescript")) {
return;
}
parserOpts.plugins.push("jsx");
}
};
});
exports.default = _default;

91
node_modules/@babel/plugin-syntax-jsx/package.json generated vendored Normal file
View File

@@ -0,0 +1,91 @@
{
"_args": [
[
"@babel/plugin-syntax-jsx@7.0.0-beta.54",
"/home/bernhard/freifunk-app/node_modules/@babel/plugin-transform-react-jsx"
]
],
"_from": "@babel/plugin-syntax-jsx@7.0.0-beta.54",
"_id": "@babel/plugin-syntax-jsx@7.0.0-beta.54",
"_inCache": true,
"_installable": true,
"_location": "/@babel/plugin-syntax-jsx",
"_npmOperationalInternal": {
"host": "s3://npm-registry-packages",
"tmp": "tmp/plugin-syntax-jsx_7.0.0-beta.54_1531763999887_0.7071664145908165"
},
"_npmUser": {
"email": "hi@henryzoo.com",
"name": "hzoo"
},
"_phantomChildren": {},
"_requested": {
"name": "@babel/plugin-syntax-jsx",
"raw": "@babel/plugin-syntax-jsx@7.0.0-beta.54",
"rawSpec": "7.0.0-beta.54",
"scope": "@babel",
"spec": "7.0.0-beta.54",
"type": "version"
},
"_requiredBy": [
"/@babel/plugin-transform-react-jsx",
"/@babel/plugin-transform-react-jsx-source"
],
"_resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.0.0-beta.54.tgz",
"_shasum": "71171aee902b94ccf2e22a810d1426b5165b8d84",
"_shrinkwrap": null,
"_spec": "@babel/plugin-syntax-jsx@7.0.0-beta.54",
"_where": "/home/bernhard/freifunk-app/node_modules/@babel/plugin-transform-react-jsx",
"dependencies": {
"@babel/helper-plugin-utils": "7.0.0-beta.54"
},
"description": "Allow parsing of jsx",
"devDependencies": {
"@babel/core": "7.0.0-beta.54"
},
"directories": {},
"dist": {
"fileCount": 5,
"shasum": "71171aee902b94ccf2e22a810d1426b5165b8d84",
"tarball": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.0.0-beta.54.tgz",
"unpackedSize": 1442
},
"keywords": [
"babel-plugin"
],
"license": "MIT",
"main": "lib/index.js",
"maintainers": [
{
"name": "danez",
"email": "daniel@tschinder.de"
},
{
"name": "existentialism",
"email": "bng412@gmail.com"
},
{
"name": "hzoo",
"email": "hi@henryzoo.com"
},
{
"name": "loganfsmyth",
"email": "loganfsmyth@gmail.com"
},
{
"name": "xtuc",
"email": "contact@xtuc.fr"
}
],
"name": "@babel/plugin-syntax-jsx",
"optionalDependencies": {},
"peerDependencies": {
"@babel/core": ">=7.0.0-beta.50 <7.0.0-rc.0"
},
"readme": "ERROR: No README data found!",
"repository": {
"type": "git",
"url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-jsx"
},
"version": "7.0.0-beta.54"
}