Commit a2e8cafb authored by patri's avatar patri
Browse files

Test New PC

parent e65a993d
...@@ -7,45 +7,19 @@ exports.shouldHighlight = shouldHighlight; ...@@ -7,45 +7,19 @@ exports.shouldHighlight = shouldHighlight;
exports.getChalk = getChalk; exports.getChalk = getChalk;
exports.default = highlight; exports.default = highlight;
function _jsTokens() { var _jsTokens = require("js-tokens");
const data = _interopRequireWildcard(require("js-tokens"));
_jsTokens = function () { var _helperValidatorIdentifier = require("@babel/helper-validator-identifier");
return data;
};
return data;
}
function _esutils() {
const data = _interopRequireDefault(require("esutils"));
_esutils = function () {
return data;
};
return data;
}
function _chalk() {
const data = _interopRequireDefault(require("chalk"));
_chalk = function () { var _chalk = require("chalk");
return data;
};
return data; const sometimesKeywords = new Set(["as", "async", "from", "get", "of", "set"]);
}
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = Object.defineProperty && Object.getOwnPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : {}; if (desc.get || desc.set) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } } newObj.default = obj; return newObj; } }
function getDefs(chalk) { function getDefs(chalk) {
return { return {
keyword: chalk.cyan, keyword: chalk.cyan,
capitalized: chalk.yellow, capitalized: chalk.yellow,
jsx_tag: chalk.yellow, jsxIdentifier: chalk.yellow,
punctuator: chalk.yellow, punctuator: chalk.yellow,
number: chalk.magenta, number: chalk.magenta,
string: chalk.green, string: chalk.green,
...@@ -56,66 +30,79 @@ function getDefs(chalk) { ...@@ -56,66 +30,79 @@ function getDefs(chalk) {
} }
const NEWLINE = /\r\n|[\n\r\u2028\u2029]/; const NEWLINE = /\r\n|[\n\r\u2028\u2029]/;
const JSX_TAG = /^[a-z][\w-]*$/i;
const BRACKET = /^[()[\]{}]$/; const BRACKET = /^[()[\]{}]$/;
let tokenize;
function getTokenType(match) { {
const [offset, text] = match.slice(-2); const JSX_TAG = /^[a-z][\w-]*$/i;
const token = (0, _jsTokens().matchToToken)(match);
const getTokenType = function (token, offset, text) {
if (token.type === "name") { if (token.type === "name") {
if (_esutils().default.keyword.isReservedWordES6(token.value)) { if ((0, _helperValidatorIdentifier.isKeyword)(token.value) || (0, _helperValidatorIdentifier.isStrictReservedWord)(token.value, true) || sometimesKeywords.has(token.value)) {
return "keyword"; return "keyword";
}
if (JSX_TAG.test(token.value) && (text[offset - 1] === "<" || text.substr(offset - 2, 2) == "</")) {
return "jsxIdentifier";
}
if (token.value[0] !== token.value[0].toLowerCase()) {
return "capitalized";
}
} }
if (JSX_TAG.test(token.value) && (text[offset - 1] === "<" || text.substr(offset - 2, 2) == "</")) { if (token.type === "punctuator" && BRACKET.test(token.value)) {
return "jsx_tag"; return "bracket";
} }
if (token.value[0] !== token.value[0].toLowerCase()) { if (token.type === "invalid" && (token.value === "@" || token.value === "#")) {
return "capitalized"; return "punctuator";
} }
}
if (token.type === "punctuator" && BRACKET.test(token.value)) { return token.type;
return "bracket"; };
}
if (token.type === "invalid" && (token.value === "@" || token.value === "#")) { tokenize = function* (text) {
return "punctuator"; let match;
}
while (match = _jsTokens.default.exec(text)) {
const token = _jsTokens.matchToToken(match);
return token.type; yield {
type: getTokenType(token, match.index, text),
value: token.value
};
}
};
} }
function highlightTokens(defs, text) { function highlightTokens(defs, text) {
return text.replace(_jsTokens().default, function (...args) { let highlighted = "";
const type = getTokenType(args);
for (const {
type,
value
} of tokenize(text)) {
const colorize = defs[type]; const colorize = defs[type];
if (colorize) { if (colorize) {
return args[0].split(NEWLINE).map(str => colorize(str)).join("\n"); highlighted += value.split(NEWLINE).map(str => colorize(str)).join("\n");
} else { } else {
return args[0]; highlighted += value;
} }
}); }
return highlighted;
} }
function shouldHighlight(options) { function shouldHighlight(options) {
return _chalk().default.supportsColor || options.forceColor; return !!_chalk.supportsColor || options.forceColor;
} }
function getChalk(options) { function getChalk(options) {
let chalk = _chalk().default; return options.forceColor ? new _chalk.constructor({
enabled: true,
if (options.forceColor) { level: 1
chalk = new (_chalk().default.constructor)({ }) : _chalk;
enabled: true,
level: 1
});
}
return chalk;
} }
function highlight(code, options = {}) { function highlight(code, options = {}) {
......
{ {
"_from": "@babel/highlight@^7.0.0", "name": "@babel/highlight",
"_id": "@babel/highlight@7.5.0", "version": "7.14.5",
"_inBundle": false, "description": "Syntax highlight JavaScript strings for output in terminals.",
"_integrity": "sha512-7dV4eu9gBxoM0dAnj/BCFDW9LFU0zvTrkq0ugM7pnHEgguOEeOz1so2ZghEdzviYzQEED0r4EAgpsBChKy1TRQ==", "author": "The Babel Team (https://babel.dev/team)",
"_location": "/@babel/highlight", "homepage": "https://babel.dev/docs/en/next/babel-highlight",
"_phantomChildren": {}, "license": "MIT",
"_requested": { "publishConfig": {
"type": "range", "access": "public"
"registry": true,
"raw": "@babel/highlight@^7.0.0",
"name": "@babel/highlight",
"escapedName": "@babel%2fhighlight",
"scope": "@babel",
"rawSpec": "^7.0.0",
"saveSpec": null,
"fetchSpec": "^7.0.0"
}, },
"_requiredBy": [ "repository": {
"/@babel/code-frame" "type": "git",
], "url": "https://github.com/babel/babel.git",
"_resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.5.0.tgz", "directory": "packages/babel-highlight"
"_shasum": "56d11312bd9248fa619591d02472be6e8cb32540",
"_spec": "@babel/highlight@^7.0.0",
"_where": "C:\\Work\\OneDrive - bwstaff\\M4_Lab\\TV3\\NewVersion01\\LAFJLBmf939XYm5gj\\dev\\node_modules\\@babel\\code-frame",
"author": {
"name": "suchipi",
"email": "me@suchipi.com"
}, },
"bundleDependencies": false, "main": "./lib/index.js",
"dependencies": { "dependencies": {
"@babel/helper-validator-identifier": "^7.14.5",
"chalk": "^2.0.0", "chalk": "^2.0.0",
"esutils": "^2.0.2",
"js-tokens": "^4.0.0" "js-tokens": "^4.0.0"
}, },
"deprecated": false,
"description": "Syntax highlight JavaScript strings for output in terminals.",
"devDependencies": { "devDependencies": {
"@types/chalk": "^2.0.0",
"strip-ansi": "^4.0.0" "strip-ansi": "^4.0.0"
}, },
"gitHead": "49da9a07c81156e997e60146eb001ea77b7044c4", "engines": {
"homepage": "https://babeljs.io/", "node": ">=6.9.0"
"license": "MIT", }
"main": "lib/index.js", }
"name": "@babel/highlight", \ No newline at end of file
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/babel/babel/tree/master/packages/babel-highlight"
},
"version": "7.5.0"
}
...@@ -9,11 +9,11 @@ ...@@ -9,11 +9,11 @@
> - :house: [Internal] > - :house: [Internal]
> - :nail_care: [Polish] > - :nail_care: [Polish]
> Semver Policy: https://github.com/babel/babel/tree/master/packages/babel-parser#semver > Semver Policy: https://github.com/babel/babel/tree/main/packages/babel-parser#semver
_Note: Gaps between patch versions are faulty, broken or test releases._ _Note: Gaps between patch versions are faulty, broken or test releases._
See the [Babel Changelog](https://github.com/babel/babel/blob/master/CHANGELOG.md) for the pre-6.8.0 version Changelog. See the [Babel Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) for the pre-6.8.0 version Changelog.
## 6.17.1 (2017-05-10) ## 6.17.1 (2017-05-10)
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
> A JavaScript parser > A JavaScript parser
See our website [@babel/parser](https://babeljs.io/docs/en/next/babel-parser.html) for more information or the [issues](https://github.com/babel/babel/issues?utf8=%E2%9C%93&q=is%3Aissue+label%3A%22pkg%3A+parser+%28babylon%29%22+is%3Aopen) associated with this package. See our website [@babel/parser](https://babeljs.io/docs/en/babel-parser) for more information or the [issues](https://github.com/babel/babel/issues?utf8=%E2%9C%93&q=is%3Aissue+label%3A%22pkg%3A%20parser%20(babylon)%22+is%3Aopen) associated with this package.
## Install ## Install
......
...@@ -7,10 +7,9 @@ var fs = require("fs"); ...@@ -7,10 +7,9 @@ var fs = require("fs");
var filename = process.argv[2]; var filename = process.argv[2];
if (!filename) { if (!filename) {
console.error("no filename specified"); console.error("no filename specified");
process.exit(0); } else {
} var file = fs.readFileSync(filename, "utf8");
var ast = parser.parse(file);
var file = fs.readFileSync(filename, "utf8");
var ast = parser.parse(file);
console.log(JSON.stringify(ast, null, " ")); console.log(JSON.stringify(ast, null, " "));
}
This source diff could not be displayed because it is too large. You can view the blob instead.
{ {
"_from": "@babel/parser@^7.7.2", "name": "@babel/parser",
"_id": "@babel/parser@7.7.3", "version": "7.14.6",
"_inBundle": false,
"_integrity": "sha512-bqv+iCo9i+uLVbI0ILzKkvMorqxouI+GbV13ivcARXn9NNEabi2IEz912IgNpT/60BNXac5dgcfjb94NjsF33A==",
"_location": "/@babel/parser",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "@babel/parser@^7.7.2",
"name": "@babel/parser",
"escapedName": "@babel%2fparser",
"scope": "@babel",
"rawSpec": "^7.7.2",
"saveSpec": null,
"fetchSpec": "^7.7.2"
},
"_requiredBy": [
"/@babel/core",
"/@babel/template",
"/@babel/traverse"
],
"_resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.7.3.tgz",
"_shasum": "5fad457c2529de476a248f75b0f090b3060af043",
"_spec": "@babel/parser@^7.7.2",
"_where": "C:\\Work\\OneDrive - bwstaff\\M4_Lab\\TV3\\NewVersion01\\LAFJLBmf939XYm5gj\\dev\\node_modules\\@babel\\core",
"author": {
"name": "Sebastian McKenzie",
"email": "sebmck@gmail.com"
},
"bin": {
"parser": "./bin/babel-parser.js"
},
"bundleDependencies": false,
"deprecated": false,
"description": "A JavaScript parser", "description": "A JavaScript parser",
"devDependencies": { "author": "The Babel Team (https://babel.dev/team)",
"@babel/code-frame": "^7.5.5", "homepage": "https://babel.dev/docs/en/next/babel-parser",
"@babel/helper-fixtures": "^7.6.3", "bugs": "https://github.com/babel/babel/issues?utf8=%E2%9C%93&q=is%3Aissue+label%3A%22pkg%3A+parser+%28babylon%29%22+is%3Aopen",
"charcodes": "^0.2.0", "license": "MIT",
"unicode-12.0.0": "^0.7.9" "publishConfig": {
}, "access": "public"
"engines": {
"node": ">=6.0.0"
}, },
"files": [
"bin",
"lib",
"typings"
],
"gitHead": "e315d65a7a8cedbe0476b4a2872890e93a1289ba",
"homepage": "https://babeljs.io/",
"keywords": [ "keywords": [
"babel", "babel",
"javascript", "javascript",
...@@ -59,16 +17,28 @@ ...@@ -59,16 +17,28 @@
"ecmascript", "ecmascript",
"@babel/parser" "@babel/parser"
], ],
"license": "MIT",
"main": "lib/index.js",
"name": "@babel/parser",
"publishConfig": {
"access": "public"
},
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://github.com/babel/babel/tree/master/packages/babel-parser" "url": "https://github.com/babel/babel.git",
"directory": "packages/babel-parser"
},
"main": "./lib/index.js",
"types": "./typings/babel-parser.d.ts",
"files": [
"bin",
"lib",
"typings"
],
"engines": {
"node": ">=6.0.0"
},
"devDependencies": {
"@babel-baseline/parser": "npm:@babel/parser@^7.14.5",
"@babel/code-frame": "7.14.5",
"@babel/helper-fixtures": "7.14.5",
"@babel/helper-validator-identifier": "7.14.5",
"benchmark": "^2.1.4",
"charcodes": "^0.2.0"
}, },
"types": "typings/babel-parser.d.ts", "bin": "./bin/babel-parser.js"
"version": "7.7.3" }
} \ No newline at end of file
// Type definitions for @babel/parser // Type definitions for @babel/parser
// Project: https://github.com/babel/babel/tree/master/packages/babel-parser // Project: https://github.com/babel/babel/tree/main/packages/babel-parser
// Definitions by: Troy Gerwien <https://github.com/yortus> // Definitions by: Troy Gerwien <https://github.com/yortus>
// Marvin Hagemeister <https://github.com/marvinhagemeister> // Marvin Hagemeister <https://github.com/marvinhagemeister>
// Avi Vahl <https://github.com/AviVahl> // Avi Vahl <https://github.com/AviVahl>
...@@ -8,139 +8,168 @@ ...@@ -8,139 +8,168 @@
/** /**
* Parse the provided code as an entire ECMAScript program. * Parse the provided code as an entire ECMAScript program.
*/ */
export function parse(input: string, options?: ParserOptions): import('@babel/types').File; export function parse(
input: string,
options?: ParserOptions
): import("@babel/types").File;
/** /**
* Parse the provided code as a single expression. * Parse the provided code as a single expression.
*/ */
export function parseExpression(input: string, options?: ParserOptions): import('@babel/types').Expression; export function parseExpression(
input: string,
options?: ParserOptions
): import("@babel/types").Expression;
export interface ParserOptions { export interface ParserOptions {
/** /**
* By default, import and export declarations can only appear at a program's top level. * By default, import and export declarations can only appear at a program's top level.
* Setting this option to true allows them anywhere where a statement is allowed. * Setting this option to true allows them anywhere where a statement is allowed.
*/ */
allowImportExportEverywhere?: boolean; allowImportExportEverywhere?: boolean;
/** /**
* By default, await use is not allowed outside of an async function. * By default, await use is not allowed outside of an async function.
* Set this to true to accept such code. * Set this to true to accept such code.
*/ */
allowAwaitOutsideFunction?: boolean; allowAwaitOutsideFunction?: boolean;
/** /**
* By default, a return statement at the top level raises an error. * By default, a return statement at the top level raises an error.
* Set this to true to accept such code. * Set this to true to accept such code.
*/ */
allowReturnOutsideFunction?: boolean; allowReturnOutsideFunction?: boolean;
allowSuperOutsideMethod?: boolean; allowSuperOutsideMethod?: boolean;
/** /**
* By default, exported identifiers must refer to a declared variable. * By default, exported identifiers must refer to a declared variable.
* Set this to true to allow export statements to reference undeclared variables. * Set this to true to allow export statements to reference undeclared variables.
*/ */
allowUndeclaredExports?: boolean; allowUndeclaredExports?: boolean;
/** /**
* Indicate the mode the code should be parsed in. * By default, Babel always throws an error when it finds some invalid code.
* Can be one of "script", "module", or "unambiguous". Defaults to "script". * When this option is set to true, it will store the parsing error and
* "unambiguous" will make @babel/parser attempt to guess, based on the presence * try to continue parsing the invalid input file.
* of ES6 import or export statements. */
* Files with ES6 imports and exports are considered "module" and are otherwise "script". errorRecovery?: boolean;
*/
sourceType?: 'script' | 'module' | 'unambiguous'; /**
* Indicate the mode the code should be parsed in.
/** * Can be one of "script", "module", or "unambiguous". Defaults to "script".
* Correlate output AST nodes with their source filename. * "unambiguous" will make @babel/parser attempt to guess, based on the presence
* Useful when generating code and source maps from the ASTs of multiple input files. * of ES6 import or export statements.
*/ * Files with ES6 imports and exports are considered "module" and are otherwise "script".
sourceFilename?: string; */
sourceType?: "script" | "module" | "unambiguous";
/**
* By default, the first line of code parsed is treated as line 1. /**
* You can provide a line number to alternatively start with. * Correlate output AST nodes with their source filename.
* Useful for integration with other source tools. * Useful when generating code and source maps from the ASTs of multiple input files.
*/ */
startLine?: number; sourceFilename?: string;
/** /**
* Array containing the plugins that you want to enable. * By default, the first line of code parsed is treated as line 1.
*/ * You can provide a line number to alternatively start with.
plugins?: ParserPlugin[]; * Useful for integration with other source tools.
*/
/** startLine?: number;
* Should the parser work in strict mode.
* Defaults to true if sourceType === 'module'. Otherwise, false. /**
*/ * Array containing the plugins that you want to enable.
strictMode?: boolean; */
plugins?: ParserPlugin[];
/**
* Adds a ranges property to each node: [node.start, node.end] /**
*/ * Should the parser work in strict mode.
ranges?: boolean; * Defaults to true if sourceType === 'module'. Otherwise, false.
*/
/** strictMode?: boolean;
* Adds all parsed tokens to a tokens property on the File node.
*/ /**
tokens?: boolean; * Adds a ranges property to each node: [node.start, node.end]
*/
/** ranges?: boolean;
* By default, the parser adds information about parentheses by setting
* `extra.parenthesized` to `true` as needed. /**
* When this option is `true` the parser creates `ParenthesizedExpression` * Adds all parsed tokens to a tokens property on the File node.
* AST nodes instead of using the `extra` property. */
*/ tokens?: boolean;
createParenthesizedExpressions?: boolean;
/**
* By default, the parser adds information about parentheses by setting
* `extra.parenthesized` to `true` as needed.
* When this option is `true` the parser creates `ParenthesizedExpression`
* AST nodes instead of using the `extra` property.
*/
createParenthesizedExpressions?: boolean;
} }
export type ParserPlugin = export type ParserPlugin =
'asyncGenerators' | | "asyncDoExpressions"
'bigInt' | | "asyncGenerators"
'classPrivateMethods' | | "bigInt"
'classPrivateProperties' | | "classPrivateMethods"
'classProperties' | | "classPrivateProperties"
'decorators' | | "classProperties"
'decorators-legacy' | | "classStaticBlock"
'doExpressions' | | "decimal"
'dynamicImport' | | "decorators"
'estree' | | "decorators-legacy"
'exportDefaultFrom' | | "doExpressions"
'exportNamespaceFrom' | // deprecated | "dynamicImport"
'flow' | | "estree"
'flowComments' | | "exportDefaultFrom"
'functionBind' | | "exportNamespaceFrom" // deprecated
'functionSent' | | "flow"
'importMeta' | | "flowComments"
'jsx' | | "functionBind"
'logicalAssignment' | | "functionSent"
'nullishCoalescingOperator' | | "importMeta"
'numericSeparator' | | "jsx"
'objectRestSpread' | | "logicalAssignment"
'optionalCatchBinding' | | "importAssertions"
'optionalChaining' | | "moduleStringNames"
'partialApplication' | | "nullishCoalescingOperator"
'pipelineOperator' | | "numericSeparator"
'placeholders' | | "objectRestSpread"
'throwExpressions' | | "optionalCatchBinding"
'topLevelAwait' | | "optionalChaining"
'typescript' | | "partialApplication"
'v8intrinsic' | | "pipelineOperator"
ParserPluginWithOptions; | "placeholders"
| "privateIn"
| "throwExpressions"
| "topLevelAwait"
| "typescript"
| "v8intrinsic"
| ParserPluginWithOptions;
export type ParserPluginWithOptions = export type ParserPluginWithOptions =
['decorators', DecoratorsPluginOptions] | | ["decorators", DecoratorsPluginOptions]
['pipelineOperator', PipelineOperatorPluginOptions] | | ["pipelineOperator", PipelineOperatorPluginOptions]
['flow', FlowPluginOptions]; | ["recordAndTuple", RecordAndTuplePluginOptions]
| ["flow", FlowPluginOptions];
export interface DecoratorsPluginOptions { export interface DecoratorsPluginOptions {
decoratorsBeforeExport?: boolean; decoratorsBeforeExport?: boolean;
} }
export interface PipelineOperatorPluginOptions { export interface PipelineOperatorPluginOptions {
proposal: 'minimal' | 'smart'; proposal: "fsharp" | "minimal" | "smart";
}
export interface RecordAndTuplePluginOptions {
syntaxType: "bar" | "hash";
} }
export interface FlowPluginOptions { export interface FlowPluginOptions {
all?: boolean; all?: boolean;
} }
export const tokTypes: {
// todo(flow->ts) real token type
[name: string]: any;
};
{ {
"_from": "@babel/plugin-proposal-async-generator-functions@^7.2.0", "name": "@babel/plugin-proposal-async-generator-functions",
"_id": "@babel/plugin-proposal-async-generator-functions@7.7.0", "version": "7.7.0",
"_inBundle": false, "description": "Turn async generator functions into ES2015 generators",
"_integrity": "sha512-ot/EZVvf3mXtZq0Pd0+tSOfGWMizqmOohXmNZg6LNFjHOV+wOPv7BvVYh8oPR8LhpIP3ye8nNooKL50YRWxpYA==", "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-async-generator-functions",
"_location": "/@babel/plugin-proposal-async-generator-functions", "license": "MIT",
"_phantomChildren": {}, "publishConfig": {
"_requested": { "access": "public"
"type": "range",
"registry": true,
"raw": "@babel/plugin-proposal-async-generator-functions@^7.2.0",
"name": "@babel/plugin-proposal-async-generator-functions",
"escapedName": "@babel%2fplugin-proposal-async-generator-functions",
"scope": "@babel",
"rawSpec": "^7.2.0",
"saveSpec": null,
"fetchSpec": "^7.2.0"
}, },
"_requiredBy": [ "main": "lib/index.js",
"/@babel/preset-env" "keywords": [
"babel-plugin"
], ],
"_resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.7.0.tgz",
"_shasum": "83ef2d6044496b4c15d8b4904e2219e6dccc6971",
"_spec": "@babel/plugin-proposal-async-generator-functions@^7.2.0",
"_where": "C:\\Work\\OneDrive - bwstaff\\M4_Lab\\TV3\\NewVersion01\\LAFJLBmf939XYm5gj\\dev\\node_modules\\@babel\\preset-env",
"bundleDependencies": false,
"dependencies": { "dependencies": {
"@babel/helper-plugin-utils": "^7.0.0", "@babel/helper-plugin-utils": "^7.0.0",
"@babel/helper-remap-async-to-generator": "^7.7.0", "@babel/helper-remap-async-to-generator": "^7.7.0",
"@babel/plugin-syntax-async-generators": "^7.2.0" "@babel/plugin-syntax-async-generators": "^7.2.0"
}, },
"deprecated": false,
"description": "Turn async generator functions into ES2015 generators",
"devDependencies": {
"@babel/core": "^7.7.0",
"@babel/helper-plugin-test-runner": "^7.0.0"
},
"gitHead": "97faa83953cb87e332554fa559a4956d202343ea",
"keywords": [
"babel-plugin"
],
"license": "MIT",
"main": "lib/index.js",
"name": "@babel/plugin-proposal-async-generator-functions",
"peerDependencies": { "peerDependencies": {
"@babel/core": "^7.0.0-0" "@babel/core": "^7.0.0-0"
}, },
"publishConfig": { "devDependencies": {
"access": "public" "@babel/core": "^7.7.0",
}, "@babel/helper-plugin-test-runner": "^7.0.0"
"repository": {
"type": "git",
"url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-async-generator-functions"
}, },
"version": "7.7.0" "gitHead": "97faa83953cb87e332554fa559a4956d202343ea"
} }
{ {
"_from": "@babel/plugin-proposal-class-properties@^7.0.0", "name": "@babel/plugin-proposal-class-properties",
"_id": "@babel/plugin-proposal-class-properties@7.7.0", "version": "7.7.0",
"_inBundle": false, "description": "This plugin transforms static class properties as well as properties declared with the property initializer syntax",
"_integrity": "sha512-tufDcFA1Vj+eWvwHN+jvMN6QsV5o+vUlytNKrbMiCeDL0F2j92RURzUsUMWE5EJkLyWxjdUslCsMQa9FWth16A==", "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-class-properties",
"_location": "/@babel/plugin-proposal-class-properties", "license": "MIT",
"_phantomChildren": {}, "publishConfig": {
"_requested": { "access": "public"
"type": "range",
"registry": true,
"raw": "@babel/plugin-proposal-class-properties@^7.0.0",
"name": "@babel/plugin-proposal-class-properties",
"escapedName": "@babel%2fplugin-proposal-class-properties",
"scope": "@babel",
"rawSpec": "^7.0.0",
"saveSpec": null,
"fetchSpec": "^7.0.0"
}, },
"_requiredBy": [ "main": "lib/index.js",
"/@vue/babel-preset-app" "keywords": [
"babel-plugin"
], ],
"_resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.7.0.tgz",
"_shasum": "ac54e728ecf81d90e8f4d2a9c05a890457107917",
"_spec": "@babel/plugin-proposal-class-properties@^7.0.0",
"_where": "C:\\Work\\OneDrive - bwstaff\\M4_Lab\\TV3\\NewVersion01\\LAFJLBmf939XYm5gj\\dev\\node_modules\\@vue\\babel-preset-app",
"bundleDependencies": false,
"dependencies": { "dependencies": {
"@babel/helper-create-class-features-plugin": "^7.7.0", "@babel/helper-create-class-features-plugin": "^7.7.0",
"@babel/helper-plugin-utils": "^7.0.0" "@babel/helper-plugin-utils": "^7.0.0"
}, },
"deprecated": false,
"description": "This plugin transforms static class properties as well as properties declared with the property initializer syntax",
"devDependencies": {
"@babel/core": "^7.7.0",
"@babel/helper-plugin-test-runner": "^7.0.0"
},
"gitHead": "97faa83953cb87e332554fa559a4956d202343ea",
"keywords": [
"babel-plugin"
],
"license": "MIT",
"main": "lib/index.js",
"name": "@babel/plugin-proposal-class-properties",
"peerDependencies": { "peerDependencies": {
"@babel/core": "^7.0.0-0" "@babel/core": "^7.0.0-0"
}, },
"publishConfig": { "devDependencies": {
"access": "public" "@babel/core": "^7.7.0",
}, "@babel/helper-plugin-test-runner": "^7.0.0"
"repository": {
"type": "git",
"url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-class-properties"
}, },
"version": "7.7.0" "gitHead": "97faa83953cb87e332554fa559a4956d202343ea"
} }
{ {
"_from": "@babel/plugin-proposal-decorators@^7.1.0", "name": "@babel/plugin-proposal-decorators",
"_id": "@babel/plugin-proposal-decorators@7.7.0", "version": "7.7.0",
"_inBundle": false, "author": "Logan Smyth <loganfsmyth@gmail.com>",
"_integrity": "sha512-dMCDKmbYFQQTn1+VJjl5hbqlweuHl5oDeMU9B1Q7oAWi0mHxjQQDHdJIK6iW76NE1KJT3zA6dDU3weR1WT5D4A==", "license": "MIT",
"_location": "/@babel/plugin-proposal-decorators", "publishConfig": {
"_phantomChildren": {}, "access": "public"
"_requested": {
"type": "range",
"registry": true,
"raw": "@babel/plugin-proposal-decorators@^7.1.0",
"name": "@babel/plugin-proposal-decorators",
"escapedName": "@babel%2fplugin-proposal-decorators",
"scope": "@babel",
"rawSpec": "^7.1.0",
"saveSpec": null,
"fetchSpec": "^7.1.0"
},
"_requiredBy": [
"/@vue/babel-preset-app"
],
"_resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.7.0.tgz",
"_shasum": "d386a45730a4eb8c03e23a80b6d3dbefd761c9c9",
"_spec": "@babel/plugin-proposal-decorators@^7.1.0",
"_where": "C:\\Work\\OneDrive - bwstaff\\M4_Lab\\TV3\\NewVersion01\\LAFJLBmf939XYm5gj\\dev\\node_modules\\@vue\\babel-preset-app",
"author": {
"name": "Logan Smyth",
"email": "loganfsmyth@gmail.com"
},
"bundleDependencies": false,
"dependencies": {
"@babel/helper-create-class-features-plugin": "^7.7.0",
"@babel/helper-plugin-utils": "^7.0.0",
"@babel/plugin-syntax-decorators": "^7.2.0"
}, },
"deprecated": false,
"description": "Compile class and object decorators to ES5", "description": "Compile class and object decorators to ES5",
"devDependencies": { "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-decorators",
"@babel/core": "^7.7.0", "main": "lib/index.js",
"@babel/helper-plugin-test-runner": "^7.0.0"
},
"gitHead": "97faa83953cb87e332554fa559a4956d202343ea",
"keywords": [ "keywords": [
"babel", "babel",
"babel-plugin", "babel-plugin",
"decorators" "decorators"
], ],
"license": "MIT", "dependencies": {
"main": "lib/index.js", "@babel/helper-create-class-features-plugin": "^7.7.0",
"name": "@babel/plugin-proposal-decorators", "@babel/helper-plugin-utils": "^7.0.0",
"@babel/plugin-syntax-decorators": "^7.2.0"
},
"peerDependencies": { "peerDependencies": {
"@babel/core": "^7.0.0-0" "@babel/core": "^7.0.0-0"
}, },
"publishConfig": { "devDependencies": {
"access": "public" "@babel/core": "^7.7.0",
}, "@babel/helper-plugin-test-runner": "^7.0.0"
"repository": {
"type": "git",
"url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-decorators"
}, },
"version": "7.7.0" "gitHead": "97faa83953cb87e332554fa559a4956d202343ea"
} }
{ {
"_from": "@babel/plugin-proposal-json-strings@^7.2.0", "name": "@babel/plugin-proposal-json-strings",
"_id": "@babel/plugin-proposal-json-strings@7.2.0", "version": "7.2.0",
"_inBundle": false, "description": "Escape U+2028 LINE SEPARATOR and U+2029 PARAGRAPH SEPARATOR in JS strings",
"_integrity": "sha512-MAFV1CA/YVmYwZG0fBQyXhmj0BHCB5egZHCKWIFVv/XCxAeVGIHfos3SwDck4LvCllENIAg7xMKOG5kH0dzyUg==", "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-json-strings",
"_location": "/@babel/plugin-proposal-json-strings", "license": "MIT",
"_phantomChildren": {}, "publishConfig": {
"_requested": { "access": "public"
"type": "range",
"registry": true,
"raw": "@babel/plugin-proposal-json-strings@^7.2.0",
"name": "@babel/plugin-proposal-json-strings",
"escapedName": "@babel%2fplugin-proposal-json-strings",
"scope": "@babel",
"rawSpec": "^7.2.0",
"saveSpec": null,
"fetchSpec": "^7.2.0"
}, },
"_requiredBy": [ "main": "lib/index.js",
"/@babel/preset-env" "keywords": [
"babel-plugin"
], ],
"_resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.2.0.tgz",
"_shasum": "568ecc446c6148ae6b267f02551130891e29f317",
"_spec": "@babel/plugin-proposal-json-strings@^7.2.0",
"_where": "C:\\Work\\OneDrive - bwstaff\\M4_Lab\\TV3\\NewVersion01\\LAFJLBmf939XYm5gj\\dev\\node_modules\\@babel\\preset-env",
"bundleDependencies": false,
"dependencies": { "dependencies": {
"@babel/helper-plugin-utils": "^7.0.0", "@babel/helper-plugin-utils": "^7.0.0",
"@babel/plugin-syntax-json-strings": "^7.2.0" "@babel/plugin-syntax-json-strings": "^7.2.0"
}, },
"deprecated": false,
"description": "Escape U+2028 LINE SEPARATOR and U+2029 PARAGRAPH SEPARATOR in JS strings",
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/helper-plugin-test-runner": "^7.0.0"
},
"keywords": [
"babel-plugin"
],
"license": "MIT",
"main": "lib/index.js",
"name": "@babel/plugin-proposal-json-strings",
"peerDependencies": { "peerDependencies": {
"@babel/core": "^7.0.0-0" "@babel/core": "^7.0.0-0"
}, },
"publishConfig": { "devDependencies": {
"access": "public" "@babel/core": "^7.2.0",
}, "@babel/helper-plugin-test-runner": "^7.0.0"
"repository": { }
"type": "git",
"url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-json-strings"
},
"version": "7.2.0"
} }
{ {
"_from": "@babel/plugin-proposal-object-rest-spread@^7.3.4", "name": "@babel/plugin-proposal-object-rest-spread",
"_id": "@babel/plugin-proposal-object-rest-spread@7.6.2", "version": "7.6.2",
"_inBundle": false, "description": "Compile object rest and spread to ES5",
"_integrity": "sha512-LDBXlmADCsMZV1Y9OQwMc0MyGZ8Ta/zlD9N67BfQT8uYwkRswiu2hU6nJKrjrt/58aH/vqfQlR/9yId/7A2gWw==", "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-object-rest-spread",
"_location": "/@babel/plugin-proposal-object-rest-spread", "license": "MIT",
"_phantomChildren": {}, "publishConfig": {
"_requested": { "access": "public"
"type": "range",
"registry": true,
"raw": "@babel/plugin-proposal-object-rest-spread@^7.3.4",
"name": "@babel/plugin-proposal-object-rest-spread",
"escapedName": "@babel%2fplugin-proposal-object-rest-spread",
"scope": "@babel",
"rawSpec": "^7.3.4",
"saveSpec": null,
"fetchSpec": "^7.3.4"
}, },
"_requiredBy": [ "main": "lib/index.js",
"/@babel/preset-env" "keywords": [
"babel-plugin"
], ],
"_resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.6.2.tgz",
"_shasum": "8ffccc8f3a6545e9f78988b6bf4fe881b88e8096",
"_spec": "@babel/plugin-proposal-object-rest-spread@^7.3.4",
"_where": "C:\\Work\\OneDrive - bwstaff\\M4_Lab\\TV3\\NewVersion01\\LAFJLBmf939XYm5gj\\dev\\node_modules\\@babel\\preset-env",
"bundleDependencies": false,
"dependencies": { "dependencies": {
"@babel/helper-plugin-utils": "^7.0.0", "@babel/helper-plugin-utils": "^7.0.0",
"@babel/plugin-syntax-object-rest-spread": "^7.2.0" "@babel/plugin-syntax-object-rest-spread": "^7.2.0"
}, },
"deprecated": false,
"description": "Compile object rest and spread to ES5",
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/helper-plugin-test-runner": "^7.0.0"
},
"gitHead": "b9cb4af953afb1a5aeed9b18526192ab15bb45c1",
"keywords": [
"babel-plugin"
],
"license": "MIT",
"main": "lib/index.js",
"name": "@babel/plugin-proposal-object-rest-spread",
"peerDependencies": { "peerDependencies": {
"@babel/core": "^7.0.0-0" "@babel/core": "^7.0.0-0"
}, },
"publishConfig": { "devDependencies": {
"access": "public" "@babel/core": "^7.6.2",
}, "@babel/helper-plugin-test-runner": "^7.0.0"
"repository": {
"type": "git",
"url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-object-rest-spread"
}, },
"version": "7.6.2" "gitHead": "b9cb4af953afb1a5aeed9b18526192ab15bb45c1"
} }
{ {
"_from": "@babel/plugin-proposal-optional-catch-binding@^7.2.0", "name": "@babel/plugin-proposal-optional-catch-binding",
"_id": "@babel/plugin-proposal-optional-catch-binding@7.2.0", "version": "7.2.0",
"_inBundle": false, "description": "Compile optional catch bindings",
"_integrity": "sha512-mgYj3jCcxug6KUcX4OBoOJz3CMrwRfQELPQ5560F70YQUBZB7uac9fqaWamKR1iWUzGiK2t0ygzjTScZnVz75g==", "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-optional-catch-binding",
"_location": "/@babel/plugin-proposal-optional-catch-binding", "license": "MIT",
"_phantomChildren": {}, "publishConfig": {
"_requested": { "access": "public"
"type": "range",
"registry": true,
"raw": "@babel/plugin-proposal-optional-catch-binding@^7.2.0",
"name": "@babel/plugin-proposal-optional-catch-binding",
"escapedName": "@babel%2fplugin-proposal-optional-catch-binding",
"scope": "@babel",
"rawSpec": "^7.2.0",
"saveSpec": null,
"fetchSpec": "^7.2.0"
}, },
"_requiredBy": [ "main": "lib/index.js",
"/@babel/preset-env" "keywords": [
"babel-plugin"
], ],
"_resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.2.0.tgz",
"_shasum": "135d81edb68a081e55e56ec48541ece8065c38f5",
"_spec": "@babel/plugin-proposal-optional-catch-binding@^7.2.0",
"_where": "C:\\Work\\OneDrive - bwstaff\\M4_Lab\\TV3\\NewVersion01\\LAFJLBmf939XYm5gj\\dev\\node_modules\\@babel\\preset-env",
"bundleDependencies": false,
"dependencies": { "dependencies": {
"@babel/helper-plugin-utils": "^7.0.0", "@babel/helper-plugin-utils": "^7.0.0",
"@babel/plugin-syntax-optional-catch-binding": "^7.2.0" "@babel/plugin-syntax-optional-catch-binding": "^7.2.0"
}, },
"deprecated": false,
"description": "Compile optional catch bindings",
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/helper-plugin-test-runner": "^7.0.0"
},
"keywords": [
"babel-plugin"
],
"license": "MIT",
"main": "lib/index.js",
"name": "@babel/plugin-proposal-optional-catch-binding",
"peerDependencies": { "peerDependencies": {
"@babel/core": "^7.0.0-0" "@babel/core": "^7.0.0-0"
}, },
"publishConfig": { "devDependencies": {
"access": "public" "@babel/core": "^7.2.0",
}, "@babel/helper-plugin-test-runner": "^7.0.0"
"repository": { }
"type": "git",
"url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-optional-catch-binding"
},
"version": "7.2.0"
} }
{ {
"_from": "@babel/plugin-proposal-unicode-property-regex@^7.2.0", "name": "@babel/plugin-proposal-unicode-property-regex",
"_id": "@babel/plugin-proposal-unicode-property-regex@7.7.0", "version": "7.7.0",
"_inBundle": false,
"_integrity": "sha512-mk34H+hp7kRBWJOOAR0ZMGCydgKMD4iN9TpDRp3IIcbunltxEY89XSimc6WbtSLCDrwcdy/EEw7h5CFCzxTchw==",
"_location": "/@babel/plugin-proposal-unicode-property-regex",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "@babel/plugin-proposal-unicode-property-regex@^7.2.0",
"name": "@babel/plugin-proposal-unicode-property-regex",
"escapedName": "@babel%2fplugin-proposal-unicode-property-regex",
"scope": "@babel",
"rawSpec": "^7.2.0",
"saveSpec": null,
"fetchSpec": "^7.2.0"
},
"_requiredBy": [
"/@babel/preset-env"
],
"_resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.7.0.tgz",
"_shasum": "549fe1717a1bd0a2a7e63163841cb37e78179d5d",
"_spec": "@babel/plugin-proposal-unicode-property-regex@^7.2.0",
"_where": "C:\\Work\\OneDrive - bwstaff\\M4_Lab\\TV3\\NewVersion01\\LAFJLBmf939XYm5gj\\dev\\node_modules\\@babel\\preset-env",
"bugs": {
"url": "https://github.com/babel/babel/issues"
},
"bundleDependencies": false,
"dependencies": {
"@babel/helper-create-regexp-features-plugin": "^7.7.0",
"@babel/helper-plugin-utils": "^7.0.0"
},
"deprecated": false,
"description": "Compile Unicode property escapes in Unicode regular expressions to ES5.", "description": "Compile Unicode property escapes in Unicode regular expressions to ES5.",
"devDependencies": { "homepage": "https://babeljs.io/",
"@babel/core": "^7.7.0", "license": "MIT",
"@babel/helper-plugin-test-runner": "^7.0.0" "publishConfig": {
"access": "public"
}, },
"main": "lib/index.js",
"engines": { "engines": {
"node": ">=4" "node": ">=4"
}, },
"gitHead": "97faa83953cb87e332554fa559a4956d202343ea",
"homepage": "https://babeljs.io/",
"keywords": [ "keywords": [
"babel-plugin", "babel-plugin",
"regex", "regex",
...@@ -50,18 +19,18 @@ ...@@ -50,18 +19,18 @@
"unicode properties", "unicode properties",
"unicode" "unicode"
], ],
"license": "MIT", "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-unicode-property-regex",
"main": "lib/index.js", "bugs": "https://github.com/babel/babel/issues",
"name": "@babel/plugin-proposal-unicode-property-regex", "dependencies": {
"@babel/helper-create-regexp-features-plugin": "^7.7.0",
"@babel/helper-plugin-utils": "^7.0.0"
},
"peerDependencies": { "peerDependencies": {
"@babel/core": "^7.0.0-0" "@babel/core": "^7.0.0-0"
}, },
"publishConfig": { "devDependencies": {
"access": "public" "@babel/core": "^7.7.0",
}, "@babel/helper-plugin-test-runner": "^7.0.0"
"repository": {
"type": "git",
"url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-unicode-property-regex"
}, },
"version": "7.7.0" "gitHead": "97faa83953cb87e332554fa559a4956d202343ea"
} }
{ {
"_from": "@babel/plugin-syntax-async-generators@^7.2.0", "name": "@babel/plugin-syntax-async-generators",
"_id": "@babel/plugin-syntax-async-generators@7.2.0", "version": "7.2.0",
"_inBundle": false,
"_integrity": "sha512-1ZrIRBv2t0GSlcwVoQ6VgSLpLgiN/FVQUzt9znxo7v2Ov4jJrs8RY8tv0wvDmFN3qIdMKWrmMMW6yZ0G19MfGg==",
"_location": "/@babel/plugin-syntax-async-generators",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "@babel/plugin-syntax-async-generators@^7.2.0",
"name": "@babel/plugin-syntax-async-generators",
"escapedName": "@babel%2fplugin-syntax-async-generators",
"scope": "@babel",
"rawSpec": "^7.2.0",
"saveSpec": null,
"fetchSpec": "^7.2.0"
},
"_requiredBy": [
"/@babel/plugin-proposal-async-generator-functions",
"/@babel/preset-env"
],
"_resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.2.0.tgz",
"_shasum": "69e1f0db34c6f5a0cf7e2b3323bf159a76c8cb7f",
"_spec": "@babel/plugin-syntax-async-generators@^7.2.0",
"_where": "C:\\Work\\OneDrive - bwstaff\\M4_Lab\\TV3\\NewVersion01\\LAFJLBmf939XYm5gj\\dev\\node_modules\\@babel\\preset-env",
"bundleDependencies": false,
"dependencies": {
"@babel/helper-plugin-utils": "^7.0.0"
},
"deprecated": false,
"description": "Allow parsing of async generator functions", "description": "Allow parsing of async generator functions",
"devDependencies": { "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-async-generators",
"@babel/core": "^7.2.0" "license": "MIT",
"publishConfig": {
"access": "public"
}, },
"main": "lib/index.js",
"keywords": [ "keywords": [
"babel-plugin" "babel-plugin"
], ],
"license": "MIT", "dependencies": {
"main": "lib/index.js", "@babel/helper-plugin-utils": "^7.0.0"
"name": "@babel/plugin-syntax-async-generators", },
"peerDependencies": { "peerDependencies": {
"@babel/core": "^7.0.0-0" "@babel/core": "^7.0.0-0"
}, },
"publishConfig": { "devDependencies": {
"access": "public" "@babel/core": "^7.2.0"
}, }
"repository": {
"type": "git",
"url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-async-generators"
},
"version": "7.2.0"
} }
{ {
"_from": "@babel/plugin-syntax-decorators@^7.2.0", "name": "@babel/plugin-syntax-decorators",
"_id": "@babel/plugin-syntax-decorators@7.2.0", "version": "7.2.0",
"_inBundle": false,
"_integrity": "sha512-38QdqVoXdHUQfTpZo3rQwqQdWtCn5tMv4uV6r2RMfTqNBuv4ZBhz79SfaQWKTVmxHjeFv/DnXVC/+agHCklYWA==",
"_location": "/@babel/plugin-syntax-decorators",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "@babel/plugin-syntax-decorators@^7.2.0",
"name": "@babel/plugin-syntax-decorators",
"escapedName": "@babel%2fplugin-syntax-decorators",
"scope": "@babel",
"rawSpec": "^7.2.0",
"saveSpec": null,
"fetchSpec": "^7.2.0"
},
"_requiredBy": [
"/@babel/plugin-proposal-decorators"
],
"_resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.2.0.tgz",
"_shasum": "c50b1b957dcc69e4b1127b65e1c33eef61570c1b",
"_spec": "@babel/plugin-syntax-decorators@^7.2.0",
"_where": "C:\\Work\\OneDrive - bwstaff\\M4_Lab\\TV3\\NewVersion01\\LAFJLBmf939XYm5gj\\dev\\node_modules\\@babel\\plugin-proposal-decorators",
"bundleDependencies": false,
"dependencies": {
"@babel/helper-plugin-utils": "^7.0.0"
},
"deprecated": false,
"description": "Allow parsing of decorators", "description": "Allow parsing of decorators",
"devDependencies": { "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-decorators",
"@babel/core": "^7.2.0" "license": "MIT",
"publishConfig": {
"access": "public"
}, },
"main": "lib/index.js",
"keywords": [ "keywords": [
"babel-plugin" "babel-plugin"
], ],
"license": "MIT", "dependencies": {
"main": "lib/index.js", "@babel/helper-plugin-utils": "^7.0.0"
"name": "@babel/plugin-syntax-decorators", },
"peerDependencies": { "peerDependencies": {
"@babel/core": "^7.0.0-0" "@babel/core": "^7.0.0-0"
}, },
"publishConfig": { "devDependencies": {
"access": "public" "@babel/core": "^7.2.0"
}, }
"repository": {
"type": "git",
"url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-decorators"
},
"version": "7.2.0"
} }
{ {
"_from": "@babel/plugin-syntax-dynamic-import@^7.0.0", "name": "@babel/plugin-syntax-dynamic-import",
"_id": "@babel/plugin-syntax-dynamic-import@7.2.0", "version": "7.2.0",
"_inBundle": false,
"_integrity": "sha512-mVxuJ0YroI/h/tbFTPGZR8cv6ai+STMKNBq0f8hFxsxWjl94qqhsb+wXbpNMDPU3cfR1TIsVFzU3nXyZMqyK4w==",
"_location": "/@babel/plugin-syntax-dynamic-import",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "@babel/plugin-syntax-dynamic-import@^7.0.0",
"name": "@babel/plugin-syntax-dynamic-import",
"escapedName": "@babel%2fplugin-syntax-dynamic-import",
"scope": "@babel",
"rawSpec": "^7.0.0",
"saveSpec": null,
"fetchSpec": "^7.0.0"
},
"_requiredBy": [
"/@vue/babel-preset-app"
],
"_resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.2.0.tgz",
"_shasum": "69c159ffaf4998122161ad8ebc5e6d1f55df8612",
"_spec": "@babel/plugin-syntax-dynamic-import@^7.0.0",
"_where": "C:\\Work\\OneDrive - bwstaff\\M4_Lab\\TV3\\NewVersion01\\LAFJLBmf939XYm5gj\\dev\\node_modules\\@vue\\babel-preset-app",
"bundleDependencies": false,
"dependencies": {
"@babel/helper-plugin-utils": "^7.0.0"
},
"deprecated": false,
"description": "Allow parsing of import()", "description": "Allow parsing of import()",
"devDependencies": { "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-dynamic-import",
"@babel/core": "^7.2.0" "license": "MIT",
"publishConfig": {
"access": "public"
}, },
"main": "lib/index.js",
"keywords": [ "keywords": [
"babel-plugin" "babel-plugin"
], ],
"license": "MIT", "dependencies": {
"main": "lib/index.js", "@babel/helper-plugin-utils": "^7.0.0"
"name": "@babel/plugin-syntax-dynamic-import", },
"peerDependencies": { "peerDependencies": {
"@babel/core": "^7.0.0-0" "@babel/core": "^7.0.0-0"
}, },
"publishConfig": { "devDependencies": {
"access": "public" "@babel/core": "^7.2.0"
}, }
"repository": {
"type": "git",
"url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-dynamic-import"
},
"version": "7.2.0"
} }
{ {
"_from": "@babel/plugin-syntax-json-strings@^7.2.0", "name": "@babel/plugin-syntax-json-strings",
"_id": "@babel/plugin-syntax-json-strings@7.2.0", "version": "7.2.0",
"_inBundle": false,
"_integrity": "sha512-5UGYnMSLRE1dqqZwug+1LISpA403HzlSfsg6P9VXU6TBjcSHeNlw4DxDx7LgpF+iKZoOG/+uzqoRHTdcUpiZNg==",
"_location": "/@babel/plugin-syntax-json-strings",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "@babel/plugin-syntax-json-strings@^7.2.0",
"name": "@babel/plugin-syntax-json-strings",
"escapedName": "@babel%2fplugin-syntax-json-strings",
"scope": "@babel",
"rawSpec": "^7.2.0",
"saveSpec": null,
"fetchSpec": "^7.2.0"
},
"_requiredBy": [
"/@babel/plugin-proposal-json-strings",
"/@babel/preset-env"
],
"_resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.2.0.tgz",
"_shasum": "72bd13f6ffe1d25938129d2a186b11fd62951470",
"_spec": "@babel/plugin-syntax-json-strings@^7.2.0",
"_where": "C:\\Work\\OneDrive - bwstaff\\M4_Lab\\TV3\\NewVersion01\\LAFJLBmf939XYm5gj\\dev\\node_modules\\@babel\\preset-env",
"bundleDependencies": false,
"dependencies": {
"@babel/helper-plugin-utils": "^7.0.0"
},
"deprecated": false,
"description": "Allow parsing of the U+2028 LINE SEPARATOR and U+2029 PARAGRAPH SEPARATOR in JS strings", "description": "Allow parsing of the U+2028 LINE SEPARATOR and U+2029 PARAGRAPH SEPARATOR in JS strings",
"devDependencies": { "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-json-strings",
"@babel/core": "^7.2.0" "license": "MIT",
"publishConfig": {
"access": "public"
}, },
"main": "lib/index.js",
"keywords": [ "keywords": [
"babel-plugin" "babel-plugin"
], ],
"license": "MIT", "dependencies": {
"main": "lib/index.js", "@babel/helper-plugin-utils": "^7.0.0"
"name": "@babel/plugin-syntax-json-strings", },
"peerDependencies": { "peerDependencies": {
"@babel/core": "^7.0.0-0" "@babel/core": "^7.0.0-0"
}, },
"publishConfig": { "devDependencies": {
"access": "public" "@babel/core": "^7.2.0"
}, }
"repository": {
"type": "git",
"url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-json-strings"
},
"version": "7.2.0"
} }
{ {
"_from": "@babel/plugin-syntax-jsx@^7.0.0", "name": "@babel/plugin-syntax-jsx",
"_id": "@babel/plugin-syntax-jsx@7.2.0", "version": "7.2.0",
"_inBundle": false,
"_integrity": "sha512-VyN4QANJkRW6lDBmENzRszvZf3/4AXaj9YR7GwrWeeN9tEBPuXbmDYVU9bYBN0D70zCWVwUy0HWq2553VCb6Hw==",
"_location": "/@babel/plugin-syntax-jsx",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "@babel/plugin-syntax-jsx@^7.0.0",
"name": "@babel/plugin-syntax-jsx",
"escapedName": "@babel%2fplugin-syntax-jsx",
"scope": "@babel",
"rawSpec": "^7.0.0",
"saveSpec": null,
"fetchSpec": "^7.0.0"
},
"_requiredBy": [
"/@vue/babel-plugin-transform-vue-jsx",
"/@vue/babel-preset-app",
"/@vue/babel-sugar-functional-vue",
"/@vue/babel-sugar-inject-h",
"/@vue/babel-sugar-v-model",
"/@vue/babel-sugar-v-on"
],
"_resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.2.0.tgz",
"_shasum": "0b85a3b4bc7cdf4cc4b8bf236335b907ca22e7c7",
"_spec": "@babel/plugin-syntax-jsx@^7.0.0",
"_where": "C:\\Work\\OneDrive - bwstaff\\M4_Lab\\TV3\\NewVersion01\\LAFJLBmf939XYm5gj\\dev\\node_modules\\@vue\\babel-preset-app",
"bundleDependencies": false,
"dependencies": {
"@babel/helper-plugin-utils": "^7.0.0"
},
"deprecated": false,
"description": "Allow parsing of jsx", "description": "Allow parsing of jsx",
"devDependencies": { "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-jsx",
"@babel/core": "^7.2.0" "license": "MIT",
"publishConfig": {
"access": "public"
}, },
"main": "lib/index.js",
"keywords": [ "keywords": [
"babel-plugin" "babel-plugin"
], ],
"license": "MIT", "dependencies": {
"main": "lib/index.js", "@babel/helper-plugin-utils": "^7.0.0"
"name": "@babel/plugin-syntax-jsx", },
"peerDependencies": { "peerDependencies": {
"@babel/core": "^7.0.0-0" "@babel/core": "^7.0.0-0"
}, },
"publishConfig": { "devDependencies": {
"access": "public" "@babel/core": "^7.2.0"
}, }
"repository": {
"type": "git",
"url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-jsx"
},
"version": "7.2.0"
} }
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment