-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
296 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,104 @@ | ||
#!/usr/bin/env node | ||
"use strict"; | ||
console.log("Works Good!"); | ||
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()); | ||
}); | ||
}; | ||
var __generator = (this && this.__generator) || function (thisArg, body) { | ||
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; | ||
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; | ||
function verb(n) { return function (v) { return step([n, v]); }; } | ||
function step(op) { | ||
if (f) throw new TypeError("Generator is already executing."); | ||
while (_) try { | ||
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; | ||
if (y = 0, t) op = [op[0] & 2, t.value]; | ||
switch (op[0]) { | ||
case 0: case 1: t = op; break; | ||
case 4: _.label++; return { value: op[1], done: false }; | ||
case 5: _.label++; y = op[1]; op = [0]; continue; | ||
case 7: op = _.ops.pop(); _.trys.pop(); continue; | ||
default: | ||
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } | ||
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } | ||
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } | ||
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } | ||
if (t[2]) _.ops.pop(); | ||
_.trys.pop(); continue; | ||
} | ||
op = body.call(thisArg, _); | ||
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } | ||
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; | ||
} | ||
}; | ||
var __importDefault = (this && this.__importDefault) || function (mod) { | ||
return (mod && mod.__esModule) ? mod : { "default": mod }; | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var chalk_1 = __importDefault(require("chalk")); | ||
var clear_1 = __importDefault(require("clear")); | ||
var figlet_1 = __importDefault(require("figlet")); | ||
var process_1 = __importDefault(require("process")); | ||
var node_fetch_1 = __importDefault(require("node-fetch")); | ||
var node_emoji_1 = __importDefault(require("node-emoji")); | ||
(function () { return __awaiter(void 0, void 0, void 0, function () { | ||
var username, baseUrl, res, user; | ||
return __generator(this, function (_a) { | ||
switch (_a.label) { | ||
case 0: | ||
// IIFE Used to get async/await on top level | ||
clear_1.default(); | ||
console.log(chalk_1.default.rgb(255, 22, 84)(figlet_1.default.textSync("Stalk", { | ||
font: "ANSI Shadow", | ||
}))); | ||
if (process_1.default.argv.length !== 3) { | ||
console.log(chalk_1.default.bold("Usage:")); | ||
console.log(chalk_1.default.whiteBright(" stalk [username]")); | ||
return [2 /*return*/]; | ||
} | ||
if (["--help", "-h"].includes(process_1.default.argv[2])) { | ||
console.log(chalk_1.default.bold("Usage:")); | ||
console.log(chalk_1.default.whiteBright(" stalk [username]")); | ||
return [2 /*return*/]; | ||
} | ||
username = process_1.default.argv[2]; | ||
baseUrl = "https://api.github.com"; | ||
return [4 /*yield*/, node_fetch_1.default(baseUrl + "/users/" + username)]; | ||
case 1: | ||
res = _a.sent(); | ||
if (res.status === 404) { | ||
console.log(chalk_1.default.redBright.bold(node_emoji_1.default.get("anger") + " Shoot! that username does not exist on github")); | ||
return [2 /*return*/]; | ||
} | ||
if (res.status !== 200) { | ||
console.log(chalk_1.default.redBright.bold(node_emoji_1.default.get("anger") + " Error: " + res.statusText)); | ||
return [2 /*return*/]; | ||
} | ||
return [4 /*yield*/, res.json()]; | ||
case 2: | ||
user = _a.sent(); | ||
console.log(node_emoji_1.default.get("star") + " " + chalk_1.default.bold.rgb(255, 22, 84)(user.login) + " " + chalk_1.default.rgb(255, 22, 84)(user.name)); | ||
console.log(user.html_url); | ||
printPair("Bio", user.bio); | ||
printPair("Location", user.location); | ||
printPair("Works At", user.company); | ||
printPair("Blog", user.blog); | ||
printPair("Joined", user.created_at); | ||
printPair("Looking for a job?", user.hireable ? "Yes" : "No"); | ||
printPair("Repos", user.public_repos.toString()); | ||
printPair("Followers", user.followers.toString()); | ||
printPair("Following", user.following.toString()); | ||
return [2 /*return*/]; | ||
} | ||
}); | ||
}); })(); | ||
function printPair(left, right) { | ||
if (right !== null) { | ||
console.log(chalk_1.default.bold.green(left) + ": " + right); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,93 @@ | ||
#!/usr/bin/env node | ||
|
||
console.log("Works Good!"); | ||
import chalk from "chalk"; | ||
import clear from "clear"; | ||
import figlet from "figlet"; | ||
import process from "process"; | ||
import fetch from "node-fetch"; | ||
import emoji from "node-emoji"; | ||
|
||
type User = { | ||
login: string; | ||
html_url: string; | ||
name: string; | ||
bio: string; | ||
company: string; | ||
email: string; | ||
location: string; | ||
blog: string; | ||
hireable: boolean; | ||
public_repos: number; | ||
followers: number; | ||
following: number; | ||
created_at: string; | ||
}; | ||
|
||
(async () => { | ||
// IIFE Used to get async/await on top level | ||
clear(); | ||
console.log( | ||
chalk.rgb( | ||
255, | ||
22, | ||
84 | ||
)( | ||
figlet.textSync("Stalk", { | ||
font: "ANSI Shadow", | ||
}) | ||
) | ||
); | ||
if (process.argv.length !== 3) { | ||
console.log(chalk.bold("Usage:")); | ||
console.log(chalk.whiteBright(" stalk [username]")); | ||
return; | ||
} | ||
|
||
if (["--help", "-h"].includes(process.argv[2])) { | ||
console.log(chalk.bold("Usage:")); | ||
console.log(chalk.whiteBright(" stalk [username]")); | ||
return; | ||
} | ||
|
||
const username: string = process.argv[2]; | ||
const baseUrl = "https://api.github.com"; | ||
|
||
const res = await fetch(`${baseUrl}/users/${username}`); | ||
|
||
if (res.status === 404) { | ||
console.log( | ||
chalk.redBright.bold(`${emoji.get("anger")} Shoot! that username does not exist on github`) | ||
); | ||
return; | ||
} | ||
if (res.status !== 200) { | ||
console.log(chalk.redBright.bold(`${emoji.get("anger")} Error: ${res.statusText}`)); | ||
return; | ||
} | ||
|
||
const user: User = await res.json(); | ||
|
||
console.log( | ||
`${emoji.get("star")} ${chalk.bold.rgb(255, 22, 84)(user.login)} ${chalk.rgb( | ||
255, | ||
22, | ||
84 | ||
)(user.name)}` | ||
); | ||
console.log(user.html_url); | ||
printPair("Bio", user.bio); | ||
printPair("Location", user.location); | ||
printPair("Works At", user.company); | ||
printPair("Blog", user.blog); | ||
printPair("Joined", user.created_at); | ||
printPair("Looking for a job?", user.hireable ? "Yes" : "No"); | ||
printPair("Repos", user.public_repos.toString()); | ||
printPair("Followers", user.followers.toString()); | ||
printPair("Following", user.following.toString()); | ||
})(); | ||
|
||
function printPair(left: string, right: string) { | ||
if (right !== null) { | ||
console.log(`${chalk.bold.green(left)}: ${right}`); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,6 +37,11 @@ | |
dependencies: | ||
any-observable "^0.3.0" | ||
|
||
"@types/clear@^0.1.0": | ||
version "0.1.0" | ||
resolved "https://registry.yarnpkg.com/@types/clear/-/clear-0.1.0.tgz#915bff8e6438d080f05888d28f6beeebc54159c0" | ||
integrity sha512-b2VgNzu3BxxM2nGhZSMzkiaTaCClevKkBCtgpV2Al0eGaEeQgTk5qHedzNxi/SgsvmDbqxWKDAIrxZNVKyDCXw== | ||
|
||
"@types/color-name@^1.1.1": | ||
version "1.1.1" | ||
resolved "https://registry.yarnpkg.com/@types/color-name/-/color-name-1.1.1.tgz#1c1261bbeaa10a8055bbc5d8ab84b7b2afc846a0" | ||
|
@@ -47,11 +52,34 @@ | |
resolved "https://registry.yarnpkg.com/@types/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#1ee30d79544ca84d68d4b3cdb0af4f205663dd2d" | ||
integrity sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag== | ||
|
||
"@types/figlet@^1.2.0": | ||
version "1.2.0" | ||
resolved "https://registry.yarnpkg.com/@types/figlet/-/figlet-1.2.0.tgz#2dab76da069dc8ce5dcab461f7f2788317fb01a8" | ||
integrity sha512-TDZkNpYfkc3X8yv7w1QBziZmmxzNfGKX+YjeNkMpmSiNV0QOdNf9G5cEZB3FH1/oaqpSQEdxuDzURdju2L3lng== | ||
|
||
"@types/json-schema@^7.0.3": | ||
version "7.0.4" | ||
resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.4.tgz#38fd73ddfd9b55abb1e1b2ed578cb55bd7b7d339" | ||
integrity sha512-8+KAKzEvSUdeo+kmqnKrqgeE+LcA0tjYWFY7RPProVYwnqDjukzO+3b6dLD56rYX5TdWejnEOLJYOIeh4CXKuA== | ||
|
||
"@types/node-emoji@^1.8.1": | ||
version "1.8.1" | ||
resolved "https://registry.yarnpkg.com/@types/node-emoji/-/node-emoji-1.8.1.tgz#689cb74fdf6e84309bcafce93a135dfecd01de3f" | ||
integrity sha512-0fRfA90FWm6KJfw6P9QGyo0HDTCmthZ7cWaBQndITlaWLTZ6njRyKwrwpzpg+n6kBXBIGKeUHEQuBx7bphGJkA== | ||
|
||
"@types/node-fetch@^2.5.7": | ||
version "2.5.7" | ||
resolved "https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.5.7.tgz#20a2afffa882ab04d44ca786449a276f9f6bbf3c" | ||
integrity sha512-o2WVNf5UhWRkxlf6eq+jMZDu7kjgpgJfl4xVNlvryc95O/6F2ld8ztKX+qu+Rjyet93WAWm5LjeX9H5FGkODvw== | ||
dependencies: | ||
"@types/node" "*" | ||
form-data "^3.0.0" | ||
|
||
"@types/node@*", "@types/node@^13.13.2": | ||
version "13.13.2" | ||
resolved "https://registry.yarnpkg.com/@types/node/-/node-13.13.2.tgz#160d82623610db590a64e8ca81784e11117e5a54" | ||
integrity sha512-LB2R1Oyhpg8gu4SON/mfforE525+Hi/M1ineICEDftqNVTyFg1aRIeGuTvXAoWHc4nbrFncWtJgMmoyRvuGh7A== | ||
|
||
"@types/parse-json@^4.0.0": | ||
version "4.0.0" | ||
resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0" | ||
|
@@ -189,6 +217,11 @@ astral-regex@^1.0.0: | |
resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" | ||
integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg== | ||
|
||
asynckit@^0.4.0: | ||
version "0.4.0" | ||
resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" | ||
integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= | ||
|
||
balanced-match@^1.0.0: | ||
version "1.0.0" | ||
resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" | ||
|
@@ -260,6 +293,11 @@ ci-info@^2.0.0: | |
resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46" | ||
integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ== | ||
|
||
clear@^0.1.0: | ||
version "0.1.0" | ||
resolved "https://registry.yarnpkg.com/clear/-/clear-0.1.0.tgz#b81b1e03437a716984fd7ac97c87d73bdfe7048a" | ||
integrity sha512-qMjRnoL+JDPJHeLePZJuao6+8orzHMGP04A8CdwCNsKhRbOnKRjefxONR7bwILT3MHecxKBjHkKL/tkZ8r4Uzw== | ||
|
||
cli-cursor@^2.0.0, cli-cursor@^2.1.0: | ||
version "2.1.0" | ||
resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" | ||
|
@@ -316,6 +354,13 @@ color-name@~1.1.4: | |
resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" | ||
integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== | ||
|
||
combined-stream@^1.0.8: | ||
version "1.0.8" | ||
resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" | ||
integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== | ||
dependencies: | ||
delayed-stream "~1.0.0" | ||
|
||
commander@^5.0.0: | ||
version "5.0.0" | ||
resolved "https://registry.yarnpkg.com/commander/-/commander-5.0.0.tgz#dbf1909b49e5044f8fdaf0adc809f0c0722bdfd0" | ||
|
@@ -384,6 +429,11 @@ deep-is@~0.1.3: | |
resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" | ||
integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= | ||
|
||
delayed-stream@~1.0.0: | ||
version "1.0.0" | ||
resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" | ||
integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk= | ||
|
||
doctrine@^3.0.0: | ||
version "3.0.0" | ||
resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" | ||
|
@@ -577,6 +627,11 @@ fast-levenshtein@~2.0.6: | |
resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" | ||
integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= | ||
|
||
figlet@^1.3.0: | ||
version "1.3.0" | ||
resolved "https://registry.yarnpkg.com/figlet/-/figlet-1.3.0.tgz#c49e3d92907ba13bebadc7124f76ba71f1f32ef0" | ||
integrity sha512-f7A8aOJAfyehLJ7lQ6rEA8WJw7kOk3lfWRi5piSjkzbK5YkI5sqO8eiLHz1ehO+DM0QYB85i8VfA6XIGUbU1dg== | ||
|
||
figures@^1.7.0: | ||
version "1.7.0" | ||
resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" | ||
|
@@ -642,6 +697,15 @@ flatted@^2.0.0: | |
resolved "https://registry.yarnpkg.com/flatted/-/flatted-2.0.2.tgz#4575b21e2bcee7434aa9be662f4b7b5f9c2b5138" | ||
integrity sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA== | ||
|
||
form-data@^3.0.0: | ||
version "3.0.0" | ||
resolved "https://registry.yarnpkg.com/form-data/-/form-data-3.0.0.tgz#31b7e39c85f1355b7139ee0c647cf0de7f83c682" | ||
integrity sha512-CKMFDglpbMi6PyN+brwB9Q/GOw0eAnsrEZDgcsH5Krhz5Od/haKHAX0NmQfha2zPPz0JpWzA7GJHGSnvCRLWsg== | ||
dependencies: | ||
asynckit "^0.4.0" | ||
combined-stream "^1.0.8" | ||
mime-types "^2.1.12" | ||
|
||
fs.realpath@^1.0.0: | ||
version "1.0.0" | ||
resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" | ||
|
@@ -977,6 +1041,11 @@ locate-path@^5.0.0: | |
dependencies: | ||
p-locate "^4.1.0" | ||
|
||
lodash.toarray@^4.4.0: | ||
version "4.4.0" | ||
resolved "https://registry.yarnpkg.com/lodash.toarray/-/lodash.toarray-4.4.0.tgz#24c4bfcd6b2fba38bfd0594db1179d8e9b656561" | ||
integrity sha1-JMS/zWsvuji/0FlNsRedjptlZWE= | ||
|
||
lodash@^4.17.14, lodash@^4.17.15: | ||
version "4.17.15" | ||
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548" | ||
|
@@ -1018,6 +1087,18 @@ micromatch@^4.0.2: | |
braces "^3.0.1" | ||
picomatch "^2.0.5" | ||
|
||
[email protected]: | ||
version "1.44.0" | ||
resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.44.0.tgz#fa11c5eb0aca1334b4233cb4d52f10c5a6272f92" | ||
integrity sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg== | ||
|
||
mime-types@^2.1.12: | ||
version "2.1.27" | ||
resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.27.tgz#47949f98e279ea53119f5722e0f34e529bec009f" | ||
integrity sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w== | ||
dependencies: | ||
mime-db "1.44.0" | ||
|
||
mimic-fn@^1.0.0: | ||
version "1.2.0" | ||
resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" | ||
|
@@ -1067,6 +1148,18 @@ nice-try@^1.0.4: | |
resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" | ||
integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== | ||
|
||
node-emoji@^1.10.0: | ||
version "1.10.0" | ||
resolved "https://registry.yarnpkg.com/node-emoji/-/node-emoji-1.10.0.tgz#8886abd25d9c7bb61802a658523d1f8d2a89b2da" | ||
integrity sha512-Yt3384If5H6BYGVHiHwTL+99OzJKHhgp82S8/dktEK73T26BazdgZ4JZh92xSVtGNJvz9UbXdNAc5hcrXV42vw== | ||
dependencies: | ||
lodash.toarray "^4.4.0" | ||
|
||
node-fetch@^2.6.0: | ||
version "2.6.0" | ||
resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.0.tgz#e633456386d4aa55863f676a7ab0daa8fdecb0fd" | ||
integrity sha512-8dG4H5ujfvFiqDmVu9fQ5bOHUC15JMjMY/Zumv26oOvvVJjM67KF8koCWIabKQ1GJIa9r2mMZscBq/TbdOcmNA== | ||
|
||
normalize-path@^3.0.0: | ||
version "3.0.0" | ||
resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" | ||
|