diff --git a/build/expo.js b/build/expo.js index 383be7e2..34442d78 100644 --- a/build/expo.js +++ b/build/expo.js @@ -1,19 +1,19 @@ "use strict"; -const __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { - function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } - return new (P || (P = Promise))(function (resolve, reject) { - function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } - function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } - function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } - step((generator = generator.apply(thisArg, _arguments || [])).next()); - }); +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); }; -const __importStar = (this && this.__importStar) || function (mod) { - if (mod && mod.__esModule) return mod; - const result = {}; - if (mod != null) for (const k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k]; - result["default"] = mod; - return result; +var __importStar = (this && this.__importStar) || function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k]; + result["default"] = mod; + return result; }; Object.defineProperty(exports, "__esModule", { value: true }); const core = __importStar(require("@actions/core")); @@ -24,13 +24,13 @@ const cli = __importStar(require("@actions/exec")); * It uses the `EXPO_CLI_PASSWORD` environment variable for improved security. */ function authenticate(username, password) { - return __awaiter(this, void 0, void 0, function* () { - if (!username || !password) { - return core.debug('Skipping authentication, `expo-username` and/or `expo-password` not set...'); - } - yield cli.exec('expo', ['login', `--username=${username}`], { - env: Object.assign(Object.assign({}, process.env), { EXPO_CLI_PASSWORD: password }), - }); - }); + return __awaiter(this, void 0, void 0, function* () { + if (!username || !password) { + return core.debug('Skipping authentication, `expo-username` and/or `expo-password` not set...'); + } + yield cli.exec('expo', ['login', `--username=${username}`], { + env: Object.assign(Object.assign({}, process.env), { EXPO_CLI_PASSWORD: password }), + }); + }); } exports.authenticate = authenticate; diff --git a/build/index.js b/build/index.js index d7b3b27e..f256cc0a 100644 --- a/build/index.js +++ b/build/index.js @@ -1,23 +1,23 @@ "use strict"; -const __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { - function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } - return new (P || (P = Promise))(function (resolve, reject) { - function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } - function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } - function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } - step((generator = generator.apply(thisArg, _arguments || [])).next()); - }); +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); }; Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("@actions/core"); const expo_1 = require("./expo"); const install_1 = require("./install"); function run() { - return __awaiter(this, void 0, void 0, function* () { - const path = yield install_1.install(core_1.getInput('expo-version') || 'latest', core_1.getInput('expo-packager') || 'npm'); - core_1.addPath(path); - yield expo_1.authenticate(core_1.getInput('expo-username'), core_1.getInput('expo-password')); - }); + return __awaiter(this, void 0, void 0, function* () { + const path = yield install_1.install(core_1.getInput('expo-version') || 'latest', core_1.getInput('expo-packager') || 'npm'); + core_1.addPath(path); + yield expo_1.authenticate(core_1.getInput('expo-username'), core_1.getInput('expo-password')); + }); } exports.run = run; run(); diff --git a/build/install.js b/build/install.js index cc36a828..256e1533 100644 --- a/build/install.js +++ b/build/install.js @@ -1,25 +1,26 @@ "use strict"; -const __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { - function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } - return new (P || (P = Promise))(function (resolve, reject) { - function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } - function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } - function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } - step((generator = generator.apply(thisArg, _arguments || [])).next()); - }); +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); }; -const __importStar = (this && this.__importStar) || function (mod) { - if (mod && mod.__esModule) return mod; - const result = {}; - if (mod != null) for (const k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k]; - result["default"] = mod; - return result; +var __importStar = (this && this.__importStar) || function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k]; + result["default"] = mod; + return result; }; Object.defineProperty(exports, "__esModule", { value: true }); const cache = __importStar(require("@actions/tool-cache")); const cli = __importStar(require("@actions/exec")); const io = __importStar(require("@actions/io")); const path = __importStar(require("path")); +// eslint-disable-next-line @typescript-eslint/no-var-requires const registry = require('libnpm'); /** * Resolve the provided semver to exact version of `expo-cli`. @@ -27,9 +28,9 @@ const registry = require('libnpm'); * It's used to determine the cached version of `expo-cli`. */ function resolve(version) { - return __awaiter(this, void 0, void 0, function* () { - return (yield registry.manifest(`expo-cli@${version}`)).version; - }); + return __awaiter(this, void 0, void 0, function* () { + return (yield registry.manifest(`expo-cli@${version}`)).version; + }); } exports.resolve = resolve; /** @@ -38,15 +39,15 @@ exports.resolve = resolve; * It returns the path where Expo is installed. */ function install(version, packager) { - return __awaiter(this, void 0, void 0, function* () { - const exact = yield resolve(version); - let root = yield fromCache(exact); - if (!root) { - root = yield fromPackager(exact, packager); - root = yield toCache(exact, root); - } - return path.join(root, 'node_modules', '.bin'); - }); + return __awaiter(this, void 0, void 0, function* () { + const exact = yield resolve(version); + let root = yield fromCache(exact); + if (!root) { + root = yield fromPackager(exact, packager); + root = yield toCache(exact, root); + } + return path.join(root, 'node_modules', '.bin'); + }); } exports.install = install; /** @@ -54,13 +55,13 @@ exports.install = install; * It creates a temporary directory to store all required files. */ function fromPackager(version, packager) { - return __awaiter(this, void 0, void 0, function* () { - const root = process.env['RUNNER_TEMP'] || ''; - const tool = yield io.which(packager); - yield io.mkdirP(root); - yield cli.exec(tool, ['add', `expo-cli@${version}`], { cwd: root }); - return root; - }); + return __awaiter(this, void 0, void 0, function* () { + const root = process.env['RUNNER_TEMP'] || ''; + const tool = yield io.which(packager); + yield io.mkdirP(root); + yield cli.exec(tool, ['add', `expo-cli@${version}`], { cwd: root }); + return root; + }); } exports.fromPackager = fromPackager; /** @@ -70,9 +71,9 @@ exports.fromPackager = fromPackager; * @see https://github.com/actions/toolkit/issues/47 */ function fromCache(version) { - return __awaiter(this, void 0, void 0, function* () { - return cache.find('expo-cli', version); - }); + return __awaiter(this, void 0, void 0, function* () { + return cache.find('expo-cli', version); + }); } exports.fromCache = fromCache; /** @@ -82,8 +83,8 @@ exports.fromCache = fromCache; * @see https://github.com/actions/toolkit/issues/47 */ function toCache(version, root) { - return __awaiter(this, void 0, void 0, function* () { - return cache.cacheDir(root, 'expo-cli', version); - }); + return __awaiter(this, void 0, void 0, function* () { + return cache.cacheDir(root, 'expo-cli', version); + }); } exports.toCache = toCache; diff --git a/node_modules/@babel/code-frame/package.json b/node_modules/@babel/code-frame/package.json index 9cb17859..3c7349c4 100644 --- a/node_modules/@babel/code-frame/package.json +++ b/node_modules/@babel/code-frame/package.json @@ -27,6 +27,7 @@ "/@babel/core", "/@babel/template", "/@babel/traverse", + "/eslint", "/husky/parse-json", "/jest-message-util" ], diff --git a/node_modules/@types/eslint-visitor-keys/package.json b/node_modules/@types/eslint-visitor-keys/package.json index f6807cfd..3950d93f 100644 --- a/node_modules/@types/eslint-visitor-keys/package.json +++ b/node_modules/@types/eslint-visitor-keys/package.json @@ -1,32 +1,37 @@ { - "_from": "@types/eslint-visitor-keys@^1.0.0", + "_args": [ + [ + "@types/eslint-visitor-keys@1.0.0", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "@types/eslint-visitor-keys@1.0.0", "_id": "@types/eslint-visitor-keys@1.0.0", "_inBundle": false, "_integrity": "sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag==", "_location": "/@types/eslint-visitor-keys", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "@types/eslint-visitor-keys@^1.0.0", + "raw": "@types/eslint-visitor-keys@1.0.0", "name": "@types/eslint-visitor-keys", "escapedName": "@types%2feslint-visitor-keys", "scope": "@types", - "rawSpec": "^1.0.0", + "rawSpec": "1.0.0", "saveSpec": null, - "fetchSpec": "^1.0.0" + "fetchSpec": "1.0.0" }, "_requiredBy": [ "/@typescript-eslint/parser" ], "_resolved": "https://registry.npmjs.org/@types/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz", - "_shasum": "1ee30d79544ca84d68d4b3cdb0af4f205663dd2d", - "_spec": "@types/eslint-visitor-keys@^1.0.0", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/@typescript-eslint/parser", + "_spec": "1.0.0", + "_where": "/mnt/projects/expo/expo-github-action", "bugs": { "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" }, - "bundleDependencies": false, "contributors": [ { "name": "Toru Nagashima", @@ -34,7 +39,6 @@ } ], "dependencies": {}, - "deprecated": false, "description": "TypeScript definitions for eslint-visitor-keys", "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", "license": "MIT", diff --git a/node_modules/@types/json-schema/package.json b/node_modules/@types/json-schema/package.json index 7872df7d..7ba95dcd 100644 --- a/node_modules/@types/json-schema/package.json +++ b/node_modules/@types/json-schema/package.json @@ -1,32 +1,38 @@ { - "_from": "@types/json-schema@^7.0.3", + "_args": [ + [ + "@types/json-schema@7.0.3", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "@types/json-schema@7.0.3", "_id": "@types/json-schema@7.0.3", "_inBundle": false, "_integrity": "sha512-Il2DtDVRGDcqjDtE+rF8iqg1CArehSK84HZJCT7AMITlyXRBpuPhqGLDQMowraqqu1coEaimg4ZOqggt6L6L+A==", "_location": "/@types/json-schema", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "@types/json-schema@^7.0.3", + "raw": "@types/json-schema@7.0.3", "name": "@types/json-schema", "escapedName": "@types%2fjson-schema", "scope": "@types", - "rawSpec": "^7.0.3", + "rawSpec": "7.0.3", "saveSpec": null, - "fetchSpec": "^7.0.3" + "fetchSpec": "7.0.3" }, "_requiredBy": [ - "/@typescript-eslint/experimental-utils" + "/@typescript-eslint/experimental-utils", + "/eslint-plugin-jest/@typescript-eslint/experimental-utils" ], "_resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.3.tgz", - "_shasum": "bdfd69d61e464dcc81b25159c270d75a73c1a636", - "_spec": "@types/json-schema@^7.0.3", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/@typescript-eslint/experimental-utils", + "_spec": "7.0.3", + "_where": "/mnt/projects/expo/expo-github-action", "bugs": { "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" }, - "bundleDependencies": false, "contributors": [ { "name": "Boris Cherny", @@ -46,7 +52,6 @@ } ], "dependencies": {}, - "deprecated": false, "description": "TypeScript definitions for json-schema 4.0, 6.0 and", "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", "license": "MIT", diff --git a/node_modules/@typescript-eslint/eslint-plugin/package.json b/node_modules/@typescript-eslint/eslint-plugin/package.json index dbd2ebcf..f6deae32 100644 --- a/node_modules/@typescript-eslint/eslint-plugin/package.json +++ b/node_modules/@typescript-eslint/eslint-plugin/package.json @@ -1,33 +1,37 @@ { - "_from": "@typescript-eslint/eslint-plugin", + "_args": [ + [ + "@typescript-eslint/eslint-plugin@2.2.0", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "@typescript-eslint/eslint-plugin@2.2.0", "_id": "@typescript-eslint/eslint-plugin@2.2.0", "_inBundle": false, "_integrity": "sha512-rOodtI+IvaO8USa6ValYOrdWm9eQBgqwsY+B0PPiB+aSiK6p6Z4l9jLn/jI3z3WM4mkABAhKIqvGIBl0AFRaLQ==", "_location": "/@typescript-eslint/eslint-plugin", "_phantomChildren": {}, "_requested": { - "type": "tag", + "type": "version", "registry": true, - "raw": "@typescript-eslint/eslint-plugin", + "raw": "@typescript-eslint/eslint-plugin@2.2.0", "name": "@typescript-eslint/eslint-plugin", "escapedName": "@typescript-eslint%2feslint-plugin", "scope": "@typescript-eslint", - "rawSpec": "", + "rawSpec": "2.2.0", "saveSpec": null, - "fetchSpec": "latest" + "fetchSpec": "2.2.0" }, "_requiredBy": [ - "#DEV:/", - "#USER" + "#DEV:/" ], "_resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-2.2.0.tgz", - "_shasum": "cba8caa6ad8df544c46bca674125a31af8c9ac2f", - "_spec": "@typescript-eslint/eslint-plugin", + "_spec": "2.2.0", "_where": "/mnt/projects/expo/expo-github-action", "bugs": { "url": "https://github.com/typescript-eslint/typescript-eslint/issues" }, - "bundleDependencies": false, "dependencies": { "@typescript-eslint/experimental-utils": "2.2.0", "eslint-utils": "^1.4.2", @@ -35,7 +39,6 @@ "regexpp": "^2.0.1", "tsutils": "^3.17.1" }, - "deprecated": false, "description": "TypeScript plugin for ESLint", "devDependencies": { "@types/json-schema": "^7.0.3", diff --git a/node_modules/@typescript-eslint/experimental-utils/package.json b/node_modules/@typescript-eslint/experimental-utils/package.json index bc8c29a2..d2af85de 100644 --- a/node_modules/@typescript-eslint/experimental-utils/package.json +++ b/node_modules/@typescript-eslint/experimental-utils/package.json @@ -1,4 +1,11 @@ { + "_args": [ + [ + "@typescript-eslint/experimental-utils@2.2.0", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, "_from": "@typescript-eslint/experimental-utils@2.2.0", "_id": "@typescript-eslint/experimental-utils@2.2.0", "_inBundle": false, @@ -21,19 +28,16 @@ "/@typescript-eslint/parser" ], "_resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-2.2.0.tgz", - "_shasum": "31d855fbc425168ecf56960c777aacfcca391cff", - "_spec": "@typescript-eslint/experimental-utils@2.2.0", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/@typescript-eslint/eslint-plugin", + "_spec": "2.2.0", + "_where": "/mnt/projects/expo/expo-github-action", "bugs": { "url": "https://github.com/typescript-eslint/typescript-eslint/issues" }, - "bundleDependencies": false, "dependencies": { "@types/json-schema": "^7.0.3", "@typescript-eslint/typescript-estree": "2.2.0", "eslint-scope": "^5.0.0" }, - "deprecated": false, "description": "(Experimental) Utilities for working with TypeScript + ESLint together", "devDependencies": { "typescript": "*" diff --git a/node_modules/@typescript-eslint/parser/package.json b/node_modules/@typescript-eslint/parser/package.json index cd7215eb..33a7b18e 100644 --- a/node_modules/@typescript-eslint/parser/package.json +++ b/node_modules/@typescript-eslint/parser/package.json @@ -1,40 +1,43 @@ { - "_from": "@typescript-eslint/parser", + "_args": [ + [ + "@typescript-eslint/parser@2.2.0", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "@typescript-eslint/parser@2.2.0", "_id": "@typescript-eslint/parser@2.2.0", "_inBundle": false, "_integrity": "sha512-0mf893kj9L65O5sA7wP6EoYvTybefuRFavUNhT7w9kjhkdZodoViwVS+k3D+ZxKhvtL7xGtP/y/cNMJX9S8W4A==", "_location": "/@typescript-eslint/parser", "_phantomChildren": {}, "_requested": { - "type": "tag", + "type": "version", "registry": true, - "raw": "@typescript-eslint/parser", + "raw": "@typescript-eslint/parser@2.2.0", "name": "@typescript-eslint/parser", "escapedName": "@typescript-eslint%2fparser", "scope": "@typescript-eslint", - "rawSpec": "", + "rawSpec": "2.2.0", "saveSpec": null, - "fetchSpec": "latest" + "fetchSpec": "2.2.0" }, "_requiredBy": [ - "#DEV:/", - "#USER" + "#DEV:/" ], "_resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-2.2.0.tgz", - "_shasum": "3cd758ed85ae9be06667beb61bbdf8060f274fb7", - "_spec": "@typescript-eslint/parser", + "_spec": "2.2.0", "_where": "/mnt/projects/expo/expo-github-action", "bugs": { "url": "https://github.com/typescript-eslint/typescript-eslint/issues" }, - "bundleDependencies": false, "dependencies": { "@types/eslint-visitor-keys": "^1.0.0", "@typescript-eslint/experimental-utils": "2.2.0", "@typescript-eslint/typescript-estree": "2.2.0", "eslint-visitor-keys": "^1.1.0" }, - "deprecated": false, "description": "An ESLint custom parser which leverages TypeScript ESTree", "devDependencies": { "@types/glob": "^7.1.1", diff --git a/node_modules/@typescript-eslint/typescript-estree/package.json b/node_modules/@typescript-eslint/typescript-estree/package.json index fbebd81d..864de090 100644 --- a/node_modules/@typescript-eslint/typescript-estree/package.json +++ b/node_modules/@typescript-eslint/typescript-estree/package.json @@ -1,4 +1,11 @@ { + "_args": [ + [ + "@typescript-eslint/typescript-estree@2.2.0", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, "_from": "@typescript-eslint/typescript-estree@2.2.0", "_id": "@typescript-eslint/typescript-estree@2.2.0", "_inBundle": false, @@ -21,20 +28,17 @@ "/@typescript-eslint/parser" ], "_resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-2.2.0.tgz", - "_shasum": "1e2aad5ed573f9f7a8e3261eb79404264c4fc57f", - "_spec": "@typescript-eslint/typescript-estree@2.2.0", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/@typescript-eslint/experimental-utils", + "_spec": "2.2.0", + "_where": "/mnt/projects/expo/expo-github-action", "bugs": { "url": "https://github.com/typescript-eslint/typescript-eslint/issues" }, - "bundleDependencies": false, "dependencies": { "glob": "^7.1.4", "is-glob": "^4.0.1", "lodash.unescape": "4.0.1", "semver": "^6.3.0" }, - "deprecated": false, "description": "A parser that converts TypeScript source code into an ESTree compatible form", "devDependencies": { "@babel/code-frame": "7.5.5", diff --git a/node_modules/acorn-jsx/package.json b/node_modules/acorn-jsx/package.json index e1fd719c..d85866b0 100644 --- a/node_modules/acorn-jsx/package.json +++ b/node_modules/acorn-jsx/package.json @@ -1,32 +1,36 @@ { - "_from": "acorn-jsx@^5.0.2", + "_args": [ + [ + "acorn-jsx@5.0.2", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "acorn-jsx@5.0.2", "_id": "acorn-jsx@5.0.2", "_inBundle": false, "_integrity": "sha512-tiNTrP1MP0QrChmD2DdupCr6HWSFeKVw5d/dHTu4Y7rkAkRhU/Dt7dphAfIUyxtHpl/eBVip5uTNSpQJHylpAw==", "_location": "/acorn-jsx", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "acorn-jsx@^5.0.2", + "raw": "acorn-jsx@5.0.2", "name": "acorn-jsx", "escapedName": "acorn-jsx", - "rawSpec": "^5.0.2", + "rawSpec": "5.0.2", "saveSpec": null, - "fetchSpec": "^5.0.2" + "fetchSpec": "5.0.2" }, "_requiredBy": [ "/espree" ], "_resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.0.2.tgz", - "_shasum": "84b68ea44b373c4f8686023a551f61a21b7c4a4f", - "_spec": "acorn-jsx@^5.0.2", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/espree", + "_spec": "5.0.2", + "_where": "/mnt/projects/expo/expo-github-action", "bugs": { "url": "https://github.com/RReverser/acorn-jsx/issues" }, - "bundleDependencies": false, - "deprecated": false, "description": "Alternative, faster React.js JSX parser", "devDependencies": { "acorn": "^7.0.0" diff --git a/node_modules/ansi-escapes/package.json b/node_modules/ansi-escapes/package.json index 67a2b5a5..87b8aa81 100644 --- a/node_modules/ansi-escapes/package.json +++ b/node_modules/ansi-escapes/package.json @@ -24,6 +24,7 @@ }, "_requiredBy": [ "/@jest/core", + "/inquirer", "/jest-watcher" ], "_resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", diff --git a/node_modules/ansi-styles/package.json b/node_modules/ansi-styles/package.json index 35bffb6a..b906cc01 100644 --- a/node_modules/ansi-styles/package.json +++ b/node_modules/ansi-styles/package.json @@ -26,6 +26,7 @@ "/chalk", "/expect", "/pretty-format", + "/slice-ansi", "/wrap-ansi" ], "_resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", diff --git a/node_modules/astral-regex/package.json b/node_modules/astral-regex/package.json index fb6859af..0d8225cd 100644 --- a/node_modules/astral-regex/package.json +++ b/node_modules/astral-regex/package.json @@ -23,6 +23,7 @@ "fetchSpec": "1.0.0" }, "_requiredBy": [ + "/slice-ansi", "/string-length" ], "_resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz", diff --git a/node_modules/callsites/package.json b/node_modules/callsites/package.json index 015686e9..5f694a12 100644 --- a/node_modules/callsites/package.json +++ b/node_modules/callsites/package.json @@ -24,7 +24,8 @@ }, "_requiredBy": [ "/@jest/source-map", - "/jest-util" + "/jest-util", + "/parent-module" ], "_resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", "_spec": "3.1.0", diff --git a/node_modules/chalk/package.json b/node_modules/chalk/package.json index a725284f..380fffa3 100644 --- a/node_modules/chalk/package.json +++ b/node_modules/chalk/package.json @@ -29,7 +29,9 @@ "/@jest/reporters", "/@jest/transform", "/babel-jest", + "/eslint", "/husky", + "/inquirer", "/jest-config", "/jest-diff", "/jest-each", diff --git a/node_modules/chardet/package.json b/node_modules/chardet/package.json index 861b64d3..aea76ca1 100644 --- a/node_modules/chardet/package.json +++ b/node_modules/chardet/package.json @@ -1,27 +1,33 @@ { - "_from": "chardet@^0.7.0", + "_args": [ + [ + "chardet@0.7.0", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "chardet@0.7.0", "_id": "chardet@0.7.0", "_inBundle": false, "_integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", "_location": "/chardet", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "chardet@^0.7.0", + "raw": "chardet@0.7.0", "name": "chardet", "escapedName": "chardet", - "rawSpec": "^0.7.0", + "rawSpec": "0.7.0", "saveSpec": null, - "fetchSpec": "^0.7.0" + "fetchSpec": "0.7.0" }, "_requiredBy": [ "/external-editor" ], "_resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", - "_shasum": "90094849f0937f2eedc2425d0d28a9e5f0cbad9e", - "_spec": "chardet@^0.7.0", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/external-editor", + "_spec": "0.7.0", + "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "Dmitry Shirokov", "email": "deadrunk@gmail.com" @@ -29,7 +35,6 @@ "bugs": { "url": "http://github.com/runk/node-chardet/issues" }, - "bundleDependencies": false, "contributors": [ { "name": "@spikying" @@ -47,7 +52,6 @@ "name": "@zevanty" } ], - "deprecated": false, "description": "Character detector", "devDependencies": { "github-publish-release": "^5.0.0", diff --git a/node_modules/cli-cursor/package.json b/node_modules/cli-cursor/package.json index f632f275..0719d4f0 100644 --- a/node_modules/cli-cursor/package.json +++ b/node_modules/cli-cursor/package.json @@ -1,27 +1,33 @@ { - "_from": "cli-cursor@^2.1.0", + "_args": [ + [ + "cli-cursor@2.1.0", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "cli-cursor@2.1.0", "_id": "cli-cursor@2.1.0", "_inBundle": false, "_integrity": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=", "_location": "/cli-cursor", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "cli-cursor@^2.1.0", + "raw": "cli-cursor@2.1.0", "name": "cli-cursor", "escapedName": "cli-cursor", - "rawSpec": "^2.1.0", + "rawSpec": "2.1.0", "saveSpec": null, - "fetchSpec": "^2.1.0" + "fetchSpec": "2.1.0" }, "_requiredBy": [ "/inquirer" ], "_resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", - "_shasum": "b35dac376479facc3e94747d41d0d0f5238ffcb5", - "_spec": "cli-cursor@^2.1.0", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/inquirer", + "_spec": "2.1.0", + "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", @@ -30,11 +36,9 @@ "bugs": { "url": "https://github.com/sindresorhus/cli-cursor/issues" }, - "bundleDependencies": false, "dependencies": { "restore-cursor": "^2.0.0" }, - "deprecated": false, "description": "Toggle the CLI cursor", "devDependencies": { "ava": "*", diff --git a/node_modules/cli-width/package.json b/node_modules/cli-width/package.json index a577530d..2cb101e0 100644 --- a/node_modules/cli-width/package.json +++ b/node_modules/cli-width/package.json @@ -1,27 +1,33 @@ { - "_from": "cli-width@^2.0.0", + "_args": [ + [ + "cli-width@2.2.0", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "cli-width@2.2.0", "_id": "cli-width@2.2.0", "_inBundle": false, "_integrity": "sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk=", "_location": "/cli-width", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "cli-width@^2.0.0", + "raw": "cli-width@2.2.0", "name": "cli-width", "escapedName": "cli-width", - "rawSpec": "^2.0.0", + "rawSpec": "2.2.0", "saveSpec": null, - "fetchSpec": "^2.0.0" + "fetchSpec": "2.2.0" }, "_requiredBy": [ "/inquirer" ], "_resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.2.0.tgz", - "_shasum": "ff19ede8a9a5e579324147b0c11f0fbcbabed639", - "_spec": "cli-width@^2.0.0", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/inquirer", + "_spec": "2.2.0", + "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "Ilya Radchenko", "email": "ilya@burstcreations.com" @@ -29,8 +35,6 @@ "bugs": { "url": "https://github.com/knownasilya/cli-width/issues" }, - "bundleDependencies": false, - "deprecated": false, "description": "Get stdout window width, with two fallbacks, tty and then a default.", "devDependencies": { "coveralls": "^2.11.4", diff --git a/node_modules/cross-spawn/package.json b/node_modules/cross-spawn/package.json index 5ea7ffbc..8eeffd57 100644 --- a/node_modules/cross-spawn/package.json +++ b/node_modules/cross-spawn/package.json @@ -23,6 +23,7 @@ "fetchSpec": "6.0.5" }, "_requiredBy": [ + "/eslint", "/execa" ], "_resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", diff --git a/node_modules/doctrine/package.json b/node_modules/doctrine/package.json index 97a7514b..03503e76 100644 --- a/node_modules/doctrine/package.json +++ b/node_modules/doctrine/package.json @@ -1,35 +1,39 @@ { - "_from": "doctrine@^3.0.0", + "_args": [ + [ + "doctrine@3.0.0", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "doctrine@3.0.0", "_id": "doctrine@3.0.0", "_inBundle": false, "_integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", "_location": "/doctrine", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "doctrine@^3.0.0", + "raw": "doctrine@3.0.0", "name": "doctrine", "escapedName": "doctrine", - "rawSpec": "^3.0.0", + "rawSpec": "3.0.0", "saveSpec": null, - "fetchSpec": "^3.0.0" + "fetchSpec": "3.0.0" }, "_requiredBy": [ "/eslint" ], "_resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "_shasum": "addebead72a6574db783639dc87a121773973961", - "_spec": "doctrine@^3.0.0", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/eslint", + "_spec": "3.0.0", + "_where": "/mnt/projects/expo/expo-github-action", "bugs": { "url": "https://github.com/eslint/doctrine/issues" }, - "bundleDependencies": false, "dependencies": { "esutils": "^2.0.2" }, - "deprecated": false, "description": "JSDoc parser", "devDependencies": { "coveralls": "^3.0.1", diff --git a/node_modules/emoji-regex/package.json b/node_modules/emoji-regex/package.json index 7da917af..1ac7968e 100644 --- a/node_modules/emoji-regex/package.json +++ b/node_modules/emoji-regex/package.json @@ -24,6 +24,7 @@ }, "_requiredBy": [ "/cliui/string-width", + "/table/string-width", "/wrap-ansi/string-width", "/yargs/string-width" ], diff --git a/node_modules/escape-string-regexp/package.json b/node_modules/escape-string-regexp/package.json index f1300dcd..50124928 100644 --- a/node_modules/escape-string-regexp/package.json +++ b/node_modules/escape-string-regexp/package.json @@ -23,7 +23,8 @@ "fetchSpec": "1.0.5" }, "_requiredBy": [ - "/chalk" + "/chalk", + "/figures" ], "_resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", "_spec": "1.0.5", diff --git a/node_modules/eslint-plugin-jest/node_modules/@typescript-eslint/experimental-utils/package.json b/node_modules/eslint-plugin-jest/node_modules/@typescript-eslint/experimental-utils/package.json index a0804d46..1fd7686b 100644 --- a/node_modules/eslint-plugin-jest/node_modules/@typescript-eslint/experimental-utils/package.json +++ b/node_modules/eslint-plugin-jest/node_modules/@typescript-eslint/experimental-utils/package.json @@ -1,38 +1,42 @@ { - "_from": "@typescript-eslint/experimental-utils@^1.13.0", + "_args": [ + [ + "@typescript-eslint/experimental-utils@1.13.0", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "@typescript-eslint/experimental-utils@1.13.0", "_id": "@typescript-eslint/experimental-utils@1.13.0", "_inBundle": false, "_integrity": "sha512-zmpS6SyqG4ZF64ffaJ6uah6tWWWgZ8m+c54XXgwFtUv0jNz8aJAVx8chMCvnk7yl6xwn8d+d96+tWp7fXzTuDg==", "_location": "/eslint-plugin-jest/@typescript-eslint/experimental-utils", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "@typescript-eslint/experimental-utils@^1.13.0", + "raw": "@typescript-eslint/experimental-utils@1.13.0", "name": "@typescript-eslint/experimental-utils", "escapedName": "@typescript-eslint%2fexperimental-utils", "scope": "@typescript-eslint", - "rawSpec": "^1.13.0", + "rawSpec": "1.13.0", "saveSpec": null, - "fetchSpec": "^1.13.0" + "fetchSpec": "1.13.0" }, "_requiredBy": [ "/eslint-plugin-jest" ], "_resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-1.13.0.tgz", - "_shasum": "b08c60d780c0067de2fb44b04b432f540138301e", - "_spec": "@typescript-eslint/experimental-utils@^1.13.0", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/eslint-plugin-jest", + "_spec": "1.13.0", + "_where": "/mnt/projects/expo/expo-github-action", "bugs": { "url": "https://github.com/typescript-eslint/typescript-eslint/issues" }, - "bundleDependencies": false, "dependencies": { "@types/json-schema": "^7.0.3", "@typescript-eslint/typescript-estree": "1.13.0", "eslint-scope": "^4.0.0" }, - "deprecated": false, "description": "(Experimental) Utilities for working with TypeScript + ESLint together", "devDependencies": { "typescript": "*" diff --git a/node_modules/eslint-plugin-jest/node_modules/@typescript-eslint/typescript-estree/package.json b/node_modules/eslint-plugin-jest/node_modules/@typescript-eslint/typescript-estree/package.json index 3ccc23c9..4c9a2bf1 100644 --- a/node_modules/eslint-plugin-jest/node_modules/@typescript-eslint/typescript-estree/package.json +++ b/node_modules/eslint-plugin-jest/node_modules/@typescript-eslint/typescript-estree/package.json @@ -1,4 +1,11 @@ { + "_args": [ + [ + "@typescript-eslint/typescript-estree@1.13.0", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, "_from": "@typescript-eslint/typescript-estree@1.13.0", "_id": "@typescript-eslint/typescript-estree@1.13.0", "_inBundle": false, @@ -20,18 +27,15 @@ "/eslint-plugin-jest/@typescript-eslint/experimental-utils" ], "_resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-1.13.0.tgz", - "_shasum": "8140f17d0f60c03619798f1d628b8434913dc32e", - "_spec": "@typescript-eslint/typescript-estree@1.13.0", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/eslint-plugin-jest/node_modules/@typescript-eslint/experimental-utils", + "_spec": "1.13.0", + "_where": "/mnt/projects/expo/expo-github-action", "bugs": { "url": "https://github.com/typescript-eslint/typescript-eslint/issues" }, - "bundleDependencies": false, "dependencies": { "lodash.unescape": "4.0.1", "semver": "5.5.0" }, - "deprecated": false, "description": "A parser that converts TypeScript source code into an ESTree compatible form", "devDependencies": { "@babel/types": "^7.3.2", diff --git a/node_modules/eslint-plugin-jest/node_modules/eslint-scope/package.json b/node_modules/eslint-plugin-jest/node_modules/eslint-scope/package.json index be9f339b..672a43e8 100644 --- a/node_modules/eslint-plugin-jest/node_modules/eslint-scope/package.json +++ b/node_modules/eslint-plugin-jest/node_modules/eslint-scope/package.json @@ -1,36 +1,40 @@ { - "_from": "eslint-scope@^4.0.0", + "_args": [ + [ + "eslint-scope@4.0.3", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "eslint-scope@4.0.3", "_id": "eslint-scope@4.0.3", "_inBundle": false, "_integrity": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==", "_location": "/eslint-plugin-jest/eslint-scope", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "eslint-scope@^4.0.0", + "raw": "eslint-scope@4.0.3", "name": "eslint-scope", "escapedName": "eslint-scope", - "rawSpec": "^4.0.0", + "rawSpec": "4.0.3", "saveSpec": null, - "fetchSpec": "^4.0.0" + "fetchSpec": "4.0.3" }, "_requiredBy": [ "/eslint-plugin-jest/@typescript-eslint/experimental-utils" ], "_resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz", - "_shasum": "ca03833310f6889a3264781aa82e63eb9cfe7848", - "_spec": "eslint-scope@^4.0.0", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/eslint-plugin-jest/node_modules/@typescript-eslint/experimental-utils", + "_spec": "4.0.3", + "_where": "/mnt/projects/expo/expo-github-action", "bugs": { "url": "https://github.com/eslint/eslint-scope/issues" }, - "bundleDependencies": false, "dependencies": { "esrecurse": "^4.1.0", "estraverse": "^4.1.1" }, - "deprecated": false, "description": "ECMAScript scope analyzer for ESLint", "devDependencies": { "chai": "^3.4.1", diff --git a/node_modules/eslint-plugin-jest/node_modules/semver/package.json b/node_modules/eslint-plugin-jest/node_modules/semver/package.json index e18ea9b2..da81bd11 100644 --- a/node_modules/eslint-plugin-jest/node_modules/semver/package.json +++ b/node_modules/eslint-plugin-jest/node_modules/semver/package.json @@ -1,4 +1,11 @@ { + "_args": [ + [ + "semver@5.5.0", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, "_from": "semver@5.5.0", "_id": "semver@5.5.0", "_inBundle": false, @@ -19,17 +26,14 @@ "/eslint-plugin-jest/@typescript-eslint/typescript-estree" ], "_resolved": "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz", - "_shasum": "dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab", - "_spec": "semver@5.5.0", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/eslint-plugin-jest/node_modules/@typescript-eslint/typescript-estree", + "_spec": "5.5.0", + "_where": "/mnt/projects/expo/expo-github-action", "bin": { "semver": "./bin/semver" }, "bugs": { "url": "https://github.com/npm/node-semver/issues" }, - "bundleDependencies": false, - "deprecated": false, "description": "The semantic version parser used by npm.", "devDependencies": { "tap": "^10.7.0" diff --git a/node_modules/eslint-plugin-jest/package.json b/node_modules/eslint-plugin-jest/package.json index 555591a5..04797c9a 100644 --- a/node_modules/eslint-plugin-jest/package.json +++ b/node_modules/eslint-plugin-jest/package.json @@ -1,5 +1,12 @@ { - "_from": "eslint-plugin-jest", + "_args": [ + [ + "eslint-plugin-jest@22.17.0", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "eslint-plugin-jest@22.17.0", "_id": "eslint-plugin-jest@22.17.0", "_inBundle": false, "_integrity": "sha512-WT4DP4RoGBhIQjv+5D0FM20fAdAUstfYAf/mkufLNTojsfgzc5/IYW22cIg/Q4QBavAZsROQlqppiWDpFZDS8Q==", @@ -11,22 +18,20 @@ "lodash.unescape": "4.0.1" }, "_requested": { - "type": "tag", + "type": "version", "registry": true, - "raw": "eslint-plugin-jest", + "raw": "eslint-plugin-jest@22.17.0", "name": "eslint-plugin-jest", "escapedName": "eslint-plugin-jest", - "rawSpec": "", + "rawSpec": "22.17.0", "saveSpec": null, - "fetchSpec": "latest" + "fetchSpec": "22.17.0" }, "_requiredBy": [ - "#DEV:/", - "#USER" + "#DEV:/" ], "_resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-22.17.0.tgz", - "_shasum": "dc170ec8369cd1bff9c5dd8589344e3f73c88cf6", - "_spec": "eslint-plugin-jest", + "_spec": "22.17.0", "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "Jonathan Kim", @@ -36,7 +41,6 @@ "bugs": { "url": "https://github.com/jest-community/eslint-plugin-jest/issues" }, - "bundleDependencies": false, "commitlint": { "extends": [ "@commitlint/config-conventional" @@ -45,7 +49,6 @@ "dependencies": { "@typescript-eslint/experimental-utils": "^1.13.0" }, - "deprecated": false, "description": "Eslint rules for Jest", "devDependencies": { "@babel/cli": "^7.4.4", diff --git a/node_modules/eslint-scope/package.json b/node_modules/eslint-scope/package.json index 12bd5808..7edfa173 100644 --- a/node_modules/eslint-scope/package.json +++ b/node_modules/eslint-scope/package.json @@ -1,37 +1,41 @@ { - "_from": "eslint-scope@^5.0.0", + "_args": [ + [ + "eslint-scope@5.0.0", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "eslint-scope@5.0.0", "_id": "eslint-scope@5.0.0", "_inBundle": false, "_integrity": "sha512-oYrhJW7S0bxAFDvWqzvMPRm6pcgcnWc4QnofCAqRTRfQC0JcwenzGglTtsLyIuuWFfkqDG9vz67cnttSd53djw==", "_location": "/eslint-scope", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "eslint-scope@^5.0.0", + "raw": "eslint-scope@5.0.0", "name": "eslint-scope", "escapedName": "eslint-scope", - "rawSpec": "^5.0.0", + "rawSpec": "5.0.0", "saveSpec": null, - "fetchSpec": "^5.0.0" + "fetchSpec": "5.0.0" }, "_requiredBy": [ "/@typescript-eslint/experimental-utils", "/eslint" ], "_resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.0.0.tgz", - "_shasum": "e87c8887c73e8d1ec84f1ca591645c358bfc8fb9", - "_spec": "eslint-scope@^5.0.0", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/@typescript-eslint/experimental-utils", + "_spec": "5.0.0", + "_where": "/mnt/projects/expo/expo-github-action", "bugs": { "url": "https://github.com/eslint/eslint-scope/issues" }, - "bundleDependencies": false, "dependencies": { "esrecurse": "^4.1.0", "estraverse": "^4.1.1" }, - "deprecated": false, "description": "ECMAScript scope analyzer for ESLint", "devDependencies": { "@typescript-eslint/parser": "^1.11.0", diff --git a/node_modules/eslint-utils/package.json b/node_modules/eslint-utils/package.json index 4c287950..be27c44e 100644 --- a/node_modules/eslint-utils/package.json +++ b/node_modules/eslint-utils/package.json @@ -1,39 +1,43 @@ { - "_from": "eslint-utils@^1.4.2", + "_args": [ + [ + "eslint-utils@1.4.2", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "eslint-utils@1.4.2", "_id": "eslint-utils@1.4.2", "_inBundle": false, "_integrity": "sha512-eAZS2sEUMlIeCjBeubdj45dmBHQwPHWyBcT1VSYB7o9x9WRRqKxyUoiXlRjyAwzN7YEzHJlYg0NmzDRWx6GP4Q==", "_location": "/eslint-utils", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "eslint-utils@^1.4.2", + "raw": "eslint-utils@1.4.2", "name": "eslint-utils", "escapedName": "eslint-utils", - "rawSpec": "^1.4.2", + "rawSpec": "1.4.2", "saveSpec": null, - "fetchSpec": "^1.4.2" + "fetchSpec": "1.4.2" }, "_requiredBy": [ "/@typescript-eslint/eslint-plugin", "/eslint" ], "_resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.4.2.tgz", - "_shasum": "166a5180ef6ab7eb462f162fd0e6f2463d7309ab", - "_spec": "eslint-utils@^1.4.2", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/@typescript-eslint/eslint-plugin", + "_spec": "1.4.2", + "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "Toru Nagashima" }, "bugs": { "url": "https://github.com/mysticatea/eslint-utils/issues" }, - "bundleDependencies": false, "dependencies": { "eslint-visitor-keys": "^1.0.0" }, - "deprecated": false, "description": "Utilities for ESLint plugins.", "devDependencies": { "@mysticatea/eslint-plugin": "^10.0.3", diff --git a/node_modules/eslint-visitor-keys/package.json b/node_modules/eslint-visitor-keys/package.json index d88f026a..9e9b7d00 100644 --- a/node_modules/eslint-visitor-keys/package.json +++ b/node_modules/eslint-visitor-keys/package.json @@ -1,19 +1,26 @@ { - "_from": "eslint-visitor-keys@^1.0.0", + "_args": [ + [ + "eslint-visitor-keys@1.1.0", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "eslint-visitor-keys@1.1.0", "_id": "eslint-visitor-keys@1.1.0", "_inBundle": false, "_integrity": "sha512-8y9YjtM1JBJU/A9Kc+SbaOV4y29sSWckBwMHa+FGtVj5gN/sbnKDf6xJUl+8g7FAij9LVaP8C24DUiH/f/2Z9A==", "_location": "/eslint-visitor-keys", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "eslint-visitor-keys@^1.0.0", + "raw": "eslint-visitor-keys@1.1.0", "name": "eslint-visitor-keys", "escapedName": "eslint-visitor-keys", - "rawSpec": "^1.0.0", + "rawSpec": "1.1.0", "saveSpec": null, - "fetchSpec": "^1.0.0" + "fetchSpec": "1.1.0" }, "_requiredBy": [ "/@typescript-eslint/parser", @@ -22,9 +29,8 @@ "/espree" ], "_resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.1.0.tgz", - "_shasum": "e2a82cea84ff246ad6fb57f9bde5b46621459ec2", - "_spec": "eslint-visitor-keys@^1.0.0", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/eslint-utils", + "_spec": "1.1.0", + "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "Toru Nagashima", "url": "https://github.com/mysticatea" @@ -32,9 +38,7 @@ "bugs": { "url": "https://github.com/eslint/eslint-visitor-keys/issues" }, - "bundleDependencies": false, "dependencies": {}, - "deprecated": false, "description": "Constants and utilities about visitor keys to traverse AST.", "devDependencies": { "eslint": "^4.7.2", diff --git a/node_modules/eslint/node_modules/ansi-regex/package.json b/node_modules/eslint/node_modules/ansi-regex/package.json index 19f3cd96..42e8a4a9 100644 --- a/node_modules/eslint/node_modules/ansi-regex/package.json +++ b/node_modules/eslint/node_modules/ansi-regex/package.json @@ -1,27 +1,33 @@ { - "_from": "ansi-regex@^4.1.0", + "_args": [ + [ + "ansi-regex@4.1.0", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "ansi-regex@4.1.0", "_id": "ansi-regex@4.1.0", "_inBundle": false, "_integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", "_location": "/eslint/ansi-regex", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "ansi-regex@^4.1.0", + "raw": "ansi-regex@4.1.0", "name": "ansi-regex", "escapedName": "ansi-regex", - "rawSpec": "^4.1.0", + "rawSpec": "4.1.0", "saveSpec": null, - "fetchSpec": "^4.1.0" + "fetchSpec": "4.1.0" }, "_requiredBy": [ "/eslint/strip-ansi" ], "_resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", - "_shasum": "8b9f8f08cf1acb843756a839ca8c7e3168c51997", - "_spec": "ansi-regex@^4.1.0", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/eslint/node_modules/strip-ansi", + "_spec": "4.1.0", + "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", @@ -30,8 +36,6 @@ "bugs": { "url": "https://github.com/chalk/ansi-regex/issues" }, - "bundleDependencies": false, - "deprecated": false, "description": "Regular expression for matching ANSI escape codes", "devDependencies": { "ava": "^0.25.0", diff --git a/node_modules/eslint/node_modules/debug/package.json b/node_modules/eslint/node_modules/debug/package.json index 710e7de1..227bd79d 100644 --- a/node_modules/eslint/node_modules/debug/package.json +++ b/node_modules/eslint/node_modules/debug/package.json @@ -1,27 +1,33 @@ { - "_from": "debug@^4.0.1", + "_args": [ + [ + "debug@4.1.1", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "debug@4.1.1", "_id": "debug@4.1.1", "_inBundle": false, "_integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", "_location": "/eslint/debug", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "debug@^4.0.1", + "raw": "debug@4.1.1", "name": "debug", "escapedName": "debug", - "rawSpec": "^4.0.1", + "rawSpec": "4.1.1", "saveSpec": null, - "fetchSpec": "^4.0.1" + "fetchSpec": "4.1.1" }, "_requiredBy": [ "/eslint" ], "_resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", - "_shasum": "3b72260255109c6b589cee050f1d516139664791", - "_spec": "debug@^4.0.1", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/eslint", + "_spec": "4.1.1", + "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "TJ Holowaychuk", "email": "tj@vision-media.ca" @@ -30,7 +36,6 @@ "bugs": { "url": "https://github.com/visionmedia/debug/issues" }, - "bundleDependencies": false, "contributors": [ { "name": "Nathan Rajlich", @@ -45,7 +50,6 @@ "dependencies": { "ms": "^2.1.1" }, - "deprecated": false, "description": "small debugging utility", "devDependencies": { "@babel/cli": "^7.0.0", diff --git a/node_modules/eslint/node_modules/import-fresh/package.json b/node_modules/eslint/node_modules/import-fresh/package.json index 63c7f039..11639eea 100644 --- a/node_modules/eslint/node_modules/import-fresh/package.json +++ b/node_modules/eslint/node_modules/import-fresh/package.json @@ -1,27 +1,33 @@ { - "_from": "import-fresh@^3.0.0", + "_args": [ + [ + "import-fresh@3.1.0", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "import-fresh@3.1.0", "_id": "import-fresh@3.1.0", "_inBundle": false, "_integrity": "sha512-PpuksHKGt8rXfWEr9m9EHIpgyyaltBy8+eF6GJM0QCAxMgxCfucMF3mjecK2QsJr0amJW7gTqh5/wht0z2UhEQ==", "_location": "/eslint/import-fresh", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "import-fresh@^3.0.0", + "raw": "import-fresh@3.1.0", "name": "import-fresh", "escapedName": "import-fresh", - "rawSpec": "^3.0.0", + "rawSpec": "3.1.0", "saveSpec": null, - "fetchSpec": "^3.0.0" + "fetchSpec": "3.1.0" }, "_requiredBy": [ "/eslint" ], "_resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.1.0.tgz", - "_shasum": "6d33fa1dcef6df930fae003446f33415af905118", - "_spec": "import-fresh@^3.0.0", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/eslint", + "_spec": "3.1.0", + "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", @@ -30,12 +36,10 @@ "bugs": { "url": "https://github.com/sindresorhus/import-fresh/issues" }, - "bundleDependencies": false, "dependencies": { "parent-module": "^1.0.0", "resolve-from": "^4.0.0" }, - "deprecated": false, "description": "Import a module while bypassing the cache", "devDependencies": { "ava": "^1.0.1", diff --git a/node_modules/eslint/node_modules/strip-ansi/package.json b/node_modules/eslint/node_modules/strip-ansi/package.json index 6c94a917..09d92456 100644 --- a/node_modules/eslint/node_modules/strip-ansi/package.json +++ b/node_modules/eslint/node_modules/strip-ansi/package.json @@ -1,27 +1,33 @@ { - "_from": "strip-ansi@^5.2.0", + "_args": [ + [ + "strip-ansi@5.2.0", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "strip-ansi@5.2.0", "_id": "strip-ansi@5.2.0", "_inBundle": false, "_integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", "_location": "/eslint/strip-ansi", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "strip-ansi@^5.2.0", + "raw": "strip-ansi@5.2.0", "name": "strip-ansi", "escapedName": "strip-ansi", - "rawSpec": "^5.2.0", + "rawSpec": "5.2.0", "saveSpec": null, - "fetchSpec": "^5.2.0" + "fetchSpec": "5.2.0" }, "_requiredBy": [ "/eslint" ], "_resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "_shasum": "8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae", - "_spec": "strip-ansi@^5.2.0", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/eslint", + "_spec": "5.2.0", + "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", @@ -30,11 +36,9 @@ "bugs": { "url": "https://github.com/chalk/strip-ansi/issues" }, - "bundleDependencies": false, "dependencies": { "ansi-regex": "^4.1.0" }, - "deprecated": false, "description": "Strip ANSI escape codes from a string", "devDependencies": { "ava": "^1.3.1", diff --git a/node_modules/eslint/package.json b/node_modules/eslint/package.json index ff56c4f9..caadd198 100644 --- a/node_modules/eslint/package.json +++ b/node_modules/eslint/package.json @@ -1,5 +1,12 @@ { - "_from": "eslint", + "_args": [ + [ + "eslint@6.3.0", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "eslint@6.3.0", "_id": "eslint@6.3.0", "_inBundle": false, "_integrity": "sha512-ZvZTKaqDue+N8Y9g0kp6UPZtS4FSY3qARxBs7p4f0H0iof381XHduqVerFWtK8DPtKmemqbqCFENWSQgPR/Gow==", @@ -10,22 +17,20 @@ "resolve-from": "4.0.0" }, "_requested": { - "type": "tag", + "type": "version", "registry": true, - "raw": "eslint", + "raw": "eslint@6.3.0", "name": "eslint", "escapedName": "eslint", - "rawSpec": "", + "rawSpec": "6.3.0", "saveSpec": null, - "fetchSpec": "latest" + "fetchSpec": "6.3.0" }, "_requiredBy": [ - "#DEV:/", - "#USER" + "#DEV:/" ], "_resolved": "https://registry.npmjs.org/eslint/-/eslint-6.3.0.tgz", - "_shasum": "1f1a902f67bfd4c354e7288b81e40654d927eb6a", - "_spec": "eslint", + "_spec": "6.3.0", "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "Nicholas C. Zakas", @@ -37,7 +42,6 @@ "bugs": { "url": "https://github.com/eslint/eslint/issues/" }, - "bundleDependencies": false, "dependencies": { "@babel/code-frame": "^7.0.0", "ajv": "^6.10.0", @@ -77,7 +81,6 @@ "text-table": "^0.2.0", "v8-compile-cache": "^2.0.3" }, - "deprecated": false, "description": "An AST-based pattern checker for JavaScript.", "devDependencies": { "@babel/core": "^7.4.3", diff --git a/node_modules/espree/node_modules/acorn/package.json b/node_modules/espree/node_modules/acorn/package.json index f8c68296..e37bfd59 100644 --- a/node_modules/espree/node_modules/acorn/package.json +++ b/node_modules/espree/node_modules/acorn/package.json @@ -1,35 +1,39 @@ { - "_from": "acorn@^7.0.0", + "_args": [ + [ + "acorn@7.0.0", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "acorn@7.0.0", "_id": "acorn@7.0.0", "_inBundle": false, "_integrity": "sha512-PaF/MduxijYYt7unVGRuds1vBC9bFxbNf+VWqhOClfdgy7RlVkQqt610ig1/yxTgsDIfW1cWDel5EBbOy3jdtQ==", "_location": "/espree/acorn", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "acorn@^7.0.0", + "raw": "acorn@7.0.0", "name": "acorn", "escapedName": "acorn", - "rawSpec": "^7.0.0", + "rawSpec": "7.0.0", "saveSpec": null, - "fetchSpec": "^7.0.0" + "fetchSpec": "7.0.0" }, "_requiredBy": [ "/espree" ], "_resolved": "https://registry.npmjs.org/acorn/-/acorn-7.0.0.tgz", - "_shasum": "26b8d1cd9a9b700350b71c0905546f64d1284e7a", - "_spec": "acorn@^7.0.0", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/espree", + "_spec": "7.0.0", + "_where": "/mnt/projects/expo/expo-github-action", "bin": { "acorn": "./bin/acorn" }, "bugs": { "url": "https://github.com/acornjs/acorn/issues" }, - "bundleDependencies": false, - "deprecated": false, "description": "ECMAScript parser", "engines": { "node": ">=0.4.0" diff --git a/node_modules/espree/package.json b/node_modules/espree/package.json index ea9a01ee..9f4ac471 100644 --- a/node_modules/espree/package.json +++ b/node_modules/espree/package.json @@ -1,27 +1,33 @@ { - "_from": "espree@^6.1.1", + "_args": [ + [ + "espree@6.1.1", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "espree@6.1.1", "_id": "espree@6.1.1", "_inBundle": false, "_integrity": "sha512-EYbr8XZUhWbYCqQRW0duU5LxzL5bETN6AjKBGy1302qqzPaCH10QbRg3Wvco79Z8x9WbiE8HYB4e75xl6qUYvQ==", "_location": "/espree", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "espree@^6.1.1", + "raw": "espree@6.1.1", "name": "espree", "escapedName": "espree", - "rawSpec": "^6.1.1", + "rawSpec": "6.1.1", "saveSpec": null, - "fetchSpec": "^6.1.1" + "fetchSpec": "6.1.1" }, "_requiredBy": [ "/eslint" ], "_resolved": "https://registry.npmjs.org/espree/-/espree-6.1.1.tgz", - "_shasum": "7f80e5f7257fc47db450022d723e356daeb1e5de", - "_spec": "espree@^6.1.1", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/eslint", + "_spec": "6.1.1", + "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "Nicholas C. Zakas", "email": "nicholas+npm@nczconsulting.com" @@ -29,13 +35,11 @@ "bugs": { "url": "http://github.com/eslint/espree.git" }, - "bundleDependencies": false, "dependencies": { "acorn": "^7.0.0", "acorn-jsx": "^5.0.2", "eslint-visitor-keys": "^1.1.0" }, - "deprecated": false, "description": "An Esprima-compatible JavaScript parser built on Acorn", "devDependencies": { "browserify": "^16.5.0", diff --git a/node_modules/esquery/package.json b/node_modules/esquery/package.json index 3d0859cb..211ed71d 100644 --- a/node_modules/esquery/package.json +++ b/node_modules/esquery/package.json @@ -1,27 +1,33 @@ { - "_from": "esquery@^1.0.1", + "_args": [ + [ + "esquery@1.0.1", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "esquery@1.0.1", "_id": "esquery@1.0.1", "_inBundle": false, "_integrity": "sha512-SmiyZ5zIWH9VM+SRUReLS5Q8a7GxtRdxEBVZpm98rJM7Sb+A9DVCndXfkeFUd3byderg+EbDkfnevfCwynWaNA==", "_location": "/esquery", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "esquery@^1.0.1", + "raw": "esquery@1.0.1", "name": "esquery", "escapedName": "esquery", - "rawSpec": "^1.0.1", + "rawSpec": "1.0.1", "saveSpec": null, - "fetchSpec": "^1.0.1" + "fetchSpec": "1.0.1" }, "_requiredBy": [ "/eslint" ], "_resolved": "https://registry.npmjs.org/esquery/-/esquery-1.0.1.tgz", - "_shasum": "406c51658b1f5991a5f9b62b1dc25b00e3e5c708", - "_spec": "esquery@^1.0.1", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/eslint", + "_spec": "1.0.1", + "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "Joel Feenstra", "email": "jrfeenst+esquery@gmail.com" @@ -29,11 +35,9 @@ "bugs": { "url": "https://github.com/jrfeenst/esquery/issues" }, - "bundleDependencies": false, "dependencies": { "estraverse": "^4.0.0" }, - "deprecated": false, "description": "A query library for ECMAScript AST using a CSS selector like query language.", "devDependencies": { "commonjs-everywhere": "~0.9.4", diff --git a/node_modules/esrecurse/package.json b/node_modules/esrecurse/package.json index 16496c14..c80d1778 100755 --- a/node_modules/esrecurse/package.json +++ b/node_modules/esrecurse/package.json @@ -1,27 +1,34 @@ { - "_from": "esrecurse@^4.1.0", + "_args": [ + [ + "esrecurse@4.2.1", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "esrecurse@4.2.1", "_id": "esrecurse@4.2.1", "_inBundle": false, "_integrity": "sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ==", "_location": "/esrecurse", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "esrecurse@^4.1.0", + "raw": "esrecurse@4.2.1", "name": "esrecurse", "escapedName": "esrecurse", - "rawSpec": "^4.1.0", + "rawSpec": "4.2.1", "saveSpec": null, - "fetchSpec": "^4.1.0" + "fetchSpec": "4.2.1" }, "_requiredBy": [ + "/eslint-plugin-jest/eslint-scope", "/eslint-scope" ], "_resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz", - "_shasum": "007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf", - "_spec": "esrecurse@^4.1.0", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/eslint-scope", + "_spec": "4.2.1", + "_where": "/mnt/projects/expo/expo-github-action", "babel": { "presets": [ "es2015" @@ -30,11 +37,9 @@ "bugs": { "url": "https://github.com/estools/esrecurse/issues" }, - "bundleDependencies": false, "dependencies": { "estraverse": "^4.1.0" }, - "deprecated": false, "description": "ECMAScript AST recursive visitor", "devDependencies": { "babel-cli": "^6.24.1", diff --git a/node_modules/estraverse/package.json b/node_modules/estraverse/package.json index e65e482f..f904f641 100644 --- a/node_modules/estraverse/package.json +++ b/node_modules/estraverse/package.json @@ -23,7 +23,11 @@ "fetchSpec": "4.3.0" }, "_requiredBy": [ - "/escodegen" + "/escodegen", + "/eslint-plugin-jest/eslint-scope", + "/eslint-scope", + "/esquery", + "/esrecurse" ], "_resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", "_spec": "4.3.0", diff --git a/node_modules/esutils/package.json b/node_modules/esutils/package.json index a602b8f6..8872ae8b 100644 --- a/node_modules/esutils/package.json +++ b/node_modules/esutils/package.json @@ -25,7 +25,9 @@ "_requiredBy": [ "/@babel/highlight", "/@babel/types", - "/escodegen" + "/doctrine", + "/escodegen", + "/eslint" ], "_resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", "_spec": "2.0.3", diff --git a/node_modules/external-editor/package.json b/node_modules/external-editor/package.json index a93c97ea..4e1acbf4 100644 --- a/node_modules/external-editor/package.json +++ b/node_modules/external-editor/package.json @@ -1,27 +1,33 @@ { - "_from": "external-editor@^3.0.3", + "_args": [ + [ + "external-editor@3.1.0", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "external-editor@3.1.0", "_id": "external-editor@3.1.0", "_inBundle": false, "_integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", "_location": "/external-editor", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "external-editor@^3.0.3", + "raw": "external-editor@3.1.0", "name": "external-editor", "escapedName": "external-editor", - "rawSpec": "^3.0.3", + "rawSpec": "3.1.0", "saveSpec": null, - "fetchSpec": "^3.0.3" + "fetchSpec": "3.1.0" }, "_requiredBy": [ "/inquirer" ], "_resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", - "_shasum": "cb03f740befae03ea4d283caed2741a83f335495", - "_spec": "external-editor@^3.0.3", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/inquirer", + "_spec": "3.1.0", + "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "Kevin Gravier", "email": "kevin@mrkmg.com", @@ -30,7 +36,6 @@ "bugs": { "url": "https://github.com/mrkmg/node-external-editor/issues" }, - "bundleDependencies": false, "config": { "ndt": { "versions": [ @@ -43,7 +48,6 @@ "iconv-lite": "^0.4.24", "tmp": "^0.0.33" }, - "deprecated": false, "description": "Edit a string with the users preferred text editor using $VISUAL or $ENVIRONMENT", "devDependencies": { "@types/chai": "^4.1.4", diff --git a/node_modules/figures/package.json b/node_modules/figures/package.json index a6dda42c..03ae2de8 100644 --- a/node_modules/figures/package.json +++ b/node_modules/figures/package.json @@ -1,27 +1,33 @@ { - "_from": "figures@^2.0.0", + "_args": [ + [ + "figures@2.0.0", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "figures@2.0.0", "_id": "figures@2.0.0", "_inBundle": false, "_integrity": "sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=", "_location": "/figures", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "figures@^2.0.0", + "raw": "figures@2.0.0", "name": "figures", "escapedName": "figures", - "rawSpec": "^2.0.0", + "rawSpec": "2.0.0", "saveSpec": null, - "fetchSpec": "^2.0.0" + "fetchSpec": "2.0.0" }, "_requiredBy": [ "/inquirer" ], "_resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", - "_shasum": "3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962", - "_spec": "figures@^2.0.0", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/inquirer", + "_spec": "2.0.0", + "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", @@ -30,11 +36,9 @@ "bugs": { "url": "https://github.com/sindresorhus/figures/issues" }, - "bundleDependencies": false, "dependencies": { "escape-string-regexp": "^1.0.5" }, - "deprecated": false, "description": "Unicode symbols with Windows CMD fallbacks", "devDependencies": { "ava": "*", diff --git a/node_modules/file-entry-cache/package.json b/node_modules/file-entry-cache/package.json index 6ba25795..4b58aea2 100644 --- a/node_modules/file-entry-cache/package.json +++ b/node_modules/file-entry-cache/package.json @@ -1,27 +1,33 @@ { - "_from": "file-entry-cache@^5.0.1", + "_args": [ + [ + "file-entry-cache@5.0.1", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "file-entry-cache@5.0.1", "_id": "file-entry-cache@5.0.1", "_inBundle": false, "_integrity": "sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g==", "_location": "/file-entry-cache", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "file-entry-cache@^5.0.1", + "raw": "file-entry-cache@5.0.1", "name": "file-entry-cache", "escapedName": "file-entry-cache", - "rawSpec": "^5.0.1", + "rawSpec": "5.0.1", "saveSpec": null, - "fetchSpec": "^5.0.1" + "fetchSpec": "5.0.1" }, "_requiredBy": [ "/eslint" ], "_resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-5.0.1.tgz", - "_shasum": "ca0f6efa6dd3d561333fb14515065c2fafdf439c", - "_spec": "file-entry-cache@^5.0.1", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/eslint", + "_spec": "5.0.1", + "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "Roy Riojas", "url": "http://royriojas.com" @@ -29,7 +35,6 @@ "bugs": { "url": "https://github.com/royriojas/file-entry-cache/issues" }, - "bundleDependencies": false, "changelogx": { "ignoreRegExp": [ "BLD: Release", @@ -45,7 +50,6 @@ "dependencies": { "flat-cache": "^2.0.1" }, - "deprecated": false, "description": "Super simple cache for file metadata, useful for process that work o a given series of files and that only need to repeat the job on the changed ones since the previous run of the process", "devDependencies": { "chai": "^3.2.0", diff --git a/node_modules/flat-cache/node_modules/rimraf/package.json b/node_modules/flat-cache/node_modules/rimraf/package.json index 3358f133..df4a90f2 100644 --- a/node_modules/flat-cache/node_modules/rimraf/package.json +++ b/node_modules/flat-cache/node_modules/rimraf/package.json @@ -1,4 +1,11 @@ { + "_args": [ + [ + "rimraf@2.6.3", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, "_from": "rimraf@2.6.3", "_id": "rimraf@2.6.3", "_inBundle": false, @@ -19,9 +26,8 @@ "/flat-cache" ], "_resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", - "_shasum": "b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab", - "_spec": "rimraf@2.6.3", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/flat-cache", + "_spec": "2.6.3", + "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "Isaac Z. Schlueter", "email": "i@izs.me", @@ -33,11 +39,9 @@ "bugs": { "url": "https://github.com/isaacs/rimraf/issues" }, - "bundleDependencies": false, "dependencies": { "glob": "^7.1.3" }, - "deprecated": false, "description": "A deep deletion module for node (like `rm -rf`)", "devDependencies": { "mkdirp": "^0.5.1", diff --git a/node_modules/flat-cache/package.json b/node_modules/flat-cache/package.json index 4aaf3ead..0847bd3e 100644 --- a/node_modules/flat-cache/package.json +++ b/node_modules/flat-cache/package.json @@ -1,5 +1,12 @@ { - "_from": "flat-cache@^2.0.1", + "_args": [ + [ + "flat-cache@2.0.1", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "flat-cache@2.0.1", "_id": "flat-cache@2.0.1", "_inBundle": false, "_integrity": "sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA==", @@ -8,22 +15,21 @@ "glob": "7.1.4" }, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "flat-cache@^2.0.1", + "raw": "flat-cache@2.0.1", "name": "flat-cache", "escapedName": "flat-cache", - "rawSpec": "^2.0.1", + "rawSpec": "2.0.1", "saveSpec": null, - "fetchSpec": "^2.0.1" + "fetchSpec": "2.0.1" }, "_requiredBy": [ "/file-entry-cache" ], "_resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-2.0.1.tgz", - "_shasum": "5d296d6f04bda44a4630a301413bdbc2ec085ec0", - "_spec": "flat-cache@^2.0.1", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/file-entry-cache", + "_spec": "2.0.1", + "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "Roy Riojas", "url": "http://royriojas.com" @@ -31,7 +37,6 @@ "bugs": { "url": "https://github.com/royriojas/flat-cache/issues" }, - "bundleDependencies": false, "changelogx": { "ignoreRegExp": [ "BLD: Release", @@ -49,7 +54,6 @@ "rimraf": "2.6.3", "write": "1.0.3" }, - "deprecated": false, "description": "A stupidly simple key/value storage using files to persist some data", "devDependencies": { "chai": "^3.2.0", diff --git a/node_modules/flatted/package.json b/node_modules/flatted/package.json index acb37fe2..d478d831 100644 --- a/node_modules/flatted/package.json +++ b/node_modules/flatted/package.json @@ -1,35 +1,39 @@ { - "_from": "flatted@^2.0.0", + "_args": [ + [ + "flatted@2.0.1", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "flatted@2.0.1", "_id": "flatted@2.0.1", "_inBundle": false, "_integrity": "sha512-a1hQMktqW9Nmqr5aktAux3JMNqaucxGcjtjWnZLHX7yyPCmlSV3M54nGYbqT8K+0GhF3NBgmJCc3ma+WOgX8Jg==", "_location": "/flatted", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "flatted@^2.0.0", + "raw": "flatted@2.0.1", "name": "flatted", "escapedName": "flatted", - "rawSpec": "^2.0.0", + "rawSpec": "2.0.1", "saveSpec": null, - "fetchSpec": "^2.0.0" + "fetchSpec": "2.0.1" }, "_requiredBy": [ "/flat-cache" ], "_resolved": "https://registry.npmjs.org/flatted/-/flatted-2.0.1.tgz", - "_shasum": "69e57caa8f0eacbc281d2e2cb458d46fdb449e08", - "_spec": "flatted@^2.0.0", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/flat-cache", + "_spec": "2.0.1", + "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "Andrea Giammarchi" }, "bugs": { "url": "https://github.com/WebReflection/flatted/issues" }, - "bundleDependencies": false, - "deprecated": false, "description": "A super light and fast circular JSON parser.", "devDependencies": { "circular-json": "latest", diff --git a/node_modules/functional-red-black-tree/package.json b/node_modules/functional-red-black-tree/package.json index 21ea54d6..54654ce5 100644 --- a/node_modules/functional-red-black-tree/package.json +++ b/node_modules/functional-red-black-tree/package.json @@ -1,37 +1,41 @@ { - "_from": "functional-red-black-tree@^1.0.1", + "_args": [ + [ + "functional-red-black-tree@1.0.1", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "functional-red-black-tree@1.0.1", "_id": "functional-red-black-tree@1.0.1", "_inBundle": false, "_integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=", "_location": "/functional-red-black-tree", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "functional-red-black-tree@^1.0.1", + "raw": "functional-red-black-tree@1.0.1", "name": "functional-red-black-tree", "escapedName": "functional-red-black-tree", - "rawSpec": "^1.0.1", + "rawSpec": "1.0.1", "saveSpec": null, - "fetchSpec": "^1.0.1" + "fetchSpec": "1.0.1" }, "_requiredBy": [ "/@typescript-eslint/eslint-plugin", "/eslint" ], "_resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", - "_shasum": "1b0ab3bd553b2a0d6399d29c0e3ea0b252078327", - "_spec": "functional-red-black-tree@^1.0.1", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/@typescript-eslint/eslint-plugin", + "_spec": "1.0.1", + "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "Mikola Lysenko" }, "bugs": { "url": "https://github.com/mikolalysenko/functional-red-black-tree/issues" }, - "bundleDependencies": false, "dependencies": {}, - "deprecated": false, "description": "A fully persistent balanced binary search tree", "devDependencies": { "iota-array": "^0.0.1", diff --git a/node_modules/glob-parent/package.json b/node_modules/glob-parent/package.json index cb81f2f9..cae3c153 100644 --- a/node_modules/glob-parent/package.json +++ b/node_modules/glob-parent/package.json @@ -1,27 +1,33 @@ { - "_from": "glob-parent@^5.0.0", + "_args": [ + [ + "glob-parent@5.0.0", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "glob-parent@5.0.0", "_id": "glob-parent@5.0.0", "_inBundle": false, "_integrity": "sha512-Z2RwiujPRGluePM6j699ktJYxmPpJKCfpGA13jz2hmFZC7gKetzrWvg5KN3+OsIFmydGyZ1AVwERCq1w/ZZwRg==", "_location": "/glob-parent", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "glob-parent@^5.0.0", + "raw": "glob-parent@5.0.0", "name": "glob-parent", "escapedName": "glob-parent", - "rawSpec": "^5.0.0", + "rawSpec": "5.0.0", "saveSpec": null, - "fetchSpec": "^5.0.0" + "fetchSpec": "5.0.0" }, "_requiredBy": [ "/eslint" ], "_resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.0.0.tgz", - "_shasum": "1dc99f0f39b006d3e92c2c284068382f0c20e954", - "_spec": "glob-parent@^5.0.0", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/eslint", + "_spec": "5.0.0", + "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "Gulp Team", "email": "team@gulpjs.com", @@ -30,7 +36,6 @@ "bugs": { "url": "https://github.com/gulpjs/glob-parent/issues" }, - "bundleDependencies": false, "contributors": [ { "name": "Elan Shanker", @@ -44,7 +49,6 @@ "dependencies": { "is-glob": "^4.0.1" }, - "deprecated": false, "description": "Extract the non-magic parent path from a glob string.", "devDependencies": { "coveralls": "github:phated/node-coveralls#2.x", diff --git a/node_modules/globals/package.json b/node_modules/globals/package.json index 16662200..3a948848 100644 --- a/node_modules/globals/package.json +++ b/node_modules/globals/package.json @@ -23,7 +23,8 @@ "fetchSpec": "11.12.0" }, "_requiredBy": [ - "/@babel/traverse" + "/@babel/traverse", + "/eslint" ], "_resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", "_spec": "11.12.0", diff --git a/node_modules/ignore/package.json b/node_modules/ignore/package.json index c7dfdce5..e6874efb 100644 --- a/node_modules/ignore/package.json +++ b/node_modules/ignore/package.json @@ -1,35 +1,39 @@ { - "_from": "ignore@^4.0.6", + "_args": [ + [ + "ignore@4.0.6", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "ignore@4.0.6", "_id": "ignore@4.0.6", "_inBundle": false, "_integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", "_location": "/ignore", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "ignore@^4.0.6", + "raw": "ignore@4.0.6", "name": "ignore", "escapedName": "ignore", - "rawSpec": "^4.0.6", + "rawSpec": "4.0.6", "saveSpec": null, - "fetchSpec": "^4.0.6" + "fetchSpec": "4.0.6" }, "_requiredBy": [ "/eslint" ], "_resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", - "_shasum": "750e3db5862087b4737ebac8207ffd1ef27b25fc", - "_spec": "ignore@^4.0.6", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/eslint", + "_spec": "4.0.6", + "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "kael" }, "bugs": { "url": "https://github.com/kaelzhang/node-ignore/issues" }, - "bundleDependencies": false, - "deprecated": false, "description": "Ignore is a manager and filter for .gitignore rules.", "devDependencies": { "babel-cli": "^6.26.0", diff --git a/node_modules/inquirer/node_modules/ansi-regex/package.json b/node_modules/inquirer/node_modules/ansi-regex/package.json index 89190a9f..43c1d69e 100644 --- a/node_modules/inquirer/node_modules/ansi-regex/package.json +++ b/node_modules/inquirer/node_modules/ansi-regex/package.json @@ -1,27 +1,33 @@ { - "_from": "ansi-regex@^3.0.0", + "_args": [ + [ + "ansi-regex@3.0.0", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "ansi-regex@3.0.0", "_id": "ansi-regex@3.0.0", "_inBundle": false, "_integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", "_location": "/inquirer/ansi-regex", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "ansi-regex@^3.0.0", + "raw": "ansi-regex@3.0.0", "name": "ansi-regex", "escapedName": "ansi-regex", - "rawSpec": "^3.0.0", + "rawSpec": "3.0.0", "saveSpec": null, - "fetchSpec": "^3.0.0" + "fetchSpec": "3.0.0" }, "_requiredBy": [ "/inquirer/string-width/strip-ansi" ], "_resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "_shasum": "ed0317c322064f79466c02966bddb605ab37d998", - "_spec": "ansi-regex@^3.0.0", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/inquirer/node_modules/string-width/node_modules/strip-ansi", + "_spec": "3.0.0", + "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", @@ -30,8 +36,6 @@ "bugs": { "url": "https://github.com/chalk/ansi-regex/issues" }, - "bundleDependencies": false, - "deprecated": false, "description": "Regular expression for matching ANSI escape codes", "devDependencies": { "ava": "*", diff --git a/node_modules/inquirer/node_modules/is-fullwidth-code-point/package.json b/node_modules/inquirer/node_modules/is-fullwidth-code-point/package.json index fd1deabe..615b1106 100644 --- a/node_modules/inquirer/node_modules/is-fullwidth-code-point/package.json +++ b/node_modules/inquirer/node_modules/is-fullwidth-code-point/package.json @@ -1,27 +1,33 @@ { - "_from": "is-fullwidth-code-point@^2.0.0", + "_args": [ + [ + "is-fullwidth-code-point@2.0.0", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "is-fullwidth-code-point@2.0.0", "_id": "is-fullwidth-code-point@2.0.0", "_inBundle": false, "_integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", "_location": "/inquirer/is-fullwidth-code-point", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "is-fullwidth-code-point@^2.0.0", + "raw": "is-fullwidth-code-point@2.0.0", "name": "is-fullwidth-code-point", "escapedName": "is-fullwidth-code-point", - "rawSpec": "^2.0.0", + "rawSpec": "2.0.0", "saveSpec": null, - "fetchSpec": "^2.0.0" + "fetchSpec": "2.0.0" }, "_requiredBy": [ "/inquirer/string-width" ], "_resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "_shasum": "a3b30a5c4f199183167aaab93beefae3ddfb654f", - "_spec": "is-fullwidth-code-point@^2.0.0", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/inquirer/node_modules/string-width", + "_spec": "2.0.0", + "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", @@ -30,8 +36,6 @@ "bugs": { "url": "https://github.com/sindresorhus/is-fullwidth-code-point/issues" }, - "bundleDependencies": false, - "deprecated": false, "description": "Check if the character represented by a given Unicode code point is fullwidth", "devDependencies": { "ava": "*", diff --git a/node_modules/inquirer/node_modules/string-width/node_modules/strip-ansi/package.json b/node_modules/inquirer/node_modules/string-width/node_modules/strip-ansi/package.json index 75fe6eff..f670171e 100644 --- a/node_modules/inquirer/node_modules/string-width/node_modules/strip-ansi/package.json +++ b/node_modules/inquirer/node_modules/string-width/node_modules/strip-ansi/package.json @@ -1,27 +1,33 @@ { - "_from": "strip-ansi@^4.0.0", + "_args": [ + [ + "strip-ansi@4.0.0", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "strip-ansi@4.0.0", "_id": "strip-ansi@4.0.0", "_inBundle": false, "_integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", "_location": "/inquirer/string-width/strip-ansi", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "strip-ansi@^4.0.0", + "raw": "strip-ansi@4.0.0", "name": "strip-ansi", "escapedName": "strip-ansi", - "rawSpec": "^4.0.0", + "rawSpec": "4.0.0", "saveSpec": null, - "fetchSpec": "^4.0.0" + "fetchSpec": "4.0.0" }, "_requiredBy": [ "/inquirer/string-width" ], "_resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "_shasum": "a8479022eb1ac368a871389b635262c505ee368f", - "_spec": "strip-ansi@^4.0.0", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/inquirer/node_modules/string-width", + "_spec": "4.0.0", + "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", @@ -30,11 +36,9 @@ "bugs": { "url": "https://github.com/chalk/strip-ansi/issues" }, - "bundleDependencies": false, "dependencies": { "ansi-regex": "^3.0.0" }, - "deprecated": false, "description": "Strip ANSI escape codes", "devDependencies": { "ava": "*", diff --git a/node_modules/inquirer/node_modules/string-width/package.json b/node_modules/inquirer/node_modules/string-width/package.json index b7585536..2fef5b13 100644 --- a/node_modules/inquirer/node_modules/string-width/package.json +++ b/node_modules/inquirer/node_modules/string-width/package.json @@ -1,5 +1,12 @@ { - "_from": "string-width@^2.1.0", + "_args": [ + [ + "string-width@2.1.1", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "string-width@2.1.1", "_id": "string-width@2.1.1", "_inBundle": false, "_integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", @@ -8,22 +15,21 @@ "ansi-regex": "3.0.0" }, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "string-width@^2.1.0", + "raw": "string-width@2.1.1", "name": "string-width", "escapedName": "string-width", - "rawSpec": "^2.1.0", + "rawSpec": "2.1.1", "saveSpec": null, - "fetchSpec": "^2.1.0" + "fetchSpec": "2.1.1" }, "_requiredBy": [ "/inquirer" ], "_resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "_shasum": "ab93f27a8dc13d28cac815c462143a6d9012ae9e", - "_spec": "string-width@^2.1.0", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/inquirer", + "_spec": "2.1.1", + "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", @@ -32,12 +38,10 @@ "bugs": { "url": "https://github.com/sindresorhus/string-width/issues" }, - "bundleDependencies": false, "dependencies": { "is-fullwidth-code-point": "^2.0.0", "strip-ansi": "^4.0.0" }, - "deprecated": false, "description": "Get the visual width of a string - the number of columns required to display it", "devDependencies": { "ava": "*", diff --git a/node_modules/inquirer/node_modules/strip-ansi/node_modules/ansi-regex/package.json b/node_modules/inquirer/node_modules/strip-ansi/node_modules/ansi-regex/package.json index b715cec7..be4d4e85 100644 --- a/node_modules/inquirer/node_modules/strip-ansi/node_modules/ansi-regex/package.json +++ b/node_modules/inquirer/node_modules/strip-ansi/node_modules/ansi-regex/package.json @@ -1,27 +1,33 @@ { - "_from": "ansi-regex@^4.1.0", + "_args": [ + [ + "ansi-regex@4.1.0", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "ansi-regex@4.1.0", "_id": "ansi-regex@4.1.0", "_inBundle": false, "_integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", "_location": "/inquirer/strip-ansi/ansi-regex", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "ansi-regex@^4.1.0", + "raw": "ansi-regex@4.1.0", "name": "ansi-regex", "escapedName": "ansi-regex", - "rawSpec": "^4.1.0", + "rawSpec": "4.1.0", "saveSpec": null, - "fetchSpec": "^4.1.0" + "fetchSpec": "4.1.0" }, "_requiredBy": [ "/inquirer/strip-ansi" ], "_resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", - "_shasum": "8b9f8f08cf1acb843756a839ca8c7e3168c51997", - "_spec": "ansi-regex@^4.1.0", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/inquirer/node_modules/strip-ansi", + "_spec": "4.1.0", + "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", @@ -30,8 +36,6 @@ "bugs": { "url": "https://github.com/chalk/ansi-regex/issues" }, - "bundleDependencies": false, - "deprecated": false, "description": "Regular expression for matching ANSI escape codes", "devDependencies": { "ava": "^0.25.0", diff --git a/node_modules/inquirer/node_modules/strip-ansi/package.json b/node_modules/inquirer/node_modules/strip-ansi/package.json index 8f66c0e2..80619c68 100644 --- a/node_modules/inquirer/node_modules/strip-ansi/package.json +++ b/node_modules/inquirer/node_modules/strip-ansi/package.json @@ -1,27 +1,33 @@ { - "_from": "strip-ansi@^5.1.0", + "_args": [ + [ + "strip-ansi@5.2.0", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "strip-ansi@5.2.0", "_id": "strip-ansi@5.2.0", "_inBundle": false, "_integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", "_location": "/inquirer/strip-ansi", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "strip-ansi@^5.1.0", + "raw": "strip-ansi@5.2.0", "name": "strip-ansi", "escapedName": "strip-ansi", - "rawSpec": "^5.1.0", + "rawSpec": "5.2.0", "saveSpec": null, - "fetchSpec": "^5.1.0" + "fetchSpec": "5.2.0" }, "_requiredBy": [ "/inquirer" ], "_resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "_shasum": "8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae", - "_spec": "strip-ansi@^5.1.0", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/inquirer", + "_spec": "5.2.0", + "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", @@ -30,11 +36,9 @@ "bugs": { "url": "https://github.com/chalk/strip-ansi/issues" }, - "bundleDependencies": false, "dependencies": { "ansi-regex": "^4.1.0" }, - "deprecated": false, "description": "Strip ANSI escape codes from a string", "devDependencies": { "ava": "^1.3.1", diff --git a/node_modules/inquirer/package.json b/node_modules/inquirer/package.json index e0068746..1999a388 100644 --- a/node_modules/inquirer/package.json +++ b/node_modules/inquirer/package.json @@ -1,27 +1,33 @@ { - "_from": "inquirer@^6.4.1", + "_args": [ + [ + "inquirer@6.5.2", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "inquirer@6.5.2", "_id": "inquirer@6.5.2", "_inBundle": false, "_integrity": "sha512-cntlB5ghuB0iuO65Ovoi8ogLHiWGs/5yNrtUcKjFhSSiVeAIVpD7koaSU9RM8mpXw5YDi9RdYXGQMaOURB7ycQ==", "_location": "/inquirer", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "inquirer@^6.4.1", + "raw": "inquirer@6.5.2", "name": "inquirer", "escapedName": "inquirer", - "rawSpec": "^6.4.1", + "rawSpec": "6.5.2", "saveSpec": null, - "fetchSpec": "^6.4.1" + "fetchSpec": "6.5.2" }, "_requiredBy": [ "/eslint" ], "_resolved": "https://registry.npmjs.org/inquirer/-/inquirer-6.5.2.tgz", - "_shasum": "ad50942375d036d327ff528c08bd5fab089928ca", - "_spec": "inquirer@^6.4.1", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/eslint", + "_spec": "6.5.2", + "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "Simon Boudrias", "email": "admin@simonboudrias.com" @@ -29,7 +35,6 @@ "bugs": { "url": "https://github.com/SBoudrias/Inquirer.js/issues" }, - "bundleDependencies": false, "dependencies": { "ansi-escapes": "^3.2.0", "chalk": "^2.4.2", @@ -45,7 +50,6 @@ "strip-ansi": "^5.1.0", "through": "^2.3.6" }, - "deprecated": false, "description": "A collection of common interactive command line user interfaces.", "devDependencies": { "chai": "^4.2.0", diff --git a/node_modules/is-extglob/package.json b/node_modules/is-extglob/package.json index 24c9a5b2..ad261b30 100644 --- a/node_modules/is-extglob/package.json +++ b/node_modules/is-extglob/package.json @@ -1,27 +1,33 @@ { - "_from": "is-extglob@^2.1.1", + "_args": [ + [ + "is-extglob@2.1.1", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "is-extglob@2.1.1", "_id": "is-extglob@2.1.1", "_inBundle": false, "_integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", "_location": "/is-extglob", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "is-extglob@^2.1.1", + "raw": "is-extglob@2.1.1", "name": "is-extglob", "escapedName": "is-extglob", - "rawSpec": "^2.1.1", + "rawSpec": "2.1.1", "saveSpec": null, - "fetchSpec": "^2.1.1" + "fetchSpec": "2.1.1" }, "_requiredBy": [ "/is-glob" ], "_resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "_shasum": "a88c02535791f02ed37c76a1b9ea9773c833f8c2", - "_spec": "is-extglob@^2.1.1", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/is-glob", + "_spec": "2.1.1", + "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "Jon Schlinkert", "url": "https://github.com/jonschlinkert" @@ -29,8 +35,6 @@ "bugs": { "url": "https://github.com/jonschlinkert/is-extglob/issues" }, - "bundleDependencies": false, - "deprecated": false, "description": "Returns true if a string has an extglob.", "devDependencies": { "gulp-format-md": "^0.1.10", diff --git a/node_modules/is-glob/package.json b/node_modules/is-glob/package.json index 0d7da079..90aeca01 100644 --- a/node_modules/is-glob/package.json +++ b/node_modules/is-glob/package.json @@ -1,19 +1,26 @@ { - "_from": "is-glob@^4.0.1", + "_args": [ + [ + "is-glob@4.0.1", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "is-glob@4.0.1", "_id": "is-glob@4.0.1", "_inBundle": false, "_integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", "_location": "/is-glob", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "is-glob@^4.0.1", + "raw": "is-glob@4.0.1", "name": "is-glob", "escapedName": "is-glob", - "rawSpec": "^4.0.1", + "rawSpec": "4.0.1", "saveSpec": null, - "fetchSpec": "^4.0.1" + "fetchSpec": "4.0.1" }, "_requiredBy": [ "/@typescript-eslint/typescript-estree", @@ -21,9 +28,8 @@ "/glob-parent" ], "_resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", - "_shasum": "7567dbe9f2f5e2467bc77ab83c4a29482407a5dc", - "_spec": "is-glob@^4.0.1", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/@typescript-eslint/typescript-estree", + "_spec": "4.0.1", + "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "Jon Schlinkert", "url": "https://github.com/jonschlinkert" @@ -31,7 +37,6 @@ "bugs": { "url": "https://github.com/micromatch/is-glob/issues" }, - "bundleDependencies": false, "contributors": [ { "name": "Brian Woodward", @@ -49,7 +54,6 @@ "dependencies": { "is-extglob": "^2.1.1" }, - "deprecated": false, "description": "Returns `true` if the given string looks like a glob pattern or an extglob pattern. This makes it easy to create code that only uses external modules like node-glob when necessary, resulting in much faster code execution and initialization time, and a better user experience.", "devDependencies": { "gulp-format-md": "^0.1.10", diff --git a/node_modules/is-promise/package.json b/node_modules/is-promise/package.json index 29961993..73d17108 100644 --- a/node_modules/is-promise/package.json +++ b/node_modules/is-promise/package.json @@ -1,35 +1,39 @@ { - "_from": "is-promise@^2.1.0", + "_args": [ + [ + "is-promise@2.1.0", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "is-promise@2.1.0", "_id": "is-promise@2.1.0", "_inBundle": false, "_integrity": "sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=", "_location": "/is-promise", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "is-promise@^2.1.0", + "raw": "is-promise@2.1.0", "name": "is-promise", "escapedName": "is-promise", - "rawSpec": "^2.1.0", + "rawSpec": "2.1.0", "saveSpec": null, - "fetchSpec": "^2.1.0" + "fetchSpec": "2.1.0" }, "_requiredBy": [ "/run-async" ], "_resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz", - "_shasum": "79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa", - "_spec": "is-promise@^2.1.0", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/run-async", + "_spec": "2.1.0", + "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "ForbesLindesay" }, "bugs": { "url": "https://github.com/then/is-promise/issues" }, - "bundleDependencies": false, - "deprecated": false, "description": "Test whether an object looks like a promises-a+ promise", "devDependencies": { "better-assert": "~0.1.0", diff --git a/node_modules/js-yaml/package.json b/node_modules/js-yaml/package.json index 8f1bc9cd..bfa858b1 100644 --- a/node_modules/js-yaml/package.json +++ b/node_modules/js-yaml/package.json @@ -23,7 +23,8 @@ "fetchSpec": "3.13.1" }, "_requiredBy": [ - "/cosmiconfig" + "/cosmiconfig", + "/eslint" ], "_resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz", "_spec": "3.13.1", diff --git a/node_modules/json-stable-stringify-without-jsonify/package.json b/node_modules/json-stable-stringify-without-jsonify/package.json index 029fb18b..34a1d5fe 100644 --- a/node_modules/json-stable-stringify-without-jsonify/package.json +++ b/node_modules/json-stable-stringify-without-jsonify/package.json @@ -1,27 +1,33 @@ { - "_from": "json-stable-stringify-without-jsonify@^1.0.1", + "_args": [ + [ + "json-stable-stringify-without-jsonify@1.0.1", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "json-stable-stringify-without-jsonify@1.0.1", "_id": "json-stable-stringify-without-jsonify@1.0.1", "_inBundle": false, "_integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", "_location": "/json-stable-stringify-without-jsonify", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "json-stable-stringify-without-jsonify@^1.0.1", + "raw": "json-stable-stringify-without-jsonify@1.0.1", "name": "json-stable-stringify-without-jsonify", "escapedName": "json-stable-stringify-without-jsonify", - "rawSpec": "^1.0.1", + "rawSpec": "1.0.1", "saveSpec": null, - "fetchSpec": "^1.0.1" + "fetchSpec": "1.0.1" }, "_requiredBy": [ "/eslint" ], "_resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "_shasum": "9db7b59496ad3f3cfef30a75142d2d930ad72651", - "_spec": "json-stable-stringify-without-jsonify@^1.0.1", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/eslint", + "_spec": "1.0.1", + "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "James Halliday", "email": "mail@substack.net", @@ -30,9 +36,7 @@ "bugs": { "url": "https://github.com/samn/json-stable-stringify/issues" }, - "bundleDependencies": false, "dependencies": {}, - "deprecated": false, "description": "deterministic JSON.stringify() with custom sorting to get deterministic hashes from stringified results, with no public domain dependencies", "devDependencies": { "tape": "~1.0.4" diff --git a/node_modules/levn/package.json b/node_modules/levn/package.json index 8b60083f..d69a88ea 100644 --- a/node_modules/levn/package.json +++ b/node_modules/levn/package.json @@ -23,6 +23,7 @@ "fetchSpec": "0.3.0" }, "_requiredBy": [ + "/eslint", "/optionator" ], "_resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", diff --git a/node_modules/lodash.unescape/package.json b/node_modules/lodash.unescape/package.json index b39ca25d..0de24b57 100644 --- a/node_modules/lodash.unescape/package.json +++ b/node_modules/lodash.unescape/package.json @@ -1,4 +1,11 @@ { + "_args": [ + [ + "lodash.unescape@4.0.1", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, "_from": "lodash.unescape@4.0.1", "_id": "lodash.unescape@4.0.1", "_inBundle": false, @@ -16,12 +23,12 @@ "fetchSpec": "4.0.1" }, "_requiredBy": [ - "/@typescript-eslint/typescript-estree" + "/@typescript-eslint/typescript-estree", + "/eslint-plugin-jest/@typescript-eslint/typescript-estree" ], "_resolved": "https://registry.npmjs.org/lodash.unescape/-/lodash.unescape-4.0.1.tgz", - "_shasum": "bf2249886ce514cda112fae9218cdc065211fc9c", - "_spec": "lodash.unescape@4.0.1", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/@typescript-eslint/typescript-estree", + "_spec": "4.0.1", + "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "John-David Dalton", "email": "john.david.dalton@gmail.com", @@ -30,7 +37,6 @@ "bugs": { "url": "https://github.com/lodash/lodash/issues" }, - "bundleDependencies": false, "contributors": [ { "name": "John-David Dalton", @@ -48,7 +54,6 @@ "url": "https://mathiasbynens.be/" } ], - "deprecated": false, "description": "The lodash method `_.unescape` exported as a module.", "homepage": "https://lodash.com/", "icon": "https://lodash.com/icon.svg", diff --git a/node_modules/lodash/package.json b/node_modules/lodash/package.json index 4a97f448..1ae0879f 100644 --- a/node_modules/lodash/package.json +++ b/node_modules/lodash/package.json @@ -27,7 +27,10 @@ "/@babel/generator", "/@babel/traverse", "/@babel/types", - "/request-promise-core" + "/eslint", + "/inquirer", + "/request-promise-core", + "/table" ], "_resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz", "_spec": "4.17.15", diff --git a/node_modules/mimic-fn/package.json b/node_modules/mimic-fn/package.json index b777a62a..bb760c1a 100644 --- a/node_modules/mimic-fn/package.json +++ b/node_modules/mimic-fn/package.json @@ -1,27 +1,33 @@ { - "_from": "mimic-fn@^1.0.0", + "_args": [ + [ + "mimic-fn@1.2.0", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "mimic-fn@1.2.0", "_id": "mimic-fn@1.2.0", "_inBundle": false, "_integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", "_location": "/mimic-fn", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "mimic-fn@^1.0.0", + "raw": "mimic-fn@1.2.0", "name": "mimic-fn", "escapedName": "mimic-fn", - "rawSpec": "^1.0.0", + "rawSpec": "1.2.0", "saveSpec": null, - "fetchSpec": "^1.0.0" + "fetchSpec": "1.2.0" }, "_requiredBy": [ "/onetime" ], "_resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", - "_shasum": "820c86a39334640e99516928bd03fca88057d022", - "_spec": "mimic-fn@^1.0.0", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/onetime", + "_spec": "1.2.0", + "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", @@ -30,8 +36,6 @@ "bugs": { "url": "https://github.com/sindresorhus/mimic-fn/issues" }, - "bundleDependencies": false, - "deprecated": false, "description": "Make a function mimic another one", "devDependencies": { "ava": "*", diff --git a/node_modules/mute-stream/package.json b/node_modules/mute-stream/package.json index fcc84bf7..52f75a75 100644 --- a/node_modules/mute-stream/package.json +++ b/node_modules/mute-stream/package.json @@ -1,4 +1,11 @@ { + "_args": [ + [ + "mute-stream@0.0.7", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, "_from": "mute-stream@0.0.7", "_id": "mute-stream@0.0.7", "_inBundle": false, @@ -19,9 +26,8 @@ "/inquirer" ], "_resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz", - "_shasum": "3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab", - "_spec": "mute-stream@0.0.7", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/inquirer", + "_spec": "0.0.7", + "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "Isaac Z. Schlueter", "email": "i@izs.me", @@ -30,8 +36,6 @@ "bugs": { "url": "https://github.com/isaacs/mute-stream/issues" }, - "bundleDependencies": false, - "deprecated": false, "description": "Bytes go in, but they don't come out (when muted).", "devDependencies": { "tap": "^5.4.4" diff --git a/node_modules/natural-compare/package.json b/node_modules/natural-compare/package.json index 047fc294..71c01eab 100644 --- a/node_modules/natural-compare/package.json +++ b/node_modules/natural-compare/package.json @@ -23,6 +23,7 @@ "fetchSpec": "1.4.0" }, "_requiredBy": [ + "/eslint", "/jest-snapshot" ], "_resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", diff --git a/node_modules/onetime/package.json b/node_modules/onetime/package.json index 21e5052b..9d9b4b7d 100644 --- a/node_modules/onetime/package.json +++ b/node_modules/onetime/package.json @@ -1,27 +1,33 @@ { - "_from": "onetime@^2.0.0", + "_args": [ + [ + "onetime@2.0.1", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "onetime@2.0.1", "_id": "onetime@2.0.1", "_inBundle": false, "_integrity": "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=", "_location": "/onetime", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "onetime@^2.0.0", + "raw": "onetime@2.0.1", "name": "onetime", "escapedName": "onetime", - "rawSpec": "^2.0.0", + "rawSpec": "2.0.1", "saveSpec": null, - "fetchSpec": "^2.0.0" + "fetchSpec": "2.0.1" }, "_requiredBy": [ "/restore-cursor" ], "_resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", - "_shasum": "067428230fd67443b2794b22bba528b6867962d4", - "_spec": "onetime@^2.0.0", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/restore-cursor", + "_spec": "2.0.1", + "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", @@ -30,11 +36,9 @@ "bugs": { "url": "https://github.com/sindresorhus/onetime/issues" }, - "bundleDependencies": false, "dependencies": { "mimic-fn": "^1.0.0" }, - "deprecated": false, "description": "Ensure a function is only called once", "devDependencies": { "ava": "*", diff --git a/node_modules/optionator/package.json b/node_modules/optionator/package.json index 53110b4d..e839d498 100644 --- a/node_modules/optionator/package.json +++ b/node_modules/optionator/package.json @@ -23,7 +23,8 @@ "fetchSpec": "0.8.2" }, "_requiredBy": [ - "/escodegen" + "/escodegen", + "/eslint" ], "_resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz", "_spec": "0.8.2", diff --git a/node_modules/parent-module/package.json b/node_modules/parent-module/package.json index dc4af861..2fce8b50 100644 --- a/node_modules/parent-module/package.json +++ b/node_modules/parent-module/package.json @@ -1,27 +1,33 @@ { - "_from": "parent-module@^1.0.0", + "_args": [ + [ + "parent-module@1.0.1", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "parent-module@1.0.1", "_id": "parent-module@1.0.1", "_inBundle": false, "_integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", "_location": "/parent-module", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "parent-module@^1.0.0", + "raw": "parent-module@1.0.1", "name": "parent-module", "escapedName": "parent-module", - "rawSpec": "^1.0.0", + "rawSpec": "1.0.1", "saveSpec": null, - "fetchSpec": "^1.0.0" + "fetchSpec": "1.0.1" }, "_requiredBy": [ "/eslint/import-fresh" ], "_resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", - "_shasum": "691d2709e78c79fae3a156622452d00762caaaa2", - "_spec": "parent-module@^1.0.0", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/eslint/node_modules/import-fresh", + "_spec": "1.0.1", + "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", @@ -30,11 +36,9 @@ "bugs": { "url": "https://github.com/sindresorhus/parent-module/issues" }, - "bundleDependencies": false, "dependencies": { "callsites": "^3.0.0" }, - "deprecated": false, "description": "Get the path of the parent module", "devDependencies": { "ava": "^1.4.1", diff --git a/node_modules/progress/package.json b/node_modules/progress/package.json index 94006d7b..f9c9d52e 100644 --- a/node_modules/progress/package.json +++ b/node_modules/progress/package.json @@ -1,27 +1,33 @@ { - "_from": "progress@^2.0.0", + "_args": [ + [ + "progress@2.0.3", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "progress@2.0.3", "_id": "progress@2.0.3", "_inBundle": false, "_integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", "_location": "/progress", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "progress@^2.0.0", + "raw": "progress@2.0.3", "name": "progress", "escapedName": "progress", - "rawSpec": "^2.0.0", + "rawSpec": "2.0.3", "saveSpec": null, - "fetchSpec": "^2.0.0" + "fetchSpec": "2.0.3" }, "_requiredBy": [ "/eslint" ], "_resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", - "_shasum": "7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8", - "_spec": "progress@^2.0.0", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/eslint", + "_spec": "2.0.3", + "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "TJ Holowaychuk", "email": "tj@vision-media.ca" @@ -29,7 +35,6 @@ "bugs": { "url": "https://github.com/visionmedia/node-progress/issues" }, - "bundleDependencies": false, "contributors": [ { "name": "Christoffer Hallas", @@ -49,7 +54,6 @@ } ], "dependencies": {}, - "deprecated": false, "description": "Flexible ascii progress bar", "engines": { "node": ">=0.4.0" diff --git a/node_modules/regexpp/package.json b/node_modules/regexpp/package.json index b7eb1305..419c4ca7 100644 --- a/node_modules/regexpp/package.json +++ b/node_modules/regexpp/package.json @@ -1,28 +1,34 @@ { - "_from": "regexpp@^2.0.1", + "_args": [ + [ + "regexpp@2.0.1", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "regexpp@2.0.1", "_id": "regexpp@2.0.1", "_inBundle": false, "_integrity": "sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw==", "_location": "/regexpp", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "regexpp@^2.0.1", + "raw": "regexpp@2.0.1", "name": "regexpp", "escapedName": "regexpp", - "rawSpec": "^2.0.1", + "rawSpec": "2.0.1", "saveSpec": null, - "fetchSpec": "^2.0.1" + "fetchSpec": "2.0.1" }, "_requiredBy": [ "/@typescript-eslint/eslint-plugin", "/eslint" ], "_resolved": "https://registry.npmjs.org/regexpp/-/regexpp-2.0.1.tgz", - "_shasum": "8d19d31cf632482b589049f8281f93dbcba4d07f", - "_spec": "regexpp@^2.0.1", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/@typescript-eslint/eslint-plugin", + "_spec": "2.0.1", + "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "Toru Nagashima", "url": "https://github.com/mysticatea" @@ -30,9 +36,7 @@ "bugs": { "url": "https://github.com/mysticatea/regexpp/issues" }, - "bundleDependencies": false, "dependencies": {}, - "deprecated": false, "description": "Regular expression parser for ECMAScript 2018.", "devDependencies": { "@types/eslint": "^4.16.2", diff --git a/node_modules/restore-cursor/package.json b/node_modules/restore-cursor/package.json index 05101750..89f53367 100644 --- a/node_modules/restore-cursor/package.json +++ b/node_modules/restore-cursor/package.json @@ -1,27 +1,33 @@ { - "_from": "restore-cursor@^2.0.0", + "_args": [ + [ + "restore-cursor@2.0.0", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "restore-cursor@2.0.0", "_id": "restore-cursor@2.0.0", "_inBundle": false, "_integrity": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=", "_location": "/restore-cursor", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "restore-cursor@^2.0.0", + "raw": "restore-cursor@2.0.0", "name": "restore-cursor", "escapedName": "restore-cursor", - "rawSpec": "^2.0.0", + "rawSpec": "2.0.0", "saveSpec": null, - "fetchSpec": "^2.0.0" + "fetchSpec": "2.0.0" }, "_requiredBy": [ "/cli-cursor" ], "_resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", - "_shasum": "9f7ee287f82fd326d4fd162923d62129eee0dfaf", - "_spec": "restore-cursor@^2.0.0", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/cli-cursor", + "_spec": "2.0.0", + "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", @@ -30,12 +36,10 @@ "bugs": { "url": "https://github.com/sindresorhus/restore-cursor/issues" }, - "bundleDependencies": false, "dependencies": { "onetime": "^2.0.0", "signal-exit": "^3.0.2" }, - "deprecated": false, "description": "Gracefully restore the CLI cursor on exit", "engines": { "node": ">=4" diff --git a/node_modules/run-async/package.json b/node_modules/run-async/package.json index 43fec11a..553ddcb0 100644 --- a/node_modules/run-async/package.json +++ b/node_modules/run-async/package.json @@ -1,27 +1,33 @@ { - "_from": "run-async@^2.2.0", + "_args": [ + [ + "run-async@2.3.0", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "run-async@2.3.0", "_id": "run-async@2.3.0", "_inBundle": false, "_integrity": "sha1-A3GrSuC91yDUFm19/aZP96RFpsA=", "_location": "/run-async", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "run-async@^2.2.0", + "raw": "run-async@2.3.0", "name": "run-async", "escapedName": "run-async", - "rawSpec": "^2.2.0", + "rawSpec": "2.3.0", "saveSpec": null, - "fetchSpec": "^2.2.0" + "fetchSpec": "2.3.0" }, "_requiredBy": [ "/inquirer" ], "_resolved": "https://registry.npmjs.org/run-async/-/run-async-2.3.0.tgz", - "_shasum": "0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0", - "_spec": "run-async@^2.2.0", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/inquirer", + "_spec": "2.3.0", + "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "Simon Boudrias", "email": "admin@simonboudrias.com" @@ -29,11 +35,9 @@ "bugs": { "url": "https://github.com/SBoudrias/run-async/issues" }, - "bundleDependencies": false, "dependencies": { "is-promise": "^2.1.0" }, - "deprecated": false, "description": "Utility method to run function either synchronously or asynchronously using the common `this.async()` style.", "devDependencies": { "mocha": "^3.1.2" diff --git a/node_modules/rxjs/package.json b/node_modules/rxjs/package.json index b5d08a9e..7c71a3d2 100644 --- a/node_modules/rxjs/package.json +++ b/node_modules/rxjs/package.json @@ -1,27 +1,33 @@ { - "_from": "rxjs@^6.4.0", + "_args": [ + [ + "rxjs@6.5.3", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "rxjs@6.5.3", "_id": "rxjs@6.5.3", "_inBundle": false, "_integrity": "sha512-wuYsAYYFdWTAnAaPoKGNhfpWwKZbJW+HgAJ+mImp+Epl7BG8oNWBCTyRM8gba9k4lk8BgWdoYm21Mo/RYhhbgA==", "_location": "/rxjs", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "rxjs@^6.4.0", + "raw": "rxjs@6.5.3", "name": "rxjs", "escapedName": "rxjs", - "rawSpec": "^6.4.0", + "rawSpec": "6.5.3", "saveSpec": null, - "fetchSpec": "^6.4.0" + "fetchSpec": "6.5.3" }, "_requiredBy": [ "/inquirer" ], "_resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.5.3.tgz", - "_shasum": "510e26317f4db91a7eb1de77d9dd9ba0a4899a3a", - "_spec": "rxjs@^6.4.0", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/inquirer", + "_spec": "6.5.3", + "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "Ben Lesh", "email": "ben@benlesh.com" @@ -29,7 +35,6 @@ "bugs": { "url": "https://github.com/ReactiveX/RxJS/issues" }, - "bundleDependencies": false, "config": { "commitizen": { "path": "cz-conventional-changelog" @@ -64,7 +69,6 @@ "dependencies": { "tslib": "^1.9.0" }, - "deprecated": false, "description": "Reactive Extensions for modern JavaScript", "devDependencies": { "@angular-devkit/build-optimizer": "0.4.6", diff --git a/node_modules/slice-ansi/node_modules/is-fullwidth-code-point/package.json b/node_modules/slice-ansi/node_modules/is-fullwidth-code-point/package.json index 3ecf5263..3d6e3aff 100644 --- a/node_modules/slice-ansi/node_modules/is-fullwidth-code-point/package.json +++ b/node_modules/slice-ansi/node_modules/is-fullwidth-code-point/package.json @@ -1,27 +1,33 @@ { - "_from": "is-fullwidth-code-point@^2.0.0", + "_args": [ + [ + "is-fullwidth-code-point@2.0.0", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "is-fullwidth-code-point@2.0.0", "_id": "is-fullwidth-code-point@2.0.0", "_inBundle": false, "_integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", "_location": "/slice-ansi/is-fullwidth-code-point", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "is-fullwidth-code-point@^2.0.0", + "raw": "is-fullwidth-code-point@2.0.0", "name": "is-fullwidth-code-point", "escapedName": "is-fullwidth-code-point", - "rawSpec": "^2.0.0", + "rawSpec": "2.0.0", "saveSpec": null, - "fetchSpec": "^2.0.0" + "fetchSpec": "2.0.0" }, "_requiredBy": [ "/slice-ansi" ], "_resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "_shasum": "a3b30a5c4f199183167aaab93beefae3ddfb654f", - "_spec": "is-fullwidth-code-point@^2.0.0", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/slice-ansi", + "_spec": "2.0.0", + "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", @@ -30,8 +36,6 @@ "bugs": { "url": "https://github.com/sindresorhus/is-fullwidth-code-point/issues" }, - "bundleDependencies": false, - "deprecated": false, "description": "Check if the character represented by a given Unicode code point is fullwidth", "devDependencies": { "ava": "*", diff --git a/node_modules/slice-ansi/package.json b/node_modules/slice-ansi/package.json index f5c4c744..4ba26bd9 100644 --- a/node_modules/slice-ansi/package.json +++ b/node_modules/slice-ansi/package.json @@ -1,37 +1,41 @@ { - "_from": "slice-ansi@^2.1.0", + "_args": [ + [ + "slice-ansi@2.1.0", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "slice-ansi@2.1.0", "_id": "slice-ansi@2.1.0", "_inBundle": false, "_integrity": "sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==", "_location": "/slice-ansi", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "slice-ansi@^2.1.0", + "raw": "slice-ansi@2.1.0", "name": "slice-ansi", "escapedName": "slice-ansi", - "rawSpec": "^2.1.0", + "rawSpec": "2.1.0", "saveSpec": null, - "fetchSpec": "^2.1.0" + "fetchSpec": "2.1.0" }, "_requiredBy": [ "/table" ], "_resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz", - "_shasum": "cacd7693461a637a5788d92a7dd4fba068e81636", - "_spec": "slice-ansi@^2.1.0", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/table", + "_spec": "2.1.0", + "_where": "/mnt/projects/expo/expo-github-action", "bugs": { "url": "https://github.com/chalk/slice-ansi/issues" }, - "bundleDependencies": false, "dependencies": { "ansi-styles": "^3.2.0", "astral-regex": "^1.0.0", "is-fullwidth-code-point": "^2.0.0" }, - "deprecated": false, "description": "Slice a string with ANSI escape codes", "devDependencies": { "ava": "^1.1.0", diff --git a/node_modules/strip-json-comments/package.json b/node_modules/strip-json-comments/package.json index 6b5acc61..f4b93249 100644 --- a/node_modules/strip-json-comments/package.json +++ b/node_modules/strip-json-comments/package.json @@ -1,27 +1,33 @@ { - "_from": "strip-json-comments@^3.0.1", + "_args": [ + [ + "strip-json-comments@3.0.1", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "strip-json-comments@3.0.1", "_id": "strip-json-comments@3.0.1", "_inBundle": false, "_integrity": "sha512-VTyMAUfdm047mwKl+u79WIdrZxtFtn+nBxHeb844XBQ9uMNTuTHdx2hc5RiAJYqwTj3wc/xe5HLSdJSkJ+WfZw==", "_location": "/strip-json-comments", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "strip-json-comments@^3.0.1", + "raw": "strip-json-comments@3.0.1", "name": "strip-json-comments", "escapedName": "strip-json-comments", - "rawSpec": "^3.0.1", + "rawSpec": "3.0.1", "saveSpec": null, - "fetchSpec": "^3.0.1" + "fetchSpec": "3.0.1" }, "_requiredBy": [ "/eslint" ], "_resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.0.1.tgz", - "_shasum": "85713975a91fb87bf1b305cca77395e40d2a64a7", - "_spec": "strip-json-comments@^3.0.1", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/eslint", + "_spec": "3.0.1", + "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", @@ -30,8 +36,6 @@ "bugs": { "url": "https://github.com/sindresorhus/strip-json-comments/issues" }, - "bundleDependencies": false, - "deprecated": false, "description": "Strip comments from JSON. Lets you use comments in your JSON files!", "devDependencies": { "ava": "^1.4.1", diff --git a/node_modules/table/node_modules/ansi-regex/package.json b/node_modules/table/node_modules/ansi-regex/package.json index a512d753..05cf0749 100644 --- a/node_modules/table/node_modules/ansi-regex/package.json +++ b/node_modules/table/node_modules/ansi-regex/package.json @@ -1,27 +1,33 @@ { - "_from": "ansi-regex@^4.1.0", + "_args": [ + [ + "ansi-regex@4.1.0", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "ansi-regex@4.1.0", "_id": "ansi-regex@4.1.0", "_inBundle": false, "_integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", "_location": "/table/ansi-regex", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "ansi-regex@^4.1.0", + "raw": "ansi-regex@4.1.0", "name": "ansi-regex", "escapedName": "ansi-regex", - "rawSpec": "^4.1.0", + "rawSpec": "4.1.0", "saveSpec": null, - "fetchSpec": "^4.1.0" + "fetchSpec": "4.1.0" }, "_requiredBy": [ "/table/strip-ansi" ], "_resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", - "_shasum": "8b9f8f08cf1acb843756a839ca8c7e3168c51997", - "_spec": "ansi-regex@^4.1.0", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/table/node_modules/strip-ansi", + "_spec": "4.1.0", + "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", @@ -30,8 +36,6 @@ "bugs": { "url": "https://github.com/chalk/ansi-regex/issues" }, - "bundleDependencies": false, - "deprecated": false, "description": "Regular expression for matching ANSI escape codes", "devDependencies": { "ava": "^0.25.0", diff --git a/node_modules/table/node_modules/is-fullwidth-code-point/package.json b/node_modules/table/node_modules/is-fullwidth-code-point/package.json index 818adbe8..79c9bc58 100644 --- a/node_modules/table/node_modules/is-fullwidth-code-point/package.json +++ b/node_modules/table/node_modules/is-fullwidth-code-point/package.json @@ -1,27 +1,33 @@ { - "_from": "is-fullwidth-code-point@^2.0.0", + "_args": [ + [ + "is-fullwidth-code-point@2.0.0", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "is-fullwidth-code-point@2.0.0", "_id": "is-fullwidth-code-point@2.0.0", "_inBundle": false, "_integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", "_location": "/table/is-fullwidth-code-point", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "is-fullwidth-code-point@^2.0.0", + "raw": "is-fullwidth-code-point@2.0.0", "name": "is-fullwidth-code-point", "escapedName": "is-fullwidth-code-point", - "rawSpec": "^2.0.0", + "rawSpec": "2.0.0", "saveSpec": null, - "fetchSpec": "^2.0.0" + "fetchSpec": "2.0.0" }, "_requiredBy": [ "/table/string-width" ], "_resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "_shasum": "a3b30a5c4f199183167aaab93beefae3ddfb654f", - "_spec": "is-fullwidth-code-point@^2.0.0", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/table/node_modules/string-width", + "_spec": "2.0.0", + "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", @@ -30,8 +36,6 @@ "bugs": { "url": "https://github.com/sindresorhus/is-fullwidth-code-point/issues" }, - "bundleDependencies": false, - "deprecated": false, "description": "Check if the character represented by a given Unicode code point is fullwidth", "devDependencies": { "ava": "*", diff --git a/node_modules/table/node_modules/string-width/package.json b/node_modules/table/node_modules/string-width/package.json index 898e367c..f1c0145b 100644 --- a/node_modules/table/node_modules/string-width/package.json +++ b/node_modules/table/node_modules/string-width/package.json @@ -1,27 +1,33 @@ { - "_from": "string-width@^3.0.0", + "_args": [ + [ + "string-width@3.1.0", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "string-width@3.1.0", "_id": "string-width@3.1.0", "_inBundle": false, "_integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", "_location": "/table/string-width", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "string-width@^3.0.0", + "raw": "string-width@3.1.0", "name": "string-width", "escapedName": "string-width", - "rawSpec": "^3.0.0", + "rawSpec": "3.1.0", "saveSpec": null, - "fetchSpec": "^3.0.0" + "fetchSpec": "3.1.0" }, "_requiredBy": [ "/table" ], "_resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", - "_shasum": "22767be21b62af1081574306f69ac51b62203961", - "_spec": "string-width@^3.0.0", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/table", + "_spec": "3.1.0", + "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", @@ -30,13 +36,11 @@ "bugs": { "url": "https://github.com/sindresorhus/string-width/issues" }, - "bundleDependencies": false, "dependencies": { "emoji-regex": "^7.0.1", "is-fullwidth-code-point": "^2.0.0", "strip-ansi": "^5.1.0" }, - "deprecated": false, "description": "Get the visual width of a string - the number of columns required to display it", "devDependencies": { "ava": "^1.0.1", diff --git a/node_modules/table/node_modules/strip-ansi/package.json b/node_modules/table/node_modules/strip-ansi/package.json index 3ce81338..971fc66e 100644 --- a/node_modules/table/node_modules/strip-ansi/package.json +++ b/node_modules/table/node_modules/strip-ansi/package.json @@ -1,27 +1,33 @@ { - "_from": "strip-ansi@^5.1.0", + "_args": [ + [ + "strip-ansi@5.2.0", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "strip-ansi@5.2.0", "_id": "strip-ansi@5.2.0", "_inBundle": false, "_integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", "_location": "/table/strip-ansi", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "strip-ansi@^5.1.0", + "raw": "strip-ansi@5.2.0", "name": "strip-ansi", "escapedName": "strip-ansi", - "rawSpec": "^5.1.0", + "rawSpec": "5.2.0", "saveSpec": null, - "fetchSpec": "^5.1.0" + "fetchSpec": "5.2.0" }, "_requiredBy": [ "/table/string-width" ], "_resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "_shasum": "8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae", - "_spec": "strip-ansi@^5.1.0", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/table/node_modules/string-width", + "_spec": "5.2.0", + "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", @@ -30,11 +36,9 @@ "bugs": { "url": "https://github.com/chalk/strip-ansi/issues" }, - "bundleDependencies": false, "dependencies": { "ansi-regex": "^4.1.0" }, - "deprecated": false, "description": "Strip ANSI escape codes from a string", "devDependencies": { "ava": "^1.3.1", diff --git a/node_modules/table/package.json b/node_modules/table/package.json index c90b4b34..3838aa6b 100644 --- a/node_modules/table/package.json +++ b/node_modules/table/package.json @@ -1,5 +1,12 @@ { - "_from": "table@^5.2.3", + "_args": [ + [ + "table@5.4.6", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "table@5.4.6", "_id": "table@5.4.6", "_inBundle": false, "_integrity": "sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug==", @@ -8,22 +15,21 @@ "emoji-regex": "7.0.3" }, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "table@^5.2.3", + "raw": "table@5.4.6", "name": "table", "escapedName": "table", - "rawSpec": "^5.2.3", + "rawSpec": "5.4.6", "saveSpec": null, - "fetchSpec": "^5.2.3" + "fetchSpec": "5.4.6" }, "_requiredBy": [ "/eslint" ], "_resolved": "https://registry.npmjs.org/table/-/table-5.4.6.tgz", - "_shasum": "1292d19500ce3f86053b05f0e8e7e4a3bb21079e", - "_spec": "table@^5.2.3", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/eslint", + "_spec": "5.4.6", + "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "Gajus Kuizinas", "email": "gajus@gajus.com", @@ -32,14 +38,12 @@ "bugs": { "url": "https://github.com/gajus/table/issues" }, - "bundleDependencies": false, "dependencies": { "ajv": "^6.10.2", "lodash": "^4.17.14", "slice-ansi": "^2.1.0", "string-width": "^3.0.0" }, - "deprecated": false, "description": "Formats data into a string table.", "devDependencies": { "@babel/cli": "^7.5.0", diff --git a/node_modules/text-table/package.json b/node_modules/text-table/package.json index 1f9470ae..78e0e62a 100644 --- a/node_modules/text-table/package.json +++ b/node_modules/text-table/package.json @@ -1,27 +1,33 @@ { - "_from": "text-table@^0.2.0", + "_args": [ + [ + "text-table@0.2.0", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "text-table@0.2.0", "_id": "text-table@0.2.0", "_inBundle": false, "_integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", "_location": "/text-table", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "text-table@^0.2.0", + "raw": "text-table@0.2.0", "name": "text-table", "escapedName": "text-table", - "rawSpec": "^0.2.0", + "rawSpec": "0.2.0", "saveSpec": null, - "fetchSpec": "^0.2.0" + "fetchSpec": "0.2.0" }, "_requiredBy": [ "/eslint" ], "_resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "_shasum": "7f5ee823ae805207c00af2df4a84ec3fcfa570b4", - "_spec": "text-table@^0.2.0", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/eslint", + "_spec": "0.2.0", + "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "James Halliday", "email": "mail@substack.net", @@ -30,8 +36,6 @@ "bugs": { "url": "https://github.com/substack/text-table/issues" }, - "bundleDependencies": false, - "deprecated": false, "description": "borderless text tables with alignment", "devDependencies": { "cli-color": "~0.2.3", diff --git a/node_modules/tmp/package.json b/node_modules/tmp/package.json index 31013b90..2fdca15b 100644 --- a/node_modules/tmp/package.json +++ b/node_modules/tmp/package.json @@ -1,27 +1,33 @@ { - "_from": "tmp@^0.0.33", + "_args": [ + [ + "tmp@0.0.33", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "tmp@0.0.33", "_id": "tmp@0.0.33", "_inBundle": false, "_integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", "_location": "/tmp", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "tmp@^0.0.33", + "raw": "tmp@0.0.33", "name": "tmp", "escapedName": "tmp", - "rawSpec": "^0.0.33", + "rawSpec": "0.0.33", "saveSpec": null, - "fetchSpec": "^0.0.33" + "fetchSpec": "0.0.33" }, "_requiredBy": [ "/external-editor" ], "_resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", - "_shasum": "6d34335889768d21b2bcda0aa277ced3b1bfadf9", - "_spec": "tmp@^0.0.33", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/external-editor", + "_spec": "0.0.33", + "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "KARASZI István", "email": "github@spam.raszi.hu", @@ -30,11 +36,9 @@ "bugs": { "url": "http://github.com/raszi/node-tmp/issues" }, - "bundleDependencies": false, "dependencies": { "os-tmpdir": "~1.0.2" }, - "deprecated": false, "description": "Temporary file and directory creator", "devDependencies": { "vows": "~0.7.0" diff --git a/node_modules/tslib/package.json b/node_modules/tslib/package.json index f1b7d542..292298da 100644 --- a/node_modules/tslib/package.json +++ b/node_modules/tslib/package.json @@ -1,36 +1,40 @@ { - "_from": "tslib@^1.8.1", + "_args": [ + [ + "tslib@1.10.0", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "tslib@1.10.0", "_id": "tslib@1.10.0", "_inBundle": false, "_integrity": "sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ==", "_location": "/tslib", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "tslib@^1.8.1", + "raw": "tslib@1.10.0", "name": "tslib", "escapedName": "tslib", - "rawSpec": "^1.8.1", + "rawSpec": "1.10.0", "saveSpec": null, - "fetchSpec": "^1.8.1" + "fetchSpec": "1.10.0" }, "_requiredBy": [ "/rxjs", "/tsutils" ], "_resolved": "https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz", - "_shasum": "c3c19f95973fb0a62973fb09d90d961ee43e5c8a", - "_spec": "tslib@^1.8.1", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/tsutils", + "_spec": "1.10.0", + "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "Microsoft Corp." }, "bugs": { "url": "https://github.com/Microsoft/TypeScript/issues" }, - "bundleDependencies": false, - "deprecated": false, "description": "Runtime library for TypeScript helper functions", "homepage": "http://typescriptlang.org/", "jsnext:main": "tslib.es6.js", diff --git a/node_modules/tsutils/package.json b/node_modules/tsutils/package.json index 16ce47dc..180d71bd 100644 --- a/node_modules/tsutils/package.json +++ b/node_modules/tsutils/package.json @@ -1,38 +1,42 @@ { - "_from": "tsutils@^3.17.1", + "_args": [ + [ + "tsutils@3.17.1", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "tsutils@3.17.1", "_id": "tsutils@3.17.1", "_inBundle": false, "_integrity": "sha512-kzeQ5B8H3w60nFY2g8cJIuH7JDpsALXySGtwGJ0p2LSjLgay3NdIpqq5SoOBe46bKDW2iq25irHCr8wjomUS2g==", "_location": "/tsutils", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "tsutils@^3.17.1", + "raw": "tsutils@3.17.1", "name": "tsutils", "escapedName": "tsutils", - "rawSpec": "^3.17.1", + "rawSpec": "3.17.1", "saveSpec": null, - "fetchSpec": "^3.17.1" + "fetchSpec": "3.17.1" }, "_requiredBy": [ "/@typescript-eslint/eslint-plugin" ], "_resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.17.1.tgz", - "_shasum": "ed719917f11ca0dee586272b2ac49e015a2dd759", - "_spec": "tsutils@^3.17.1", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/@typescript-eslint/eslint-plugin", + "_spec": "3.17.1", + "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "Klaus Meinhardt" }, "bugs": { "url": "https://github.com/ajafff/tsutils/issues" }, - "bundleDependencies": false, "dependencies": { "tslib": "^1.8.1" }, - "deprecated": false, "description": "utilities for working with typescript's AST", "devDependencies": { "@fimbul/mithotyn": "^0.17.0", diff --git a/node_modules/v8-compile-cache/package.json b/node_modules/v8-compile-cache/package.json index e4e0d968..399a806c 100644 --- a/node_modules/v8-compile-cache/package.json +++ b/node_modules/v8-compile-cache/package.json @@ -1,27 +1,33 @@ { - "_from": "v8-compile-cache@^2.0.3", + "_args": [ + [ + "v8-compile-cache@2.1.0", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, + "_from": "v8-compile-cache@2.1.0", "_id": "v8-compile-cache@2.1.0", "_inBundle": false, "_integrity": "sha512-usZBT3PW+LOjM25wbqIlZwPeJV+3OSz3M1k1Ws8snlW39dZyYL9lOGC5FgPVHfk0jKmjiDV8Z0mIbVQPiwFs7g==", "_location": "/v8-compile-cache", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "v8-compile-cache@^2.0.3", + "raw": "v8-compile-cache@2.1.0", "name": "v8-compile-cache", "escapedName": "v8-compile-cache", - "rawSpec": "^2.0.3", + "rawSpec": "2.1.0", "saveSpec": null, - "fetchSpec": "^2.0.3" + "fetchSpec": "2.1.0" }, "_requiredBy": [ "/eslint" ], "_resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.1.0.tgz", - "_shasum": "e14de37b31a6d194f5690d67efc4e7f6fc6ab30e", - "_spec": "v8-compile-cache@^2.0.3", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/eslint", + "_spec": "2.1.0", + "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "Andres Suarez", "email": "zertosh@gmail.com" @@ -29,9 +35,7 @@ "bugs": { "url": "https://github.com/zertosh/v8-compile-cache/issues" }, - "bundleDependencies": false, "dependencies": {}, - "deprecated": false, "description": "Require hook for automatic V8 compile cache persistence", "devDependencies": { "babel-core": "6.23.1", diff --git a/node_modules/write/package.json b/node_modules/write/package.json index 0379df0c..773fbcf9 100644 --- a/node_modules/write/package.json +++ b/node_modules/write/package.json @@ -1,4 +1,11 @@ { + "_args": [ + [ + "write@1.0.3", + "/mnt/projects/expo/expo-github-action" + ] + ], + "_development": true, "_from": "write@1.0.3", "_id": "write@1.0.3", "_inBundle": false, @@ -19,9 +26,8 @@ "/flat-cache" ], "_resolved": "https://registry.npmjs.org/write/-/write-1.0.3.tgz", - "_shasum": "0800e14523b923a387e415123c865616aae0f5c3", - "_spec": "write@1.0.3", - "_where": "/mnt/projects/expo/expo-github-action/node_modules/flat-cache", + "_spec": "1.0.3", + "_where": "/mnt/projects/expo/expo-github-action", "author": { "name": "Jon Schlinkert", "url": "https://github.com/jonschlinkert" @@ -29,7 +35,6 @@ "bugs": { "url": "https://github.com/jonschlinkert/write/issues" }, - "bundleDependencies": false, "contributors": [ { "name": "Charlike Mike Reagent", @@ -43,7 +48,6 @@ "dependencies": { "mkdirp": "^0.5.1" }, - "deprecated": false, "description": "Write data to a file, replacing the file if it already exists and creating any intermediate directories if they don't already exist. Thin wrapper around node's native fs methods.", "devDependencies": { "async-each": "^1.0.1", diff --git a/package.json b/package.json index 7e3bb234..ff3cfeea 100644 --- a/package.json +++ b/package.json @@ -41,7 +41,7 @@ "husky": { "hooks": { "pre-commit": "npm test && npm run lint -- --fix && npm run build", - "post-commit": "npm prune --production && git add node_modules/* && git commit -m \"chore: fix node_modules with husky\"" + "post-commit": "npm prune --production && git add build node_modules && git commit -m \"chore: fix node_modules with husky\"" } } }