From c19486ef4a253f258b35a06753696a102d66d360 Mon Sep 17 00:00:00 2001 From: CodesOfRa Date: Wed, 10 Apr 2019 09:59:24 +0200 Subject: [PATCH 1/8] :hammer: a little bit of clean up & license change --- .gitignore | 116 ++++++ generator/index.js | 34 +- package-lock.json | 959 +++++++++++++++++++++++++++++++++++++++++++++ package.json | 11 +- 4 files changed, 1096 insertions(+), 24 deletions(-) create mode 100644 .gitignore create mode 100644 package-lock.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..86cc39e --- /dev/null +++ b/.gitignore @@ -0,0 +1,116 @@ +# Created by https://www.gitignore.io/api/macos,javascript,node +# Edit at https://www.gitignore.io/?templates=macos,javascript,node + +#!! ERROR: javascript is undefined. Use list command to see defined gitignore types !!# + +### macOS ### +# General +.DS_Store +.AppleDouble +.LSOverride + +# Icon must end with two \r +Icon + +# Thumbnails +._* + +# Files that might appear in the root of a volume +.DocumentRevisions-V100 +.fseventsd +.Spotlight-V100 +.TemporaryItems +.Trashes +.VolumeIcon.icns +.com.apple.timemachine.donotpresent + +# Directories potentially created on remote AFP share +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items +.apdisk + +### Node ### +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# Runtime data +pids +*.pid +*.seed +*.pid.lock + +# Directory for instrumented libs generated by jscoverage/JSCover +lib-cov + +# Coverage directory used by tools like istanbul +coverage + +# nyc test coverage +.nyc_output + +# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) +.grunt + +# Bower dependency directory (https://bower.io/) +bower_components + +# node-waf configuration +.lock-wscript + +# Compiled binary addons (https://nodejs.org/api/addons.html) +build/Release + +# Dependency directories +node_modules/ +jspm_packages/ + +# TypeScript v1 declaration files +typings/ + +# Optional npm cache directory +.npm + +# Optional eslint cache +.eslintcache + +# Optional REPL history +.node_repl_history + +# Output of 'npm pack' +*.tgz + +# Yarn Integrity file +.yarn-integrity + +# dotenv environment variables file +.env +.env.test + +# parcel-bundler cache (https://parceljs.org/) +.cache + +# next.js build output +.next + +# nuxt.js build output +.nuxt + +# vuepress build output +.vuepress/dist + +# Serverless directories +.serverless/ + +# FuseBox cache +.fusebox/ + +# DynamoDB Local files +.dynamodb/ + +# End of https://www.gitignore.io/api/macos,javascript,node \ No newline at end of file diff --git a/generator/index.js b/generator/index.js index 8081240..eac12cc 100644 --- a/generator/index.js +++ b/generator/index.js @@ -1,41 +1,35 @@ -let ui5 = `\nVue.config.ignoredElements = [/^ui5-/];`; +let ui5 = "\nVue.config.ignoredElements = [/^ui5-/];"; -module.exports = (api, opts, rootOptions) => { +module.exports = (api, options, rootOptions) => { api.extendPackage({ dependencies: { "@ui5/webcomponents": "^0.9.0" } }); - if (opts.addExample) { - api.render('./template', { - ...opts, + if (options.addExample) { + api.render("./template", { + ...options }); } api.onCreateComplete(() => { // inject to main.js - const fs = require('fs'); - const ext = api.hasPlugin('typescript') ? - 'ts' : - 'js'; + const fs = require("fs"); + const ext = api.hasPlugin("typescript") + ? "ts" + : "js"; const mainPath = api.resolve(`./src/main.${ext}`); - // get content - let contentMain = fs.readFileSync(mainPath, { - encoding: 'utf-8' - }); + let contentMain = fs.readFileSync(mainPath, {encoding: "utf-8"}); const lines = contentMain .split(/\r?\n/g) .reverse(); - // inject import const lastImportIndex = lines.findIndex(line => line.match(/^import/)); lines[lastImportIndex] += ui5; - // modify app contentMain = lines .reverse() - .join('\n'); - fs.writeFileSync(mainPath, contentMain, { - encoding: 'utf-8' - }); + .join("\n"); + fs.writeFileSync(mainPath, contentMain, {encoding: "utf-8"}); + api.exitLog("Successfully installed UI5 Web Components", "done"); }); -} \ No newline at end of file +}; \ No newline at end of file diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..1d09e30 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,959 @@ +{ + "name": "vue-cli-plugin-ui5-webcomponents", + "version": "0.0.1", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "@babel/code-frame": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.0.0.tgz", + "integrity": "sha512-OfC2uemaknXr87bdLUkWog7nYuliM9Ij5HUcajsVcMCpQrcLmtxRbVFTIqmcSkSeYRBFBRxs2FiUqFJDLdiebA==", + "dev": true, + "requires": { + "@babel/highlight": "^7.0.0" + } + }, + "@babel/highlight": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.0.0.tgz", + "integrity": "sha512-UFMC4ZeFC48Tpvj7C8UgLvtkaUuovQX+5xNWrsIoMG8o2z+XFKjKaN9iVmS84dPwVN00W4wPmqvYoZF3EGAsfw==", + "dev": true, + "requires": { + "chalk": "^2.0.0", + "esutils": "^2.0.2", + "js-tokens": "^4.0.0" + } + }, + "acorn": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.1.1.tgz", + "integrity": "sha512-jPTiwtOxaHNaAPg/dmrJ/beuzLRnXtB0kQPQ8JpotKJgTB6rX6c8mlf315941pyjBSaPg8NHXS9fhP4u17DpGA==", + "dev": true + }, + "acorn-jsx": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.0.1.tgz", + "integrity": "sha512-HJ7CfNHrfJLlNTzIEUTj43LNWGkqpRLxm3YjAlcD0ACydk9XynzYsCBHxut+iqt+1aBXkx9UP/w/ZqMr13XIzg==", + "dev": true + }, + "ajv": { + "version": "6.10.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.10.0.tgz", + "integrity": "sha512-nffhOpkymDECQyR0mnsUtoCE8RlX38G0rYP+wgLWFyZuUyuuojSSvi/+euOiQBIn63whYwYVIIH1TvE3tu4OEg==", + "dev": true, + "requires": { + "fast-deep-equal": "^2.0.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ansi-escapes": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", + "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==", + "dev": true + }, + "ansi-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", + "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", + "dev": true + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "requires": { + "sprintf-js": "~1.0.2" + } + }, + "astral-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz", + "integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==", + "dev": true + }, + "balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", + "dev": true + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "chardet": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", + "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", + "dev": true + }, + "cli-cursor": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", + "integrity": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=", + "dev": true, + "requires": { + "restore-cursor": "^2.0.0" + } + }, + "cli-width": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.2.0.tgz", + "integrity": "sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk=", + "dev": true + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + }, + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "debug": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", + "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + }, + "deep-is": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", + "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=", + "dev": true + }, + "doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "requires": { + "esutils": "^2.0.2" + } + }, + "emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "dev": true + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "dev": true + }, + "eslint": { + "version": "5.16.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-5.16.0.tgz", + "integrity": "sha512-S3Rz11i7c8AA5JPv7xAH+dOyq/Cu/VXHiHXBPOU1k/JAM5dXqQPt3qcrhpHSorXmrpu2g0gkIBVXAqCpzfoZIg==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.0.0", + "ajv": "^6.9.1", + "chalk": "^2.1.0", + "cross-spawn": "^6.0.5", + "debug": "^4.0.1", + "doctrine": "^3.0.0", + "eslint-scope": "^4.0.3", + "eslint-utils": "^1.3.1", + "eslint-visitor-keys": "^1.0.0", + "espree": "^5.0.1", + "esquery": "^1.0.1", + "esutils": "^2.0.2", + "file-entry-cache": "^5.0.1", + "functional-red-black-tree": "^1.0.1", + "glob": "^7.1.2", + "globals": "^11.7.0", + "ignore": "^4.0.6", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "inquirer": "^6.2.2", + "js-yaml": "^3.13.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.3.0", + "lodash": "^4.17.11", + "minimatch": "^3.0.4", + "mkdirp": "^0.5.1", + "natural-compare": "^1.4.0", + "optionator": "^0.8.2", + "path-is-inside": "^1.0.2", + "progress": "^2.0.0", + "regexpp": "^2.0.1", + "semver": "^5.5.1", + "strip-ansi": "^4.0.0", + "strip-json-comments": "^2.0.1", + "table": "^5.2.3", + "text-table": "^0.2.0" + } + }, + "eslint-scope": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz", + "integrity": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==", + "dev": true, + "requires": { + "esrecurse": "^4.1.0", + "estraverse": "^4.1.1" + } + }, + "eslint-utils": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.3.1.tgz", + "integrity": "sha512-Z7YjnIldX+2XMcjr7ZkgEsOj/bREONV60qYeB/bjMAqqqZ4zxKyWX+BOUkdmRmA9riiIPVvo5x86m5elviOk0Q==", + "dev": true + }, + "eslint-visitor-keys": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz", + "integrity": "sha512-qzm/XxIbxm/FHyH341ZrbnMUpe+5Bocte9xkmFMzPMjRaZMcXww+MpBptFvtU+79L362nqiLhekCxCxDPaUMBQ==", + "dev": true + }, + "espree": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-5.0.1.tgz", + "integrity": "sha512-qWAZcWh4XE/RwzLJejfcofscgMc9CamR6Tn1+XRXNzrvUSSbiAjGOI/fggztjIi7y9VLPqnICMIPiGyr8JaZ0A==", + "dev": true, + "requires": { + "acorn": "^6.0.7", + "acorn-jsx": "^5.0.0", + "eslint-visitor-keys": "^1.0.0" + } + }, + "esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true + }, + "esquery": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.0.1.tgz", + "integrity": "sha512-SmiyZ5zIWH9VM+SRUReLS5Q8a7GxtRdxEBVZpm98rJM7Sb+A9DVCndXfkeFUd3byderg+EbDkfnevfCwynWaNA==", + "dev": true, + "requires": { + "estraverse": "^4.0.0" + } + }, + "esrecurse": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz", + "integrity": "sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ==", + "dev": true, + "requires": { + "estraverse": "^4.1.0" + } + }, + "estraverse": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz", + "integrity": "sha1-De4/7TH81GlhjOc0IJn8GvoL2xM=", + "dev": true + }, + "esutils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz", + "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=", + "dev": true + }, + "external-editor": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.0.3.tgz", + "integrity": "sha512-bn71H9+qWoOQKyZDo25mOMVpSmXROAsTJVVVYzrrtol3d4y+AsKjf4Iwl2Q+IuT0kFSQ1qo166UuIwqYq7mGnA==", + "dev": true, + "requires": { + "chardet": "^0.7.0", + "iconv-lite": "^0.4.24", + "tmp": "^0.0.33" + } + }, + "fast-deep-equal": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz", + "integrity": "sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=", + "dev": true + }, + "fast-json-stable-stringify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz", + "integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I=", + "dev": true + }, + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", + "dev": true + }, + "figures": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", + "integrity": "sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=", + "dev": true, + "requires": { + "escape-string-regexp": "^1.0.5" + } + }, + "file-entry-cache": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-5.0.1.tgz", + "integrity": "sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g==", + "dev": true, + "requires": { + "flat-cache": "^2.0.1" + } + }, + "flat-cache": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-2.0.1.tgz", + "integrity": "sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA==", + "dev": true, + "requires": { + "flatted": "^2.0.0", + "rimraf": "2.6.3", + "write": "1.0.3" + } + }, + "flatted": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-2.0.0.tgz", + "integrity": "sha512-R+H8IZclI8AAkSBRQJLVOsxwAoHd6WC40b4QTNWIjzAa6BXOBfQcM587MXDTVPeYaopFNWHUFLx7eNmHDSxMWg==", + "dev": true + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true + }, + "functional-red-black-tree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", + "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=", + "dev": true + }, + "glob": { + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz", + "integrity": "sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "globals": { + "version": "11.11.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.11.0.tgz", + "integrity": "sha512-WHq43gS+6ufNOEqlrDBxVEbb8ntfXrfAUU2ZOpCxrBdGKW3gyv8mCxAfIBD0DroPKGrJ2eSsXsLtY9MPntsyTw==", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dev": true, + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "dev": true + }, + "import-fresh": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.0.0.tgz", + "integrity": "sha512-pOnA9tfM3Uwics+SaBLCNyZZZbK+4PTu0OPZtLlMIrv17EdBoC15S9Kn8ckJ9TZTyKb3ywNE5y1yeDxxGA7nTQ==", + "dev": true, + "requires": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + } + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", + "dev": true + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "inquirer": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-6.2.2.tgz", + "integrity": "sha512-Z2rREiXA6cHRR9KBOarR3WuLlFzlIfAEIiB45ll5SSadMg7WqOh1MKEjjndfuH5ewXdixWCxqnVfGOQzPeiztA==", + "dev": true, + "requires": { + "ansi-escapes": "^3.2.0", + "chalk": "^2.4.2", + "cli-cursor": "^2.1.0", + "cli-width": "^2.0.0", + "external-editor": "^3.0.3", + "figures": "^2.0.0", + "lodash": "^4.17.11", + "mute-stream": "0.0.7", + "run-async": "^2.2.0", + "rxjs": "^6.4.0", + "string-width": "^2.1.0", + "strip-ansi": "^5.0.0", + "through": "^2.3.6" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true + }, + "is-promise": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz", + "integrity": "sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=", + "dev": true + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", + "dev": true + }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true + }, + "js-yaml": { + "version": "3.13.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz", + "integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==", + "dev": true, + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", + "dev": true + }, + "levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", + "dev": true, + "requires": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + } + }, + "lodash": { + "version": "4.17.11", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.11.tgz", + "integrity": "sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg==", + "dev": true + }, + "mimic-fn": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", + "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", + "dev": true + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", + "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=", + "dev": true + }, + "mkdirp": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", + "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", + "dev": true, + "requires": { + "minimist": "0.0.8" + } + }, + "ms": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", + "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", + "dev": true + }, + "mute-stream": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz", + "integrity": "sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s=", + "dev": true + }, + "natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", + "dev": true + }, + "nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "dev": true + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "requires": { + "wrappy": "1" + } + }, + "onetime": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", + "integrity": "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=", + "dev": true, + "requires": { + "mimic-fn": "^1.0.0" + } + }, + "optionator": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz", + "integrity": "sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q=", + "dev": true, + "requires": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.4", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "wordwrap": "~1.0.0" + } + }, + "os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", + "dev": true + }, + "parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "requires": { + "callsites": "^3.0.0" + } + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true + }, + "path-is-inside": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", + "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=", + "dev": true + }, + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "dev": true + }, + "prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=", + "dev": true + }, + "progress": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "dev": true + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "dev": true + }, + "regexpp": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-2.0.1.tgz", + "integrity": "sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw==", + "dev": true + }, + "resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true + }, + "restore-cursor": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", + "integrity": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=", + "dev": true, + "requires": { + "onetime": "^2.0.0", + "signal-exit": "^3.0.2" + } + }, + "rimraf": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", + "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, + "run-async": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.3.0.tgz", + "integrity": "sha1-A3GrSuC91yDUFm19/aZP96RFpsA=", + "dev": true, + "requires": { + "is-promise": "^2.1.0" + } + }, + "rxjs": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.4.0.tgz", + "integrity": "sha512-Z9Yfa11F6B9Sg/BK9MnqnQ+aQYicPLtilXBp2yUtDt2JRCE0h26d33EnfO3ZxoNxG0T92OUucP3Ct7cpfkdFfw==", + "dev": true, + "requires": { + "tslib": "^1.9.0" + } + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true + }, + "semver": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", + "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", + "dev": true + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "dev": true, + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "dev": true + }, + "signal-exit": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", + "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=", + "dev": true + }, + "slice-ansi": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz", + "integrity": "sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.0", + "astral-regex": "^1.0.0", + "is-fullwidth-code-point": "^2.0.0" + } + }, + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", + "dev": true + }, + "string-width": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "dev": true, + "requires": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + } + }, + "strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "dev": true, + "requires": { + "ansi-regex": "^3.0.0" + } + }, + "strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + }, + "table": { + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/table/-/table-5.2.3.tgz", + "integrity": "sha512-N2RsDAMvDLvYwFcwbPyF3VmVSSkuF+G1e+8inhBLtHpvwXGw4QRPEZhihQNeEN0i1up6/f6ObCJXNdlRG3YVyQ==", + "dev": true, + "requires": { + "ajv": "^6.9.1", + "lodash": "^4.17.11", + "slice-ansi": "^2.1.0", + "string-width": "^3.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", + "dev": true + }, + "through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", + "dev": true + }, + "tmp": { + "version": "0.0.33", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "dev": true, + "requires": { + "os-tmpdir": "~1.0.2" + } + }, + "tslib": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.9.3.tgz", + "integrity": "sha512-4krF8scpejhaOgqzBEcGM7yDIEfi0/8+8zDRZhNZZ2kjmHJ4hv3zCbQWxoJGz1iw5U0Jl0nma13xzHXcncMavQ==", + "dev": true + }, + "type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", + "dev": true, + "requires": { + "prelude-ls": "~1.1.2" + } + }, + "uri-js": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz", + "integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==", + "dev": true, + "requires": { + "punycode": "^2.1.0" + } + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "wordwrap": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", + "integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=", + "dev": true + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + }, + "write": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/write/-/write-1.0.3.tgz", + "integrity": "sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig==", + "dev": true, + "requires": { + "mkdirp": "^0.5.1" + } + } + } +} diff --git a/package.json b/package.json index d970ae2..4f0486b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vue-cli-plugin-ui5-webcomponents", - "version": "0.0.1", + "version": "0.0.2", "description": "", "main": "index.js", "repository": { @@ -13,6 +13,9 @@ "ui5" ], "author": "Ramona Biscoveanu", - "license": "ISC", - "homepage": "https://github.com/CodesOfRa/vue-cli-plugin-ui5-webcomponents#README" -} \ No newline at end of file + "license": "Apache-2.0", + "homepage": "https://github.com/CodesOfRa/vue-cli-plugin-ui5-webcomponents#README", + "devDependencies": { + "eslint": "^5.16.0" + } +} From 60b25dce41aa6fada86ccf5e99b5d32703e78595 Mon Sep 17 00:00:00 2001 From: CodesOfRa Date: Wed, 10 Apr 2019 10:02:23 +0200 Subject: [PATCH 2/8] remove webpack config --- index.js | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/index.js b/index.js index 62228ba..e262d67 100644 --- a/index.js +++ b/index.js @@ -1,10 +1 @@ -module.exports = (api, opts) => { - api.chaiWebpack(config => { - config - .module - .rule("loader") - .test(/\.(png|jpg|gif)$/) - .use("file-loader") - .loader("file-loader") - }) -} +module.exports = (api, opts) => {}; \ No newline at end of file From dddc559782de0f260a696065cd8c0faacabfc810 Mon Sep 17 00:00:00 2001 From: Ramona Date: Wed, 10 Apr 2019 16:41:33 +0200 Subject: [PATCH 3/8] Create LICENSE --- LICENSE | 201 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 201 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..261eeb9 --- /dev/null +++ b/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. From c81ddc0f9995d0ffbb283e8a400ee866e6a61473 Mon Sep 17 00:00:00 2001 From: Ramona Date: Tue, 25 Jun 2019 14:31:15 +0200 Subject: [PATCH 4/8] Bump version (#4) * fix: bump version and add logo * fix: clean example --- generator/index.js | 54 ++++++++---------- generator/template/src/UI5Example.vue | 24 -------- .../template/src/components/UI5Example.vue | 30 ++++++++++ logo.png | Bin 0 -> 29476 bytes package.json | 4 +- 5 files changed, 56 insertions(+), 56 deletions(-) delete mode 100644 generator/template/src/UI5Example.vue create mode 100644 generator/template/src/components/UI5Example.vue create mode 100644 logo.png diff --git a/generator/index.js b/generator/index.js index eac12cc..6022d81 100644 --- a/generator/index.js +++ b/generator/index.js @@ -1,35 +1,29 @@ -let ui5 = "\nVue.config.ignoredElements = [/^ui5-/];"; +let ui5 = '\nVue.config.ignoredElements = [/^ui5-/];' module.exports = (api, options, rootOptions) => { - api.extendPackage({ - dependencies: { - "@ui5/webcomponents": "^0.9.0" - } - }); - if (options.addExample) { - api.render("./template", { - ...options - }); + api.extendPackage({ + dependencies: { + '@ui5/webcomponents': '^0.13.0' } - api.onCreateComplete(() => { - // inject to main.js - const fs = require("fs"); - const ext = api.hasPlugin("typescript") - ? "ts" - : "js"; - const mainPath = api.resolve(`./src/main.${ext}`); - let contentMain = fs.readFileSync(mainPath, {encoding: "utf-8"}); - const lines = contentMain - .split(/\r?\n/g) - .reverse(); + }) + if (options.addExample) { + api.render('./template', { + ...options + }) + } + api.onCreateComplete(() => { + // inject to main.js + const fs = require('fs') + const ext = api.hasPlugin('typescript') ? 'ts' : 'js' + const mainPath = api.resolve(`./src/main.${ext}`) + let contentMain = fs.readFileSync(mainPath, { encoding: 'utf-8' }) + const lines = contentMain.split(/\r?\n/g).reverse() - const lastImportIndex = lines.findIndex(line => line.match(/^import/)); - lines[lastImportIndex] += ui5; + const lastImportIndex = lines.findIndex(line => line.match(/^import/)) + lines[lastImportIndex] += ui5 - contentMain = lines - .reverse() - .join("\n"); - fs.writeFileSync(mainPath, contentMain, {encoding: "utf-8"}); - api.exitLog("Successfully installed UI5 Web Components", "done"); - }); -}; \ No newline at end of file + contentMain = lines.reverse().join('\n') + fs.writeFileSync(mainPath, contentMain, { encoding: 'utf-8' }) + api.exitLog('Successfully installed UI5 Web Components', 'done') + }) +} diff --git a/generator/template/src/UI5Example.vue b/generator/template/src/UI5Example.vue deleted file mode 100644 index 99e6c14..0000000 --- a/generator/template/src/UI5Example.vue +++ /dev/null @@ -1,24 +0,0 @@ - - \ No newline at end of file diff --git a/generator/template/src/components/UI5Example.vue b/generator/template/src/components/UI5Example.vue new file mode 100644 index 0000000..b2ee25a --- /dev/null +++ b/generator/template/src/components/UI5Example.vue @@ -0,0 +1,30 @@ + + diff --git a/logo.png b/logo.png new file mode 100644 index 0000000000000000000000000000000000000000..c12b3b49b01c127f20a33f306608f5d2b0559969 GIT binary patch literal 29476 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%0AI?AxB? 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 Date: Tue, 16 Jul 2019 12:59:48 +0200 Subject: [PATCH 5/8] Bump lodash from 4.17.11 to 4.17.14 (#5) Bumps [lodash](https://github.com/lodash/lodash) from 4.17.11 to 4.17.14. - [Release notes](https://github.com/lodash/lodash/releases) - [Commits](https://github.com/lodash/lodash/compare/4.17.11...4.17.14) Signed-off-by: dependabot[bot] --- package-lock.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index 1d09e30..65bf2ac 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "vue-cli-plugin-ui5-webcomponents", - "version": "0.0.1", + "version": "0.0.3", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -565,9 +565,9 @@ } }, "lodash": { - "version": "4.17.11", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.11.tgz", - "integrity": "sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg==", + "version": "4.17.14", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.14.tgz", + "integrity": "sha512-mmKYbW3GLuJeX+iGP+Y7Gp1AiGHGbXHCOh/jZmrawMmsE7MS4znI3RL2FsjbqOyMayHInjOeykW7PEajUk1/xw==", "dev": true }, "mimic-fn": { From cb61882dfdb00074c189bfa21b6fbed54966af1f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 27 Aug 2019 10:03:44 +0200 Subject: [PATCH 6/8] Bump eslint-utils from 1.3.1 to 1.4.2 (#6) Bumps [eslint-utils](https://github.com/mysticatea/eslint-utils) from 1.3.1 to 1.4.2. - [Release notes](https://github.com/mysticatea/eslint-utils/releases) - [Commits](https://github.com/mysticatea/eslint-utils/compare/v1.3.1...v1.4.2) Signed-off-by: dependabot[bot] --- package-lock.json | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index 65bf2ac..e726fb6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -263,10 +263,13 @@ } }, "eslint-utils": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.3.1.tgz", - "integrity": "sha512-Z7YjnIldX+2XMcjr7ZkgEsOj/bREONV60qYeB/bjMAqqqZ4zxKyWX+BOUkdmRmA9riiIPVvo5x86m5elviOk0Q==", - "dev": true + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.4.2.tgz", + "integrity": "sha512-eAZS2sEUMlIeCjBeubdj45dmBHQwPHWyBcT1VSYB7o9x9WRRqKxyUoiXlRjyAwzN7YEzHJlYg0NmzDRWx6GP4Q==", + "dev": true, + "requires": { + "eslint-visitor-keys": "^1.0.0" + } }, "eslint-visitor-keys": { "version": "1.0.0", From 88b0eafdbf9578975725ed4b6d830c99261c013e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 10 Nov 2020 10:49:46 +0100 Subject: [PATCH 7/8] Bump lodash from 4.17.14 to 4.17.19 (#8) Bumps [lodash](https://github.com/lodash/lodash) from 4.17.14 to 4.17.19. - [Release notes](https://github.com/lodash/lodash/releases) - [Commits](https://github.com/lodash/lodash/compare/4.17.14...4.17.19) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package-lock.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index e726fb6..989cf7c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -568,9 +568,9 @@ } }, "lodash": { - "version": "4.17.14", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.14.tgz", - "integrity": "sha512-mmKYbW3GLuJeX+iGP+Y7Gp1AiGHGbXHCOh/jZmrawMmsE7MS4znI3RL2FsjbqOyMayHInjOeykW7PEajUk1/xw==", + "version": "4.17.19", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.19.tgz", + "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==", "dev": true }, "mimic-fn": { From 47230e458ce497f119946d5add0b24c74de87bf2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 10 Nov 2020 10:49:59 +0100 Subject: [PATCH 8/8] Bump acorn from 6.1.1 to 6.4.1 (#7) Bumps [acorn](https://github.com/acornjs/acorn) from 6.1.1 to 6.4.1. - [Release notes](https://github.com/acornjs/acorn/releases) - [Commits](https://github.com/acornjs/acorn/compare/6.1.1...6.4.1) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package-lock.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 989cf7c..f39e03e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -25,9 +25,9 @@ } }, "acorn": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.1.1.tgz", - "integrity": "sha512-jPTiwtOxaHNaAPg/dmrJ/beuzLRnXtB0kQPQ8JpotKJgTB6rX6c8mlf315941pyjBSaPg8NHXS9fhP4u17DpGA==", + "version": "6.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.1.tgz", + "integrity": "sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA==", "dev": true }, "acorn-jsx": {