diff --git a/.github/java.json b/.github/hub.json similarity index 86% rename from .github/java.json rename to .github/hub.json index eda1b0cd4..6847cb7de 100644 --- a/.github/java.json +++ b/.github/hub.json @@ -1,14 +1,14 @@ -{ - "problemMatcher": [ - { - "owner": "java", - "pattern": [ - { - "regexp": "^Exception in thread \"(.*)\" (.*): (.*)$", - "code": 2, - "message": 3 - } - ] - } - ] +{ + "problemMatcher": [ + { + "owner": "hub", + "pattern": [ + { + "regexp": "^Exception in thread \"(.*)\" (.*): (.*)$", + "code": 2, + "message": 3 + } + ] + } + ] } \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 000000000..3b6641073 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "git.ignoreLimitWarning": true +} \ No newline at end of file diff --git a/README.md b/README.md index 38d33c16d..fe606d070 100644 --- a/README.md +++ b/README.md @@ -1,64 +1,23 @@ -# setup-java - -

- GitHub Actions status -

- -This action sets up a java environment for use in actions by: - -- optionally downloading and caching a version of java by version and adding to PATH. Downloads from [Azul's Zulu distribution](http://static.azul.com/zulu/bin/). -- registering problem matchers for error output - -# Usage - -See [action.yml](action.yml) - -Basic: -```yaml -steps: -- uses: actions/checkout@latest -- uses: actions/setup-java@v1 - with: - java-version: '9.0.4' // The JDK version to make available on the path. Takes a whole or semver Jdk version, or 1.x syntax (e.g. 1.8 => Jdk 8.x) - architecture: x64 // (x64 or x86) - defaults to x64 -- run: java -cp java HelloWorldApp -``` - -From local file: -```yaml -steps: -- uses: actions/checkout@master -- uses: actions/setup-java@v1 - with: - java-version: '4.0.0' - architecture: x64 - jdkFile: # Optional - jdkFile to install java from. Useful for versions not supported by Azul -- run: java -cp java HelloWorldApp -``` - -Matrix Testing: -```yaml -jobs: - build: - runs-on: ubuntu-16.04 - strategy: - matrix: - java: [ '1.6', '9.0.x', '12.0.2' ] - name: Java ${{ matrix.java }} sample - steps: - - uses: actions/checkout@master - - name: Setup java - uses: actions/setup-java@v1 - with: - java-version: ${{ matrix.java }} - architecture: x64 - - run: java -cp java HelloWorldApp -``` - -# License - -The scripts and documentation in this project are released under the [MIT License](LICENSE) - -# Contributions - -Contributions are welcome! See [Contributor's Guide](docs/contributors.md) +# setup-Hub + +# Usage + +See [action.yml](action.yml) + +Basic: +```yaml +steps: +- uses: actions/checkout@latest +- uses: geertvdc/setup-hub@master + + +- run: hub --version +``` + +# License + +The scripts and documentation in this project are released under the [MIT License](LICENSE) + +# Contributions + +Contributions are welcome! See [Contributor's Guide](docs/contributors.md) diff --git a/action.yml b/action.yml index f1081cce1..fb0b57f50 100644 --- a/action.yml +++ b/action.yml @@ -1,20 +1,10 @@ -name: 'Setup Java environment' -description: 'Setup your runner with Java' -author: 'GitHub' +name: 'Setup Hub' +description: 'Setup your runner with Hub CLI' +author: 'Geertvdc' inputs: - java-version: - description: 'The JDK version to make available on the path. Takes a whole or semver Jdk version, or 1.x syntax (e.g. 1.8 => Jdk 8.x)' - required: true - architecture: - description: 'The architecture (x86, x64) of the JDK.' - required: true - default: 'x64' - jdkFile: - description: 'Path to where the compressed JDK is located. The path could be in your source repository or a local path on the agent.' + hub-version: + description: 'Version of hub release, if not entered will use latest' required: false -# Deprecated option, do not use. Will not be supported after October 1, 2019 - version: - description: 'Deprecated. Use java-version instead. Will not be supported after October 1, 2019' runs: using: 'node12' - main: 'lib/setup-java.js' + main: 'lib/setup-hub.js' diff --git a/docs/contributors.md b/docs/contributors.md index fece2ea29..a7f8968f2 100644 --- a/docs/contributors.md +++ b/docs/contributors.md @@ -9,7 +9,7 @@ ### devDependencies -In order to handle correctly checking in node_modules without devDependencies, we run [Husky](https://github.com/typicode/husky) before each commit. +In order to handle correctly checking in node_modules without devDependencies, we run [Husky](h) before each commit. This step ensures that formatting and checkin rules are followed and that devDependencies are excluded. To make sure Husky runs correctly, please use the following workflow: ``` diff --git a/lib/installer.js b/lib/installer.js index 5f068a15d..c633ad72c 100644 --- a/lib/installer.js +++ b/lib/installer.js @@ -18,7 +18,6 @@ Object.defineProperty(exports, "__esModule", { value: true }); let tempDirectory = process.env['RUNNER_TEMP'] || ''; const core = __importStar(require("@actions/core")); const io = __importStar(require("@actions/io")); -const exec = __importStar(require("@actions/exec")); const tc = __importStar(require("@actions/tool-cache")); const fs = __importStar(require("fs")); const path = __importStar(require("path")); @@ -41,40 +40,28 @@ if (!tempDirectory) { } tempDirectory = path.join(baseLocation, 'actions', 'temp'); } -function getJava(version, arch, jdkFile) { +function getHub(version) { return __awaiter(this, void 0, void 0, function* () { - let toolPath = tc.find('Java', version); + let toolPath = tc.find('hub', version); if (toolPath) { core.debug(`Tool found in cache ${toolPath}`); } else { let compressedFileExtension = ''; - if (!jdkFile) { - core.debug('Downloading Jdk from Azul'); - let http = new httpm.HttpClient('setup-java'); - let contents = yield (yield http.get('https://static.azul.com/zulu/bin/')).readBody(); - let refs = contents.match(//gi) || []; - const downloadInfo = getDownloadInfo(refs, version); - jdkFile = yield tc.downloadTool(downloadInfo.url); - version = downloadInfo.version; - compressedFileExtension = IS_WINDOWS ? '.zip' : '.tar.gz'; - } - else { - core.debug('Retrieving Jdk from local path'); - } - compressedFileExtension = compressedFileExtension || getFileEnding(jdkFile); + core.debug('Downloading hub from Github releases'); + const downloadInfo = yield getDownloadInfo(version); + let hubBin = yield tc.downloadTool(downloadInfo.url); + compressedFileExtension = IS_WINDOWS ? '.zip' : '.tar.gz'; + let hubFile = downloadInfo.url.substring(downloadInfo.url.lastIndexOf('/')); let tempDir = path.join(tempDirectory, 'temp_' + Math.floor(Math.random() * 2000000000)); - const jdkDir = yield unzipJavaDownload(jdkFile, compressedFileExtension, tempDir); - core.debug(`jdk extracted to ${jdkDir}`); - toolPath = yield tc.cacheDir(jdkDir, 'Java', getCacheVersionString(version), arch); + const hubDir = yield unzipHubDownload(hubFile, compressedFileExtension, tempDir); + core.debug(`hub extracted to ${hubDir}`); + toolPath = yield tc.cacheDir(hubDir, 'hub', getCacheVersionString(version)); } - let extendedJavaHome = 'JAVA_HOME_' + version + '_' + arch; - core.exportVariable('JAVA_HOME', toolPath); - core.exportVariable(extendedJavaHome, toolPath); core.addPath(path.join(toolPath, 'bin')); }); } -exports.getJava = getJava; +exports.getHub = getHub; function getCacheVersionString(version) { const versionArray = version.split('.'); const major = versionArray[0]; @@ -122,110 +109,52 @@ function extractFiles(file, fileEnding, destinationFolder) { } }); } -// This method recursively finds all .pack files under fsPath and unpacks them with the unpack200 tool -function unpackJars(fsPath, javaBinPath) { - return __awaiter(this, void 0, void 0, function* () { - if (fs.existsSync(fsPath)) { - if (fs.lstatSync(fsPath).isDirectory()) { - for (const file in fs.readdirSync(fsPath)) { - const curPath = path.join(fsPath, file); - yield unpackJars(curPath, javaBinPath); - } - } - else if (path.extname(fsPath).toLowerCase() === '.pack') { - // Unpack the pack file synchonously - const p = path.parse(fsPath); - const toolName = IS_WINDOWS ? 'unpack200.exe' : 'unpack200'; - const args = IS_WINDOWS ? '-r -v -l ""' : ''; - const name = path.join(p.dir, p.name); - yield exec.exec(`"${path.join(javaBinPath, toolName)}"`, [ - `${args} "${name}.pack" "${name}.jar"` - ]); - } - } - }); -} -function unzipJavaDownload(repoRoot, fileEnding, destinationFolder, extension) { +function unzipHubDownload(repoRoot, fileEnding, destinationFolder, extension) { return __awaiter(this, void 0, void 0, function* () { // Create the destination folder if it doesn't exist yield io.mkdirP(destinationFolder); - const jdkFile = path.normalize(repoRoot); - const stats = fs.statSync(jdkFile); + const file = path.normalize(repoRoot); + const stats = fs.statSync(file); if (stats.isFile()) { - yield extractFiles(jdkFile, fileEnding, destinationFolder); - const jdkDirectory = path.join(destinationFolder, fs.readdirSync(destinationFolder)[0]); - yield unpackJars(jdkDirectory, path.join(jdkDirectory, 'bin')); - return jdkDirectory; + yield extractFiles(file, fileEnding, destinationFolder); + const hubDir = path.join(destinationFolder, fs.readdirSync(destinationFolder)[0]); + return hubDir; } else { - throw new Error(`Jdk argument ${jdkFile} is not a file`); + throw new Error(`file argument ${file} is not a file`); } }); } -function getDownloadInfo(refs, version) { - version = normalizeVersion(version); - let extension = ''; - if (IS_WINDOWS) { - extension = `-win_x64.zip`; - } - else { - if (process.platform === 'darwin') { - extension = `-macosx_x64.tar.gz`; +function getDownloadInfo(version) { + return __awaiter(this, void 0, void 0, function* () { + let platform = ''; + let fileExtension = IS_WINDOWS ? '.zip' : '.tar.gz'; + if (IS_WINDOWS) { + platform = `windows`; } else { - extension = `-linux_x64.tar.gz`; - } - } - // Maps version to url - let versionMap = new Map(); - // Filter by platform - refs.forEach(ref => { - if (ref.indexOf(extension) < 0) { - return; - } - // If we haven't returned, means we're looking at the correct platform - let versions = ref.match(/jdk.*-/gi) || []; - if (versions.length > 1) { - throw new Error(`Invalid ref received from https://static.azul.com/zulu/bin/: ${ref}`); + if (process.platform === 'darwin') { + platform = `darwin`; + } + else { + platform = `linux`; + } } - if (versions.length == 0) { - return; + if (version) { + let validVersion = semver.valid(version); + if (!validVersion) { + throw new Error(`No valid download found for version ${version}. Check https://github.com/github/hub/releases for a list of valid releases`); + } + //specific version, get that version from releases + return { url: `https://github.com/github/hub/releases/download/v${version}/hub-${platform}-amd64-${version}${fileExtension}`, version: version }; } - const refVersion = versions[0].slice('jdk'.length, versions[0].length - 1); - if (semver.satisfies(refVersion, version)) { - versionMap.set(refVersion, 'https://static.azul.com/zulu/bin/' + - ref.slice(''.length)); + else { + //get latest release + let http = new httpm.HttpClient('setup-hub'); + let releaseJson = yield (yield http.get('https://api.github.com/repos/github/hub/releases/latest')).readBody(); + let releasesInfo = JSON.parse(releaseJson); + let latestVersion = releasesInfo.tag_name.substring(1); + return { url: `https://github.com/github/hub/releases/latest/download/hub-${platform}-amd64-${latestVersion}${fileExtension}`, version: latestVersion }; } }); - // Choose the most recent satisfying version - let curVersion = '0.0.0'; - let curUrl = ''; - for (const entry of versionMap.entries()) { - const entryVersion = entry[0]; - const entryUrl = entry[1]; - if (semver.gt(entryVersion, curVersion)) { - curUrl = entryUrl; - curVersion = entryVersion; - } - } - if (curUrl == '') { - throw new Error(`No valid download found for version ${version}. Check https://static.azul.com/zulu/bin/ for a list of valid versions or download your own jdk file and add the jdkFile argument`); - } - return { version: curVersion, url: curUrl }; -} -function normalizeVersion(version) { - if (version.slice(0, 2) === '1.') { - // Trim leading 1. for versions like 1.8 - version = version.slice(2); - if (!version) { - throw new Error('1. is not a valid version'); - } - } - // Add trailing .x if it is missing - if (version.split('.').length != 3) { - if (version[version.length - 1] != 'x') { - version = version + '.x'; - } - } - return version; } diff --git a/lib/setup-hub.js b/lib/setup-hub.js new file mode 100644 index 000000000..5afaaf11a --- /dev/null +++ b/lib/setup-hub.js @@ -0,0 +1,37 @@ +"use strict"; +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + 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) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +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")); +const installer = __importStar(require("./installer")); +const path = __importStar(require("path")); +function run() { + return __awaiter(this, void 0, void 0, function* () { + try { + let version = core.getInput('version'); + if (!version) { + version = core.getInput('hub-version', { required: true }); + } + yield installer.getHub(version); + const matchersPath = path.join(__dirname, '..', '.github'); + console.log(`##[add-matcher]${path.join(matchersPath, 'hub.json')}`); + } + catch (error) { + core.setFailed(error.message); + } + }); +} +run(); diff --git a/node_modules/@babel/code-frame/package.json b/node_modules/@babel/code-frame/package.json new file mode 100644 index 000000000..bc8bf69c4 --- /dev/null +++ b/node_modules/@babel/code-frame/package.json @@ -0,0 +1,61 @@ +{ + "_args": [ + [ + "@babel/code-frame@7.5.5", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "@babel/code-frame@7.5.5", + "_id": "@babel/code-frame@7.5.5", + "_inBundle": false, + "_integrity": "sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw==", + "_location": "/@babel/code-frame", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@babel/code-frame@7.5.5", + "name": "@babel/code-frame", + "escapedName": "@babel%2fcode-frame", + "scope": "@babel", + "rawSpec": "7.5.5", + "saveSpec": null, + "fetchSpec": "7.5.5" + }, + "_requiredBy": [ + "/@babel/core", + "/@babel/template", + "/@babel/traverse", + "/jest-message-util", + "/read-pkg/parse-json" + ], + "_resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.5.5.tgz", + "_spec": "7.5.5", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sebastian McKenzie", + "email": "sebmck@gmail.com" + }, + "dependencies": { + "@babel/highlight": "^7.0.0" + }, + "description": "Generate errors that contain a code frame that point to source locations.", + "devDependencies": { + "chalk": "^2.0.0", + "strip-ansi": "^4.0.0" + }, + "gitHead": "0407f034f09381b95e9cabefbf6b176c76485a43", + "homepage": "https://babeljs.io/", + "license": "MIT", + "main": "lib/index.js", + "name": "@babel/code-frame", + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "https://github.com/babel/babel/tree/master/packages/babel-code-frame" + }, + "version": "7.5.5" +} diff --git a/node_modules/@babel/core/node_modules/debug/package.json b/node_modules/@babel/core/node_modules/debug/package.json new file mode 100644 index 000000000..e9cec5a4c --- /dev/null +++ b/node_modules/@babel/core/node_modules/debug/package.json @@ -0,0 +1,106 @@ +{ + "_args": [ + [ + "debug@4.1.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "debug@4.1.1", + "_id": "debug@4.1.1", + "_inBundle": false, + "_integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", + "_location": "/@babel/core/debug", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "debug@4.1.1", + "name": "debug", + "escapedName": "debug", + "rawSpec": "4.1.1", + "saveSpec": null, + "fetchSpec": "4.1.1" + }, + "_requiredBy": [ + "/@babel/core" + ], + "_resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", + "_spec": "4.1.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "browser": "./src/browser.js", + "bugs": { + "url": "https://github.com/visionmedia/debug/issues" + }, + "contributors": [ + { + "name": "Nathan Rajlich", + "email": "nathan@tootallnate.net", + "url": "http://n8.io" + }, + { + "name": "Andrew Rhyne", + "email": "rhyneandrew@gmail.com" + } + ], + "dependencies": { + "ms": "^2.1.1" + }, + "description": "small debugging utility", + "devDependencies": { + "@babel/cli": "^7.0.0", + "@babel/core": "^7.0.0", + "@babel/preset-env": "^7.0.0", + "browserify": "14.4.0", + "chai": "^3.5.0", + "concurrently": "^3.1.0", + "coveralls": "^3.0.2", + "istanbul": "^0.4.5", + "karma": "^3.0.0", + "karma-chai": "^0.1.0", + "karma-mocha": "^1.3.0", + "karma-phantomjs-launcher": "^1.0.2", + "mocha": "^5.2.0", + "mocha-lcov-reporter": "^1.2.0", + "rimraf": "^2.5.4", + "xo": "^0.23.0" + }, + "files": [ + "src", + "dist/debug.js", + "LICENSE", + "README.md" + ], + "homepage": "https://github.com/visionmedia/debug#readme", + "keywords": [ + "debug", + "log", + "debugger" + ], + "license": "MIT", + "main": "./src/index.js", + "name": "debug", + "repository": { + "type": "git", + "url": "git://github.com/visionmedia/debug.git" + }, + "scripts": { + "build": "npm run build:debug && npm run build:test", + "build:debug": "babel -o dist/debug.js dist/debug.es6.js > dist/debug.js", + "build:test": "babel -d dist test.js", + "clean": "rimraf dist coverage", + "lint": "xo", + "prebuild:debug": "mkdir -p dist && browserify --standalone debug -o dist/debug.es6.js .", + "pretest:browser": "npm run build", + "test": "npm run test:node && npm run test:browser", + "test:browser": "karma start --single-run", + "test:coverage": "cat ./coverage/lcov.info | coveralls", + "test:node": "istanbul cover _mocha -- test.js" + }, + "unpkg": "./dist/debug.js", + "version": "4.1.1" +} diff --git a/node_modules/@babel/core/node_modules/ms/package.json b/node_modules/@babel/core/node_modules/ms/package.json new file mode 100644 index 000000000..274c357f9 --- /dev/null +++ b/node_modules/@babel/core/node_modules/ms/package.json @@ -0,0 +1,73 @@ +{ + "_args": [ + [ + "ms@2.1.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "ms@2.1.2", + "_id": "ms@2.1.2", + "_inBundle": false, + "_integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "_location": "/@babel/core/ms", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "ms@2.1.2", + "name": "ms", + "escapedName": "ms", + "rawSpec": "2.1.2", + "saveSpec": null, + "fetchSpec": "2.1.2" + }, + "_requiredBy": [ + "/@babel/core/debug" + ], + "_resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "_spec": "2.1.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/zeit/ms/issues" + }, + "description": "Tiny millisecond conversion utility", + "devDependencies": { + "eslint": "4.12.1", + "expect.js": "0.3.1", + "husky": "0.14.3", + "lint-staged": "5.0.0", + "mocha": "4.0.1" + }, + "eslintConfig": { + "extends": "eslint:recommended", + "env": { + "node": true, + "es6": true + } + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/zeit/ms#readme", + "license": "MIT", + "lint-staged": { + "*.js": [ + "npm run lint", + "prettier --single-quote --write", + "git add" + ] + }, + "main": "./index", + "name": "ms", + "repository": { + "type": "git", + "url": "git+https://github.com/zeit/ms.git" + }, + "scripts": { + "lint": "eslint lib/* bin/*", + "precommit": "lint-staged", + "test": "mocha tests.js" + }, + "version": "2.1.2" +} diff --git a/node_modules/@babel/core/node_modules/semver/package.json b/node_modules/@babel/core/node_modules/semver/package.json new file mode 100644 index 000000000..cb9d14a5e --- /dev/null +++ b/node_modules/@babel/core/node_modules/semver/package.json @@ -0,0 +1,64 @@ +{ + "_args": [ + [ + "semver@5.7.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "semver@5.7.0", + "_id": "semver@5.7.0", + "_inBundle": false, + "_integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", + "_location": "/@babel/core/semver", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "semver@5.7.0", + "name": "semver", + "escapedName": "semver", + "rawSpec": "5.7.0", + "saveSpec": null, + "fetchSpec": "5.7.0" + }, + "_requiredBy": [ + "/@babel/core" + ], + "_resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", + "_spec": "5.7.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bin": { + "semver": "./bin/semver" + }, + "bugs": { + "url": "https://github.com/npm/node-semver/issues" + }, + "description": "The semantic version parser used by npm.", + "devDependencies": { + "tap": "^13.0.0-rc.18" + }, + "files": [ + "bin", + "range.bnf", + "semver.js" + ], + "homepage": "https://github.com/npm/node-semver#readme", + "license": "ISC", + "main": "semver.js", + "name": "semver", + "repository": { + "type": "git", + "url": "git+https://github.com/npm/node-semver.git" + }, + "scripts": { + "postpublish": "git push origin --all; git push origin --tags", + "postversion": "npm publish", + "preversion": "npm test", + "test": "tap" + }, + "tap": { + "check-coverage": true + }, + "version": "5.7.0" +} diff --git a/node_modules/@babel/core/node_modules/source-map/package.json b/node_modules/@babel/core/node_modules/source-map/package.json new file mode 100644 index 000000000..b7887f265 --- /dev/null +++ b/node_modules/@babel/core/node_modules/source-map/package.json @@ -0,0 +1,215 @@ +{ + "_args": [ + [ + "source-map@0.5.7", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "source-map@0.5.7", + "_id": "source-map@0.5.7", + "_inBundle": false, + "_integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "_location": "/@babel/core/source-map", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "source-map@0.5.7", + "name": "source-map", + "escapedName": "source-map", + "rawSpec": "0.5.7", + "saveSpec": null, + "fetchSpec": "0.5.7" + }, + "_requiredBy": [ + "/@babel/core" + ], + "_resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "_spec": "0.5.7", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Nick Fitzgerald", + "email": "nfitzgerald@mozilla.com" + }, + "bugs": { + "url": "https://github.com/mozilla/source-map/issues" + }, + "contributors": [ + { + "name": "Tobias Koppers", + "email": "tobias.koppers@googlemail.com" + }, + { + "name": "Duncan Beevers", + "email": "duncan@dweebd.com" + }, + { + "name": "Stephen Crane", + "email": "scrane@mozilla.com" + }, + { + "name": "Ryan Seddon", + "email": "seddon.ryan@gmail.com" + }, + { + "name": "Miles Elam", + "email": "miles.elam@deem.com" + }, + { + "name": "Mihai Bazon", + "email": "mihai.bazon@gmail.com" + }, + { + "name": "Michael Ficarra", + "email": "github.public.email@michael.ficarra.me" + }, + { + "name": "Todd Wolfson", + "email": "todd@twolfson.com" + }, + { + "name": "Alexander Solovyov", + "email": "alexander@solovyov.net" + }, + { + "name": "Felix Gnass", + "email": "fgnass@gmail.com" + }, + { + "name": "Conrad Irwin", + "email": "conrad.irwin@gmail.com" + }, + { + "name": "usrbincc", + "email": "usrbincc@yahoo.com" + }, + { + "name": "David Glasser", + "email": "glasser@davidglasser.net" + }, + { + "name": "Chase Douglas", + "email": "chase@newrelic.com" + }, + { + "name": "Evan Wallace", + "email": "evan.exe@gmail.com" + }, + { + "name": "Heather Arthur", + "email": "fayearthur@gmail.com" + }, + { + "name": "Hugh Kennedy", + "email": "hughskennedy@gmail.com" + }, + { + "name": "David Glasser", + "email": "glasser@davidglasser.net" + }, + { + "name": "Simon Lydell", + "email": "simon.lydell@gmail.com" + }, + { + "name": "Jmeas Smith", + "email": "jellyes2@gmail.com" + }, + { + "name": "Michael Z Goddard", + "email": "mzgoddard@gmail.com" + }, + { + "name": "azu", + "email": "azu@users.noreply.github.com" + }, + { + "name": "John Gozde", + "email": "john@gozde.ca" + }, + { + "name": "Adam Kirkton", + "email": "akirkton@truefitinnovation.com" + }, + { + "name": "Chris Montgomery", + "email": "christopher.montgomery@dowjones.com" + }, + { + "name": "J. Ryan Stinnett", + "email": "jryans@gmail.com" + }, + { + "name": "Jack Herrington", + "email": "jherrington@walmartlabs.com" + }, + { + "name": "Chris Truter", + "email": "jeffpalentine@gmail.com" + }, + { + "name": "Daniel Espeset", + "email": "daniel@danielespeset.com" + }, + { + "name": "Jamie Wong", + "email": "jamie.lf.wong@gmail.com" + }, + { + "name": "Eddy Bruël", + "email": "ejpbruel@mozilla.com" + }, + { + "name": "Hawken Rives", + "email": "hawkrives@gmail.com" + }, + { + "name": "Gilad Peleg", + "email": "giladp007@gmail.com" + }, + { + "name": "djchie", + "email": "djchie.dev@gmail.com" + }, + { + "name": "Gary Ye", + "email": "garysye@gmail.com" + }, + { + "name": "Nicolas Lalevée", + "email": "nicolas.lalevee@hibnet.org" + } + ], + "description": "Generates and consumes source maps", + "devDependencies": { + "doctoc": "^0.15.0", + "webpack": "^1.12.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "source-map.js", + "lib/", + "dist/source-map.debug.js", + "dist/source-map.js", + "dist/source-map.min.js", + "dist/source-map.min.js.map" + ], + "homepage": "https://github.com/mozilla/source-map", + "license": "BSD-3-Clause", + "main": "./source-map.js", + "name": "source-map", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/mozilla/source-map.git" + }, + "scripts": { + "build": "webpack --color", + "test": "npm run build && node test/run-tests.js", + "toc": "doctoc --title '## Table of Contents' README.md && doctoc --title '## Table of Contents' CONTRIBUTING.md" + }, + "typings": "source-map", + "version": "0.5.7" +} diff --git a/node_modules/@babel/core/package.json b/node_modules/@babel/core/package.json new file mode 100644 index 000000000..71f8a96de --- /dev/null +++ b/node_modules/@babel/core/package.json @@ -0,0 +1,93 @@ +{ + "_args": [ + [ + "@babel/core@7.5.5", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "@babel/core@7.5.5", + "_id": "@babel/core@7.5.5", + "_inBundle": false, + "_integrity": "sha512-i4qoSr2KTtce0DmkuuQBV4AuQgGPUcPXMr9L5MyYAtk06z068lQ10a4O009fe5OB/DfNV+h+qqT7ddNV8UnRjg==", + "_location": "/@babel/core", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@babel/core@7.5.5", + "name": "@babel/core", + "escapedName": "@babel%2fcore", + "scope": "@babel", + "rawSpec": "7.5.5", + "saveSpec": null, + "fetchSpec": "7.5.5" + }, + "_requiredBy": [ + "/@jest/transform", + "/jest-config" + ], + "_resolved": "https://registry.npmjs.org/@babel/core/-/core-7.5.5.tgz", + "_spec": "7.5.5", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sebastian McKenzie", + "email": "sebmck@gmail.com" + }, + "browser": { + "./lib/config/files/index.js": "./lib/config/files/index-browser.js", + "./lib/transform-file.js": "./lib/transform-file-browser.js" + }, + "dependencies": { + "@babel/code-frame": "^7.5.5", + "@babel/generator": "^7.5.5", + "@babel/helpers": "^7.5.5", + "@babel/parser": "^7.5.5", + "@babel/template": "^7.4.4", + "@babel/traverse": "^7.5.5", + "@babel/types": "^7.5.5", + "convert-source-map": "^1.1.0", + "debug": "^4.1.0", + "json5": "^2.1.0", + "lodash": "^4.17.13", + "resolve": "^1.3.2", + "semver": "^5.4.1", + "source-map": "^0.5.0" + }, + "description": "Babel compiler core.", + "devDependencies": { + "@babel/helper-transform-fixture-test-runner": "^7.5.5", + "@babel/register": "^7.5.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "gitHead": "0407f034f09381b95e9cabefbf6b176c76485a43", + "homepage": "https://babeljs.io/", + "keywords": [ + "6to5", + "babel", + "classes", + "const", + "es6", + "harmony", + "let", + "modules", + "transpile", + "transpiler", + "var", + "babel-core", + "compiler" + ], + "license": "MIT", + "main": "lib/index.js", + "name": "@babel/core", + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "https://github.com/babel/babel/tree/master/packages/babel-core" + }, + "version": "7.5.5" +} diff --git a/node_modules/@babel/generator/node_modules/source-map/package.json b/node_modules/@babel/generator/node_modules/source-map/package.json new file mode 100644 index 000000000..c14ae9923 --- /dev/null +++ b/node_modules/@babel/generator/node_modules/source-map/package.json @@ -0,0 +1,215 @@ +{ + "_args": [ + [ + "source-map@0.5.7", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "source-map@0.5.7", + "_id": "source-map@0.5.7", + "_inBundle": false, + "_integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "_location": "/@babel/generator/source-map", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "source-map@0.5.7", + "name": "source-map", + "escapedName": "source-map", + "rawSpec": "0.5.7", + "saveSpec": null, + "fetchSpec": "0.5.7" + }, + "_requiredBy": [ + "/@babel/generator" + ], + "_resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "_spec": "0.5.7", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Nick Fitzgerald", + "email": "nfitzgerald@mozilla.com" + }, + "bugs": { + "url": "https://github.com/mozilla/source-map/issues" + }, + "contributors": [ + { + "name": "Tobias Koppers", + "email": "tobias.koppers@googlemail.com" + }, + { + "name": "Duncan Beevers", + "email": "duncan@dweebd.com" + }, + { + "name": "Stephen Crane", + "email": "scrane@mozilla.com" + }, + { + "name": "Ryan Seddon", + "email": "seddon.ryan@gmail.com" + }, + { + "name": "Miles Elam", + "email": "miles.elam@deem.com" + }, + { + "name": "Mihai Bazon", + "email": "mihai.bazon@gmail.com" + }, + { + "name": "Michael Ficarra", + "email": "github.public.email@michael.ficarra.me" + }, + { + "name": "Todd Wolfson", + "email": "todd@twolfson.com" + }, + { + "name": "Alexander Solovyov", + "email": "alexander@solovyov.net" + }, + { + "name": "Felix Gnass", + "email": "fgnass@gmail.com" + }, + { + "name": "Conrad Irwin", + "email": "conrad.irwin@gmail.com" + }, + { + "name": "usrbincc", + "email": "usrbincc@yahoo.com" + }, + { + "name": "David Glasser", + "email": "glasser@davidglasser.net" + }, + { + "name": "Chase Douglas", + "email": "chase@newrelic.com" + }, + { + "name": "Evan Wallace", + "email": "evan.exe@gmail.com" + }, + { + "name": "Heather Arthur", + "email": "fayearthur@gmail.com" + }, + { + "name": "Hugh Kennedy", + "email": "hughskennedy@gmail.com" + }, + { + "name": "David Glasser", + "email": "glasser@davidglasser.net" + }, + { + "name": "Simon Lydell", + "email": "simon.lydell@gmail.com" + }, + { + "name": "Jmeas Smith", + "email": "jellyes2@gmail.com" + }, + { + "name": "Michael Z Goddard", + "email": "mzgoddard@gmail.com" + }, + { + "name": "azu", + "email": "azu@users.noreply.github.com" + }, + { + "name": "John Gozde", + "email": "john@gozde.ca" + }, + { + "name": "Adam Kirkton", + "email": "akirkton@truefitinnovation.com" + }, + { + "name": "Chris Montgomery", + "email": "christopher.montgomery@dowjones.com" + }, + { + "name": "J. Ryan Stinnett", + "email": "jryans@gmail.com" + }, + { + "name": "Jack Herrington", + "email": "jherrington@walmartlabs.com" + }, + { + "name": "Chris Truter", + "email": "jeffpalentine@gmail.com" + }, + { + "name": "Daniel Espeset", + "email": "daniel@danielespeset.com" + }, + { + "name": "Jamie Wong", + "email": "jamie.lf.wong@gmail.com" + }, + { + "name": "Eddy Bruël", + "email": "ejpbruel@mozilla.com" + }, + { + "name": "Hawken Rives", + "email": "hawkrives@gmail.com" + }, + { + "name": "Gilad Peleg", + "email": "giladp007@gmail.com" + }, + { + "name": "djchie", + "email": "djchie.dev@gmail.com" + }, + { + "name": "Gary Ye", + "email": "garysye@gmail.com" + }, + { + "name": "Nicolas Lalevée", + "email": "nicolas.lalevee@hibnet.org" + } + ], + "description": "Generates and consumes source maps", + "devDependencies": { + "doctoc": "^0.15.0", + "webpack": "^1.12.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "source-map.js", + "lib/", + "dist/source-map.debug.js", + "dist/source-map.js", + "dist/source-map.min.js", + "dist/source-map.min.js.map" + ], + "homepage": "https://github.com/mozilla/source-map", + "license": "BSD-3-Clause", + "main": "./source-map.js", + "name": "source-map", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/mozilla/source-map.git" + }, + "scripts": { + "build": "webpack --color", + "test": "npm run build && node test/run-tests.js", + "toc": "doctoc --title '## Table of Contents' README.md && doctoc --title '## Table of Contents' CONTRIBUTING.md" + }, + "typings": "source-map", + "version": "0.5.7" +} diff --git a/node_modules/@babel/generator/package.json b/node_modules/@babel/generator/package.json new file mode 100644 index 000000000..ba1efc98c --- /dev/null +++ b/node_modules/@babel/generator/package.json @@ -0,0 +1,66 @@ +{ + "_args": [ + [ + "@babel/generator@7.5.5", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "@babel/generator@7.5.5", + "_id": "@babel/generator@7.5.5", + "_inBundle": false, + "_integrity": "sha512-ETI/4vyTSxTzGnU2c49XHv2zhExkv9JHLTwDAFz85kmcwuShvYG2H08FwgIguQf4JC75CBnXAUM5PqeF4fj0nQ==", + "_location": "/@babel/generator", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@babel/generator@7.5.5", + "name": "@babel/generator", + "escapedName": "@babel%2fgenerator", + "scope": "@babel", + "rawSpec": "7.5.5", + "saveSpec": null, + "fetchSpec": "7.5.5" + }, + "_requiredBy": [ + "/@babel/core", + "/@babel/traverse", + "/istanbul-lib-instrument" + ], + "_resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.5.5.tgz", + "_spec": "7.5.5", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sebastian McKenzie", + "email": "sebmck@gmail.com" + }, + "dependencies": { + "@babel/types": "^7.5.5", + "jsesc": "^2.5.1", + "lodash": "^4.17.13", + "source-map": "^0.5.0", + "trim-right": "^1.0.1" + }, + "description": "Turns an AST into code.", + "devDependencies": { + "@babel/helper-fixtures": "^7.5.5", + "@babel/parser": "^7.5.5" + }, + "files": [ + "lib" + ], + "gitHead": "0407f034f09381b95e9cabefbf6b176c76485a43", + "homepage": "https://babeljs.io/", + "license": "MIT", + "main": "lib/index.js", + "name": "@babel/generator", + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "https://github.com/babel/babel/tree/master/packages/babel-generator" + }, + "version": "7.5.5" +} diff --git a/node_modules/@babel/helper-function-name/package.json b/node_modules/@babel/helper-function-name/package.json new file mode 100644 index 000000000..dd0c25a8b --- /dev/null +++ b/node_modules/@babel/helper-function-name/package.json @@ -0,0 +1,49 @@ +{ + "_args": [ + [ + "@babel/helper-function-name@7.1.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "@babel/helper-function-name@7.1.0", + "_id": "@babel/helper-function-name@7.1.0", + "_inBundle": false, + "_integrity": "sha512-A95XEoCpb3TO+KZzJ4S/5uW5fNe26DjBGqf1o9ucyLyCmi1dXq/B3c8iaWTfBk3VvetUxl16e8tIrd5teOCfGw==", + "_location": "/@babel/helper-function-name", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@babel/helper-function-name@7.1.0", + "name": "@babel/helper-function-name", + "escapedName": "@babel%2fhelper-function-name", + "scope": "@babel", + "rawSpec": "7.1.0", + "saveSpec": null, + "fetchSpec": "7.1.0" + }, + "_requiredBy": [ + "/@babel/traverse" + ], + "_resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz", + "_spec": "7.1.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "dependencies": { + "@babel/helper-get-function-arity": "^7.0.0", + "@babel/template": "^7.1.0", + "@babel/types": "^7.0.0" + }, + "description": "Helper function to change the property 'name' of every function", + "license": "MIT", + "main": "lib/index.js", + "name": "@babel/helper-function-name", + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-function-name" + }, + "version": "7.1.0" +} diff --git a/node_modules/@babel/helper-get-function-arity/package.json b/node_modules/@babel/helper-get-function-arity/package.json new file mode 100644 index 000000000..815a056df --- /dev/null +++ b/node_modules/@babel/helper-get-function-arity/package.json @@ -0,0 +1,44 @@ +{ + "_args": [ + [ + "@babel/helper-get-function-arity@7.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "@babel/helper-get-function-arity@7.0.0", + "_id": "@babel/helper-get-function-arity@7.0.0", + "_inBundle": false, + "_integrity": "sha512-r2DbJeg4svYvt3HOS74U4eWKsUAMRH01Z1ds1zx8KNTPtpTL5JAsdFv8BNyOpVqdFhHkkRDIg5B4AsxmkjAlmQ==", + "_location": "/@babel/helper-get-function-arity", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@babel/helper-get-function-arity@7.0.0", + "name": "@babel/helper-get-function-arity", + "escapedName": "@babel%2fhelper-get-function-arity", + "scope": "@babel", + "rawSpec": "7.0.0", + "saveSpec": null, + "fetchSpec": "7.0.0" + }, + "_requiredBy": [ + "/@babel/helper-function-name" + ], + "_resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz", + "_spec": "7.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "dependencies": { + "@babel/types": "^7.0.0" + }, + "description": "Helper function to get function arity", + "license": "MIT", + "main": "lib/index.js", + "name": "@babel/helper-get-function-arity", + "repository": { + "type": "git", + "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-get-function-arity" + }, + "version": "7.0.0" +} diff --git a/node_modules/@babel/helper-plugin-utils/package.json b/node_modules/@babel/helper-plugin-utils/package.json new file mode 100644 index 000000000..465f44310 --- /dev/null +++ b/node_modules/@babel/helper-plugin-utils/package.json @@ -0,0 +1,47 @@ +{ + "_args": [ + [ + "@babel/helper-plugin-utils@7.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "@babel/helper-plugin-utils@7.0.0", + "_id": "@babel/helper-plugin-utils@7.0.0", + "_inBundle": false, + "_integrity": "sha512-CYAOUCARwExnEixLdB6sDm2dIJ/YgEAKDM1MOeMeZu9Ld/bDgVo8aiWrXwcY7OBh+1Ea2uUcVRcxKk0GJvW7QA==", + "_location": "/@babel/helper-plugin-utils", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@babel/helper-plugin-utils@7.0.0", + "name": "@babel/helper-plugin-utils", + "escapedName": "@babel%2fhelper-plugin-utils", + "scope": "@babel", + "rawSpec": "7.0.0", + "saveSpec": null, + "fetchSpec": "7.0.0" + }, + "_requiredBy": [ + "/@babel/plugin-syntax-object-rest-spread", + "/babel-plugin-istanbul" + ], + "_resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz", + "_spec": "7.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Logan Smyth", + "email": "loganfsmyth@gmail.com" + }, + "description": "General utilities for plugins to use", + "homepage": "https://babeljs.io/", + "license": "MIT", + "main": "lib/index.js", + "name": "@babel/helper-plugin-utils", + "repository": { + "type": "git", + "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-plugin-utils" + }, + "version": "7.0.0" +} diff --git a/node_modules/@babel/helper-split-export-declaration/package.json b/node_modules/@babel/helper-split-export-declaration/package.json new file mode 100644 index 000000000..d7f10170c --- /dev/null +++ b/node_modules/@babel/helper-split-export-declaration/package.json @@ -0,0 +1,48 @@ +{ + "_args": [ + [ + "@babel/helper-split-export-declaration@7.4.4", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "@babel/helper-split-export-declaration@7.4.4", + "_id": "@babel/helper-split-export-declaration@7.4.4", + "_inBundle": false, + "_integrity": "sha512-Ro/XkzLf3JFITkW6b+hNxzZ1n5OQ80NvIUdmHspih1XAhtN3vPTuUFT4eQnela+2MaZ5ulH+iyP513KJrxbN7Q==", + "_location": "/@babel/helper-split-export-declaration", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@babel/helper-split-export-declaration@7.4.4", + "name": "@babel/helper-split-export-declaration", + "escapedName": "@babel%2fhelper-split-export-declaration", + "scope": "@babel", + "rawSpec": "7.4.4", + "saveSpec": null, + "fetchSpec": "7.4.4" + }, + "_requiredBy": [ + "/@babel/traverse" + ], + "_resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.4.4.tgz", + "_spec": "7.4.4", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "dependencies": { + "@babel/types": "^7.4.4" + }, + "description": ">", + "gitHead": "2c88694388831b1e5b88e4bbed6781eb2be1edba", + "license": "MIT", + "main": "lib/index.js", + "name": "@babel/helper-split-export-declaration", + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-split-export-declaration" + }, + "version": "7.4.4" +} diff --git a/node_modules/@babel/helpers/package.json b/node_modules/@babel/helpers/package.json new file mode 100644 index 000000000..b39f70f9a --- /dev/null +++ b/node_modules/@babel/helpers/package.json @@ -0,0 +1,58 @@ +{ + "_args": [ + [ + "@babel/helpers@7.5.5", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "@babel/helpers@7.5.5", + "_id": "@babel/helpers@7.5.5", + "_inBundle": false, + "_integrity": "sha512-nRq2BUhxZFnfEn/ciJuhklHvFOqjJUD5wpx+1bxUF2axL9C+v4DE/dmp5sT2dKnpOs4orZWzpAZqlCy8QqE/7g==", + "_location": "/@babel/helpers", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@babel/helpers@7.5.5", + "name": "@babel/helpers", + "escapedName": "@babel%2fhelpers", + "scope": "@babel", + "rawSpec": "7.5.5", + "saveSpec": null, + "fetchSpec": "7.5.5" + }, + "_requiredBy": [ + "/@babel/core" + ], + "_resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.5.5.tgz", + "_spec": "7.5.5", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sebastian McKenzie", + "email": "sebmck@gmail.com" + }, + "dependencies": { + "@babel/template": "^7.4.4", + "@babel/traverse": "^7.5.5", + "@babel/types": "^7.5.5" + }, + "description": "Collection of helper functions used by Babel transforms.", + "devDependencies": { + "@babel/helper-plugin-test-runner": "^7.0.0" + }, + "gitHead": "0407f034f09381b95e9cabefbf6b176c76485a43", + "homepage": "https://babeljs.io/", + "license": "MIT", + "main": "lib/index.js", + "name": "@babel/helpers", + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "https://github.com/babel/babel/tree/master/packages/babel-helpers" + }, + "version": "7.5.5" +} diff --git a/node_modules/@babel/highlight/package.json b/node_modules/@babel/highlight/package.json new file mode 100644 index 000000000..e40490a4e --- /dev/null +++ b/node_modules/@babel/highlight/package.json @@ -0,0 +1,58 @@ +{ + "_args": [ + [ + "@babel/highlight@7.5.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "@babel/highlight@7.5.0", + "_id": "@babel/highlight@7.5.0", + "_inBundle": false, + "_integrity": "sha512-7dV4eu9gBxoM0dAnj/BCFDW9LFU0zvTrkq0ugM7pnHEgguOEeOz1so2ZghEdzviYzQEED0r4EAgpsBChKy1TRQ==", + "_location": "/@babel/highlight", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@babel/highlight@7.5.0", + "name": "@babel/highlight", + "escapedName": "@babel%2fhighlight", + "scope": "@babel", + "rawSpec": "7.5.0", + "saveSpec": null, + "fetchSpec": "7.5.0" + }, + "_requiredBy": [ + "/@babel/code-frame" + ], + "_resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.5.0.tgz", + "_spec": "7.5.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "suchipi", + "email": "me@suchipi.com" + }, + "dependencies": { + "chalk": "^2.0.0", + "esutils": "^2.0.2", + "js-tokens": "^4.0.0" + }, + "description": "Syntax highlight JavaScript strings for output in terminals.", + "devDependencies": { + "strip-ansi": "^4.0.0" + }, + "gitHead": "49da9a07c81156e997e60146eb001ea77b7044c4", + "homepage": "https://babeljs.io/", + "license": "MIT", + "main": "lib/index.js", + "name": "@babel/highlight", + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "https://github.com/babel/babel/tree/master/packages/babel-highlight" + }, + "version": "7.5.0" +} diff --git a/node_modules/@babel/parser/package.json b/node_modules/@babel/parser/package.json new file mode 100644 index 000000000..89e51a1d2 --- /dev/null +++ b/node_modules/@babel/parser/package.json @@ -0,0 +1,81 @@ +{ + "_args": [ + [ + "@babel/parser@7.5.5", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "@babel/parser@7.5.5", + "_id": "@babel/parser@7.5.5", + "_inBundle": false, + "_integrity": "sha512-E5BN68cqR7dhKan1SfqgPGhQ178bkVKpXTPEXnFJBrEt8/DKRZlybmy+IgYLTeN7tp1R5Ccmbm2rBk17sHYU3g==", + "_location": "/@babel/parser", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@babel/parser@7.5.5", + "name": "@babel/parser", + "escapedName": "@babel%2fparser", + "scope": "@babel", + "rawSpec": "7.5.5", + "saveSpec": null, + "fetchSpec": "7.5.5" + }, + "_requiredBy": [ + "/@babel/core", + "/@babel/template", + "/@babel/traverse", + "/@types/babel__core", + "/@types/babel__template", + "/istanbul-lib-instrument" + ], + "_resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.5.5.tgz", + "_spec": "7.5.5", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sebastian McKenzie", + "email": "sebmck@gmail.com" + }, + "bin": { + "parser": "./bin/babel-parser.js" + }, + "description": "A JavaScript parser", + "devDependencies": { + "@babel/code-frame": "^7.5.5", + "@babel/helper-fixtures": "^7.5.5", + "charcodes": "^0.2.0", + "unicode-12.0.0": "^0.7.9" + }, + "engines": { + "node": ">=6.0.0" + }, + "files": [ + "bin", + "lib", + "typings" + ], + "gitHead": "0407f034f09381b95e9cabefbf6b176c76485a43", + "homepage": "https://babeljs.io/", + "keywords": [ + "babel", + "javascript", + "parser", + "tc39", + "ecmascript", + "@babel/parser" + ], + "license": "MIT", + "main": "lib/index.js", + "name": "@babel/parser", + "publishConfig": { + "tag": "next" + }, + "repository": { + "type": "git", + "url": "https://github.com/babel/babel/tree/master/packages/babel-parser" + }, + "types": "typings/babel-parser.d.ts", + "version": "7.5.5" +} diff --git a/node_modules/@babel/plugin-syntax-object-rest-spread/package.json b/node_modules/@babel/plugin-syntax-object-rest-spread/package.json new file mode 100644 index 000000000..3a6b54947 --- /dev/null +++ b/node_modules/@babel/plugin-syntax-object-rest-spread/package.json @@ -0,0 +1,56 @@ +{ + "_args": [ + [ + "@babel/plugin-syntax-object-rest-spread@7.2.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "@babel/plugin-syntax-object-rest-spread@7.2.0", + "_id": "@babel/plugin-syntax-object-rest-spread@7.2.0", + "_inBundle": false, + "_integrity": "sha512-t0JKGgqk2We+9may3t0xDdmneaXmyxq0xieYcKHxIsrJO64n1OiMWNUtc5gQK1PA0NpdCRrtZp4z+IUaKugrSA==", + "_location": "/@babel/plugin-syntax-object-rest-spread", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@babel/plugin-syntax-object-rest-spread@7.2.0", + "name": "@babel/plugin-syntax-object-rest-spread", + "escapedName": "@babel%2fplugin-syntax-object-rest-spread", + "scope": "@babel", + "rawSpec": "7.2.0", + "saveSpec": null, + "fetchSpec": "7.2.0" + }, + "_requiredBy": [ + "/babel-preset-jest" + ], + "_resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.2.0.tgz", + "_spec": "7.2.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0" + }, + "description": "Allow parsing of object rest/spread", + "devDependencies": { + "@babel/core": "^7.2.0" + }, + "keywords": [ + "babel-plugin" + ], + "license": "MIT", + "main": "lib/index.js", + "name": "@babel/plugin-syntax-object-rest-spread", + "peerDependencies": { + "@babel/core": "^7.0.0-0" + }, + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-object-rest-spread" + }, + "version": "7.2.0" +} diff --git a/node_modules/@babel/template/package.json b/node_modules/@babel/template/package.json new file mode 100644 index 000000000..be5543a27 --- /dev/null +++ b/node_modules/@babel/template/package.json @@ -0,0 +1,58 @@ +{ + "_args": [ + [ + "@babel/template@7.4.4", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "@babel/template@7.4.4", + "_id": "@babel/template@7.4.4", + "_inBundle": false, + "_integrity": "sha512-CiGzLN9KgAvgZsnivND7rkA+AeJ9JB0ciPOD4U59GKbQP2iQl+olF1l76kJOupqidozfZ32ghwBEJDhnk9MEcw==", + "_location": "/@babel/template", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@babel/template@7.4.4", + "name": "@babel/template", + "escapedName": "@babel%2ftemplate", + "scope": "@babel", + "rawSpec": "7.4.4", + "saveSpec": null, + "fetchSpec": "7.4.4" + }, + "_requiredBy": [ + "/@babel/core", + "/@babel/helper-function-name", + "/@babel/helpers", + "/istanbul-lib-instrument" + ], + "_resolved": "https://registry.npmjs.org/@babel/template/-/template-7.4.4.tgz", + "_spec": "7.4.4", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sebastian McKenzie", + "email": "sebmck@gmail.com" + }, + "dependencies": { + "@babel/code-frame": "^7.0.0", + "@babel/parser": "^7.4.4", + "@babel/types": "^7.4.4" + }, + "description": "Generate an AST from a string template.", + "gitHead": "2c88694388831b1e5b88e4bbed6781eb2be1edba", + "homepage": "https://babeljs.io/", + "license": "MIT", + "main": "lib/index.js", + "name": "@babel/template", + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "https://github.com/babel/babel/tree/master/packages/babel-template" + }, + "version": "7.4.4" +} diff --git a/node_modules/@babel/traverse/node_modules/debug/package.json b/node_modules/@babel/traverse/node_modules/debug/package.json new file mode 100644 index 000000000..3917bf31b --- /dev/null +++ b/node_modules/@babel/traverse/node_modules/debug/package.json @@ -0,0 +1,106 @@ +{ + "_args": [ + [ + "debug@4.1.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "debug@4.1.1", + "_id": "debug@4.1.1", + "_inBundle": false, + "_integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", + "_location": "/@babel/traverse/debug", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "debug@4.1.1", + "name": "debug", + "escapedName": "debug", + "rawSpec": "4.1.1", + "saveSpec": null, + "fetchSpec": "4.1.1" + }, + "_requiredBy": [ + "/@babel/traverse" + ], + "_resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", + "_spec": "4.1.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "browser": "./src/browser.js", + "bugs": { + "url": "https://github.com/visionmedia/debug/issues" + }, + "contributors": [ + { + "name": "Nathan Rajlich", + "email": "nathan@tootallnate.net", + "url": "http://n8.io" + }, + { + "name": "Andrew Rhyne", + "email": "rhyneandrew@gmail.com" + } + ], + "dependencies": { + "ms": "^2.1.1" + }, + "description": "small debugging utility", + "devDependencies": { + "@babel/cli": "^7.0.0", + "@babel/core": "^7.0.0", + "@babel/preset-env": "^7.0.0", + "browserify": "14.4.0", + "chai": "^3.5.0", + "concurrently": "^3.1.0", + "coveralls": "^3.0.2", + "istanbul": "^0.4.5", + "karma": "^3.0.0", + "karma-chai": "^0.1.0", + "karma-mocha": "^1.3.0", + "karma-phantomjs-launcher": "^1.0.2", + "mocha": "^5.2.0", + "mocha-lcov-reporter": "^1.2.0", + "rimraf": "^2.5.4", + "xo": "^0.23.0" + }, + "files": [ + "src", + "dist/debug.js", + "LICENSE", + "README.md" + ], + "homepage": "https://github.com/visionmedia/debug#readme", + "keywords": [ + "debug", + "log", + "debugger" + ], + "license": "MIT", + "main": "./src/index.js", + "name": "debug", + "repository": { + "type": "git", + "url": "git://github.com/visionmedia/debug.git" + }, + "scripts": { + "build": "npm run build:debug && npm run build:test", + "build:debug": "babel -o dist/debug.js dist/debug.es6.js > dist/debug.js", + "build:test": "babel -d dist test.js", + "clean": "rimraf dist coverage", + "lint": "xo", + "prebuild:debug": "mkdir -p dist && browserify --standalone debug -o dist/debug.es6.js .", + "pretest:browser": "npm run build", + "test": "npm run test:node && npm run test:browser", + "test:browser": "karma start --single-run", + "test:coverage": "cat ./coverage/lcov.info | coveralls", + "test:node": "istanbul cover _mocha -- test.js" + }, + "unpkg": "./dist/debug.js", + "version": "4.1.1" +} diff --git a/node_modules/@babel/traverse/node_modules/ms/package.json b/node_modules/@babel/traverse/node_modules/ms/package.json new file mode 100644 index 000000000..fd56d3ebc --- /dev/null +++ b/node_modules/@babel/traverse/node_modules/ms/package.json @@ -0,0 +1,73 @@ +{ + "_args": [ + [ + "ms@2.1.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "ms@2.1.2", + "_id": "ms@2.1.2", + "_inBundle": false, + "_integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "_location": "/@babel/traverse/ms", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "ms@2.1.2", + "name": "ms", + "escapedName": "ms", + "rawSpec": "2.1.2", + "saveSpec": null, + "fetchSpec": "2.1.2" + }, + "_requiredBy": [ + "/@babel/traverse/debug" + ], + "_resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "_spec": "2.1.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/zeit/ms/issues" + }, + "description": "Tiny millisecond conversion utility", + "devDependencies": { + "eslint": "4.12.1", + "expect.js": "0.3.1", + "husky": "0.14.3", + "lint-staged": "5.0.0", + "mocha": "4.0.1" + }, + "eslintConfig": { + "extends": "eslint:recommended", + "env": { + "node": true, + "es6": true + } + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/zeit/ms#readme", + "license": "MIT", + "lint-staged": { + "*.js": [ + "npm run lint", + "prettier --single-quote --write", + "git add" + ] + }, + "main": "./index", + "name": "ms", + "repository": { + "type": "git", + "url": "git+https://github.com/zeit/ms.git" + }, + "scripts": { + "lint": "eslint lib/* bin/*", + "precommit": "lint-staged", + "test": "mocha tests.js" + }, + "version": "2.1.2" +} diff --git a/node_modules/@babel/traverse/package.json b/node_modules/@babel/traverse/package.json new file mode 100644 index 000000000..979c9a682 --- /dev/null +++ b/node_modules/@babel/traverse/package.json @@ -0,0 +1,68 @@ +{ + "_args": [ + [ + "@babel/traverse@7.5.5", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "@babel/traverse@7.5.5", + "_id": "@babel/traverse@7.5.5", + "_inBundle": false, + "_integrity": "sha512-MqB0782whsfffYfSjH4TM+LMjrJnhCNEDMDIjeTpl+ASaUvxcjoiVCo/sM1GhS1pHOXYfWVCYneLjMckuUxDaQ==", + "_location": "/@babel/traverse", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@babel/traverse@7.5.5", + "name": "@babel/traverse", + "escapedName": "@babel%2ftraverse", + "scope": "@babel", + "rawSpec": "7.5.5", + "saveSpec": null, + "fetchSpec": "7.5.5" + }, + "_requiredBy": [ + "/@babel/core", + "/@babel/helpers", + "/istanbul-lib-instrument", + "/jest-circus", + "/jest-jasmine2" + ], + "_resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.5.5.tgz", + "_spec": "7.5.5", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sebastian McKenzie", + "email": "sebmck@gmail.com" + }, + "dependencies": { + "@babel/code-frame": "^7.5.5", + "@babel/generator": "^7.5.5", + "@babel/helper-function-name": "^7.1.0", + "@babel/helper-split-export-declaration": "^7.4.4", + "@babel/parser": "^7.5.5", + "@babel/types": "^7.5.5", + "debug": "^4.1.0", + "globals": "^11.1.0", + "lodash": "^4.17.13" + }, + "description": "The Babel Traverse module maintains the overall tree state, and is responsible for replacing, removing, and adding nodes", + "devDependencies": { + "@babel/helper-plugin-test-runner": "^7.0.0" + }, + "gitHead": "0407f034f09381b95e9cabefbf6b176c76485a43", + "homepage": "https://babeljs.io/", + "license": "MIT", + "main": "lib/index.js", + "name": "@babel/traverse", + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "https://github.com/babel/babel/tree/master/packages/babel-traverse" + }, + "version": "7.5.5" +} diff --git a/node_modules/@babel/types/package.json b/node_modules/@babel/types/package.json new file mode 100644 index 000000000..2aa01ac73 --- /dev/null +++ b/node_modules/@babel/types/package.json @@ -0,0 +1,70 @@ +{ + "_args": [ + [ + "@babel/types@7.5.5", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "@babel/types@7.5.5", + "_id": "@babel/types@7.5.5", + "_inBundle": false, + "_integrity": "sha512-s63F9nJioLqOlW3UkyMd+BYhXt44YuaFm/VV0VwuteqjYwRrObkU7ra9pY4wAJR3oXi8hJrMcrcJdO/HH33vtw==", + "_location": "/@babel/types", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@babel/types@7.5.5", + "name": "@babel/types", + "escapedName": "@babel%2ftypes", + "scope": "@babel", + "rawSpec": "7.5.5", + "saveSpec": null, + "fetchSpec": "7.5.5" + }, + "_requiredBy": [ + "/@babel/core", + "/@babel/generator", + "/@babel/helper-function-name", + "/@babel/helper-get-function-arity", + "/@babel/helper-split-export-declaration", + "/@babel/helpers", + "/@babel/template", + "/@babel/traverse", + "/@types/babel__core", + "/@types/babel__generator", + "/@types/babel__template", + "/@types/babel__traverse", + "/istanbul-lib-instrument", + "/jest-snapshot" + ], + "_resolved": "https://registry.npmjs.org/@babel/types/-/types-7.5.5.tgz", + "_spec": "7.5.5", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sebastian McKenzie", + "email": "sebmck@gmail.com" + }, + "dependencies": { + "esutils": "^2.0.2", + "lodash": "^4.17.13", + "to-fast-properties": "^2.0.0" + }, + "description": "Babel Types is a Lodash-esque utility library for AST nodes", + "devDependencies": { + "@babel/generator": "^7.5.5", + "@babel/parser": "^7.5.5" + }, + "gitHead": "0407f034f09381b95e9cabefbf6b176c76485a43", + "homepage": "https://babeljs.io/", + "license": "MIT", + "main": "lib/index.js", + "name": "@babel/types", + "repository": { + "type": "git", + "url": "https://github.com/babel/babel/tree/master/packages/babel-types" + }, + "types": "lib/index.d.ts", + "version": "7.5.5" +} diff --git a/node_modules/@cnakazawa/watch/package.json b/node_modules/@cnakazawa/watch/package.json new file mode 100644 index 000000000..9ac00e36f --- /dev/null +++ b/node_modules/@cnakazawa/watch/package.json @@ -0,0 +1,73 @@ +{ + "_args": [ + [ + "@cnakazawa/watch@1.0.3", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "@cnakazawa/watch@1.0.3", + "_id": "@cnakazawa/watch@1.0.3", + "_inBundle": false, + "_integrity": "sha512-r5160ogAvGyHsal38Kux7YYtodEKOj89RGb28ht1jh3SJb08VwRwAKKJL0bGb04Zd/3r9FL3BFIc3bBidYffCA==", + "_location": "/@cnakazawa/watch", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@cnakazawa/watch@1.0.3", + "name": "@cnakazawa/watch", + "escapedName": "@cnakazawa%2fwatch", + "scope": "@cnakazawa", + "rawSpec": "1.0.3", + "saveSpec": null, + "fetchSpec": "1.0.3" + }, + "_requiredBy": [ + "/sane" + ], + "_resolved": "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.3.tgz", + "_spec": "1.0.3", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Mikeal Rogers", + "email": "mikeal.rogers@gmail.com" + }, + "bin": { + "watch": "./cli.js" + }, + "bugs": { + "url": "https://github.com/mikeal/watch/issues" + }, + "dependencies": { + "exec-sh": "^0.3.2", + "minimist": "^1.2.0" + }, + "description": "Utilities for watching file trees.", + "directories": { + "lib": "lib" + }, + "engines": { + "node": ">=0.1.95" + }, + "homepage": "https://github.com/mikeal/watch", + "keywords": [ + "util", + "utility", + "fs", + "files" + ], + "license": "Apache-2.0", + "main": "./main", + "name": "@cnakazawa/watch", + "repository": { + "type": "git", + "url": "git://github.com/mikeal/watch.git" + }, + "scripts": { + "release:major": "bash scripts/release.sh major", + "release:minor": "bash scripts/release.sh minor", + "release:patch": "bash scripts/release.sh patch" + }, + "version": "1.0.3" +} diff --git a/node_modules/@jest/console/node_modules/slash/package.json b/node_modules/@jest/console/node_modules/slash/package.json new file mode 100644 index 000000000..e8ac01c2c --- /dev/null +++ b/node_modules/@jest/console/node_modules/slash/package.json @@ -0,0 +1,70 @@ +{ + "_args": [ + [ + "slash@2.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "slash@2.0.0", + "_id": "slash@2.0.0", + "_inBundle": false, + "_integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "_location": "/@jest/console/slash", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "slash@2.0.0", + "name": "slash", + "escapedName": "slash", + "rawSpec": "2.0.0", + "saveSpec": null, + "fetchSpec": "2.0.0" + }, + "_requiredBy": [ + "/@jest/console" + ], + "_resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "_spec": "2.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/slash/issues" + }, + "description": "Convert Windows backslash paths to slash paths", + "devDependencies": { + "ava": "*", + "xo": "*" + }, + "engines": { + "node": ">=6" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/slash#readme", + "keywords": [ + "path", + "seperator", + "sep", + "slash", + "backslash", + "windows", + "win" + ], + "license": "MIT", + "name": "slash", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/slash.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "2.0.0" +} diff --git a/node_modules/@jest/console/package.json b/node_modules/@jest/console/package.json new file mode 100644 index 000000000..b33bc0e46 --- /dev/null +++ b/node_modules/@jest/console/package.json @@ -0,0 +1,65 @@ +{ + "_args": [ + [ + "@jest/console@24.7.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "@jest/console@24.7.1", + "_id": "@jest/console@24.7.1", + "_inBundle": false, + "_integrity": "sha512-iNhtIy2M8bXlAOULWVTUxmnelTLFneTNEkHCgPmgd+zNwy9zVddJ6oS5rZ9iwoscNdT5mMwUd0C51v/fSlzItg==", + "_location": "/@jest/console", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@jest/console@24.7.1", + "name": "@jest/console", + "escapedName": "@jest%2fconsole", + "scope": "@jest", + "rawSpec": "24.7.1", + "saveSpec": null, + "fetchSpec": "24.7.1" + }, + "_requiredBy": [ + "/@jest/core", + "/@jest/test-result", + "/jest-runner", + "/jest-runtime", + "/jest-util" + ], + "_resolved": "https://registry.npmjs.org/@jest/console/-/console-24.7.1.tgz", + "_spec": "24.7.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/facebook/jest/issues" + }, + "dependencies": { + "@jest/source-map": "^24.3.0", + "chalk": "^2.0.1", + "slash": "^2.0.0" + }, + "devDependencies": { + "@types/slash": "^2.0.0" + }, + "engines": { + "node": ">= 6" + }, + "gitHead": "0efb1d7809cb96ae87a7601e7802f1dab3774280", + "homepage": "https://github.com/facebook/jest#readme", + "license": "MIT", + "main": "build/index.js", + "name": "@jest/console", + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/facebook/jest.git", + "directory": "packages/jest-console" + }, + "types": "build/index.d.ts", + "version": "24.7.1" +} diff --git a/node_modules/@jest/core/package.json b/node_modules/@jest/core/package.json new file mode 100644 index 000000000..76ddc6e88 --- /dev/null +++ b/node_modules/@jest/core/package.json @@ -0,0 +1,119 @@ +{ + "_args": [ + [ + "@jest/core@24.8.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "@jest/core@24.8.0", + "_id": "@jest/core@24.8.0", + "_inBundle": false, + "_integrity": "sha512-R9rhAJwCBQzaRnrRgAdVfnglUuATXdwTRsYqs6NMdVcAl5euG8LtWDe+fVkN27YfKVBW61IojVsXKaOmSnqd/A==", + "_location": "/@jest/core", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@jest/core@24.8.0", + "name": "@jest/core", + "escapedName": "@jest%2fcore", + "scope": "@jest", + "rawSpec": "24.8.0", + "saveSpec": null, + "fetchSpec": "24.8.0" + }, + "_requiredBy": [ + "/jest/jest-cli" + ], + "_resolved": "https://registry.npmjs.org/@jest/core/-/core-24.8.0.tgz", + "_spec": "24.8.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/facebook/jest/issues" + }, + "dependencies": { + "@jest/console": "^24.7.1", + "@jest/reporters": "^24.8.0", + "@jest/test-result": "^24.8.0", + "@jest/transform": "^24.8.0", + "@jest/types": "^24.8.0", + "ansi-escapes": "^3.0.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "graceful-fs": "^4.1.15", + "jest-changed-files": "^24.8.0", + "jest-config": "^24.8.0", + "jest-haste-map": "^24.8.0", + "jest-message-util": "^24.8.0", + "jest-regex-util": "^24.3.0", + "jest-resolve-dependencies": "^24.8.0", + "jest-runner": "^24.8.0", + "jest-runtime": "^24.8.0", + "jest-snapshot": "^24.8.0", + "jest-util": "^24.8.0", + "jest-validate": "^24.8.0", + "jest-watcher": "^24.8.0", + "micromatch": "^3.1.10", + "p-each-series": "^1.0.0", + "pirates": "^4.0.1", + "realpath-native": "^1.1.0", + "rimraf": "^2.5.4", + "strip-ansi": "^5.0.0" + }, + "description": "Delightful JavaScript Testing.", + "devDependencies": { + "@jest/test-sequencer": "^24.8.0", + "@types/ansi-escapes": "^3.0.1", + "@types/exit": "^0.1.30", + "@types/graceful-fs": "^4.1.2", + "@types/micromatch": "^3.1.0", + "@types/p-each-series": "^1.0.0", + "@types/rimraf": "^2.0.2", + "@types/strip-ansi": "^3.0.0" + }, + "engines": { + "node": ">= 6" + }, + "gitHead": "845728f24b3ef41e450595c384e9b5c9fdf248a4", + "homepage": "https://jestjs.io/", + "keywords": [ + "ava", + "babel", + "coverage", + "easy", + "expect", + "facebook", + "immersive", + "instant", + "jasmine", + "jest", + "jsdom", + "mocha", + "mocking", + "painless", + "qunit", + "runner", + "sandboxed", + "snapshot", + "tap", + "tape", + "test", + "testing", + "typescript", + "watch" + ], + "license": "MIT", + "main": "build/jest.js", + "name": "@jest/core", + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/facebook/jest.git", + "directory": "packages/jest-core" + }, + "types": "build/jest.d.ts", + "version": "24.8.0" +} diff --git a/node_modules/@jest/environment/package.json b/node_modules/@jest/environment/package.json new file mode 100644 index 000000000..6a72085ab --- /dev/null +++ b/node_modules/@jest/environment/package.json @@ -0,0 +1,65 @@ +{ + "_args": [ + [ + "@jest/environment@24.8.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "@jest/environment@24.8.0", + "_id": "@jest/environment@24.8.0", + "_inBundle": false, + "_integrity": "sha512-vlGt2HLg7qM+vtBrSkjDxk9K0YtRBi7HfRFaDxoRtyi+DyVChzhF20duvpdAnKVBV6W5tym8jm0U9EfXbDk1tw==", + "_location": "/@jest/environment", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@jest/environment@24.8.0", + "name": "@jest/environment", + "escapedName": "@jest%2fenvironment", + "scope": "@jest", + "rawSpec": "24.8.0", + "saveSpec": null, + "fetchSpec": "24.8.0" + }, + "_requiredBy": [ + "/@jest/reporters", + "/jest-circus", + "/jest-environment-jsdom", + "/jest-environment-node", + "/jest-jasmine2", + "/jest-runner", + "/jest-runtime" + ], + "_resolved": "https://registry.npmjs.org/@jest/environment/-/environment-24.8.0.tgz", + "_spec": "24.8.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/facebook/jest/issues" + }, + "dependencies": { + "@jest/fake-timers": "^24.8.0", + "@jest/transform": "^24.8.0", + "@jest/types": "^24.8.0", + "jest-mock": "^24.8.0" + }, + "engines": { + "node": ">= 6" + }, + "gitHead": "845728f24b3ef41e450595c384e9b5c9fdf248a4", + "homepage": "https://github.com/facebook/jest#readme", + "license": "MIT", + "main": "build/index.js", + "name": "@jest/environment", + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/facebook/jest.git", + "directory": "packages/jest-environment" + }, + "types": "build/index.d.ts", + "version": "24.8.0" +} diff --git a/node_modules/@jest/fake-timers/package.json b/node_modules/@jest/fake-timers/package.json new file mode 100644 index 000000000..cab6ca2ee --- /dev/null +++ b/node_modules/@jest/fake-timers/package.json @@ -0,0 +1,61 @@ +{ + "_args": [ + [ + "@jest/fake-timers@24.8.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "@jest/fake-timers@24.8.0", + "_id": "@jest/fake-timers@24.8.0", + "_inBundle": false, + "_integrity": "sha512-2M4d5MufVXwi6VzZhJ9f5S/wU4ud2ck0kxPof1Iz3zWx6Y+V2eJrES9jEktB6O3o/oEyk+il/uNu9PvASjWXQw==", + "_location": "/@jest/fake-timers", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@jest/fake-timers@24.8.0", + "name": "@jest/fake-timers", + "escapedName": "@jest%2ffake-timers", + "scope": "@jest", + "rawSpec": "24.8.0", + "saveSpec": null, + "fetchSpec": "24.8.0" + }, + "_requiredBy": [ + "/@jest/environment", + "/jest-environment-jsdom", + "/jest-environment-node", + "/jest-util" + ], + "_resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-24.8.0.tgz", + "_spec": "24.8.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/facebook/jest/issues" + }, + "dependencies": { + "@jest/types": "^24.8.0", + "jest-message-util": "^24.8.0", + "jest-mock": "^24.8.0" + }, + "engines": { + "node": ">= 6" + }, + "gitHead": "845728f24b3ef41e450595c384e9b5c9fdf248a4", + "homepage": "https://github.com/facebook/jest#readme", + "license": "MIT", + "main": "build/index.js", + "name": "@jest/fake-timers", + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/facebook/jest.git", + "directory": "packages/jest-fake-timers" + }, + "types": "build/index.d.ts", + "version": "24.8.0" +} diff --git a/node_modules/@jest/reporters/node_modules/slash/package.json b/node_modules/@jest/reporters/node_modules/slash/package.json new file mode 100644 index 000000000..c37b42105 --- /dev/null +++ b/node_modules/@jest/reporters/node_modules/slash/package.json @@ -0,0 +1,70 @@ +{ + "_args": [ + [ + "slash@2.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "slash@2.0.0", + "_id": "slash@2.0.0", + "_inBundle": false, + "_integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "_location": "/@jest/reporters/slash", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "slash@2.0.0", + "name": "slash", + "escapedName": "slash", + "rawSpec": "2.0.0", + "saveSpec": null, + "fetchSpec": "2.0.0" + }, + "_requiredBy": [ + "/@jest/reporters" + ], + "_resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "_spec": "2.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/slash/issues" + }, + "description": "Convert Windows backslash paths to slash paths", + "devDependencies": { + "ava": "*", + "xo": "*" + }, + "engines": { + "node": ">=6" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/slash#readme", + "keywords": [ + "path", + "seperator", + "sep", + "slash", + "backslash", + "windows", + "win" + ], + "license": "MIT", + "name": "slash", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/slash.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "2.0.0" +} diff --git a/node_modules/@jest/reporters/package.json b/node_modules/@jest/reporters/package.json new file mode 100644 index 000000000..6aabafac1 --- /dev/null +++ b/node_modules/@jest/reporters/package.json @@ -0,0 +1,90 @@ +{ + "_args": [ + [ + "@jest/reporters@24.8.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "@jest/reporters@24.8.0", + "_id": "@jest/reporters@24.8.0", + "_inBundle": false, + "_integrity": "sha512-eZ9TyUYpyIIXfYCrw0UHUWUvE35vx5I92HGMgS93Pv7du+GHIzl+/vh8Qj9MCWFK/4TqyttVBPakWMOfZRIfxw==", + "_location": "/@jest/reporters", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@jest/reporters@24.8.0", + "name": "@jest/reporters", + "escapedName": "@jest%2freporters", + "scope": "@jest", + "rawSpec": "24.8.0", + "saveSpec": null, + "fetchSpec": "24.8.0" + }, + "_requiredBy": [ + "/@jest/core" + ], + "_resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-24.8.0.tgz", + "_spec": "24.8.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/facebook/jest/issues" + }, + "dependencies": { + "@jest/environment": "^24.8.0", + "@jest/test-result": "^24.8.0", + "@jest/transform": "^24.8.0", + "@jest/types": "^24.8.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "glob": "^7.1.2", + "istanbul-lib-coverage": "^2.0.2", + "istanbul-lib-instrument": "^3.0.1", + "istanbul-lib-report": "^2.0.4", + "istanbul-lib-source-maps": "^3.0.1", + "istanbul-reports": "^2.1.1", + "jest-haste-map": "^24.8.0", + "jest-resolve": "^24.8.0", + "jest-runtime": "^24.8.0", + "jest-util": "^24.8.0", + "jest-worker": "^24.6.0", + "node-notifier": "^5.2.1", + "slash": "^2.0.0", + "source-map": "^0.6.0", + "string-length": "^2.0.0" + }, + "description": "Jest's reporters", + "devDependencies": { + "@types/exit": "^0.1.30", + "@types/glob": "^7.1.1", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-lib-instrument": "^1.7.2", + "@types/istanbul-lib-report": "^1.1.0", + "@types/istanbul-lib-source-maps": "^1.2.1", + "@types/istanbul-reports": "^1.1.0", + "@types/node-notifier": "^5.4.0", + "@types/slash": "^2.0.0", + "@types/string-length": "^2.0.0", + "strip-ansi": "^5.0.0" + }, + "engines": { + "node": ">= 6" + }, + "gitHead": "845728f24b3ef41e450595c384e9b5c9fdf248a4", + "homepage": "https://jestjs.io/", + "license": "MIT", + "main": "build/index.js", + "name": "@jest/reporters", + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/facebook/jest.git", + "directory": "packages/jest-reporters" + }, + "types": "build/index.d.ts", + "version": "24.8.0" +} diff --git a/node_modules/@jest/source-map/node_modules/callsites/package.json b/node_modules/@jest/source-map/node_modules/callsites/package.json new file mode 100644 index 000000000..5d736041b --- /dev/null +++ b/node_modules/@jest/source-map/node_modules/callsites/package.json @@ -0,0 +1,75 @@ +{ + "_args": [ + [ + "callsites@3.1.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "callsites@3.1.0", + "_id": "callsites@3.1.0", + "_inBundle": false, + "_integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "_location": "/@jest/source-map/callsites", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "callsites@3.1.0", + "name": "callsites", + "escapedName": "callsites", + "rawSpec": "3.1.0", + "saveSpec": null, + "fetchSpec": "3.1.0" + }, + "_requiredBy": [ + "/@jest/source-map" + ], + "_resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "_spec": "3.1.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/callsites/issues" + }, + "description": "Get callsites from the V8 stack trace API", + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, + "engines": { + "node": ">=6" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "homepage": "https://github.com/sindresorhus/callsites#readme", + "keywords": [ + "stacktrace", + "v8", + "callsite", + "callsites", + "stack", + "trace", + "function", + "file", + "line", + "debug" + ], + "license": "MIT", + "name": "callsites", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/callsites.git" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "3.1.0" +} diff --git a/node_modules/@jest/source-map/package.json b/node_modules/@jest/source-map/package.json new file mode 100644 index 000000000..b8f7fbeb6 --- /dev/null +++ b/node_modules/@jest/source-map/package.json @@ -0,0 +1,63 @@ +{ + "_args": [ + [ + "@jest/source-map@24.3.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "@jest/source-map@24.3.0", + "_id": "@jest/source-map@24.3.0", + "_inBundle": false, + "_integrity": "sha512-zALZt1t2ou8le/crCeeiRYzvdnTzaIlpOWaet45lNSqNJUnXbppUUFR4ZUAlzgDmKee4Q5P/tKXypI1RiHwgag==", + "_location": "/@jest/source-map", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@jest/source-map@24.3.0", + "name": "@jest/source-map", + "escapedName": "@jest%2fsource-map", + "scope": "@jest", + "rawSpec": "24.3.0", + "saveSpec": null, + "fetchSpec": "24.3.0" + }, + "_requiredBy": [ + "/@jest/console", + "/jest-runtime", + "/jest-util" + ], + "_resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-24.3.0.tgz", + "_spec": "24.3.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/facebook/jest/issues" + }, + "dependencies": { + "callsites": "^3.0.0", + "graceful-fs": "^4.1.15", + "source-map": "^0.6.0" + }, + "devDependencies": { + "@types/graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">= 6" + }, + "gitHead": "3a7a4f3a3f5489ac8e07dcddf76bb949c482ec87", + "homepage": "https://github.com/facebook/jest#readme", + "license": "MIT", + "main": "build/index.js", + "name": "@jest/source-map", + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/facebook/jest.git", + "directory": "packages/jest-source-map" + }, + "types": "build/index.d.ts", + "version": "24.3.0" +} diff --git a/node_modules/@jest/test-result/package.json b/node_modules/@jest/test-result/package.json new file mode 100644 index 000000000..f2fa7b3d0 --- /dev/null +++ b/node_modules/@jest/test-result/package.json @@ -0,0 +1,67 @@ +{ + "_args": [ + [ + "@jest/test-result@24.8.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "@jest/test-result@24.8.0", + "_id": "@jest/test-result@24.8.0", + "_inBundle": false, + "_integrity": "sha512-+YdLlxwizlfqkFDh7Mc7ONPQAhA4YylU1s529vVM1rsf67vGZH/2GGm5uO8QzPeVyaVMobCQ7FTxl38QrKRlng==", + "_location": "/@jest/test-result", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@jest/test-result@24.8.0", + "name": "@jest/test-result", + "escapedName": "@jest%2ftest-result", + "scope": "@jest", + "rawSpec": "24.8.0", + "saveSpec": null, + "fetchSpec": "24.8.0" + }, + "_requiredBy": [ + "/@jest/core", + "/@jest/reporters", + "/@jest/test-sequencer", + "/jest-circus", + "/jest-jasmine2", + "/jest-message-util", + "/jest-runner", + "/jest-util", + "/jest-watcher", + "/jest/jest-cli" + ], + "_resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-24.8.0.tgz", + "_spec": "24.8.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/facebook/jest/issues" + }, + "dependencies": { + "@jest/console": "^24.7.1", + "@jest/types": "^24.8.0", + "@types/istanbul-lib-coverage": "^2.0.0" + }, + "engines": { + "node": ">= 6" + }, + "gitHead": "845728f24b3ef41e450595c384e9b5c9fdf248a4", + "homepage": "https://github.com/facebook/jest#readme", + "license": "MIT", + "main": "build/index.js", + "name": "@jest/test-result", + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/facebook/jest.git", + "directory": "packages/jest-test-result" + }, + "types": "build/index.d.ts", + "version": "24.8.0" +} diff --git a/node_modules/@jest/test-sequencer/package.json b/node_modules/@jest/test-sequencer/package.json new file mode 100644 index 000000000..207f208f0 --- /dev/null +++ b/node_modules/@jest/test-sequencer/package.json @@ -0,0 +1,59 @@ +{ + "_args": [ + [ + "@jest/test-sequencer@24.8.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "@jest/test-sequencer@24.8.0", + "_id": "@jest/test-sequencer@24.8.0", + "_inBundle": false, + "_integrity": "sha512-OzL/2yHyPdCHXEzhoBuq37CE99nkme15eHkAzXRVqthreWZamEMA0WoetwstsQBCXABhczpK03JNbc4L01vvLg==", + "_location": "/@jest/test-sequencer", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@jest/test-sequencer@24.8.0", + "name": "@jest/test-sequencer", + "escapedName": "@jest%2ftest-sequencer", + "scope": "@jest", + "rawSpec": "24.8.0", + "saveSpec": null, + "fetchSpec": "24.8.0" + }, + "_requiredBy": [ + "/jest-config" + ], + "_resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-24.8.0.tgz", + "_spec": "24.8.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/facebook/jest/issues" + }, + "dependencies": { + "@jest/test-result": "^24.8.0", + "jest-haste-map": "^24.8.0", + "jest-runner": "^24.8.0", + "jest-runtime": "^24.8.0" + }, + "engines": { + "node": ">= 6" + }, + "gitHead": "845728f24b3ef41e450595c384e9b5c9fdf248a4", + "homepage": "https://github.com/facebook/jest#readme", + "license": "MIT", + "main": "build/index.js", + "name": "@jest/test-sequencer", + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/facebook/jest.git", + "directory": "packages/jest-test-sequencer" + }, + "types": "build/index.d.ts", + "version": "24.8.0" +} diff --git a/node_modules/@jest/transform/node_modules/slash/package.json b/node_modules/@jest/transform/node_modules/slash/package.json new file mode 100644 index 000000000..c72d7c25e --- /dev/null +++ b/node_modules/@jest/transform/node_modules/slash/package.json @@ -0,0 +1,70 @@ +{ + "_args": [ + [ + "slash@2.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "slash@2.0.0", + "_id": "slash@2.0.0", + "_inBundle": false, + "_integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "_location": "/@jest/transform/slash", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "slash@2.0.0", + "name": "slash", + "escapedName": "slash", + "rawSpec": "2.0.0", + "saveSpec": null, + "fetchSpec": "2.0.0" + }, + "_requiredBy": [ + "/@jest/transform" + ], + "_resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "_spec": "2.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/slash/issues" + }, + "description": "Convert Windows backslash paths to slash paths", + "devDependencies": { + "ava": "*", + "xo": "*" + }, + "engines": { + "node": ">=6" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/slash#readme", + "keywords": [ + "path", + "seperator", + "sep", + "slash", + "backslash", + "windows", + "win" + ], + "license": "MIT", + "name": "slash", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/slash.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "2.0.0" +} diff --git a/node_modules/@jest/transform/package.json b/node_modules/@jest/transform/package.json new file mode 100644 index 000000000..3081b1ea3 --- /dev/null +++ b/node_modules/@jest/transform/package.json @@ -0,0 +1,81 @@ +{ + "_args": [ + [ + "@jest/transform@24.8.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "@jest/transform@24.8.0", + "_id": "@jest/transform@24.8.0", + "_inBundle": false, + "_integrity": "sha512-xBMfFUP7TortCs0O+Xtez2W7Zu1PLH9bvJgtraN1CDST6LBM/eTOZ9SfwS/lvV8yOfcDpFmwf9bq5cYbXvqsvA==", + "_location": "/@jest/transform", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@jest/transform@24.8.0", + "name": "@jest/transform", + "escapedName": "@jest%2ftransform", + "scope": "@jest", + "rawSpec": "24.8.0", + "saveSpec": null, + "fetchSpec": "24.8.0" + }, + "_requiredBy": [ + "/@jest/core", + "/@jest/environment", + "/@jest/reporters", + "/babel-jest", + "/jest-runtime" + ], + "_resolved": "https://registry.npmjs.org/@jest/transform/-/transform-24.8.0.tgz", + "_spec": "24.8.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/facebook/jest/issues" + }, + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/types": "^24.8.0", + "babel-plugin-istanbul": "^5.1.0", + "chalk": "^2.0.1", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.1.15", + "jest-haste-map": "^24.8.0", + "jest-regex-util": "^24.3.0", + "jest-util": "^24.8.0", + "micromatch": "^3.1.10", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "2.4.1" + }, + "devDependencies": { + "@types/babel__core": "^7.1.0", + "@types/convert-source-map": "^1.5.1", + "@types/fast-json-stable-stringify": "^2.0.0", + "@types/graceful-fs": "^4.1.2", + "@types/micromatch": "^3.1.0", + "@types/write-file-atomic": "^2.1.1" + }, + "engines": { + "node": ">= 6" + }, + "gitHead": "845728f24b3ef41e450595c384e9b5c9fdf248a4", + "homepage": "https://github.com/facebook/jest#readme", + "license": "MIT", + "main": "build/index.js", + "name": "@jest/transform", + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/facebook/jest.git", + "directory": "packages/jest-transform" + }, + "version": "24.8.0" +} diff --git a/node_modules/@jest/types/package.json b/node_modules/@jest/types/package.json new file mode 100644 index 000000000..92840349b --- /dev/null +++ b/node_modules/@jest/types/package.json @@ -0,0 +1,85 @@ +{ + "_args": [ + [ + "@jest/types@24.8.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "@jest/types@24.8.0", + "_id": "@jest/types@24.8.0", + "_inBundle": false, + "_integrity": "sha512-g17UxVr2YfBtaMUxn9u/4+siG1ptg9IGYAYwvpwn61nBg779RXnjE/m7CxYcIzEt0AbHZZAHSEZNhkE2WxURVg==", + "_location": "/@jest/types", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@jest/types@24.8.0", + "name": "@jest/types", + "escapedName": "@jest%2ftypes", + "scope": "@jest", + "rawSpec": "24.8.0", + "saveSpec": null, + "fetchSpec": "24.8.0" + }, + "_requiredBy": [ + "/@jest/core", + "/@jest/environment", + "/@jest/fake-timers", + "/@jest/reporters", + "/@jest/test-result", + "/@jest/transform", + "/babel-jest", + "/expect", + "/jest-changed-files", + "/jest-circus", + "/jest-config", + "/jest-each", + "/jest-environment-jsdom", + "/jest-environment-node", + "/jest-haste-map", + "/jest-jasmine2", + "/jest-message-util", + "/jest-mock", + "/jest-resolve", + "/jest-resolve-dependencies", + "/jest-runner", + "/jest-runtime", + "/jest-snapshot", + "/jest-util", + "/jest-validate", + "/jest-watcher", + "/jest/jest-cli", + "/pretty-format" + ], + "_resolved": "https://registry.npmjs.org/@jest/types/-/types-24.8.0.tgz", + "_spec": "24.8.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/facebook/jest/issues" + }, + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^12.0.9" + }, + "engines": { + "node": ">= 6" + }, + "gitHead": "845728f24b3ef41e450595c384e9b5c9fdf248a4", + "homepage": "https://github.com/facebook/jest#readme", + "license": "MIT", + "main": "build/index.js", + "name": "@jest/types", + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/facebook/jest.git", + "directory": "packages/jest-types" + }, + "types": "build/index.d.ts", + "version": "24.8.0" +} diff --git a/node_modules/@types/babel__core/package.json b/node_modules/@types/babel__core/package.json new file mode 100644 index 000000000..a8a18d4ea --- /dev/null +++ b/node_modules/@types/babel__core/package.json @@ -0,0 +1,75 @@ +{ + "_args": [ + [ + "@types/babel__core@7.1.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "@types/babel__core@7.1.2", + "_id": "@types/babel__core@7.1.2", + "_inBundle": false, + "_integrity": "sha512-cfCCrFmiGY/yq0NuKNxIQvZFy9kY/1immpSpTngOnyIbD4+eJOG5mxphhHDv3CHL9GltO4GcKr54kGBg3RNdbg==", + "_location": "/@types/babel__core", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@types/babel__core@7.1.2", + "name": "@types/babel__core", + "escapedName": "@types%2fbabel__core", + "scope": "@types", + "rawSpec": "7.1.2", + "saveSpec": null, + "fetchSpec": "7.1.2" + }, + "_requiredBy": [ + "/babel-jest" + ], + "_resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.2.tgz", + "_spec": "7.1.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + "contributors": [ + { + "name": "Troy Gerwien", + "url": "https://github.com/yortus" + }, + { + "name": "Marvin Hagemeister", + "url": "https://github.com/marvinhagemeister" + }, + { + "name": "Melvin Groenhoff", + "url": "https://github.com/mgroenhoff" + }, + { + "name": "Jessica Franco", + "url": "https://github.com/Jessidhia" + } + ], + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + }, + "description": "TypeScript definitions for @babel/core", + "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", + "license": "MIT", + "main": "", + "name": "@types/babel__core", + "repository": { + "type": "git", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "directory": "types/babel__core" + }, + "scripts": {}, + "typeScriptVersion": "2.9", + "types": "index", + "typesPublisherContentHash": "8ddbc9ecfefbb1a61ece46d6e48876a63d101c6c5291bb173a929cead248d6a2", + "version": "7.1.2" +} diff --git a/node_modules/@types/babel__generator/package.json b/node_modules/@types/babel__generator/package.json new file mode 100644 index 000000000..69a0259cc --- /dev/null +++ b/node_modules/@types/babel__generator/package.json @@ -0,0 +1,66 @@ +{ + "_args": [ + [ + "@types/babel__generator@7.0.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "@types/babel__generator@7.0.2", + "_id": "@types/babel__generator@7.0.2", + "_inBundle": false, + "_integrity": "sha512-NHcOfab3Zw4q5sEE2COkpfXjoE7o+PmqD9DQW4koUT3roNxwziUdXGnRndMat/LJNUtePwn1TlP4do3uoe3KZQ==", + "_location": "/@types/babel__generator", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@types/babel__generator@7.0.2", + "name": "@types/babel__generator", + "escapedName": "@types%2fbabel__generator", + "scope": "@types", + "rawSpec": "7.0.2", + "saveSpec": null, + "fetchSpec": "7.0.2" + }, + "_requiredBy": [ + "/@types/babel__core" + ], + "_resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.0.2.tgz", + "_spec": "7.0.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + "contributors": [ + { + "name": "Troy Gerwien", + "url": "https://github.com/yortus" + }, + { + "name": "Johnny Estilles", + "url": "https://github.com/johnnyestilles" + }, + { + "name": "Melvin Groenhoff", + "url": "https://github.com/mgroenhoff" + } + ], + "dependencies": { + "@babel/types": "^7.0.0" + }, + "description": "TypeScript definitions for @babel/generator", + "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", + "license": "MIT", + "main": "", + "name": "@types/babel__generator", + "repository": { + "type": "git", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + }, + "scripts": {}, + "typeScriptVersion": "2.9", + "types": "index", + "typesPublisherContentHash": "12b47650c77333060b8da231a33c95326cb124929b12d19cd41d9c2dae936d80", + "version": "7.0.2" +} diff --git a/node_modules/@types/babel__template/package.json b/node_modules/@types/babel__template/package.json new file mode 100644 index 000000000..0e42ceb47 --- /dev/null +++ b/node_modules/@types/babel__template/package.json @@ -0,0 +1,67 @@ +{ + "_args": [ + [ + "@types/babel__template@7.0.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "@types/babel__template@7.0.2", + "_id": "@types/babel__template@7.0.2", + "_inBundle": false, + "_integrity": "sha512-/K6zCpeW7Imzgab2bLkLEbz0+1JlFSrUMdw7KoIIu+IUdu51GWaBZpd3y1VXGVXzynvGa4DaIaxNZHiON3GXUg==", + "_location": "/@types/babel__template", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@types/babel__template@7.0.2", + "name": "@types/babel__template", + "escapedName": "@types%2fbabel__template", + "scope": "@types", + "rawSpec": "7.0.2", + "saveSpec": null, + "fetchSpec": "7.0.2" + }, + "_requiredBy": [ + "/@types/babel__core" + ], + "_resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.0.2.tgz", + "_spec": "7.0.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + "contributors": [ + { + "name": "Troy Gerwien", + "url": "https://github.com/yortus" + }, + { + "name": "Marvin Hagemeister", + "url": "https://github.com/marvinhagemeister" + }, + { + "name": "Melvin Groenhoff", + "url": "https://github.com/mgroenhoff" + } + ], + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + }, + "description": "TypeScript definitions for @babel/template", + "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", + "license": "MIT", + "main": "", + "name": "@types/babel__template", + "repository": { + "type": "git", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + }, + "scripts": {}, + "typeScriptVersion": "2.9", + "types": "index", + "typesPublisherContentHash": "fd665ffdd94e184259796e85ff1a8e8626a23fb0eeefd6cfb9f77a316eda2624", + "version": "7.0.2" +} diff --git a/node_modules/@types/babel__traverse/package.json b/node_modules/@types/babel__traverse/package.json new file mode 100644 index 000000000..8eb2a707b --- /dev/null +++ b/node_modules/@types/babel__traverse/package.json @@ -0,0 +1,72 @@ +{ + "_args": [ + [ + "@types/babel__traverse@7.0.7", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "@types/babel__traverse@7.0.7", + "_id": "@types/babel__traverse@7.0.7", + "_inBundle": false, + "_integrity": "sha512-CeBpmX1J8kWLcDEnI3Cl2Eo6RfbGvzUctA+CjZUhOKDFbLfcr7fc4usEqLNWetrlJd7RhAkyYe2czXop4fICpw==", + "_location": "/@types/babel__traverse", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@types/babel__traverse@7.0.7", + "name": "@types/babel__traverse", + "escapedName": "@types%2fbabel__traverse", + "scope": "@types", + "rawSpec": "7.0.7", + "saveSpec": null, + "fetchSpec": "7.0.7" + }, + "_requiredBy": [ + "/@types/babel__core", + "/babel-plugin-jest-hoist" + ], + "_resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.0.7.tgz", + "_spec": "7.0.7", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + "contributors": [ + { + "name": "Troy Gerwien", + "url": "https://github.com/yortus" + }, + { + "name": "Marvin Hagemeister", + "url": "https://github.com/marvinhagemeister" + }, + { + "name": "Ryan Petrich", + "url": "https://github.com/rpetrich" + }, + { + "name": "Melvin Groenhoff", + "url": "https://github.com/mgroenhoff" + } + ], + "dependencies": { + "@babel/types": "^7.3.0" + }, + "description": "TypeScript definitions for @babel/traverse", + "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", + "license": "MIT", + "main": "", + "name": "@types/babel__traverse", + "repository": { + "type": "git", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "directory": "types/babel__traverse" + }, + "scripts": {}, + "typeScriptVersion": "2.9", + "types": "index", + "typesPublisherContentHash": "37e6c080b57f5b07ab86b0af01352617892a3cd9fc9db8bd3c69fa0610672457", + "version": "7.0.7" +} diff --git a/node_modules/@types/istanbul-lib-coverage/package.json b/node_modules/@types/istanbul-lib-coverage/package.json new file mode 100644 index 000000000..c39ef38b7 --- /dev/null +++ b/node_modules/@types/istanbul-lib-coverage/package.json @@ -0,0 +1,64 @@ +{ + "_args": [ + [ + "@types/istanbul-lib-coverage@2.0.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "@types/istanbul-lib-coverage@2.0.1", + "_id": "@types/istanbul-lib-coverage@2.0.1", + "_inBundle": false, + "_integrity": "sha512-hRJD2ahnnpLgsj6KWMYSrmXkM3rm2Dl1qkx6IOFD5FnuNPXJIG5L0dhgKXCYTRMGzU4n0wImQ/xfmRc4POUFlg==", + "_location": "/@types/istanbul-lib-coverage", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@types/istanbul-lib-coverage@2.0.1", + "name": "@types/istanbul-lib-coverage", + "escapedName": "@types%2fistanbul-lib-coverage", + "scope": "@types", + "rawSpec": "2.0.1", + "saveSpec": null, + "fetchSpec": "2.0.1" + }, + "_requiredBy": [ + "/@jest/test-result", + "/@jest/types", + "/@types/istanbul-lib-report", + "/@types/istanbul-reports" + ], + "_resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.1.tgz", + "_spec": "2.0.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + "contributors": [ + { + "name": "Jason Cheatham", + "url": "https://github.com/jason0x43" + }, + { + "name": "Lorenzo Rapetti", + "url": "https://github.com/loryman" + } + ], + "dependencies": {}, + "description": "TypeScript definitions for istanbul-lib-coverage", + "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", + "license": "MIT", + "main": "", + "name": "@types/istanbul-lib-coverage", + "repository": { + "type": "git", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "directory": "types/istanbul-lib-coverage" + }, + "scripts": {}, + "typeScriptVersion": "2.4", + "types": "index", + "typesPublisherContentHash": "fb2cf9603945473dc60dede8472e884daa070938a01b09aa816ca0cc979213ba", + "version": "2.0.1" +} diff --git a/node_modules/@types/istanbul-lib-report/package.json b/node_modules/@types/istanbul-lib-report/package.json new file mode 100644 index 000000000..cf52038ef --- /dev/null +++ b/node_modules/@types/istanbul-lib-report/package.json @@ -0,0 +1,59 @@ +{ + "_args": [ + [ + "@types/istanbul-lib-report@1.1.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "@types/istanbul-lib-report@1.1.1", + "_id": "@types/istanbul-lib-report@1.1.1", + "_inBundle": false, + "_integrity": "sha512-3BUTyMzbZa2DtDI2BkERNC6jJw2Mr2Y0oGI7mRxYNBPxppbtEK1F66u3bKwU2g+wxwWI7PAoRpJnOY1grJqzHg==", + "_location": "/@types/istanbul-lib-report", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@types/istanbul-lib-report@1.1.1", + "name": "@types/istanbul-lib-report", + "escapedName": "@types%2fistanbul-lib-report", + "scope": "@types", + "rawSpec": "1.1.1", + "saveSpec": null, + "fetchSpec": "1.1.1" + }, + "_requiredBy": [ + "/@types/istanbul-reports" + ], + "_resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz", + "_spec": "1.1.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + "contributors": [ + { + "name": "Jason Cheatham", + "url": "https://github.com/jason0x43" + } + ], + "dependencies": { + "@types/istanbul-lib-coverage": "*" + }, + "description": "TypeScript definitions for istanbul-lib-report", + "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", + "license": "MIT", + "main": "", + "name": "@types/istanbul-lib-report", + "repository": { + "type": "git", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "directory": "types/istanbul-lib-report" + }, + "scripts": {}, + "typeScriptVersion": "2.4", + "types": "index", + "typesPublisherContentHash": "64af305d196bdbb3cc44bc664daf0546df5c55bce234d53c29f97d0883da2f32", + "version": "1.1.1" +} diff --git a/node_modules/@types/istanbul-reports/package.json b/node_modules/@types/istanbul-reports/package.json new file mode 100644 index 000000000..98772624c --- /dev/null +++ b/node_modules/@types/istanbul-reports/package.json @@ -0,0 +1,60 @@ +{ + "_args": [ + [ + "@types/istanbul-reports@1.1.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "@types/istanbul-reports@1.1.1", + "_id": "@types/istanbul-reports@1.1.1", + "_inBundle": false, + "_integrity": "sha512-UpYjBi8xefVChsCoBpKShdxTllC9pwISirfoZsUa2AAdQg/Jd2KQGtSbw+ya7GPo7x/wAPlH6JBhKhAsXUEZNA==", + "_location": "/@types/istanbul-reports", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@types/istanbul-reports@1.1.1", + "name": "@types/istanbul-reports", + "escapedName": "@types%2fistanbul-reports", + "scope": "@types", + "rawSpec": "1.1.1", + "saveSpec": null, + "fetchSpec": "1.1.1" + }, + "_requiredBy": [ + "/@jest/types" + ], + "_resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-1.1.1.tgz", + "_spec": "1.1.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + "contributors": [ + { + "name": "Jason Cheatham", + "url": "https://github.com/jason0x43" + } + ], + "dependencies": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + }, + "description": "TypeScript definitions for istanbul-reports", + "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", + "license": "MIT", + "main": "", + "name": "@types/istanbul-reports", + "repository": { + "type": "git", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "directory": "types/istanbul-reports" + }, + "scripts": {}, + "typeScriptVersion": "2.4", + "types": "index", + "typesPublisherContentHash": "48ffb8b28b9f445ebd12c748ea4cf877e1b802bee7fa18c4392b793e84bfce5a", + "version": "1.1.1" +} diff --git a/node_modules/@types/jest-diff/package.json b/node_modules/@types/jest-diff/package.json new file mode 100644 index 000000000..feaf5f190 --- /dev/null +++ b/node_modules/@types/jest-diff/package.json @@ -0,0 +1,56 @@ +{ + "_args": [ + [ + "@types/jest-diff@20.0.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "@types/jest-diff@20.0.1", + "_id": "@types/jest-diff@20.0.1", + "_inBundle": false, + "_integrity": "sha512-yALhelO3i0hqZwhjtcr6dYyaLoCHbAMshwtj6cGxTvHZAKXHsYGdff6E8EPw3xLKY0ELUTQ69Q1rQiJENnccMA==", + "_location": "/@types/jest-diff", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@types/jest-diff@20.0.1", + "name": "@types/jest-diff", + "escapedName": "@types%2fjest-diff", + "scope": "@types", + "rawSpec": "20.0.1", + "saveSpec": null, + "fetchSpec": "20.0.1" + }, + "_requiredBy": [ + "/@types/jest" + ], + "_resolved": "https://registry.npmjs.org/@types/jest-diff/-/jest-diff-20.0.1.tgz", + "_spec": "20.0.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + "contributors": [ + { + "name": "Alex Coles", + "url": "https://github.com/myabc" + } + ], + "dependencies": {}, + "description": "TypeScript definitions for jest-diff", + "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", + "license": "MIT", + "main": "", + "name": "@types/jest-diff", + "repository": { + "type": "git", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + }, + "scripts": {}, + "typeScriptVersion": "2.2", + "types": "index", + "typesPublisherContentHash": "c870fcddd40540a283942f82f668244cf72de020fb0110ae019708cb06b19ce2", + "version": "20.0.1" +} diff --git a/node_modules/@types/jest/package.json b/node_modules/@types/jest/package.json new file mode 100644 index 000000000..27f560ae6 --- /dev/null +++ b/node_modules/@types/jest/package.json @@ -0,0 +1,139 @@ +{ + "_args": [ + [ + "@types/jest@24.0.16", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "@types/jest@24.0.16", + "_id": "@types/jest@24.0.16", + "_inBundle": false, + "_integrity": "sha512-JrAiyV+PPGKZzw6uxbI761cHZ0G7QMOHXPhtSpcl08rZH6CswXaaejckn3goFKmF7M3nzEoJ0lwYCbqLMmjziQ==", + "_location": "/@types/jest", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@types/jest@24.0.16", + "name": "@types/jest", + "escapedName": "@types%2fjest", + "scope": "@types", + "rawSpec": "24.0.16", + "saveSpec": null, + "fetchSpec": "24.0.16" + }, + "_requiredBy": [ + "#DEV:/" + ], + "_resolved": "https://registry.npmjs.org/@types/jest/-/jest-24.0.16.tgz", + "_spec": "24.0.16", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + "contributors": [ + { + "name": "Asana", + "url": "https://asana.com" + }, + { + "name": "jwbay", + "url": "https://github.com/jwbay" + }, + { + "name": "Alexey Svetliakov", + "url": "https://github.com/asvetliakov" + }, + { + "name": "Alex Jover Morales", + "url": "https://github.com/alexjoverm" + }, + { + "name": "Allan Lukwago", + "url": "https://github.com/epicallan" + }, + { + "name": "Ika", + "url": "https://github.com/ikatyang" + }, + { + "name": "Waseem Dahman", + "url": "https://github.com/wsmd" + }, + { + "name": "Jamie Mason", + "url": "https://github.com/JamieMason" + }, + { + "name": "Douglas Duteil", + "url": "https://github.com/douglasduteil" + }, + { + "name": "Ahn", + "url": "https://github.com/ahnpnl" + }, + { + "name": "Josh Goldberg", + "url": "https://github.com/joshuakgoldberg" + }, + { + "name": "Jeff Lau", + "url": "https://github.com/UselessPickles" + }, + { + "name": "Andrew Makarov", + "url": "https://github.com/r3nya" + }, + { + "name": "Martin Hochel", + "url": "https://github.com/hotell" + }, + { + "name": "Sebastian Sebald", + "url": "https://github.com/sebald" + }, + { + "name": "Andy", + "url": "https://github.com/andys8" + }, + { + "name": "Antoine Brault", + "url": "https://github.com/antoinebrault" + }, + { + "name": "Jeroen Claassens", + "url": "https://github.com/favna" + }, + { + "name": "Gregor Stamać", + "url": "https://github.com/gstamac" + }, + { + "name": "ExE Boss", + "url": "https://github.com/ExE-Boss" + }, + { + "name": "Alex Bolenok", + "url": "https://github.com/quassnoi" + } + ], + "dependencies": { + "@types/jest-diff": "*" + }, + "description": "TypeScript definitions for Jest", + "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", + "license": "MIT", + "main": "", + "name": "@types/jest", + "repository": { + "type": "git", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "directory": "types/jest" + }, + "scripts": {}, + "typeScriptVersion": "3.0", + "types": "index", + "typesPublisherContentHash": "ea53461cb3b33ad8bb114a96b0bea8c792ff624c76adbdce52dc4e706559a405", + "version": "24.0.16" +} diff --git a/node_modules/@types/node/package.json b/node_modules/@types/node/package.json new file mode 100644 index 000000000..bab9550f4 --- /dev/null +++ b/node_modules/@types/node/package.json @@ -0,0 +1,204 @@ +{ + "_args": [ + [ + "@types/node@12.6.8", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "@types/node@12.6.8", + "_id": "@types/node@12.6.8", + "_inBundle": false, + "_integrity": "sha512-aX+gFgA5GHcDi89KG5keey2zf0WfZk/HAQotEamsK2kbey+8yGKcson0hbK8E+v0NArlCJQCqMP161YhV6ZXLg==", + "_location": "/@types/node", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@types/node@12.6.8", + "name": "@types/node", + "escapedName": "@types%2fnode", + "scope": "@types", + "rawSpec": "12.6.8", + "saveSpec": null, + "fetchSpec": "12.6.8" + }, + "_requiredBy": [ + "#DEV:/" + ], + "_resolved": "https://registry.npmjs.org/@types/node/-/node-12.6.8.tgz", + "_spec": "12.6.8", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + "contributors": [ + { + "name": "Microsoft TypeScript", + "url": "https://github.com/Microsoft" + }, + { + "name": "DefinitelyTyped", + "url": "https://github.com/DefinitelyTyped" + }, + { + "name": "Alberto Schiabel", + "url": "https://github.com/jkomyno" + }, + { + "name": "Alexander T.", + "url": "https://github.com/a-tarasyuk" + }, + { + "name": "Alvis HT Tang", + "url": "https://github.com/alvis" + }, + { + "name": "Andrew Makarov", + "url": "https://github.com/r3nya" + }, + { + "name": "Benjamin Toueg", + "url": "https://github.com/btoueg" + }, + { + "name": "Bruno Scheufler", + "url": "https://github.com/brunoscheufler" + }, + { + "name": "Chigozirim C.", + "url": "https://github.com/smac89" + }, + { + "name": "Christian Vaagland Tellnes", + "url": "https://github.com/tellnes" + }, + { + "name": "David Junger", + "url": "https://github.com/touffy" + }, + { + "name": "Deividas Bakanas", + "url": "https://github.com/DeividasBakanas" + }, + { + "name": "Eugene Y. Q. Shen", + "url": "https://github.com/eyqs" + }, + { + "name": "Flarna", + "url": "https://github.com/Flarna" + }, + { + "name": "Hannes Magnusson", + "url": "https://github.com/Hannes-Magnusson-CK" + }, + { + "name": "Hoàng Văn Khải", + "url": "https://github.com/KSXGitHub" + }, + { + "name": "Huw", + "url": "https://github.com/hoo29" + }, + { + "name": "Kelvin Jin", + "url": "https://github.com/kjin" + }, + { + "name": "Klaus Meinhardt", + "url": "https://github.com/ajafff" + }, + { + "name": "Lishude", + "url": "https://github.com/islishude" + }, + { + "name": "Mariusz Wiktorczyk", + "url": "https://github.com/mwiktorczyk" + }, + { + "name": "Matthieu Sieben", + "url": "https://github.com/matthieusieben" + }, + { + "name": "Mohsen Azimi", + "url": "https://github.com/mohsen1" + }, + { + "name": "Nicolas Even", + "url": "https://github.com/n-e" + }, + { + "name": "Nicolas Voigt", + "url": "https://github.com/octo-sniffle" + }, + { + "name": "Parambir Singh", + "url": "https://github.com/parambirs" + }, + { + "name": "Sebastian Silbermann", + "url": "https://github.com/eps1lon" + }, + { + "name": "Simon Schick", + "url": "https://github.com/SimonSchick" + }, + { + "name": "Thomas den Hollander", + "url": "https://github.com/ThomasdenH" + }, + { + "name": "Wilco Bakker", + "url": "https://github.com/WilcoBakker" + }, + { + "name": "wwwy3y3", + "url": "https://github.com/wwwy3y3" + }, + { + "name": "Zane Hannan AU", + "url": "https://github.com/ZaneHannanAU" + }, + { + "name": "Samuel Ainsworth", + "url": "https://github.com/samuela" + }, + { + "name": "Kyle Uehlein", + "url": "https://github.com/kuehlein" + }, + { + "name": "Jordi Oliveras Rovira", + "url": "https://github.com/j-oliveras" + }, + { + "name": "Thanik Bhongbhibhat", + "url": "https://github.com/bhongy" + } + ], + "dependencies": {}, + "description": "TypeScript definitions for Node.js", + "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", + "license": "MIT", + "main": "", + "name": "@types/node", + "repository": { + "type": "git", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "directory": "types/node" + }, + "scripts": {}, + "typeScriptVersion": "2.0", + "types": "index", + "typesPublisherContentHash": "8630266379794ffe5826422974749423e8d09e4d652e641cbf6ade81782c32af", + "typesVersions": { + ">=3.2.0-0": { + "*": [ + "ts3.2/*" + ] + } + }, + "version": "12.6.8" +} diff --git a/node_modules/@types/normalize-package-data/package.json b/node_modules/@types/normalize-package-data/package.json new file mode 100644 index 000000000..0916b694d --- /dev/null +++ b/node_modules/@types/normalize-package-data/package.json @@ -0,0 +1,55 @@ +{ + "_args": [ + [ + "@types/normalize-package-data@2.4.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "@types/normalize-package-data@2.4.0", + "_id": "@types/normalize-package-data@2.4.0", + "_inBundle": false, + "_integrity": "sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA==", + "_location": "/@types/normalize-package-data", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@types/normalize-package-data@2.4.0", + "name": "@types/normalize-package-data", + "escapedName": "@types%2fnormalize-package-data", + "scope": "@types", + "rawSpec": "2.4.0", + "saveSpec": null, + "fetchSpec": "2.4.0" + }, + "_requiredBy": [ + "/read-pkg" + ], + "_resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz", + "_spec": "2.4.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + "contributors": [ + { + "name": "Jeff Dickey", + "url": "https://github.com/jdxcode" + } + ], + "dependencies": {}, + "description": "TypeScript definitions for normalize-package-data", + "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", + "license": "MIT", + "main": "", + "name": "@types/normalize-package-data", + "repository": { + "type": "git", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + }, + "scripts": {}, + "typeScriptVersion": "2.0", + "typesPublisherContentHash": "5d2101e9e55c73e1d649a6c311e0d40bdfaa25bb06bb75ea6f3bb0d149c1303b", + "version": "2.4.0" +} diff --git a/node_modules/@types/semver/package.json b/node_modules/@types/semver/package.json new file mode 100644 index 000000000..a0d2b32d4 --- /dev/null +++ b/node_modules/@types/semver/package.json @@ -0,0 +1,69 @@ +{ + "_args": [ + [ + "@types/semver@6.0.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "@types/semver@6.0.1", + "_id": "@types/semver@6.0.1", + "_inBundle": false, + "_integrity": "sha512-ffCdcrEE5h8DqVxinQjo+2d1q+FV5z7iNtPofw3JsrltSoSVlOGaW0rY8XxtO9XukdTn8TaCGWmk2VFGhI70mg==", + "_location": "/@types/semver", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@types/semver@6.0.1", + "name": "@types/semver", + "escapedName": "@types%2fsemver", + "scope": "@types", + "rawSpec": "6.0.1", + "saveSpec": null, + "fetchSpec": "6.0.1" + }, + "_requiredBy": [ + "#DEV:/" + ], + "_resolved": "https://registry.npmjs.org/@types/semver/-/semver-6.0.1.tgz", + "_spec": "6.0.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + "contributors": [ + { + "name": "Bart van der Schoor", + "url": "https://github.com/Bartvds" + }, + { + "name": "BendingBender", + "url": "https://github.com/BendingBender" + }, + { + "name": "Lucian Buzzo", + "url": "https://github.com/LucianBuzzo" + }, + { + "name": "Klaus Meinhardt", + "url": "https://github.com/ajafff" + } + ], + "dependencies": {}, + "description": "TypeScript definitions for semver", + "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", + "license": "MIT", + "main": "", + "name": "@types/semver", + "repository": { + "type": "git", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "directory": "types/semver" + }, + "scripts": {}, + "typeScriptVersion": "2.0", + "types": "index", + "typesPublisherContentHash": "2fbf12f1845229c1b285bd981b793f64bc89a14bb6f2d36a44eccb80c34cc946", + "version": "6.0.1" +} diff --git a/node_modules/@types/stack-utils/package.json b/node_modules/@types/stack-utils/package.json new file mode 100644 index 000000000..4eb0c1df6 --- /dev/null +++ b/node_modules/@types/stack-utils/package.json @@ -0,0 +1,55 @@ +{ + "_args": [ + [ + "@types/stack-utils@1.0.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "@types/stack-utils@1.0.1", + "_id": "@types/stack-utils@1.0.1", + "_inBundle": false, + "_integrity": "sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw==", + "_location": "/@types/stack-utils", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@types/stack-utils@1.0.1", + "name": "@types/stack-utils", + "escapedName": "@types%2fstack-utils", + "scope": "@types", + "rawSpec": "1.0.1", + "saveSpec": null, + "fetchSpec": "1.0.1" + }, + "_requiredBy": [ + "/jest-message-util" + ], + "_resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-1.0.1.tgz", + "_spec": "1.0.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + "contributors": [ + { + "name": "BendingBender", + "url": "https://github.com/BendingBender" + } + ], + "dependencies": {}, + "description": "TypeScript definitions for stack-utils", + "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", + "license": "MIT", + "main": "", + "name": "@types/stack-utils", + "repository": { + "type": "git", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + }, + "scripts": {}, + "typeScriptVersion": "2.2", + "typesPublisherContentHash": "c3d5963386c8535320c11b5edfb22c4bf60fb3e4bcbca34f094f7026b9749d86", + "version": "1.0.1" +} diff --git a/node_modules/@types/yargs/package.json b/node_modules/@types/yargs/package.json new file mode 100644 index 000000000..8ecc41f73 --- /dev/null +++ b/node_modules/@types/yargs/package.json @@ -0,0 +1,83 @@ +{ + "_args": [ + [ + "@types/yargs@12.0.12", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "@types/yargs@12.0.12", + "_id": "@types/yargs@12.0.12", + "_inBundle": false, + "_integrity": "sha512-SOhuU4wNBxhhTHxYaiG5NY4HBhDIDnJF60GU+2LqHAdKKer86//e4yg69aENCtQ04n0ovz+tq2YPME5t5yp4pw==", + "_location": "/@types/yargs", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "@types/yargs@12.0.12", + "name": "@types/yargs", + "escapedName": "@types%2fyargs", + "scope": "@types", + "rawSpec": "12.0.12", + "saveSpec": null, + "fetchSpec": "12.0.12" + }, + "_requiredBy": [ + "/@jest/types", + "/jest-runtime", + "/jest-watcher" + ], + "_resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-12.0.12.tgz", + "_spec": "12.0.12", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + "contributors": [ + { + "name": "Martin Poelstra", + "url": "https://github.com/poelstra" + }, + { + "name": "Mizunashi Mana", + "url": "https://github.com/mizunashi-mana" + }, + { + "name": "Jeffery Grajkowski", + "url": "https://github.com/pushplay" + }, + { + "name": "Jeff Kenney", + "url": "https://github.com/jeffkenney" + }, + { + "name": "Jimi", + "url": "Dimitris" + }, + { + "name": "Steffen Viken Valvåg", + "url": "https://github.com/steffenvv" + }, + { + "name": "Emily Marigold Klassen", + "url": "https://github.com/forivall" + } + ], + "dependencies": {}, + "description": "TypeScript definitions for yargs", + "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme", + "license": "MIT", + "main": "", + "name": "@types/yargs", + "repository": { + "type": "git", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git", + "directory": "types/yargs" + }, + "scripts": {}, + "typeScriptVersion": "3.0", + "types": "index", + "typesPublisherContentHash": "797da61a576678d4a7247c12796a39175a72c67c12a6b2e34a47306ad6c42cdf", + "version": "12.0.12" +} diff --git a/node_modules/abab/package.json b/node_modules/abab/package.json new file mode 100644 index 000000000..2644e1ccf --- /dev/null +++ b/node_modules/abab/package.json @@ -0,0 +1,74 @@ +{ + "_args": [ + [ + "abab@2.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "abab@2.0.0", + "_id": "abab@2.0.0", + "_inBundle": false, + "_integrity": "sha512-sY5AXXVZv4Y1VACTtR11UJCPHHudgY5i26Qj5TypE6DKlIApbwb5uqhXcJ5UUGbvZNRh7EeIoW+LrJumBsKp7w==", + "_location": "/abab", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "abab@2.0.0", + "name": "abab", + "escapedName": "abab", + "rawSpec": "2.0.0", + "saveSpec": null, + "fetchSpec": "2.0.0" + }, + "_requiredBy": [ + "/data-urls", + "/jsdom" + ], + "_resolved": "https://registry.npmjs.org/abab/-/abab-2.0.0.tgz", + "_spec": "2.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jeff Carpenter", + "email": "gcarpenterv@gmail.com" + }, + "bugs": { + "url": "https://github.com/jsdom/abab/issues" + }, + "description": "WHATWG spec-compliant implementations of window.atob and window.btoa.", + "devDependencies": { + "eslint": "^4.19.1", + "karma": "^2.0.0", + "karma-cli": "^1.0.1", + "karma-firefox-launcher": "^1.1.0", + "karma-mocha": "^1.3.0", + "karma-webpack": "^3.0.0", + "mocha": "^5.1.0", + "webpack": "^4.5.0" + }, + "files": [ + "index.js", + "lib/" + ], + "homepage": "https://github.com/jsdom/abab#readme", + "keywords": [ + "atob", + "btoa", + "browser" + ], + "license": "SEE LICENSE IN LICENSE.md", + "main": "index.js", + "name": "abab", + "repository": { + "type": "git", + "url": "git+https://github.com/jsdom/abab.git" + }, + "scripts": { + "karma": "karma start", + "lint": "eslint .", + "mocha": "mocha test/node", + "test": "npm run lint && npm run mocha && npm run karma" + }, + "version": "2.0.0" +} diff --git a/node_modules/acorn-globals/node_modules/acorn/package.json b/node_modules/acorn-globals/node_modules/acorn/package.json new file mode 100644 index 000000000..ff0e22145 --- /dev/null +++ b/node_modules/acorn-globals/node_modules/acorn/package.json @@ -0,0 +1,70 @@ +{ + "_args": [ + [ + "acorn@6.2.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "acorn@6.2.1", + "_id": "acorn@6.2.1", + "_inBundle": false, + "_integrity": "sha512-JD0xT5FCRDNyjDda3Lrg/IxFscp9q4tiYtxE1/nOzlKCk7hIRuYjhq1kCNkbPjMRMZuFq20HNQn1I9k8Oj0E+Q==", + "_location": "/acorn-globals/acorn", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "acorn@6.2.1", + "name": "acorn", + "escapedName": "acorn", + "rawSpec": "6.2.1", + "saveSpec": null, + "fetchSpec": "6.2.1" + }, + "_requiredBy": [ + "/acorn-globals" + ], + "_resolved": "https://registry.npmjs.org/acorn/-/acorn-6.2.1.tgz", + "_spec": "6.2.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bin": { + "acorn": "./bin/acorn" + }, + "bugs": { + "url": "https://github.com/acornjs/acorn/issues" + }, + "description": "ECMAScript parser", + "engines": { + "node": ">=0.4.0" + }, + "homepage": "https://github.com/acornjs/acorn", + "license": "MIT", + "main": "dist/acorn.js", + "maintainers": [ + { + "name": "Marijn Haverbeke", + "email": "marijnh@gmail.com", + "url": "https://marijnhaverbeke.nl" + }, + { + "name": "Ingvar Stepanyan", + "email": "me@rreverser.com", + "url": "https://rreverser.com/" + }, + { + "name": "Adrian Heine", + "url": "http://adrianheine.de" + } + ], + "module": "dist/acorn.mjs", + "name": "acorn", + "repository": { + "type": "git", + "url": "git+https://github.com/acornjs/acorn.git" + }, + "scripts": { + "prepare": "cd ..; npm run build:main && npm run build:bin" + }, + "version": "6.2.1" +} diff --git a/node_modules/acorn-globals/package.json b/node_modules/acorn-globals/package.json new file mode 100644 index 000000000..965697964 --- /dev/null +++ b/node_modules/acorn-globals/package.json @@ -0,0 +1,70 @@ +{ + "_args": [ + [ + "acorn-globals@4.3.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "acorn-globals@4.3.2", + "_id": "acorn-globals@4.3.2", + "_inBundle": false, + "_integrity": "sha512-BbzvZhVtZP+Bs1J1HcwrQe8ycfO0wStkSGxuul3He3GkHOIZ6eTqOkPuw9IP1X3+IkOo4wiJmwkobzXYz4wewQ==", + "_location": "/acorn-globals", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "acorn-globals@4.3.2", + "name": "acorn-globals", + "escapedName": "acorn-globals", + "rawSpec": "4.3.2", + "saveSpec": null, + "fetchSpec": "4.3.2" + }, + "_requiredBy": [ + "/jsdom" + ], + "_resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-4.3.2.tgz", + "_spec": "4.3.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "ForbesLindesay" + }, + "bugs": { + "url": "https://github.com/ForbesLindesay/acorn-globals/issues" + }, + "dependencies": { + "acorn": "^6.0.1", + "acorn-walk": "^6.0.1" + }, + "description": "Detect global variables in JavaScript using acorn", + "devDependencies": { + "testit": "^3.0.0" + }, + "files": [ + "index.js", + "LICENSE" + ], + "homepage": "https://github.com/ForbesLindesay/acorn-globals#readme", + "keywords": [ + "ast", + "variable", + "name", + "lexical", + "scope", + "local", + "global", + "implicit" + ], + "license": "MIT", + "name": "acorn-globals", + "repository": { + "type": "git", + "url": "git+https://github.com/ForbesLindesay/acorn-globals.git" + }, + "scripts": { + "test": "node test" + }, + "version": "4.3.2" +} diff --git a/node_modules/acorn-walk/package.json b/node_modules/acorn-walk/package.json new file mode 100644 index 000000000..c5db212d1 --- /dev/null +++ b/node_modules/acorn-walk/package.json @@ -0,0 +1,67 @@ +{ + "_args": [ + [ + "acorn-walk@6.2.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "acorn-walk@6.2.0", + "_id": "acorn-walk@6.2.0", + "_inBundle": false, + "_integrity": "sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA==", + "_location": "/acorn-walk", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "acorn-walk@6.2.0", + "name": "acorn-walk", + "escapedName": "acorn-walk", + "rawSpec": "6.2.0", + "saveSpec": null, + "fetchSpec": "6.2.0" + }, + "_requiredBy": [ + "/acorn-globals" + ], + "_resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-6.2.0.tgz", + "_spec": "6.2.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/acornjs/acorn/issues" + }, + "description": "ECMAScript (ESTree) AST walker", + "engines": { + "node": ">=0.4.0" + }, + "homepage": "https://github.com/acornjs/acorn", + "license": "MIT", + "main": "dist/walk.js", + "maintainers": [ + { + "name": "Marijn Haverbeke", + "email": "marijnh@gmail.com", + "url": "https://marijnhaverbeke.nl" + }, + { + "name": "Ingvar Stepanyan", + "email": "me@rreverser.com", + "url": "https://rreverser.com/" + }, + { + "name": "Adrian Heine", + "url": "http://adrianheine.de" + } + ], + "module": "dist/walk.mjs", + "name": "acorn-walk", + "repository": { + "type": "git", + "url": "git+https://github.com/acornjs/acorn.git" + }, + "scripts": { + "prepare": "cd ..; npm run build:walk" + }, + "version": "6.2.0" +} diff --git a/node_modules/acorn/package.json b/node_modules/acorn/package.json new file mode 100644 index 000000000..6bffe5f12 --- /dev/null +++ b/node_modules/acorn/package.json @@ -0,0 +1,328 @@ +{ + "_args": [ + [ + "acorn@5.7.3", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "acorn@5.7.3", + "_id": "acorn@5.7.3", + "_inBundle": false, + "_integrity": "sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw==", + "_location": "/acorn", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "acorn@5.7.3", + "name": "acorn", + "escapedName": "acorn", + "rawSpec": "5.7.3", + "saveSpec": null, + "fetchSpec": "5.7.3" + }, + "_requiredBy": [ + "/jsdom" + ], + "_resolved": "https://registry.npmjs.org/acorn/-/acorn-5.7.3.tgz", + "_spec": "5.7.3", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bin": { + "acorn": "./bin/acorn" + }, + "bugs": { + "url": "https://github.com/acornjs/acorn/issues" + }, + "contributors": [ + { + "name": "List of Acorn contributors. Updated before every release." + }, + { + "name": "Adrian Heine" + }, + { + "name": "Adrian Rakovsky" + }, + { + "name": "Alistair Braidwood" + }, + { + "name": "Amila Welihinda" + }, + { + "name": "Andres Suarez" + }, + { + "name": "Angelo" + }, + { + "name": "Aparajita Fishman" + }, + { + "name": "Arian Stolwijk" + }, + { + "name": "Artem Govorov" + }, + { + "name": "Boopesh Mahendran" + }, + { + "name": "Bradley Heinz" + }, + { + "name": "Brandon Mills" + }, + { + "name": "Charles Hughes" + }, + { + "name": "Charmander" + }, + { + "name": "Chris McKnight" + }, + { + "name": "Conrad Irwin" + }, + { + "name": "Daniel Tschinder" + }, + { + "name": "David Bonnet" + }, + { + "name": "Domenico Matteo" + }, + { + "name": "ehmicky" + }, + { + "name": "Eugene Obrezkov" + }, + { + "name": "Felix Maier" + }, + { + "name": "Forbes Lindesay" + }, + { + "name": "Gilad Peleg" + }, + { + "name": "impinball" + }, + { + "name": "Ingvar Stepanyan" + }, + { + "name": "Jackson Ray Hamilton" + }, + { + "name": "Jesse McCarthy" + }, + { + "name": "Jiaxing Wang" + }, + { + "name": "Joel Kemp" + }, + { + "name": "Johannes Herr" + }, + { + "name": "John-David Dalton" + }, + { + "name": "Jordan Klassen" + }, + { + "name": "Jürg Lehni" + }, + { + "name": "Kai Cataldo" + }, + { + "name": "keeyipchan" + }, + { + "name": "Keheliya Gallaba" + }, + { + "name": "Kevin Irish" + }, + { + "name": "Kevin Kwok" + }, + { + "name": "krator" + }, + { + "name": "laosb" + }, + { + "name": "luckyzeng" + }, + { + "name": "Marek" + }, + { + "name": "Marijn Haverbeke" + }, + { + "name": "Martin Carlberg" + }, + { + "name": "Mat Garcia" + }, + { + "name": "Mathias Bynens" + }, + { + "name": "Mathieu 'p01' Henri" + }, + { + "name": "Matthew Bastien" + }, + { + "name": "Max Schaefer" + }, + { + "name": "Max Zerzouri" + }, + { + "name": "Mihai Bazon" + }, + { + "name": "Mike Rennie" + }, + { + "name": "naoh" + }, + { + "name": "Nicholas C. Zakas" + }, + { + "name": "Nick Fitzgerald" + }, + { + "name": "Olivier Thomann" + }, + { + "name": "Oskar Schöldström" + }, + { + "name": "Paul Harper" + }, + { + "name": "Peter Rust" + }, + { + "name": "PlNG" + }, + { + "name": "Prayag Verma" + }, + { + "name": "ReadmeCritic" + }, + { + "name": "r-e-d" + }, + { + "name": "Renée Kooi" + }, + { + "name": "Richard Gibson" + }, + { + "name": "Rich Harris" + }, + { + "name": "Sebastian McKenzie" + }, + { + "name": "Shahar Soel" + }, + { + "name": "Sheel Bedi" + }, + { + "name": "Simen Bekkhus" + }, + { + "name": "Teddy Katz" + }, + { + "name": "Timothy Gu" + }, + { + "name": "Toru Nagashima" + }, + { + "name": "Victor Homyakov" + }, + { + "name": "Wexpo Lyu" + }, + { + "name": "zsjforcn" + } + ], + "description": "ECMAScript parser", + "devDependencies": { + "eslint": "^4.10.0", + "eslint-config-standard": "^10.2.1", + "eslint-plugin-import": "^2.2.0", + "eslint-plugin-node": "^5.2.1", + "eslint-plugin-promise": "^3.5.0", + "eslint-plugin-standard": "^3.0.1", + "rollup": "^0.45.0", + "rollup-plugin-buble": "^0.16.0", + "test262": "git+https://github.com/tc39/test262.git#3bfad28cc302fd4455badcfcbca7c5bb7ce41a72", + "test262-parser-runner": "^0.4.0", + "unicode-11.0.0": "^0.7.7" + }, + "engines": { + "node": ">=0.4.0" + }, + "homepage": "https://github.com/acornjs/acorn", + "license": "MIT", + "main": "dist/acorn.js", + "maintainers": [ + { + "name": "Marijn Haverbeke", + "email": "marijnh@gmail.com", + "url": "http://marijnhaverbeke.nl" + }, + { + "name": "Ingvar Stepanyan", + "email": "me@rreverser.com", + "url": "http://rreverser.com/" + }, + { + "name": "Adrian Heine", + "email": "http://adrianheine.de" + } + ], + "module": "dist/acorn.es.js", + "name": "acorn", + "repository": { + "type": "git", + "url": "git+https://github.com/acornjs/acorn.git" + }, + "scripts": { + "build": "npm run build:main && npm run build:walk && npm run build:loose && npm run build:bin", + "build:bin": "rollup -c rollup/config.bin.js", + "build:loose": "rollup -c rollup/config.loose.js && rollup -c rollup/config.loose_es.js", + "build:main": "rollup -c rollup/config.main.js", + "build:walk": "rollup -c rollup/config.walk.js", + "lint": "eslint src/", + "prepare": "npm run build && node test/run.js && node test/lint.js", + "pretest": "npm run build:main && npm run build:loose", + "test": "node test/run.js && node test/lint.js", + "test:test262": "node bin/run_test262.js" + }, + "version": "5.7.3" +} diff --git a/node_modules/ajv/package.json b/node_modules/ajv/package.json new file mode 100644 index 000000000..0c5bb2801 --- /dev/null +++ b/node_modules/ajv/package.json @@ -0,0 +1,129 @@ +{ + "_args": [ + [ + "ajv@6.10.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "ajv@6.10.2", + "_id": "ajv@6.10.2", + "_inBundle": false, + "_integrity": "sha512-TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw==", + "_location": "/ajv", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "ajv@6.10.2", + "name": "ajv", + "escapedName": "ajv", + "rawSpec": "6.10.2", + "saveSpec": null, + "fetchSpec": "6.10.2" + }, + "_requiredBy": [ + "/har-validator" + ], + "_resolved": "https://registry.npmjs.org/ajv/-/ajv-6.10.2.tgz", + "_spec": "6.10.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Evgeny Poberezkin" + }, + "bugs": { + "url": "https://github.com/epoberezkin/ajv/issues" + }, + "dependencies": { + "fast-deep-equal": "^2.0.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "description": "Another JSON Schema Validator", + "devDependencies": { + "ajv-async": "^1.0.0", + "bluebird": "^3.5.3", + "brfs": "^2.0.0", + "browserify": "^16.2.0", + "chai": "^4.0.1", + "coveralls": "^3.0.1", + "del-cli": "^2.0.0", + "dot": "^1.0.3", + "eslint": "^6.0.0", + "gh-pages-generator": "^0.2.3", + "glob": "^7.0.0", + "if-node-version": "^1.0.0", + "js-beautify": "^1.7.3", + "jshint": "^2.10.2", + "json-schema-test": "^2.0.0", + "karma": "^4.0.1", + "karma-chrome-launcher": "^2.2.0", + "karma-mocha": "^1.1.1", + "karma-sauce-launcher": "^2.0.0", + "mocha": "^6.0.0", + "nyc": "^14.0.0", + "pre-commit": "^1.1.1", + "require-globify": "^1.3.0", + "typescript": "^2.8.3", + "uglify-js": "^3.3.24", + "watch": "^1.0.0" + }, + "files": [ + "lib/", + "dist/", + "scripts/", + "LICENSE", + ".tonic_example.js" + ], + "homepage": "https://github.com/epoberezkin/ajv", + "keywords": [ + "JSON", + "schema", + "validator", + "validation", + "jsonschema", + "json-schema", + "json-schema-validator", + "json-schema-validation" + ], + "license": "MIT", + "main": "lib/ajv.js", + "name": "ajv", + "nyc": { + "exclude": [ + "**/spec/**", + "node_modules" + ], + "reporter": [ + "lcov", + "text-summary" + ] + }, + "repository": { + "type": "git", + "url": "git+https://github.com/epoberezkin/ajv.git" + }, + "scripts": { + "build": "del-cli lib/dotjs/*.js \"!lib/dotjs/index.js\" && node scripts/compile-dots.js", + "bundle": "del-cli dist && node ./scripts/bundle.js . Ajv pure_getters", + "bundle-beautify": "node ./scripts/bundle.js js-beautify", + "eslint": "eslint lib/{compile/,}*.js spec/{**/,}*.js scripts --ignore-pattern spec/JSON-Schema-Test-Suite", + "jshint": "jshint lib/{compile/,}*.js", + "lint": "npm run jshint && npm run eslint", + "prepublish": "npm run build && npm run bundle", + "test": "npm run lint && npm run build && npm run test-all", + "test-all": "npm run test-ts && npm run test-cov && if-node-version 10 npm run test-browser", + "test-browser": "del-cli .browser && npm run bundle && scripts/prepare-tests && npm run test-karma", + "test-cov": "nyc npm run test-spec", + "test-debug": "npm run test-spec -- --inspect-brk", + "test-fast": "AJV_FAST_TEST=true npm run test-spec", + "test-karma": "karma start", + "test-spec": "mocha spec/{**/,}*.spec.js -R spec", + "test-ts": "tsc --target ES5 --noImplicitAny --noEmit spec/typescript/index.ts", + "watch": "watch \"npm run build\" ./lib/dot" + }, + "tonicExampleFilename": ".tonic_example.js", + "typings": "lib/ajv.d.ts", + "version": "6.10.2" +} diff --git a/node_modules/ansi-escapes/package.json b/node_modules/ansi-escapes/package.json new file mode 100644 index 000000000..4ac0de927 --- /dev/null +++ b/node_modules/ansi-escapes/package.json @@ -0,0 +1,87 @@ +{ + "_args": [ + [ + "ansi-escapes@3.2.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "ansi-escapes@3.2.0", + "_id": "ansi-escapes@3.2.0", + "_inBundle": false, + "_integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==", + "_location": "/ansi-escapes", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "ansi-escapes@3.2.0", + "name": "ansi-escapes", + "escapedName": "ansi-escapes", + "rawSpec": "3.2.0", + "saveSpec": null, + "fetchSpec": "3.2.0" + }, + "_requiredBy": [ + "/@jest/core", + "/jest-watcher" + ], + "_resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", + "_spec": "3.2.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/ansi-escapes/issues" + }, + "description": "ANSI escape codes for manipulating the terminal", + "devDependencies": { + "ava": "*", + "xo": "*" + }, + "engines": { + "node": ">=4" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/ansi-escapes#readme", + "keywords": [ + "ansi", + "terminal", + "console", + "cli", + "string", + "tty", + "escape", + "escapes", + "formatting", + "shell", + "xterm", + "log", + "logging", + "command-line", + "text", + "vt100", + "sequence", + "control", + "code", + "codes", + "cursor", + "iterm", + "iterm2" + ], + "license": "MIT", + "name": "ansi-escapes", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/ansi-escapes.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "3.2.0" +} diff --git a/node_modules/ansi-regex/package.json b/node_modules/ansi-regex/package.json new file mode 100644 index 000000000..5dc57ab0b --- /dev/null +++ b/node_modules/ansi-regex/package.json @@ -0,0 +1,90 @@ +{ + "_args": [ + [ + "ansi-regex@4.1.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "ansi-regex@4.1.0", + "_id": "ansi-regex@4.1.0", + "_inBundle": false, + "_integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "_location": "/ansi-regex", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "ansi-regex@4.1.0", + "name": "ansi-regex", + "escapedName": "ansi-regex", + "rawSpec": "4.1.0", + "saveSpec": null, + "fetchSpec": "4.1.0" + }, + "_requiredBy": [ + "/pretty-format", + "/strip-ansi" + ], + "_resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "_spec": "4.1.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/chalk/ansi-regex/issues" + }, + "description": "Regular expression for matching ANSI escape codes", + "devDependencies": { + "ava": "^0.25.0", + "xo": "^0.23.0" + }, + "engines": { + "node": ">=6" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/chalk/ansi-regex#readme", + "keywords": [ + "ansi", + "styles", + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "string", + "tty", + "escape", + "formatting", + "rgb", + "256", + "shell", + "xterm", + "command-line", + "text", + "regex", + "regexp", + "re", + "match", + "test", + "find", + "pattern" + ], + "license": "MIT", + "name": "ansi-regex", + "repository": { + "type": "git", + "url": "git+https://github.com/chalk/ansi-regex.git" + }, + "scripts": { + "test": "xo && ava", + "view-supported": "node fixtures/view-codes.js" + }, + "version": "4.1.0" +} diff --git a/node_modules/ansi-styles/package.json b/node_modules/ansi-styles/package.json new file mode 100644 index 000000000..ba0ea6d55 --- /dev/null +++ b/node_modules/ansi-styles/package.json @@ -0,0 +1,94 @@ +{ + "_args": [ + [ + "ansi-styles@3.2.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "ansi-styles@3.2.1", + "_id": "ansi-styles@3.2.1", + "_inBundle": false, + "_integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "_location": "/ansi-styles", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "ansi-styles@3.2.1", + "name": "ansi-styles", + "escapedName": "ansi-styles", + "rawSpec": "3.2.1", + "saveSpec": null, + "fetchSpec": "3.2.1" + }, + "_requiredBy": [ + "/chalk", + "/expect", + "/pretty-format" + ], + "_resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "_spec": "3.2.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "ava": { + "require": "babel-polyfill" + }, + "bugs": { + "url": "https://github.com/chalk/ansi-styles/issues" + }, + "dependencies": { + "color-convert": "^1.9.0" + }, + "description": "ANSI escape codes for styling strings in the terminal", + "devDependencies": { + "ava": "*", + "babel-polyfill": "^6.23.0", + "svg-term-cli": "^2.1.1", + "xo": "*" + }, + "engines": { + "node": ">=4" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/chalk/ansi-styles#readme", + "keywords": [ + "ansi", + "styles", + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "string", + "tty", + "escape", + "formatting", + "rgb", + "256", + "shell", + "xterm", + "log", + "logging", + "command-line", + "text" + ], + "license": "MIT", + "name": "ansi-styles", + "repository": { + "type": "git", + "url": "git+https://github.com/chalk/ansi-styles.git" + }, + "scripts": { + "screenshot": "svg-term --command='node screenshot' --out=screenshot.svg --padding=3 --width=55 --height=3 --at=1000 --no-cursor", + "test": "xo && ava" + }, + "version": "3.2.1" +} diff --git a/node_modules/anymatch/package.json b/node_modules/anymatch/package.json new file mode 100644 index 000000000..937859eda --- /dev/null +++ b/node_modules/anymatch/package.json @@ -0,0 +1,77 @@ +{ + "_args": [ + [ + "anymatch@2.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "anymatch@2.0.0", + "_id": "anymatch@2.0.0", + "_inBundle": false, + "_integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "_location": "/anymatch", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "anymatch@2.0.0", + "name": "anymatch", + "escapedName": "anymatch", + "rawSpec": "2.0.0", + "saveSpec": null, + "fetchSpec": "2.0.0" + }, + "_requiredBy": [ + "/jest-haste-map", + "/sane" + ], + "_resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "_spec": "2.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Elan Shanker", + "url": "http://github.com/es128" + }, + "bugs": { + "url": "https://github.com/micromatch/anymatch/issues" + }, + "dependencies": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + }, + "description": "Matches strings against configurable strings, globs, regular expressions, and/or functions", + "devDependencies": { + "coveralls": "^2.7.0", + "istanbul": "^0.4.5", + "mocha": "^3.0.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/micromatch/anymatch", + "keywords": [ + "match", + "any", + "string", + "file", + "fs", + "list", + "glob", + "regex", + "regexp", + "regular", + "expression", + "function" + ], + "license": "ISC", + "name": "anymatch", + "repository": { + "type": "git", + "url": "git+https://github.com/micromatch/anymatch.git" + }, + "scripts": { + "test": "istanbul cover _mocha && cat ./coverage/lcov.info | coveralls" + }, + "version": "2.0.0" +} diff --git a/node_modules/argparse/package.json b/node_modules/argparse/package.json new file mode 100644 index 000000000..3cd2451c4 --- /dev/null +++ b/node_modules/argparse/package.json @@ -0,0 +1,74 @@ +{ + "_args": [ + [ + "argparse@1.0.10", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "argparse@1.0.10", + "_id": "argparse@1.0.10", + "_inBundle": false, + "_integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "_location": "/argparse", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "argparse@1.0.10", + "name": "argparse", + "escapedName": "argparse", + "rawSpec": "1.0.10", + "saveSpec": null, + "fetchSpec": "1.0.10" + }, + "_requiredBy": [ + "/js-yaml" + ], + "_resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "_spec": "1.0.10", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/nodeca/argparse/issues" + }, + "contributors": [ + { + "name": "Eugene Shkuropat" + }, + { + "name": "Paul Jacobson" + } + ], + "dependencies": { + "sprintf-js": "~1.0.2" + }, + "description": "Very powerful CLI arguments parser. Native port of argparse - python's options parsing library", + "devDependencies": { + "eslint": "^2.13.1", + "istanbul": "^0.4.5", + "mocha": "^3.1.0", + "ndoc": "^5.0.1" + }, + "files": [ + "index.js", + "lib/" + ], + "homepage": "https://github.com/nodeca/argparse#readme", + "keywords": [ + "cli", + "parser", + "argparse", + "option", + "args" + ], + "license": "MIT", + "name": "argparse", + "repository": { + "type": "git", + "url": "git+https://github.com/nodeca/argparse.git" + }, + "scripts": { + "test": "make test" + }, + "version": "1.0.10" +} diff --git a/node_modules/arr-diff/package.json b/node_modules/arr-diff/package.json new file mode 100644 index 000000000..cb9ef787e --- /dev/null +++ b/node_modules/arr-diff/package.json @@ -0,0 +1,113 @@ +{ + "_args": [ + [ + "arr-diff@4.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "arr-diff@4.0.0", + "_id": "arr-diff@4.0.0", + "_inBundle": false, + "_integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", + "_location": "/arr-diff", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "arr-diff@4.0.0", + "name": "arr-diff", + "escapedName": "arr-diff", + "rawSpec": "4.0.0", + "saveSpec": null, + "fetchSpec": "4.0.0" + }, + "_requiredBy": [ + "/micromatch", + "/nanomatch" + ], + "_resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "_spec": "4.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/arr-diff/issues" + }, + "contributors": [ + { + "name": "Jon Schlinkert", + "email": "jon.schlinkert@sellside.com", + "url": "http://twitter.com/jonschlinkert" + }, + { + "name": "Paul Miller", + "email": "paul+gh@paulmillr.com", + "url": "paulmillr.com" + } + ], + "dependencies": {}, + "description": "Returns an array with only the unique values from the first array, by excluding all values from additional arrays using strict equality for comparisons.", + "devDependencies": { + "ansi-bold": "^0.1.1", + "arr-flatten": "^1.0.1", + "array-differ": "^1.0.0", + "benchmarked": "^0.2.4", + "gulp-format-md": "^0.1.9", + "minimist": "^1.2.0", + "mocha": "^2.4.5" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/arr-diff", + "keywords": [ + "arr", + "array", + "array differ", + "array-differ", + "diff", + "differ", + "difference" + ], + "license": "MIT", + "main": "index.js", + "name": "arr-diff", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/arr-diff.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "related": { + "list": [ + "arr-flatten", + "array-filter", + "array-intersection" + ] + }, + "reflinks": [ + "array-differ", + "verb" + ], + "lint": { + "reflinks": true + } + }, + "version": "4.0.0" +} diff --git a/node_modules/arr-flatten/package.json b/node_modules/arr-flatten/package.json new file mode 100644 index 000000000..b12356127 --- /dev/null +++ b/node_modules/arr-flatten/package.json @@ -0,0 +1,117 @@ +{ + "_args": [ + [ + "arr-flatten@1.1.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "arr-flatten@1.1.0", + "_id": "arr-flatten@1.1.0", + "_inBundle": false, + "_integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", + "_location": "/arr-flatten", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "arr-flatten@1.1.0", + "name": "arr-flatten", + "escapedName": "arr-flatten", + "rawSpec": "1.1.0", + "saveSpec": null, + "fetchSpec": "1.1.0" + }, + "_requiredBy": [ + "/braces" + ], + "_resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "_spec": "1.1.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/arr-flatten/issues" + }, + "contributors": [ + { + "name": "Jon Schlinkert", + "url": "http://twitter.com/jonschlinkert" + }, + { + "name": "Luke Edwards", + "url": "https://lukeed.com" + } + ], + "description": "Recursively flatten an array or arrays.", + "devDependencies": { + "ansi-bold": "^0.1.1", + "array-flatten": "^2.1.1", + "array-slice": "^1.0.0", + "benchmarked": "^1.0.0", + "compute-flatten": "^1.0.0", + "flatit": "^1.1.1", + "flatten": "^1.0.2", + "flatten-array": "^1.0.0", + "glob": "^7.1.1", + "gulp-format-md": "^0.1.12", + "just-flatten-it": "^1.1.23", + "lodash.flattendeep": "^4.4.0", + "m_flattened": "^1.0.1", + "mocha": "^3.2.0", + "utils-flatten": "^1.0.0", + "write": "^0.3.3" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/arr-flatten", + "keywords": [ + "arr", + "array", + "elements", + "flat", + "flatten", + "nested", + "recurse", + "recursive", + "recursively" + ], + "license": "MIT", + "main": "index.js", + "name": "arr-flatten", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/arr-flatten.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "related": { + "list": [ + "arr-filter", + "arr-union", + "array-each", + "array-unique" + ] + }, + "lint": { + "reflinks": true + } + }, + "version": "1.1.0" +} diff --git a/node_modules/arr-union/package.json b/node_modules/arr-union/package.json new file mode 100644 index 000000000..eca59593a --- /dev/null +++ b/node_modules/arr-union/package.json @@ -0,0 +1,112 @@ +{ + "_args": [ + [ + "arr-union@3.1.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "arr-union@3.1.0", + "_id": "arr-union@3.1.0", + "_inBundle": false, + "_integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=", + "_location": "/arr-union", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "arr-union@3.1.0", + "name": "arr-union", + "escapedName": "arr-union", + "rawSpec": "3.1.0", + "saveSpec": null, + "fetchSpec": "3.1.0" + }, + "_requiredBy": [ + "/class-utils", + "/union-value" + ], + "_resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "_spec": "3.1.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/arr-union/issues" + }, + "description": "Combines a list of arrays, returning a single array with unique values, using strict equality for comparisons.", + "devDependencies": { + "ansi-bold": "^0.1.1", + "array-union": "^1.0.1", + "array-unique": "^0.2.1", + "benchmarked": "^0.1.4", + "gulp-format-md": "^0.1.7", + "minimist": "^1.1.1", + "mocha": "*", + "should": "*" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/arr-union", + "keywords": [ + "add", + "append", + "array", + "arrays", + "combine", + "concat", + "extend", + "union", + "uniq", + "unique", + "util", + "utility", + "utils" + ], + "license": "MIT", + "main": "index.js", + "name": "arr-union", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/arr-union.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "run": true, + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "related": { + "list": [ + "arr-diff", + "arr-flatten", + "arr-filter", + "arr-map", + "arr-pluck", + "arr-reduce", + "array-unique" + ] + }, + "reflinks": [ + "verb", + "array-union" + ], + "lint": { + "reflinks": true + } + }, + "version": "3.1.0" +} diff --git a/node_modules/array-equal/package.json b/node_modules/array-equal/package.json new file mode 100644 index 000000000..57dcc6429 --- /dev/null +++ b/node_modules/array-equal/package.json @@ -0,0 +1,48 @@ +{ + "_args": [ + [ + "array-equal@1.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "array-equal@1.0.0", + "_id": "array-equal@1.0.0", + "_inBundle": false, + "_integrity": "sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM=", + "_location": "/array-equal", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "array-equal@1.0.0", + "name": "array-equal", + "escapedName": "array-equal", + "rawSpec": "1.0.0", + "saveSpec": null, + "fetchSpec": "1.0.0" + }, + "_requiredBy": [ + "/jsdom" + ], + "_resolved": "https://registry.npmjs.org/array-equal/-/array-equal-1.0.0.tgz", + "_spec": "1.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jonathan Ong", + "email": "me@jongleberry.com", + "url": "http://jongleberry.com" + }, + "bugs": { + "url": "https://github.com/component/array-equal/issues" + }, + "description": "check if two arrays are equal", + "homepage": "https://github.com/component/array-equal#readme", + "license": "MIT", + "name": "array-equal", + "repository": { + "type": "git", + "url": "git+https://github.com/component/array-equal.git" + }, + "version": "1.0.0" +} diff --git a/node_modules/array-unique/package.json b/node_modules/array-unique/package.json new file mode 100644 index 000000000..15843e625 --- /dev/null +++ b/node_modules/array-unique/package.json @@ -0,0 +1,100 @@ +{ + "_args": [ + [ + "array-unique@0.3.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "array-unique@0.3.2", + "_id": "array-unique@0.3.2", + "_inBundle": false, + "_integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", + "_location": "/array-unique", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "array-unique@0.3.2", + "name": "array-unique", + "escapedName": "array-unique", + "rawSpec": "0.3.2", + "saveSpec": null, + "fetchSpec": "0.3.2" + }, + "_requiredBy": [ + "/braces", + "/extglob", + "/micromatch", + "/nanomatch" + ], + "_resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "_spec": "0.3.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/array-unique/issues" + }, + "description": "Remove duplicate values from an array. Fastest ES5 implementation.", + "devDependencies": { + "array-uniq": "^1.0.2", + "benchmarked": "^0.1.3", + "gulp-format-md": "^0.1.9", + "mocha": "^2.5.3", + "should": "^10.0.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js", + "LICENSE", + "README.md" + ], + "homepage": "https://github.com/jonschlinkert/array-unique", + "keywords": [ + "array", + "unique" + ], + "license": "MIT", + "main": "index.js", + "name": "array-unique", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/array-unique.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "related": { + "list": [ + "arr-diff", + "arr-union", + "arr-flatten", + "arr-reduce", + "arr-map", + "arr-pluck" + ] + }, + "reflinks": [ + "verb", + "verb-generate-readme" + ], + "lint": { + "reflinks": true + } + }, + "version": "0.3.2" +} diff --git a/node_modules/asn1/package.json b/node_modules/asn1/package.json new file mode 100644 index 000000000..a27f2bfc3 --- /dev/null +++ b/node_modules/asn1/package.json @@ -0,0 +1,79 @@ +{ + "_args": [ + [ + "asn1@0.2.4", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "asn1@0.2.4", + "_id": "asn1@0.2.4", + "_inBundle": false, + "_integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", + "_location": "/asn1", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "asn1@0.2.4", + "name": "asn1", + "escapedName": "asn1", + "rawSpec": "0.2.4", + "saveSpec": null, + "fetchSpec": "0.2.4" + }, + "_requiredBy": [ + "/sshpk" + ], + "_resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", + "_spec": "0.2.4", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Joyent", + "url": "joyent.com" + }, + "bugs": { + "url": "https://github.com/joyent/node-asn1/issues" + }, + "contributors": [ + { + "name": "Mark Cavage", + "email": "mcavage@gmail.com" + }, + { + "name": "David Gwynne", + "email": "loki@animata.net" + }, + { + "name": "Yunong Xiao", + "email": "yunong@joyent.com" + }, + { + "name": "Alex Wilson", + "email": "alex.wilson@joyent.com" + } + ], + "dependencies": { + "safer-buffer": "~2.1.0" + }, + "description": "Contains parsers and serializers for ASN.1 (currently BER only)", + "devDependencies": { + "eslint": "2.13.1", + "eslint-plugin-joyent": "~1.3.0", + "faucet": "0.0.1", + "istanbul": "^0.3.6", + "tape": "^3.5.0" + }, + "homepage": "https://github.com/joyent/node-asn1#readme", + "license": "MIT", + "main": "lib/index.js", + "name": "asn1", + "repository": { + "type": "git", + "url": "git://github.com/joyent/node-asn1.git" + }, + "scripts": { + "test": "tape ./test/ber/*.test.js" + }, + "version": "0.2.4" +} diff --git a/node_modules/assert-plus/package.json b/node_modules/assert-plus/package.json new file mode 100644 index 000000000..f35b757fc --- /dev/null +++ b/node_modules/assert-plus/package.json @@ -0,0 +1,91 @@ +{ + "_args": [ + [ + "assert-plus@1.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "assert-plus@1.0.0", + "_id": "assert-plus@1.0.0", + "_inBundle": false, + "_integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", + "_location": "/assert-plus", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "assert-plus@1.0.0", + "name": "assert-plus", + "escapedName": "assert-plus", + "rawSpec": "1.0.0", + "saveSpec": null, + "fetchSpec": "1.0.0" + }, + "_requiredBy": [ + "/dashdash", + "/getpass", + "/http-signature", + "/jsprim", + "/sshpk", + "/verror" + ], + "_resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "_spec": "1.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Mark Cavage", + "email": "mcavage@gmail.com" + }, + "bugs": { + "url": "https://github.com/mcavage/node-assert-plus/issues" + }, + "contributors": [ + { + "name": "Dave Eddy", + "email": "dave@daveeddy.com" + }, + { + "name": "Fred Kuo", + "email": "fred.kuo@joyent.com" + }, + { + "name": "Lars-Magnus Skog", + "email": "ralphtheninja@riseup.net" + }, + { + "name": "Mark Cavage", + "email": "mcavage@gmail.com" + }, + { + "name": "Patrick Mooney", + "email": "pmooney@pfmooney.com" + }, + { + "name": "Rob Gulewich", + "email": "robert.gulewich@joyent.com" + } + ], + "dependencies": {}, + "description": "Extra assertions on top of node's assert module", + "devDependencies": { + "faucet": "0.0.1", + "tape": "4.2.2" + }, + "engines": { + "node": ">=0.8" + }, + "homepage": "https://github.com/mcavage/node-assert-plus#readme", + "license": "MIT", + "main": "./assert.js", + "name": "assert-plus", + "optionalDependencies": {}, + "repository": { + "type": "git", + "url": "git+https://github.com/mcavage/node-assert-plus.git" + }, + "scripts": { + "test": "tape tests/*.js | ./node_modules/.bin/faucet" + }, + "version": "1.0.0" +} diff --git a/node_modules/assign-symbols/package.json b/node_modules/assign-symbols/package.json new file mode 100644 index 000000000..15b995035 --- /dev/null +++ b/node_modules/assign-symbols/package.json @@ -0,0 +1,75 @@ +{ + "_args": [ + [ + "assign-symbols@1.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "assign-symbols@1.0.0", + "_id": "assign-symbols@1.0.0", + "_inBundle": false, + "_integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=", + "_location": "/assign-symbols", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "assign-symbols@1.0.0", + "name": "assign-symbols", + "escapedName": "assign-symbols", + "rawSpec": "1.0.0", + "saveSpec": null, + "fetchSpec": "1.0.0" + }, + "_requiredBy": [ + "/extend-shallow" + ], + "_resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "_spec": "1.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/assign-symbols/issues" + }, + "description": "Assign the enumerable es6 Symbol properties from an object (or objects) to the first object passed on the arguments. Can be used as a supplement to other extend, assign or merge methods as a polyfill for the Symbols part of the es6 Object.assign method.", + "devDependencies": { + "mocha": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/assign-symbols", + "keywords": [ + "assign", + "symbols" + ], + "license": "MIT", + "main": "index.js", + "name": "assign-symbols", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/assign-symbols.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "related": { + "list": [ + "assign-deep", + "mixin-deep", + "merge-deep", + "extend-shallow", + "clone-deep" + ] + } + }, + "version": "1.0.0" +} diff --git a/node_modules/astral-regex/package.json b/node_modules/astral-regex/package.json new file mode 100644 index 000000000..5e74a3402 --- /dev/null +++ b/node_modules/astral-regex/package.json @@ -0,0 +1,68 @@ +{ + "_args": [ + [ + "astral-regex@1.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "astral-regex@1.0.0", + "_id": "astral-regex@1.0.0", + "_inBundle": false, + "_integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==", + "_location": "/astral-regex", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "astral-regex@1.0.0", + "name": "astral-regex", + "escapedName": "astral-regex", + "rawSpec": "1.0.0", + "saveSpec": null, + "fetchSpec": "1.0.0" + }, + "_requiredBy": [ + "/string-length" + ], + "_resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz", + "_spec": "1.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Kevin Mårtensson", + "email": "kevinmartensson@gmail.com", + "url": "github.com/kevva" + }, + "bugs": { + "url": "https://github.com/kevva/astral-regex/issues" + }, + "dependencies": {}, + "description": "Regular expression for matching astral symbols", + "devDependencies": { + "ava": "*", + "xo": "*" + }, + "engines": { + "node": ">=4" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/kevva/astral-regex#readme", + "keywords": [ + "astral", + "emoji", + "regex", + "surrogate" + ], + "license": "MIT", + "name": "astral-regex", + "repository": { + "type": "git", + "url": "git+https://github.com/kevva/astral-regex.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "1.0.0" +} diff --git a/node_modules/async-limiter/package.json b/node_modules/async-limiter/package.json new file mode 100644 index 000000000..dcf033a5b --- /dev/null +++ b/node_modules/async-limiter/package.json @@ -0,0 +1,73 @@ +{ + "_args": [ + [ + "async-limiter@1.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "async-limiter@1.0.0", + "_id": "async-limiter@1.0.0", + "_inBundle": false, + "_integrity": "sha512-jp/uFnooOiO+L211eZOoSyzpOITMXx1rBITauYykG3BRYPu8h0UcxsPNB04RR5vo4Tyz3+ay17tR6JVf9qzYWg==", + "_location": "/async-limiter", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "async-limiter@1.0.0", + "name": "async-limiter", + "escapedName": "async-limiter", + "rawSpec": "1.0.0", + "saveSpec": null, + "fetchSpec": "1.0.0" + }, + "_requiredBy": [ + "/ws" + ], + "_resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.0.tgz", + "_spec": "1.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Samuel Reed" + }, + "bugs": { + "url": "https://github.com/strml/async-limiter/issues" + }, + "dependencies": {}, + "description": "asynchronous function queue with adjustable concurrency", + "devDependencies": { + "coveralls": "^2.11.2", + "eslint": "^4.6.1", + "eslint-plugin-mocha": "^4.11.0", + "intelli-espower-loader": "^1.0.1", + "istanbul": "^0.3.2", + "mocha": "^3.5.2", + "power-assert": "^1.4.4" + }, + "homepage": "https://github.com/strml/async-limiter#readme", + "keywords": [ + "throttle", + "async", + "limiter", + "asynchronous", + "job", + "task", + "concurrency", + "concurrent" + ], + "license": "MIT", + "name": "async-limiter", + "repository": { + "type": "git", + "url": "git+https://github.com/strml/async-limiter.git" + }, + "scripts": { + "coverage": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls", + "example": "node example", + "lint": "eslint .", + "test": "mocha --R intelli-espower-loader test/", + "travis": "npm run lint && npm run coverage" + }, + "version": "1.0.0" +} diff --git a/node_modules/asynckit/package.json b/node_modules/asynckit/package.json new file mode 100644 index 000000000..59c930791 --- /dev/null +++ b/node_modules/asynckit/package.json @@ -0,0 +1,95 @@ +{ + "_args": [ + [ + "asynckit@0.4.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "asynckit@0.4.0", + "_id": "asynckit@0.4.0", + "_inBundle": false, + "_integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=", + "_location": "/asynckit", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "asynckit@0.4.0", + "name": "asynckit", + "escapedName": "asynckit", + "rawSpec": "0.4.0", + "saveSpec": null, + "fetchSpec": "0.4.0" + }, + "_requiredBy": [ + "/form-data" + ], + "_resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "_spec": "0.4.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Alex Indigo", + "email": "iam@alexindigo.com" + }, + "bugs": { + "url": "https://github.com/alexindigo/asynckit/issues" + }, + "dependencies": {}, + "description": "Minimal async jobs utility library, with streams support", + "devDependencies": { + "browserify": "^13.0.0", + "browserify-istanbul": "^2.0.0", + "coveralls": "^2.11.9", + "eslint": "^2.9.0", + "istanbul": "^0.4.3", + "obake": "^0.1.2", + "phantomjs-prebuilt": "^2.1.7", + "pre-commit": "^1.1.3", + "reamde": "^1.1.0", + "rimraf": "^2.5.2", + "size-table": "^0.2.0", + "tap-spec": "^4.1.1", + "tape": "^4.5.1" + }, + "homepage": "https://github.com/alexindigo/asynckit#readme", + "keywords": [ + "async", + "jobs", + "parallel", + "serial", + "iterator", + "array", + "object", + "stream", + "destroy", + "terminate", + "abort" + ], + "license": "MIT", + "main": "index.js", + "name": "asynckit", + "pre-commit": [ + "clean", + "lint", + "test", + "browser", + "report", + "size" + ], + "repository": { + "type": "git", + "url": "git+https://github.com/alexindigo/asynckit.git" + }, + "scripts": { + "browser": "browserify -t browserify-istanbul test/lib/browserify_adjustment.js test/test-*.js | obake --coverage | tap-spec", + "clean": "rimraf coverage", + "debug": "tape test/test-*.js", + "lint": "eslint *.js lib/*.js test/*.js", + "report": "istanbul report", + "size": "browserify index.js | size-table asynckit", + "test": "istanbul cover --reporter=json tape -- 'test/test-*.js' | tap-spec", + "win-test": "tape test/test-*.js" + }, + "version": "0.4.0" +} diff --git a/node_modules/atob/package.json b/node_modules/atob/package.json new file mode 100644 index 000000000..57b05aa35 --- /dev/null +++ b/node_modules/atob/package.json @@ -0,0 +1,57 @@ +{ + "_args": [ + [ + "atob@2.1.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "atob@2.1.2", + "_id": "atob@2.1.2", + "_inBundle": false, + "_integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", + "_location": "/atob", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "atob@2.1.2", + "name": "atob", + "escapedName": "atob", + "rawSpec": "2.1.2", + "saveSpec": null, + "fetchSpec": "2.1.2" + }, + "_requiredBy": [ + "/source-map-resolve" + ], + "_resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "_spec": "2.1.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com", + "url": "https://coolaj86.com" + }, + "bin": { + "atob": "bin/atob.js" + }, + "browser": "browser-atob.js", + "description": "atob for Node.JS and Linux / Mac / Windows CLI (it's a one-liner)", + "engines": { + "node": ">= 4.5.0" + }, + "homepage": "https://git.coolaj86.com/coolaj86/atob.js.git", + "keywords": [ + "atob", + "browser" + ], + "license": "(MIT OR Apache-2.0)", + "main": "node-atob.js", + "name": "atob", + "repository": { + "type": "git", + "url": "git://git.coolaj86.com/coolaj86/atob.js.git" + }, + "version": "2.1.2" +} diff --git a/node_modules/aws-sign2/package.json b/node_modules/aws-sign2/package.json new file mode 100644 index 000000000..d393c34d6 --- /dev/null +++ b/node_modules/aws-sign2/package.json @@ -0,0 +1,54 @@ +{ + "_args": [ + [ + "aws-sign2@0.7.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "aws-sign2@0.7.0", + "_id": "aws-sign2@0.7.0", + "_inBundle": false, + "_integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=", + "_location": "/aws-sign2", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "aws-sign2@0.7.0", + "name": "aws-sign2", + "escapedName": "aws-sign2", + "rawSpec": "0.7.0", + "saveSpec": null, + "fetchSpec": "0.7.0" + }, + "_requiredBy": [ + "/request" + ], + "_resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "_spec": "0.7.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Mikeal Rogers", + "email": "mikeal.rogers@gmail.com", + "url": "http://www.futurealoof.com" + }, + "bugs": { + "url": "https://github.com/mikeal/aws-sign/issues" + }, + "dependencies": {}, + "description": "AWS signing. Originally pulled from LearnBoost/knox, maintained as vendor in request, now a standalone module.", + "devDependencies": {}, + "engines": { + "node": "*" + }, + "homepage": "https://github.com/mikeal/aws-sign#readme", + "license": "Apache-2.0", + "main": "index.js", + "name": "aws-sign2", + "optionalDependencies": {}, + "repository": { + "url": "git+https://github.com/mikeal/aws-sign.git" + }, + "version": "0.7.0" +} diff --git a/node_modules/aws4/package.json b/node_modules/aws4/package.json new file mode 100644 index 000000000..3dbf7efdc --- /dev/null +++ b/node_modules/aws4/package.json @@ -0,0 +1,108 @@ +{ + "_args": [ + [ + "aws4@1.8.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "aws4@1.8.0", + "_id": "aws4@1.8.0", + "_inBundle": false, + "_integrity": "sha512-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ==", + "_location": "/aws4", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "aws4@1.8.0", + "name": "aws4", + "escapedName": "aws4", + "rawSpec": "1.8.0", + "saveSpec": null, + "fetchSpec": "1.8.0" + }, + "_requiredBy": [ + "/request" + ], + "_resolved": "https://registry.npmjs.org/aws4/-/aws4-1.8.0.tgz", + "_spec": "1.8.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Michael Hart", + "email": "michael.hart.au@gmail.com", + "url": "http://github.com/mhart" + }, + "bugs": { + "url": "https://github.com/mhart/aws4/issues" + }, + "description": "Signs and prepares requests using AWS Signature Version 4", + "devDependencies": { + "mocha": "^2.4.5", + "should": "^8.2.2" + }, + "homepage": "https://github.com/mhart/aws4#readme", + "keywords": [ + "amazon", + "aws", + "signature", + "s3", + "ec2", + "autoscaling", + "cloudformation", + "elasticloadbalancing", + "elb", + "elasticbeanstalk", + "cloudsearch", + "dynamodb", + "kinesis", + "lambda", + "glacier", + "sqs", + "sns", + "iam", + "sts", + "ses", + "swf", + "storagegateway", + "datapipeline", + "directconnect", + "redshift", + "opsworks", + "rds", + "monitoring", + "cloudtrail", + "cloudfront", + "codedeploy", + "elasticache", + "elasticmapreduce", + "elastictranscoder", + "emr", + "cloudwatch", + "mobileanalytics", + "cognitoidentity", + "cognitosync", + "cognito", + "containerservice", + "ecs", + "appstream", + "keymanagementservice", + "kms", + "config", + "cloudhsm", + "route53", + "route53domains", + "logs" + ], + "license": "MIT", + "main": "aws4.js", + "name": "aws4", + "repository": { + "type": "git", + "url": "git+https://github.com/mhart/aws4.git" + }, + "scripts": { + "test": "mocha ./test/fast.js ./test/slow.js -b -t 100s -R list" + }, + "version": "1.8.0" +} diff --git a/node_modules/babel-jest/node_modules/slash/package.json b/node_modules/babel-jest/node_modules/slash/package.json new file mode 100644 index 000000000..7b2a6dbd8 --- /dev/null +++ b/node_modules/babel-jest/node_modules/slash/package.json @@ -0,0 +1,70 @@ +{ + "_args": [ + [ + "slash@2.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "slash@2.0.0", + "_id": "slash@2.0.0", + "_inBundle": false, + "_integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "_location": "/babel-jest/slash", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "slash@2.0.0", + "name": "slash", + "escapedName": "slash", + "rawSpec": "2.0.0", + "saveSpec": null, + "fetchSpec": "2.0.0" + }, + "_requiredBy": [ + "/babel-jest" + ], + "_resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "_spec": "2.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/slash/issues" + }, + "description": "Convert Windows backslash paths to slash paths", + "devDependencies": { + "ava": "*", + "xo": "*" + }, + "engines": { + "node": ">=6" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/slash#readme", + "keywords": [ + "path", + "seperator", + "sep", + "slash", + "backslash", + "windows", + "win" + ], + "license": "MIT", + "name": "slash", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/slash.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "2.0.0" +} diff --git a/node_modules/babel-jest/package.json b/node_modules/babel-jest/package.json new file mode 100644 index 000000000..73cee0c6c --- /dev/null +++ b/node_modules/babel-jest/package.json @@ -0,0 +1,69 @@ +{ + "_args": [ + [ + "babel-jest@24.8.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "babel-jest@24.8.0", + "_id": "babel-jest@24.8.0", + "_inBundle": false, + "_integrity": "sha512-+5/kaZt4I9efoXzPlZASyK/lN9qdRKmmUav9smVc0ruPQD7IsfucQ87gpOE8mn2jbDuS6M/YOW6n3v9ZoIfgnw==", + "_location": "/babel-jest", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "babel-jest@24.8.0", + "name": "babel-jest", + "escapedName": "babel-jest", + "rawSpec": "24.8.0", + "saveSpec": null, + "fetchSpec": "24.8.0" + }, + "_requiredBy": [ + "/jest-config" + ], + "_resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-24.8.0.tgz", + "_spec": "24.8.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/facebook/jest/issues" + }, + "dependencies": { + "@jest/transform": "^24.8.0", + "@jest/types": "^24.8.0", + "@types/babel__core": "^7.1.0", + "babel-plugin-istanbul": "^5.1.0", + "babel-preset-jest": "^24.6.0", + "chalk": "^2.4.2", + "slash": "^2.0.0" + }, + "description": "Jest plugin to use babel for transformation.", + "devDependencies": { + "@babel/core": "^7.1.0", + "@types/slash": "^2.0.0" + }, + "engines": { + "node": ">= 6" + }, + "gitHead": "845728f24b3ef41e450595c384e9b5c9fdf248a4", + "homepage": "https://github.com/facebook/jest#readme", + "license": "MIT", + "main": "build/index.js", + "name": "babel-jest", + "peerDependencies": { + "@babel/core": "^7.0.0" + }, + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/facebook/jest.git", + "directory": "packages/babel-jest" + }, + "types": "build/index.d.ts", + "version": "24.8.0" +} diff --git a/node_modules/babel-plugin-istanbul/node_modules/find-up/package.json b/node_modules/babel-plugin-istanbul/node_modules/find-up/package.json new file mode 100644 index 000000000..5b621e620 --- /dev/null +++ b/node_modules/babel-plugin-istanbul/node_modules/find-up/package.json @@ -0,0 +1,86 @@ +{ + "_args": [ + [ + "find-up@3.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "find-up@3.0.0", + "_id": "find-up@3.0.0", + "_inBundle": false, + "_integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "_location": "/babel-plugin-istanbul/find-up", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "find-up@3.0.0", + "name": "find-up", + "escapedName": "find-up", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/babel-plugin-istanbul" + ], + "_resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/find-up/issues" + }, + "dependencies": { + "locate-path": "^3.0.0" + }, + "description": "Find a file or directory by walking up parent directories", + "devDependencies": { + "ava": "*", + "tempy": "^0.2.1", + "xo": "*" + }, + "engines": { + "node": ">=6" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/find-up#readme", + "keywords": [ + "find", + "up", + "find-up", + "findup", + "look-up", + "look", + "file", + "search", + "match", + "package", + "resolve", + "parent", + "parents", + "folder", + "directory", + "dir", + "walk", + "walking", + "path" + ], + "license": "MIT", + "name": "find-up", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/find-up.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "3.0.0" +} diff --git a/node_modules/babel-plugin-istanbul/node_modules/locate-path/package.json b/node_modules/babel-plugin-istanbul/node_modules/locate-path/package.json new file mode 100644 index 000000000..20a1bf86e --- /dev/null +++ b/node_modules/babel-plugin-istanbul/node_modules/locate-path/package.json @@ -0,0 +1,80 @@ +{ + "_args": [ + [ + "locate-path@3.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "locate-path@3.0.0", + "_id": "locate-path@3.0.0", + "_inBundle": false, + "_integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "_location": "/babel-plugin-istanbul/locate-path", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "locate-path@3.0.0", + "name": "locate-path", + "escapedName": "locate-path", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/babel-plugin-istanbul/find-up" + ], + "_resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/locate-path/issues" + }, + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "description": "Get the first path that exists on disk of multiple paths", + "devDependencies": { + "ava": "*", + "xo": "*" + }, + "engines": { + "node": ">=6" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/locate-path#readme", + "keywords": [ + "locate", + "path", + "paths", + "file", + "files", + "exists", + "find", + "finder", + "search", + "searcher", + "array", + "iterable", + "iterator" + ], + "license": "MIT", + "name": "locate-path", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/locate-path.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "3.0.0" +} diff --git a/node_modules/babel-plugin-istanbul/node_modules/p-locate/package.json b/node_modules/babel-plugin-istanbul/node_modules/p-locate/package.json new file mode 100644 index 000000000..07e7f0165 --- /dev/null +++ b/node_modules/babel-plugin-istanbul/node_modules/p-locate/package.json @@ -0,0 +1,87 @@ +{ + "_args": [ + [ + "p-locate@3.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "p-locate@3.0.0", + "_id": "p-locate@3.0.0", + "_inBundle": false, + "_integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "_location": "/babel-plugin-istanbul/p-locate", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "p-locate@3.0.0", + "name": "p-locate", + "escapedName": "p-locate", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/babel-plugin-istanbul/locate-path" + ], + "_resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/p-locate/issues" + }, + "dependencies": { + "p-limit": "^2.0.0" + }, + "description": "Get the first fulfilled promise that satisfies the provided testing function", + "devDependencies": { + "ava": "*", + "delay": "^3.0.0", + "in-range": "^1.0.0", + "time-span": "^2.0.0", + "xo": "*" + }, + "engines": { + "node": ">=6" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/p-locate#readme", + "keywords": [ + "promise", + "locate", + "find", + "finder", + "search", + "searcher", + "test", + "array", + "collection", + "iterable", + "iterator", + "race", + "fulfilled", + "fastest", + "async", + "await", + "promises", + "bluebird" + ], + "license": "MIT", + "name": "p-locate", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/p-locate.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "3.0.0" +} diff --git a/node_modules/babel-plugin-istanbul/node_modules/path-exists/package.json b/node_modules/babel-plugin-istanbul/node_modules/path-exists/package.json new file mode 100644 index 000000000..6f351d825 --- /dev/null +++ b/node_modules/babel-plugin-istanbul/node_modules/path-exists/package.json @@ -0,0 +1,76 @@ +{ + "_args": [ + [ + "path-exists@3.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "path-exists@3.0.0", + "_id": "path-exists@3.0.0", + "_inBundle": false, + "_integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "_location": "/babel-plugin-istanbul/path-exists", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "path-exists@3.0.0", + "name": "path-exists", + "escapedName": "path-exists", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/babel-plugin-istanbul/locate-path" + ], + "_resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/path-exists/issues" + }, + "description": "Check if a path exists", + "devDependencies": { + "ava": "*", + "xo": "*" + }, + "engines": { + "node": ">=4" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/path-exists#readme", + "keywords": [ + "path", + "exists", + "exist", + "file", + "filepath", + "fs", + "filesystem", + "file-system", + "access", + "stat" + ], + "license": "MIT", + "name": "path-exists", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/path-exists.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "3.0.0", + "xo": { + "esnext": true + } +} diff --git a/node_modules/babel-plugin-istanbul/package.json b/node_modules/babel-plugin-istanbul/package.json new file mode 100644 index 000000000..b2e444a76 --- /dev/null +++ b/node_modules/babel-plugin-istanbul/package.json @@ -0,0 +1,106 @@ +{ + "_args": [ + [ + "babel-plugin-istanbul@5.2.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "babel-plugin-istanbul@5.2.0", + "_id": "babel-plugin-istanbul@5.2.0", + "_inBundle": false, + "_integrity": "sha512-5LphC0USA8t4i1zCtjbbNb6jJj/9+X6P37Qfirc/70EQ34xKlMW+a1RHGwxGI+SwWpNwZ27HqvzAobeqaXwiZw==", + "_location": "/babel-plugin-istanbul", + "_phantomChildren": { + "p-limit": "2.2.0" + }, + "_requested": { + "type": "version", + "registry": true, + "raw": "babel-plugin-istanbul@5.2.0", + "name": "babel-plugin-istanbul", + "escapedName": "babel-plugin-istanbul", + "rawSpec": "5.2.0", + "saveSpec": null, + "fetchSpec": "5.2.0" + }, + "_requiredBy": [ + "/@jest/transform", + "/babel-jest" + ], + "_resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-5.2.0.tgz", + "_spec": "5.2.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Thai Pangsakulyanont @dtinth" + }, + "bugs": { + "url": "https://github.com/istanbuljs/babel-plugin-istanbul/issues" + }, + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "find-up": "^3.0.0", + "istanbul-lib-instrument": "^3.3.0", + "test-exclude": "^5.2.3" + }, + "description": "A babel plugin that adds istanbul instrumentation to ES6 code", + "devDependencies": { + "@babel/cli": "^7.4.3", + "@babel/core": "^7.4.3", + "@babel/plugin-transform-modules-commonjs": "^7.4.3", + "@babel/register": "^7.4.0", + "chai": "^4.2.0", + "coveralls": "^3.0.3", + "cross-env": "^5.2.0", + "mocha": "^6.1.4", + "nyc": "^14.1.0", + "pmock": "^0.2.3", + "standard": "^12.0.1", + "standard-version": "^6.0.1" + }, + "engines": { + "node": ">=6" + }, + "files": [ + "lib" + ], + "homepage": "https://github.com/istanbuljs/babel-plugin-istanbul#readme", + "keywords": [ + "istanbul", + "babel", + "plugin", + "instrumentation" + ], + "license": "BSD-3-Clause", + "main": "lib/index.js", + "name": "babel-plugin-istanbul", + "nyc": { + "include": [ + "src/*.js", + "fixtures/should-cover.js" + ], + "require": [ + "@babel/register" + ], + "sourceMap": false, + "instrument": false + }, + "repository": { + "type": "git", + "url": "git+https://github.com/istanbuljs/babel-plugin-istanbul.git" + }, + "scripts": { + "coverage": "nyc report --reporter=text-lcov | coveralls", + "prepublish": "npm test && npm run release", + "pretest": "standard && npm run release", + "release": "babel src --out-dir lib", + "test": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text mocha test/*.js", + "version": "standard-version" + }, + "standard": { + "ignore": [ + "fixtures/has-inline-source-map.js" + ] + }, + "version": "5.2.0" +} diff --git a/node_modules/babel-plugin-jest-hoist/package.json b/node_modules/babel-plugin-jest-hoist/package.json new file mode 100644 index 000000000..22621e813 --- /dev/null +++ b/node_modules/babel-plugin-jest-hoist/package.json @@ -0,0 +1,59 @@ +{ + "_args": [ + [ + "babel-plugin-jest-hoist@24.6.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "babel-plugin-jest-hoist@24.6.0", + "_id": "babel-plugin-jest-hoist@24.6.0", + "_inBundle": false, + "_integrity": "sha512-3pKNH6hMt9SbOv0F3WVmy5CWQ4uogS3k0GY5XLyQHJ9EGpAT9XWkFd2ZiXXtkwFHdAHa5j7w7kfxSP5lAIwu7w==", + "_location": "/babel-plugin-jest-hoist", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "babel-plugin-jest-hoist@24.6.0", + "name": "babel-plugin-jest-hoist", + "escapedName": "babel-plugin-jest-hoist", + "rawSpec": "24.6.0", + "saveSpec": null, + "fetchSpec": "24.6.0" + }, + "_requiredBy": [ + "/babel-preset-jest" + ], + "_resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-24.6.0.tgz", + "_spec": "24.6.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/facebook/jest/issues" + }, + "dependencies": { + "@types/babel__traverse": "^7.0.6" + }, + "description": "Babel plugin to hoist `jest.disableAutomock`, `jest.enableAutomock`, `jest.unmock`, `jest.mock`, calls above `import` statements. This plugin is automatically included when using [babel-jest](https://github.com/facebook/jest/tree/master/packages/babel-jest).", + "devDependencies": { + "@babel/types": "^7.3.3" + }, + "engines": { + "node": ">= 6" + }, + "gitHead": "04e6a66d2ba8b18bee080bb28547db74a255d2c7", + "homepage": "https://github.com/facebook/jest#readme", + "license": "MIT", + "main": "build/index.js", + "name": "babel-plugin-jest-hoist", + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/facebook/jest.git", + "directory": "packages/babel-plugin-jest-hoist" + }, + "types": "build/index.d.ts", + "version": "24.6.0" +} diff --git a/node_modules/babel-preset-jest/package.json b/node_modules/babel-preset-jest/package.json new file mode 100644 index 000000000..91783dc41 --- /dev/null +++ b/node_modules/babel-preset-jest/package.json @@ -0,0 +1,59 @@ +{ + "_args": [ + [ + "babel-preset-jest@24.6.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "babel-preset-jest@24.6.0", + "_id": "babel-preset-jest@24.6.0", + "_inBundle": false, + "_integrity": "sha512-pdZqLEdmy1ZK5kyRUfvBb2IfTPb2BUvIJczlPspS8fWmBQslNNDBqVfh7BW5leOVJMDZKzjD8XEyABTk6gQ5yw==", + "_location": "/babel-preset-jest", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "babel-preset-jest@24.6.0", + "name": "babel-preset-jest", + "escapedName": "babel-preset-jest", + "rawSpec": "24.6.0", + "saveSpec": null, + "fetchSpec": "24.6.0" + }, + "_requiredBy": [ + "/babel-jest" + ], + "_resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-24.6.0.tgz", + "_spec": "24.6.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/facebook/jest/issues" + }, + "dependencies": { + "@babel/plugin-syntax-object-rest-spread": "^7.0.0", + "babel-plugin-jest-hoist": "^24.6.0" + }, + "description": "> Babel preset for all Jest plugins. This preset is automatically included when using [babel-jest](https://github.com/facebook/jest/tree/master/packages/babel-jest).", + "engines": { + "node": ">= 6" + }, + "gitHead": "04e6a66d2ba8b18bee080bb28547db74a255d2c7", + "homepage": "https://github.com/facebook/jest#readme", + "license": "MIT", + "main": "index.js", + "name": "babel-preset-jest", + "peerDependencies": { + "@babel/core": "^7.0.0" + }, + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/facebook/jest.git", + "directory": "packages/babel-preset-jest" + }, + "version": "24.6.0" +} diff --git a/node_modules/balanced-match/package.json b/node_modules/balanced-match/package.json new file mode 100644 index 000000000..bb9ef89bf --- /dev/null +++ b/node_modules/balanced-match/package.json @@ -0,0 +1,81 @@ +{ + "_args": [ + [ + "balanced-match@1.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "balanced-match@1.0.0", + "_id": "balanced-match@1.0.0", + "_inBundle": false, + "_integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", + "_location": "/balanced-match", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "balanced-match@1.0.0", + "name": "balanced-match", + "escapedName": "balanced-match", + "rawSpec": "1.0.0", + "saveSpec": null, + "fetchSpec": "1.0.0" + }, + "_requiredBy": [ + "/brace-expansion" + ], + "_resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "_spec": "1.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Julian Gruber", + "email": "mail@juliangruber.com", + "url": "http://juliangruber.com" + }, + "bugs": { + "url": "https://github.com/juliangruber/balanced-match/issues" + }, + "dependencies": {}, + "description": "Match balanced character pairs, like \"{\" and \"}\"", + "devDependencies": { + "matcha": "^0.7.0", + "tape": "^4.6.0" + }, + "homepage": "https://github.com/juliangruber/balanced-match", + "keywords": [ + "match", + "regexp", + "test", + "balanced", + "parse" + ], + "license": "MIT", + "main": "index.js", + "name": "balanced-match", + "repository": { + "type": "git", + "url": "git://github.com/juliangruber/balanced-match.git" + }, + "scripts": { + "bench": "make bench", + "test": "make test" + }, + "testling": { + "files": "test/*.js", + "browsers": [ + "ie/8..latest", + "firefox/20..latest", + "firefox/nightly", + "chrome/25..latest", + "chrome/canary", + "opera/12..latest", + "opera/next", + "safari/5.1..latest", + "ipad/6.0..latest", + "iphone/6.0..latest", + "android-browser/4.2..latest" + ] + }, + "version": "1.0.0" +} diff --git a/node_modules/base/node_modules/define-property/package.json b/node_modules/base/node_modules/define-property/package.json new file mode 100644 index 000000000..64d080156 --- /dev/null +++ b/node_modules/base/node_modules/define-property/package.json @@ -0,0 +1,97 @@ +{ + "_args": [ + [ + "define-property@1.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "define-property@1.0.0", + "_id": "define-property@1.0.0", + "_inBundle": false, + "_integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "_location": "/base/define-property", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "define-property@1.0.0", + "name": "define-property", + "escapedName": "define-property", + "rawSpec": "1.0.0", + "saveSpec": null, + "fetchSpec": "1.0.0" + }, + "_requiredBy": [ + "/base" + ], + "_resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "_spec": "1.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/define-property/issues" + }, + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "description": "Define a non-enumerable property on an object.", + "devDependencies": { + "gulp-format-md": "^0.1.12", + "mocha": "^3.2.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/define-property", + "keywords": [ + "define", + "define-property", + "enumerable", + "key", + "non", + "non-enumerable", + "object", + "prop", + "property", + "value" + ], + "license": "MIT", + "main": "index.js", + "name": "define-property", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/define-property.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "related": { + "list": [ + "extend-shallow", + "merge-deep", + "assign-deep", + "mixin-deep" + ] + }, + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "lint": { + "reflinks": true + } + }, + "version": "1.0.0" +} diff --git a/node_modules/base/node_modules/is-accessor-descriptor/package.json b/node_modules/base/node_modules/is-accessor-descriptor/package.json new file mode 100644 index 000000000..f0a0ed2ef --- /dev/null +++ b/node_modules/base/node_modules/is-accessor-descriptor/package.json @@ -0,0 +1,114 @@ +{ + "_args": [ + [ + "is-accessor-descriptor@1.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "is-accessor-descriptor@1.0.0", + "_id": "is-accessor-descriptor@1.0.0", + "_inBundle": false, + "_integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "_location": "/base/is-accessor-descriptor", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-accessor-descriptor@1.0.0", + "name": "is-accessor-descriptor", + "escapedName": "is-accessor-descriptor", + "rawSpec": "1.0.0", + "saveSpec": null, + "fetchSpec": "1.0.0" + }, + "_requiredBy": [ + "/base/is-descriptor" + ], + "_resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "_spec": "1.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/is-accessor-descriptor/issues" + }, + "contributors": [ + { + "name": "Jon Schlinkert", + "url": "http://twitter.com/jonschlinkert" + }, + { + "name": "Rouven Weßling", + "url": "www.rouvenwessling.de" + } + ], + "dependencies": { + "kind-of": "^6.0.0" + }, + "description": "Returns true if a value has the characteristics of a valid JavaScript accessor descriptor.", + "devDependencies": { + "gulp-format-md": "^1.0.0", + "mocha": "^3.5.3" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/is-accessor-descriptor", + "keywords": [ + "accessor", + "check", + "data", + "descriptor", + "get", + "getter", + "is", + "keys", + "object", + "properties", + "property", + "set", + "setter", + "type", + "valid", + "value" + ], + "license": "MIT", + "main": "index.js", + "name": "is-accessor-descriptor", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/is-accessor-descriptor.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "related": { + "list": [ + "is-accessor-descriptor", + "is-data-descriptor", + "is-descriptor", + "is-plain-object", + "isobject" + ] + }, + "lint": { + "reflinks": true + } + }, + "version": "1.0.0" +} diff --git a/node_modules/base/node_modules/is-data-descriptor/package.json b/node_modules/base/node_modules/is-data-descriptor/package.json new file mode 100644 index 000000000..77dc9bf1c --- /dev/null +++ b/node_modules/base/node_modules/is-data-descriptor/package.json @@ -0,0 +1,113 @@ +{ + "_args": [ + [ + "is-data-descriptor@1.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "is-data-descriptor@1.0.0", + "_id": "is-data-descriptor@1.0.0", + "_inBundle": false, + "_integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "_location": "/base/is-data-descriptor", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-data-descriptor@1.0.0", + "name": "is-data-descriptor", + "escapedName": "is-data-descriptor", + "rawSpec": "1.0.0", + "saveSpec": null, + "fetchSpec": "1.0.0" + }, + "_requiredBy": [ + "/base/is-descriptor" + ], + "_resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "_spec": "1.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/is-data-descriptor/issues" + }, + "contributors": [ + { + "name": "Jon Schlinkert", + "url": "http://twitter.com/jonschlinkert" + }, + { + "name": "Rouven Weßling", + "url": "www.rouvenwessling.de" + } + ], + "dependencies": { + "kind-of": "^6.0.0" + }, + "description": "Returns true if a value has the characteristics of a valid JavaScript data descriptor.", + "devDependencies": { + "gulp-format-md": "^1.0.0", + "mocha": "^3.5.3" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/is-data-descriptor", + "keywords": [ + "accessor", + "check", + "data", + "descriptor", + "get", + "getter", + "is", + "keys", + "object", + "properties", + "property", + "set", + "setter", + "type", + "valid", + "value" + ], + "license": "MIT", + "main": "index.js", + "name": "is-data-descriptor", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/is-data-descriptor.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "related": { + "list": [ + "is-accessor-descriptor", + "is-data-descriptor", + "is-descriptor", + "isobject" + ] + }, + "lint": { + "reflinks": true + } + }, + "version": "1.0.0" +} diff --git a/node_modules/base/node_modules/is-descriptor/package.json b/node_modules/base/node_modules/is-descriptor/package.json new file mode 100644 index 000000000..1da9d11be --- /dev/null +++ b/node_modules/base/node_modules/is-descriptor/package.json @@ -0,0 +1,118 @@ +{ + "_args": [ + [ + "is-descriptor@1.0.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "is-descriptor@1.0.2", + "_id": "is-descriptor@1.0.2", + "_inBundle": false, + "_integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "_location": "/base/is-descriptor", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-descriptor@1.0.2", + "name": "is-descriptor", + "escapedName": "is-descriptor", + "rawSpec": "1.0.2", + "saveSpec": null, + "fetchSpec": "1.0.2" + }, + "_requiredBy": [ + "/base/define-property" + ], + "_resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "_spec": "1.0.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/is-descriptor/issues" + }, + "contributors": [ + { + "name": "Brian Woodward", + "url": "https://twitter.com/doowb" + }, + { + "name": "Jon Schlinkert", + "url": "http://twitter.com/jonschlinkert" + }, + { + "url": "https://github.com/wtgtybhertgeghgtwtg" + } + ], + "dependencies": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "description": "Returns true if a value has the characteristics of a valid JavaScript descriptor. Works for data descriptors and accessor descriptors.", + "devDependencies": { + "gulp-format-md": "^1.0.0", + "mocha": "^3.5.3" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/is-descriptor", + "keywords": [ + "accessor", + "check", + "data", + "descriptor", + "get", + "getter", + "is", + "keys", + "object", + "properties", + "property", + "set", + "setter", + "type", + "valid", + "value" + ], + "license": "MIT", + "main": "index.js", + "name": "is-descriptor", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/is-descriptor.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "related": { + "list": [ + "is-accessor-descriptor", + "is-data-descriptor", + "is-descriptor", + "isobject" + ] + }, + "plugins": [ + "gulp-format-md" + ], + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "lint": { + "reflinks": true + } + }, + "version": "1.0.2" +} diff --git a/node_modules/base/package.json b/node_modules/base/package.json new file mode 100644 index 000000000..408068802 --- /dev/null +++ b/node_modules/base/package.json @@ -0,0 +1,168 @@ +{ + "_args": [ + [ + "base@0.11.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "base@0.11.2", + "_id": "base@0.11.2", + "_inBundle": false, + "_integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "_location": "/base", + "_phantomChildren": { + "kind-of": "6.0.2" + }, + "_requested": { + "type": "version", + "registry": true, + "raw": "base@0.11.2", + "name": "base", + "escapedName": "base", + "rawSpec": "0.11.2", + "saveSpec": null, + "fetchSpec": "0.11.2" + }, + "_requiredBy": [ + "/snapdragon" + ], + "_resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "_spec": "0.11.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/node-base/base/issues" + }, + "contributors": [ + { + "name": "Brian Woodward", + "url": "https://twitter.com/doowb" + }, + { + "name": "John O'Donnell", + "url": "https://github.com/criticalmash" + }, + { + "name": "Jon Schlinkert", + "url": "http://twitter.com/jonschlinkert" + }, + { + "name": "tunnckoCore", + "url": "https://i.am.charlike.online" + }, + { + "url": "https://github.com/wtgtybhertgeghgtwtg" + } + ], + "dependencies": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "description": "base is the foundation for creating modular, unit testable and highly pluggable node.js applications, starting with a handful of common methods, like `set`, `get`, `del` and `use`.", + "devDependencies": { + "gulp": "^3.9.1", + "gulp-eslint": "^4.0.0", + "gulp-format-md": "^1.0.0", + "gulp-istanbul": "^1.1.2", + "gulp-mocha": "^3.0.1", + "helper-coverage": "^0.1.3", + "mocha": "^3.5.0", + "should": "^13.0.1", + "through2": "^2.0.3", + "verb-generate-readme": "^0.6.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/node-base/base", + "keywords": [ + "base", + "boilerplate", + "cache", + "del", + "get", + "inherit", + "methods", + "set", + "starter", + "unset", + "visit" + ], + "license": "MIT", + "main": "index.js", + "maintainers": [ + { + "name": "Brian Woodward", + "url": "https://github.com/doowb" + }, + { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + } + ], + "name": "base", + "repository": { + "type": "git", + "url": "git+https://github.com/node-base/base.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "run": true, + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "helpers": [ + "helper-coverage" + ], + "related": { + "description": "There are a number of different plugins available for extending base. Let us know if you create your own!", + "hightlight": "generate", + "list": [ + "base-cwd", + "base-data", + "base-fs", + "base-generators", + "base-option", + "base-pipeline", + "base-pkg", + "base-plugins", + "base-questions", + "base-store", + "base-task" + ] + }, + "reflinks": [ + "assemble", + "boilerplate", + "cache-base", + "class-utils", + "generate", + "scaffold", + "static-extend", + "verb" + ], + "lint": { + "reflinks": true + } + }, + "version": "0.11.2" +} diff --git a/node_modules/bcrypt-pbkdf/package.json b/node_modules/bcrypt-pbkdf/package.json new file mode 100644 index 000000000..0cd15bda7 --- /dev/null +++ b/node_modules/bcrypt-pbkdf/package.json @@ -0,0 +1,48 @@ +{ + "_args": [ + [ + "bcrypt-pbkdf@1.0.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "bcrypt-pbkdf@1.0.2", + "_id": "bcrypt-pbkdf@1.0.2", + "_inBundle": false, + "_integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", + "_location": "/bcrypt-pbkdf", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "bcrypt-pbkdf@1.0.2", + "name": "bcrypt-pbkdf", + "escapedName": "bcrypt-pbkdf", + "rawSpec": "1.0.2", + "saveSpec": null, + "fetchSpec": "1.0.2" + }, + "_requiredBy": [ + "/sshpk" + ], + "_resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "_spec": "1.0.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/joyent/node-bcrypt-pbkdf/issues" + }, + "dependencies": { + "tweetnacl": "^0.14.3" + }, + "description": "Port of the OpenBSD bcrypt_pbkdf function to pure JS", + "devDependencies": {}, + "homepage": "https://github.com/joyent/node-bcrypt-pbkdf#readme", + "license": "BSD-3-Clause", + "main": "index.js", + "name": "bcrypt-pbkdf", + "repository": { + "type": "git", + "url": "git://github.com/joyent/node-bcrypt-pbkdf.git" + }, + "version": "1.0.2" +} diff --git a/node_modules/brace-expansion/package.json b/node_modules/brace-expansion/package.json new file mode 100644 index 000000000..eba381562 --- /dev/null +++ b/node_modules/brace-expansion/package.json @@ -0,0 +1,79 @@ +{ + "_args": [ + [ + "brace-expansion@1.1.11", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "brace-expansion@1.1.11", + "_id": "brace-expansion@1.1.11", + "_inBundle": false, + "_integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "_location": "/brace-expansion", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "brace-expansion@1.1.11", + "name": "brace-expansion", + "escapedName": "brace-expansion", + "rawSpec": "1.1.11", + "saveSpec": null, + "fetchSpec": "1.1.11" + }, + "_requiredBy": [ + "/minimatch" + ], + "_resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "_spec": "1.1.11", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Julian Gruber", + "email": "mail@juliangruber.com", + "url": "http://juliangruber.com" + }, + "bugs": { + "url": "https://github.com/juliangruber/brace-expansion/issues" + }, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + }, + "description": "Brace expansion as known from sh/bash", + "devDependencies": { + "matcha": "^0.7.0", + "tape": "^4.6.0" + }, + "homepage": "https://github.com/juliangruber/brace-expansion", + "keywords": [], + "license": "MIT", + "main": "index.js", + "name": "brace-expansion", + "repository": { + "type": "git", + "url": "git://github.com/juliangruber/brace-expansion.git" + }, + "scripts": { + "bench": "matcha test/perf/bench.js", + "gentest": "bash test/generate.sh", + "test": "tape test/*.js" + }, + "testling": { + "files": "test/*.js", + "browsers": [ + "ie/8..latest", + "firefox/20..latest", + "firefox/nightly", + "chrome/25..latest", + "chrome/canary", + "opera/12..latest", + "opera/next", + "safari/5.1..latest", + "ipad/6.0..latest", + "iphone/6.0..latest", + "android-browser/4.2..latest" + ] + }, + "version": "1.1.11" +} diff --git a/node_modules/braces/node_modules/extend-shallow/package.json b/node_modules/braces/node_modules/extend-shallow/package.json new file mode 100644 index 000000000..f0d0c9ab9 --- /dev/null +++ b/node_modules/braces/node_modules/extend-shallow/package.json @@ -0,0 +1,91 @@ +{ + "_args": [ + [ + "extend-shallow@2.0.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "extend-shallow@2.0.1", + "_id": "extend-shallow@2.0.1", + "_inBundle": false, + "_integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "_location": "/braces/extend-shallow", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "extend-shallow@2.0.1", + "name": "extend-shallow", + "escapedName": "extend-shallow", + "rawSpec": "2.0.1", + "saveSpec": null, + "fetchSpec": "2.0.1" + }, + "_requiredBy": [ + "/braces" + ], + "_resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "_spec": "2.0.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/extend-shallow/issues" + }, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "description": "Extend an object with the properties of additional objects. node.js/javascript util.", + "devDependencies": { + "array-slice": "^0.2.3", + "benchmarked": "^0.1.4", + "chalk": "^1.0.0", + "for-own": "^0.1.3", + "glob": "^5.0.12", + "is-plain-object": "^2.0.1", + "kind-of": "^2.0.0", + "minimist": "^1.1.1", + "mocha": "^2.2.5", + "should": "^7.0.1" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/extend-shallow", + "keywords": [ + "assign", + "extend", + "javascript", + "js", + "keys", + "merge", + "obj", + "object", + "prop", + "properties", + "property", + "props", + "shallow", + "util", + "utility", + "utils", + "value" + ], + "license": "MIT", + "main": "index.js", + "name": "extend-shallow", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/extend-shallow.git" + }, + "scripts": { + "test": "mocha" + }, + "version": "2.0.1" +} diff --git a/node_modules/braces/package.json b/node_modules/braces/package.json new file mode 100644 index 000000000..52887fde9 --- /dev/null +++ b/node_modules/braces/package.json @@ -0,0 +1,160 @@ +{ + "_args": [ + [ + "braces@2.3.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "braces@2.3.2", + "_id": "braces@2.3.2", + "_inBundle": false, + "_integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "_location": "/braces", + "_phantomChildren": { + "is-extendable": "0.1.1" + }, + "_requested": { + "type": "version", + "registry": true, + "raw": "braces@2.3.2", + "name": "braces", + "escapedName": "braces", + "rawSpec": "2.3.2", + "saveSpec": null, + "fetchSpec": "2.3.2" + }, + "_requiredBy": [ + "/micromatch" + ], + "_resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "_spec": "2.3.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/micromatch/braces/issues" + }, + "contributors": [ + { + "name": "Brian Woodward", + "url": "https://twitter.com/doowb" + }, + { + "name": "Elan Shanker", + "url": "https://github.com/es128" + }, + { + "name": "Eugene Sharygin", + "url": "https://github.com/eush77" + }, + { + "name": "hemanth.hm", + "url": "http://h3manth.com" + }, + { + "name": "Jon Schlinkert", + "url": "http://twitter.com/jonschlinkert" + } + ], + "dependencies": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "description": "Bash-like brace expansion, implemented in JavaScript. Safer than other brace expansion libs, with complete support for the Bash 4.3 braces specification, without sacrificing speed.", + "devDependencies": { + "ansi-cyan": "^0.1.1", + "benchmarked": "^2.0.0", + "brace-expansion": "^1.1.8", + "cross-spawn": "^5.1.0", + "gulp": "^3.9.1", + "gulp-eslint": "^4.0.0", + "gulp-format-md": "^1.0.0", + "gulp-istanbul": "^1.1.2", + "gulp-mocha": "^3.0.1", + "gulp-unused": "^0.2.1", + "is-windows": "^1.0.1", + "minimatch": "^3.0.4", + "mocha": "^3.2.0", + "noncharacters": "^1.1.0", + "text-table": "^0.2.0", + "time-diff": "^0.3.1", + "yargs-parser": "^8.0.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js", + "lib" + ], + "homepage": "https://github.com/micromatch/braces", + "keywords": [ + "alpha", + "alphabetical", + "bash", + "brace", + "braces", + "expand", + "expansion", + "filepath", + "fill", + "fs", + "glob", + "globbing", + "letter", + "match", + "matches", + "matching", + "number", + "numerical", + "path", + "range", + "ranges", + "sh" + ], + "license": "MIT", + "main": "index.js", + "name": "braces", + "repository": { + "type": "git", + "url": "git+https://github.com/micromatch/braces.git" + }, + "scripts": { + "benchmark": "node benchmark", + "test": "mocha" + }, + "verb": { + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "lint": { + "reflinks": true + }, + "plugins": [ + "gulp-format-md" + ], + "related": { + "list": [ + "expand-brackets", + "extglob", + "fill-range", + "micromatch", + "nanomatch" + ] + } + }, + "version": "2.3.2" +} diff --git a/node_modules/browser-process-hrtime/package.json b/node_modules/browser-process-hrtime/package.json new file mode 100644 index 000000000..8fa3a4063 --- /dev/null +++ b/node_modules/browser-process-hrtime/package.json @@ -0,0 +1,50 @@ +{ + "_args": [ + [ + "browser-process-hrtime@0.1.3", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "browser-process-hrtime@0.1.3", + "_id": "browser-process-hrtime@0.1.3", + "_inBundle": false, + "_integrity": "sha512-bRFnI4NnjO6cnyLmOV/7PVoDEMJChlcfN0z4s1YMBY989/SvlfMI1lgCnkFUs53e9gQF+w7qu7XdllSTiSl8Aw==", + "_location": "/browser-process-hrtime", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "browser-process-hrtime@0.1.3", + "name": "browser-process-hrtime", + "escapedName": "browser-process-hrtime", + "rawSpec": "0.1.3", + "saveSpec": null, + "fetchSpec": "0.1.3" + }, + "_requiredBy": [ + "/w3c-hr-time" + ], + "_resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-0.1.3.tgz", + "_spec": "0.1.3", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "kumavis" + }, + "bugs": { + "url": "https://github.com/kumavis/browser-process-hrtime/issues" + }, + "description": "Shim for process.hrtime in the browser", + "homepage": "https://github.com/kumavis/browser-process-hrtime#readme", + "license": "BSD-2-Clause", + "main": "index.js", + "name": "browser-process-hrtime", + "repository": { + "type": "git", + "url": "git://github.com/kumavis/browser-process-hrtime.git" + }, + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "version": "0.1.3" +} diff --git a/node_modules/browser-resolve/node_modules/resolve/package.json b/node_modules/browser-resolve/node_modules/resolve/package.json new file mode 100644 index 000000000..6e59dc3e5 --- /dev/null +++ b/node_modules/browser-resolve/node_modules/resolve/package.json @@ -0,0 +1,62 @@ +{ + "_args": [ + [ + "resolve@1.1.7", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "resolve@1.1.7", + "_id": "resolve@1.1.7", + "_inBundle": false, + "_integrity": "sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=", + "_location": "/browser-resolve/resolve", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "resolve@1.1.7", + "name": "resolve", + "escapedName": "resolve", + "rawSpec": "1.1.7", + "saveSpec": null, + "fetchSpec": "1.1.7" + }, + "_requiredBy": [ + "/browser-resolve" + ], + "_resolved": "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz", + "_spec": "1.1.7", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "bugs": { + "url": "https://github.com/substack/node-resolve/issues" + }, + "description": "resolve like require.resolve() on behalf of files asynchronously and synchronously", + "devDependencies": { + "tap": "0.4.13", + "tape": "^3.5.0" + }, + "homepage": "https://github.com/substack/node-resolve#readme", + "keywords": [ + "resolve", + "require", + "node", + "module" + ], + "license": "MIT", + "main": "index.js", + "name": "resolve", + "repository": { + "type": "git", + "url": "git://github.com/substack/node-resolve.git" + }, + "scripts": { + "test": "tape test/*.js" + }, + "version": "1.1.7" +} diff --git a/node_modules/browser-resolve/node_modules/resolve/test/module_dir/zmodules/bbb/package.json b/node_modules/browser-resolve/node_modules/resolve/test/module_dir/zmodules/bbb/package.json new file mode 100644 index 000000000..c13b8cf6a --- /dev/null +++ b/node_modules/browser-resolve/node_modules/resolve/test/module_dir/zmodules/bbb/package.json @@ -0,0 +1,3 @@ +{ + "main": "main.js" +} diff --git a/node_modules/browser-resolve/node_modules/resolve/test/pathfilter/deep_ref/node_modules/deep/package.json b/node_modules/browser-resolve/node_modules/resolve/test/pathfilter/deep_ref/node_modules/deep/package.json new file mode 100644 index 000000000..fe4b408a0 --- /dev/null +++ b/node_modules/browser-resolve/node_modules/resolve/test/pathfilter/deep_ref/node_modules/deep/package.json @@ -0,0 +1,4 @@ +{ + "name": "deep", + "version": "1.2.3" +} diff --git a/node_modules/browser-resolve/node_modules/resolve/test/resolver/baz/package.json b/node_modules/browser-resolve/node_modules/resolve/test/resolver/baz/package.json new file mode 100644 index 000000000..6b81dcddf --- /dev/null +++ b/node_modules/browser-resolve/node_modules/resolve/test/resolver/baz/package.json @@ -0,0 +1,3 @@ +{ + "main" : "quux.js" +} diff --git a/node_modules/browser-resolve/node_modules/resolve/test/resolver/biz/node_modules/garply/package.json b/node_modules/browser-resolve/node_modules/resolve/test/resolver/biz/node_modules/garply/package.json new file mode 100644 index 000000000..babaac58f --- /dev/null +++ b/node_modules/browser-resolve/node_modules/resolve/test/resolver/biz/node_modules/garply/package.json @@ -0,0 +1,3 @@ +{ + "main" : "./lib" +} diff --git a/node_modules/browser-resolve/node_modules/resolve/test/resolver/incorrect_main/package.json b/node_modules/browser-resolve/node_modules/resolve/test/resolver/incorrect_main/package.json new file mode 100644 index 000000000..1592ed393 --- /dev/null +++ b/node_modules/browser-resolve/node_modules/resolve/test/resolver/incorrect_main/package.json @@ -0,0 +1,3 @@ +{ + "main" : "wrong.js" +} diff --git a/node_modules/browser-resolve/node_modules/resolve/test/subdirs/node_modules/a/package.json b/node_modules/browser-resolve/node_modules/resolve/test/subdirs/node_modules/a/package.json new file mode 100644 index 000000000..0967ef424 --- /dev/null +++ b/node_modules/browser-resolve/node_modules/resolve/test/subdirs/node_modules/a/package.json @@ -0,0 +1 @@ +{} diff --git a/node_modules/browser-resolve/package.json b/node_modules/browser-resolve/package.json new file mode 100644 index 000000000..668a1c040 --- /dev/null +++ b/node_modules/browser-resolve/package.json @@ -0,0 +1,65 @@ +{ + "_args": [ + [ + "browser-resolve@1.11.3", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "browser-resolve@1.11.3", + "_id": "browser-resolve@1.11.3", + "_inBundle": false, + "_integrity": "sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ==", + "_location": "/browser-resolve", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "browser-resolve@1.11.3", + "name": "browser-resolve", + "escapedName": "browser-resolve", + "rawSpec": "1.11.3", + "saveSpec": null, + "fetchSpec": "1.11.3" + }, + "_requiredBy": [ + "/jest-resolve" + ], + "_resolved": "https://registry.npmjs.org/browser-resolve/-/browser-resolve-1.11.3.tgz", + "_spec": "1.11.3", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Roman Shtylman", + "email": "shtylman@gmail.com" + }, + "bugs": { + "url": "https://github.com/shtylman/node-browser-resolve/issues" + }, + "dependencies": { + "resolve": "1.1.7" + }, + "description": "resolve which handles browser field support in package.json", + "devDependencies": { + "mocha": "1.14.0" + }, + "files": [ + "index.js", + "empty.js" + ], + "homepage": "https://github.com/shtylman/node-browser-resolve#readme", + "keywords": [ + "resolve", + "browser" + ], + "license": "MIT", + "main": "index.js", + "name": "browser-resolve", + "repository": { + "type": "git", + "url": "git://github.com/shtylman/node-browser-resolve.git" + }, + "scripts": { + "test": "mocha --reporter list test/*.js" + }, + "version": "1.11.3" +} diff --git a/node_modules/bs-logger/package.json b/node_modules/bs-logger/package.json new file mode 100644 index 000000000..ad0ebe4d5 --- /dev/null +++ b/node_modules/bs-logger/package.json @@ -0,0 +1,112 @@ +{ + "_args": [ + [ + "bs-logger@0.2.6", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "bs-logger@0.2.6", + "_id": "bs-logger@0.2.6", + "_inBundle": false, + "_integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==", + "_location": "/bs-logger", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "bs-logger@0.2.6", + "name": "bs-logger", + "escapedName": "bs-logger", + "rawSpec": "0.2.6", + "saveSpec": null, + "fetchSpec": "0.2.6" + }, + "_requiredBy": [ + "/ts-jest" + ], + "_resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz", + "_spec": "0.2.6", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Huafu Gandon", + "email": "huafu.gandon@gmail.com" + }, + "bugs": { + "url": "https://github.com/huafu/bs-logger/issues" + }, + "dependencies": { + "fast-json-stable-stringify": "2.x" + }, + "description": "Bare simple logger for NodeJS", + "devDependencies": { + "@commitlint/cli": "7.x", + "@commitlint/config-conventional": "7.x", + "@types/jest": "23.x", + "@types/node": "10.x", + "conventional-changelog-cli": "2.x", + "husky": "0.x", + "jest": "23.x", + "lint-staged": "7.x", + "prettier": "1.x", + "rimraf": "2.x", + "ts-jest": "23.x", + "tslint": "5.x", + "tslint-config-prettier": "1.x", + "tslint-plugin-prettier": "2.x", + "typescript": "3.x" + }, + "engines": { + "node": ">= 6" + }, + "files": [ + "dist" + ], + "homepage": "https://github.com/huafu/bs-logger#readme", + "keywords": [ + "bare simple logger", + "simple logger", + "simple", + "logger", + "typescript", + "lib", + "library" + ], + "license": "MIT", + "lint-staged": { + "linters": { + "*.{ts,tsx}": [ + "tslint --fix", + "git add" + ] + } + }, + "main": "dist/index.js", + "name": "bs-logger", + "repository": { + "type": "git", + "url": "git+https://github.com/huafu/bs-logger.git" + }, + "scripts": { + "build": "tsc -p tsconfig.build.json", + "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0", + "clean": "rimraf dist coverage", + "commitmsg": "commitlint -E GIT_PARAMS", + "lint": "tslint --project tsconfig.json --format stylish", + "lint:fix": "tslint --fix --project tsconfig.json", + "postcommit": "git reset", + "posttest": "npm run typecheck && npm run lint", + "postversion": "git push && git push --tags", + "prebuild": "npm run clean", + "precommit": "lint-staged", + "prepare": "npm run build", + "prepublishOnly": "npm run test", + "preversion": "npm test", + "test": "jest --coverage", + "test:watch": "jest --watch", + "typecheck": "tsc -p . --noEmit", + "version": "npm run changelog && git add CHANGELOG.md" + }, + "types": "dist/index.d.ts", + "version": "0.2.6" +} diff --git a/node_modules/bser/package.json b/node_modules/bser/package.json new file mode 100644 index 000000000..cc607193d --- /dev/null +++ b/node_modules/bser/package.json @@ -0,0 +1,66 @@ +{ + "_args": [ + [ + "bser@2.1.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "bser@2.1.0", + "_id": "bser@2.1.0", + "_inBundle": false, + "_integrity": "sha512-8zsjWrQkkBoLK6uxASk1nJ2SKv97ltiGDo6A3wA0/yRPz+CwmEyDo0hUrhIuukG2JHpAl3bvFIixw2/3Hi0DOg==", + "_location": "/bser", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "bser@2.1.0", + "name": "bser", + "escapedName": "bser", + "rawSpec": "2.1.0", + "saveSpec": null, + "fetchSpec": "2.1.0" + }, + "_requiredBy": [ + "/fb-watchman" + ], + "_resolved": "https://registry.npmjs.org/bser/-/bser-2.1.0.tgz", + "_spec": "2.1.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Wez Furlong", + "email": "wez@fb.com", + "url": "http://wezfurlong.org" + }, + "bugs": { + "url": "https://github.com/facebook/watchman/issues" + }, + "dependencies": { + "node-int64": "^0.4.0" + }, + "description": "JavaScript implementation of the BSER Binary Serialization", + "directories": { + "test": "test" + }, + "files": [ + "index.js" + ], + "homepage": "https://facebook.github.io/watchman/docs/bser.html", + "keywords": [ + "bser", + "binary", + "protocol" + ], + "license": "Apache-2.0", + "main": "index.js", + "name": "bser", + "repository": { + "type": "git", + "url": "git+https://github.com/facebook/watchman.git" + }, + "scripts": { + "test": "node test/bser.js" + }, + "version": "2.1.0" +} diff --git a/node_modules/buffer-from/package.json b/node_modules/buffer-from/package.json new file mode 100644 index 000000000..347f32dc0 --- /dev/null +++ b/node_modules/buffer-from/package.json @@ -0,0 +1,57 @@ +{ + "_args": [ + [ + "buffer-from@1.1.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "buffer-from@1.1.1", + "_id": "buffer-from@1.1.1", + "_inBundle": false, + "_integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==", + "_location": "/buffer-from", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "buffer-from@1.1.1", + "name": "buffer-from", + "escapedName": "buffer-from", + "rawSpec": "1.1.1", + "saveSpec": null, + "fetchSpec": "1.1.1" + }, + "_requiredBy": [ + "/source-map-support", + "/ts-jest" + ], + "_resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", + "_spec": "1.1.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/LinusU/buffer-from/issues" + }, + "description": "A [ponyfill](https://ponyfill.com) for `Buffer.from`, uses native implementation if available.", + "devDependencies": { + "standard": "^7.1.2" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/LinusU/buffer-from#readme", + "keywords": [ + "buffer", + "buffer from" + ], + "license": "MIT", + "name": "buffer-from", + "repository": { + "type": "git", + "url": "git+https://github.com/LinusU/buffer-from.git" + }, + "scripts": { + "test": "standard && node test" + }, + "version": "1.1.1" +} diff --git a/node_modules/cache-base/package.json b/node_modules/cache-base/package.json new file mode 100644 index 000000000..eb159b89f --- /dev/null +++ b/node_modules/cache-base/package.json @@ -0,0 +1,122 @@ +{ + "_args": [ + [ + "cache-base@1.0.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "cache-base@1.0.1", + "_id": "cache-base@1.0.1", + "_inBundle": false, + "_integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "_location": "/cache-base", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "cache-base@1.0.1", + "name": "cache-base", + "escapedName": "cache-base", + "rawSpec": "1.0.1", + "saveSpec": null, + "fetchSpec": "1.0.1" + }, + "_requiredBy": [ + "/base" + ], + "_resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "_spec": "1.0.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/cache-base/issues" + }, + "contributors": [ + { + "name": "Jon Schlinkert", + "url": "http://twitter.com/jonschlinkert" + }, + { + "url": "https://github.com/wtgtybhertgeghgtwtg" + } + ], + "dependencies": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + }, + "description": "Basic object cache with `get`, `set`, `del`, and `has` methods for node.js/javascript projects.", + "devDependencies": { + "gulp-format-md": "^1.0.0", + "mocha": "^3.4.2" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/cache-base", + "keywords": [ + "base", + "cache", + "config", + "data", + "get", + "has", + "hash", + "hasown", + "object", + "set", + "store" + ], + "license": "MIT", + "main": "index.js", + "name": "cache-base", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/cache-base.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "run": true, + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "related": { + "highligh": "base", + "list": [ + "base-methods", + "get-value", + "has-value", + "option-cache", + "set-value", + "unset-value" + ] + }, + "reflinks": [ + "verb" + ], + "lint": { + "reflinks": true + } + }, + "version": "1.0.1" +} diff --git a/node_modules/caller-callsite/package.json b/node_modules/caller-callsite/package.json new file mode 100644 index 000000000..720a17908 --- /dev/null +++ b/node_modules/caller-callsite/package.json @@ -0,0 +1,80 @@ +{ + "_args": [ + [ + "caller-callsite@2.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "caller-callsite@2.0.0", + "_id": "caller-callsite@2.0.0", + "_inBundle": false, + "_integrity": "sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=", + "_location": "/caller-callsite", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "caller-callsite@2.0.0", + "name": "caller-callsite", + "escapedName": "caller-callsite", + "rawSpec": "2.0.0", + "saveSpec": null, + "fetchSpec": "2.0.0" + }, + "_requiredBy": [ + "/caller-path" + ], + "_resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", + "_spec": "2.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/caller-callsite/issues" + }, + "dependencies": { + "callsites": "^2.0.0" + }, + "description": "Get the callsite of the caller function", + "devDependencies": { + "ava": "*", + "xo": "*" + }, + "engines": { + "node": ">=4" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/caller-callsite#readme", + "keywords": [ + "caller", + "calling", + "module", + "parent", + "callsites", + "callsite", + "stacktrace", + "stack", + "trace", + "function", + "file" + ], + "license": "MIT", + "name": "caller-callsite", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/caller-callsite.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "2.0.0", + "xo": { + "esnext": true + } +} diff --git a/node_modules/caller-path/package.json b/node_modules/caller-path/package.json new file mode 100644 index 000000000..e2d6f01a0 --- /dev/null +++ b/node_modules/caller-path/package.json @@ -0,0 +1,81 @@ +{ + "_args": [ + [ + "caller-path@2.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "caller-path@2.0.0", + "_id": "caller-path@2.0.0", + "_inBundle": false, + "_integrity": "sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=", + "_location": "/caller-path", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "caller-path@2.0.0", + "name": "caller-path", + "escapedName": "caller-path", + "rawSpec": "2.0.0", + "saveSpec": null, + "fetchSpec": "2.0.0" + }, + "_requiredBy": [ + "/import-fresh" + ], + "_resolved": "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz", + "_spec": "2.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/caller-path/issues" + }, + "dependencies": { + "caller-callsite": "^2.0.0" + }, + "description": "Get the path of the caller function", + "devDependencies": { + "ava": "*", + "xo": "*" + }, + "engines": { + "node": ">=4" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/caller-path#readme", + "keywords": [ + "caller", + "calling", + "module", + "path", + "parent", + "callsites", + "callsite", + "stacktrace", + "stack", + "trace", + "function", + "file" + ], + "license": "MIT", + "name": "caller-path", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/caller-path.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "2.0.0", + "xo": { + "esnext": true + } +} diff --git a/node_modules/callsites/package.json b/node_modules/callsites/package.json new file mode 100644 index 000000000..82e576594 --- /dev/null +++ b/node_modules/callsites/package.json @@ -0,0 +1,76 @@ +{ + "_args": [ + [ + "callsites@2.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "callsites@2.0.0", + "_id": "callsites@2.0.0", + "_inBundle": false, + "_integrity": "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=", + "_location": "/callsites", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "callsites@2.0.0", + "name": "callsites", + "escapedName": "callsites", + "rawSpec": "2.0.0", + "saveSpec": null, + "fetchSpec": "2.0.0" + }, + "_requiredBy": [ + "/caller-callsite" + ], + "_resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz", + "_spec": "2.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/callsites/issues" + }, + "description": "Get callsites from the V8 stack trace API", + "devDependencies": { + "ava": "*", + "xo": "*" + }, + "engines": { + "node": ">=4" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/callsites#readme", + "keywords": [ + "stacktrace", + "v8", + "callsite", + "callsites", + "stack", + "trace", + "function", + "file", + "line", + "debug" + ], + "license": "MIT", + "name": "callsites", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/callsites.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "2.0.0", + "xo": { + "esnext": true + } +} diff --git a/node_modules/camelcase/package.json b/node_modules/camelcase/package.json new file mode 100644 index 000000000..03011bc8f --- /dev/null +++ b/node_modules/camelcase/package.json @@ -0,0 +1,80 @@ +{ + "_args": [ + [ + "camelcase@5.3.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "camelcase@5.3.1", + "_id": "camelcase@5.3.1", + "_inBundle": false, + "_integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "_location": "/camelcase", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "camelcase@5.3.1", + "name": "camelcase", + "escapedName": "camelcase", + "rawSpec": "5.3.1", + "saveSpec": null, + "fetchSpec": "5.3.1" + }, + "_requiredBy": [ + "/jest-validate", + "/yargs-parser" + ], + "_resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "_spec": "5.3.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/camelcase/issues" + }, + "description": "Convert a dash/dot/underscore/space separated string to camelCase or PascalCase: `foo-bar` → `fooBar`", + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.1", + "xo": "^0.24.0" + }, + "engines": { + "node": ">=6" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "homepage": "https://github.com/sindresorhus/camelcase#readme", + "keywords": [ + "camelcase", + "camel-case", + "camel", + "case", + "dash", + "hyphen", + "dot", + "underscore", + "separator", + "string", + "text", + "convert", + "pascalcase", + "pascal-case" + ], + "license": "MIT", + "name": "camelcase", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/camelcase.git" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "5.3.1" +} diff --git a/node_modules/capture-exit/package.json b/node_modules/capture-exit/package.json new file mode 100644 index 000000000..ad606cdb4 --- /dev/null +++ b/node_modules/capture-exit/package.json @@ -0,0 +1,67 @@ +{ + "_args": [ + [ + "capture-exit@2.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "capture-exit@2.0.0", + "_id": "capture-exit@2.0.0", + "_inBundle": false, + "_integrity": "sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==", + "_location": "/capture-exit", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "capture-exit@2.0.0", + "name": "capture-exit", + "escapedName": "capture-exit", + "rawSpec": "2.0.0", + "saveSpec": null, + "fetchSpec": "2.0.0" + }, + "_requiredBy": [ + "/sane" + ], + "_resolved": "https://registry.npmjs.org/capture-exit/-/capture-exit-2.0.0.tgz", + "_spec": "2.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Stefan Penner", + "email": "stefan.penner@gmail.com" + }, + "bugs": { + "url": "https://github.com/stefanpenner/capture-exit/issues" + }, + "dependencies": { + "rsvp": "^4.8.4" + }, + "description": "safely cleanup in signal handlers", + "devDependencies": { + "chai": "^4.2.0", + "execa": "1.0.0", + "mocha": "^5.2.0", + "ora": "^3.0.0" + }, + "engines": { + "node": "6.* || 8.* || >= 10.*" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/stefanpenner/capture-exit#readme", + "license": "ISC", + "main": "index.js", + "name": "capture-exit", + "repository": { + "type": "git", + "url": "git+https://github.com/stefanpenner/capture-exit.git" + }, + "scripts": { + "test": "mocha test", + "test:debug": "mocha debug test" + }, + "version": "2.0.0" +} diff --git a/node_modules/caseless/package.json b/node_modules/caseless/package.json new file mode 100644 index 000000000..8b2176238 --- /dev/null +++ b/node_modules/caseless/package.json @@ -0,0 +1,60 @@ +{ + "_args": [ + [ + "caseless@0.12.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "caseless@0.12.0", + "_id": "caseless@0.12.0", + "_inBundle": false, + "_integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=", + "_location": "/caseless", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "caseless@0.12.0", + "name": "caseless", + "escapedName": "caseless", + "rawSpec": "0.12.0", + "saveSpec": null, + "fetchSpec": "0.12.0" + }, + "_requiredBy": [ + "/request" + ], + "_resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "_spec": "0.12.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Mikeal Rogers", + "email": "mikeal.rogers@gmail.com" + }, + "bugs": { + "url": "https://github.com/mikeal/caseless/issues" + }, + "description": "Caseless object set/get/has, very useful when working with HTTP headers.", + "devDependencies": { + "tape": "^2.10.2" + }, + "homepage": "https://github.com/mikeal/caseless#readme", + "keywords": [ + "headers", + "http", + "caseless" + ], + "license": "Apache-2.0", + "main": "index.js", + "name": "caseless", + "repository": { + "type": "git", + "url": "git+https://github.com/mikeal/caseless.git" + }, + "scripts": { + "test": "node test.js" + }, + "test": "node test.js", + "version": "0.12.0" +} diff --git a/node_modules/chalk/package.json b/node_modules/chalk/package.json new file mode 100644 index 000000000..50275f188 --- /dev/null +++ b/node_modules/chalk/package.json @@ -0,0 +1,128 @@ +{ + "_args": [ + [ + "chalk@2.4.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "chalk@2.4.2", + "_id": "chalk@2.4.2", + "_inBundle": false, + "_integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "_location": "/chalk", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "chalk@2.4.2", + "name": "chalk", + "escapedName": "chalk", + "rawSpec": "2.4.2", + "saveSpec": null, + "fetchSpec": "2.4.2" + }, + "_requiredBy": [ + "/@babel/highlight", + "/@jest/console", + "/@jest/core", + "/@jest/reporters", + "/@jest/transform", + "/babel-jest", + "/husky", + "/jest-circus", + "/jest-config", + "/jest-diff", + "/jest-each", + "/jest-jasmine2", + "/jest-matcher-utils", + "/jest-message-util", + "/jest-resolve", + "/jest-runner", + "/jest-runtime", + "/jest-snapshot", + "/jest-util", + "/jest-validate", + "/jest-watcher", + "/jest/jest-cli" + ], + "_resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "_spec": "2.4.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/chalk/chalk/issues" + }, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "description": "Terminal string styling done right", + "devDependencies": { + "ava": "*", + "coveralls": "^3.0.0", + "execa": "^0.9.0", + "flow-bin": "^0.68.0", + "import-fresh": "^2.0.0", + "matcha": "^0.7.0", + "nyc": "^11.0.2", + "resolve-from": "^4.0.0", + "typescript": "^2.5.3", + "xo": "*" + }, + "engines": { + "node": ">=4" + }, + "files": [ + "index.js", + "templates.js", + "types/index.d.ts", + "index.js.flow" + ], + "homepage": "https://github.com/chalk/chalk#readme", + "keywords": [ + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "string", + "str", + "ansi", + "style", + "styles", + "tty", + "formatting", + "rgb", + "256", + "shell", + "xterm", + "log", + "logging", + "command-line", + "text" + ], + "license": "MIT", + "name": "chalk", + "repository": { + "type": "git", + "url": "git+https://github.com/chalk/chalk.git" + }, + "scripts": { + "bench": "matcha benchmark.js", + "coveralls": "nyc report --reporter=text-lcov | coveralls", + "test": "xo && tsc --project types && flow --max-warnings=0 && nyc ava" + }, + "types": "types/index.d.ts", + "version": "2.4.2", + "xo": { + "envs": [ + "node", + "mocha" + ], + "ignores": [ + "test/_flow.js" + ] + } +} diff --git a/node_modules/ci-info/package.json b/node_modules/ci-info/package.json new file mode 100644 index 000000000..3cfc804fe --- /dev/null +++ b/node_modules/ci-info/package.json @@ -0,0 +1,69 @@ +{ + "_args": [ + [ + "ci-info@2.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "ci-info@2.0.0", + "_id": "ci-info@2.0.0", + "_inBundle": false, + "_integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==", + "_location": "/ci-info", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "ci-info@2.0.0", + "name": "ci-info", + "escapedName": "ci-info", + "rawSpec": "2.0.0", + "saveSpec": null, + "fetchSpec": "2.0.0" + }, + "_requiredBy": [ + "/is-ci" + ], + "_resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "_spec": "2.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Thomas Watson Steen", + "email": "w@tson.dk", + "url": "https://twitter.com/wa7son" + }, + "bugs": { + "url": "https://github.com/watson/ci-info/issues" + }, + "coordinates": [ + 55.778231, + 12.593179 + ], + "dependencies": {}, + "description": "Get details about the current Continuous Integration environment", + "devDependencies": { + "clear-require": "^1.0.1", + "standard": "^12.0.1", + "tape": "^4.9.1" + }, + "homepage": "https://github.com/watson/ci-info", + "keywords": [ + "ci", + "continuous", + "integration", + "test", + "detect" + ], + "license": "MIT", + "main": "index.js", + "name": "ci-info", + "repository": { + "type": "git", + "url": "git+https://github.com/watson/ci-info.git" + }, + "scripts": { + "test": "standard && node test.js" + }, + "version": "2.0.0" +} diff --git a/node_modules/class-utils/node_modules/define-property/package.json b/node_modules/class-utils/node_modules/define-property/package.json new file mode 100644 index 000000000..8f7f682c6 --- /dev/null +++ b/node_modules/class-utils/node_modules/define-property/package.json @@ -0,0 +1,86 @@ +{ + "_args": [ + [ + "define-property@0.2.5", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "define-property@0.2.5", + "_id": "define-property@0.2.5", + "_inBundle": false, + "_integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "_location": "/class-utils/define-property", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "define-property@0.2.5", + "name": "define-property", + "escapedName": "define-property", + "rawSpec": "0.2.5", + "saveSpec": null, + "fetchSpec": "0.2.5" + }, + "_requiredBy": [ + "/class-utils" + ], + "_resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "_spec": "0.2.5", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/define-property/issues" + }, + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "description": "Define a non-enumerable property on an object.", + "devDependencies": { + "mocha": "*", + "should": "^7.0.4" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/define-property", + "keywords": [ + "define", + "define-property", + "enumerable", + "key", + "non", + "non-enumerable", + "object", + "prop", + "property", + "value" + ], + "license": "MIT", + "main": "index.js", + "name": "define-property", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/define-property.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "related": { + "list": [ + "mixin-deep", + "mixin-object", + "delegate-object", + "forward-object" + ] + } + }, + "version": "0.2.5" +} diff --git a/node_modules/class-utils/package.json b/node_modules/class-utils/package.json new file mode 100644 index 000000000..d58e7514c --- /dev/null +++ b/node_modules/class-utils/package.json @@ -0,0 +1,135 @@ +{ + "_args": [ + [ + "class-utils@0.3.6", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "class-utils@0.3.6", + "_id": "class-utils@0.3.6", + "_inBundle": false, + "_integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "_location": "/class-utils", + "_phantomChildren": { + "is-descriptor": "0.1.6" + }, + "_requested": { + "type": "version", + "registry": true, + "raw": "class-utils@0.3.6", + "name": "class-utils", + "escapedName": "class-utils", + "rawSpec": "0.3.6", + "saveSpec": null, + "fetchSpec": "0.3.6" + }, + "_requiredBy": [ + "/base" + ], + "_resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "_spec": "0.3.6", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/class-utils/issues" + }, + "contributors": [ + { + "name": "Brian Woodward", + "url": "https://twitter.com/doowb" + }, + { + "name": "Jon Schlinkert", + "url": "http://twitter.com/jonschlinkert" + }, + { + "url": "https://github.com/wtgtybhertgeghgtwtg" + } + ], + "dependencies": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "description": "Utils for working with JavaScript classes and prototype methods.", + "devDependencies": { + "gulp": "^3.9.1", + "gulp-eslint": "^2.0.0", + "gulp-format-md": "^0.1.7", + "gulp-istanbul": "^0.10.3", + "gulp-mocha": "^2.2.0", + "mocha": "^2.4.5", + "should": "^8.2.2", + "through2": "^2.0.1" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/class-utils", + "keywords": [ + "array", + "assign", + "class", + "copy", + "ctor", + "define", + "delegate", + "descriptor", + "extend", + "extends", + "inherit", + "inheritance", + "merge", + "method", + "object", + "prop", + "properties", + "property", + "prototype", + "util", + "utils" + ], + "license": "MIT", + "main": "index.js", + "name": "class-utils", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/class-utils.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "run": true, + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "related": { + "list": [ + "define-property", + "delegate-properties", + "is-descriptor" + ] + }, + "reflinks": [ + "verb" + ], + "lint": { + "reflinks": true + } + }, + "version": "0.3.6" +} diff --git a/node_modules/cliui/node_modules/ansi-regex/package.json b/node_modules/cliui/node_modules/ansi-regex/package.json new file mode 100644 index 000000000..ae4ca4845 --- /dev/null +++ b/node_modules/cliui/node_modules/ansi-regex/package.json @@ -0,0 +1,89 @@ +{ + "_args": [ + [ + "ansi-regex@3.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "ansi-regex@3.0.0", + "_id": "ansi-regex@3.0.0", + "_inBundle": false, + "_integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", + "_location": "/cliui/ansi-regex", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "ansi-regex@3.0.0", + "name": "ansi-regex", + "escapedName": "ansi-regex", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/cliui/strip-ansi" + ], + "_resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/chalk/ansi-regex/issues" + }, + "description": "Regular expression for matching ANSI escape codes", + "devDependencies": { + "ava": "*", + "xo": "*" + }, + "engines": { + "node": ">=4" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/chalk/ansi-regex#readme", + "keywords": [ + "ansi", + "styles", + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "string", + "tty", + "escape", + "formatting", + "rgb", + "256", + "shell", + "xterm", + "command-line", + "text", + "regex", + "regexp", + "re", + "match", + "test", + "find", + "pattern" + ], + "license": "MIT", + "name": "ansi-regex", + "repository": { + "type": "git", + "url": "git+https://github.com/chalk/ansi-regex.git" + }, + "scripts": { + "test": "xo && ava", + "view-supported": "node fixtures/view-codes.js" + }, + "version": "3.0.0" +} diff --git a/node_modules/cliui/node_modules/strip-ansi/package.json b/node_modules/cliui/node_modules/strip-ansi/package.json new file mode 100644 index 000000000..1882f83ab --- /dev/null +++ b/node_modules/cliui/node_modules/strip-ansi/package.json @@ -0,0 +1,88 @@ +{ + "_args": [ + [ + "strip-ansi@4.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "strip-ansi@4.0.0", + "_id": "strip-ansi@4.0.0", + "_inBundle": false, + "_integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "_location": "/cliui/strip-ansi", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "strip-ansi@4.0.0", + "name": "strip-ansi", + "escapedName": "strip-ansi", + "rawSpec": "4.0.0", + "saveSpec": null, + "fetchSpec": "4.0.0" + }, + "_requiredBy": [ + "/cliui" + ], + "_resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "_spec": "4.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/chalk/strip-ansi/issues" + }, + "dependencies": { + "ansi-regex": "^3.0.0" + }, + "description": "Strip ANSI escape codes", + "devDependencies": { + "ava": "*", + "xo": "*" + }, + "engines": { + "node": ">=4" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/chalk/strip-ansi#readme", + "keywords": [ + "strip", + "trim", + "remove", + "ansi", + "styles", + "color", + "colour", + "colors", + "terminal", + "console", + "string", + "tty", + "escape", + "formatting", + "rgb", + "256", + "shell", + "xterm", + "log", + "logging", + "command-line", + "text" + ], + "license": "MIT", + "name": "strip-ansi", + "repository": { + "type": "git", + "url": "git+https://github.com/chalk/strip-ansi.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "4.0.0" +} diff --git a/node_modules/cliui/package.json b/node_modules/cliui/package.json new file mode 100644 index 000000000..0eacca301 --- /dev/null +++ b/node_modules/cliui/package.json @@ -0,0 +1,103 @@ +{ + "_args": [ + [ + "cliui@4.1.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "cliui@4.1.0", + "_id": "cliui@4.1.0", + "_inBundle": false, + "_integrity": "sha512-4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ==", + "_location": "/cliui", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "cliui@4.1.0", + "name": "cliui", + "escapedName": "cliui", + "rawSpec": "4.1.0", + "saveSpec": null, + "fetchSpec": "4.1.0" + }, + "_requiredBy": [ + "/yargs" + ], + "_resolved": "https://registry.npmjs.org/cliui/-/cliui-4.1.0.tgz", + "_spec": "4.1.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Ben Coe", + "email": "ben@npmjs.com" + }, + "bugs": { + "url": "https://github.com/yargs/cliui/issues" + }, + "config": { + "blanket": { + "pattern": [ + "index.js" + ], + "data-cover-never": [ + "node_modules", + "test" + ], + "output-reporter": "spec" + } + }, + "dependencies": { + "string-width": "^2.1.1", + "strip-ansi": "^4.0.0", + "wrap-ansi": "^2.0.0" + }, + "description": "easily create complex multi-column command-line-interfaces", + "devDependencies": { + "chai": "^3.5.0", + "chalk": "^1.1.2", + "coveralls": "^2.11.8", + "mocha": "^3.0.0", + "nyc": "^10.0.0", + "standard": "^8.0.0", + "standard-version": "^3.0.0" + }, + "engine": { + "node": ">=4" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/yargs/cliui#readme", + "keywords": [ + "cli", + "command-line", + "layout", + "design", + "console", + "wrap", + "table" + ], + "license": "ISC", + "main": "index.js", + "name": "cliui", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/yargs/cliui.git" + }, + "scripts": { + "coverage": "nyc --reporter=text-lcov mocha | coveralls", + "pretest": "standard", + "release": "standard-version", + "test": "nyc mocha" + }, + "standard": { + "ignore": [ + "**/example/**" + ], + "globals": [ + "it" + ] + }, + "version": "4.1.0" +} diff --git a/node_modules/co/package.json b/node_modules/co/package.json new file mode 100644 index 000000000..dc91dd324 --- /dev/null +++ b/node_modules/co/package.json @@ -0,0 +1,71 @@ +{ + "_args": [ + [ + "co@4.6.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "co@4.6.0", + "_id": "co@4.6.0", + "_inBundle": false, + "_integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=", + "_location": "/co", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "co@4.6.0", + "name": "co", + "escapedName": "co", + "rawSpec": "4.6.0", + "saveSpec": null, + "fetchSpec": "4.6.0" + }, + "_requiredBy": [ + "/jest-circus", + "/jest-jasmine2" + ], + "_resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "_spec": "4.6.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/tj/co/issues" + }, + "description": "generator async control flow goodness", + "devDependencies": { + "browserify": "^10.0.0", + "istanbul-harmony": "0", + "mocha": "^2.0.0", + "mz": "^1.0.2" + }, + "engines": { + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/tj/co#readme", + "keywords": [ + "async", + "flow", + "generator", + "coro", + "coroutine" + ], + "license": "MIT", + "name": "co", + "repository": { + "type": "git", + "url": "git+https://github.com/tj/co.git" + }, + "scripts": { + "browserify": "browserify index.js -o ./co-browser.js -s co", + "prepublish": "npm run browserify", + "test": "mocha --harmony", + "test-cov": "node --harmony node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --reporter dot", + "test-travis": "node --harmony node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- --reporter dot" + }, + "version": "4.6.0" +} diff --git a/node_modules/code-point-at/package.json b/node_modules/code-point-at/package.json new file mode 100644 index 000000000..d804c5b35 --- /dev/null +++ b/node_modules/code-point-at/package.json @@ -0,0 +1,74 @@ +{ + "_args": [ + [ + "code-point-at@1.1.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "code-point-at@1.1.0", + "_id": "code-point-at@1.1.0", + "_inBundle": false, + "_integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", + "_location": "/code-point-at", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "code-point-at@1.1.0", + "name": "code-point-at", + "escapedName": "code-point-at", + "rawSpec": "1.1.0", + "saveSpec": null, + "fetchSpec": "1.1.0" + }, + "_requiredBy": [ + "/wrap-ansi/string-width" + ], + "_resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", + "_spec": "1.1.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/code-point-at/issues" + }, + "description": "ES2015 `String#codePointAt()` ponyfill", + "devDependencies": { + "ava": "*", + "xo": "^0.16.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/code-point-at#readme", + "keywords": [ + "es2015", + "ponyfill", + "polyfill", + "shim", + "string", + "str", + "code", + "point", + "at", + "codepoint", + "unicode" + ], + "license": "MIT", + "name": "code-point-at", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/code-point-at.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "1.1.0" +} diff --git a/node_modules/collection-visit/package.json b/node_modules/collection-visit/package.json new file mode 100644 index 000000000..dd172980b --- /dev/null +++ b/node_modules/collection-visit/package.json @@ -0,0 +1,119 @@ +{ + "_args": [ + [ + "collection-visit@1.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "collection-visit@1.0.0", + "_id": "collection-visit@1.0.0", + "_inBundle": false, + "_integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", + "_location": "/collection-visit", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "collection-visit@1.0.0", + "name": "collection-visit", + "escapedName": "collection-visit", + "rawSpec": "1.0.0", + "saveSpec": null, + "fetchSpec": "1.0.0" + }, + "_requiredBy": [ + "/cache-base" + ], + "_resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "_spec": "1.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/collection-visit/issues" + }, + "contributors": [ + { + "name": "Brian Woodward", + "email": "brian.woodward@gmail.com", + "url": "https://twitter.com/doowb" + }, + { + "name": "Jon Schlinkert", + "email": "jon.schlinkert@sellside.com", + "url": "http://twitter.com/jonschlinkert" + } + ], + "dependencies": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + }, + "description": "Visit a method over the items in an object, or map visit over the objects in an array.", + "devDependencies": { + "clone-deep": "^0.2.4", + "gulp": "^3.9.1", + "gulp-eslint": "^3.0.1", + "gulp-format-md": "^0.1.12", + "gulp-istanbul": "^1.1.1", + "gulp-mocha": "^3.0.0", + "mocha": "^3.2.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/collection-visit", + "keywords": [ + "array", + "arrays", + "collection", + "context", + "function", + "helper", + "invoke", + "key", + "map", + "method", + "object", + "objects", + "value", + "visit", + "visitor" + ], + "license": "MIT", + "main": "index.js", + "name": "collection-visit", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/collection-visit.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "related": { + "list": [ + "base-methods", + "map-visit", + "object-visit" + ] + }, + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "lint": { + "reflinks": true + } + }, + "version": "1.0.0" +} diff --git a/node_modules/color-convert/package.json b/node_modules/color-convert/package.json new file mode 100644 index 000000000..2c4059ced --- /dev/null +++ b/node_modules/color-convert/package.json @@ -0,0 +1,85 @@ +{ + "_args": [ + [ + "color-convert@1.9.3", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "color-convert@1.9.3", + "_id": "color-convert@1.9.3", + "_inBundle": false, + "_integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "_location": "/color-convert", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "color-convert@1.9.3", + "name": "color-convert", + "escapedName": "color-convert", + "rawSpec": "1.9.3", + "saveSpec": null, + "fetchSpec": "1.9.3" + }, + "_requiredBy": [ + "/ansi-styles" + ], + "_resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "_spec": "1.9.3", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Heather Arthur", + "email": "fayearthur@gmail.com" + }, + "bugs": { + "url": "https://github.com/Qix-/color-convert/issues" + }, + "dependencies": { + "color-name": "1.1.3" + }, + "description": "Plain color conversion functions", + "devDependencies": { + "chalk": "1.1.1", + "xo": "0.11.2" + }, + "files": [ + "index.js", + "conversions.js", + "css-keywords.js", + "route.js" + ], + "homepage": "https://github.com/Qix-/color-convert#readme", + "keywords": [ + "color", + "colour", + "convert", + "converter", + "conversion", + "rgb", + "hsl", + "hsv", + "hwb", + "cmyk", + "ansi", + "ansi16" + ], + "license": "MIT", + "name": "color-convert", + "repository": { + "type": "git", + "url": "git+https://github.com/Qix-/color-convert.git" + }, + "scripts": { + "pretest": "xo", + "test": "node test/basic.js" + }, + "version": "1.9.3", + "xo": { + "rules": { + "default-case": 0, + "no-inline-comments": 0, + "operator-linebreak": 0 + } + } +} diff --git a/node_modules/color-name/package.json b/node_modules/color-name/package.json new file mode 100644 index 000000000..ce24e9a3b --- /dev/null +++ b/node_modules/color-name/package.json @@ -0,0 +1,57 @@ +{ + "_args": [ + [ + "color-name@1.1.3", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "color-name@1.1.3", + "_id": "color-name@1.1.3", + "_inBundle": false, + "_integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "_location": "/color-name", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "color-name@1.1.3", + "name": "color-name", + "escapedName": "color-name", + "rawSpec": "1.1.3", + "saveSpec": null, + "fetchSpec": "1.1.3" + }, + "_requiredBy": [ + "/color-convert" + ], + "_resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "_spec": "1.1.3", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "DY", + "email": "dfcreative@gmail.com" + }, + "bugs": { + "url": "https://github.com/dfcreative/color-name/issues" + }, + "description": "A list of color names and its values", + "homepage": "https://github.com/dfcreative/color-name", + "keywords": [ + "color-name", + "color", + "color-keyword", + "keyword" + ], + "license": "MIT", + "main": "index.js", + "name": "color-name", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/dfcreative/color-name.git" + }, + "scripts": { + "test": "node test.js" + }, + "version": "1.1.3" +} diff --git a/node_modules/combined-stream/package.json b/node_modules/combined-stream/package.json new file mode 100644 index 000000000..a4e761af5 --- /dev/null +++ b/node_modules/combined-stream/package.json @@ -0,0 +1,62 @@ +{ + "_args": [ + [ + "combined-stream@1.0.8", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "combined-stream@1.0.8", + "_id": "combined-stream@1.0.8", + "_inBundle": false, + "_integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "_location": "/combined-stream", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "combined-stream@1.0.8", + "name": "combined-stream", + "escapedName": "combined-stream", + "rawSpec": "1.0.8", + "saveSpec": null, + "fetchSpec": "1.0.8" + }, + "_requiredBy": [ + "/form-data", + "/request" + ], + "_resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "_spec": "1.0.8", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Felix Geisendörfer", + "email": "felix@debuggable.com", + "url": "http://debuggable.com/" + }, + "bugs": { + "url": "https://github.com/felixge/node-combined-stream/issues" + }, + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "description": "A stream that emits multiple other streams one after another.", + "devDependencies": { + "far": "~0.0.7" + }, + "engines": { + "node": ">= 0.8" + }, + "homepage": "https://github.com/felixge/node-combined-stream", + "license": "MIT", + "main": "./lib/combined_stream", + "name": "combined-stream", + "repository": { + "type": "git", + "url": "git://github.com/felixge/node-combined-stream.git" + }, + "scripts": { + "test": "node test/run.js" + }, + "version": "1.0.8" +} diff --git a/node_modules/commander/package.json b/node_modules/commander/package.json new file mode 100644 index 000000000..b4acad63e --- /dev/null +++ b/node_modules/commander/package.json @@ -0,0 +1,75 @@ +{ + "_args": [ + [ + "commander@2.20.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "commander@2.20.0", + "_id": "commander@2.20.0", + "_inBundle": false, + "_integrity": "sha512-7j2y+40w61zy6YC2iRNpUe/NwhNyoXrYpHMrSunaMG64nRnaf96zO/KMQR4OyN/UnE5KLyEBnKHd4aG3rskjpQ==", + "_location": "/commander", + "_optional": true, + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "commander@2.20.0", + "name": "commander", + "escapedName": "commander", + "rawSpec": "2.20.0", + "saveSpec": null, + "fetchSpec": "2.20.0" + }, + "_requiredBy": [ + "/uglify-js" + ], + "_resolved": "https://registry.npmjs.org/commander/-/commander-2.20.0.tgz", + "_spec": "2.20.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "bugs": { + "url": "https://github.com/tj/commander.js/issues" + }, + "dependencies": {}, + "description": "the complete solution for node.js command-line programs", + "devDependencies": { + "@types/node": "^10.11.3", + "eslint": "^5.6.1", + "should": "^13.2.3", + "sinon": "^6.3.4", + "standard": "^12.0.1", + "ts-node": "^7.0.1", + "typescript": "^2.9.2" + }, + "files": [ + "index.js", + "typings/index.d.ts" + ], + "homepage": "https://github.com/tj/commander.js#readme", + "keywords": [ + "commander", + "command", + "option", + "parser" + ], + "license": "MIT", + "main": "index", + "name": "commander", + "repository": { + "type": "git", + "url": "git+https://github.com/tj/commander.js.git" + }, + "scripts": { + "lint": "eslint index.js", + "test": "node test/run.js && npm run test-typings", + "test-typings": "tsc -p tsconfig.json" + }, + "typings": "typings/index.d.ts", + "version": "2.20.0" +} diff --git a/node_modules/component-emitter/package.json b/node_modules/component-emitter/package.json new file mode 100644 index 000000000..f138c6073 --- /dev/null +++ b/node_modules/component-emitter/package.json @@ -0,0 +1,61 @@ +{ + "_args": [ + [ + "component-emitter@1.3.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "component-emitter@1.3.0", + "_id": "component-emitter@1.3.0", + "_inBundle": false, + "_integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", + "_location": "/component-emitter", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "component-emitter@1.3.0", + "name": "component-emitter", + "escapedName": "component-emitter", + "rawSpec": "1.3.0", + "saveSpec": null, + "fetchSpec": "1.3.0" + }, + "_requiredBy": [ + "/base", + "/cache-base" + ], + "_resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", + "_spec": "1.3.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/component/emitter/issues" + }, + "component": { + "scripts": { + "emitter/index.js": "index.js" + } + }, + "description": "Event emitter", + "devDependencies": { + "mocha": "*", + "should": "*" + }, + "files": [ + "index.js", + "LICENSE" + ], + "homepage": "https://github.com/component/emitter#readme", + "license": "MIT", + "main": "index.js", + "name": "component-emitter", + "repository": { + "type": "git", + "url": "git+https://github.com/component/emitter.git" + }, + "scripts": { + "test": "make test" + }, + "version": "1.3.0" +} diff --git a/node_modules/concat-map/package.json b/node_modules/concat-map/package.json new file mode 100644 index 000000000..a78dc69d6 --- /dev/null +++ b/node_modules/concat-map/package.json @@ -0,0 +1,92 @@ +{ + "_args": [ + [ + "concat-map@0.0.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "concat-map@0.0.1", + "_id": "concat-map@0.0.1", + "_inBundle": false, + "_integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "_location": "/concat-map", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "concat-map@0.0.1", + "name": "concat-map", + "escapedName": "concat-map", + "rawSpec": "0.0.1", + "saveSpec": null, + "fetchSpec": "0.0.1" + }, + "_requiredBy": [ + "/brace-expansion" + ], + "_resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "_spec": "0.0.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "bugs": { + "url": "https://github.com/substack/node-concat-map/issues" + }, + "description": "concatenative mapdashery", + "devDependencies": { + "tape": "~2.4.0" + }, + "directories": { + "example": "example", + "test": "test" + }, + "homepage": "https://github.com/substack/node-concat-map#readme", + "keywords": [ + "concat", + "concatMap", + "map", + "functional", + "higher-order" + ], + "license": "MIT", + "main": "index.js", + "name": "concat-map", + "repository": { + "type": "git", + "url": "git://github.com/substack/node-concat-map.git" + }, + "scripts": { + "test": "tape test/*.js" + }, + "testling": { + "files": "test/*.js", + "browsers": { + "ie": [ + 6, + 7, + 8, + 9 + ], + "ff": [ + 3.5, + 10, + 15 + ], + "chrome": [ + 10, + 22 + ], + "safari": [ + 5.1 + ], + "opera": [ + 12 + ] + } + }, + "version": "0.0.1" +} diff --git a/node_modules/convert-source-map/package.json b/node_modules/convert-source-map/package.json new file mode 100644 index 000000000..50d1ed38b --- /dev/null +++ b/node_modules/convert-source-map/package.json @@ -0,0 +1,74 @@ +{ + "_args": [ + [ + "convert-source-map@1.6.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "convert-source-map@1.6.0", + "_id": "convert-source-map@1.6.0", + "_inBundle": false, + "_integrity": "sha512-eFu7XigvxdZ1ETfbgPBohgyQ/Z++C0eEhTor0qRwBw9unw+L0/6V8wkSuGgzdThkiS5lSpdptOQPD8Ak40a+7A==", + "_location": "/convert-source-map", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "convert-source-map@1.6.0", + "name": "convert-source-map", + "escapedName": "convert-source-map", + "rawSpec": "1.6.0", + "saveSpec": null, + "fetchSpec": "1.6.0" + }, + "_requiredBy": [ + "/@babel/core", + "/@jest/transform" + ], + "_resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.6.0.tgz", + "_spec": "1.6.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Thorsten Lorenz", + "email": "thlorenz@gmx.de", + "url": "http://thlorenz.com" + }, + "bugs": { + "url": "https://github.com/thlorenz/convert-source-map/issues" + }, + "dependencies": { + "safe-buffer": "~5.1.1" + }, + "description": "Converts a source-map from/to different formats and allows adding/changing properties.", + "devDependencies": { + "inline-source-map": "~0.6.2", + "tap": "~9.0.0" + }, + "engine": { + "node": ">=0.6" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/thlorenz/convert-source-map", + "keywords": [ + "convert", + "sourcemap", + "source", + "map", + "browser", + "debug" + ], + "license": "MIT", + "main": "index.js", + "name": "convert-source-map", + "repository": { + "type": "git", + "url": "git://github.com/thlorenz/convert-source-map.git" + }, + "scripts": { + "test": "tap test/*.js --color" + }, + "version": "1.6.0" +} diff --git a/node_modules/copy-descriptor/package.json b/node_modules/copy-descriptor/package.json new file mode 100644 index 000000000..e955520cb --- /dev/null +++ b/node_modules/copy-descriptor/package.json @@ -0,0 +1,91 @@ +{ + "_args": [ + [ + "copy-descriptor@0.1.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "copy-descriptor@0.1.1", + "_id": "copy-descriptor@0.1.1", + "_inBundle": false, + "_integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=", + "_location": "/copy-descriptor", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "copy-descriptor@0.1.1", + "name": "copy-descriptor", + "escapedName": "copy-descriptor", + "rawSpec": "0.1.1", + "saveSpec": null, + "fetchSpec": "0.1.1" + }, + "_requiredBy": [ + "/object-copy" + ], + "_resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "_spec": "0.1.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/copy-descriptor/issues" + }, + "description": "Copy a descriptor from object A to object B", + "devDependencies": { + "gulp-format-md": "^0.1.9", + "mocha": "^2.5.3" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/copy-descriptor", + "keywords": [ + "copy", + "descriptor" + ], + "license": "MIT", + "main": "index.js", + "name": "copy-descriptor", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/copy-descriptor.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "related": { + "list": [ + "is-accessor-descriptor", + "is-data-descriptor", + "is-descriptor", + "is-plain-object", + "isobject" + ] + }, + "lint": { + "reflinks": true + }, + "reflinks": [ + "verb-readme-generator", + "verb" + ] + }, + "version": "0.1.1" +} diff --git a/node_modules/core-util-is/package.json b/node_modules/core-util-is/package.json new file mode 100644 index 000000000..9b485384d --- /dev/null +++ b/node_modules/core-util-is/package.json @@ -0,0 +1,67 @@ +{ + "_args": [ + [ + "core-util-is@1.0.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "core-util-is@1.0.2", + "_id": "core-util-is@1.0.2", + "_inBundle": false, + "_integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "_location": "/core-util-is", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "core-util-is@1.0.2", + "name": "core-util-is", + "escapedName": "core-util-is", + "rawSpec": "1.0.2", + "saveSpec": null, + "fetchSpec": "1.0.2" + }, + "_requiredBy": [ + "/readable-stream", + "/verror" + ], + "_resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "_spec": "1.0.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me/" + }, + "bugs": { + "url": "https://github.com/isaacs/core-util-is/issues" + }, + "description": "The `util.is*` functions introduced in Node v0.12.", + "devDependencies": { + "tap": "^2.3.0" + }, + "homepage": "https://github.com/isaacs/core-util-is#readme", + "keywords": [ + "util", + "isBuffer", + "isArray", + "isNumber", + "isString", + "isRegExp", + "isThis", + "isThat", + "polyfill" + ], + "license": "MIT", + "main": "lib/util.js", + "name": "core-util-is", + "repository": { + "type": "git", + "url": "git://github.com/isaacs/core-util-is.git" + }, + "scripts": { + "test": "tap test.js" + }, + "version": "1.0.2" +} diff --git a/node_modules/cosmiconfig/package.json b/node_modules/cosmiconfig/package.json new file mode 100644 index 000000000..5aa2970c6 --- /dev/null +++ b/node_modules/cosmiconfig/package.json @@ -0,0 +1,152 @@ +{ + "_args": [ + [ + "cosmiconfig@5.2.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "cosmiconfig@5.2.1", + "_id": "cosmiconfig@5.2.1", + "_inBundle": false, + "_integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", + "_location": "/cosmiconfig", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "cosmiconfig@5.2.1", + "name": "cosmiconfig", + "escapedName": "cosmiconfig", + "rawSpec": "5.2.1", + "saveSpec": null, + "fetchSpec": "5.2.1" + }, + "_requiredBy": [ + "/husky" + ], + "_resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", + "_spec": "5.2.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "David Clark", + "email": "david.dave.clark@gmail.com" + }, + "babel": { + "plugins": [ + "transform-flow-strip-types" + ] + }, + "bugs": { + "url": "https://github.com/davidtheclark/cosmiconfig/issues" + }, + "contributors": [ + { + "name": "Bogdan Chadkin", + "email": "trysound@yandex.ru" + }, + { + "name": "Suhas Karanth", + "email": "sudo.suhas@gmail.com" + } + ], + "dependencies": { + "import-fresh": "^2.0.0", + "is-directory": "^0.3.1", + "js-yaml": "^3.13.1", + "parse-json": "^4.0.0" + }, + "description": "Find and load configuration from a package.json property, rc file, or CommonJS module", + "devDependencies": { + "babel-eslint": "^8.0.3", + "babel-plugin-transform-flow-strip-types": "^6.22.0", + "del": "^3.0.0", + "eslint": "^4.12.1", + "eslint-config-davidtheclark-node": "^0.2.2", + "eslint-config-prettier": "^2.9.0", + "eslint-plugin-flowtype": "^2.39.1", + "eslint-plugin-node": "^5.2.1", + "flow-bin": "^0.68.0", + "flow-remove-types": "^1.2.3", + "husky": "^0.14.3", + "jest": "^21.2.1", + "lint-staged": "^6.0.0", + "make-dir": "^1.2.0", + "parent-module": "^0.1.0", + "prettier": "^1.8.2", + "remark-cli": "^5.0.0", + "remark-preset-davidtheclark": "^0.7.0" + }, + "engines": { + "node": ">=4" + }, + "files": [ + "dist" + ], + "homepage": "https://github.com/davidtheclark/cosmiconfig#readme", + "jest": { + "testEnvironment": "node", + "collectCoverageFrom": [ + "src/*.js" + ], + "coverageReporters": [ + "text", + "html", + "lcov" + ], + "coverageThreshold": { + "global": { + "branches": 100, + "functions": 100, + "lines": 100, + "statements": 100 + } + }, + "resetModules": true, + "resetMocks": true + }, + "keywords": [ + "load", + "configuration", + "config" + ], + "license": "MIT", + "lint-staged": { + "*.js": [ + "eslint --fix", + "prettier --write", + "git add" + ], + "*.md": [ + "npm run lint:md-partial", + "git add" + ] + }, + "main": "dist/index.js", + "name": "cosmiconfig", + "prettier": { + "trailingComma": "es5", + "singleQuote": true, + "printWidth": 80, + "tabWidth": 2 + }, + "repository": { + "type": "git", + "url": "git+https://github.com/davidtheclark/cosmiconfig.git" + }, + "scripts": { + "build": "flow-remove-types src --out-dir dist --quiet", + "coverage": "jest --coverage --coverageReporters=html --coverageReporters=text", + "format": "prettier --write \"{src/*.js,test/*.js}\"", + "lint": "eslint . && npm run lint:md", + "lint:fix": "eslint . --fix", + "lint:md": "npm run lint:md-partial -- *.md", + "lint:md-partial": "remark -u remark-preset-davidtheclark --frail --quiet --no-stdout --output --", + "precommit": "lint-staged && jest && flow check", + "prepublishOnly": "npm run build", + "pretest": "npm run lint && flow check", + "test": "jest --coverage", + "test:watch": "jest --watch" + }, + "version": "5.2.1" +} diff --git a/node_modules/cross-spawn/node_modules/semver/package.json b/node_modules/cross-spawn/node_modules/semver/package.json new file mode 100644 index 000000000..fbdc1ac80 --- /dev/null +++ b/node_modules/cross-spawn/node_modules/semver/package.json @@ -0,0 +1,64 @@ +{ + "_args": [ + [ + "semver@5.7.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "semver@5.7.0", + "_id": "semver@5.7.0", + "_inBundle": false, + "_integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", + "_location": "/cross-spawn/semver", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "semver@5.7.0", + "name": "semver", + "escapedName": "semver", + "rawSpec": "5.7.0", + "saveSpec": null, + "fetchSpec": "5.7.0" + }, + "_requiredBy": [ + "/cross-spawn" + ], + "_resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", + "_spec": "5.7.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bin": { + "semver": "./bin/semver" + }, + "bugs": { + "url": "https://github.com/npm/node-semver/issues" + }, + "description": "The semantic version parser used by npm.", + "devDependencies": { + "tap": "^13.0.0-rc.18" + }, + "files": [ + "bin", + "range.bnf", + "semver.js" + ], + "homepage": "https://github.com/npm/node-semver#readme", + "license": "ISC", + "main": "semver.js", + "name": "semver", + "repository": { + "type": "git", + "url": "git+https://github.com/npm/node-semver.git" + }, + "scripts": { + "postpublish": "git push origin --all; git push origin --tags", + "postversion": "npm publish", + "preversion": "npm test", + "test": "tap" + }, + "tap": { + "check-coverage": true + }, + "version": "5.7.0" +} diff --git a/node_modules/cross-spawn/package.json b/node_modules/cross-spawn/package.json new file mode 100644 index 000000000..65a0658ce --- /dev/null +++ b/node_modules/cross-spawn/package.json @@ -0,0 +1,111 @@ +{ + "_args": [ + [ + "cross-spawn@6.0.5", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "cross-spawn@6.0.5", + "_id": "cross-spawn@6.0.5", + "_inBundle": false, + "_integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "_location": "/cross-spawn", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "cross-spawn@6.0.5", + "name": "cross-spawn", + "escapedName": "cross-spawn", + "rawSpec": "6.0.5", + "saveSpec": null, + "fetchSpec": "6.0.5" + }, + "_requiredBy": [ + "/execa" + ], + "_resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "_spec": "6.0.5", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "André Cruz", + "email": "andre@moxy.studio" + }, + "bugs": { + "url": "https://github.com/moxystudio/node-cross-spawn/issues" + }, + "commitlint": { + "extends": [ + "@commitlint/config-conventional" + ] + }, + "dependencies": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "description": "Cross platform child_process#spawn and child_process#spawnSync", + "devDependencies": { + "@commitlint/cli": "^6.0.0", + "@commitlint/config-conventional": "^6.0.2", + "babel-core": "^6.26.0", + "babel-jest": "^22.1.0", + "babel-preset-moxy": "^2.2.1", + "eslint": "^4.3.0", + "eslint-config-moxy": "^5.0.0", + "husky": "^0.14.3", + "jest": "^22.0.0", + "lint-staged": "^7.0.0", + "mkdirp": "^0.5.1", + "regenerator-runtime": "^0.11.1", + "rimraf": "^2.6.2", + "standard-version": "^4.2.0" + }, + "engines": { + "node": ">=4.8" + }, + "files": [ + "lib" + ], + "homepage": "https://github.com/moxystudio/node-cross-spawn", + "keywords": [ + "spawn", + "spawnSync", + "windows", + "cross-platform", + "path-ext", + "shebang", + "cmd", + "execute" + ], + "license": "MIT", + "lint-staged": { + "*.js": [ + "eslint --fix", + "git add" + ] + }, + "main": "index.js", + "name": "cross-spawn", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/moxystudio/node-cross-spawn.git" + }, + "scripts": { + "commitmsg": "commitlint -e $GIT_PARAMS", + "lint": "eslint .", + "precommit": "lint-staged", + "prerelease": "npm t && npm run lint", + "release": "standard-version", + "test": "jest --env node --coverage" + }, + "standard-version": { + "scripts": { + "posttag": "git push --follow-tags origin master && npm publish" + } + }, + "version": "6.0.5" +} diff --git a/node_modules/cssom/package.json b/node_modules/cssom/package.json new file mode 100644 index 000000000..02568e616 --- /dev/null +++ b/node_modules/cssom/package.json @@ -0,0 +1,58 @@ +{ + "_args": [ + [ + "cssom@0.3.8", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "cssom@0.3.8", + "_id": "cssom@0.3.8", + "_inBundle": false, + "_integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", + "_location": "/cssom", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "cssom@0.3.8", + "name": "cssom", + "escapedName": "cssom", + "rawSpec": "0.3.8", + "saveSpec": null, + "fetchSpec": "0.3.8" + }, + "_requiredBy": [ + "/cssstyle", + "/jsdom" + ], + "_resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "_spec": "0.3.8", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Nikita Vasilyev", + "email": "me@elv1s.ru" + }, + "bugs": { + "url": "https://github.com/NV/CSSOM/issues" + }, + "description": "CSS Object Model implementation and CSS parser", + "files": [ + "lib/" + ], + "homepage": "https://github.com/NV/CSSOM#readme", + "keywords": [ + "CSS", + "CSSOM", + "parser", + "styleSheet" + ], + "license": "MIT", + "main": "./lib/index.js", + "name": "cssom", + "repository": { + "type": "git", + "url": "git+https://github.com/NV/CSSOM.git" + }, + "version": "0.3.8" +} diff --git a/node_modules/cssstyle/package.json b/node_modules/cssstyle/package.json new file mode 100644 index 000000000..81989e88e --- /dev/null +++ b/node_modules/cssstyle/package.json @@ -0,0 +1,109 @@ +{ + "_args": [ + [ + "cssstyle@1.4.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "cssstyle@1.4.0", + "_id": "cssstyle@1.4.0", + "_inBundle": false, + "_integrity": "sha512-GBrLZYZ4X4x6/QEoBnIrqb8B/f5l4+8me2dkom/j1Gtbxy0kBv6OGzKuAsGM75bkGwGAFkt56Iwg28S3XTZgSA==", + "_location": "/cssstyle", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "cssstyle@1.4.0", + "name": "cssstyle", + "escapedName": "cssstyle", + "rawSpec": "1.4.0", + "saveSpec": null, + "fetchSpec": "1.4.0" + }, + "_requiredBy": [ + "/jsdom" + ], + "_resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-1.4.0.tgz", + "_spec": "1.4.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/jsakas/CSSStyleDeclaration/issues" + }, + "contributors": [ + { + "name": "Chad Walker", + "email": "chad@chad-cat-lore-eddie.com", + "url": "https://github.com/chad3814" + }, + { + "name": "Rafał Ruciński", + "email": "fatfisz@gmail.com", + "url": "https://fatfisz.com" + }, + { + "name": "Nikita Vasilyev", + "email": "me@elv1s.ru" + }, + { + "name": "Davide P. Cervone" + }, + { + "name": "Forbes Lindesay" + } + ], + "dependencies": { + "cssom": "0.3.x" + }, + "description": "CSSStyleDeclaration Object Model implementation", + "devDependencies": { + "babel-generator": "~6.26.1", + "babel-traverse": "~6.26.0", + "babel-types": "~6.26.0", + "babylon": "~6.18.0", + "eslint": "5.13.0", + "eslint-config-prettier": "4.0.0", + "eslint-plugin-prettier": "3.0.1", + "nodeunit": "~0.11.3", + "npm-run-all": "^4.1.5", + "prettier": "1.16.4", + "request": "^2.88.0", + "resolve": "~1.8.1" + }, + "directories": { + "lib": "./lib" + }, + "homepage": "https://github.com/jsakas/CSSStyleDeclaration", + "keywords": [ + "CSS", + "CSSStyleDeclaration", + "StyleSheet" + ], + "license": "MIT", + "main": "./lib/CSSStyleDeclaration.js", + "maintainers": [ + { + "name": "Jon Sakas", + "email": "jon.sakas@gmail.com", + "url": "https://jon.sakas.co/" + } + ], + "name": "cssstyle", + "repository": { + "type": "git", + "url": "git+https://github.com/jsakas/CSSStyleDeclaration.git" + }, + "scripts": { + "download": "node ./scripts/download_latest_properties.js && eslint lib/allProperties.js --fix", + "generate": "run-p generate:*", + "generate:implemented_properties": "node ./scripts/generate_implemented_properties.js", + "generate:properties": "node ./scripts/generate_properties.js", + "lint": "npm run generate && eslint . --max-warnings 0", + "lint:fix": "eslint . --fix --max-warnings 0", + "prepublishOnly": "npm run test-ci", + "test": "npm run generate && nodeunit tests", + "test-ci": "npm run lint && npm run test" + }, + "version": "1.4.0" +} diff --git a/node_modules/dashdash/package.json b/node_modules/dashdash/package.json new file mode 100644 index 000000000..d8e5b9808 --- /dev/null +++ b/node_modules/dashdash/package.json @@ -0,0 +1,71 @@ +{ + "_args": [ + [ + "dashdash@1.14.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "dashdash@1.14.1", + "_id": "dashdash@1.14.1", + "_inBundle": false, + "_integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", + "_location": "/dashdash", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "dashdash@1.14.1", + "name": "dashdash", + "escapedName": "dashdash", + "rawSpec": "1.14.1", + "saveSpec": null, + "fetchSpec": "1.14.1" + }, + "_requiredBy": [ + "/sshpk" + ], + "_resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "_spec": "1.14.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Trent Mick", + "email": "trentm@gmail.com", + "url": "http://trentm.com" + }, + "bugs": { + "url": "https://github.com/trentm/node-dashdash/issues" + }, + "dependencies": { + "assert-plus": "^1.0.0" + }, + "description": "A light, featureful and explicit option parsing library.", + "devDependencies": { + "nodeunit": "0.9.x" + }, + "engines": { + "node": ">=0.10" + }, + "homepage": "https://github.com/trentm/node-dashdash#readme", + "keywords": [ + "option", + "parser", + "parsing", + "cli", + "command", + "args", + "bash", + "completion" + ], + "license": "MIT", + "main": "./lib/dashdash.js", + "name": "dashdash", + "repository": { + "type": "git", + "url": "git://github.com/trentm/node-dashdash.git" + }, + "scripts": { + "test": "nodeunit test/*.test.js" + }, + "version": "1.14.1" +} diff --git a/node_modules/data-urls/node_modules/whatwg-url/package.json b/node_modules/data-urls/node_modules/whatwg-url/package.json new file mode 100644 index 000000000..c04cd4568 --- /dev/null +++ b/node_modules/data-urls/node_modules/whatwg-url/package.json @@ -0,0 +1,94 @@ +{ + "_args": [ + [ + "whatwg-url@7.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "whatwg-url@7.0.0", + "_id": "whatwg-url@7.0.0", + "_inBundle": false, + "_integrity": "sha512-37GeVSIJ3kn1JgKyjiYNmSLP1yzbpb29jdmwBSgkD9h40/hyrR/OifpVUndji3tmwGgD8qpw7iQu3RSbCrBpsQ==", + "_location": "/data-urls/whatwg-url", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "whatwg-url@7.0.0", + "name": "whatwg-url", + "escapedName": "whatwg-url", + "rawSpec": "7.0.0", + "saveSpec": null, + "fetchSpec": "7.0.0" + }, + "_requiredBy": [ + "/data-urls" + ], + "_resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.0.0.tgz", + "_spec": "7.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sebastian Mayr", + "email": "github@smayr.name" + }, + "bugs": { + "url": "https://github.com/jsdom/whatwg-url/issues" + }, + "dependencies": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + }, + "description": "An implementation of the WHATWG URL Standard's URL API and parsing machinery", + "devDependencies": { + "browserify": "^16.2.2", + "domexception": "^1.0.1", + "eslint": "^5.4.0", + "jest": "^23.5.0", + "jsdom": "^11.12.0", + "recast": "^0.15.3", + "request": "^2.88.0", + "webidl2js": "^9.0.1" + }, + "files": [ + "lib/" + ], + "homepage": "https://github.com/jsdom/whatwg-url#readme", + "jest": { + "collectCoverageFrom": [ + "lib/**/*.js", + "!lib/utils.js" + ], + "coverageDirectory": "coverage", + "coverageReporters": [ + "lcov", + "text-summary" + ], + "testEnvironment": "node", + "testMatch": [ + "/test/**/*.js" + ], + "testPathIgnorePatterns": [ + "^/test/testharness.js$", + "^/test/web-platform-tests/" + ] + }, + "license": "MIT", + "main": "lib/public-api.js", + "name": "whatwg-url", + "repository": { + "type": "git", + "url": "git+https://github.com/jsdom/whatwg-url.git" + }, + "scripts": { + "build": "node scripts/transform.js && node scripts/convert-idl.js", + "build-live-viewer": "browserify lib/public-api.js --standalone whatwgURL > live-viewer/whatwg-url.js", + "coverage": "jest --coverage", + "lint": "eslint .", + "prepublish": "node scripts/transform.js && node scripts/convert-idl.js", + "pretest": "node scripts/get-latest-platform-tests.js && node scripts/transform.js && node scripts/convert-idl.js", + "test": "jest" + }, + "version": "7.0.0" +} diff --git a/node_modules/data-urls/package.json b/node_modules/data-urls/package.json new file mode 100644 index 000000000..31fa52e4e --- /dev/null +++ b/node_modules/data-urls/package.json @@ -0,0 +1,94 @@ +{ + "_args": [ + [ + "data-urls@1.1.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "data-urls@1.1.0", + "_id": "data-urls@1.1.0", + "_inBundle": false, + "_integrity": "sha512-YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6/t52odI64KP2YvFpkDOi3eQ==", + "_location": "/data-urls", + "_phantomChildren": { + "lodash.sortby": "4.7.0", + "tr46": "1.0.1", + "webidl-conversions": "4.0.2" + }, + "_requested": { + "type": "version", + "registry": true, + "raw": "data-urls@1.1.0", + "name": "data-urls", + "escapedName": "data-urls", + "rawSpec": "1.1.0", + "saveSpec": null, + "fetchSpec": "1.1.0" + }, + "_requiredBy": [ + "/jsdom" + ], + "_resolved": "https://registry.npmjs.org/data-urls/-/data-urls-1.1.0.tgz", + "_spec": "1.1.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Domenic Denicola", + "email": "d@domenic.me", + "url": "https://domenic.me/" + }, + "bugs": { + "url": "https://github.com/jsdom/data-urls/issues" + }, + "dependencies": { + "abab": "^2.0.0", + "whatwg-mimetype": "^2.2.0", + "whatwg-url": "^7.0.0" + }, + "description": "Parses data: URLs", + "devDependencies": { + "eslint": "^5.7.0", + "jest": "^23.6.0", + "request": "^2.88.0" + }, + "files": [ + "lib/" + ], + "homepage": "https://github.com/jsdom/data-urls#readme", + "jest": { + "coverageDirectory": "coverage", + "coverageReporters": [ + "lcov", + "text-summary" + ], + "testEnvironment": "node", + "testMatch": [ + "/test/**/*.js" + ], + "coveragePathIgnorePatterns": [ + "/node_modules/(?!(abab/lib/atob.js))" + ] + }, + "keywords": [ + "data url", + "data uri", + "data:", + "http", + "fetch", + "whatwg" + ], + "license": "MIT", + "main": "lib/parser.js", + "name": "data-urls", + "repository": { + "type": "git", + "url": "git+https://github.com/jsdom/data-urls.git" + }, + "scripts": { + "coverage": "jest --coverage", + "lint": "eslint .", + "pretest": "node scripts/get-latest-platform-tests.js", + "test": "jest" + }, + "version": "1.1.0" +} diff --git a/node_modules/debug/package.json b/node_modules/debug/package.json new file mode 100644 index 000000000..065a509d9 --- /dev/null +++ b/node_modules/debug/package.json @@ -0,0 +1,93 @@ +{ + "_args": [ + [ + "debug@2.6.9", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "debug@2.6.9", + "_id": "debug@2.6.9", + "_inBundle": false, + "_integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "_location": "/debug", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "debug@2.6.9", + "name": "debug", + "escapedName": "debug", + "rawSpec": "2.6.9", + "saveSpec": null, + "fetchSpec": "2.6.9" + }, + "_requiredBy": [ + "/expand-brackets", + "/snapdragon" + ], + "_resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "_spec": "2.6.9", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "browser": "./src/browser.js", + "bugs": { + "url": "https://github.com/visionmedia/debug/issues" + }, + "component": { + "scripts": { + "debug/index.js": "browser.js", + "debug/debug.js": "debug.js" + } + }, + "contributors": [ + { + "name": "Nathan Rajlich", + "email": "nathan@tootallnate.net", + "url": "http://n8.io" + }, + { + "name": "Andrew Rhyne", + "email": "rhyneandrew@gmail.com" + } + ], + "dependencies": { + "ms": "2.0.0" + }, + "description": "small debugging utility", + "devDependencies": { + "browserify": "9.0.3", + "chai": "^3.5.0", + "concurrently": "^3.1.0", + "coveralls": "^2.11.15", + "eslint": "^3.12.1", + "istanbul": "^0.4.5", + "karma": "^1.3.0", + "karma-chai": "^0.1.0", + "karma-mocha": "^1.3.0", + "karma-phantomjs-launcher": "^1.0.2", + "karma-sinon": "^1.0.5", + "mocha": "^3.2.0", + "mocha-lcov-reporter": "^1.2.0", + "rimraf": "^2.5.4", + "sinon": "^1.17.6", + "sinon-chai": "^2.8.0" + }, + "homepage": "https://github.com/visionmedia/debug#readme", + "keywords": [ + "debug", + "log", + "debugger" + ], + "license": "MIT", + "main": "./src/index.js", + "name": "debug", + "repository": { + "type": "git", + "url": "git://github.com/visionmedia/debug.git" + }, + "version": "2.6.9" +} diff --git a/node_modules/decamelize/package.json b/node_modules/decamelize/package.json new file mode 100644 index 000000000..29d3fa19d --- /dev/null +++ b/node_modules/decamelize/package.json @@ -0,0 +1,75 @@ +{ + "_args": [ + [ + "decamelize@1.2.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "decamelize@1.2.0", + "_id": "decamelize@1.2.0", + "_inBundle": false, + "_integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", + "_location": "/decamelize", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "decamelize@1.2.0", + "name": "decamelize", + "escapedName": "decamelize", + "rawSpec": "1.2.0", + "saveSpec": null, + "fetchSpec": "1.2.0" + }, + "_requiredBy": [ + "/yargs", + "/yargs-parser" + ], + "_resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "_spec": "1.2.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/decamelize/issues" + }, + "description": "Convert a camelized string into a lowercased one with a custom separator: unicornRainbow → unicorn_rainbow", + "devDependencies": { + "ava": "*", + "xo": "*" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/decamelize#readme", + "keywords": [ + "decamelize", + "decamelcase", + "camelcase", + "lowercase", + "case", + "dash", + "hyphen", + "string", + "str", + "text", + "convert" + ], + "license": "MIT", + "name": "decamelize", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/decamelize.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "1.2.0" +} diff --git a/node_modules/decode-uri-component/package.json b/node_modules/decode-uri-component/package.json new file mode 100644 index 000000000..5937f1f02 --- /dev/null +++ b/node_modules/decode-uri-component/package.json @@ -0,0 +1,73 @@ +{ + "_args": [ + [ + "decode-uri-component@0.2.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "decode-uri-component@0.2.0", + "_id": "decode-uri-component@0.2.0", + "_inBundle": false, + "_integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", + "_location": "/decode-uri-component", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "decode-uri-component@0.2.0", + "name": "decode-uri-component", + "escapedName": "decode-uri-component", + "rawSpec": "0.2.0", + "saveSpec": null, + "fetchSpec": "0.2.0" + }, + "_requiredBy": [ + "/source-map-resolve" + ], + "_resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", + "_spec": "0.2.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sam Verschueren", + "email": "sam.verschueren@gmail.com", + "url": "github.com/SamVerschueren" + }, + "bugs": { + "url": "https://github.com/SamVerschueren/decode-uri-component/issues" + }, + "description": "A better decodeURIComponent", + "devDependencies": { + "ava": "^0.17.0", + "coveralls": "^2.13.1", + "nyc": "^10.3.2", + "xo": "^0.16.0" + }, + "engines": { + "node": ">=0.10" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/SamVerschueren/decode-uri-component#readme", + "keywords": [ + "decode", + "uri", + "component", + "decodeuricomponent", + "components", + "decoder", + "url" + ], + "license": "MIT", + "name": "decode-uri-component", + "repository": { + "type": "git", + "url": "git+https://github.com/SamVerschueren/decode-uri-component.git" + }, + "scripts": { + "coveralls": "nyc report --reporter=text-lcov | coveralls", + "test": "xo && nyc ava" + }, + "version": "0.2.0" +} diff --git a/node_modules/deep-is/package.json b/node_modules/deep-is/package.json new file mode 100644 index 000000000..68bb5b1f8 --- /dev/null +++ b/node_modules/deep-is/package.json @@ -0,0 +1,94 @@ +{ + "_args": [ + [ + "deep-is@0.1.3", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "deep-is@0.1.3", + "_id": "deep-is@0.1.3", + "_inBundle": false, + "_integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=", + "_location": "/deep-is", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "deep-is@0.1.3", + "name": "deep-is", + "escapedName": "deep-is", + "rawSpec": "0.1.3", + "saveSpec": null, + "fetchSpec": "0.1.3" + }, + "_requiredBy": [ + "/optionator" + ], + "_resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", + "_spec": "0.1.3", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Thorsten Lorenz", + "email": "thlorenz@gmx.de", + "url": "http://thlorenz.com" + }, + "bugs": { + "url": "https://github.com/thlorenz/deep-is/issues" + }, + "description": "node's assert.deepEqual algorithm except for NaN being equal to NaN", + "devDependencies": { + "tape": "~1.0.2" + }, + "directories": { + "lib": ".", + "example": "example", + "test": "test" + }, + "homepage": "https://github.com/thlorenz/deep-is#readme", + "keywords": [ + "equality", + "equal", + "compare" + ], + "license": { + "type": "MIT", + "url": "https://github.com/thlorenz/deep-is/blob/master/LICENSE" + }, + "main": "index.js", + "name": "deep-is", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/thlorenz/deep-is.git" + }, + "scripts": { + "test": "tape test/*.js" + }, + "testling": { + "files": "test/*.js", + "browsers": { + "ie": [ + 6, + 7, + 8, + 9 + ], + "ff": [ + 3.5, + 10, + 15 + ], + "chrome": [ + 10, + 22 + ], + "safari": [ + 5.1 + ], + "opera": [ + 12 + ] + } + }, + "version": "0.1.3" +} diff --git a/node_modules/define-properties/package.json b/node_modules/define-properties/package.json new file mode 100644 index 000000000..15fdfbf1d --- /dev/null +++ b/node_modules/define-properties/package.json @@ -0,0 +1,101 @@ +{ + "_args": [ + [ + "define-properties@1.1.3", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "define-properties@1.1.3", + "_id": "define-properties@1.1.3", + "_inBundle": false, + "_integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "_location": "/define-properties", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "define-properties@1.1.3", + "name": "define-properties", + "escapedName": "define-properties", + "rawSpec": "1.1.3", + "saveSpec": null, + "fetchSpec": "1.1.3" + }, + "_requiredBy": [ + "/object.getownpropertydescriptors", + "/util.promisify" + ], + "_resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "_spec": "1.1.3", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jordan Harband" + }, + "bugs": { + "url": "https://github.com/ljharb/define-properties/issues" + }, + "dependencies": { + "object-keys": "^1.0.12" + }, + "description": "Define multiple non-enumerable properties at once. Uses `Object.defineProperty` when available; falls back to standard assignment in older engines.", + "devDependencies": { + "@ljharb/eslint-config": "^13.0.0", + "covert": "^1.1.0", + "eslint": "^5.3.0", + "jscs": "^3.0.7", + "nsp": "^3.2.1", + "tape": "^4.9.0" + }, + "engines": { + "node": ">= 0.4" + }, + "homepage": "https://github.com/ljharb/define-properties#readme", + "keywords": [ + "Object.defineProperty", + "Object.defineProperties", + "object", + "property descriptor", + "descriptor", + "define", + "ES5" + ], + "license": "MIT", + "main": "index.js", + "name": "define-properties", + "repository": { + "type": "git", + "url": "git://github.com/ljharb/define-properties.git" + }, + "scripts": { + "coverage": "covert test/*.js", + "coverage-quiet": "covert test/*.js --quiet", + "eslint": "eslint test/*.js *.js", + "jscs": "jscs test/*.js *.js", + "lint": "npm run --silent jscs && npm run --silent eslint", + "posttest": "npm run --silent security", + "pretest": "npm run --silent lint", + "security": "nsp check", + "test": "npm run --silent tests-only", + "tests-only": "node test/index.js" + }, + "testling": { + "files": "test/index.js", + "browsers": [ + "iexplore/6.0..latest", + "firefox/3.0..6.0", + "firefox/15.0..latest", + "firefox/nightly", + "chrome/4.0..10.0", + "chrome/20.0..latest", + "chrome/canary", + "opera/10.0..latest", + "opera/next", + "safari/4.0..latest", + "ipad/6.0..latest", + "iphone/6.0..latest", + "android-browser/4.2" + ] + }, + "version": "1.1.3" +} diff --git a/node_modules/define-property/node_modules/is-accessor-descriptor/package.json b/node_modules/define-property/node_modules/is-accessor-descriptor/package.json new file mode 100644 index 000000000..9d82a074b --- /dev/null +++ b/node_modules/define-property/node_modules/is-accessor-descriptor/package.json @@ -0,0 +1,114 @@ +{ + "_args": [ + [ + "is-accessor-descriptor@1.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "is-accessor-descriptor@1.0.0", + "_id": "is-accessor-descriptor@1.0.0", + "_inBundle": false, + "_integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "_location": "/define-property/is-accessor-descriptor", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-accessor-descriptor@1.0.0", + "name": "is-accessor-descriptor", + "escapedName": "is-accessor-descriptor", + "rawSpec": "1.0.0", + "saveSpec": null, + "fetchSpec": "1.0.0" + }, + "_requiredBy": [ + "/define-property/is-descriptor" + ], + "_resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "_spec": "1.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/is-accessor-descriptor/issues" + }, + "contributors": [ + { + "name": "Jon Schlinkert", + "url": "http://twitter.com/jonschlinkert" + }, + { + "name": "Rouven Weßling", + "url": "www.rouvenwessling.de" + } + ], + "dependencies": { + "kind-of": "^6.0.0" + }, + "description": "Returns true if a value has the characteristics of a valid JavaScript accessor descriptor.", + "devDependencies": { + "gulp-format-md": "^1.0.0", + "mocha": "^3.5.3" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/is-accessor-descriptor", + "keywords": [ + "accessor", + "check", + "data", + "descriptor", + "get", + "getter", + "is", + "keys", + "object", + "properties", + "property", + "set", + "setter", + "type", + "valid", + "value" + ], + "license": "MIT", + "main": "index.js", + "name": "is-accessor-descriptor", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/is-accessor-descriptor.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "related": { + "list": [ + "is-accessor-descriptor", + "is-data-descriptor", + "is-descriptor", + "is-plain-object", + "isobject" + ] + }, + "lint": { + "reflinks": true + } + }, + "version": "1.0.0" +} diff --git a/node_modules/define-property/node_modules/is-data-descriptor/package.json b/node_modules/define-property/node_modules/is-data-descriptor/package.json new file mode 100644 index 000000000..2025be7a6 --- /dev/null +++ b/node_modules/define-property/node_modules/is-data-descriptor/package.json @@ -0,0 +1,113 @@ +{ + "_args": [ + [ + "is-data-descriptor@1.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "is-data-descriptor@1.0.0", + "_id": "is-data-descriptor@1.0.0", + "_inBundle": false, + "_integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "_location": "/define-property/is-data-descriptor", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-data-descriptor@1.0.0", + "name": "is-data-descriptor", + "escapedName": "is-data-descriptor", + "rawSpec": "1.0.0", + "saveSpec": null, + "fetchSpec": "1.0.0" + }, + "_requiredBy": [ + "/define-property/is-descriptor" + ], + "_resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "_spec": "1.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/is-data-descriptor/issues" + }, + "contributors": [ + { + "name": "Jon Schlinkert", + "url": "http://twitter.com/jonschlinkert" + }, + { + "name": "Rouven Weßling", + "url": "www.rouvenwessling.de" + } + ], + "dependencies": { + "kind-of": "^6.0.0" + }, + "description": "Returns true if a value has the characteristics of a valid JavaScript data descriptor.", + "devDependencies": { + "gulp-format-md": "^1.0.0", + "mocha": "^3.5.3" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/is-data-descriptor", + "keywords": [ + "accessor", + "check", + "data", + "descriptor", + "get", + "getter", + "is", + "keys", + "object", + "properties", + "property", + "set", + "setter", + "type", + "valid", + "value" + ], + "license": "MIT", + "main": "index.js", + "name": "is-data-descriptor", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/is-data-descriptor.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "related": { + "list": [ + "is-accessor-descriptor", + "is-data-descriptor", + "is-descriptor", + "isobject" + ] + }, + "lint": { + "reflinks": true + } + }, + "version": "1.0.0" +} diff --git a/node_modules/define-property/node_modules/is-descriptor/package.json b/node_modules/define-property/node_modules/is-descriptor/package.json new file mode 100644 index 000000000..76e880bbe --- /dev/null +++ b/node_modules/define-property/node_modules/is-descriptor/package.json @@ -0,0 +1,118 @@ +{ + "_args": [ + [ + "is-descriptor@1.0.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "is-descriptor@1.0.2", + "_id": "is-descriptor@1.0.2", + "_inBundle": false, + "_integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "_location": "/define-property/is-descriptor", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-descriptor@1.0.2", + "name": "is-descriptor", + "escapedName": "is-descriptor", + "rawSpec": "1.0.2", + "saveSpec": null, + "fetchSpec": "1.0.2" + }, + "_requiredBy": [ + "/define-property" + ], + "_resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "_spec": "1.0.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/is-descriptor/issues" + }, + "contributors": [ + { + "name": "Brian Woodward", + "url": "https://twitter.com/doowb" + }, + { + "name": "Jon Schlinkert", + "url": "http://twitter.com/jonschlinkert" + }, + { + "url": "https://github.com/wtgtybhertgeghgtwtg" + } + ], + "dependencies": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "description": "Returns true if a value has the characteristics of a valid JavaScript descriptor. Works for data descriptors and accessor descriptors.", + "devDependencies": { + "gulp-format-md": "^1.0.0", + "mocha": "^3.5.3" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/is-descriptor", + "keywords": [ + "accessor", + "check", + "data", + "descriptor", + "get", + "getter", + "is", + "keys", + "object", + "properties", + "property", + "set", + "setter", + "type", + "valid", + "value" + ], + "license": "MIT", + "main": "index.js", + "name": "is-descriptor", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/is-descriptor.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "related": { + "list": [ + "is-accessor-descriptor", + "is-data-descriptor", + "is-descriptor", + "isobject" + ] + }, + "plugins": [ + "gulp-format-md" + ], + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "lint": { + "reflinks": true + } + }, + "version": "1.0.2" +} diff --git a/node_modules/define-property/package.json b/node_modules/define-property/package.json new file mode 100644 index 000000000..b7186f332 --- /dev/null +++ b/node_modules/define-property/package.json @@ -0,0 +1,112 @@ +{ + "_args": [ + [ + "define-property@2.0.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "define-property@2.0.2", + "_id": "define-property@2.0.2", + "_inBundle": false, + "_integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "_location": "/define-property", + "_phantomChildren": { + "kind-of": "6.0.2" + }, + "_requested": { + "type": "version", + "registry": true, + "raw": "define-property@2.0.2", + "name": "define-property", + "escapedName": "define-property", + "rawSpec": "2.0.2", + "saveSpec": null, + "fetchSpec": "2.0.2" + }, + "_requiredBy": [ + "/micromatch", + "/nanomatch", + "/to-regex" + ], + "_resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "_spec": "2.0.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/define-property/issues" + }, + "contributors": [ + { + "name": "Brian Woodward", + "url": "https://twitter.com/doowb" + }, + { + "name": "Jon Schlinkert", + "url": "http://twitter.com/jonschlinkert" + } + ], + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "description": "Define a non-enumerable property on an object. Uses Reflect.defineProperty when available, otherwise Object.defineProperty.", + "devDependencies": { + "gulp-format-md": "^1.0.0", + "mocha": "^3.5.3" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/define-property", + "keywords": [ + "define", + "define-property", + "enumerable", + "key", + "non", + "non-enumerable", + "object", + "prop", + "property", + "value" + ], + "license": "MIT", + "main": "index.js", + "name": "define-property", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/define-property.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "related": { + "list": [ + "assign-deep", + "extend-shallow", + "merge-deep", + "mixin-deep" + ] + }, + "lint": { + "reflinks": true + } + }, + "version": "2.0.2" +} diff --git a/node_modules/delayed-stream/package.json b/node_modules/delayed-stream/package.json new file mode 100644 index 000000000..8b138daab --- /dev/null +++ b/node_modules/delayed-stream/package.json @@ -0,0 +1,66 @@ +{ + "_args": [ + [ + "delayed-stream@1.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "delayed-stream@1.0.0", + "_id": "delayed-stream@1.0.0", + "_inBundle": false, + "_integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", + "_location": "/delayed-stream", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "delayed-stream@1.0.0", + "name": "delayed-stream", + "escapedName": "delayed-stream", + "rawSpec": "1.0.0", + "saveSpec": null, + "fetchSpec": "1.0.0" + }, + "_requiredBy": [ + "/combined-stream" + ], + "_resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "_spec": "1.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Felix Geisendörfer", + "email": "felix@debuggable.com", + "url": "http://debuggable.com/" + }, + "bugs": { + "url": "https://github.com/felixge/node-delayed-stream/issues" + }, + "contributors": [ + { + "name": "Mike Atkins", + "email": "apeherder@gmail.com" + } + ], + "dependencies": {}, + "description": "Buffers events from a stream until you are ready to handle them.", + "devDependencies": { + "fake": "0.2.0", + "far": "0.0.1" + }, + "engines": { + "node": ">=0.4.0" + }, + "homepage": "https://github.com/felixge/node-delayed-stream", + "license": "MIT", + "main": "./lib/delayed_stream", + "name": "delayed-stream", + "repository": { + "type": "git", + "url": "git://github.com/felixge/node-delayed-stream.git" + }, + "scripts": { + "test": "make test" + }, + "version": "1.0.0" +} diff --git a/node_modules/detect-newline/package.json b/node_modules/detect-newline/package.json new file mode 100644 index 000000000..2dd8c2b34 --- /dev/null +++ b/node_modules/detect-newline/package.json @@ -0,0 +1,73 @@ +{ + "_args": [ + [ + "detect-newline@2.1.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "detect-newline@2.1.0", + "_id": "detect-newline@2.1.0", + "_inBundle": false, + "_integrity": "sha1-9B8cEL5LAOh7XxPaaAdZ8sW/0+I=", + "_location": "/detect-newline", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "detect-newline@2.1.0", + "name": "detect-newline", + "escapedName": "detect-newline", + "rawSpec": "2.1.0", + "saveSpec": null, + "fetchSpec": "2.1.0" + }, + "_requiredBy": [ + "/jest-docblock" + ], + "_resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-2.1.0.tgz", + "_spec": "2.1.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/detect-newline/issues" + }, + "description": "Detect the dominant newline character of a string", + "devDependencies": { + "ava": "*", + "xo": "*" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/detect-newline#readme", + "keywords": [ + "newline", + "linebreak", + "line-break", + "line", + "lf", + "crlf", + "eol", + "linefeed", + "character", + "char" + ], + "license": "MIT", + "name": "detect-newline", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/detect-newline.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "2.1.0" +} diff --git a/node_modules/diff-sequences/package.json b/node_modules/diff-sequences/package.json new file mode 100644 index 000000000..21562f01d --- /dev/null +++ b/node_modules/diff-sequences/package.json @@ -0,0 +1,67 @@ +{ + "_args": [ + [ + "diff-sequences@24.3.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "diff-sequences@24.3.0", + "_id": "diff-sequences@24.3.0", + "_inBundle": false, + "_integrity": "sha512-xLqpez+Zj9GKSnPWS0WZw1igGocZ+uua8+y+5dDNTT934N3QuY1sp2LkHzwiaYQGz60hMq0pjAshdeXm5VUOEw==", + "_location": "/diff-sequences", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "diff-sequences@24.3.0", + "name": "diff-sequences", + "escapedName": "diff-sequences", + "rawSpec": "24.3.0", + "saveSpec": null, + "fetchSpec": "24.3.0" + }, + "_requiredBy": [ + "/jest-diff" + ], + "_resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-24.3.0.tgz", + "_spec": "24.3.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/facebook/jest/issues" + }, + "description": "Compare items in two sequences to find a longest common subsequence", + "devDependencies": { + "benchmark": "^2.1.4", + "diff": "^4.0.1" + }, + "engines": { + "node": ">= 6" + }, + "gitHead": "3a7a4f3a3f5489ac8e07dcddf76bb949c482ec87", + "homepage": "https://github.com/facebook/jest#readme", + "keywords": [ + "fast", + "linear", + "space", + "callback", + "diff" + ], + "license": "MIT", + "main": "build/index.js", + "name": "diff-sequences", + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/facebook/jest.git", + "directory": "packages/diff-sequences" + }, + "scripts": { + "perf": "node --expose-gc perf/index.js" + }, + "types": "build/index.d.ts", + "version": "24.3.0" +} diff --git a/node_modules/domexception/package.json b/node_modules/domexception/package.json new file mode 100644 index 000000000..f3e0a74d1 --- /dev/null +++ b/node_modules/domexception/package.json @@ -0,0 +1,76 @@ +{ + "_args": [ + [ + "domexception@1.0.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "domexception@1.0.1", + "_id": "domexception@1.0.1", + "_inBundle": false, + "_integrity": "sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug==", + "_location": "/domexception", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "domexception@1.0.1", + "name": "domexception", + "escapedName": "domexception", + "rawSpec": "1.0.1", + "saveSpec": null, + "fetchSpec": "1.0.1" + }, + "_requiredBy": [ + "/jsdom" + ], + "_resolved": "https://registry.npmjs.org/domexception/-/domexception-1.0.1.tgz", + "_spec": "1.0.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Domenic Denicola", + "email": "d@domenic.me", + "url": "https://domenic.me/" + }, + "bugs": { + "url": "https://github.com/jsdom/domexception/issues" + }, + "dependencies": { + "webidl-conversions": "^4.0.2" + }, + "description": "An implementation of the DOMException class from browsers", + "devDependencies": { + "eslint": "^4.3.0", + "mkdirp": "^0.5.1", + "mocha": "^3.5.0", + "request": "^2.81.0", + "webidl2js": "^7.2.0" + }, + "files": [ + "lib/" + ], + "homepage": "https://github.com/jsdom/domexception#readme", + "keywords": [ + "dom", + "webidl", + "web idl", + "domexception", + "error", + "exception" + ], + "license": "MIT", + "main": "lib/public-api.js", + "name": "domexception", + "repository": { + "type": "git", + "url": "git+https://github.com/jsdom/domexception.git" + }, + "scripts": { + "lint": "eslint lib", + "prepublish": "node scripts/generate.js", + "pretest": "npm run prepublish", + "test": "mocha" + }, + "version": "1.0.1" +} diff --git a/node_modules/ecc-jsbn/package.json b/node_modules/ecc-jsbn/package.json new file mode 100644 index 000000000..84b085f83 --- /dev/null +++ b/node_modules/ecc-jsbn/package.json @@ -0,0 +1,69 @@ +{ + "_args": [ + [ + "ecc-jsbn@0.1.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "ecc-jsbn@0.1.2", + "_id": "ecc-jsbn@0.1.2", + "_inBundle": false, + "_integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", + "_location": "/ecc-jsbn", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "ecc-jsbn@0.1.2", + "name": "ecc-jsbn", + "escapedName": "ecc-jsbn", + "rawSpec": "0.1.2", + "saveSpec": null, + "fetchSpec": "0.1.2" + }, + "_requiredBy": [ + "/sshpk" + ], + "_resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", + "_spec": "0.1.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jeremie Miller", + "email": "jeremie@jabber.org", + "url": "http://jeremie.com/" + }, + "bugs": { + "url": "https://github.com/quartzjer/ecc-jsbn/issues" + }, + "dependencies": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + }, + "description": "ECC JS code based on JSBN", + "homepage": "https://github.com/quartzjer/ecc-jsbn", + "keywords": [ + "jsbn", + "ecc", + "browserify" + ], + "license": "MIT", + "main": "index.js", + "maintainers": [ + { + "name": "Jeremie Miller", + "email": "jeremie@jabber.org", + "url": "http://jeremie.com/" + }, + { + "name": "Ryan Bennett", + "url": "https://github.com/rynomad" + } + ], + "name": "ecc-jsbn", + "repository": { + "type": "git", + "url": "git+https://github.com/quartzjer/ecc-jsbn.git" + }, + "version": "0.1.2" +} diff --git a/node_modules/end-of-stream/package.json b/node_modules/end-of-stream/package.json new file mode 100644 index 000000000..f53c5b585 --- /dev/null +++ b/node_modules/end-of-stream/package.json @@ -0,0 +1,66 @@ +{ + "_args": [ + [ + "end-of-stream@1.4.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "end-of-stream@1.4.1", + "_id": "end-of-stream@1.4.1", + "_inBundle": false, + "_integrity": "sha512-1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q==", + "_location": "/end-of-stream", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "end-of-stream@1.4.1", + "name": "end-of-stream", + "escapedName": "end-of-stream", + "rawSpec": "1.4.1", + "saveSpec": null, + "fetchSpec": "1.4.1" + }, + "_requiredBy": [ + "/pump" + ], + "_resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz", + "_spec": "1.4.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Mathias Buus", + "email": "mathiasbuus@gmail.com" + }, + "bugs": { + "url": "https://github.com/mafintosh/end-of-stream/issues" + }, + "dependencies": { + "once": "^1.4.0" + }, + "description": "Call a callback when a readable/writable/duplex stream has completed or failed.", + "files": [ + "index.js" + ], + "homepage": "https://github.com/mafintosh/end-of-stream", + "keywords": [ + "stream", + "streams", + "callback", + "finish", + "close", + "end", + "wait" + ], + "license": "MIT", + "main": "index.js", + "name": "end-of-stream", + "repository": { + "type": "git", + "url": "git://github.com/mafintosh/end-of-stream.git" + }, + "scripts": { + "test": "node test.js" + }, + "version": "1.4.1" +} diff --git a/node_modules/error-ex/package.json b/node_modules/error-ex/package.json new file mode 100644 index 000000000..07b7b0fd6 --- /dev/null +++ b/node_modules/error-ex/package.json @@ -0,0 +1,91 @@ +{ + "_args": [ + [ + "error-ex@1.3.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "error-ex@1.3.2", + "_id": "error-ex@1.3.2", + "_inBundle": false, + "_integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "_location": "/error-ex", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "error-ex@1.3.2", + "name": "error-ex", + "escapedName": "error-ex", + "rawSpec": "1.3.2", + "saveSpec": null, + "fetchSpec": "1.3.2" + }, + "_requiredBy": [ + "/parse-json", + "/read-pkg/parse-json" + ], + "_resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "_spec": "1.3.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/qix-/node-error-ex/issues" + }, + "dependencies": { + "is-arrayish": "^0.2.1" + }, + "description": "Easy error subclassing and stack customization", + "devDependencies": { + "coffee-script": "^1.9.3", + "coveralls": "^2.11.2", + "istanbul": "^0.3.17", + "mocha": "^2.2.5", + "should": "^7.0.1", + "xo": "^0.7.1" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/qix-/node-error-ex#readme", + "keywords": [ + "error", + "errors", + "extend", + "extending", + "extension", + "subclass", + "stack", + "custom" + ], + "license": "MIT", + "maintainers": [ + { + "name": "Josh Junon", + "email": "i.am.qix@gmail.com", + "url": "github.com/qix-" + }, + { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + } + ], + "name": "error-ex", + "repository": { + "type": "git", + "url": "git+https://github.com/qix-/node-error-ex.git" + }, + "scripts": { + "pretest": "xo", + "test": "mocha --compilers coffee:coffee-script/register" + }, + "version": "1.3.2", + "xo": { + "rules": { + "operator-linebreak": [ + 0 + ] + } + } +} diff --git a/node_modules/es-abstract/package.json b/node_modules/es-abstract/package.json new file mode 100644 index 000000000..9aa1fd568 --- /dev/null +++ b/node_modules/es-abstract/package.json @@ -0,0 +1,132 @@ +{ + "_args": [ + [ + "es-abstract@1.13.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "es-abstract@1.13.0", + "_id": "es-abstract@1.13.0", + "_inBundle": false, + "_integrity": "sha512-vDZfg/ykNxQVwup/8E1BZhVzFfBxs9NqMzGcvIJrqg5k2/5Za2bWo40dK2J1pgLngZ7c+Shh8lwYtLGyrwPutg==", + "_location": "/es-abstract", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "es-abstract@1.13.0", + "name": "es-abstract", + "escapedName": "es-abstract", + "rawSpec": "1.13.0", + "saveSpec": null, + "fetchSpec": "1.13.0" + }, + "_requiredBy": [ + "/object.getownpropertydescriptors" + ], + "_resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.13.0.tgz", + "_spec": "1.13.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jordan Harband", + "email": "ljharb@gmail.com", + "url": "http://ljharb.codes" + }, + "bugs": { + "url": "https://github.com/ljharb/es-abstract/issues" + }, + "contributors": [ + { + "name": "Jordan Harband", + "email": "ljharb@gmail.com", + "url": "http://ljharb.codes" + } + ], + "dependencies": { + "es-to-primitive": "^1.2.0", + "function-bind": "^1.1.1", + "has": "^1.0.3", + "is-callable": "^1.1.4", + "is-regex": "^1.0.4", + "object-keys": "^1.0.12" + }, + "description": "ECMAScript spec abstract operations.", + "devDependencies": { + "@ljharb/eslint-config": "^13.1.1", + "cheerio": "^1.0.0-rc.2", + "editorconfig-tools": "^0.1.1", + "eslint": "^5.11.1", + "foreach": "^2.0.5", + "nyc": "^10.3.2", + "object-inspect": "^1.6.0", + "object-is": "^1.0.1", + "object.assign": "^4.1.0", + "object.fromentries": "^2.0.0", + "replace": "^1.0.1", + "safe-publish-latest": "^1.1.2", + "semver": "^5.6.0", + "tape": "^4.9.2" + }, + "engines": { + "node": ">= 0.4" + }, + "greenkeeper": { + "//": "nyc is ignored because it requires node 4+, and we support older than that", + "ignore": [ + "nyc" + ] + }, + "homepage": "https://github.com/ljharb/es-abstract#readme", + "keywords": [ + "ECMAScript", + "ES", + "abstract", + "operation", + "abstract operation", + "JavaScript", + "ES5", + "ES6", + "ES7" + ], + "license": "MIT", + "main": "index.js", + "name": "es-abstract", + "repository": { + "type": "git", + "url": "git://github.com/ljharb/es-abstract.git" + }, + "scripts": { + "audit": "npm audit", + "coverage": "nyc npm run --silent tests-only >/dev/null", + "eccheck": "editorconfig-tools check *.js **/*.js > /dev/null", + "lint": "eslint test/*.js *.js", + "postaudit": "rm package-lock.json", + "postcoverage": "nyc report", + "posttest": "npm run audit", + "preaudit": "npm install --package-lock --package-lock-only", + "prepublish": "safe-publish-latest", + "pretest": "npm run --silent lint", + "test": "npm run tests-only", + "tests-only": "node test" + }, + "testling": { + "files": "test/index.js", + "browsers": [ + "iexplore/6.0..latest", + "firefox/3.0..6.0", + "firefox/15.0..latest", + "firefox/nightly", + "chrome/4.0..10.0", + "chrome/20.0..latest", + "chrome/canary", + "opera/10.0..latest", + "opera/next", + "safari/4.0..latest", + "ipad/6.0..latest", + "iphone/6.0..latest", + "android-browser/4.2" + ] + }, + "version": "1.13.0" +} diff --git a/node_modules/es-to-primitive/package.json b/node_modules/es-to-primitive/package.json new file mode 100644 index 000000000..f7cbe6728 --- /dev/null +++ b/node_modules/es-to-primitive/package.json @@ -0,0 +1,117 @@ +{ + "_args": [ + [ + "es-to-primitive@1.2.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "es-to-primitive@1.2.0", + "_id": "es-to-primitive@1.2.0", + "_inBundle": false, + "_integrity": "sha512-qZryBOJjV//LaxLTV6UC//WewneB3LcXOL9NP++ozKVXsIIIpm/2c13UDiD9Jp2eThsecw9m3jPqDwTyobcdbg==", + "_location": "/es-to-primitive", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "es-to-primitive@1.2.0", + "name": "es-to-primitive", + "escapedName": "es-to-primitive", + "rawSpec": "1.2.0", + "saveSpec": null, + "fetchSpec": "1.2.0" + }, + "_requiredBy": [ + "/es-abstract" + ], + "_resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.0.tgz", + "_spec": "1.2.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jordan Harband" + }, + "bugs": { + "url": "https://github.com/ljharb/es-to-primitive/issues" + }, + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "description": "ECMAScript “ToPrimitive” algorithm. Provides ES5 and ES2015 versions.", + "devDependencies": { + "@ljharb/eslint-config": "^13.0.0", + "covert": "^1.1.0", + "eslint": "^5.6.0", + "foreach": "^2.0.5", + "function.prototype.name": "^1.1.0", + "jscs": "^3.0.7", + "nsp": "^3.2.1", + "object-inspect": "^1.6.0", + "object-is": "^1.0.1", + "replace": "^1.0.0", + "semver": "^5.5.1", + "tape": "^4.9.1" + }, + "engines": { + "node": ">= 0.4" + }, + "homepage": "https://github.com/ljharb/es-to-primitive#readme", + "keywords": [ + "primitive", + "abstract", + "ecmascript", + "es5", + "es6", + "es2015", + "toPrimitive", + "coerce", + "type", + "object", + "string", + "number", + "boolean", + "symbol", + "null", + "undefined" + ], + "license": "MIT", + "main": "index.js", + "name": "es-to-primitive", + "repository": { + "type": "git", + "url": "git://github.com/ljharb/es-to-primitive.git" + }, + "scripts": { + "coverage": "covert test/*.js", + "coverage-quiet": "covert test/*.js --quiet", + "eslint": "eslint test/*.js *.js", + "jscs": "jscs test/*.js *.js", + "lint": "npm run --silent jscs && npm run --silent eslint", + "posttest": "npm run --silent security", + "pretest": "npm run --silent lint", + "security": "nsp check", + "test": "npm run --silent tests-only", + "tests-only": "node --es-staging test" + }, + "testling": { + "files": "test", + "browsers": [ + "iexplore/6.0..latest", + "firefox/3.0..6.0", + "firefox/15.0..latest", + "firefox/nightly", + "chrome/4.0..10.0", + "chrome/20.0..latest", + "chrome/canary", + "opera/10.0..latest", + "opera/next", + "safari/4.0..latest", + "ipad/6.0..latest", + "iphone/6.0..latest", + "android-browser/4.2" + ] + }, + "version": "1.2.0" +} diff --git a/node_modules/escape-string-regexp/package.json b/node_modules/escape-string-regexp/package.json new file mode 100644 index 000000000..b30539b5a --- /dev/null +++ b/node_modules/escape-string-regexp/package.json @@ -0,0 +1,85 @@ +{ + "_args": [ + [ + "escape-string-regexp@1.0.5", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "escape-string-regexp@1.0.5", + "_id": "escape-string-regexp@1.0.5", + "_inBundle": false, + "_integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "_location": "/escape-string-regexp", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "escape-string-regexp@1.0.5", + "name": "escape-string-regexp", + "escapedName": "escape-string-regexp", + "rawSpec": "1.0.5", + "saveSpec": null, + "fetchSpec": "1.0.5" + }, + "_requiredBy": [ + "/chalk" + ], + "_resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "_spec": "1.0.5", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/escape-string-regexp/issues" + }, + "description": "Escape RegExp special characters", + "devDependencies": { + "ava": "*", + "xo": "*" + }, + "engines": { + "node": ">=0.8.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/escape-string-regexp#readme", + "keywords": [ + "escape", + "regex", + "regexp", + "re", + "regular", + "expression", + "string", + "str", + "special", + "characters" + ], + "license": "MIT", + "maintainers": [ + { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + { + "name": "Joshua Boy Nicolai Appelman", + "email": "joshua@jbna.nl", + "url": "jbna.nl" + } + ], + "name": "escape-string-regexp", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/escape-string-regexp.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "1.0.5" +} diff --git a/node_modules/escodegen/node_modules/esprima/package.json b/node_modules/escodegen/node_modules/esprima/package.json new file mode 100644 index 000000000..f33e6b9ad --- /dev/null +++ b/node_modules/escodegen/node_modules/esprima/package.json @@ -0,0 +1,138 @@ +{ + "_args": [ + [ + "esprima@3.1.3", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "esprima@3.1.3", + "_id": "esprima@3.1.3", + "_inBundle": false, + "_integrity": "sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM=", + "_location": "/escodegen/esprima", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "esprima@3.1.3", + "name": "esprima", + "escapedName": "esprima", + "rawSpec": "3.1.3", + "saveSpec": null, + "fetchSpec": "3.1.3" + }, + "_requiredBy": [ + "/escodegen" + ], + "_resolved": "https://registry.npmjs.org/esprima/-/esprima-3.1.3.tgz", + "_spec": "3.1.3", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Ariya Hidayat", + "email": "ariya.hidayat@gmail.com" + }, + "bin": { + "esparse": "./bin/esparse.js", + "esvalidate": "./bin/esvalidate.js" + }, + "bugs": { + "url": "https://github.com/jquery/esprima/issues" + }, + "description": "ECMAScript parsing infrastructure for multipurpose analysis", + "devDependencies": { + "codecov.io": "~0.1.6", + "escomplex-js": "1.2.0", + "everything.js": "~1.0.3", + "glob": "~7.1.0", + "istanbul": "~0.4.0", + "json-diff": "~0.3.1", + "karma": "~1.3.0", + "karma-chrome-launcher": "~2.0.0", + "karma-detect-browsers": "~2.1.0", + "karma-firefox-launcher": "~1.0.0", + "karma-ie-launcher": "~1.0.0", + "karma-mocha": "~1.2.0", + "karma-safari-launcher": "~1.0.0", + "karma-sauce-launcher": "~1.0.0", + "lodash": "~3.10.1", + "mocha": "~3.1.0", + "node-tick-processor": "~0.0.2", + "regenerate": "~1.3.1", + "temp": "~0.8.3", + "tslint": "~3.15.1", + "typescript": "~1.8.10", + "typescript-formatter": "~2.3.0", + "unicode-8.0.0": "~0.7.0", + "webpack": "~1.13.2" + }, + "engines": { + "node": ">=4" + }, + "files": [ + "bin", + "dist/esprima.js" + ], + "homepage": "http://esprima.org", + "keywords": [ + "ast", + "ecmascript", + "esprima", + "javascript", + "parser", + "syntax" + ], + "license": "BSD-2-Clause", + "main": "dist/esprima.js", + "maintainers": [ + { + "name": "Ariya Hidayat", + "email": "ariya.hidayat@gmail.com", + "url": "http://ariya.ofilabs.com" + } + ], + "name": "esprima", + "repository": { + "type": "git", + "url": "git+https://github.com/jquery/esprima.git" + }, + "scripts": { + "all-tests": "npm run generate-fixtures && npm run unit-tests && npm run api-tests && npm run grammar-tests && npm run regression-tests && npm run hostile-env-tests", + "analyze-coverage": "istanbul cover test/unit-tests.js", + "api-tests": "mocha -R dot test/api-tests.js", + "appveyor": "npm run compile && npm run all-tests && npm run browser-tests", + "benchmark": "npm run benchmark-parser && npm run benchmark-tokenizer", + "benchmark-parser": "node -expose_gc test/benchmark-parser.js", + "benchmark-tokenizer": "node --expose_gc test/benchmark-tokenizer.js", + "browser-tests": "npm run compile && npm run generate-fixtures && cd test && karma start --single-run", + "check-coverage": "istanbul check-coverage --statement 100 --branch 100 --function 100", + "check-version": "node test/check-version.js", + "circleci": "npm test && npm run codecov && npm run downstream", + "code-style": "tsfmt --verify src/*.ts && tsfmt --verify test/*.js", + "codecov": "istanbul report cobertura && codecov < ./coverage/cobertura-coverage.xml", + "compile": "tsc -p src/ && webpack && node tools/fixupbundle.js", + "complexity": "node test/check-complexity.js", + "downstream": "node test/downstream.js", + "droneio": "npm run compile && npm run all-tests && npm run saucelabs", + "dynamic-analysis": "npm run analyze-coverage && npm run check-coverage", + "format-code": "tsfmt -r src/*.ts && tsfmt -r test/*.js", + "generate-fixtures": "node tools/generate-fixtures.js", + "generate-regex": "node tools/generate-identifier-regex.js", + "generate-xhtml-entities": "node tools/generate-xhtml-entities.js", + "grammar-tests": "node test/grammar-tests.js", + "hostile-env-tests": "node test/hostile-environment-tests.js", + "prepublish": "npm run compile", + "profile": "node --prof test/profile.js && mv isolate*.log v8.log && node-tick-processor", + "regression-tests": "node test/regression-tests.js", + "saucelabs": "npm run saucelabs-evergreen && npm run saucelabs-ie && npm run saucelabs-safari", + "saucelabs-evergreen": "cd test && karma start saucelabs-evergreen.conf.js", + "saucelabs-ie": "cd test && karma start saucelabs-ie.conf.js", + "saucelabs-safari": "cd test && karma start saucelabs-safari.conf.js", + "static-analysis": "npm run check-version && npm run tslint && npm run code-style && npm run complexity", + "test": "npm run compile && npm run all-tests && npm run static-analysis && npm run dynamic-analysis", + "travis": "npm test", + "tslint": "tslint src/*.ts", + "unit-tests": "node test/unit-tests.js" + }, + "version": "3.1.3" +} diff --git a/node_modules/escodegen/package.json b/node_modules/escodegen/package.json new file mode 100644 index 000000000..4e65601ff --- /dev/null +++ b/node_modules/escodegen/package.json @@ -0,0 +1,94 @@ +{ + "_args": [ + [ + "escodegen@1.11.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "escodegen@1.11.1", + "_id": "escodegen@1.11.1", + "_inBundle": false, + "_integrity": "sha512-JwiqFD9KdGVVpeuRa68yU3zZnBEOcPs0nKW7wZzXky8Z7tffdYUHbe11bPCV5jYlK6DVdKLWLm0f5I/QlL0Kmw==", + "_location": "/escodegen", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "escodegen@1.11.1", + "name": "escodegen", + "escapedName": "escodegen", + "rawSpec": "1.11.1", + "saveSpec": null, + "fetchSpec": "1.11.1" + }, + "_requiredBy": [ + "/jsdom" + ], + "_resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.11.1.tgz", + "_spec": "1.11.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bin": { + "esgenerate": "./bin/esgenerate.js", + "escodegen": "./bin/escodegen.js" + }, + "bugs": { + "url": "https://github.com/estools/escodegen/issues" + }, + "dependencies": { + "esprima": "^3.1.3", + "estraverse": "^4.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1", + "source-map": "~0.6.1" + }, + "description": "ECMAScript code generator", + "devDependencies": { + "acorn": "^4.0.4", + "bluebird": "^3.4.7", + "bower-registry-client": "^1.0.0", + "chai": "^3.5.0", + "commonjs-everywhere": "^0.9.7", + "gulp": "^3.8.10", + "gulp-eslint": "^3.0.1", + "gulp-mocha": "^3.0.1", + "semver": "^5.1.0" + }, + "engines": { + "node": ">=4.0" + }, + "files": [ + "LICENSE.BSD", + "README.md", + "bin", + "escodegen.js", + "package.json" + ], + "homepage": "http://github.com/estools/escodegen", + "license": "BSD-2-Clause", + "main": "escodegen.js", + "maintainers": [ + { + "name": "Yusuke Suzuki", + "email": "utatane.tea@gmail.com", + "url": "http://github.com/Constellation" + } + ], + "name": "escodegen", + "optionalDependencies": { + "source-map": "~0.6.1" + }, + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/estools/escodegen.git" + }, + "scripts": { + "build": "cjsify -a path: tools/entry-point.js > escodegen.browser.js", + "build-min": "cjsify -ma path: tools/entry-point.js > escodegen.browser.min.js", + "lint": "gulp lint", + "release": "node tools/release.js", + "test": "gulp travis", + "unit-test": "gulp test" + }, + "version": "1.11.1" +} diff --git a/node_modules/esprima/package.json b/node_modules/esprima/package.json new file mode 100644 index 000000000..816cdb027 --- /dev/null +++ b/node_modules/esprima/package.json @@ -0,0 +1,141 @@ +{ + "_args": [ + [ + "esprima@4.0.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "esprima@4.0.1", + "_id": "esprima@4.0.1", + "_inBundle": false, + "_integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "_location": "/esprima", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "esprima@4.0.1", + "name": "esprima", + "escapedName": "esprima", + "rawSpec": "4.0.1", + "saveSpec": null, + "fetchSpec": "4.0.1" + }, + "_requiredBy": [ + "/js-yaml" + ], + "_resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "_spec": "4.0.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Ariya Hidayat", + "email": "ariya.hidayat@gmail.com" + }, + "bin": { + "esparse": "./bin/esparse.js", + "esvalidate": "./bin/esvalidate.js" + }, + "bugs": { + "url": "https://github.com/jquery/esprima/issues" + }, + "description": "ECMAScript parsing infrastructure for multipurpose analysis", + "devDependencies": { + "codecov.io": "~0.1.6", + "escomplex-js": "1.2.0", + "everything.js": "~1.0.3", + "glob": "~7.1.0", + "istanbul": "~0.4.0", + "json-diff": "~0.3.1", + "karma": "~1.3.0", + "karma-chrome-launcher": "~2.0.0", + "karma-detect-browsers": "~2.2.3", + "karma-edge-launcher": "~0.2.0", + "karma-firefox-launcher": "~1.0.0", + "karma-ie-launcher": "~1.0.0", + "karma-mocha": "~1.3.0", + "karma-safari-launcher": "~1.0.0", + "karma-safaritechpreview-launcher": "~0.0.4", + "karma-sauce-launcher": "~1.1.0", + "lodash": "~3.10.1", + "mocha": "~3.2.0", + "node-tick-processor": "~0.0.2", + "regenerate": "~1.3.2", + "temp": "~0.8.3", + "tslint": "~5.1.0", + "typescript": "~2.3.2", + "typescript-formatter": "~5.1.3", + "unicode-8.0.0": "~0.7.0", + "webpack": "~1.14.0" + }, + "engines": { + "node": ">=4" + }, + "files": [ + "bin", + "dist/esprima.js" + ], + "homepage": "http://esprima.org", + "keywords": [ + "ast", + "ecmascript", + "esprima", + "javascript", + "parser", + "syntax" + ], + "license": "BSD-2-Clause", + "main": "dist/esprima.js", + "maintainers": [ + { + "name": "Ariya Hidayat", + "email": "ariya.hidayat@gmail.com", + "url": "http://ariya.ofilabs.com" + } + ], + "name": "esprima", + "repository": { + "type": "git", + "url": "git+https://github.com/jquery/esprima.git" + }, + "scripts": { + "all-tests": "npm run verify-line-ending && npm run generate-fixtures && npm run unit-tests && npm run api-tests && npm run grammar-tests && npm run regression-tests && npm run hostile-env-tests", + "analyze-coverage": "istanbul cover test/unit-tests.js", + "api-tests": "mocha -R dot test/api-tests.js", + "appveyor": "npm run compile && npm run all-tests && npm run browser-tests", + "benchmark": "npm run benchmark-parser && npm run benchmark-tokenizer", + "benchmark-parser": "node -expose_gc test/benchmark-parser.js", + "benchmark-tokenizer": "node --expose_gc test/benchmark-tokenizer.js", + "browser-tests": "npm run compile && npm run generate-fixtures && cd test && karma start --single-run", + "check-coverage": "istanbul check-coverage --statement 100 --branch 100 --function 100", + "check-version": "node test/check-version.js", + "circleci": "npm test && npm run codecov && npm run downstream", + "code-style": "tsfmt --verify src/*.ts && tsfmt --verify test/*.js", + "codecov": "istanbul report cobertura && codecov < ./coverage/cobertura-coverage.xml", + "compile": "tsc -p src/ && webpack && node tools/fixupbundle.js", + "complexity": "node test/check-complexity.js", + "downstream": "node test/downstream.js", + "droneio": "npm run compile && npm run all-tests && npm run saucelabs", + "dynamic-analysis": "npm run analyze-coverage && npm run check-coverage", + "format-code": "tsfmt -r src/*.ts && tsfmt -r test/*.js", + "generate-fixtures": "node tools/generate-fixtures.js", + "generate-regex": "node tools/generate-identifier-regex.js", + "generate-xhtml-entities": "node tools/generate-xhtml-entities.js", + "grammar-tests": "node test/grammar-tests.js", + "hostile-env-tests": "node test/hostile-environment-tests.js", + "prepublish": "npm run compile", + "profile": "node --prof test/profile.js && mv isolate*.log v8.log && node-tick-processor", + "regression-tests": "node test/regression-tests.js", + "saucelabs": "npm run saucelabs-evergreen && npm run saucelabs-ie && npm run saucelabs-safari", + "saucelabs-evergreen": "cd test && karma start saucelabs-evergreen.conf.js", + "saucelabs-ie": "cd test && karma start saucelabs-ie.conf.js", + "saucelabs-safari": "cd test && karma start saucelabs-safari.conf.js", + "static-analysis": "npm run check-version && npm run tslint && npm run code-style && npm run complexity", + "test": "npm run compile && npm run all-tests && npm run static-analysis && npm run dynamic-analysis", + "travis": "npm test", + "tslint": "tslint src/*.ts", + "unit-tests": "node test/unit-tests.js", + "verify-line-ending": "node test/verify-line-ending.js" + }, + "version": "4.0.1" +} diff --git a/node_modules/estraverse/package.json b/node_modules/estraverse/package.json new file mode 100644 index 000000000..c37ae920e --- /dev/null +++ b/node_modules/estraverse/package.json @@ -0,0 +1,72 @@ +{ + "_args": [ + [ + "estraverse@4.2.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "estraverse@4.2.0", + "_id": "estraverse@4.2.0", + "_inBundle": false, + "_integrity": "sha1-De4/7TH81GlhjOc0IJn8GvoL2xM=", + "_location": "/estraverse", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "estraverse@4.2.0", + "name": "estraverse", + "escapedName": "estraverse", + "rawSpec": "4.2.0", + "saveSpec": null, + "fetchSpec": "4.2.0" + }, + "_requiredBy": [ + "/escodegen" + ], + "_resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz", + "_spec": "4.2.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/estools/estraverse/issues" + }, + "description": "ECMAScript JS AST traversal functions", + "devDependencies": { + "babel-preset-es2015": "^6.3.13", + "babel-register": "^6.3.13", + "chai": "^2.1.1", + "espree": "^1.11.0", + "gulp": "^3.8.10", + "gulp-bump": "^0.2.2", + "gulp-filter": "^2.0.0", + "gulp-git": "^1.0.1", + "gulp-tag-version": "^1.2.1", + "jshint": "^2.5.6", + "mocha": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "homepage": "https://github.com/estools/estraverse", + "license": "BSD-2-Clause", + "main": "estraverse.js", + "maintainers": [ + { + "name": "Yusuke Suzuki", + "email": "utatane.tea@gmail.com", + "url": "http://github.com/Constellation" + } + ], + "name": "estraverse", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/estools/estraverse.git" + }, + "scripts": { + "lint": "jshint estraverse.js", + "test": "npm run-script lint && npm run-script unit-test", + "unit-test": "mocha --compilers js:babel-register" + }, + "version": "4.2.0" +} diff --git a/node_modules/esutils/package.json b/node_modules/esutils/package.json new file mode 100644 index 000000000..3c64c862f --- /dev/null +++ b/node_modules/esutils/package.json @@ -0,0 +1,83 @@ +{ + "_args": [ + [ + "esutils@2.0.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "esutils@2.0.2", + "_id": "esutils@2.0.2", + "_inBundle": false, + "_integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=", + "_location": "/esutils", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "esutils@2.0.2", + "name": "esutils", + "escapedName": "esutils", + "rawSpec": "2.0.2", + "saveSpec": null, + "fetchSpec": "2.0.2" + }, + "_requiredBy": [ + "/@babel/highlight", + "/@babel/types", + "/escodegen" + ], + "_resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz", + "_spec": "2.0.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/estools/esutils/issues" + }, + "description": "utility box for ECMAScript language tools", + "devDependencies": { + "chai": "~1.7.2", + "coffee-script": "~1.6.3", + "jshint": "2.6.3", + "mocha": "~2.2.1", + "regenerate": "~1.2.1", + "unicode-7.0.0": "^0.1.5" + }, + "directories": { + "lib": "./lib" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "LICENSE.BSD", + "README.md", + "lib" + ], + "homepage": "https://github.com/estools/esutils", + "licenses": [ + { + "type": "BSD", + "url": "http://github.com/estools/esutils/raw/master/LICENSE.BSD" + } + ], + "main": "lib/utils.js", + "maintainers": [ + { + "name": "Yusuke Suzuki", + "email": "utatane.tea@gmail.com", + "url": "http://github.com/Constellation" + } + ], + "name": "esutils", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/estools/esutils.git" + }, + "scripts": { + "generate-regex": "node tools/generate-identifier-regex.js", + "lint": "jshint lib/*.js", + "test": "npm run-script lint && npm run-script unit-test", + "unit-test": "mocha --compilers coffee:coffee-script -R spec" + }, + "version": "2.0.2" +} diff --git a/node_modules/exec-sh/package.json b/node_modules/exec-sh/package.json new file mode 100644 index 000000000..d85812225 --- /dev/null +++ b/node_modules/exec-sh/package.json @@ -0,0 +1,75 @@ +{ + "_args": [ + [ + "exec-sh@0.3.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "exec-sh@0.3.2", + "_id": "exec-sh@0.3.2", + "_inBundle": false, + "_integrity": "sha512-9sLAvzhI5nc8TpuQUh4ahMdCrWT00wPWz7j47/emR5+2qEfoZP5zzUXvx+vdx+H6ohhnsYC31iX04QLYJK8zTg==", + "_location": "/exec-sh", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "exec-sh@0.3.2", + "name": "exec-sh", + "escapedName": "exec-sh", + "rawSpec": "0.3.2", + "saveSpec": null, + "fetchSpec": "0.3.2" + }, + "_requiredBy": [ + "/@cnakazawa/watch", + "/sane" + ], + "_resolved": "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.2.tgz", + "_spec": "0.3.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Aleksandr Tsertkov", + "email": "tsertkov@gmail.com" + }, + "bugs": { + "url": "https://github.com/tsertkov/exec-sh/issues" + }, + "dependencies": {}, + "description": "Execute shell command forwarding all stdio.", + "devDependencies": { + "coveralls": "^3.0.1", + "istanbul": "^0.4.5", + "jsdoc": "^3.5.5", + "jshint": "^2.9.6", + "mocha": "^5.2.0", + "sinon": "^6.0.1", + "standard": "^11.0.1" + }, + "homepage": "https://github.com/tsertkov/exec-sh#readme", + "keywords": [ + "exec", + "spawn", + "terminal", + "console", + "shell", + "command", + "child_process" + ], + "license": "MIT", + "main": "lib/exec-sh.js", + "name": "exec-sh", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/tsertkov/exec-sh.git" + }, + "scripts": { + "cover-test": "istanbul cover --dir artifacts/coverage _mocha -- --reporter spec", + "dev": "mocha --reporter spec --watch", + "jsdoc": "jsdoc --private --destination artifacts/jsdoc lib/", + "lint": "standard --verbose **/*.js", + "test": "npm run lint && npm run cover-test" + }, + "version": "0.3.2" +} diff --git a/node_modules/execa/package.json b/node_modules/execa/package.json new file mode 100644 index 000000000..496c4ff4c --- /dev/null +++ b/node_modules/execa/package.json @@ -0,0 +1,108 @@ +{ + "_args": [ + [ + "execa@1.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "execa@1.0.0", + "_id": "execa@1.0.0", + "_inBundle": false, + "_integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "_location": "/execa", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "execa@1.0.0", + "name": "execa", + "escapedName": "execa", + "rawSpec": "1.0.0", + "saveSpec": null, + "fetchSpec": "1.0.0" + }, + "_requiredBy": [ + "/husky", + "/jest-changed-files", + "/os-locale", + "/sane" + ], + "_resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "_spec": "1.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/execa/issues" + }, + "dependencies": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "description": "A better `child_process`", + "devDependencies": { + "ava": "*", + "cat-names": "^1.0.2", + "coveralls": "^3.0.1", + "delay": "^3.0.0", + "is-running": "^2.0.0", + "nyc": "^13.0.1", + "tempfile": "^2.0.0", + "xo": "*" + }, + "engines": { + "node": ">=6" + }, + "files": [ + "index.js", + "lib" + ], + "homepage": "https://github.com/sindresorhus/execa#readme", + "keywords": [ + "exec", + "child", + "process", + "execute", + "fork", + "execfile", + "spawn", + "file", + "shell", + "bin", + "binary", + "binaries", + "npm", + "path", + "local" + ], + "license": "MIT", + "name": "execa", + "nyc": { + "reporter": [ + "text", + "lcov" + ], + "exclude": [ + "**/fixtures/**", + "**/test.js", + "**/test/**" + ] + }, + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/execa.git" + }, + "scripts": { + "test": "xo && nyc ava" + }, + "version": "1.0.0" +} diff --git a/node_modules/exit/package.json b/node_modules/exit/package.json new file mode 100644 index 000000000..1b6e3abd5 --- /dev/null +++ b/node_modules/exit/package.json @@ -0,0 +1,80 @@ +{ + "_args": [ + [ + "exit@0.1.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "exit@0.1.2", + "_id": "exit@0.1.2", + "_inBundle": false, + "_integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=", + "_location": "/exit", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "exit@0.1.2", + "name": "exit", + "escapedName": "exit", + "rawSpec": "0.1.2", + "saveSpec": null, + "fetchSpec": "0.1.2" + }, + "_requiredBy": [ + "/@jest/core", + "/@jest/reporters", + "/jest-runner", + "/jest-runtime", + "/jest/jest-cli" + ], + "_resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "_spec": "0.1.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "\"Cowboy\" Ben Alman", + "url": "http://benalman.com/" + }, + "bugs": { + "url": "https://github.com/cowboy/node-exit/issues" + }, + "description": "A replacement for process.exit that ensures stdio are fully drained before exiting.", + "devDependencies": { + "grunt": "~0.4.1", + "grunt-contrib-jshint": "~0.6.4", + "grunt-contrib-nodeunit": "~0.2.0", + "grunt-contrib-watch": "~0.5.3", + "which": "~1.0.5" + }, + "engines": { + "node": ">= 0.8.0" + }, + "homepage": "https://github.com/cowboy/node-exit", + "keywords": [ + "exit", + "process", + "stdio", + "stdout", + "stderr", + "drain", + "flush", + "3584" + ], + "licenses": [ + { + "type": "MIT", + "url": "https://github.com/cowboy/node-exit/blob/master/LICENSE-MIT" + } + ], + "main": "lib/exit", + "name": "exit", + "repository": { + "type": "git", + "url": "git://github.com/cowboy/node-exit.git" + }, + "scripts": { + "test": "grunt nodeunit" + }, + "version": "0.1.2" +} diff --git a/node_modules/expand-brackets/node_modules/define-property/package.json b/node_modules/expand-brackets/node_modules/define-property/package.json new file mode 100644 index 000000000..b8ba09bb2 --- /dev/null +++ b/node_modules/expand-brackets/node_modules/define-property/package.json @@ -0,0 +1,86 @@ +{ + "_args": [ + [ + "define-property@0.2.5", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "define-property@0.2.5", + "_id": "define-property@0.2.5", + "_inBundle": false, + "_integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "_location": "/expand-brackets/define-property", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "define-property@0.2.5", + "name": "define-property", + "escapedName": "define-property", + "rawSpec": "0.2.5", + "saveSpec": null, + "fetchSpec": "0.2.5" + }, + "_requiredBy": [ + "/expand-brackets" + ], + "_resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "_spec": "0.2.5", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/define-property/issues" + }, + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "description": "Define a non-enumerable property on an object.", + "devDependencies": { + "mocha": "*", + "should": "^7.0.4" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/define-property", + "keywords": [ + "define", + "define-property", + "enumerable", + "key", + "non", + "non-enumerable", + "object", + "prop", + "property", + "value" + ], + "license": "MIT", + "main": "index.js", + "name": "define-property", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/define-property.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "related": { + "list": [ + "mixin-deep", + "mixin-object", + "delegate-object", + "forward-object" + ] + } + }, + "version": "0.2.5" +} diff --git a/node_modules/expand-brackets/node_modules/extend-shallow/package.json b/node_modules/expand-brackets/node_modules/extend-shallow/package.json new file mode 100644 index 000000000..27e6df015 --- /dev/null +++ b/node_modules/expand-brackets/node_modules/extend-shallow/package.json @@ -0,0 +1,91 @@ +{ + "_args": [ + [ + "extend-shallow@2.0.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "extend-shallow@2.0.1", + "_id": "extend-shallow@2.0.1", + "_inBundle": false, + "_integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "_location": "/expand-brackets/extend-shallow", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "extend-shallow@2.0.1", + "name": "extend-shallow", + "escapedName": "extend-shallow", + "rawSpec": "2.0.1", + "saveSpec": null, + "fetchSpec": "2.0.1" + }, + "_requiredBy": [ + "/expand-brackets" + ], + "_resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "_spec": "2.0.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/extend-shallow/issues" + }, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "description": "Extend an object with the properties of additional objects. node.js/javascript util.", + "devDependencies": { + "array-slice": "^0.2.3", + "benchmarked": "^0.1.4", + "chalk": "^1.0.0", + "for-own": "^0.1.3", + "glob": "^5.0.12", + "is-plain-object": "^2.0.1", + "kind-of": "^2.0.0", + "minimist": "^1.1.1", + "mocha": "^2.2.5", + "should": "^7.0.1" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/extend-shallow", + "keywords": [ + "assign", + "extend", + "javascript", + "js", + "keys", + "merge", + "obj", + "object", + "prop", + "properties", + "property", + "props", + "shallow", + "util", + "utility", + "utils", + "value" + ], + "license": "MIT", + "main": "index.js", + "name": "extend-shallow", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/extend-shallow.git" + }, + "scripts": { + "test": "mocha" + }, + "version": "2.0.1" +} diff --git a/node_modules/expand-brackets/package.json b/node_modules/expand-brackets/package.json new file mode 100644 index 000000000..045920975 --- /dev/null +++ b/node_modules/expand-brackets/package.json @@ -0,0 +1,137 @@ +{ + "_args": [ + [ + "expand-brackets@2.1.4", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "expand-brackets@2.1.4", + "_id": "expand-brackets@2.1.4", + "_inBundle": false, + "_integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", + "_location": "/expand-brackets", + "_phantomChildren": { + "is-descriptor": "0.1.6", + "is-extendable": "0.1.1" + }, + "_requested": { + "type": "version", + "registry": true, + "raw": "expand-brackets@2.1.4", + "name": "expand-brackets", + "escapedName": "expand-brackets", + "rawSpec": "2.1.4", + "saveSpec": null, + "fetchSpec": "2.1.4" + }, + "_requiredBy": [ + "/extglob" + ], + "_resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "_spec": "2.1.4", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/expand-brackets/issues" + }, + "contributors": [ + { + "name": "Elan Shanker", + "url": "https://github.com/es128" + }, + { + "name": "Eugene Sharygin", + "url": "https://github.com/eush77" + }, + { + "name": "Jon Schlinkert", + "email": "jon.schlinkert@sellside.com", + "url": "http://twitter.com/jonschlinkert" + }, + { + "name": "Martin Kolárik", + "email": "martin@kolarik.sk", + "url": "http://kolarik.sk" + } + ], + "dependencies": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "description": "Expand POSIX bracket expressions (character classes) in glob patterns.", + "devDependencies": { + "bash-match": "^0.1.1", + "gulp-format-md": "^0.1.10", + "helper-changelog": "^0.3.0", + "minimatch": "^3.0.3", + "mocha": "^3.0.2", + "multimatch": "^2.1.0", + "yargs-parser": "^4.0.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js", + "lib" + ], + "homepage": "https://github.com/jonschlinkert/expand-brackets", + "keywords": [ + "bracket", + "brackets", + "character class", + "expand", + "expression", + "posix" + ], + "license": "MIT", + "main": "index.js", + "name": "expand-brackets", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/expand-brackets.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "run": true, + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "helpers": [ + "helper-changelog" + ], + "related": { + "list": [ + "braces", + "extglob", + "micromatch", + "nanomatch" + ] + }, + "reflinks": [ + "micromatch", + "verb", + "verb-generate-readme" + ], + "lint": { + "reflinks": true + } + }, + "version": "2.1.4" +} diff --git a/node_modules/expect/package.json b/node_modules/expect/package.json new file mode 100644 index 000000000..d20775493 --- /dev/null +++ b/node_modules/expect/package.json @@ -0,0 +1,68 @@ +{ + "_args": [ + [ + "expect@24.8.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "expect@24.8.0", + "_id": "expect@24.8.0", + "_inBundle": false, + "_integrity": "sha512-/zYvP8iMDrzaaxHVa724eJBCKqSHmO0FA7EDkBiRHxg6OipmMn1fN+C8T9L9K8yr7UONkOifu6+LLH+z76CnaA==", + "_location": "/expect", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "expect@24.8.0", + "name": "expect", + "escapedName": "expect", + "rawSpec": "24.8.0", + "saveSpec": null, + "fetchSpec": "24.8.0" + }, + "_requiredBy": [ + "/jest-circus", + "/jest-jasmine2", + "/jest-snapshot" + ], + "_resolved": "https://registry.npmjs.org/expect/-/expect-24.8.0.tgz", + "_spec": "24.8.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "browser": "build-es5/index.js", + "bugs": { + "url": "https://github.com/facebook/jest/issues" + }, + "dependencies": { + "@jest/types": "^24.8.0", + "ansi-styles": "^3.2.0", + "jest-get-type": "^24.8.0", + "jest-matcher-utils": "^24.8.0", + "jest-message-util": "^24.8.0", + "jest-regex-util": "^24.3.0" + }, + "description": "This package exports the `expect` function used in [Jest](https://jestjs.io/). You can find its documentation [on Jest's website](https://jestjs.io/docs/en/expect.html).", + "devDependencies": { + "@types/ansi-styles": "^3.2.1", + "immutable": "^4.0.0-rc.12" + }, + "engines": { + "node": ">= 6" + }, + "gitHead": "845728f24b3ef41e450595c384e9b5c9fdf248a4", + "homepage": "https://github.com/facebook/jest#readme", + "license": "MIT", + "main": "build/index.js", + "name": "expect", + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/facebook/jest.git", + "directory": "packages/expect" + }, + "types": "build/index.d.ts", + "version": "24.8.0" +} diff --git a/node_modules/extend-shallow/node_modules/is-extendable/package.json b/node_modules/extend-shallow/node_modules/is-extendable/package.json new file mode 100644 index 000000000..5cafca645 --- /dev/null +++ b/node_modules/extend-shallow/node_modules/is-extendable/package.json @@ -0,0 +1,102 @@ +{ + "_args": [ + [ + "is-extendable@1.0.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "is-extendable@1.0.1", + "_id": "is-extendable@1.0.1", + "_inBundle": false, + "_integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "_location": "/extend-shallow/is-extendable", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-extendable@1.0.1", + "name": "is-extendable", + "escapedName": "is-extendable", + "rawSpec": "1.0.1", + "saveSpec": null, + "fetchSpec": "1.0.1" + }, + "_requiredBy": [ + "/extend-shallow" + ], + "_resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "_spec": "1.0.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/is-extendable/issues" + }, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "description": "Returns true if a value is a plain object, array or function.", + "devDependencies": { + "gulp-format-md": "^1.0.0", + "mocha": "^3.4.2" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "homepage": "https://github.com/jonschlinkert/is-extendable", + "keywords": [ + "array", + "assign", + "check", + "date", + "extend", + "extendable", + "extensible", + "function", + "is", + "object", + "regex", + "test" + ], + "license": "MIT", + "main": "index.js", + "name": "is-extendable", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/is-extendable.git" + }, + "scripts": { + "test": "mocha" + }, + "types": "index.d.ts", + "verb": { + "related": { + "list": [ + "assign-deep", + "is-equal-shallow", + "is-plain-object", + "isobject", + "kind-of" + ] + }, + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "lint": { + "reflinks": true + } + }, + "version": "1.0.1" +} diff --git a/node_modules/extend-shallow/package.json b/node_modules/extend-shallow/package.json new file mode 100644 index 000000000..f805eb035 --- /dev/null +++ b/node_modules/extend-shallow/package.json @@ -0,0 +1,130 @@ +{ + "_args": [ + [ + "extend-shallow@3.0.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "extend-shallow@3.0.2", + "_id": "extend-shallow@3.0.2", + "_inBundle": false, + "_integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "_location": "/extend-shallow", + "_phantomChildren": { + "is-plain-object": "2.0.4" + }, + "_requested": { + "type": "version", + "registry": true, + "raw": "extend-shallow@3.0.2", + "name": "extend-shallow", + "escapedName": "extend-shallow", + "rawSpec": "3.0.2", + "saveSpec": null, + "fetchSpec": "3.0.2" + }, + "_requiredBy": [ + "/micromatch", + "/nanomatch", + "/regex-not", + "/split-string", + "/to-regex" + ], + "_resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "_spec": "3.0.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/extend-shallow/issues" + }, + "contributors": [ + { + "name": "Jon Schlinkert", + "url": "http://twitter.com/jonschlinkert" + }, + { + "name": "Peter deHaan", + "url": "http://about.me/peterdehaan" + } + ], + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "description": "Extend an object with the properties of additional objects. node.js/javascript util.", + "devDependencies": { + "array-slice": "^1.0.0", + "benchmarked": "^2.0.0", + "for-own": "^1.0.0", + "gulp-format-md": "^1.0.0", + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.1", + "minimist": "^1.2.0", + "mocha": "^3.5.3", + "object-assign": "^4.1.1" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/extend-shallow", + "keywords": [ + "assign", + "clone", + "extend", + "merge", + "obj", + "object", + "object-assign", + "object.assign", + "prop", + "properties", + "property", + "props", + "shallow", + "util", + "utility", + "utils", + "value" + ], + "license": "MIT", + "main": "index.js", + "name": "extend-shallow", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/extend-shallow.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "related": { + "list": [ + "extend-shallow", + "for-in", + "for-own", + "is-plain-object", + "isobject", + "kind-of" + ] + }, + "plugins": [ + "gulp-format-md" + ], + "lint": { + "reflinks": true + } + }, + "version": "3.0.2" +} diff --git a/node_modules/extend/package.json b/node_modules/extend/package.json new file mode 100644 index 000000000..8b31e28dd --- /dev/null +++ b/node_modules/extend/package.json @@ -0,0 +1,79 @@ +{ + "_args": [ + [ + "extend@3.0.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "extend@3.0.2", + "_id": "extend@3.0.2", + "_inBundle": false, + "_integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "_location": "/extend", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "extend@3.0.2", + "name": "extend", + "escapedName": "extend", + "rawSpec": "3.0.2", + "saveSpec": null, + "fetchSpec": "3.0.2" + }, + "_requiredBy": [ + "/request" + ], + "_resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "_spec": "3.0.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Stefan Thomas", + "email": "justmoon@members.fsf.org", + "url": "http://www.justmoon.net" + }, + "bugs": { + "url": "https://github.com/justmoon/node-extend/issues" + }, + "contributors": [ + { + "name": "Jordan Harband", + "url": "https://github.com/ljharb" + } + ], + "dependencies": {}, + "description": "Port of jQuery.extend for node.js and the browser", + "devDependencies": { + "@ljharb/eslint-config": "^12.2.1", + "covert": "^1.1.0", + "eslint": "^4.19.1", + "jscs": "^3.0.7", + "tape": "^4.9.1" + }, + "homepage": "https://github.com/justmoon/node-extend#readme", + "keywords": [ + "extend", + "clone", + "merge" + ], + "license": "MIT", + "main": "index", + "name": "extend", + "repository": { + "type": "git", + "url": "git+https://github.com/justmoon/node-extend.git" + }, + "scripts": { + "coverage": "covert test/index.js", + "coverage-quiet": "covert test/index.js --quiet", + "eslint": "eslint *.js */*.js", + "jscs": "jscs *.js */*.js", + "lint": "npm run jscs && npm run eslint", + "posttest": "npm run coverage-quiet", + "pretest": "npm run lint", + "test": "npm run tests-only", + "tests-only": "node test" + }, + "version": "3.0.2" +} diff --git a/node_modules/extglob/node_modules/define-property/package.json b/node_modules/extglob/node_modules/define-property/package.json new file mode 100644 index 000000000..73d35c70d --- /dev/null +++ b/node_modules/extglob/node_modules/define-property/package.json @@ -0,0 +1,97 @@ +{ + "_args": [ + [ + "define-property@1.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "define-property@1.0.0", + "_id": "define-property@1.0.0", + "_inBundle": false, + "_integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "_location": "/extglob/define-property", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "define-property@1.0.0", + "name": "define-property", + "escapedName": "define-property", + "rawSpec": "1.0.0", + "saveSpec": null, + "fetchSpec": "1.0.0" + }, + "_requiredBy": [ + "/extglob" + ], + "_resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "_spec": "1.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/define-property/issues" + }, + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "description": "Define a non-enumerable property on an object.", + "devDependencies": { + "gulp-format-md": "^0.1.12", + "mocha": "^3.2.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/define-property", + "keywords": [ + "define", + "define-property", + "enumerable", + "key", + "non", + "non-enumerable", + "object", + "prop", + "property", + "value" + ], + "license": "MIT", + "main": "index.js", + "name": "define-property", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/define-property.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "related": { + "list": [ + "extend-shallow", + "merge-deep", + "assign-deep", + "mixin-deep" + ] + }, + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "lint": { + "reflinks": true + } + }, + "version": "1.0.0" +} diff --git a/node_modules/extglob/node_modules/extend-shallow/package.json b/node_modules/extglob/node_modules/extend-shallow/package.json new file mode 100644 index 000000000..74a2a5551 --- /dev/null +++ b/node_modules/extglob/node_modules/extend-shallow/package.json @@ -0,0 +1,91 @@ +{ + "_args": [ + [ + "extend-shallow@2.0.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "extend-shallow@2.0.1", + "_id": "extend-shallow@2.0.1", + "_inBundle": false, + "_integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "_location": "/extglob/extend-shallow", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "extend-shallow@2.0.1", + "name": "extend-shallow", + "escapedName": "extend-shallow", + "rawSpec": "2.0.1", + "saveSpec": null, + "fetchSpec": "2.0.1" + }, + "_requiredBy": [ + "/extglob" + ], + "_resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "_spec": "2.0.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/extend-shallow/issues" + }, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "description": "Extend an object with the properties of additional objects. node.js/javascript util.", + "devDependencies": { + "array-slice": "^0.2.3", + "benchmarked": "^0.1.4", + "chalk": "^1.0.0", + "for-own": "^0.1.3", + "glob": "^5.0.12", + "is-plain-object": "^2.0.1", + "kind-of": "^2.0.0", + "minimist": "^1.1.1", + "mocha": "^2.2.5", + "should": "^7.0.1" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/extend-shallow", + "keywords": [ + "assign", + "extend", + "javascript", + "js", + "keys", + "merge", + "obj", + "object", + "prop", + "properties", + "property", + "props", + "shallow", + "util", + "utility", + "utils", + "value" + ], + "license": "MIT", + "main": "index.js", + "name": "extend-shallow", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/extend-shallow.git" + }, + "scripts": { + "test": "mocha" + }, + "version": "2.0.1" +} diff --git a/node_modules/extglob/node_modules/is-accessor-descriptor/package.json b/node_modules/extglob/node_modules/is-accessor-descriptor/package.json new file mode 100644 index 000000000..057156bf8 --- /dev/null +++ b/node_modules/extglob/node_modules/is-accessor-descriptor/package.json @@ -0,0 +1,114 @@ +{ + "_args": [ + [ + "is-accessor-descriptor@1.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "is-accessor-descriptor@1.0.0", + "_id": "is-accessor-descriptor@1.0.0", + "_inBundle": false, + "_integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "_location": "/extglob/is-accessor-descriptor", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-accessor-descriptor@1.0.0", + "name": "is-accessor-descriptor", + "escapedName": "is-accessor-descriptor", + "rawSpec": "1.0.0", + "saveSpec": null, + "fetchSpec": "1.0.0" + }, + "_requiredBy": [ + "/extglob/is-descriptor" + ], + "_resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "_spec": "1.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/is-accessor-descriptor/issues" + }, + "contributors": [ + { + "name": "Jon Schlinkert", + "url": "http://twitter.com/jonschlinkert" + }, + { + "name": "Rouven Weßling", + "url": "www.rouvenwessling.de" + } + ], + "dependencies": { + "kind-of": "^6.0.0" + }, + "description": "Returns true if a value has the characteristics of a valid JavaScript accessor descriptor.", + "devDependencies": { + "gulp-format-md": "^1.0.0", + "mocha": "^3.5.3" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/is-accessor-descriptor", + "keywords": [ + "accessor", + "check", + "data", + "descriptor", + "get", + "getter", + "is", + "keys", + "object", + "properties", + "property", + "set", + "setter", + "type", + "valid", + "value" + ], + "license": "MIT", + "main": "index.js", + "name": "is-accessor-descriptor", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/is-accessor-descriptor.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "related": { + "list": [ + "is-accessor-descriptor", + "is-data-descriptor", + "is-descriptor", + "is-plain-object", + "isobject" + ] + }, + "lint": { + "reflinks": true + } + }, + "version": "1.0.0" +} diff --git a/node_modules/extglob/node_modules/is-data-descriptor/package.json b/node_modules/extglob/node_modules/is-data-descriptor/package.json new file mode 100644 index 000000000..29dee9a01 --- /dev/null +++ b/node_modules/extglob/node_modules/is-data-descriptor/package.json @@ -0,0 +1,113 @@ +{ + "_args": [ + [ + "is-data-descriptor@1.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "is-data-descriptor@1.0.0", + "_id": "is-data-descriptor@1.0.0", + "_inBundle": false, + "_integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "_location": "/extglob/is-data-descriptor", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-data-descriptor@1.0.0", + "name": "is-data-descriptor", + "escapedName": "is-data-descriptor", + "rawSpec": "1.0.0", + "saveSpec": null, + "fetchSpec": "1.0.0" + }, + "_requiredBy": [ + "/extglob/is-descriptor" + ], + "_resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "_spec": "1.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/is-data-descriptor/issues" + }, + "contributors": [ + { + "name": "Jon Schlinkert", + "url": "http://twitter.com/jonschlinkert" + }, + { + "name": "Rouven Weßling", + "url": "www.rouvenwessling.de" + } + ], + "dependencies": { + "kind-of": "^6.0.0" + }, + "description": "Returns true if a value has the characteristics of a valid JavaScript data descriptor.", + "devDependencies": { + "gulp-format-md": "^1.0.0", + "mocha": "^3.5.3" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/is-data-descriptor", + "keywords": [ + "accessor", + "check", + "data", + "descriptor", + "get", + "getter", + "is", + "keys", + "object", + "properties", + "property", + "set", + "setter", + "type", + "valid", + "value" + ], + "license": "MIT", + "main": "index.js", + "name": "is-data-descriptor", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/is-data-descriptor.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "related": { + "list": [ + "is-accessor-descriptor", + "is-data-descriptor", + "is-descriptor", + "isobject" + ] + }, + "lint": { + "reflinks": true + } + }, + "version": "1.0.0" +} diff --git a/node_modules/extglob/node_modules/is-descriptor/package.json b/node_modules/extglob/node_modules/is-descriptor/package.json new file mode 100644 index 000000000..511d7d2b2 --- /dev/null +++ b/node_modules/extglob/node_modules/is-descriptor/package.json @@ -0,0 +1,118 @@ +{ + "_args": [ + [ + "is-descriptor@1.0.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "is-descriptor@1.0.2", + "_id": "is-descriptor@1.0.2", + "_inBundle": false, + "_integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "_location": "/extglob/is-descriptor", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-descriptor@1.0.2", + "name": "is-descriptor", + "escapedName": "is-descriptor", + "rawSpec": "1.0.2", + "saveSpec": null, + "fetchSpec": "1.0.2" + }, + "_requiredBy": [ + "/extglob/define-property" + ], + "_resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "_spec": "1.0.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/is-descriptor/issues" + }, + "contributors": [ + { + "name": "Brian Woodward", + "url": "https://twitter.com/doowb" + }, + { + "name": "Jon Schlinkert", + "url": "http://twitter.com/jonschlinkert" + }, + { + "url": "https://github.com/wtgtybhertgeghgtwtg" + } + ], + "dependencies": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "description": "Returns true if a value has the characteristics of a valid JavaScript descriptor. Works for data descriptors and accessor descriptors.", + "devDependencies": { + "gulp-format-md": "^1.0.0", + "mocha": "^3.5.3" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/is-descriptor", + "keywords": [ + "accessor", + "check", + "data", + "descriptor", + "get", + "getter", + "is", + "keys", + "object", + "properties", + "property", + "set", + "setter", + "type", + "valid", + "value" + ], + "license": "MIT", + "main": "index.js", + "name": "is-descriptor", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/is-descriptor.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "related": { + "list": [ + "is-accessor-descriptor", + "is-data-descriptor", + "is-descriptor", + "isobject" + ] + }, + "plugins": [ + "gulp-format-md" + ], + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "lint": { + "reflinks": true + } + }, + "version": "1.0.2" +} diff --git a/node_modules/extglob/package.json b/node_modules/extglob/package.json new file mode 100644 index 000000000..b52f5d031 --- /dev/null +++ b/node_modules/extglob/package.json @@ -0,0 +1,164 @@ +{ + "_args": [ + [ + "extglob@2.0.4", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "extglob@2.0.4", + "_id": "extglob@2.0.4", + "_inBundle": false, + "_integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "_location": "/extglob", + "_phantomChildren": { + "is-extendable": "0.1.1", + "kind-of": "6.0.2" + }, + "_requested": { + "type": "version", + "registry": true, + "raw": "extglob@2.0.4", + "name": "extglob", + "escapedName": "extglob", + "rawSpec": "2.0.4", + "saveSpec": null, + "fetchSpec": "2.0.4" + }, + "_requiredBy": [ + "/micromatch" + ], + "_resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "_spec": "2.0.4", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/micromatch/extglob/issues" + }, + "contributors": [ + { + "name": "Brian Woodward", + "url": "https://twitter.com/doowb" + }, + { + "name": "Devon Govett", + "url": "http://badassjs.com" + }, + { + "name": "Isiah Meadows", + "url": "https://www.isiahmeadows.com" + }, + { + "name": "Jon Schlinkert", + "url": "http://twitter.com/jonschlinkert" + }, + { + "name": "Matt Bierner", + "url": "http://mattbierner.com" + }, + { + "name": "Shinnosuke Watanabe", + "url": "https://shinnn.github.io" + } + ], + "dependencies": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "description": "Extended glob support for JavaScript. Adds (almost) the expressive power of regular expressions to glob patterns.", + "devDependencies": { + "bash-match": "^1.0.2", + "for-own": "^1.0.0", + "gulp": "^3.9.1", + "gulp-eslint": "^4.0.0", + "gulp-format-md": "^1.0.0", + "gulp-istanbul": "^1.1.2", + "gulp-mocha": "^3.0.1", + "gulp-unused": "^0.2.1", + "helper-changelog": "^0.3.0", + "is-windows": "^1.0.1", + "micromatch": "^3.0.4", + "minimatch": "^3.0.4", + "minimist": "^1.2.0", + "mocha": "^3.5.0", + "multimatch": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js", + "lib" + ], + "homepage": "https://github.com/micromatch/extglob", + "keywords": [ + "bash", + "extended", + "extglob", + "glob", + "globbing", + "ksh", + "match", + "pattern", + "patterns", + "regex", + "test", + "wildcard" + ], + "license": "MIT", + "lintDeps": { + "devDependencies": { + "files": { + "options": { + "ignore": [ + "benchmark/**/*.js" + ] + } + } + } + }, + "main": "index.js", + "name": "extglob", + "repository": { + "type": "git", + "url": "git+https://github.com/micromatch/extglob.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "related": { + "list": [ + "braces", + "expand-brackets", + "expand-range", + "fill-range", + "micromatch" + ] + }, + "helpers": [ + "helper-changelog" + ], + "plugins": [ + "gulp-format-md" + ], + "lint": { + "reflinks": true + } + }, + "version": "2.0.4" +} diff --git a/node_modules/extsprintf/package.json b/node_modules/extsprintf/package.json new file mode 100644 index 000000000..6eb3e4f55 --- /dev/null +++ b/node_modules/extsprintf/package.json @@ -0,0 +1,48 @@ +{ + "_args": [ + [ + "extsprintf@1.3.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "extsprintf@1.3.0", + "_id": "extsprintf@1.3.0", + "_inBundle": false, + "_integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=", + "_location": "/extsprintf", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "extsprintf@1.3.0", + "name": "extsprintf", + "escapedName": "extsprintf", + "rawSpec": "1.3.0", + "saveSpec": null, + "fetchSpec": "1.3.0" + }, + "_requiredBy": [ + "/jsprim", + "/verror" + ], + "_resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "_spec": "1.3.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/davepacheco/node-extsprintf/issues" + }, + "description": "extended POSIX-style sprintf", + "engines": [ + "node >=0.6.0" + ], + "homepage": "https://github.com/davepacheco/node-extsprintf#readme", + "license": "MIT", + "main": "./lib/extsprintf.js", + "name": "extsprintf", + "repository": { + "type": "git", + "url": "git://github.com/davepacheco/node-extsprintf.git" + }, + "version": "1.3.0" +} diff --git a/node_modules/fast-deep-equal/package.json b/node_modules/fast-deep-equal/package.json new file mode 100644 index 000000000..c953e10ca --- /dev/null +++ b/node_modules/fast-deep-equal/package.json @@ -0,0 +1,90 @@ +{ + "_args": [ + [ + "fast-deep-equal@2.0.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "fast-deep-equal@2.0.1", + "_id": "fast-deep-equal@2.0.1", + "_inBundle": false, + "_integrity": "sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=", + "_location": "/fast-deep-equal", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "fast-deep-equal@2.0.1", + "name": "fast-deep-equal", + "escapedName": "fast-deep-equal", + "rawSpec": "2.0.1", + "saveSpec": null, + "fetchSpec": "2.0.1" + }, + "_requiredBy": [ + "/ajv" + ], + "_resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz", + "_spec": "2.0.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Evgeny Poberezkin" + }, + "bugs": { + "url": "https://github.com/epoberezkin/fast-deep-equal/issues" + }, + "description": "Fast deep equal", + "devDependencies": { + "benchmark": "^2.1.4", + "coveralls": "^2.13.1", + "deep-eql": "latest", + "deep-equal": "latest", + "eslint": "^4.0.0", + "lodash": "latest", + "mocha": "^3.4.2", + "nano-equal": "latest", + "nyc": "^11.0.2", + "pre-commit": "^1.2.2", + "ramda": "latest", + "shallow-equal-fuzzy": "latest", + "typescript": "^2.6.1", + "underscore": "latest" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "homepage": "https://github.com/epoberezkin/fast-deep-equal#readme", + "keywords": [ + "fast", + "equal", + "deep-equal" + ], + "license": "MIT", + "main": "index.js", + "name": "fast-deep-equal", + "nyc": { + "exclude": [ + "**/spec/**", + "node_modules" + ], + "reporter": [ + "lcov", + "text-summary" + ] + }, + "repository": { + "type": "git", + "url": "git+https://github.com/epoberezkin/fast-deep-equal.git" + }, + "scripts": { + "eslint": "eslint *.js benchmark spec", + "test": "npm run eslint && npm run test-ts && npm run test-cov", + "test-cov": "nyc npm run test-spec", + "test-spec": "mocha spec/*.spec.js -R spec", + "test-ts": "tsc --target ES5 --noImplicitAny index.d.ts" + }, + "types": "index.d.ts", + "version": "2.0.1" +} diff --git a/node_modules/fast-json-stable-stringify/package.json b/node_modules/fast-json-stable-stringify/package.json new file mode 100644 index 000000000..b79296aef --- /dev/null +++ b/node_modules/fast-json-stable-stringify/package.json @@ -0,0 +1,85 @@ +{ + "_args": [ + [ + "fast-json-stable-stringify@2.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "fast-json-stable-stringify@2.0.0", + "_id": "fast-json-stable-stringify@2.0.0", + "_inBundle": false, + "_integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I=", + "_location": "/fast-json-stable-stringify", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "fast-json-stable-stringify@2.0.0", + "name": "fast-json-stable-stringify", + "escapedName": "fast-json-stable-stringify", + "rawSpec": "2.0.0", + "saveSpec": null, + "fetchSpec": "2.0.0" + }, + "_requiredBy": [ + "/@jest/transform", + "/ajv", + "/bs-logger", + "/ts-jest" + ], + "_resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz", + "_spec": "2.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "bugs": { + "url": "https://github.com/epoberezkin/fast-json-stable-stringify/issues" + }, + "description": "deterministic `JSON.stringify()` - a faster version of substack's json-stable-strigify without jsonify", + "devDependencies": { + "benchmark": "^2.1.4", + "coveralls": "^3.0.0", + "eslint": "^4.9.0", + "fast-stable-stringify": "latest", + "faster-stable-stringify": "latest", + "json-stable-stringify": "latest", + "nyc": "^11.2.1", + "pre-commit": "^1.2.2", + "tape": "~1.0.4" + }, + "homepage": "https://github.com/epoberezkin/fast-json-stable-stringify", + "keywords": [ + "json", + "stringify", + "deterministic", + "hash", + "stable" + ], + "license": "MIT", + "main": "index.js", + "name": "fast-json-stable-stringify", + "nyc": { + "exclude": [ + "test", + "node_modules" + ], + "reporter": [ + "lcov", + "text-summary" + ] + }, + "repository": { + "type": "git", + "url": "git://github.com/epoberezkin/fast-json-stable-stringify.git" + }, + "scripts": { + "eslint": "eslint index.js test", + "test": "npm run eslint && nyc npm run test-spec", + "test-spec": "tape test/*.js" + }, + "version": "2.0.0" +} diff --git a/node_modules/fast-levenshtein/package.json b/node_modules/fast-levenshtein/package.json new file mode 100644 index 000000000..7a6029836 --- /dev/null +++ b/node_modules/fast-levenshtein/package.json @@ -0,0 +1,76 @@ +{ + "_args": [ + [ + "fast-levenshtein@2.0.6", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "fast-levenshtein@2.0.6", + "_id": "fast-levenshtein@2.0.6", + "_inBundle": false, + "_integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", + "_location": "/fast-levenshtein", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "fast-levenshtein@2.0.6", + "name": "fast-levenshtein", + "escapedName": "fast-levenshtein", + "rawSpec": "2.0.6", + "saveSpec": null, + "fetchSpec": "2.0.6" + }, + "_requiredBy": [ + "/optionator" + ], + "_resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "_spec": "2.0.6", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Ramesh Nair", + "email": "ram@hiddentao.com", + "url": "http://www.hiddentao.com/" + }, + "bugs": { + "url": "https://github.com/hiddentao/fast-levenshtein/issues" + }, + "description": "Efficient implementation of Levenshtein algorithm with locale-specific collator support.", + "devDependencies": { + "chai": "~1.5.0", + "grunt": "~0.4.1", + "grunt-benchmark": "~0.2.0", + "grunt-cli": "^1.2.0", + "grunt-contrib-jshint": "~0.4.3", + "grunt-contrib-uglify": "~0.2.0", + "grunt-mocha-test": "~0.2.2", + "grunt-npm-install": "~0.1.0", + "load-grunt-tasks": "~0.6.0", + "lodash": "^4.0.1", + "mocha": "~1.9.0" + }, + "files": [ + "levenshtein.js" + ], + "homepage": "https://github.com/hiddentao/fast-levenshtein#readme", + "keywords": [ + "levenshtein", + "distance", + "string" + ], + "license": "MIT", + "main": "levenshtein.js", + "name": "fast-levenshtein", + "repository": { + "type": "git", + "url": "git+https://github.com/hiddentao/fast-levenshtein.git" + }, + "scripts": { + "benchmark": "grunt benchmark", + "build": "grunt build", + "prepublish": "npm run build", + "test": "mocha" + }, + "version": "2.0.6" +} diff --git a/node_modules/fb-watchman/package.json b/node_modules/fb-watchman/package.json new file mode 100644 index 000000000..14a32f0c3 --- /dev/null +++ b/node_modules/fb-watchman/package.json @@ -0,0 +1,69 @@ +{ + "_args": [ + [ + "fb-watchman@2.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "fb-watchman@2.0.0", + "_id": "fb-watchman@2.0.0", + "_inBundle": false, + "_integrity": "sha1-VOmr99+i8mzZsWNsWIwa/AXeXVg=", + "_location": "/fb-watchman", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "fb-watchman@2.0.0", + "name": "fb-watchman", + "escapedName": "fb-watchman", + "rawSpec": "2.0.0", + "saveSpec": null, + "fetchSpec": "2.0.0" + }, + "_requiredBy": [ + "/jest-haste-map", + "/sane" + ], + "_resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.0.tgz", + "_spec": "2.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Wez Furlong", + "email": "wez@fb.com", + "url": "http://wezfurlong.org" + }, + "bugs": { + "url": "https://github.com/facebook/watchman/issues" + }, + "dependencies": { + "bser": "^2.0.0" + }, + "description": "Bindings for the Watchman file watching service", + "files": [ + "index.js" + ], + "homepage": "https://facebook.github.io/watchman/", + "keywords": [ + "facebook", + "watchman", + "file", + "watch", + "watcher", + "watching", + "fs.watch", + "fswatcher", + "fs", + "glob", + "utility" + ], + "license": "Apache-2.0", + "main": "index.js", + "name": "fb-watchman", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/facebook/watchman.git" + }, + "version": "2.0.0" +} diff --git a/node_modules/fill-range/node_modules/extend-shallow/package.json b/node_modules/fill-range/node_modules/extend-shallow/package.json new file mode 100644 index 000000000..5fedc7627 --- /dev/null +++ b/node_modules/fill-range/node_modules/extend-shallow/package.json @@ -0,0 +1,91 @@ +{ + "_args": [ + [ + "extend-shallow@2.0.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "extend-shallow@2.0.1", + "_id": "extend-shallow@2.0.1", + "_inBundle": false, + "_integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "_location": "/fill-range/extend-shallow", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "extend-shallow@2.0.1", + "name": "extend-shallow", + "escapedName": "extend-shallow", + "rawSpec": "2.0.1", + "saveSpec": null, + "fetchSpec": "2.0.1" + }, + "_requiredBy": [ + "/fill-range" + ], + "_resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "_spec": "2.0.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/extend-shallow/issues" + }, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "description": "Extend an object with the properties of additional objects. node.js/javascript util.", + "devDependencies": { + "array-slice": "^0.2.3", + "benchmarked": "^0.1.4", + "chalk": "^1.0.0", + "for-own": "^0.1.3", + "glob": "^5.0.12", + "is-plain-object": "^2.0.1", + "kind-of": "^2.0.0", + "minimist": "^1.1.1", + "mocha": "^2.2.5", + "should": "^7.0.1" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/extend-shallow", + "keywords": [ + "assign", + "extend", + "javascript", + "js", + "keys", + "merge", + "obj", + "object", + "prop", + "properties", + "property", + "props", + "shallow", + "util", + "utility", + "utils", + "value" + ], + "license": "MIT", + "main": "index.js", + "name": "extend-shallow", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/extend-shallow.git" + }, + "scripts": { + "test": "mocha" + }, + "version": "2.0.1" +} diff --git a/node_modules/fill-range/package.json b/node_modules/fill-range/package.json new file mode 100644 index 000000000..88be5887e --- /dev/null +++ b/node_modules/fill-range/package.json @@ -0,0 +1,134 @@ +{ + "_args": [ + [ + "fill-range@4.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "fill-range@4.0.0", + "_id": "fill-range@4.0.0", + "_inBundle": false, + "_integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "_location": "/fill-range", + "_phantomChildren": { + "is-extendable": "0.1.1" + }, + "_requested": { + "type": "version", + "registry": true, + "raw": "fill-range@4.0.0", + "name": "fill-range", + "escapedName": "fill-range", + "rawSpec": "4.0.0", + "saveSpec": null, + "fetchSpec": "4.0.0" + }, + "_requiredBy": [ + "/braces" + ], + "_resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "_spec": "4.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/fill-range/issues" + }, + "contributors": [ + { + "email": "wtgtybhertgeghgtwtg@gmail.com", + "url": "https://github.com/wtgtybhertgeghgtwtg" + }, + { + "name": "Edo Rivai", + "email": "edo.rivai@gmail.com", + "url": "edo.rivai.nl" + }, + { + "name": "Jon Schlinkert", + "email": "jon.schlinkert@sellside.com", + "url": "http://twitter.com/jonschlinkert" + }, + { + "name": "Paul Miller", + "email": "paul+gh@paulmillr.com", + "url": "paulmillr.com" + } + ], + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "description": "Fill in a range of numbers or letters, optionally passing an increment or `step` to use, or create a regex-compatible range with `options.toRegex`", + "devDependencies": { + "ansi-cyan": "^0.1.1", + "benchmarked": "^1.0.0", + "gulp-format-md": "^0.1.12", + "minimist": "^1.2.0", + "mocha": "^3.2.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/fill-range", + "keywords": [ + "alpha", + "alphabetical", + "array", + "bash", + "brace", + "expand", + "expansion", + "fill", + "glob", + "match", + "matches", + "matching", + "number", + "numerical", + "range", + "ranges", + "regex", + "sh" + ], + "license": "MIT", + "main": "index.js", + "name": "fill-range", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/fill-range.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "related": { + "list": [ + "braces", + "expand-range", + "micromatch", + "to-regex-range" + ] + }, + "toc": true, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "lint": { + "reflinks": true + } + }, + "version": "4.0.0" +} diff --git a/node_modules/find-up/package.json b/node_modules/find-up/package.json new file mode 100644 index 000000000..965932e82 --- /dev/null +++ b/node_modules/find-up/package.json @@ -0,0 +1,89 @@ +{ + "_args": [ + [ + "find-up@4.1.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "find-up@4.1.0", + "_id": "find-up@4.1.0", + "_inBundle": false, + "_integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "_location": "/find-up", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "find-up@4.1.0", + "name": "find-up", + "escapedName": "find-up", + "rawSpec": "4.1.0", + "saveSpec": null, + "fetchSpec": "4.1.0" + }, + "_requiredBy": [ + "/pkg-dir" + ], + "_resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "_spec": "4.1.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/find-up/issues" + }, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "description": "Find a file or directory by walking up parent directories", + "devDependencies": { + "ava": "^2.1.0", + "is-path-inside": "^2.1.0", + "tempy": "^0.3.0", + "tsd": "^0.7.3", + "xo": "^0.24.0" + }, + "engines": { + "node": ">=8" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "homepage": "https://github.com/sindresorhus/find-up#readme", + "keywords": [ + "find", + "up", + "find-up", + "findup", + "look-up", + "look", + "file", + "search", + "match", + "package", + "resolve", + "parent", + "parents", + "folder", + "directory", + "walk", + "walking", + "path" + ], + "license": "MIT", + "name": "find-up", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/find-up.git" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "4.1.0" +} diff --git a/node_modules/for-in/package.json b/node_modules/for-in/package.json new file mode 100644 index 000000000..3581348f6 --- /dev/null +++ b/node_modules/for-in/package.json @@ -0,0 +1,110 @@ +{ + "_args": [ + [ + "for-in@1.0.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "for-in@1.0.2", + "_id": "for-in@1.0.2", + "_inBundle": false, + "_integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", + "_location": "/for-in", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "for-in@1.0.2", + "name": "for-in", + "escapedName": "for-in", + "rawSpec": "1.0.2", + "saveSpec": null, + "fetchSpec": "1.0.2" + }, + "_requiredBy": [ + "/mixin-deep" + ], + "_resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "_spec": "1.0.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/for-in/issues" + }, + "contributors": [ + { + "name": "Jon Schlinkert", + "email": "jon.schlinkert@sellside.com", + "url": "http://twitter.com/jonschlinkert" + }, + { + "name": "Paul Irish", + "url": "http://paulirish.com" + } + ], + "description": "Iterate over the own and inherited enumerable properties of an object, and return an object with properties that evaluate to true from the callback. Exit early by returning `false`. JavaScript/Node.js", + "devDependencies": { + "gulp-format-md": "^0.1.11", + "mocha": "^3.2.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/for-in", + "keywords": [ + "for", + "for-in", + "for-own", + "has", + "has-own", + "hasOwn", + "in", + "key", + "keys", + "object", + "own", + "value" + ], + "license": "MIT", + "main": "index.js", + "name": "for-in", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/for-in.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "run": true, + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "related": { + "list": [ + "arr-flatten", + "collection-map", + "for-own" + ] + }, + "reflinks": [ + "verb" + ], + "lint": { + "reflinks": true + } + }, + "version": "1.0.2" +} diff --git a/node_modules/forever-agent/package.json b/node_modules/forever-agent/package.json new file mode 100644 index 000000000..52a165f30 --- /dev/null +++ b/node_modules/forever-agent/package.json @@ -0,0 +1,54 @@ +{ + "_args": [ + [ + "forever-agent@0.6.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "forever-agent@0.6.1", + "_id": "forever-agent@0.6.1", + "_inBundle": false, + "_integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=", + "_location": "/forever-agent", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "forever-agent@0.6.1", + "name": "forever-agent", + "escapedName": "forever-agent", + "rawSpec": "0.6.1", + "saveSpec": null, + "fetchSpec": "0.6.1" + }, + "_requiredBy": [ + "/request" + ], + "_resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "_spec": "0.6.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Mikeal Rogers", + "email": "mikeal.rogers@gmail.com", + "url": "http://www.futurealoof.com" + }, + "bugs": { + "url": "https://github.com/mikeal/forever-agent/issues" + }, + "dependencies": {}, + "description": "HTTP Agent that keeps socket connections alive between keep-alive requests. Formerly part of mikeal/request, now a standalone module.", + "devDependencies": {}, + "engines": { + "node": "*" + }, + "homepage": "https://github.com/mikeal/forever-agent#readme", + "license": "Apache-2.0", + "main": "index.js", + "name": "forever-agent", + "optionalDependencies": {}, + "repository": { + "url": "git+https://github.com/mikeal/forever-agent.git" + }, + "version": "0.6.1" +} diff --git a/node_modules/form-data/package.json b/node_modules/form-data/package.json new file mode 100644 index 000000000..1f16ba653 --- /dev/null +++ b/node_modules/form-data/package.json @@ -0,0 +1,102 @@ +{ + "_args": [ + [ + "form-data@2.3.3", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "form-data@2.3.3", + "_id": "form-data@2.3.3", + "_inBundle": false, + "_integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", + "_location": "/form-data", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "form-data@2.3.3", + "name": "form-data", + "escapedName": "form-data", + "rawSpec": "2.3.3", + "saveSpec": null, + "fetchSpec": "2.3.3" + }, + "_requiredBy": [ + "/request" + ], + "_resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", + "_spec": "2.3.3", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Felix Geisendörfer", + "email": "felix@debuggable.com", + "url": "http://debuggable.com/" + }, + "browser": "./lib/browser", + "bugs": { + "url": "https://github.com/form-data/form-data/issues" + }, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + }, + "description": "A library to create readable \"multipart/form-data\" streams. Can be used to submit forms and file uploads to other web applications.", + "devDependencies": { + "browserify": "^13.1.1", + "browserify-istanbul": "^2.0.0", + "coveralls": "^2.11.14", + "cross-spawn": "^4.0.2", + "eslint": "^3.9.1", + "fake": "^0.2.2", + "far": "^0.0.7", + "formidable": "^1.0.17", + "in-publish": "^2.0.0", + "is-node-modern": "^1.0.0", + "istanbul": "^0.4.5", + "obake": "^0.1.2", + "phantomjs-prebuilt": "^2.1.13", + "pkgfiles": "^2.3.0", + "pre-commit": "^1.1.3", + "request": "2.76.0", + "rimraf": "^2.5.4", + "tape": "^4.6.2" + }, + "engines": { + "node": ">= 0.12" + }, + "homepage": "https://github.com/form-data/form-data#readme", + "license": "MIT", + "main": "./lib/form_data", + "name": "form-data", + "pre-commit": [ + "lint", + "ci-test", + "check" + ], + "repository": { + "type": "git", + "url": "git://github.com/form-data/form-data.git" + }, + "scripts": { + "browser": "browserify -t browserify-istanbul test/run-browser.js | obake --coverage", + "check": "istanbul check-coverage coverage/coverage*.json", + "ci-lint": "is-node-modern 6 && npm run lint || is-node-not-modern 6", + "ci-test": "npm run test && npm run browser && npm run report", + "debug": "verbose=1 ./test/run.js", + "files": "pkgfiles --sort=name", + "get-version": "node -e \"console.log(require('./package.json').version)\"", + "lint": "eslint lib/*.js test/*.js test/integration/*.js", + "postpublish": "npm run restore-readme", + "posttest": "istanbul report lcov text", + "predebug": "rimraf coverage test/tmp", + "prepublish": "in-publish && npm run update-readme || not-in-publish", + "pretest": "rimraf coverage test/tmp", + "report": "istanbul report lcov text", + "restore-readme": "mv README.md.bak README.md", + "test": "istanbul cover test/run.js", + "update-readme": "sed -i.bak 's/\\/master\\.svg/\\/v'$(npm --silent run get-version)'.svg/g' README.md" + }, + "version": "2.3.3" +} diff --git a/node_modules/fragment-cache/package.json b/node_modules/fragment-cache/package.json new file mode 100644 index 000000000..5f6a57ee0 --- /dev/null +++ b/node_modules/fragment-cache/package.json @@ -0,0 +1,97 @@ +{ + "_args": [ + [ + "fragment-cache@0.2.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "fragment-cache@0.2.1", + "_id": "fragment-cache@0.2.1", + "_inBundle": false, + "_integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", + "_location": "/fragment-cache", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "fragment-cache@0.2.1", + "name": "fragment-cache", + "escapedName": "fragment-cache", + "rawSpec": "0.2.1", + "saveSpec": null, + "fetchSpec": "0.2.1" + }, + "_requiredBy": [ + "/extglob", + "/micromatch", + "/nanomatch" + ], + "_resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "_spec": "0.2.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/fragment-cache/issues" + }, + "dependencies": { + "map-cache": "^0.2.2" + }, + "description": "A cache for managing namespaced sub-caches", + "devDependencies": { + "gulp": "^3.9.1", + "gulp-eslint": "^3.0.1", + "gulp-format-md": "^0.1.11", + "gulp-istanbul": "^1.1.1", + "gulp-mocha": "^3.0.1", + "mocha": "^3.2.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/fragment-cache", + "keywords": [ + "cache", + "fragment" + ], + "license": "MIT", + "main": "index.js", + "name": "fragment-cache", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/fragment-cache.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "plugins": [ + "gulp-format-md" + ], + "reflinks": [ + "map-cache", + "verb" + ], + "related": { + "list": [ + "base", + "map-cache" + ] + }, + "layout": "default", + "toc": false, + "tasks": [ + "readme" + ], + "lint": { + "reflinks": true + } + }, + "version": "0.2.1" +} diff --git a/node_modules/fs.realpath/package.json b/node_modules/fs.realpath/package.json new file mode 100644 index 000000000..3c3e7af69 --- /dev/null +++ b/node_modules/fs.realpath/package.json @@ -0,0 +1,63 @@ +{ + "_args": [ + [ + "fs.realpath@1.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "fs.realpath@1.0.0", + "_id": "fs.realpath@1.0.0", + "_inBundle": false, + "_integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "_location": "/fs.realpath", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "fs.realpath@1.0.0", + "name": "fs.realpath", + "escapedName": "fs.realpath", + "rawSpec": "1.0.0", + "saveSpec": null, + "fetchSpec": "1.0.0" + }, + "_requiredBy": [ + "/glob" + ], + "_resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "_spec": "1.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me/" + }, + "bugs": { + "url": "https://github.com/isaacs/fs.realpath/issues" + }, + "dependencies": {}, + "description": "Use node's fs.realpath, but fall back to the JS implementation if the native one fails", + "devDependencies": {}, + "files": [ + "old.js", + "index.js" + ], + "homepage": "https://github.com/isaacs/fs.realpath#readme", + "keywords": [ + "realpath", + "fs", + "polyfill" + ], + "license": "ISC", + "main": "index.js", + "name": "fs.realpath", + "repository": { + "type": "git", + "url": "git+https://github.com/isaacs/fs.realpath.git" + }, + "scripts": { + "test": "tap test/*.js --cov" + }, + "version": "1.0.0" +} diff --git a/node_modules/function-bind/package.json b/node_modules/function-bind/package.json new file mode 100644 index 000000000..7480e61dc --- /dev/null +++ b/node_modules/function-bind/package.json @@ -0,0 +1,99 @@ +{ + "_args": [ + [ + "function-bind@1.1.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "function-bind@1.1.1", + "_id": "function-bind@1.1.1", + "_inBundle": false, + "_integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "_location": "/function-bind", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "function-bind@1.1.1", + "name": "function-bind", + "escapedName": "function-bind", + "rawSpec": "1.1.1", + "saveSpec": null, + "fetchSpec": "1.1.1" + }, + "_requiredBy": [ + "/es-abstract", + "/has" + ], + "_resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "_spec": "1.1.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Raynos", + "email": "raynos2@gmail.com" + }, + "bugs": { + "url": "https://github.com/Raynos/function-bind/issues", + "email": "raynos2@gmail.com" + }, + "contributors": [ + { + "name": "Raynos" + }, + { + "name": "Jordan Harband", + "url": "https://github.com/ljharb" + } + ], + "dependencies": {}, + "description": "Implementation of Function.prototype.bind", + "devDependencies": { + "@ljharb/eslint-config": "^12.2.1", + "covert": "^1.1.0", + "eslint": "^4.5.0", + "jscs": "^3.0.7", + "tape": "^4.8.0" + }, + "homepage": "https://github.com/Raynos/function-bind", + "keywords": [ + "function", + "bind", + "shim", + "es5" + ], + "license": "MIT", + "main": "index", + "name": "function-bind", + "repository": { + "type": "git", + "url": "git://github.com/Raynos/function-bind.git" + }, + "scripts": { + "coverage": "covert test/*.js", + "eslint": "eslint *.js */*.js", + "jscs": "jscs *.js */*.js", + "lint": "npm run jscs && npm run eslint", + "posttest": "npm run coverage -- --quiet", + "pretest": "npm run lint", + "test": "npm run tests-only", + "tests-only": "node test" + }, + "testling": { + "files": "test/index.js", + "browsers": [ + "ie/8..latest", + "firefox/16..latest", + "firefox/nightly", + "chrome/22..latest", + "chrome/canary", + "opera/12..latest", + "opera/next", + "safari/5.1..latest", + "ipad/6.0..latest", + "iphone/6.0..latest", + "android-browser/4.2..latest" + ] + }, + "version": "1.1.1" +} diff --git a/node_modules/get-caller-file/package.json b/node_modules/get-caller-file/package.json new file mode 100644 index 000000000..4190fab6a --- /dev/null +++ b/node_modules/get-caller-file/package.json @@ -0,0 +1,62 @@ +{ + "_args": [ + [ + "get-caller-file@1.0.3", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "get-caller-file@1.0.3", + "_id": "get-caller-file@1.0.3", + "_inBundle": false, + "_integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==", + "_location": "/get-caller-file", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "get-caller-file@1.0.3", + "name": "get-caller-file", + "escapedName": "get-caller-file", + "rawSpec": "1.0.3", + "saveSpec": null, + "fetchSpec": "1.0.3" + }, + "_requiredBy": [ + "/yargs" + ], + "_resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz", + "_spec": "1.0.3", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Stefan Penner" + }, + "bugs": { + "url": "https://github.com/stefanpenner/get-caller-file/issues" + }, + "description": "[![Build Status](https://travis-ci.org/stefanpenner/get-caller-file.svg?branch=master)](https://travis-ci.org/stefanpenner/get-caller-file) [![Build status](https://ci.appveyor.com/api/projects/status/ol2q94g1932cy14a/branch/master?svg=true)](https://ci.appveyor.com/project/embercli/get-caller-file/branch/master)", + "devDependencies": { + "chai": "^4.1.2", + "ensure-posix-path": "^1.0.1", + "mocha": "^5.2.0" + }, + "directories": { + "test": "tests" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/stefanpenner/get-caller-file#readme", + "license": "ISC", + "main": "index.js", + "name": "get-caller-file", + "repository": { + "type": "git", + "url": "git+https://github.com/stefanpenner/get-caller-file.git" + }, + "scripts": { + "test": "mocha test", + "test:debug": "mocha test" + }, + "version": "1.0.3" +} diff --git a/node_modules/get-stdin/package.json b/node_modules/get-stdin/package.json new file mode 100644 index 000000000..ee996090d --- /dev/null +++ b/node_modules/get-stdin/package.json @@ -0,0 +1,75 @@ +{ + "_args": [ + [ + "get-stdin@7.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "get-stdin@7.0.0", + "_id": "get-stdin@7.0.0", + "_inBundle": false, + "_integrity": "sha512-zRKcywvrXlXsA0v0i9Io4KDRaAw7+a1ZpjRwl9Wox8PFlVCCHra7E9c4kqXCoCM9nR5tBkaTTZRBoCm60bFqTQ==", + "_location": "/get-stdin", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "get-stdin@7.0.0", + "name": "get-stdin", + "escapedName": "get-stdin", + "rawSpec": "7.0.0", + "saveSpec": null, + "fetchSpec": "7.0.0" + }, + "_requiredBy": [ + "/husky" + ], + "_resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-7.0.0.tgz", + "_spec": "7.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/get-stdin/issues" + }, + "description": "Get stdin as a string or buffer", + "devDependencies": { + "@types/node": "^11.13.4", + "ava": "^1.4.1", + "delay": "^4.2.0", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, + "engines": { + "node": ">=8" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "homepage": "https://github.com/sindresorhus/get-stdin#readme", + "keywords": [ + "std", + "stdin", + "stdio", + "concat", + "buffer", + "stream", + "process", + "read" + ], + "license": "MIT", + "name": "get-stdin", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/get-stdin.git" + }, + "scripts": { + "test": "xo && ava test.js test-buffer.js && echo unicorns | node test-real.js && tsd" + }, + "version": "7.0.0" +} diff --git a/node_modules/get-stream/package.json b/node_modules/get-stream/package.json new file mode 100644 index 000000000..ba9e5a959 --- /dev/null +++ b/node_modules/get-stream/package.json @@ -0,0 +1,82 @@ +{ + "_args": [ + [ + "get-stream@4.1.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "get-stream@4.1.0", + "_id": "get-stream@4.1.0", + "_inBundle": false, + "_integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "_location": "/get-stream", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "get-stream@4.1.0", + "name": "get-stream", + "escapedName": "get-stream", + "rawSpec": "4.1.0", + "saveSpec": null, + "fetchSpec": "4.1.0" + }, + "_requiredBy": [ + "/execa" + ], + "_resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "_spec": "4.1.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/get-stream/issues" + }, + "dependencies": { + "pump": "^3.0.0" + }, + "description": "Get a stream as a string, buffer, or array", + "devDependencies": { + "ava": "*", + "into-stream": "^3.0.0", + "xo": "*" + }, + "engines": { + "node": ">=6" + }, + "files": [ + "index.js", + "buffer-stream.js" + ], + "homepage": "https://github.com/sindresorhus/get-stream#readme", + "keywords": [ + "get", + "stream", + "promise", + "concat", + "string", + "text", + "buffer", + "read", + "data", + "consume", + "readable", + "readablestream", + "array", + "object" + ], + "license": "MIT", + "name": "get-stream", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/get-stream.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "4.1.0" +} diff --git a/node_modules/get-value/package.json b/node_modules/get-value/package.json new file mode 100644 index 000000000..5d67aadfb --- /dev/null +++ b/node_modules/get-value/package.json @@ -0,0 +1,117 @@ +{ + "_args": [ + [ + "get-value@2.0.6", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "get-value@2.0.6", + "_id": "get-value@2.0.6", + "_inBundle": false, + "_integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=", + "_location": "/get-value", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "get-value@2.0.6", + "name": "get-value", + "escapedName": "get-value", + "rawSpec": "2.0.6", + "saveSpec": null, + "fetchSpec": "2.0.6" + }, + "_requiredBy": [ + "/cache-base", + "/has-value", + "/union-value", + "/unset-value/has-value" + ], + "_resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "_spec": "2.0.6", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/get-value/issues" + }, + "description": "Use property paths (`a.b.c`) to get a nested value from an object.", + "devDependencies": { + "ansi-bold": "^0.1.1", + "arr-reduce": "^1.0.1", + "benchmarked": "^0.1.4", + "dot-prop": "^2.2.0", + "getobject": "^0.1.0", + "gulp": "^3.9.0", + "gulp-eslint": "^1.1.1", + "gulp-format-md": "^0.1.5", + "gulp-istanbul": "^0.10.2", + "gulp-mocha": "^2.1.3", + "isobject": "^2.0.0", + "matched": "^0.3.2", + "minimist": "^1.2.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/get-value", + "keywords": [ + "get", + "key", + "nested", + "object", + "path", + "paths", + "prop", + "properties", + "property", + "props", + "segment", + "value", + "values" + ], + "license": "MIT", + "main": "index.js", + "name": "get-value", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/get-value.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "run": true, + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "related": { + "list": [ + "has-any", + "has-any-deep", + "has-value", + "set-value", + "unset-value" + ] + }, + "reflinks": [ + "verb", + "verb-readme-generator" + ], + "lint": { + "reflinks": true + } + }, + "version": "2.0.6" +} diff --git a/node_modules/getpass/package.json b/node_modules/getpass/package.json new file mode 100644 index 000000000..3069330de --- /dev/null +++ b/node_modules/getpass/package.json @@ -0,0 +1,54 @@ +{ + "_args": [ + [ + "getpass@0.1.7", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "getpass@0.1.7", + "_id": "getpass@0.1.7", + "_inBundle": false, + "_integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", + "_location": "/getpass", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "getpass@0.1.7", + "name": "getpass", + "escapedName": "getpass", + "rawSpec": "0.1.7", + "saveSpec": null, + "fetchSpec": "0.1.7" + }, + "_requiredBy": [ + "/sshpk" + ], + "_resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "_spec": "0.1.7", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Alex Wilson", + "email": "alex.wilson@joyent.com" + }, + "bugs": { + "url": "https://github.com/arekinath/node-getpass/issues" + }, + "dependencies": { + "assert-plus": "^1.0.0" + }, + "description": "getpass for node.js", + "homepage": "https://github.com/arekinath/node-getpass#readme", + "license": "MIT", + "main": "lib/index.js", + "name": "getpass", + "repository": { + "type": "git", + "url": "git+https://github.com/arekinath/node-getpass.git" + }, + "scripts": { + "test": "tape test/*.test.js" + }, + "version": "0.1.7" +} diff --git a/node_modules/glob/package.json b/node_modules/glob/package.json new file mode 100644 index 000000000..b2c0af4ab --- /dev/null +++ b/node_modules/glob/package.json @@ -0,0 +1,84 @@ +{ + "_args": [ + [ + "glob@7.1.4", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "glob@7.1.4", + "_id": "glob@7.1.4", + "_inBundle": false, + "_integrity": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==", + "_location": "/glob", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "glob@7.1.4", + "name": "glob", + "escapedName": "glob", + "rawSpec": "7.1.4", + "saveSpec": null, + "fetchSpec": "7.1.4" + }, + "_requiredBy": [ + "/@jest/reporters", + "/jest-config", + "/jest-runtime", + "/rimraf", + "/test-exclude" + ], + "_resolved": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", + "_spec": "7.1.4", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me/" + }, + "bugs": { + "url": "https://github.com/isaacs/node-glob/issues" + }, + "dependencies": { + "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" + }, + "description": "a little globber", + "devDependencies": { + "mkdirp": "0", + "rimraf": "^2.2.8", + "tap": "^12.0.1", + "tick": "0.0.6" + }, + "engines": { + "node": "*" + }, + "files": [ + "glob.js", + "sync.js", + "common.js" + ], + "homepage": "https://github.com/isaacs/node-glob#readme", + "license": "ISC", + "main": "glob.js", + "name": "glob", + "repository": { + "type": "git", + "url": "git://github.com/isaacs/node-glob.git" + }, + "scripts": { + "bench": "bash benchmark.sh", + "benchclean": "node benchclean.js", + "prepublish": "npm run benchclean", + "prof": "bash prof.sh && cat profile.txt", + "profclean": "rm -f v8.log profile.txt", + "test": "tap test/*.js --cov", + "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js" + }, + "version": "7.1.4" +} diff --git a/node_modules/globals/package.json b/node_modules/globals/package.json new file mode 100644 index 000000000..7c192ae9d --- /dev/null +++ b/node_modules/globals/package.json @@ -0,0 +1,77 @@ +{ + "_args": [ + [ + "globals@11.12.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "globals@11.12.0", + "_id": "globals@11.12.0", + "_inBundle": false, + "_integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "_location": "/globals", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "globals@11.12.0", + "name": "globals", + "escapedName": "globals", + "rawSpec": "11.12.0", + "saveSpec": null, + "fetchSpec": "11.12.0" + }, + "_requiredBy": [ + "/@babel/traverse" + ], + "_resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "_spec": "11.12.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/globals/issues" + }, + "description": "Global identifiers from different JavaScript environments", + "devDependencies": { + "ava": "0.21.0", + "xo": "0.18.0" + }, + "engines": { + "node": ">=4" + }, + "files": [ + "index.js", + "globals.json" + ], + "homepage": "https://github.com/sindresorhus/globals#readme", + "keywords": [ + "globals", + "global", + "identifiers", + "variables", + "vars", + "jshint", + "eslint", + "environments" + ], + "license": "MIT", + "name": "globals", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/globals.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "11.12.0", + "xo": { + "ignores": [ + "get-browser-globals.js" + ] + } +} diff --git a/node_modules/graceful-fs/package.json b/node_modules/graceful-fs/package.json new file mode 100644 index 000000000..98d66168a --- /dev/null +++ b/node_modules/graceful-fs/package.json @@ -0,0 +1,91 @@ +{ + "_args": [ + [ + "graceful-fs@4.2.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "graceful-fs@4.2.0", + "_id": "graceful-fs@4.2.0", + "_inBundle": false, + "_integrity": "sha512-jpSvDPV4Cq/bgtpndIWbI5hmYxhQGHPC4d4cqBPb4DLniCfhJokdXhwhaDuLBGLQdvvRum/UiX6ECVIPvDXqdg==", + "_location": "/graceful-fs", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "graceful-fs@4.2.0", + "name": "graceful-fs", + "escapedName": "graceful-fs", + "rawSpec": "4.2.0", + "saveSpec": null, + "fetchSpec": "4.2.0" + }, + "_requiredBy": [ + "/@jest/core", + "/@jest/source-map", + "/@jest/transform", + "/jest-haste-map", + "/jest-runner", + "/jest-runtime", + "/jest-util", + "/load-json-file", + "/write-file-atomic" + ], + "_resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.0.tgz", + "_spec": "4.2.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/isaacs/node-graceful-fs/issues" + }, + "dependencies": {}, + "description": "A drop-in replacement for fs, making various improvements.", + "devDependencies": { + "import-fresh": "^2.0.0", + "mkdirp": "^0.5.0", + "rimraf": "^2.2.8", + "tap": "^12.7.0" + }, + "directories": { + "test": "test" + }, + "files": [ + "fs.js", + "graceful-fs.js", + "legacy-streams.js", + "polyfills.js", + "clone.js" + ], + "homepage": "https://github.com/isaacs/node-graceful-fs#readme", + "keywords": [ + "fs", + "module", + "reading", + "retry", + "retries", + "queue", + "error", + "errors", + "handling", + "EMFILE", + "EAGAIN", + "EINVAL", + "EPERM", + "EACCESS" + ], + "license": "ISC", + "main": "graceful-fs.js", + "name": "graceful-fs", + "repository": { + "type": "git", + "url": "git+https://github.com/isaacs/node-graceful-fs.git" + }, + "scripts": { + "postpublish": "git push origin --follow-tags", + "postversion": "npm publish", + "preversion": "npm test", + "test": "node test.js | tap -" + }, + "version": "4.2.0" +} diff --git a/node_modules/growly/package.json b/node_modules/growly/package.json new file mode 100644 index 000000000..e263ef0d9 --- /dev/null +++ b/node_modules/growly/package.json @@ -0,0 +1,61 @@ +{ + "_args": [ + [ + "growly@1.3.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "growly@1.3.0", + "_id": "growly@1.3.0", + "_inBundle": false, + "_integrity": "sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=", + "_location": "/growly", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "growly@1.3.0", + "name": "growly", + "escapedName": "growly", + "rawSpec": "1.3.0", + "saveSpec": null, + "fetchSpec": "1.3.0" + }, + "_requiredBy": [ + "/node-notifier" + ], + "_resolved": "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz", + "_spec": "1.3.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Ibrahim Al-Rajhi", + "email": "abrahamalrajhi@gmail.com", + "url": "http://ibrahimalrajhi.com/" + }, + "bugs": { + "url": "http://github.com/theabraham/growly/issues" + }, + "description": "Simple zero-dependency Growl notifications using GNTP.", + "directories": { + "example": "example", + "lib": "lib" + }, + "homepage": "https://github.com/theabraham/growly#readme", + "keywords": [ + "growl", + "growly", + "snarl", + "notifications", + "gntp", + "messages" + ], + "license": "MIT", + "main": "lib/growly.js", + "name": "growly", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/theabraham/growly.git" + }, + "version": "1.3.0" +} diff --git a/node_modules/handlebars/package.json b/node_modules/handlebars/package.json new file mode 100644 index 000000000..da0f6e3fe --- /dev/null +++ b/node_modules/handlebars/package.json @@ -0,0 +1,127 @@ +{ + "_args": [ + [ + "handlebars@4.1.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "handlebars@4.1.2", + "_id": "handlebars@4.1.2", + "_inBundle": false, + "_integrity": "sha512-nvfrjqvt9xQ8Z/w0ijewdD/vvWDTOweBUm96NTr66Wfvo1mJenBLwcYmPs3TIBP5ruzYGD7Hx/DaM9RmhroGPw==", + "_location": "/handlebars", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "handlebars@4.1.2", + "name": "handlebars", + "escapedName": "handlebars", + "rawSpec": "4.1.2", + "saveSpec": null, + "fetchSpec": "4.1.2" + }, + "_requiredBy": [ + "/istanbul-reports" + ], + "_resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.1.2.tgz", + "_spec": "4.1.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Yehuda Katz" + }, + "barename": "handlebars", + "bin": { + "handlebars": "bin/handlebars" + }, + "bugs": { + "url": "https://github.com/wycats/handlebars.js/issues" + }, + "dependencies": { + "neo-async": "^2.6.0", + "optimist": "^0.6.1", + "source-map": "^0.6.1", + "uglify-js": "^3.1.4" + }, + "description": "Handlebars provides the power necessary to let you build semantic templates effectively with no frustration", + "devDependencies": { + "aws-sdk": "^2.1.49", + "babel-loader": "^5.0.0", + "babel-runtime": "^5.1.10", + "benchmark": "~1.0", + "dtslint": "^0.5.5", + "dustjs-linkedin": "^2.0.2", + "eco": "~1.1.0-rc-3", + "grunt": "^1.0.3", + "grunt-babel": "^5.0.0", + "grunt-bg-shell": "^2.3.3", + "grunt-cli": "^1", + "grunt-contrib-clean": "^1", + "grunt-contrib-concat": "^1", + "grunt-contrib-connect": "^1", + "grunt-contrib-copy": "^1", + "grunt-contrib-requirejs": "^1", + "grunt-contrib-uglify": "^1", + "grunt-contrib-watch": "^1.1.0", + "grunt-eslint": "^20.1.0", + "grunt-saucelabs": "9.x", + "grunt-webpack": "^1.0.8", + "istanbul": "^0.3.0", + "jison": "~0.3.0", + "mocha": "^5", + "mock-stdin": "^0.3.0", + "mustache": "^2.1.3", + "semver": "^5.0.1", + "typescript": "^3.4.3", + "underscore": "^1.5.1", + "webpack": "^1.12.6", + "webpack-dev-server": "^1.12.1" + }, + "engines": { + "node": ">=0.4.7" + }, + "files": [ + "bin", + "dist/*.js", + "dist/amd/**/*.js", + "dist/cjs/**/*.js", + "lib", + "print-script", + "release-notes.md", + "runtime.js", + "types/*.d.ts" + ], + "homepage": "http://www.handlebarsjs.com/", + "jspm": { + "main": "handlebars", + "directories": { + "lib": "dist/amd" + }, + "buildConfig": { + "minify": true + } + }, + "keywords": [ + "handlebars", + "mustache", + "template", + "html" + ], + "license": "MIT", + "main": "lib/index.js", + "name": "handlebars", + "optionalDependencies": { + "uglify-js": "^3.1.4" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/wycats/handlebars.js.git" + }, + "scripts": { + "checkTypes": "dtslint types", + "test": "grunt" + }, + "types": "types/index.d.ts", + "version": "4.1.2" +} diff --git a/node_modules/har-schema/package.json b/node_modules/har-schema/package.json new file mode 100644 index 000000000..bf0f88d2a --- /dev/null +++ b/node_modules/har-schema/package.json @@ -0,0 +1,90 @@ +{ + "_args": [ + [ + "har-schema@2.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "har-schema@2.0.0", + "_id": "har-schema@2.0.0", + "_inBundle": false, + "_integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=", + "_location": "/har-schema", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "har-schema@2.0.0", + "name": "har-schema", + "escapedName": "har-schema", + "rawSpec": "2.0.0", + "saveSpec": null, + "fetchSpec": "2.0.0" + }, + "_requiredBy": [ + "/har-validator" + ], + "_resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "_spec": "2.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Ahmad Nassri", + "email": "ahmad@ahmadnassri.com", + "url": "https://www.ahmadnassri.com/" + }, + "bugs": { + "url": "https://github.com/ahmadnassri/har-schema/issues" + }, + "config": { + "commitizen": { + "path": "./node_modules/cz-conventional-changelog" + } + }, + "contributors": [ + { + "name": "Evgeny Poberezkin", + "email": "e.poberezkin@me.com" + } + ], + "description": "JSON Schema for HTTP Archive (HAR)", + "devDependencies": { + "ajv": "^5.0.0", + "codeclimate-test-reporter": "^0.4.0", + "cz-conventional-changelog": "^1.2.0", + "echint": "^2.1.0", + "semantic-release": "^6.3.2", + "snazzy": "^5.0.0", + "tap": "^8.0.1" + }, + "engines": { + "node": ">=4" + }, + "files": [ + "lib" + ], + "homepage": "https://github.com/ahmadnassri/har-schema", + "keywords": [ + "har", + "http", + "archive", + "JSON", + "schema", + "JSON-schema" + ], + "license": "ISC", + "main": "lib/index.js", + "name": "har-schema", + "repository": { + "type": "git", + "url": "git+https://github.com/ahmadnassri/har-schema.git" + }, + "scripts": { + "codeclimate": "tap --coverage-report=text-lcov | codeclimate-test-reporter", + "coverage": "tap test --reporter silent --coverage", + "pretest": "snazzy && echint", + "semantic-release": "semantic-release pre && npm publish && semantic-release post", + "test": "tap test --reporter spec" + }, + "version": "2.0.0" +} diff --git a/node_modules/har-validator/package.json b/node_modules/har-validator/package.json new file mode 100644 index 000000000..4a09c0d16 --- /dev/null +++ b/node_modules/har-validator/package.json @@ -0,0 +1,80 @@ +{ + "_args": [ + [ + "har-validator@5.1.3", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "har-validator@5.1.3", + "_id": "har-validator@5.1.3", + "_inBundle": false, + "_integrity": "sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==", + "_location": "/har-validator", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "har-validator@5.1.3", + "name": "har-validator", + "escapedName": "har-validator", + "rawSpec": "5.1.3", + "saveSpec": null, + "fetchSpec": "5.1.3" + }, + "_requiredBy": [ + "/request" + ], + "_resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz", + "_spec": "5.1.3", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Ahmad Nassri", + "email": "ahmad@ahmadnassri.com", + "url": "https://www.ahmadnassri.com/" + }, + "bugs": { + "url": "https://github.com/ahmadnassri/node-har-validator/issues" + }, + "dependencies": { + "ajv": "^6.5.5", + "har-schema": "^2.0.0" + }, + "description": "Extremely fast HTTP Archive (HAR) validator using JSON Schema", + "devDependencies": { + "tap": "^12.0.1" + }, + "engines": { + "node": ">=6" + }, + "files": [ + "lib" + ], + "homepage": "https://github.com/ahmadnassri/node-har-validator", + "keywords": [ + "har", + "cli", + "ajv", + "http", + "archive", + "validate", + "validator" + ], + "license": "MIT", + "main": "lib/promise.js", + "name": "har-validator", + "repository": { + "type": "git", + "url": "git+https://github.com/ahmadnassri/node-har-validator.git" + }, + "scripts": { + "lint": "npx run-p lint:*", + "lint:deps": "npx updated", + "lint:ec": "npx editorconfig-checker .", + "lint:js": "npx eslint .", + "lint:md": "npx remark --quiet --frail .", + "open:coverage": "opener coverage/lcov-report/index.html", + "test": "tap test --coverage-report=lcov --no-browser" + }, + "version": "5.1.3" +} diff --git a/node_modules/has-flag/package.json b/node_modules/has-flag/package.json new file mode 100644 index 000000000..9350efc78 --- /dev/null +++ b/node_modules/has-flag/package.json @@ -0,0 +1,82 @@ +{ + "_args": [ + [ + "has-flag@3.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "has-flag@3.0.0", + "_id": "has-flag@3.0.0", + "_inBundle": false, + "_integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "_location": "/has-flag", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "has-flag@3.0.0", + "name": "has-flag", + "escapedName": "has-flag", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/istanbul-lib-report/supports-color", + "/jest-worker/supports-color", + "/supports-color" + ], + "_resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/has-flag/issues" + }, + "description": "Check if argv has a specific flag", + "devDependencies": { + "ava": "*", + "xo": "*" + }, + "engines": { + "node": ">=4" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/has-flag#readme", + "keywords": [ + "has", + "check", + "detect", + "contains", + "find", + "flag", + "cli", + "command-line", + "argv", + "process", + "arg", + "args", + "argument", + "arguments", + "getopt", + "minimist", + "optimist" + ], + "license": "MIT", + "name": "has-flag", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/has-flag.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "3.0.0" +} diff --git a/node_modules/has-symbols/package.json b/node_modules/has-symbols/package.json new file mode 100644 index 000000000..9b23b2d6c --- /dev/null +++ b/node_modules/has-symbols/package.json @@ -0,0 +1,111 @@ +{ + "_args": [ + [ + "has-symbols@1.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "has-symbols@1.0.0", + "_id": "has-symbols@1.0.0", + "_inBundle": false, + "_integrity": "sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q=", + "_location": "/has-symbols", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "has-symbols@1.0.0", + "name": "has-symbols", + "escapedName": "has-symbols", + "rawSpec": "1.0.0", + "saveSpec": null, + "fetchSpec": "1.0.0" + }, + "_requiredBy": [ + "/is-symbol" + ], + "_resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.0.tgz", + "_spec": "1.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jordan Harband", + "email": "ljharb@gmail.com", + "url": "http://ljharb.codes" + }, + "bugs": { + "url": "https://github.com/ljharb/has-symbols/issues" + }, + "contributors": [ + { + "name": "Jordan Harband", + "email": "ljharb@gmail.com", + "url": "http://ljharb.codes" + } + ], + "dependencies": {}, + "description": "Determine if the JS environment has Symbol support. Supports spec, or shams.", + "devDependencies": { + "@ljharb/eslint-config": "^8.0.0", + "core-js": "^2.4.1", + "eslint": "^3.5.0", + "get-own-property-symbols": "^0.9.2", + "nsp": "^2.6.1", + "safe-publish-latest": "^1.0.1", + "tape": "^4.6.0" + }, + "engines": { + "node": ">= 0.4" + }, + "homepage": "https://github.com/ljharb/has-symbols#readme", + "keywords": [ + "Symbol", + "symbols", + "typeof", + "sham", + "polyfill", + "native", + "core-js", + "ES6" + ], + "license": "MIT", + "main": "index.js", + "name": "has-symbols", + "repository": { + "type": "git", + "url": "git://github.com/ljharb/has-symbols.git" + }, + "scripts": { + "lint": "eslint *.js", + "posttest": "npm run --silent security", + "prepublish": "safe-publish-latest", + "pretest": "npm run --silent lint", + "security": "nsp check", + "test": "npm run --silent tests-only", + "test:shams": "npm run --silent test:shams:getownpropertysymbols && npm run --silent test:shams:corejs", + "test:shams:corejs": "node test/shams/core-js.js", + "test:shams:getownpropertysymbols": "node test/shams/get-own-property-symbols.js", + "test:staging": "node --harmony --es-staging test", + "test:stock": "node test", + "tests-only": "npm run --silent test:stock && npm run --silent test:staging && npm run --silent test:shams" + }, + "testling": { + "files": "test/index.js", + "browsers": [ + "iexplore/6.0..latest", + "firefox/3.0..6.0", + "firefox/15.0..latest", + "firefox/nightly", + "chrome/4.0..10.0", + "chrome/20.0..latest", + "chrome/canary", + "opera/10.0..latest", + "opera/next", + "safari/4.0..latest", + "ipad/6.0..latest", + "iphone/6.0..latest", + "android-browser/4.2" + ] + }, + "version": "1.0.0" +} diff --git a/node_modules/has-value/package.json b/node_modules/has-value/package.json new file mode 100644 index 000000000..9d8fe7d7d --- /dev/null +++ b/node_modules/has-value/package.json @@ -0,0 +1,124 @@ +{ + "_args": [ + [ + "has-value@1.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "has-value@1.0.0", + "_id": "has-value@1.0.0", + "_inBundle": false, + "_integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", + "_location": "/has-value", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "has-value@1.0.0", + "name": "has-value", + "escapedName": "has-value", + "rawSpec": "1.0.0", + "saveSpec": null, + "fetchSpec": "1.0.0" + }, + "_requiredBy": [ + "/cache-base" + ], + "_resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "_spec": "1.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/has-value/issues" + }, + "contributors": [ + { + "name": "Jon Schlinkert", + "url": "http://twitter.com/jonschlinkert" + }, + { + "name": "Ryan M Harrison", + "url": "https://linkedin.com/in/harrisonrm" + } + ], + "dependencies": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + }, + "description": "Returns true if a value exists, false if empty. Works with deeply nested values using object paths.", + "devDependencies": { + "gulp-format-md": "^0.1.12", + "mocha": "^3.4.1" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/has-value", + "keywords": [ + "array", + "boolean", + "empty", + "find", + "function", + "has", + "hasOwn", + "javascript", + "js", + "key", + "keys", + "node.js", + "null", + "number", + "object", + "properties", + "property", + "string", + "type", + "util", + "utilities", + "utility", + "value" + ], + "license": "MIT", + "main": "index.js", + "name": "has-value", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/has-value.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "run": true, + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "related": { + "list": [ + "define-property", + "get-value", + "set-value", + "unset-value" + ] + }, + "reflinks": [], + "lint": { + "reflinks": true + } + }, + "version": "1.0.0" +} diff --git a/node_modules/has-values/node_modules/kind-of/package.json b/node_modules/has-values/node_modules/kind-of/package.json new file mode 100644 index 000000000..ea5ee8ed6 --- /dev/null +++ b/node_modules/has-values/node_modules/kind-of/package.json @@ -0,0 +1,143 @@ +{ + "_args": [ + [ + "kind-of@4.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "kind-of@4.0.0", + "_id": "kind-of@4.0.0", + "_inBundle": false, + "_integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", + "_location": "/has-values/kind-of", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "kind-of@4.0.0", + "name": "kind-of", + "escapedName": "kind-of", + "rawSpec": "4.0.0", + "saveSpec": null, + "fetchSpec": "4.0.0" + }, + "_requiredBy": [ + "/has-values" + ], + "_resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "_spec": "4.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/kind-of/issues" + }, + "contributors": [ + { + "name": "David Fox-Powell", + "url": "https://dtothefp.github.io/me" + }, + { + "name": "Jon Schlinkert", + "url": "http://twitter.com/jonschlinkert" + }, + { + "name": "Ken Sheedlo", + "url": "kensheedlo.com" + }, + { + "name": "laggingreflex", + "url": "https://github.com/laggingreflex" + }, + { + "name": "Miguel Mota", + "url": "https://miguelmota.com" + }, + { + "name": "Peter deHaan", + "url": "http://about.me/peterdehaan" + } + ], + "dependencies": { + "is-buffer": "^1.1.5" + }, + "description": "Get the native type of a value.", + "devDependencies": { + "ansi-bold": "^0.1.1", + "benchmarked": "^1.1.1", + "browserify": "^14.3.0", + "glob": "^7.1.1", + "gulp-format-md": "^0.1.12", + "mocha": "^3.4.1", + "type-of": "^2.0.1", + "typeof": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/kind-of", + "keywords": [ + "arguments", + "array", + "boolean", + "check", + "date", + "function", + "is", + "is-type", + "is-type-of", + "kind", + "kind-of", + "number", + "object", + "of", + "regexp", + "string", + "test", + "type", + "type-of", + "typeof", + "types" + ], + "license": "MIT", + "main": "index.js", + "name": "kind-of", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/kind-of.git" + }, + "scripts": { + "prepublish": "browserify -o browser.js -e index.js -s index --bare", + "test": "mocha" + }, + "verb": { + "related": { + "list": [ + "is-glob", + "is-number", + "is-primitive" + ] + }, + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "lint": { + "reflinks": true + }, + "reflinks": [ + "verb" + ] + }, + "version": "4.0.0" +} diff --git a/node_modules/has-values/package.json b/node_modules/has-values/package.json new file mode 100644 index 000000000..287a9882f --- /dev/null +++ b/node_modules/has-values/package.json @@ -0,0 +1,119 @@ +{ + "_args": [ + [ + "has-values@1.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "has-values@1.0.0", + "_id": "has-values@1.0.0", + "_inBundle": false, + "_integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", + "_location": "/has-values", + "_phantomChildren": { + "is-buffer": "1.1.6" + }, + "_requested": { + "type": "version", + "registry": true, + "raw": "has-values@1.0.0", + "name": "has-values", + "escapedName": "has-values", + "rawSpec": "1.0.0", + "saveSpec": null, + "fetchSpec": "1.0.0" + }, + "_requiredBy": [ + "/has-value" + ], + "_resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", + "_spec": "1.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/has-values/issues" + }, + "dependencies": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "description": "Returns true if any values exist, false if empty. Works for booleans, functions, numbers, strings, nulls, objects and arrays. ", + "devDependencies": { + "gulp-format-md": "^0.1.12", + "mocha": "^3.4.1" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/has-values", + "keywords": [ + "array", + "boolean", + "empty", + "find", + "function", + "has", + "hasOwn", + "javascript", + "js", + "key", + "keys", + "node.js", + "null", + "number", + "object", + "properties", + "property", + "string", + "type", + "util", + "utilities", + "utility", + "value", + "values" + ], + "license": "MIT", + "main": "index.js", + "name": "has-values", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/has-values.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "run": true, + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "related": { + "list": [ + "has-value", + "kind-of", + "is-number", + "is-plain-object", + "isobject" + ] + }, + "reflinks": [ + "verb" + ], + "lint": { + "reflinks": true + } + }, + "version": "1.0.0" +} diff --git a/node_modules/has/package.json b/node_modules/has/package.json new file mode 100644 index 000000000..83874c6fe --- /dev/null +++ b/node_modules/has/package.json @@ -0,0 +1,78 @@ +{ + "_args": [ + [ + "has@1.0.3", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "has@1.0.3", + "_id": "has@1.0.3", + "_inBundle": false, + "_integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "_location": "/has", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "has@1.0.3", + "name": "has", + "escapedName": "has", + "rawSpec": "1.0.3", + "saveSpec": null, + "fetchSpec": "1.0.3" + }, + "_requiredBy": [ + "/es-abstract", + "/is-regex" + ], + "_resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "_spec": "1.0.3", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Thiago de Arruda", + "email": "tpadilha84@gmail.com" + }, + "bugs": { + "url": "https://github.com/tarruda/has/issues" + }, + "contributors": [ + { + "name": "Jordan Harband", + "email": "ljharb@gmail.com", + "url": "http://ljharb.codes" + } + ], + "dependencies": { + "function-bind": "^1.1.1" + }, + "description": "Object.prototype.hasOwnProperty.call shortcut", + "devDependencies": { + "@ljharb/eslint-config": "^12.2.1", + "eslint": "^4.19.1", + "tape": "^4.9.0" + }, + "engines": { + "node": ">= 0.4.0" + }, + "homepage": "https://github.com/tarruda/has", + "license": "MIT", + "licenses": [ + { + "type": "MIT", + "url": "https://github.com/tarruda/has/blob/master/LICENSE-MIT" + } + ], + "main": "./src", + "name": "has", + "repository": { + "type": "git", + "url": "git://github.com/tarruda/has.git" + }, + "scripts": { + "lint": "eslint .", + "pretest": "npm run lint", + "test": "tape test" + }, + "version": "1.0.3" +} diff --git a/node_modules/hosted-git-info/package.json b/node_modules/hosted-git-info/package.json new file mode 100644 index 000000000..e12614e57 --- /dev/null +++ b/node_modules/hosted-git-info/package.json @@ -0,0 +1,72 @@ +{ + "_args": [ + [ + "hosted-git-info@2.7.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "hosted-git-info@2.7.1", + "_id": "hosted-git-info@2.7.1", + "_inBundle": false, + "_integrity": "sha512-7T/BxH19zbcCTa8XkMlbK5lTo1WtgkFi3GvdWEyNuc4Vex7/9Dqbnpsf4JMydcfj9HCg4zUWFTL3Za6lapg5/w==", + "_location": "/hosted-git-info", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "hosted-git-info@2.7.1", + "name": "hosted-git-info", + "escapedName": "hosted-git-info", + "rawSpec": "2.7.1", + "saveSpec": null, + "fetchSpec": "2.7.1" + }, + "_requiredBy": [ + "/normalize-package-data" + ], + "_resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.7.1.tgz", + "_spec": "2.7.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Rebecca Turner", + "email": "me@re-becca.org", + "url": "http://re-becca.org" + }, + "bugs": { + "url": "https://github.com/npm/hosted-git-info/issues" + }, + "description": "Provides metadata and conversions from repository urls for Github, Bitbucket and Gitlab", + "devDependencies": { + "standard": "^11.0.1", + "standard-version": "^4.3.0", + "tap": "^12.0.1" + }, + "files": [ + "index.js", + "git-host.js", + "git-host-info.js" + ], + "homepage": "https://github.com/npm/hosted-git-info", + "keywords": [ + "git", + "github", + "bitbucket", + "gitlab" + ], + "license": "ISC", + "main": "index.js", + "name": "hosted-git-info", + "repository": { + "type": "git", + "url": "git+https://github.com/npm/hosted-git-info.git" + }, + "scripts": { + "postrelease": "npm publish && git push --follow-tags", + "prerelease": "npm t", + "pretest": "standard", + "release": "standard-version -s", + "test": "tap -J --nyc-arg=--all --coverage test" + }, + "version": "2.7.1" +} diff --git a/node_modules/html-encoding-sniffer/package.json b/node_modules/html-encoding-sniffer/package.json new file mode 100644 index 000000000..0c65004d0 --- /dev/null +++ b/node_modules/html-encoding-sniffer/package.json @@ -0,0 +1,67 @@ +{ + "_args": [ + [ + "html-encoding-sniffer@1.0.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "html-encoding-sniffer@1.0.2", + "_id": "html-encoding-sniffer@1.0.2", + "_inBundle": false, + "_integrity": "sha512-71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4/FuZJMVWyNaIDr4RGmaSYw==", + "_location": "/html-encoding-sniffer", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "html-encoding-sniffer@1.0.2", + "name": "html-encoding-sniffer", + "escapedName": "html-encoding-sniffer", + "rawSpec": "1.0.2", + "saveSpec": null, + "fetchSpec": "1.0.2" + }, + "_requiredBy": [ + "/jsdom" + ], + "_resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz", + "_spec": "1.0.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Domenic Denicola", + "email": "d@domenic.me", + "url": "https://domenic.me/" + }, + "bugs": { + "url": "https://github.com/jsdom/html-encoding-sniffer/issues" + }, + "dependencies": { + "whatwg-encoding": "^1.0.1" + }, + "description": "Sniff the encoding from a HTML byte stream", + "devDependencies": { + "eslint": "^3.8.0", + "mocha": "^3.1.2" + }, + "files": [ + "lib/" + ], + "homepage": "https://github.com/jsdom/html-encoding-sniffer#readme", + "keywords": [ + "encoding", + "html" + ], + "license": "MIT", + "main": "lib/html-encoding-sniffer.js", + "name": "html-encoding-sniffer", + "repository": { + "type": "git", + "url": "git+https://github.com/jsdom/html-encoding-sniffer.git" + }, + "scripts": { + "lint": "eslint lib test", + "test": "mocha" + }, + "version": "1.0.2" +} diff --git a/node_modules/http-signature/package.json b/node_modules/http-signature/package.json new file mode 100644 index 000000000..c12e78242 --- /dev/null +++ b/node_modules/http-signature/package.json @@ -0,0 +1,81 @@ +{ + "_args": [ + [ + "http-signature@1.2.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "http-signature@1.2.0", + "_id": "http-signature@1.2.0", + "_inBundle": false, + "_integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", + "_location": "/http-signature", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "http-signature@1.2.0", + "name": "http-signature", + "escapedName": "http-signature", + "rawSpec": "1.2.0", + "saveSpec": null, + "fetchSpec": "1.2.0" + }, + "_requiredBy": [ + "/request" + ], + "_resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "_spec": "1.2.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Joyent, Inc" + }, + "bugs": { + "url": "https://github.com/joyent/node-http-signature/issues" + }, + "contributors": [ + { + "name": "Mark Cavage", + "email": "mcavage@gmail.com" + }, + { + "name": "David I. Lehn", + "email": "dil@lehn.org" + }, + { + "name": "Patrick Mooney", + "email": "patrick.f.mooney@gmail.com" + } + ], + "dependencies": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + }, + "description": "Reference implementation of Joyent's HTTP Signature scheme.", + "devDependencies": { + "tap": "0.4.2", + "uuid": "^2.0.2" + }, + "engines": { + "node": ">=0.8", + "npm": ">=1.3.7" + }, + "homepage": "https://github.com/joyent/node-http-signature/", + "keywords": [ + "https", + "request" + ], + "license": "MIT", + "main": "lib/index.js", + "name": "http-signature", + "repository": { + "type": "git", + "url": "git://github.com/joyent/node-http-signature.git" + }, + "scripts": { + "test": "tap test/*.js" + }, + "version": "1.2.0" +} diff --git a/node_modules/husky/package.json b/node_modules/husky/package.json new file mode 100644 index 000000000..f54d5c31d --- /dev/null +++ b/node_modules/husky/package.json @@ -0,0 +1,139 @@ +{ + "_args": [ + [ + "husky@3.0.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "husky@3.0.2", + "_id": "husky@3.0.2", + "_inBundle": false, + "_integrity": "sha512-WXCtaME2x0o4PJlKY4ap8BzLA+D0zlvefqAvLCPriOOu+x0dpO5uc5tlB7CY6/0SE2EESmoZsj4jW5D09KrJoA==", + "_location": "/husky", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "husky@3.0.2", + "name": "husky", + "escapedName": "husky", + "rawSpec": "3.0.2", + "saveSpec": null, + "fetchSpec": "3.0.2" + }, + "_requiredBy": [ + "#DEV:/" + ], + "_resolved": "https://registry.npmjs.org/husky/-/husky-3.0.2.tgz", + "_spec": "3.0.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Typicode", + "email": "typicode@gmail.com" + }, + "bin": { + "husky-run": "./run.js", + "husky-upgrade": "./lib/upgrader/bin.js" + }, + "bugs": { + "url": "https://github.com/typicode/husky/issues" + }, + "collective": { + "type": "opencollective", + "url": "https://opencollective.com/husky" + }, + "dependencies": { + "chalk": "^2.4.2", + "cosmiconfig": "^5.2.1", + "execa": "^1.0.0", + "get-stdin": "^7.0.0", + "is-ci": "^2.0.0", + "opencollective-postinstall": "^2.0.2", + "pkg-dir": "^4.2.0", + "please-upgrade-node": "^3.1.1", + "read-pkg": "^5.1.1", + "run-node": "^1.0.0", + "slash": "^3.0.0" + }, + "description": "Prevents bad commit or push (git hooks, pre-commit/precommit, pre-push/prepush, post-merge/postmerge and all that stuff...)", + "devDependencies": { + "@types/cosmiconfig": "^5.0.3", + "@types/jest": "^24.0.15", + "@types/mkdirp": "^0.5.2", + "@types/node": "^12.0.10", + "@types/read-pkg": "^4.0.0", + "@typescript-eslint/eslint-plugin": "^1.11.0", + "@typescript-eslint/parser": "^1.11.0", + "del": "^4.1.1", + "del-cli": "^2.0.0", + "eslint": "^6.0.0", + "eslint-config-prettier": "^5.0.0", + "eslint-config-xo-space": "^0.21.0", + "eslint-plugin-prettier": "^3.1.0", + "formatree": "^1.0.2", + "jest": "^24.8.0", + "mkdirp": "^0.5.1", + "pinst": "^1.1.1", + "pkg-ok": "^2.3.1", + "prettier": "^1.18.2", + "tempy": "^0.3.0", + "ts-jest": "^24.0.2", + "typescript": "^3.5.2" + }, + "engines": { + "node": ">=8.6.0" + }, + "homepage": "https://github.com/typicode/husky#readme", + "jest": { + "transform": { + "^.+\\.tsx?$": "ts-jest" + }, + "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$", + "moduleFileExtensions": [ + "ts", + "tsx", + "js", + "jsx", + "json", + "node" + ] + }, + "keywords": [ + "git", + "hook", + "hooks", + "pre-commit", + "precommit", + "post-commit", + "postcommit", + "pre-push", + "prepush", + "post-merge", + "postmerge", + "test", + "lint" + ], + "license": "MIT", + "name": "husky", + "repository": { + "type": "git", + "url": "git+https://github.com/typicode/husky.git" + }, + "scripts": { + "build": "del-cli lib && tsc", + "devinstall": "npm run build && npm run _install -- node_modules/husky && node scripts/dev-fix-path", + "devuninstall": "npm run build && npm run preuninstall -- node_modules/husky", + "fix": "npm run lint -- --fix", + "install": "node husky install", + "lint": "eslint . --ext .js,.ts --ignore-path .gitignore", + "postinstall": "opencollective-postinstall || true", + "postpublish": "pinst --disable", + "postversion": "git push && git push --tags", + "prepublishOnly": "npm run test && npm run build && pinst --enable && pkg-ok", + "preuninstall": "node husky uninstall", + "test": "npm run lint && jest", + "version": "jest -u && git add -A src/installer/__tests__/__snapshots__" + }, + "version": "3.0.2" +} diff --git a/node_modules/iconv-lite/package.json b/node_modules/iconv-lite/package.json new file mode 100644 index 000000000..e90610e22 --- /dev/null +++ b/node_modules/iconv-lite/package.json @@ -0,0 +1,80 @@ +{ + "_args": [ + [ + "iconv-lite@0.4.24", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "iconv-lite@0.4.24", + "_id": "iconv-lite@0.4.24", + "_inBundle": false, + "_integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "_location": "/iconv-lite", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "iconv-lite@0.4.24", + "name": "iconv-lite", + "escapedName": "iconv-lite", + "rawSpec": "0.4.24", + "saveSpec": null, + "fetchSpec": "0.4.24" + }, + "_requiredBy": [ + "/whatwg-encoding" + ], + "_resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "_spec": "0.4.24", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Alexander Shtuchkin", + "email": "ashtuchkin@gmail.com" + }, + "browser": { + "./lib/extend-node": false, + "./lib/streams": false + }, + "bugs": { + "url": "https://github.com/ashtuchkin/iconv-lite/issues" + }, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "description": "Convert character encodings in pure javascript.", + "devDependencies": { + "async": "*", + "errto": "*", + "iconv": "*", + "istanbul": "*", + "mocha": "^3.1.0", + "request": "~2.87.0", + "semver": "*", + "unorm": "*" + }, + "engines": { + "node": ">=0.10.0" + }, + "homepage": "https://github.com/ashtuchkin/iconv-lite", + "keywords": [ + "iconv", + "convert", + "charset", + "icu" + ], + "license": "MIT", + "main": "./lib/index.js", + "name": "iconv-lite", + "repository": { + "type": "git", + "url": "git://github.com/ashtuchkin/iconv-lite.git" + }, + "scripts": { + "coverage": "istanbul cover _mocha -- --grep .", + "coverage-open": "open coverage/lcov-report/index.html", + "test": "mocha --reporter spec --grep ." + }, + "typings": "./lib/index.d.ts", + "version": "0.4.24" +} diff --git a/node_modules/import-fresh/package.json b/node_modules/import-fresh/package.json new file mode 100644 index 000000000..ffbe75654 --- /dev/null +++ b/node_modules/import-fresh/package.json @@ -0,0 +1,84 @@ +{ + "_args": [ + [ + "import-fresh@2.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "import-fresh@2.0.0", + "_id": "import-fresh@2.0.0", + "_inBundle": false, + "_integrity": "sha1-2BNVwVYS04bGH53dOSLUMEgipUY=", + "_location": "/import-fresh", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "import-fresh@2.0.0", + "name": "import-fresh", + "escapedName": "import-fresh", + "rawSpec": "2.0.0", + "saveSpec": null, + "fetchSpec": "2.0.0" + }, + "_requiredBy": [ + "/cosmiconfig" + ], + "_resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", + "_spec": "2.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/import-fresh/issues" + }, + "dependencies": { + "caller-path": "^2.0.0", + "resolve-from": "^3.0.0" + }, + "description": "Import a module while bypassing the cache", + "devDependencies": { + "ava": "*", + "optional-dev-dependency": "^2.0.1", + "xo": "^0.18.2" + }, + "engines": { + "node": ">=4" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/import-fresh#readme", + "keywords": [ + "require", + "cache", + "uncache", + "uncached", + "module", + "fresh", + "bypass" + ], + "license": "MIT", + "name": "import-fresh", + "optionalDevDependencies": { + "heapdump": "^0.3.7" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/import-fresh.git" + }, + "scripts": { + "heapdump": "optional-dev-dependency && node heapdump.js", + "test": "xo && ava" + }, + "version": "2.0.0", + "xo": { + "rules": { + "import/no-extraneous-dependencies": "off" + } + } +} diff --git a/node_modules/import-local/node_modules/find-up/package.json b/node_modules/import-local/node_modules/find-up/package.json new file mode 100644 index 000000000..2775887ba --- /dev/null +++ b/node_modules/import-local/node_modules/find-up/package.json @@ -0,0 +1,86 @@ +{ + "_args": [ + [ + "find-up@3.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "find-up@3.0.0", + "_id": "find-up@3.0.0", + "_inBundle": false, + "_integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "_location": "/import-local/find-up", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "find-up@3.0.0", + "name": "find-up", + "escapedName": "find-up", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/import-local/pkg-dir" + ], + "_resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/find-up/issues" + }, + "dependencies": { + "locate-path": "^3.0.0" + }, + "description": "Find a file or directory by walking up parent directories", + "devDependencies": { + "ava": "*", + "tempy": "^0.2.1", + "xo": "*" + }, + "engines": { + "node": ">=6" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/find-up#readme", + "keywords": [ + "find", + "up", + "find-up", + "findup", + "look-up", + "look", + "file", + "search", + "match", + "package", + "resolve", + "parent", + "parents", + "folder", + "directory", + "dir", + "walk", + "walking", + "path" + ], + "license": "MIT", + "name": "find-up", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/find-up.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "3.0.0" +} diff --git a/node_modules/import-local/node_modules/locate-path/package.json b/node_modules/import-local/node_modules/locate-path/package.json new file mode 100644 index 000000000..3ce657c58 --- /dev/null +++ b/node_modules/import-local/node_modules/locate-path/package.json @@ -0,0 +1,80 @@ +{ + "_args": [ + [ + "locate-path@3.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "locate-path@3.0.0", + "_id": "locate-path@3.0.0", + "_inBundle": false, + "_integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "_location": "/import-local/locate-path", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "locate-path@3.0.0", + "name": "locate-path", + "escapedName": "locate-path", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/import-local/find-up" + ], + "_resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/locate-path/issues" + }, + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "description": "Get the first path that exists on disk of multiple paths", + "devDependencies": { + "ava": "*", + "xo": "*" + }, + "engines": { + "node": ">=6" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/locate-path#readme", + "keywords": [ + "locate", + "path", + "paths", + "file", + "files", + "exists", + "find", + "finder", + "search", + "searcher", + "array", + "iterable", + "iterator" + ], + "license": "MIT", + "name": "locate-path", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/locate-path.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "3.0.0" +} diff --git a/node_modules/import-local/node_modules/p-locate/package.json b/node_modules/import-local/node_modules/p-locate/package.json new file mode 100644 index 000000000..064c88cd1 --- /dev/null +++ b/node_modules/import-local/node_modules/p-locate/package.json @@ -0,0 +1,87 @@ +{ + "_args": [ + [ + "p-locate@3.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "p-locate@3.0.0", + "_id": "p-locate@3.0.0", + "_inBundle": false, + "_integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "_location": "/import-local/p-locate", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "p-locate@3.0.0", + "name": "p-locate", + "escapedName": "p-locate", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/import-local/locate-path" + ], + "_resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/p-locate/issues" + }, + "dependencies": { + "p-limit": "^2.0.0" + }, + "description": "Get the first fulfilled promise that satisfies the provided testing function", + "devDependencies": { + "ava": "*", + "delay": "^3.0.0", + "in-range": "^1.0.0", + "time-span": "^2.0.0", + "xo": "*" + }, + "engines": { + "node": ">=6" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/p-locate#readme", + "keywords": [ + "promise", + "locate", + "find", + "finder", + "search", + "searcher", + "test", + "array", + "collection", + "iterable", + "iterator", + "race", + "fulfilled", + "fastest", + "async", + "await", + "promises", + "bluebird" + ], + "license": "MIT", + "name": "p-locate", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/p-locate.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "3.0.0" +} diff --git a/node_modules/import-local/node_modules/path-exists/package.json b/node_modules/import-local/node_modules/path-exists/package.json new file mode 100644 index 000000000..daa3248ee --- /dev/null +++ b/node_modules/import-local/node_modules/path-exists/package.json @@ -0,0 +1,76 @@ +{ + "_args": [ + [ + "path-exists@3.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "path-exists@3.0.0", + "_id": "path-exists@3.0.0", + "_inBundle": false, + "_integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "_location": "/import-local/path-exists", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "path-exists@3.0.0", + "name": "path-exists", + "escapedName": "path-exists", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/import-local/locate-path" + ], + "_resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/path-exists/issues" + }, + "description": "Check if a path exists", + "devDependencies": { + "ava": "*", + "xo": "*" + }, + "engines": { + "node": ">=4" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/path-exists#readme", + "keywords": [ + "path", + "exists", + "exist", + "file", + "filepath", + "fs", + "filesystem", + "file-system", + "access", + "stat" + ], + "license": "MIT", + "name": "path-exists", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/path-exists.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "3.0.0", + "xo": { + "esnext": true + } +} diff --git a/node_modules/import-local/node_modules/pkg-dir/package.json b/node_modules/import-local/node_modules/pkg-dir/package.json new file mode 100644 index 000000000..c2170e6bc --- /dev/null +++ b/node_modules/import-local/node_modules/pkg-dir/package.json @@ -0,0 +1,89 @@ +{ + "_args": [ + [ + "pkg-dir@3.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "pkg-dir@3.0.0", + "_id": "pkg-dir@3.0.0", + "_inBundle": false, + "_integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "_location": "/import-local/pkg-dir", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "pkg-dir@3.0.0", + "name": "pkg-dir", + "escapedName": "pkg-dir", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/import-local" + ], + "_resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/pkg-dir/issues" + }, + "dependencies": { + "find-up": "^3.0.0" + }, + "description": "Find the root directory of a Node.js project or npm package", + "devDependencies": { + "ava": "*", + "xo": "*" + }, + "engines": { + "node": ">=6" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/pkg-dir#readme", + "keywords": [ + "package", + "json", + "root", + "npm", + "entry", + "find", + "up", + "find-up", + "findup", + "look-up", + "look", + "file", + "search", + "match", + "resolve", + "parent", + "parents", + "folder", + "directory", + "dir", + "walk", + "walking", + "path" + ], + "license": "MIT", + "name": "pkg-dir", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/pkg-dir.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "3.0.0" +} diff --git a/node_modules/import-local/package.json b/node_modules/import-local/package.json new file mode 100644 index 000000000..618713ec4 --- /dev/null +++ b/node_modules/import-local/package.json @@ -0,0 +1,90 @@ +{ + "_args": [ + [ + "import-local@2.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "import-local@2.0.0", + "_id": "import-local@2.0.0", + "_inBundle": false, + "_integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==", + "_location": "/import-local", + "_phantomChildren": { + "p-limit": "2.2.0" + }, + "_requested": { + "type": "version", + "registry": true, + "raw": "import-local@2.0.0", + "name": "import-local", + "escapedName": "import-local", + "rawSpec": "2.0.0", + "saveSpec": null, + "fetchSpec": "2.0.0" + }, + "_requiredBy": [ + "/jest", + "/jest/jest-cli" + ], + "_resolved": "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz", + "_spec": "2.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "bugs": { + "url": "https://github.com/sindresorhus/import-local/issues" + }, + "dependencies": { + "pkg-dir": "^3.0.0", + "resolve-cwd": "^2.0.0" + }, + "description": "Let a globally installed package use a locally installed version of itself if available", + "devDependencies": { + "ava": "*", + "cpy": "^7.0.1", + "del": "^3.0.0", + "execa": "^0.11.0", + "xo": "*" + }, + "engines": { + "node": ">=6" + }, + "files": [ + "index.js", + "fixtures/cli.js" + ], + "homepage": "https://github.com/sindresorhus/import-local#readme", + "keywords": [ + "import", + "local", + "require", + "resolve", + "global", + "version", + "prefer", + "cli" + ], + "license": "MIT", + "name": "import-local", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/import-local.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "2.0.0", + "xo": { + "ignores": [ + "fixtures" + ] + } +} diff --git a/node_modules/imurmurhash/package.json b/node_modules/imurmurhash/package.json new file mode 100644 index 000000000..08f306f78 --- /dev/null +++ b/node_modules/imurmurhash/package.json @@ -0,0 +1,67 @@ +{ + "_args": [ + [ + "imurmurhash@0.1.4", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "imurmurhash@0.1.4", + "_id": "imurmurhash@0.1.4", + "_inBundle": false, + "_integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", + "_location": "/imurmurhash", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "imurmurhash@0.1.4", + "name": "imurmurhash", + "escapedName": "imurmurhash", + "rawSpec": "0.1.4", + "saveSpec": null, + "fetchSpec": "0.1.4" + }, + "_requiredBy": [ + "/write-file-atomic" + ], + "_resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "_spec": "0.1.4", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jens Taylor", + "email": "jensyt@gmail.com", + "url": "https://github.com/homebrewing" + }, + "bugs": { + "url": "https://github.com/jensyt/imurmurhash-js/issues" + }, + "dependencies": {}, + "description": "An incremental implementation of MurmurHash3", + "devDependencies": {}, + "engines": { + "node": ">=0.8.19" + }, + "files": [ + "imurmurhash.js", + "imurmurhash.min.js", + "package.json", + "README.md" + ], + "homepage": "https://github.com/jensyt/imurmurhash-js", + "keywords": [ + "murmur", + "murmurhash", + "murmurhash3", + "hash", + "incremental" + ], + "license": "MIT", + "main": "imurmurhash.js", + "name": "imurmurhash", + "repository": { + "type": "git", + "url": "git+https://github.com/jensyt/imurmurhash-js.git" + }, + "version": "0.1.4" +} diff --git a/node_modules/inflight/package.json b/node_modules/inflight/package.json new file mode 100644 index 000000000..6f80e85ae --- /dev/null +++ b/node_modules/inflight/package.json @@ -0,0 +1,62 @@ +{ + "_args": [ + [ + "inflight@1.0.6", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "inflight@1.0.6", + "_id": "inflight@1.0.6", + "_inBundle": false, + "_integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "_location": "/inflight", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "inflight@1.0.6", + "name": "inflight", + "escapedName": "inflight", + "rawSpec": "1.0.6", + "saveSpec": null, + "fetchSpec": "1.0.6" + }, + "_requiredBy": [ + "/glob" + ], + "_resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "_spec": "1.0.6", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me/" + }, + "bugs": { + "url": "https://github.com/isaacs/inflight/issues" + }, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + }, + "description": "Add callbacks to requests in flight to avoid async duplication", + "devDependencies": { + "tap": "^7.1.2" + }, + "files": [ + "inflight.js" + ], + "homepage": "https://github.com/isaacs/inflight", + "license": "ISC", + "main": "inflight.js", + "name": "inflight", + "repository": { + "type": "git", + "url": "git+https://github.com/npm/inflight.git" + }, + "scripts": { + "test": "tap test.js --100" + }, + "version": "1.0.6" +} diff --git a/node_modules/inherits/package.json b/node_modules/inherits/package.json new file mode 100644 index 000000000..77c5f23bf --- /dev/null +++ b/node_modules/inherits/package.json @@ -0,0 +1,66 @@ +{ + "_args": [ + [ + "inherits@2.0.4", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "inherits@2.0.4", + "_id": "inherits@2.0.4", + "_inBundle": false, + "_integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "_location": "/inherits", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "inherits@2.0.4", + "name": "inherits", + "escapedName": "inherits", + "rawSpec": "2.0.4", + "saveSpec": null, + "fetchSpec": "2.0.4" + }, + "_requiredBy": [ + "/glob", + "/readable-stream" + ], + "_resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "_spec": "2.0.4", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "browser": "./inherits_browser.js", + "bugs": { + "url": "https://github.com/isaacs/inherits/issues" + }, + "description": "Browser-friendly inheritance fully compatible with standard node.js inherits()", + "devDependencies": { + "tap": "^14.2.4" + }, + "files": [ + "inherits.js", + "inherits_browser.js" + ], + "homepage": "https://github.com/isaacs/inherits#readme", + "keywords": [ + "inheritance", + "class", + "klass", + "oop", + "object-oriented", + "inherits", + "browser", + "browserify" + ], + "license": "ISC", + "main": "./inherits.js", + "name": "inherits", + "repository": { + "type": "git", + "url": "git://github.com/isaacs/inherits.git" + }, + "scripts": { + "test": "tap" + }, + "version": "2.0.4" +} diff --git a/node_modules/invariant/package.json b/node_modules/invariant/package.json new file mode 100644 index 000000000..b5c422e1c --- /dev/null +++ b/node_modules/invariant/package.json @@ -0,0 +1,74 @@ +{ + "_args": [ + [ + "invariant@2.2.4", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "invariant@2.2.4", + "_id": "invariant@2.2.4", + "_inBundle": false, + "_integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", + "_location": "/invariant", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "invariant@2.2.4", + "name": "invariant", + "escapedName": "invariant", + "rawSpec": "2.2.4", + "saveSpec": null, + "fetchSpec": "2.2.4" + }, + "_requiredBy": [ + "/jest-haste-map" + ], + "_resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", + "_spec": "2.2.4", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Andres Suarez", + "email": "zertosh@gmail.com" + }, + "browser": "browser.js", + "browserify": { + "transform": [ + "loose-envify" + ] + }, + "bugs": { + "url": "https://github.com/zertosh/invariant/issues" + }, + "dependencies": { + "loose-envify": "^1.0.0" + }, + "description": "invariant", + "devDependencies": { + "browserify": "^11.0.1", + "flow-bin": "^0.67.1", + "tap": "^1.4.0" + }, + "files": [ + "browser.js", + "invariant.js", + "invariant.js.flow" + ], + "homepage": "https://github.com/zertosh/invariant#readme", + "keywords": [ + "test", + "invariant" + ], + "license": "MIT", + "main": "invariant.js", + "name": "invariant", + "repository": { + "type": "git", + "url": "git+https://github.com/zertosh/invariant.git" + }, + "scripts": { + "test": "NODE_ENV=production tap test/*.js && NODE_ENV=development tap test/*.js" + }, + "version": "2.2.4" +} diff --git a/node_modules/invert-kv/package.json b/node_modules/invert-kv/package.json new file mode 100644 index 000000000..9a64ad430 --- /dev/null +++ b/node_modules/invert-kv/package.json @@ -0,0 +1,68 @@ +{ + "_args": [ + [ + "invert-kv@2.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "invert-kv@2.0.0", + "_id": "invert-kv@2.0.0", + "_inBundle": false, + "_integrity": "sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA==", + "_location": "/invert-kv", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "invert-kv@2.0.0", + "name": "invert-kv", + "escapedName": "invert-kv", + "rawSpec": "2.0.0", + "saveSpec": null, + "fetchSpec": "2.0.0" + }, + "_requiredBy": [ + "/lcid" + ], + "_resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-2.0.0.tgz", + "_spec": "2.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/invert-kv/issues" + }, + "description": "Invert the key/value of an object. Example: `{foo: 'bar'}` → `{bar: 'foo'}`", + "devDependencies": { + "ava": "*", + "xo": "*" + }, + "engines": { + "node": ">=4" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/invert-kv#readme", + "keywords": [ + "object", + "key", + "value", + "kv", + "invert" + ], + "license": "MIT", + "name": "invert-kv", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/invert-kv.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "2.0.0" +} diff --git a/node_modules/is-accessor-descriptor/node_modules/kind-of/package.json b/node_modules/is-accessor-descriptor/node_modules/kind-of/package.json new file mode 100644 index 000000000..369bfe8ac --- /dev/null +++ b/node_modules/is-accessor-descriptor/node_modules/kind-of/package.json @@ -0,0 +1,143 @@ +{ + "_args": [ + [ + "kind-of@3.2.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "kind-of@3.2.2", + "_id": "kind-of@3.2.2", + "_inBundle": false, + "_integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "_location": "/is-accessor-descriptor/kind-of", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "kind-of@3.2.2", + "name": "kind-of", + "escapedName": "kind-of", + "rawSpec": "3.2.2", + "saveSpec": null, + "fetchSpec": "3.2.2" + }, + "_requiredBy": [ + "/is-accessor-descriptor" + ], + "_resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "_spec": "3.2.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/kind-of/issues" + }, + "contributors": [ + { + "name": "David Fox-Powell", + "url": "https://dtothefp.github.io/me" + }, + { + "name": "Jon Schlinkert", + "url": "http://twitter.com/jonschlinkert" + }, + { + "name": "Ken Sheedlo", + "url": "kensheedlo.com" + }, + { + "name": "laggingreflex", + "url": "https://github.com/laggingreflex" + }, + { + "name": "Miguel Mota", + "url": "https://miguelmota.com" + }, + { + "name": "Peter deHaan", + "url": "http://about.me/peterdehaan" + } + ], + "dependencies": { + "is-buffer": "^1.1.5" + }, + "description": "Get the native type of a value.", + "devDependencies": { + "ansi-bold": "^0.1.1", + "benchmarked": "^1.0.0", + "browserify": "^14.3.0", + "glob": "^7.1.1", + "gulp-format-md": "^0.1.12", + "mocha": "^3.3.0", + "type-of": "^2.0.1", + "typeof": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/kind-of", + "keywords": [ + "arguments", + "array", + "boolean", + "check", + "date", + "function", + "is", + "is-type", + "is-type-of", + "kind", + "kind-of", + "number", + "object", + "of", + "regexp", + "string", + "test", + "type", + "type-of", + "typeof", + "types" + ], + "license": "MIT", + "main": "index.js", + "name": "kind-of", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/kind-of.git" + }, + "scripts": { + "prepublish": "browserify -o browser.js -e index.js -s index --bare", + "test": "mocha" + }, + "verb": { + "related": { + "list": [ + "is-glob", + "is-number", + "is-primitive" + ] + }, + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "lint": { + "reflinks": true + }, + "reflinks": [ + "verb" + ] + }, + "version": "3.2.2" +} diff --git a/node_modules/is-accessor-descriptor/package.json b/node_modules/is-accessor-descriptor/package.json new file mode 100644 index 000000000..d189fe8de --- /dev/null +++ b/node_modules/is-accessor-descriptor/package.json @@ -0,0 +1,98 @@ +{ + "_args": [ + [ + "is-accessor-descriptor@0.1.6", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "is-accessor-descriptor@0.1.6", + "_id": "is-accessor-descriptor@0.1.6", + "_inBundle": false, + "_integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "_location": "/is-accessor-descriptor", + "_phantomChildren": { + "is-buffer": "1.1.6" + }, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-accessor-descriptor@0.1.6", + "name": "is-accessor-descriptor", + "escapedName": "is-accessor-descriptor", + "rawSpec": "0.1.6", + "saveSpec": null, + "fetchSpec": "0.1.6" + }, + "_requiredBy": [ + "/is-descriptor" + ], + "_resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "_spec": "0.1.6", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/is-accessor-descriptor/issues" + }, + "dependencies": { + "kind-of": "^3.0.2" + }, + "description": "Returns true if a value has the characteristics of a valid JavaScript accessor descriptor.", + "devDependencies": { + "mocha": "*", + "should": "*" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/is-accessor-descriptor", + "keywords": [ + "accessor", + "check", + "data", + "descriptor", + "get", + "getter", + "is", + "keys", + "object", + "properties", + "property", + "set", + "setter", + "type", + "valid", + "value" + ], + "license": "MIT", + "main": "index.js", + "name": "is-accessor-descriptor", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/is-accessor-descriptor.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "related": { + "list": [ + "is-accessor-descriptor", + "is-data-descriptor", + "is-descriptor", + "isobject" + ] + }, + "plugins": [ + "gulp-format-md" + ], + "layout": "default" + }, + "version": "0.1.6" +} diff --git a/node_modules/is-arrayish/package.json b/node_modules/is-arrayish/package.json new file mode 100644 index 000000000..a3d30e2ad --- /dev/null +++ b/node_modules/is-arrayish/package.json @@ -0,0 +1,70 @@ +{ + "_args": [ + [ + "is-arrayish@0.2.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "is-arrayish@0.2.1", + "_id": "is-arrayish@0.2.1", + "_inBundle": false, + "_integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", + "_location": "/is-arrayish", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-arrayish@0.2.1", + "name": "is-arrayish", + "escapedName": "is-arrayish", + "rawSpec": "0.2.1", + "saveSpec": null, + "fetchSpec": "0.2.1" + }, + "_requiredBy": [ + "/error-ex" + ], + "_resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "_spec": "0.2.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Qix", + "url": "http://github.com/qix-" + }, + "bugs": { + "url": "https://github.com/qix-/node-is-arrayish/issues" + }, + "description": "Determines if an object can be used as an array", + "devDependencies": { + "coffee-script": "^1.9.3", + "coveralls": "^2.11.2", + "istanbul": "^0.3.17", + "mocha": "^2.2.5", + "should": "^7.0.1", + "xo": "^0.6.1" + }, + "homepage": "https://github.com/qix-/node-is-arrayish#readme", + "keywords": [ + "is", + "array", + "duck", + "type", + "arrayish", + "similar", + "proto", + "prototype", + "type" + ], + "license": "MIT", + "name": "is-arrayish", + "repository": { + "type": "git", + "url": "git+https://github.com/qix-/node-is-arrayish.git" + }, + "scripts": { + "pretest": "xo", + "test": "mocha --compilers coffee:coffee-script/register" + }, + "version": "0.2.1" +} diff --git a/node_modules/is-buffer/package.json b/node_modules/is-buffer/package.json new file mode 100644 index 000000000..71e5bb3da --- /dev/null +++ b/node_modules/is-buffer/package.json @@ -0,0 +1,87 @@ +{ + "_args": [ + [ + "is-buffer@1.1.6", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "is-buffer@1.1.6", + "_id": "is-buffer@1.1.6", + "_inBundle": false, + "_integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "_location": "/is-buffer", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-buffer@1.1.6", + "name": "is-buffer", + "escapedName": "is-buffer", + "rawSpec": "1.1.6", + "saveSpec": null, + "fetchSpec": "1.1.6" + }, + "_requiredBy": [ + "/has-values/kind-of", + "/is-accessor-descriptor/kind-of", + "/is-data-descriptor/kind-of", + "/is-number/kind-of", + "/object-copy/kind-of", + "/snapdragon-util/kind-of", + "/to-object-path/kind-of" + ], + "_resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "_spec": "1.1.6", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Feross Aboukhadijeh", + "email": "feross@feross.org", + "url": "http://feross.org/" + }, + "bugs": { + "url": "https://github.com/feross/is-buffer/issues" + }, + "dependencies": {}, + "description": "Determine if an object is a Buffer", + "devDependencies": { + "standard": "*", + "tape": "^4.0.0", + "zuul": "^3.0.0" + }, + "homepage": "https://github.com/feross/is-buffer#readme", + "keywords": [ + "buffer", + "buffers", + "type", + "core buffer", + "browser buffer", + "browserify", + "typed array", + "uint32array", + "int16array", + "int32array", + "float32array", + "float64array", + "browser", + "arraybuffer", + "dataview" + ], + "license": "MIT", + "main": "index.js", + "name": "is-buffer", + "repository": { + "type": "git", + "url": "git://github.com/feross/is-buffer.git" + }, + "scripts": { + "test": "standard && npm run test-node && npm run test-browser", + "test-browser": "zuul -- test/*.js", + "test-browser-local": "zuul --local -- test/*.js", + "test-node": "tape test/*.js" + }, + "testling": { + "files": "test/*.js" + }, + "version": "1.1.6" +} diff --git a/node_modules/is-callable/package.json b/node_modules/is-callable/package.json new file mode 100644 index 000000000..0914c16eb --- /dev/null +++ b/node_modules/is-callable/package.json @@ -0,0 +1,128 @@ +{ + "_args": [ + [ + "is-callable@1.1.4", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "is-callable@1.1.4", + "_id": "is-callable@1.1.4", + "_inBundle": false, + "_integrity": "sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA==", + "_location": "/is-callable", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-callable@1.1.4", + "name": "is-callable", + "escapedName": "is-callable", + "rawSpec": "1.1.4", + "saveSpec": null, + "fetchSpec": "1.1.4" + }, + "_requiredBy": [ + "/es-abstract", + "/es-to-primitive" + ], + "_resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.1.4.tgz", + "_spec": "1.1.4", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jordan Harband", + "email": "ljharb@gmail.com", + "url": "http://ljharb.codes" + }, + "bugs": { + "url": "https://github.com/ljharb/is-callable/issues" + }, + "contributors": [ + { + "name": "Jordan Harband", + "email": "ljharb@gmail.com", + "url": "http://ljharb.codes" + } + ], + "dependencies": {}, + "description": "Is this JS value callable? Works with Functions and GeneratorFunctions, despite ES6 @@toStringTag.", + "devDependencies": { + "@ljharb/eslint-config": "^12.2.1", + "covert": "^1.1.0", + "editorconfig-tools": "^0.1.1", + "eslint": "^4.19.1", + "foreach": "^2.0.5", + "istanbul": "1.1.0-alpha.1", + "istanbul-merge": "^1.1.1", + "jscs": "^3.0.7", + "make-arrow-function": "^1.1.0", + "make-generator-function": "^1.1.0", + "nsp": "^3.2.1", + "rimraf": "^2.6.2", + "semver": "^5.5.0", + "tape": "^4.9.1" + }, + "engines": { + "node": ">= 0.4" + }, + "homepage": "https://github.com/ljharb/is-callable#readme", + "keywords": [ + "Function", + "function", + "callable", + "generator", + "generator function", + "arrow", + "arrow function", + "ES6", + "toStringTag", + "@@toStringTag" + ], + "license": "MIT", + "main": "index.js", + "name": "is-callable", + "repository": { + "type": "git", + "url": "git://github.com/ljharb/is-callable.git" + }, + "scripts": { + "coverage": "npm run --silent istanbul", + "covert": "covert test.js", + "covert:quiet": "covert test.js --quiet", + "eslint": "eslint *.js", + "istanbul": "npm run --silent istanbul:clean && npm run --silent istanbul:std && npm run --silent istanbul:harmony && npm run --silent istanbul:merge && istanbul check", + "istanbul:clean": "rimraf coverage coverage-std coverage-harmony", + "istanbul:harmony": "node --harmony ./node_modules/istanbul/lib/cli.js cover test.js --dir coverage-harmony", + "istanbul:merge": "istanbul-merge --out coverage/coverage.raw.json coverage-harmony/coverage.raw.json coverage-std/coverage.raw.json && istanbul report html", + "istanbul:std": "istanbul cover test.js --report html --dir coverage-std", + "jscs": "jscs *.js", + "lint": "npm run jscs && npm run eslint", + "posttest": "npm run --silent security", + "prelint": "editorconfig-tools check *", + "pretest": "npm run --silent lint", + "security": "nsp check", + "test": "npm run --silent tests-only", + "test:staging": "node --es-staging test.js", + "test:stock": "node test.js", + "tests-only": "npm run --silent test:stock && npm run --silent test:staging" + }, + "testling": { + "files": "test.js", + "browsers": [ + "iexplore/6.0..latest", + "firefox/3.0..6.0", + "firefox/15.0..latest", + "firefox/nightly", + "chrome/4.0..10.0", + "chrome/20.0..latest", + "chrome/canary", + "opera/10.0..latest", + "opera/next", + "safari/4.0..latest", + "ipad/6.0..latest", + "iphone/6.0..latest", + "android-browser/4.2" + ] + }, + "version": "1.1.4" +} diff --git a/node_modules/is-ci/package.json b/node_modules/is-ci/package.json new file mode 100644 index 000000000..649af6d42 --- /dev/null +++ b/node_modules/is-ci/package.json @@ -0,0 +1,75 @@ +{ + "_args": [ + [ + "is-ci@2.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "is-ci@2.0.0", + "_id": "is-ci@2.0.0", + "_inBundle": false, + "_integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", + "_location": "/is-ci", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-ci@2.0.0", + "name": "is-ci", + "escapedName": "is-ci", + "rawSpec": "2.0.0", + "saveSpec": null, + "fetchSpec": "2.0.0" + }, + "_requiredBy": [ + "/husky", + "/jest-util", + "/jest/jest-cli" + ], + "_resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "_spec": "2.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Thomas Watson Steen", + "email": "w@tson.dk", + "url": "https://twitter.com/wa7son" + }, + "bin": { + "is-ci": "bin.js" + }, + "bugs": { + "url": "https://github.com/watson/is-ci/issues" + }, + "coordinates": [ + 55.778272, + 12.593116 + ], + "dependencies": { + "ci-info": "^2.0.0" + }, + "description": "Detect if the current environment is a CI server", + "devDependencies": { + "clear-module": "^3.0.0", + "standard": "^12.0.1" + }, + "homepage": "https://github.com/watson/is-ci", + "keywords": [ + "ci", + "continuous", + "integration", + "test", + "detect" + ], + "license": "MIT", + "main": "index.js", + "name": "is-ci", + "repository": { + "type": "git", + "url": "git+https://github.com/watson/is-ci.git" + }, + "scripts": { + "test": "standard && node test.js" + }, + "version": "2.0.0" +} diff --git a/node_modules/is-data-descriptor/node_modules/kind-of/package.json b/node_modules/is-data-descriptor/node_modules/kind-of/package.json new file mode 100644 index 000000000..f3fe3cfa8 --- /dev/null +++ b/node_modules/is-data-descriptor/node_modules/kind-of/package.json @@ -0,0 +1,143 @@ +{ + "_args": [ + [ + "kind-of@3.2.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "kind-of@3.2.2", + "_id": "kind-of@3.2.2", + "_inBundle": false, + "_integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "_location": "/is-data-descriptor/kind-of", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "kind-of@3.2.2", + "name": "kind-of", + "escapedName": "kind-of", + "rawSpec": "3.2.2", + "saveSpec": null, + "fetchSpec": "3.2.2" + }, + "_requiredBy": [ + "/is-data-descriptor" + ], + "_resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "_spec": "3.2.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/kind-of/issues" + }, + "contributors": [ + { + "name": "David Fox-Powell", + "url": "https://dtothefp.github.io/me" + }, + { + "name": "Jon Schlinkert", + "url": "http://twitter.com/jonschlinkert" + }, + { + "name": "Ken Sheedlo", + "url": "kensheedlo.com" + }, + { + "name": "laggingreflex", + "url": "https://github.com/laggingreflex" + }, + { + "name": "Miguel Mota", + "url": "https://miguelmota.com" + }, + { + "name": "Peter deHaan", + "url": "http://about.me/peterdehaan" + } + ], + "dependencies": { + "is-buffer": "^1.1.5" + }, + "description": "Get the native type of a value.", + "devDependencies": { + "ansi-bold": "^0.1.1", + "benchmarked": "^1.0.0", + "browserify": "^14.3.0", + "glob": "^7.1.1", + "gulp-format-md": "^0.1.12", + "mocha": "^3.3.0", + "type-of": "^2.0.1", + "typeof": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/kind-of", + "keywords": [ + "arguments", + "array", + "boolean", + "check", + "date", + "function", + "is", + "is-type", + "is-type-of", + "kind", + "kind-of", + "number", + "object", + "of", + "regexp", + "string", + "test", + "type", + "type-of", + "typeof", + "types" + ], + "license": "MIT", + "main": "index.js", + "name": "kind-of", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/kind-of.git" + }, + "scripts": { + "prepublish": "browserify -o browser.js -e index.js -s index --bare", + "test": "mocha" + }, + "verb": { + "related": { + "list": [ + "is-glob", + "is-number", + "is-primitive" + ] + }, + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "lint": { + "reflinks": true + }, + "reflinks": [ + "verb" + ] + }, + "version": "3.2.2" +} diff --git a/node_modules/is-data-descriptor/package.json b/node_modules/is-data-descriptor/package.json new file mode 100644 index 000000000..67d904f64 --- /dev/null +++ b/node_modules/is-data-descriptor/package.json @@ -0,0 +1,97 @@ +{ + "_args": [ + [ + "is-data-descriptor@0.1.4", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "is-data-descriptor@0.1.4", + "_id": "is-data-descriptor@0.1.4", + "_inBundle": false, + "_integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "_location": "/is-data-descriptor", + "_phantomChildren": { + "is-buffer": "1.1.6" + }, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-data-descriptor@0.1.4", + "name": "is-data-descriptor", + "escapedName": "is-data-descriptor", + "rawSpec": "0.1.4", + "saveSpec": null, + "fetchSpec": "0.1.4" + }, + "_requiredBy": [ + "/is-descriptor" + ], + "_resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "_spec": "0.1.4", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/is-data-descriptor/issues" + }, + "dependencies": { + "kind-of": "^3.0.2" + }, + "description": "Returns true if a value has the characteristics of a valid JavaScript data descriptor.", + "devDependencies": { + "mocha": "*", + "should": "*" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/is-data-descriptor", + "keywords": [ + "accessor", + "check", + "data", + "descriptor", + "get", + "getter", + "is", + "keys", + "object", + "properties", + "property", + "set", + "setter", + "type", + "valid", + "value" + ], + "license": "MIT", + "main": "index.js", + "name": "is-data-descriptor", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/is-data-descriptor.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "related": { + "list": [ + "is-accessor-descriptor", + "is-data-descriptor", + "is-descriptor", + "isobject" + ] + }, + "plugins": [ + "gulp-format-md" + ] + }, + "version": "0.1.4" +} diff --git a/node_modules/is-date-object/package.json b/node_modules/is-date-object/package.json new file mode 100644 index 000000000..f9dbbdff6 --- /dev/null +++ b/node_modules/is-date-object/package.json @@ -0,0 +1,97 @@ +{ + "_args": [ + [ + "is-date-object@1.0.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "is-date-object@1.0.1", + "_id": "is-date-object@1.0.1", + "_inBundle": false, + "_integrity": "sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY=", + "_location": "/is-date-object", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-date-object@1.0.1", + "name": "is-date-object", + "escapedName": "is-date-object", + "rawSpec": "1.0.1", + "saveSpec": null, + "fetchSpec": "1.0.1" + }, + "_requiredBy": [ + "/es-to-primitive" + ], + "_resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz", + "_spec": "1.0.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jordan Harband" + }, + "bugs": { + "url": "https://github.com/ljharb/is-date-object/issues" + }, + "dependencies": {}, + "description": "Is this value a JS Date object? This module works cross-realm/iframe, and despite ES6 @@toStringTag.", + "devDependencies": { + "@ljharb/eslint-config": "^1.2.0", + "covert": "^1.1.0", + "eslint": "^1.5.1", + "foreach": "^2.0.5", + "indexof": "^0.0.1", + "is": "^3.1.0", + "jscs": "^2.1.1", + "nsp": "^1.1.0", + "semver": "^5.0.3", + "tape": "^4.2.0" + }, + "engines": { + "node": ">= 0.4" + }, + "homepage": "https://github.com/ljharb/is-date-object#readme", + "keywords": [ + "Date", + "ES6", + "toStringTag", + "@@toStringTag", + "Date object" + ], + "license": "MIT", + "main": "index.js", + "name": "is-date-object", + "repository": { + "type": "git", + "url": "git://github.com/ljharb/is-date-object.git" + }, + "scripts": { + "coverage": "covert test.js", + "coverage-quiet": "covert test.js --quiet", + "eslint": "eslint test.js *.js", + "jscs": "jscs test.js *.js", + "lint": "npm run jscs && npm run eslint", + "security": "nsp package", + "test": "npm run lint && node --harmony --es-staging test.js && npm run security" + }, + "testling": { + "files": "test.js", + "browsers": [ + "iexplore/6.0..latest", + "firefox/3.0..6.0", + "firefox/15.0..latest", + "firefox/nightly", + "chrome/4.0..10.0", + "chrome/20.0..latest", + "chrome/canary", + "opera/10.0..latest", + "opera/next", + "safari/4.0..latest", + "ipad/6.0..latest", + "iphone/6.0..latest", + "android-browser/4.2" + ] + }, + "version": "1.0.1" +} diff --git a/node_modules/is-descriptor/node_modules/kind-of/package.json b/node_modules/is-descriptor/node_modules/kind-of/package.json new file mode 100644 index 000000000..3bbfce5cd --- /dev/null +++ b/node_modules/is-descriptor/node_modules/kind-of/package.json @@ -0,0 +1,150 @@ +{ + "_args": [ + [ + "kind-of@5.1.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "kind-of@5.1.0", + "_id": "kind-of@5.1.0", + "_inBundle": false, + "_integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "_location": "/is-descriptor/kind-of", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "kind-of@5.1.0", + "name": "kind-of", + "escapedName": "kind-of", + "rawSpec": "5.1.0", + "saveSpec": null, + "fetchSpec": "5.1.0" + }, + "_requiredBy": [ + "/is-descriptor" + ], + "_resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "_spec": "5.1.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/kind-of/issues" + }, + "contributors": [ + { + "name": "David Fox-Powell", + "url": "https://dtothefp.github.io/me" + }, + { + "name": "James", + "url": "https://twitter.com/aretecode" + }, + { + "name": "Jon Schlinkert", + "url": "http://twitter.com/jonschlinkert" + }, + { + "name": "Ken Sheedlo", + "url": "kensheedlo.com" + }, + { + "name": "laggingreflex", + "url": "https://github.com/laggingreflex" + }, + { + "name": "Miguel Mota", + "url": "https://miguelmota.com" + }, + { + "name": "Peter deHaan", + "url": "http://about.me/peterdehaan" + }, + { + "name": "tunnckoCore", + "url": "https://i.am.charlike.online" + } + ], + "description": "Get the native type of a value.", + "devDependencies": { + "ansi-bold": "^0.1.1", + "benchmarked": "^1.1.1", + "browserify": "^14.4.0", + "gulp-format-md": "^0.1.12", + "matched": "^0.4.4", + "mocha": "^3.4.2", + "type-of": "^2.0.1", + "typeof": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/kind-of", + "keywords": [ + "arguments", + "array", + "boolean", + "check", + "date", + "function", + "is", + "is-type", + "is-type-of", + "kind", + "kind-of", + "number", + "object", + "of", + "regexp", + "string", + "test", + "type", + "type-of", + "typeof", + "types" + ], + "license": "MIT", + "main": "index.js", + "name": "kind-of", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/kind-of.git" + }, + "scripts": { + "prepublish": "browserify -o browser.js -e index.js -s index --bare", + "test": "mocha" + }, + "verb": { + "related": { + "list": [ + "is-glob", + "is-number", + "is-primitive" + ] + }, + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "lint": { + "reflinks": true + }, + "reflinks": [ + "type-of", + "typeof", + "verb" + ] + }, + "version": "5.1.0" +} diff --git a/node_modules/is-descriptor/package.json b/node_modules/is-descriptor/package.json new file mode 100644 index 000000000..075243b69 --- /dev/null +++ b/node_modules/is-descriptor/package.json @@ -0,0 +1,122 @@ +{ + "_args": [ + [ + "is-descriptor@0.1.6", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "is-descriptor@0.1.6", + "_id": "is-descriptor@0.1.6", + "_inBundle": false, + "_integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "_location": "/is-descriptor", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-descriptor@0.1.6", + "name": "is-descriptor", + "escapedName": "is-descriptor", + "rawSpec": "0.1.6", + "saveSpec": null, + "fetchSpec": "0.1.6" + }, + "_requiredBy": [ + "/class-utils/define-property", + "/expand-brackets/define-property", + "/object-copy/define-property", + "/snapdragon/define-property", + "/static-extend/define-property" + ], + "_resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "_spec": "0.1.6", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/is-descriptor/issues" + }, + "contributors": [ + { + "name": "Brian Woodward", + "url": "https://twitter.com/doowb" + }, + { + "name": "Jon Schlinkert", + "url": "http://twitter.com/jonschlinkert" + }, + { + "url": "https://github.com/wtgtybhertgeghgtwtg" + } + ], + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "description": "Returns true if a value has the characteristics of a valid JavaScript descriptor. Works for data descriptors and accessor descriptors.", + "devDependencies": { + "gulp-format-md": "^1.0.0", + "mocha": "^3.4.2" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/is-descriptor", + "keywords": [ + "accessor", + "check", + "data", + "descriptor", + "get", + "getter", + "is", + "keys", + "object", + "properties", + "property", + "set", + "setter", + "type", + "valid", + "value" + ], + "license": "MIT", + "main": "index.js", + "name": "is-descriptor", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/is-descriptor.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "related": { + "list": [ + "is-accessor-descriptor", + "is-data-descriptor", + "is-descriptor", + "isobject" + ] + }, + "plugins": [ + "gulp-format-md" + ], + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "lint": { + "reflinks": true + } + }, + "version": "0.1.6" +} diff --git a/node_modules/is-directory/package.json b/node_modules/is-directory/package.json new file mode 100644 index 000000000..b9acfc543 --- /dev/null +++ b/node_modules/is-directory/package.json @@ -0,0 +1,100 @@ +{ + "_args": [ + [ + "is-directory@0.3.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "is-directory@0.3.1", + "_id": "is-directory@0.3.1", + "_inBundle": false, + "_integrity": "sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=", + "_location": "/is-directory", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-directory@0.3.1", + "name": "is-directory", + "escapedName": "is-directory", + "rawSpec": "0.3.1", + "saveSpec": null, + "fetchSpec": "0.3.1" + }, + "_requiredBy": [ + "/cosmiconfig" + ], + "_resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz", + "_spec": "0.3.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/is-directory/issues" + }, + "description": "Returns true if a filepath exists on the file system and it's directory.", + "devDependencies": { + "gulp-format-md": "^0.1.9", + "mocha": "^2.4.5" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/is-directory", + "keywords": [ + "dir", + "directories", + "directory", + "dirs", + "file", + "filepath", + "files", + "fp", + "fs", + "node", + "node.js", + "path", + "paths", + "system" + ], + "license": "MIT", + "main": "index.js", + "name": "is-directory", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/is-directory.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "related": { + "list": [ + "is-glob", + "is-relative", + "is-absolute" + ] + }, + "lint": { + "reflinks": true + }, + "reflinks": [ + "verb" + ] + }, + "version": "0.3.1" +} diff --git a/node_modules/is-extendable/package.json b/node_modules/is-extendable/package.json new file mode 100644 index 000000000..3c6b77695 --- /dev/null +++ b/node_modules/is-extendable/package.json @@ -0,0 +1,93 @@ +{ + "_args": [ + [ + "is-extendable@0.1.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "is-extendable@0.1.1", + "_id": "is-extendable@0.1.1", + "_inBundle": false, + "_integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "_location": "/is-extendable", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-extendable@0.1.1", + "name": "is-extendable", + "escapedName": "is-extendable", + "rawSpec": "0.1.1", + "saveSpec": null, + "fetchSpec": "0.1.1" + }, + "_requiredBy": [ + "/braces/extend-shallow", + "/expand-brackets/extend-shallow", + "/extglob/extend-shallow", + "/fill-range/extend-shallow", + "/set-value", + "/set-value/extend-shallow", + "/snapdragon/extend-shallow", + "/union-value" + ], + "_resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "_spec": "0.1.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/is-extendable/issues" + }, + "description": "Returns true if a value is any of the object types: array, regexp, plain object, function or date. This is useful for determining if a value can be extended, e.g. \"can the value have keys?\"", + "devDependencies": { + "mocha": "*" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/is-extendable", + "keywords": [ + "array", + "assign", + "check", + "date", + "extend", + "extensible", + "function", + "is", + "object", + "regex", + "test" + ], + "license": "MIT", + "main": "index.js", + "name": "is-extendable", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/is-extendable.git" + }, + "scripts": { + "test": "mocha" + }, + "verbiage": { + "related": { + "list": [ + "isobject", + "is-plain-object", + "kind-of", + "is-extendable", + "is-equal-shallow", + "extend-shallow", + "assign-deep" + ] + } + }, + "version": "0.1.1" +} diff --git a/node_modules/is-fullwidth-code-point/package.json b/node_modules/is-fullwidth-code-point/package.json new file mode 100644 index 000000000..b67088b9d --- /dev/null +++ b/node_modules/is-fullwidth-code-point/package.json @@ -0,0 +1,81 @@ +{ + "_args": [ + [ + "is-fullwidth-code-point@2.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_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": "/is-fullwidth-code-point", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-fullwidth-code-point@2.0.0", + "name": "is-fullwidth-code-point", + "escapedName": "is-fullwidth-code-point", + "rawSpec": "2.0.0", + "saveSpec": null, + "fetchSpec": "2.0.0" + }, + "_requiredBy": [ + "/string-width" + ], + "_resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "_spec": "2.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/is-fullwidth-code-point/issues" + }, + "description": "Check if the character represented by a given Unicode code point is fullwidth", + "devDependencies": { + "ava": "*", + "xo": "*" + }, + "engines": { + "node": ">=4" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/is-fullwidth-code-point#readme", + "keywords": [ + "fullwidth", + "full-width", + "full", + "width", + "unicode", + "character", + "char", + "string", + "str", + "codepoint", + "code", + "point", + "is", + "detect", + "check" + ], + "license": "MIT", + "name": "is-fullwidth-code-point", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/is-fullwidth-code-point.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "2.0.0", + "xo": { + "esnext": true + } +} diff --git a/node_modules/is-generator-fn/package.json b/node_modules/is-generator-fn/package.json new file mode 100644 index 000000000..c3a92681f --- /dev/null +++ b/node_modules/is-generator-fn/package.json @@ -0,0 +1,75 @@ +{ + "_args": [ + [ + "is-generator-fn@2.1.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "is-generator-fn@2.1.0", + "_id": "is-generator-fn@2.1.0", + "_inBundle": false, + "_integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "_location": "/is-generator-fn", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-generator-fn@2.1.0", + "name": "is-generator-fn", + "escapedName": "is-generator-fn", + "rawSpec": "2.1.0", + "saveSpec": null, + "fetchSpec": "2.1.0" + }, + "_requiredBy": [ + "/jest-circus", + "/jest-jasmine2" + ], + "_resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "_spec": "2.1.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/is-generator-fn/issues" + }, + "description": "Check if something is a generator function", + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, + "engines": { + "node": ">=6" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "homepage": "https://github.com/sindresorhus/is-generator-fn#readme", + "keywords": [ + "generator", + "function", + "func", + "fn", + "is", + "check", + "detect", + "yield", + "type" + ], + "license": "MIT", + "name": "is-generator-fn", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/is-generator-fn.git" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "2.1.0" +} diff --git a/node_modules/is-number/node_modules/kind-of/package.json b/node_modules/is-number/node_modules/kind-of/package.json new file mode 100644 index 000000000..2de771ff3 --- /dev/null +++ b/node_modules/is-number/node_modules/kind-of/package.json @@ -0,0 +1,143 @@ +{ + "_args": [ + [ + "kind-of@3.2.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "kind-of@3.2.2", + "_id": "kind-of@3.2.2", + "_inBundle": false, + "_integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "_location": "/is-number/kind-of", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "kind-of@3.2.2", + "name": "kind-of", + "escapedName": "kind-of", + "rawSpec": "3.2.2", + "saveSpec": null, + "fetchSpec": "3.2.2" + }, + "_requiredBy": [ + "/is-number" + ], + "_resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "_spec": "3.2.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/kind-of/issues" + }, + "contributors": [ + { + "name": "David Fox-Powell", + "url": "https://dtothefp.github.io/me" + }, + { + "name": "Jon Schlinkert", + "url": "http://twitter.com/jonschlinkert" + }, + { + "name": "Ken Sheedlo", + "url": "kensheedlo.com" + }, + { + "name": "laggingreflex", + "url": "https://github.com/laggingreflex" + }, + { + "name": "Miguel Mota", + "url": "https://miguelmota.com" + }, + { + "name": "Peter deHaan", + "url": "http://about.me/peterdehaan" + } + ], + "dependencies": { + "is-buffer": "^1.1.5" + }, + "description": "Get the native type of a value.", + "devDependencies": { + "ansi-bold": "^0.1.1", + "benchmarked": "^1.0.0", + "browserify": "^14.3.0", + "glob": "^7.1.1", + "gulp-format-md": "^0.1.12", + "mocha": "^3.3.0", + "type-of": "^2.0.1", + "typeof": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/kind-of", + "keywords": [ + "arguments", + "array", + "boolean", + "check", + "date", + "function", + "is", + "is-type", + "is-type-of", + "kind", + "kind-of", + "number", + "object", + "of", + "regexp", + "string", + "test", + "type", + "type-of", + "typeof", + "types" + ], + "license": "MIT", + "main": "index.js", + "name": "kind-of", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/kind-of.git" + }, + "scripts": { + "prepublish": "browserify -o browser.js -e index.js -s index --bare", + "test": "mocha" + }, + "verb": { + "related": { + "list": [ + "is-glob", + "is-number", + "is-primitive" + ] + }, + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "lint": { + "reflinks": true + }, + "reflinks": [ + "verb" + ] + }, + "version": "3.2.2" +} diff --git a/node_modules/is-number/package.json b/node_modules/is-number/package.json new file mode 100644 index 000000000..484e6a640 --- /dev/null +++ b/node_modules/is-number/package.json @@ -0,0 +1,129 @@ +{ + "_args": [ + [ + "is-number@3.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "is-number@3.0.0", + "_id": "is-number@3.0.0", + "_inBundle": false, + "_integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "_location": "/is-number", + "_phantomChildren": { + "is-buffer": "1.1.6" + }, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-number@3.0.0", + "name": "is-number", + "escapedName": "is-number", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/fill-range", + "/has-values", + "/to-regex-range" + ], + "_resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/is-number/issues" + }, + "contributors": [ + { + "name": "Charlike Mike Reagent", + "url": "http://www.tunnckocore.tk" + }, + { + "name": "Jon Schlinkert", + "email": "jon.schlinkert@sellside.com", + "url": "http://twitter.com/jonschlinkert" + } + ], + "dependencies": { + "kind-of": "^3.0.2" + }, + "description": "Returns true if the value is a number. comprehensive tests.", + "devDependencies": { + "benchmarked": "^0.2.5", + "chalk": "^1.1.3", + "gulp-format-md": "^0.1.10", + "mocha": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/is-number", + "keywords": [ + "check", + "coerce", + "coercion", + "integer", + "is", + "is-nan", + "is-num", + "is-number", + "istype", + "kind", + "math", + "nan", + "num", + "number", + "numeric", + "test", + "type", + "typeof", + "value" + ], + "license": "MIT", + "main": "index.js", + "name": "is-number", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/is-number.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "related": { + "list": [ + "even", + "is-even", + "is-odd", + "is-primitive", + "kind-of", + "odd" + ] + }, + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "lint": { + "reflinks": true + }, + "reflinks": [ + "verb", + "verb-generate-readme" + ] + }, + "version": "3.0.0" +} diff --git a/node_modules/is-plain-object/package.json b/node_modules/is-plain-object/package.json new file mode 100644 index 000000000..df234b7ed --- /dev/null +++ b/node_modules/is-plain-object/package.json @@ -0,0 +1,127 @@ +{ + "_args": [ + [ + "is-plain-object@2.0.4", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "is-plain-object@2.0.4", + "_id": "is-plain-object@2.0.4", + "_inBundle": false, + "_integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "_location": "/is-plain-object", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-plain-object@2.0.4", + "name": "is-plain-object", + "escapedName": "is-plain-object", + "rawSpec": "2.0.4", + "saveSpec": null, + "fetchSpec": "2.0.4" + }, + "_requiredBy": [ + "/extend-shallow/is-extendable", + "/mixin-deep/is-extendable", + "/set-value" + ], + "_resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "_spec": "2.0.4", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/is-plain-object/issues" + }, + "contributors": [ + { + "name": "Jon Schlinkert", + "url": "http://twitter.com/jonschlinkert" + }, + { + "name": "Osman Nuri Okumuş", + "url": "http://onokumus.com" + }, + { + "name": "Steven Vachon", + "url": "https://svachon.com" + }, + { + "url": "https://github.com/wtgtybhertgeghgtwtg" + } + ], + "dependencies": { + "isobject": "^3.0.1" + }, + "description": "Returns true if an object was created by the `Object` constructor.", + "devDependencies": { + "browserify": "^14.4.0", + "chai": "^4.0.2", + "gulp-format-md": "^1.0.0", + "mocha": "^3.4.2", + "mocha-phantomjs": "^4.1.0", + "phantomjs": "^2.1.7", + "uglify-js": "^3.0.24" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.d.ts", + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/is-plain-object", + "keywords": [ + "check", + "is", + "is-object", + "isobject", + "javascript", + "kind", + "kind-of", + "object", + "plain", + "type", + "typeof", + "value" + ], + "license": "MIT", + "main": "index.js", + "name": "is-plain-object", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/is-plain-object.git" + }, + "scripts": { + "browserify": "browserify index.js --standalone isPlainObject | uglifyjs --compress --mangle -o browser/is-plain-object.js", + "test": "npm run test_node && npm run browserify && npm run test_browser", + "test_browser": "mocha-phantomjs test/browser.html", + "test_node": "mocha" + }, + "types": "index.d.ts", + "verb": { + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "related": { + "list": [ + "is-number", + "isobject", + "kind-of" + ] + }, + "lint": { + "reflinks": true + } + }, + "version": "2.0.4" +} diff --git a/node_modules/is-regex/package.json b/node_modules/is-regex/package.json new file mode 100644 index 000000000..6e1154725 --- /dev/null +++ b/node_modules/is-regex/package.json @@ -0,0 +1,104 @@ +{ + "_args": [ + [ + "is-regex@1.0.4", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "is-regex@1.0.4", + "_id": "is-regex@1.0.4", + "_inBundle": false, + "_integrity": "sha1-VRdIm1RwkbCTDglWVM7SXul+lJE=", + "_location": "/is-regex", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-regex@1.0.4", + "name": "is-regex", + "escapedName": "is-regex", + "rawSpec": "1.0.4", + "saveSpec": null, + "fetchSpec": "1.0.4" + }, + "_requiredBy": [ + "/es-abstract" + ], + "_resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz", + "_spec": "1.0.4", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jordan Harband" + }, + "bugs": { + "url": "https://github.com/ljharb/is-regex/issues" + }, + "dependencies": { + "has": "^1.0.1" + }, + "description": "Is this value a JS regex? Works cross-realm/iframe, and despite ES6 @@toStringTag", + "devDependencies": { + "@ljharb/eslint-config": "^11.0.0", + "covert": "^1.1.0", + "editorconfig-tools": "^0.1.1", + "eslint": "^3.15.0", + "jscs": "^3.0.7", + "nsp": "^2.6.2", + "replace": "^0.3.0", + "semver": "^5.3.0", + "tape": "^4.6.3" + }, + "engines": { + "node": ">= 0.4" + }, + "homepage": "https://github.com/ljharb/is-regex", + "keywords": [ + "regex", + "regexp", + "is", + "regular expression", + "regular", + "expression" + ], + "license": "MIT", + "main": "index.js", + "name": "is-regex", + "repository": { + "type": "git", + "url": "git://github.com/ljharb/is-regex.git" + }, + "scripts": { + "coverage": "covert test.js", + "coverage-quiet": "covert test.js --quiet", + "eccheck": "editorconfig-tools check *.js **/*.js > /dev/null", + "eslint": "eslint test.js *.js", + "jscs": "jscs *.js", + "lint": "npm run jscs && npm run eslint", + "posttest": "npm run security", + "pretest": "npm run lint", + "security": "nsp check", + "test": "npm run tests-only", + "tests-only": "node --harmony --es-staging test.js" + }, + "testling": { + "files": "test.js", + "browsers": [ + "iexplore/6.0..latest", + "firefox/3.0..6.0", + "firefox/15.0..latest", + "firefox/nightly", + "chrome/4.0..10.0", + "chrome/20.0..latest", + "chrome/canary", + "opera/10.0..12.0", + "opera/15.0..latest", + "opera/next", + "safari/4.0..latest", + "ipad/6.0..latest", + "iphone/6.0..latest", + "android-browser/4.2" + ] + }, + "version": "1.0.4" +} diff --git a/node_modules/is-stream/package.json b/node_modules/is-stream/package.json new file mode 100644 index 000000000..419f824d3 --- /dev/null +++ b/node_modules/is-stream/package.json @@ -0,0 +1,74 @@ +{ + "_args": [ + [ + "is-stream@1.1.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "is-stream@1.1.0", + "_id": "is-stream@1.1.0", + "_inBundle": false, + "_integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "_location": "/is-stream", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-stream@1.1.0", + "name": "is-stream", + "escapedName": "is-stream", + "rawSpec": "1.1.0", + "saveSpec": null, + "fetchSpec": "1.1.0" + }, + "_requiredBy": [ + "/execa" + ], + "_resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "_spec": "1.1.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/is-stream/issues" + }, + "description": "Check if something is a Node.js stream", + "devDependencies": { + "ava": "*", + "tempfile": "^1.1.0", + "xo": "*" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/is-stream#readme", + "keywords": [ + "stream", + "type", + "streams", + "writable", + "readable", + "duplex", + "transform", + "check", + "detect", + "is" + ], + "license": "MIT", + "name": "is-stream", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/is-stream.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "1.1.0" +} diff --git a/node_modules/is-symbol/package.json b/node_modules/is-symbol/package.json new file mode 100644 index 000000000..5a84d2bbc --- /dev/null +++ b/node_modules/is-symbol/package.json @@ -0,0 +1,100 @@ +{ + "_args": [ + [ + "is-symbol@1.0.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "is-symbol@1.0.2", + "_id": "is-symbol@1.0.2", + "_inBundle": false, + "_integrity": "sha512-HS8bZ9ox60yCJLH9snBpIwv9pYUAkcuLhSA1oero1UB5y9aiQpRA8y2ex945AOtCZL1lJDeIk3G5LthswI46Lw==", + "_location": "/is-symbol", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-symbol@1.0.2", + "name": "is-symbol", + "escapedName": "is-symbol", + "rawSpec": "1.0.2", + "saveSpec": null, + "fetchSpec": "1.0.2" + }, + "_requiredBy": [ + "/es-to-primitive" + ], + "_resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.2.tgz", + "_spec": "1.0.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jordan Harband" + }, + "bugs": { + "url": "https://github.com/ljharb/is-symbol/issues" + }, + "dependencies": { + "has-symbols": "^1.0.0" + }, + "description": "Determine if a value is an ES6 Symbol or not.", + "devDependencies": { + "@ljharb/eslint-config": "^12.2.1", + "covert": "^1.1.0", + "eslint": "^4.19.1", + "jscs": "^3.0.7", + "nsp": "^3.2.1", + "object-inspect": "^1.6.0", + "safe-publish-latest": "^1.1.2", + "semver": "^5.5.0", + "tape": "^4.9.0" + }, + "engines": { + "node": ">= 0.4" + }, + "homepage": "https://github.com/ljharb/is-symbol#readme", + "keywords": [ + "symbol", + "es6", + "is", + "Symbol" + ], + "license": "MIT", + "main": "index.js", + "name": "is-symbol", + "repository": { + "type": "git", + "url": "git://github.com/ljharb/is-symbol.git" + }, + "scripts": { + "coverage": "covert test", + "eslint": "eslint *.js */*.js", + "jscs": "jscs *.js */*.js", + "lint": "npm run jscs && npm run eslint", + "posttest": "npm run security", + "prepublish": "safe-publish-latest", + "pretest": "npm run lint", + "security": "nsp check", + "test": "npm run tests-only", + "tests-only": "node --es-staging --harmony test" + }, + "testling": { + "files": "test/index.js", + "browsers": [ + "iexplore/6.0..latest", + "firefox/3.0..6.0", + "firefox/15.0..latest", + "firefox/nightly", + "chrome/4.0..10.0", + "chrome/20.0..latest", + "chrome/canary", + "opera/10.0..latest", + "opera/next", + "safari/4.0..latest", + "ipad/6.0..latest", + "iphone/6.0..latest", + "android-browser/4.2" + ] + }, + "version": "1.0.2" +} diff --git a/node_modules/is-typedarray/package.json b/node_modules/is-typedarray/package.json new file mode 100644 index 000000000..f72bd1892 --- /dev/null +++ b/node_modules/is-typedarray/package.json @@ -0,0 +1,63 @@ +{ + "_args": [ + [ + "is-typedarray@1.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "is-typedarray@1.0.0", + "_id": "is-typedarray@1.0.0", + "_inBundle": false, + "_integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=", + "_location": "/is-typedarray", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-typedarray@1.0.0", + "name": "is-typedarray", + "escapedName": "is-typedarray", + "rawSpec": "1.0.0", + "saveSpec": null, + "fetchSpec": "1.0.0" + }, + "_requiredBy": [ + "/request" + ], + "_resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "_spec": "1.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Hugh Kennedy", + "email": "hughskennedy@gmail.com", + "url": "http://hughsk.io/" + }, + "bugs": { + "url": "https://github.com/hughsk/is-typedarray/issues" + }, + "dependencies": {}, + "description": "Detect whether or not an object is a Typed Array", + "devDependencies": { + "tape": "^2.13.1" + }, + "homepage": "https://github.com/hughsk/is-typedarray", + "keywords": [ + "typed", + "array", + "detect", + "is", + "util" + ], + "license": "MIT", + "main": "index.js", + "name": "is-typedarray", + "repository": { + "type": "git", + "url": "git://github.com/hughsk/is-typedarray.git" + }, + "scripts": { + "test": "node test" + }, + "version": "1.0.0" +} diff --git a/node_modules/is-windows/package.json b/node_modules/is-windows/package.json new file mode 100644 index 000000000..7779b3710 --- /dev/null +++ b/node_modules/is-windows/package.json @@ -0,0 +1,115 @@ +{ + "_args": [ + [ + "is-windows@1.0.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "is-windows@1.0.2", + "_id": "is-windows@1.0.2", + "_inBundle": false, + "_integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "_location": "/is-windows", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-windows@1.0.2", + "name": "is-windows", + "escapedName": "is-windows", + "rawSpec": "1.0.2", + "saveSpec": null, + "fetchSpec": "1.0.2" + }, + "_requiredBy": [ + "/nanomatch" + ], + "_resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "_spec": "1.0.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/is-windows/issues" + }, + "contributors": [ + { + "name": "Jon Schlinkert", + "url": "http://twitter.com/jonschlinkert" + }, + { + "name": "Simen Bekkhus", + "url": "https://github.com/SimenB" + }, + { + "name": "刘祺", + "url": "gucong.co.cc" + } + ], + "description": "Returns true if the platform is windows. UMD module, works with node.js, commonjs, browser, AMD, electron, etc.", + "devDependencies": { + "gulp-format-md": "^1.0.0", + "mocha": "^3.5.3" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/is-windows", + "keywords": [ + "check", + "cywin", + "is", + "is-windows", + "nix", + "operating system", + "os", + "platform", + "process", + "unix", + "win", + "win32", + "windows" + ], + "license": "MIT", + "main": "index.js", + "name": "is-windows", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/is-windows.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "related": { + "list": [ + "is-absolute", + "is-glob", + "is-relative", + "isobject", + "window-size" + ] + }, + "lint": { + "reflinks": true + }, + "reflinks": [ + "verb" + ] + }, + "version": "1.0.2" +} diff --git a/node_modules/is-wsl/package.json b/node_modules/is-wsl/package.json new file mode 100644 index 000000000..6fee3c71c --- /dev/null +++ b/node_modules/is-wsl/package.json @@ -0,0 +1,76 @@ +{ + "_args": [ + [ + "is-wsl@1.1.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "is-wsl@1.1.0", + "_id": "is-wsl@1.1.0", + "_inBundle": false, + "_integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=", + "_location": "/is-wsl", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-wsl@1.1.0", + "name": "is-wsl", + "escapedName": "is-wsl", + "rawSpec": "1.1.0", + "saveSpec": null, + "fetchSpec": "1.1.0" + }, + "_requiredBy": [ + "/node-notifier" + ], + "_resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "_spec": "1.1.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/is-wsl/issues" + }, + "description": "Check if the process is running inside Windows Subsystem for Linux (Bash on Windows)", + "devDependencies": { + "ava": "*", + "clear-require": "^2.0.0", + "proxyquire": "^1.7.11", + "xo": "*" + }, + "engines": { + "node": ">=4" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/is-wsl#readme", + "keywords": [ + "check", + "wsl", + "windows", + "subsystem", + "linux", + "detect", + "bash", + "process", + "console", + "terminal", + "is" + ], + "license": "MIT", + "name": "is-wsl", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/is-wsl.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "1.1.0" +} diff --git a/node_modules/isarray/package.json b/node_modules/isarray/package.json new file mode 100644 index 000000000..d954add8a --- /dev/null +++ b/node_modules/isarray/package.json @@ -0,0 +1,78 @@ +{ + "_args": [ + [ + "isarray@1.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "isarray@1.0.0", + "_id": "isarray@1.0.0", + "_inBundle": false, + "_integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "_location": "/isarray", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "isarray@1.0.0", + "name": "isarray", + "escapedName": "isarray", + "rawSpec": "1.0.0", + "saveSpec": null, + "fetchSpec": "1.0.0" + }, + "_requiredBy": [ + "/readable-stream", + "/unset-value/has-value/isobject" + ], + "_resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "_spec": "1.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Julian Gruber", + "email": "mail@juliangruber.com", + "url": "http://juliangruber.com" + }, + "bugs": { + "url": "https://github.com/juliangruber/isarray/issues" + }, + "dependencies": {}, + "description": "Array#isArray for older browsers", + "devDependencies": { + "tape": "~2.13.4" + }, + "homepage": "https://github.com/juliangruber/isarray", + "keywords": [ + "browser", + "isarray", + "array" + ], + "license": "MIT", + "main": "index.js", + "name": "isarray", + "repository": { + "type": "git", + "url": "git://github.com/juliangruber/isarray.git" + }, + "scripts": { + "test": "tape test.js" + }, + "testling": { + "files": "test.js", + "browsers": [ + "ie/8..latest", + "firefox/17..latest", + "firefox/nightly", + "chrome/22..latest", + "chrome/canary", + "opera/12..latest", + "opera/next", + "safari/5.1..latest", + "ipad/6.0..latest", + "iphone/6.0..latest", + "android-browser/4.2..latest" + ] + }, + "version": "1.0.0" +} diff --git a/node_modules/isexe/package.json b/node_modules/isexe/package.json new file mode 100644 index 000000000..061acf112 --- /dev/null +++ b/node_modules/isexe/package.json @@ -0,0 +1,64 @@ +{ + "_args": [ + [ + "isexe@2.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "isexe@2.0.0", + "_id": "isexe@2.0.0", + "_inBundle": false, + "_integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", + "_location": "/isexe", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "isexe@2.0.0", + "name": "isexe", + "escapedName": "isexe", + "rawSpec": "2.0.0", + "saveSpec": null, + "fetchSpec": "2.0.0" + }, + "_requiredBy": [ + "/which" + ], + "_resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "_spec": "2.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me/" + }, + "bugs": { + "url": "https://github.com/isaacs/isexe/issues" + }, + "description": "Minimal module to check if a file is executable.", + "devDependencies": { + "mkdirp": "^0.5.1", + "rimraf": "^2.5.0", + "tap": "^10.3.0" + }, + "directories": { + "test": "test" + }, + "homepage": "https://github.com/isaacs/isexe#readme", + "keywords": [], + "license": "ISC", + "main": "index.js", + "name": "isexe", + "repository": { + "type": "git", + "url": "git+https://github.com/isaacs/isexe.git" + }, + "scripts": { + "postpublish": "git push origin --all; git push origin --tags", + "postversion": "npm publish", + "preversion": "npm test", + "test": "tap test/*.js --100" + }, + "version": "2.0.0" +} diff --git a/node_modules/isobject/package.json b/node_modules/isobject/package.json new file mode 100644 index 000000000..89817c427 --- /dev/null +++ b/node_modules/isobject/package.json @@ -0,0 +1,133 @@ +{ + "_args": [ + [ + "isobject@3.0.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "isobject@3.0.1", + "_id": "isobject@3.0.1", + "_inBundle": false, + "_integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "_location": "/isobject", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "isobject@3.0.1", + "name": "isobject", + "escapedName": "isobject", + "rawSpec": "3.0.1", + "saveSpec": null, + "fetchSpec": "3.0.1" + }, + "_requiredBy": [ + "/base", + "/braces", + "/cache-base", + "/class-utils", + "/define-property", + "/has-value", + "/is-plain-object", + "/object-visit", + "/object.pick", + "/snapdragon-node", + "/unset-value" + ], + "_resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "_spec": "3.0.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/isobject/issues" + }, + "contributors": [ + { + "url": "https://github.com/LeSuisse" + }, + { + "name": "Brian Woodward", + "url": "https://twitter.com/doowb" + }, + { + "name": "Jon Schlinkert", + "url": "http://twitter.com/jonschlinkert" + }, + { + "name": "Magnús Dæhlen", + "url": "https://github.com/magnudae" + }, + { + "name": "Tom MacWright", + "url": "https://macwright.org" + } + ], + "dependencies": {}, + "description": "Returns true if the value is an object and not an array or null.", + "devDependencies": { + "gulp-format-md": "^0.1.9", + "mocha": "^2.4.5" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.d.ts", + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/isobject", + "keywords": [ + "check", + "is", + "is-object", + "isobject", + "kind", + "kind-of", + "kindof", + "native", + "object", + "type", + "typeof", + "value" + ], + "license": "MIT", + "main": "index.js", + "name": "isobject", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/isobject.git" + }, + "scripts": { + "test": "mocha" + }, + "types": "index.d.ts", + "verb": { + "related": { + "list": [ + "extend-shallow", + "is-plain-object", + "kind-of", + "merge-deep" + ] + }, + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "lint": { + "reflinks": true + }, + "reflinks": [ + "verb" + ] + }, + "version": "3.0.1" +} diff --git a/node_modules/isstream/package.json b/node_modules/isstream/package.json new file mode 100644 index 000000000..ea465b382 --- /dev/null +++ b/node_modules/isstream/package.json @@ -0,0 +1,65 @@ +{ + "_args": [ + [ + "isstream@0.1.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "isstream@0.1.2", + "_id": "isstream@0.1.2", + "_inBundle": false, + "_integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=", + "_location": "/isstream", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "isstream@0.1.2", + "name": "isstream", + "escapedName": "isstream", + "rawSpec": "0.1.2", + "saveSpec": null, + "fetchSpec": "0.1.2" + }, + "_requiredBy": [ + "/request" + ], + "_resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "_spec": "0.1.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Rod Vagg", + "email": "rod@vagg.org" + }, + "bugs": { + "url": "https://github.com/rvagg/isstream/issues" + }, + "description": "Determine if an object is a Stream", + "devDependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x", + "tape": "~2.12.3" + }, + "homepage": "https://github.com/rvagg/isstream", + "keywords": [ + "stream", + "type", + "streams", + "readable-stream", + "hippo" + ], + "license": "MIT", + "main": "isstream.js", + "name": "isstream", + "repository": { + "type": "git", + "url": "git+https://github.com/rvagg/isstream.git" + }, + "scripts": { + "test": "tar --xform 's/^package/readable-stream-1.0/' -zxf readable-stream-1.0.*.tgz && tar --xform 's/^package/readable-stream-1.1/' -zxf readable-stream-1.1.*.tgz && node test.js; rm -rf readable-stream-1.?/" + }, + "version": "0.1.2" +} diff --git a/node_modules/istanbul-lib-coverage/package.json b/node_modules/istanbul-lib-coverage/package.json new file mode 100644 index 000000000..a0a9237e5 --- /dev/null +++ b/node_modules/istanbul-lib-coverage/package.json @@ -0,0 +1,77 @@ +{ + "_args": [ + [ + "istanbul-lib-coverage@2.0.5", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "istanbul-lib-coverage@2.0.5", + "_id": "istanbul-lib-coverage@2.0.5", + "_inBundle": false, + "_integrity": "sha512-8aXznuEPCJvGnMSRft4udDRDtb1V3pkQkMMI5LI+6HuQz5oQ4J2UFn1H82raA3qJtyOLkkwVqICBQkjnGtn5mA==", + "_location": "/istanbul-lib-coverage", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "istanbul-lib-coverage@2.0.5", + "name": "istanbul-lib-coverage", + "escapedName": "istanbul-lib-coverage", + "rawSpec": "2.0.5", + "saveSpec": null, + "fetchSpec": "2.0.5" + }, + "_requiredBy": [ + "/@jest/reporters", + "/istanbul-lib-instrument", + "/istanbul-lib-report", + "/istanbul-lib-source-maps" + ], + "_resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.5.tgz", + "_spec": "2.0.5", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Krishnan Anantheswaran", + "email": "kananthmail-github@yahoo.com" + }, + "bugs": { + "url": "https://github.com/istanbuljs/istanbuljs/issues" + }, + "description": "Data library for istanbul coverage objects", + "engines": { + "node": ">=6" + }, + "files": [ + "lib", + "index.js" + ], + "gitHead": "90e60cc47833bb780680f916488ca24f0be36ca2", + "homepage": "https://istanbul.js.org/", + "karmaDeps": { + "browserify-istanbul": "^0.2.1", + "karma": "^0.13.10", + "karma-browserify": "^4.2.1", + "karma-chrome-launcher": "^0.2.0", + "karma-coverage": "^0.4.2", + "karma-mocha": "^0.2.0", + "karma-phantomjs-launcher": "^0.2.0", + "phantomjs": "^1.9.17" + }, + "keywords": [ + "istanbul", + "coverage", + "data" + ], + "license": "BSD-3-Clause", + "main": "index.js", + "name": "istanbul-lib-coverage", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/istanbuljs/istanbuljs.git" + }, + "scripts": { + "test": "mocha" + }, + "version": "2.0.5" +} diff --git a/node_modules/istanbul-lib-instrument/package.json b/node_modules/istanbul-lib-instrument/package.json new file mode 100644 index 000000000..f4dd6dbb1 --- /dev/null +++ b/node_modules/istanbul-lib-instrument/package.json @@ -0,0 +1,76 @@ +{ + "_args": [ + [ + "istanbul-lib-instrument@3.3.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "istanbul-lib-instrument@3.3.0", + "_id": "istanbul-lib-instrument@3.3.0", + "_inBundle": false, + "_integrity": "sha512-5nnIN4vo5xQZHdXno/YDXJ0G+I3dAm4XgzfSVTPLQpj/zAV2dV6Juy0yaf10/zrJOJeHoN3fraFe+XRq2bFVZA==", + "_location": "/istanbul-lib-instrument", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "istanbul-lib-instrument@3.3.0", + "name": "istanbul-lib-instrument", + "escapedName": "istanbul-lib-instrument", + "rawSpec": "3.3.0", + "saveSpec": null, + "fetchSpec": "3.3.0" + }, + "_requiredBy": [ + "/@jest/reporters", + "/babel-plugin-istanbul" + ], + "_resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-3.3.0.tgz", + "_spec": "3.3.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Krishnan Anantheswaran", + "email": "kananthmail-github@yahoo.com" + }, + "bugs": { + "url": "https://github.com/istanbuljs/istanbuljs/issues" + }, + "dependencies": { + "@babel/generator": "^7.4.0", + "@babel/parser": "^7.4.3", + "@babel/template": "^7.4.0", + "@babel/traverse": "^7.4.3", + "@babel/types": "^7.4.0", + "istanbul-lib-coverage": "^2.0.5", + "semver": "^6.0.0" + }, + "description": "Core istanbul API for JS code coverage", + "engines": { + "node": ">=6" + }, + "files": [ + "dist" + ], + "gitHead": "90e60cc47833bb780680f916488ca24f0be36ca2", + "homepage": "https://istanbul.js.org/", + "keywords": [ + "coverage", + "istanbul", + "js", + "instrumentation" + ], + "license": "BSD-3-Clause", + "main": "dist/index.js", + "name": "istanbul-lib-instrument", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/istanbuljs/istanbuljs.git" + }, + "scripts": { + "prepublish": "npm run release", + "release": "babel src --out-dir dist && documentation build -f md -o api.md src", + "test": "mocha --require=@babel/register" + }, + "version": "3.3.0" +} diff --git a/node_modules/istanbul-lib-report/node_modules/supports-color/package.json b/node_modules/istanbul-lib-report/node_modules/supports-color/package.json new file mode 100644 index 000000000..8666d0699 --- /dev/null +++ b/node_modules/istanbul-lib-report/node_modules/supports-color/package.json @@ -0,0 +1,89 @@ +{ + "_args": [ + [ + "supports-color@6.1.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "supports-color@6.1.0", + "_id": "supports-color@6.1.0", + "_inBundle": false, + "_integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "_location": "/istanbul-lib-report/supports-color", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "supports-color@6.1.0", + "name": "supports-color", + "escapedName": "supports-color", + "rawSpec": "6.1.0", + "saveSpec": null, + "fetchSpec": "6.1.0" + }, + "_requiredBy": [ + "/istanbul-lib-report" + ], + "_resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "_spec": "6.1.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "browser": "browser.js", + "bugs": { + "url": "https://github.com/chalk/supports-color/issues" + }, + "dependencies": { + "has-flag": "^3.0.0" + }, + "description": "Detect whether a terminal supports color", + "devDependencies": { + "ava": "^0.25.0", + "import-fresh": "^2.0.0", + "xo": "^0.23.0" + }, + "engines": { + "node": ">=6" + }, + "files": [ + "index.js", + "browser.js" + ], + "homepage": "https://github.com/chalk/supports-color#readme", + "keywords": [ + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "ansi", + "styles", + "tty", + "rgb", + "256", + "shell", + "xterm", + "command-line", + "support", + "supports", + "capability", + "detect", + "truecolor", + "16m" + ], + "license": "MIT", + "name": "supports-color", + "repository": { + "type": "git", + "url": "git+https://github.com/chalk/supports-color.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "6.1.0" +} diff --git a/node_modules/istanbul-lib-report/package.json b/node_modules/istanbul-lib-report/package.json new file mode 100644 index 000000000..2f52fdcb2 --- /dev/null +++ b/node_modules/istanbul-lib-report/package.json @@ -0,0 +1,72 @@ +{ + "_args": [ + [ + "istanbul-lib-report@2.0.8", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "istanbul-lib-report@2.0.8", + "_id": "istanbul-lib-report@2.0.8", + "_inBundle": false, + "_integrity": "sha512-fHBeG573EIihhAblwgxrSenp0Dby6tJMFR/HvlerBsrCTD5bkUuoNtn3gVh29ZCS824cGGBPn7Sg7cNk+2xUsQ==", + "_location": "/istanbul-lib-report", + "_phantomChildren": { + "has-flag": "3.0.0" + }, + "_requested": { + "type": "version", + "registry": true, + "raw": "istanbul-lib-report@2.0.8", + "name": "istanbul-lib-report", + "escapedName": "istanbul-lib-report", + "rawSpec": "2.0.8", + "saveSpec": null, + "fetchSpec": "2.0.8" + }, + "_requiredBy": [ + "/@jest/reporters" + ], + "_resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-2.0.8.tgz", + "_spec": "2.0.8", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Krishnan Anantheswaran", + "email": "kananthmail-github@yahoo.com" + }, + "bugs": { + "url": "https://github.com/istanbuljs/istanbuljs/issues" + }, + "dependencies": { + "istanbul-lib-coverage": "^2.0.5", + "make-dir": "^2.1.0", + "supports-color": "^6.1.0" + }, + "description": "Base reporting library for istanbul", + "engines": { + "node": ">=6" + }, + "files": [ + "lib", + "index.js" + ], + "gitHead": "90e60cc47833bb780680f916488ca24f0be36ca2", + "homepage": "https://istanbul.js.org/", + "keywords": [ + "istanbul", + "report", + "api", + "lib" + ], + "license": "BSD-3-Clause", + "main": "index.js", + "name": "istanbul-lib-report", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/istanbuljs/istanbuljs.git" + }, + "scripts": { + "test": "mocha" + }, + "version": "2.0.8" +} diff --git a/node_modules/istanbul-lib-source-maps/node_modules/debug/package.json b/node_modules/istanbul-lib-source-maps/node_modules/debug/package.json new file mode 100644 index 000000000..2a32882e5 --- /dev/null +++ b/node_modules/istanbul-lib-source-maps/node_modules/debug/package.json @@ -0,0 +1,106 @@ +{ + "_args": [ + [ + "debug@4.1.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "debug@4.1.1", + "_id": "debug@4.1.1", + "_inBundle": false, + "_integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", + "_location": "/istanbul-lib-source-maps/debug", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "debug@4.1.1", + "name": "debug", + "escapedName": "debug", + "rawSpec": "4.1.1", + "saveSpec": null, + "fetchSpec": "4.1.1" + }, + "_requiredBy": [ + "/istanbul-lib-source-maps" + ], + "_resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", + "_spec": "4.1.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "browser": "./src/browser.js", + "bugs": { + "url": "https://github.com/visionmedia/debug/issues" + }, + "contributors": [ + { + "name": "Nathan Rajlich", + "email": "nathan@tootallnate.net", + "url": "http://n8.io" + }, + { + "name": "Andrew Rhyne", + "email": "rhyneandrew@gmail.com" + } + ], + "dependencies": { + "ms": "^2.1.1" + }, + "description": "small debugging utility", + "devDependencies": { + "@babel/cli": "^7.0.0", + "@babel/core": "^7.0.0", + "@babel/preset-env": "^7.0.0", + "browserify": "14.4.0", + "chai": "^3.5.0", + "concurrently": "^3.1.0", + "coveralls": "^3.0.2", + "istanbul": "^0.4.5", + "karma": "^3.0.0", + "karma-chai": "^0.1.0", + "karma-mocha": "^1.3.0", + "karma-phantomjs-launcher": "^1.0.2", + "mocha": "^5.2.0", + "mocha-lcov-reporter": "^1.2.0", + "rimraf": "^2.5.4", + "xo": "^0.23.0" + }, + "files": [ + "src", + "dist/debug.js", + "LICENSE", + "README.md" + ], + "homepage": "https://github.com/visionmedia/debug#readme", + "keywords": [ + "debug", + "log", + "debugger" + ], + "license": "MIT", + "main": "./src/index.js", + "name": "debug", + "repository": { + "type": "git", + "url": "git://github.com/visionmedia/debug.git" + }, + "scripts": { + "build": "npm run build:debug && npm run build:test", + "build:debug": "babel -o dist/debug.js dist/debug.es6.js > dist/debug.js", + "build:test": "babel -d dist test.js", + "clean": "rimraf dist coverage", + "lint": "xo", + "prebuild:debug": "mkdir -p dist && browserify --standalone debug -o dist/debug.es6.js .", + "pretest:browser": "npm run build", + "test": "npm run test:node && npm run test:browser", + "test:browser": "karma start --single-run", + "test:coverage": "cat ./coverage/lcov.info | coveralls", + "test:node": "istanbul cover _mocha -- test.js" + }, + "unpkg": "./dist/debug.js", + "version": "4.1.1" +} diff --git a/node_modules/istanbul-lib-source-maps/node_modules/ms/package.json b/node_modules/istanbul-lib-source-maps/node_modules/ms/package.json new file mode 100644 index 000000000..6fec94935 --- /dev/null +++ b/node_modules/istanbul-lib-source-maps/node_modules/ms/package.json @@ -0,0 +1,73 @@ +{ + "_args": [ + [ + "ms@2.1.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "ms@2.1.2", + "_id": "ms@2.1.2", + "_inBundle": false, + "_integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "_location": "/istanbul-lib-source-maps/ms", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "ms@2.1.2", + "name": "ms", + "escapedName": "ms", + "rawSpec": "2.1.2", + "saveSpec": null, + "fetchSpec": "2.1.2" + }, + "_requiredBy": [ + "/istanbul-lib-source-maps/debug" + ], + "_resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "_spec": "2.1.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/zeit/ms/issues" + }, + "description": "Tiny millisecond conversion utility", + "devDependencies": { + "eslint": "4.12.1", + "expect.js": "0.3.1", + "husky": "0.14.3", + "lint-staged": "5.0.0", + "mocha": "4.0.1" + }, + "eslintConfig": { + "extends": "eslint:recommended", + "env": { + "node": true, + "es6": true + } + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/zeit/ms#readme", + "license": "MIT", + "lint-staged": { + "*.js": [ + "npm run lint", + "prettier --single-quote --write", + "git add" + ] + }, + "main": "./index", + "name": "ms", + "repository": { + "type": "git", + "url": "git+https://github.com/zeit/ms.git" + }, + "scripts": { + "lint": "eslint lib/* bin/*", + "precommit": "lint-staged", + "test": "mocha tests.js" + }, + "version": "2.1.2" +} diff --git a/node_modules/istanbul-lib-source-maps/package.json b/node_modules/istanbul-lib-source-maps/package.json new file mode 100644 index 000000000..dee9a103b --- /dev/null +++ b/node_modules/istanbul-lib-source-maps/package.json @@ -0,0 +1,76 @@ +{ + "_args": [ + [ + "istanbul-lib-source-maps@3.0.6", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "istanbul-lib-source-maps@3.0.6", + "_id": "istanbul-lib-source-maps@3.0.6", + "_inBundle": false, + "_integrity": "sha512-R47KzMtDJH6X4/YW9XTx+jrLnZnscW4VpNN+1PViSYTejLVPWv7oov+Duf8YQSPyVRUvueQqz1TcsC6mooZTXw==", + "_location": "/istanbul-lib-source-maps", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "istanbul-lib-source-maps@3.0.6", + "name": "istanbul-lib-source-maps", + "escapedName": "istanbul-lib-source-maps", + "rawSpec": "3.0.6", + "saveSpec": null, + "fetchSpec": "3.0.6" + }, + "_requiredBy": [ + "/@jest/reporters" + ], + "_resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-3.0.6.tgz", + "_spec": "3.0.6", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Krishnan Anantheswaran", + "email": "kananthmail-github@yahoo.com" + }, + "bugs": { + "url": "https://github.com/istanbuljs/istanbuljs/issues" + }, + "dependencies": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^2.0.5", + "make-dir": "^2.1.0", + "rimraf": "^2.6.3", + "source-map": "^0.6.1" + }, + "description": "Source maps support for istanbul", + "devDependencies": { + "ts-node": "^8.1.0" + }, + "engines": { + "node": ">=6" + }, + "files": [ + "lib", + "index.js" + ], + "gitHead": "90e60cc47833bb780680f916488ca24f0be36ca2", + "homepage": "https://istanbul.js.org/", + "keywords": [ + "istanbul", + "sourcemaps", + "sourcemap", + "source", + "maps" + ], + "license": "BSD-3-Clause", + "main": "index.js", + "name": "istanbul-lib-source-maps", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/istanbuljs/istanbuljs.git" + }, + "scripts": { + "test": "mocha" + }, + "version": "3.0.6" +} diff --git a/node_modules/istanbul-reports/package.json b/node_modules/istanbul-reports/package.json new file mode 100644 index 000000000..29b0c7e5c --- /dev/null +++ b/node_modules/istanbul-reports/package.json @@ -0,0 +1,70 @@ +{ + "_args": [ + [ + "istanbul-reports@2.2.6", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "istanbul-reports@2.2.6", + "_id": "istanbul-reports@2.2.6", + "_inBundle": false, + "_integrity": "sha512-SKi4rnMyLBKe0Jy2uUdx28h8oG7ph2PPuQPvIAh31d+Ci+lSiEu4C+h3oBPuJ9+mPKhOyW0M8gY4U5NM1WLeXA==", + "_location": "/istanbul-reports", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "istanbul-reports@2.2.6", + "name": "istanbul-reports", + "escapedName": "istanbul-reports", + "rawSpec": "2.2.6", + "saveSpec": null, + "fetchSpec": "2.2.6" + }, + "_requiredBy": [ + "/@jest/reporters" + ], + "_resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-2.2.6.tgz", + "_spec": "2.2.6", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Krishnan Anantheswaran", + "email": "kananthmail-github@yahoo.com" + }, + "bugs": { + "url": "https://github.com/istanbuljs/istanbuljs/issues" + }, + "dependencies": { + "handlebars": "^4.1.2" + }, + "description": "istanbul reports", + "devDependencies": { + "istanbul-lib-coverage": "^2.0.5", + "istanbul-lib-report": "^2.0.8" + }, + "engines": { + "node": ">=6" + }, + "files": [ + "index.js", + "lib" + ], + "gitHead": "90e60cc47833bb780680f916488ca24f0be36ca2", + "homepage": "https://istanbul.js.org/", + "keywords": [ + "istanbul", + "reports" + ], + "license": "BSD-3-Clause", + "main": "index.js", + "name": "istanbul-reports", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/istanbuljs/istanbuljs.git" + }, + "scripts": { + "test": "mocha --recursive" + }, + "version": "2.2.6" +} diff --git a/node_modules/jest-changed-files/package.json b/node_modules/jest-changed-files/package.json new file mode 100644 index 000000000..3f1355a97 --- /dev/null +++ b/node_modules/jest-changed-files/package.json @@ -0,0 +1,61 @@ +{ + "_args": [ + [ + "jest-changed-files@24.8.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "jest-changed-files@24.8.0", + "_id": "jest-changed-files@24.8.0", + "_inBundle": false, + "_integrity": "sha512-qgANC1Yrivsq+UrLXsvJefBKVoCsKB0Hv+mBb6NMjjZ90wwxCDmU3hsCXBya30cH+LnPYjwgcU65i6yJ5Nfuug==", + "_location": "/jest-changed-files", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "jest-changed-files@24.8.0", + "name": "jest-changed-files", + "escapedName": "jest-changed-files", + "rawSpec": "24.8.0", + "saveSpec": null, + "fetchSpec": "24.8.0" + }, + "_requiredBy": [ + "/@jest/core" + ], + "_resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-24.8.0.tgz", + "_spec": "24.8.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/facebook/jest/issues" + }, + "dependencies": { + "@jest/types": "^24.8.0", + "execa": "^1.0.0", + "throat": "^4.0.0" + }, + "description": "A module used internally by Jest to check which files have changed since you last committed in git or hg.", + "devDependencies": { + "@types/execa": "^0.9.0" + }, + "engines": { + "node": ">= 6" + }, + "gitHead": "845728f24b3ef41e450595c384e9b5c9fdf248a4", + "homepage": "https://github.com/facebook/jest#readme", + "license": "MIT", + "main": "build/index.js", + "name": "jest-changed-files", + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/facebook/jest.git", + "directory": "packages/jest-changed-files" + }, + "types": "build/index.d.ts", + "version": "24.8.0" +} diff --git a/node_modules/jest-circus/package.json b/node_modules/jest-circus/package.json new file mode 100644 index 000000000..964f15f0f --- /dev/null +++ b/node_modules/jest-circus/package.json @@ -0,0 +1,79 @@ +{ + "_args": [ + [ + "jest-circus@24.8.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "jest-circus@24.8.0", + "_id": "jest-circus@24.8.0", + "_inBundle": false, + "_integrity": "sha512-2QASG3QuDdk0SMP2O73D8u3/lc/A/E2G7q23v5WhbUR+hCGzWZXwRMKif18f11dSLfL1wcrMbwE4IorvV0DRVw==", + "_location": "/jest-circus", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "jest-circus@24.8.0", + "name": "jest-circus", + "escapedName": "jest-circus", + "rawSpec": "24.8.0", + "saveSpec": null, + "fetchSpec": "24.8.0" + }, + "_requiredBy": [ + "#DEV:/" + ], + "_resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-24.8.0.tgz", + "_spec": "24.8.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/facebook/jest/issues" + }, + "dependencies": { + "@babel/traverse": "^7.1.0", + "@jest/environment": "^24.8.0", + "@jest/test-result": "^24.8.0", + "@jest/types": "^24.8.0", + "chalk": "^2.0.1", + "co": "^4.6.0", + "expect": "^24.8.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^24.8.0", + "jest-matcher-utils": "^24.8.0", + "jest-message-util": "^24.8.0", + "jest-snapshot": "^24.8.0", + "jest-util": "^24.8.0", + "pretty-format": "^24.8.0", + "stack-utils": "^1.0.1", + "throat": "^4.0.0" + }, + "description": "

jest-circus

The next-gen test runner for Jest

", + "devDependencies": { + "@jest/test-utils": "^24.4.0", + "@types/babel__traverse": "^7.0.4", + "@types/co": "^4.6.0", + "@types/stack-utils": "^1.0.1", + "execa": "^1.0.0", + "jest-runtime": "^24.8.0" + }, + "engines": { + "node": ">= 6" + }, + "gitHead": "845728f24b3ef41e450595c384e9b5c9fdf248a4", + "homepage": "https://github.com/facebook/jest#readme", + "license": "MIT", + "main": "build/index.js", + "name": "jest-circus", + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/facebook/jest.git", + "directory": "packages/jest-circus" + }, + "types": "build/index.d.ts", + "version": "24.8.0" +} diff --git a/node_modules/jest-config/package.json b/node_modules/jest-config/package.json new file mode 100644 index 000000000..7ed4dfc9a --- /dev/null +++ b/node_modules/jest-config/package.json @@ -0,0 +1,79 @@ +{ + "_args": [ + [ + "jest-config@24.8.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "jest-config@24.8.0", + "_id": "jest-config@24.8.0", + "_inBundle": false, + "_integrity": "sha512-Czl3Nn2uEzVGsOeaewGWoDPD8GStxCpAe0zOYs2x2l0fZAgPbCr3uwUkgNKV3LwE13VXythM946cd5rdGkkBZw==", + "_location": "/jest-config", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "jest-config@24.8.0", + "name": "jest-config", + "escapedName": "jest-config", + "rawSpec": "24.8.0", + "saveSpec": null, + "fetchSpec": "24.8.0" + }, + "_requiredBy": [ + "/@jest/core", + "/jest-runner", + "/jest-runtime", + "/jest/jest-cli" + ], + "_resolved": "https://registry.npmjs.org/jest-config/-/jest-config-24.8.0.tgz", + "_spec": "24.8.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/facebook/jest/issues" + }, + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/test-sequencer": "^24.8.0", + "@jest/types": "^24.8.0", + "babel-jest": "^24.8.0", + "chalk": "^2.0.1", + "glob": "^7.1.1", + "jest-environment-jsdom": "^24.8.0", + "jest-environment-node": "^24.8.0", + "jest-get-type": "^24.8.0", + "jest-jasmine2": "^24.8.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.8.0", + "jest-util": "^24.8.0", + "jest-validate": "^24.8.0", + "micromatch": "^3.1.10", + "pretty-format": "^24.8.0", + "realpath-native": "^1.1.0" + }, + "devDependencies": { + "@types/babel__core": "^7.0.4", + "@types/glob": "^7.1.1", + "@types/micromatch": "^3.1.0" + }, + "engines": { + "node": ">= 6" + }, + "gitHead": "845728f24b3ef41e450595c384e9b5c9fdf248a4", + "homepage": "https://github.com/facebook/jest#readme", + "license": "MIT", + "main": "build/index.js", + "name": "jest-config", + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/facebook/jest.git", + "directory": "packages/jest-config" + }, + "types": "build/index.d.ts", + "version": "24.8.0" +} diff --git a/node_modules/jest-diff/package.json b/node_modules/jest-diff/package.json new file mode 100644 index 000000000..89abfcd76 --- /dev/null +++ b/node_modules/jest-diff/package.json @@ -0,0 +1,63 @@ +{ + "_args": [ + [ + "jest-diff@24.8.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "jest-diff@24.8.0", + "_id": "jest-diff@24.8.0", + "_inBundle": false, + "_integrity": "sha512-wxetCEl49zUpJ/bvUmIFjd/o52J+yWcoc5ZyPq4/W1LUKGEhRYDIbP1KcF6t+PvqNrGAFk4/JhtxDq/Nnzs66g==", + "_location": "/jest-diff", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "jest-diff@24.8.0", + "name": "jest-diff", + "escapedName": "jest-diff", + "rawSpec": "24.8.0", + "saveSpec": null, + "fetchSpec": "24.8.0" + }, + "_requiredBy": [ + "/jest-matcher-utils", + "/jest-snapshot" + ], + "_resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-24.8.0.tgz", + "_spec": "24.8.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/facebook/jest/issues" + }, + "dependencies": { + "chalk": "^2.0.1", + "diff-sequences": "^24.3.0", + "jest-get-type": "^24.8.0", + "pretty-format": "^24.8.0" + }, + "devDependencies": { + "@types/strip-ansi": "^3.0.0", + "strip-ansi": "^5.0.0" + }, + "engines": { + "node": ">= 6" + }, + "gitHead": "845728f24b3ef41e450595c384e9b5c9fdf248a4", + "homepage": "https://github.com/facebook/jest#readme", + "license": "MIT", + "main": "build/index.js", + "name": "jest-diff", + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/facebook/jest.git", + "directory": "packages/jest-diff" + }, + "types": "build/index.d.ts", + "version": "24.8.0" +} diff --git a/node_modules/jest-docblock/package.json b/node_modules/jest-docblock/package.json new file mode 100644 index 000000000..4d49a475f --- /dev/null +++ b/node_modules/jest-docblock/package.json @@ -0,0 +1,58 @@ +{ + "_args": [ + [ + "jest-docblock@24.3.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "jest-docblock@24.3.0", + "_id": "jest-docblock@24.3.0", + "_inBundle": false, + "_integrity": "sha512-nlANmF9Yq1dufhFlKG9rasfQlrY7wINJbo3q01tu56Jv5eBU5jirylhF2O5ZBnLxzOVBGRDz/9NAwNyBtG4Nyg==", + "_location": "/jest-docblock", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "jest-docblock@24.3.0", + "name": "jest-docblock", + "escapedName": "jest-docblock", + "rawSpec": "24.3.0", + "saveSpec": null, + "fetchSpec": "24.3.0" + }, + "_requiredBy": [ + "/jest-runner" + ], + "_resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-24.3.0.tgz", + "_spec": "24.3.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/facebook/jest/issues" + }, + "dependencies": { + "detect-newline": "^2.1.0" + }, + "description": "`jest-docblock` is a package that can extract and parse a specially-formatted comment called a \"docblock\" at the top of a file.", + "devDependencies": { + "@types/detect-newline": "^2.1.0" + }, + "engines": { + "node": ">= 6" + }, + "gitHead": "3a7a4f3a3f5489ac8e07dcddf76bb949c482ec87", + "homepage": "https://github.com/facebook/jest#readme", + "license": "MIT", + "main": "build/index.js", + "name": "jest-docblock", + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/facebook/jest.git", + "directory": "packages/jest-docblock" + }, + "version": "24.3.0" +} diff --git a/node_modules/jest-each/package.json b/node_modules/jest-each/package.json new file mode 100644 index 000000000..fcb660891 --- /dev/null +++ b/node_modules/jest-each/package.json @@ -0,0 +1,71 @@ +{ + "_args": [ + [ + "jest-each@24.8.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "jest-each@24.8.0", + "_id": "jest-each@24.8.0", + "_inBundle": false, + "_integrity": "sha512-NrwK9gaL5+XgrgoCsd9svsoWdVkK4gnvyhcpzd6m487tXHqIdYeykgq3MKI1u4I+5Zf0tofr70at9dWJDeb+BA==", + "_location": "/jest-each", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "jest-each@24.8.0", + "name": "jest-each", + "escapedName": "jest-each", + "rawSpec": "24.8.0", + "saveSpec": null, + "fetchSpec": "24.8.0" + }, + "_requiredBy": [ + "/jest-circus", + "/jest-jasmine2" + ], + "_resolved": "https://registry.npmjs.org/jest-each/-/jest-each-24.8.0.tgz", + "_spec": "24.8.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Matt Phillips", + "url": "mattphillips" + }, + "bugs": { + "url": "https://github.com/facebook/jest/issues" + }, + "dependencies": { + "@jest/types": "^24.8.0", + "chalk": "^2.0.1", + "jest-get-type": "^24.8.0", + "jest-util": "^24.8.0", + "pretty-format": "^24.8.0" + }, + "description": "Parameterised tests for Jest", + "engines": { + "node": ">= 6" + }, + "gitHead": "845728f24b3ef41e450595c384e9b5c9fdf248a4", + "homepage": "https://github.com/facebook/jest#readme", + "keywords": [ + "jest", + "parameterised", + "test", + "each" + ], + "license": "MIT", + "main": "build/index.js", + "name": "jest-each", + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/facebook/jest.git", + "directory": "packages/jest-each" + }, + "types": "build/index.d.ts", + "version": "24.8.0" +} diff --git a/node_modules/jest-environment-jsdom/package.json b/node_modules/jest-environment-jsdom/package.json new file mode 100644 index 000000000..7c779fe4a --- /dev/null +++ b/node_modules/jest-environment-jsdom/package.json @@ -0,0 +1,63 @@ +{ + "_args": [ + [ + "jest-environment-jsdom@24.8.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "jest-environment-jsdom@24.8.0", + "_id": "jest-environment-jsdom@24.8.0", + "_inBundle": false, + "_integrity": "sha512-qbvgLmR7PpwjoFjM/sbuqHJt/NCkviuq9vus9NBn/76hhSidO+Z6Bn9tU8friecegbJL8gzZQEMZBQlFWDCwAQ==", + "_location": "/jest-environment-jsdom", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "jest-environment-jsdom@24.8.0", + "name": "jest-environment-jsdom", + "escapedName": "jest-environment-jsdom", + "rawSpec": "24.8.0", + "saveSpec": null, + "fetchSpec": "24.8.0" + }, + "_requiredBy": [ + "/jest-config" + ], + "_resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-24.8.0.tgz", + "_spec": "24.8.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/facebook/jest/issues" + }, + "dependencies": { + "@jest/environment": "^24.8.0", + "@jest/fake-timers": "^24.8.0", + "@jest/types": "^24.8.0", + "jest-mock": "^24.8.0", + "jest-util": "^24.8.0", + "jsdom": "^11.5.1" + }, + "devDependencies": { + "@types/jsdom": "^11.12.0" + }, + "engines": { + "node": ">= 6" + }, + "gitHead": "845728f24b3ef41e450595c384e9b5c9fdf248a4", + "homepage": "https://github.com/facebook/jest#readme", + "license": "MIT", + "main": "build/index.js", + "name": "jest-environment-jsdom", + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/facebook/jest.git", + "directory": "packages/jest-environment-jsdom" + }, + "types": "build/index.d.ts", + "version": "24.8.0" +} diff --git a/node_modules/jest-environment-node/package.json b/node_modules/jest-environment-node/package.json new file mode 100644 index 000000000..182d02ecc --- /dev/null +++ b/node_modules/jest-environment-node/package.json @@ -0,0 +1,59 @@ +{ + "_args": [ + [ + "jest-environment-node@24.8.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "jest-environment-node@24.8.0", + "_id": "jest-environment-node@24.8.0", + "_inBundle": false, + "_integrity": "sha512-vIGUEScd1cdDgR6sqn2M08sJTRLQp6Dk/eIkCeO4PFHxZMOgy+uYLPMC4ix3PEfM5Au/x3uQ/5Tl0DpXXZsJ/Q==", + "_location": "/jest-environment-node", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "jest-environment-node@24.8.0", + "name": "jest-environment-node", + "escapedName": "jest-environment-node", + "rawSpec": "24.8.0", + "saveSpec": null, + "fetchSpec": "24.8.0" + }, + "_requiredBy": [ + "/jest-config" + ], + "_resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-24.8.0.tgz", + "_spec": "24.8.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/facebook/jest/issues" + }, + "dependencies": { + "@jest/environment": "^24.8.0", + "@jest/fake-timers": "^24.8.0", + "@jest/types": "^24.8.0", + "jest-mock": "^24.8.0", + "jest-util": "^24.8.0" + }, + "engines": { + "node": ">= 6" + }, + "gitHead": "845728f24b3ef41e450595c384e9b5c9fdf248a4", + "homepage": "https://github.com/facebook/jest#readme", + "license": "MIT", + "main": "build/index.js", + "name": "jest-environment-node", + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/facebook/jest.git", + "directory": "packages/jest-environment-node" + }, + "types": "build/index.d.ts", + "version": "24.8.0" +} diff --git a/node_modules/jest-get-type/package.json b/node_modules/jest-get-type/package.json new file mode 100644 index 000000000..d3b9eb3c9 --- /dev/null +++ b/node_modules/jest-get-type/package.json @@ -0,0 +1,58 @@ +{ + "_args": [ + [ + "jest-get-type@24.8.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "jest-get-type@24.8.0", + "_id": "jest-get-type@24.8.0", + "_inBundle": false, + "_integrity": "sha512-RR4fo8jEmMD9zSz2nLbs2j0zvPpk/KCEz3a62jJWbd2ayNo0cb+KFRxPHVhE4ZmgGJEQp0fosmNz84IfqM8cMQ==", + "_location": "/jest-get-type", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "jest-get-type@24.8.0", + "name": "jest-get-type", + "escapedName": "jest-get-type", + "rawSpec": "24.8.0", + "saveSpec": null, + "fetchSpec": "24.8.0" + }, + "_requiredBy": [ + "/expect", + "/jest-config", + "/jest-diff", + "/jest-each", + "/jest-matcher-utils", + "/jest-validate" + ], + "_resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-24.8.0.tgz", + "_spec": "24.8.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/facebook/jest/issues" + }, + "description": "A utility function to get the type of a value", + "engines": { + "node": ">= 6" + }, + "gitHead": "845728f24b3ef41e450595c384e9b5c9fdf248a4", + "homepage": "https://github.com/facebook/jest#readme", + "license": "MIT", + "main": "build/index.js", + "name": "jest-get-type", + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/facebook/jest.git", + "directory": "packages/jest-get-type" + }, + "types": "build/index.d.ts", + "version": "24.8.0" +} diff --git a/node_modules/jest-haste-map/package.json b/node_modules/jest-haste-map/package.json new file mode 100644 index 000000000..da7957161 --- /dev/null +++ b/node_modules/jest-haste-map/package.json @@ -0,0 +1,83 @@ +{ + "_args": [ + [ + "jest-haste-map@24.8.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "jest-haste-map@24.8.1", + "_id": "jest-haste-map@24.8.1", + "_inBundle": false, + "_integrity": "sha512-SwaxMGVdAZk3ernAx2Uv2sorA7jm3Kx+lR0grp6rMmnY06Kn/urtKx1LPN2mGTea4fCT38impYT28FfcLUhX0g==", + "_location": "/jest-haste-map", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "jest-haste-map@24.8.1", + "name": "jest-haste-map", + "escapedName": "jest-haste-map", + "rawSpec": "24.8.1", + "saveSpec": null, + "fetchSpec": "24.8.1" + }, + "_requiredBy": [ + "/@jest/core", + "/@jest/reporters", + "/@jest/test-sequencer", + "/@jest/transform", + "/jest-runner", + "/jest-runtime" + ], + "_resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-24.8.1.tgz", + "_spec": "24.8.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/facebook/jest/issues" + }, + "dependencies": { + "@jest/types": "^24.8.0", + "anymatch": "^2.0.0", + "fb-watchman": "^2.0.0", + "fsevents": "^1.2.7", + "graceful-fs": "^4.1.15", + "invariant": "^2.2.4", + "jest-serializer": "^24.4.0", + "jest-util": "^24.8.0", + "jest-worker": "^24.6.0", + "micromatch": "^3.1.10", + "sane": "^4.0.3", + "walker": "^1.0.7" + }, + "devDependencies": { + "@types/anymatch": "^1.3.1", + "@types/fb-watchman": "^2.0.0", + "@types/fsevents": "^1.1.0", + "@types/graceful-fs": "^4.1.2", + "@types/invariant": "^2.2.29", + "@types/micromatch": "^3.1.0", + "@types/sane": "^2.0.0" + }, + "engines": { + "node": ">= 6" + }, + "gitHead": "845728f24b3ef41e450595c384e9b5c9fdf248a4", + "homepage": "https://github.com/facebook/jest#readme", + "license": "MIT", + "main": "build/index.js", + "name": "jest-haste-map", + "optionalDependencies": { + "fsevents": "^1.2.7" + }, + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/facebook/jest.git", + "directory": "packages/jest-haste-map" + }, + "types": "build/index.d.ts", + "version": "24.8.1" +} diff --git a/node_modules/jest-jasmine2/package.json b/node_modules/jest-jasmine2/package.json new file mode 100644 index 000000000..ff3fdf05f --- /dev/null +++ b/node_modules/jest-jasmine2/package.json @@ -0,0 +1,74 @@ +{ + "_args": [ + [ + "jest-jasmine2@24.8.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "jest-jasmine2@24.8.0", + "_id": "jest-jasmine2@24.8.0", + "_inBundle": false, + "_integrity": "sha512-cEky88npEE5LKd5jPpTdDCLvKkdyklnaRycBXL6GNmpxe41F0WN44+i7lpQKa/hcbXaQ+rc9RMaM4dsebrYong==", + "_location": "/jest-jasmine2", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "jest-jasmine2@24.8.0", + "name": "jest-jasmine2", + "escapedName": "jest-jasmine2", + "rawSpec": "24.8.0", + "saveSpec": null, + "fetchSpec": "24.8.0" + }, + "_requiredBy": [ + "/jest-config", + "/jest-runner" + ], + "_resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-24.8.0.tgz", + "_spec": "24.8.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/facebook/jest/issues" + }, + "dependencies": { + "@babel/traverse": "^7.1.0", + "@jest/environment": "^24.8.0", + "@jest/test-result": "^24.8.0", + "@jest/types": "^24.8.0", + "chalk": "^2.0.1", + "co": "^4.6.0", + "expect": "^24.8.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^24.8.0", + "jest-matcher-utils": "^24.8.0", + "jest-message-util": "^24.8.0", + "jest-runtime": "^24.8.0", + "jest-snapshot": "^24.8.0", + "jest-util": "^24.8.0", + "pretty-format": "^24.8.0", + "throat": "^4.0.0" + }, + "devDependencies": { + "@types/babel__traverse": "^7.0.4" + }, + "engines": { + "node": ">= 6" + }, + "gitHead": "845728f24b3ef41e450595c384e9b5c9fdf248a4", + "homepage": "https://github.com/facebook/jest#readme", + "license": "MIT", + "main": "build/index.js", + "name": "jest-jasmine2", + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/facebook/jest.git", + "directory": "packages/jest-jasmine2" + }, + "types": "build/index.d.ts", + "version": "24.8.0" +} diff --git a/node_modules/jest-leak-detector/package.json b/node_modules/jest-leak-detector/package.json new file mode 100644 index 000000000..09d73a595 --- /dev/null +++ b/node_modules/jest-leak-detector/package.json @@ -0,0 +1,60 @@ +{ + "_args": [ + [ + "jest-leak-detector@24.8.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "jest-leak-detector@24.8.0", + "_id": "jest-leak-detector@24.8.0", + "_inBundle": false, + "_integrity": "sha512-cG0yRSK8A831LN8lIHxI3AblB40uhv0z+SsQdW3GoMMVcK+sJwrIIyax5tu3eHHNJ8Fu6IMDpnLda2jhn2pD/g==", + "_location": "/jest-leak-detector", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "jest-leak-detector@24.8.0", + "name": "jest-leak-detector", + "escapedName": "jest-leak-detector", + "rawSpec": "24.8.0", + "saveSpec": null, + "fetchSpec": "24.8.0" + }, + "_requiredBy": [ + "/jest-runner" + ], + "_resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-24.8.0.tgz", + "_spec": "24.8.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/facebook/jest/issues" + }, + "dependencies": { + "pretty-format": "^24.8.0" + }, + "description": "Module for verifying whether an object has been garbage collected or not.", + "devDependencies": { + "@types/weak": "^1.0.0", + "weak": "^1.0.1" + }, + "engines": { + "node": ">= 6" + }, + "gitHead": "845728f24b3ef41e450595c384e9b5c9fdf248a4", + "homepage": "https://github.com/facebook/jest#readme", + "license": "MIT", + "main": "build/index.js", + "name": "jest-leak-detector", + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/facebook/jest.git", + "directory": "packages/jest-leak-detector" + }, + "types": "build/index.d.ts", + "version": "24.8.0" +} diff --git a/node_modules/jest-matcher-utils/package.json b/node_modules/jest-matcher-utils/package.json new file mode 100644 index 000000000..460acc7ca --- /dev/null +++ b/node_modules/jest-matcher-utils/package.json @@ -0,0 +1,61 @@ +{ + "_args": [ + [ + "jest-matcher-utils@24.8.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "jest-matcher-utils@24.8.0", + "_id": "jest-matcher-utils@24.8.0", + "_inBundle": false, + "_integrity": "sha512-lex1yASY51FvUuHgm0GOVj7DCYEouWSlIYmCW7APSqB9v8mXmKSn5+sWVF0MhuASG0bnYY106/49JU1FZNl5hw==", + "_location": "/jest-matcher-utils", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "jest-matcher-utils@24.8.0", + "name": "jest-matcher-utils", + "escapedName": "jest-matcher-utils", + "rawSpec": "24.8.0", + "saveSpec": null, + "fetchSpec": "24.8.0" + }, + "_requiredBy": [ + "/expect", + "/jest-circus", + "/jest-jasmine2", + "/jest-snapshot" + ], + "_resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-24.8.0.tgz", + "_spec": "24.8.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/facebook/jest/issues" + }, + "dependencies": { + "chalk": "^2.0.1", + "jest-diff": "^24.8.0", + "jest-get-type": "^24.8.0", + "pretty-format": "^24.8.0" + }, + "description": "A set of utility functions for expect and related packages", + "engines": { + "node": ">= 6" + }, + "gitHead": "845728f24b3ef41e450595c384e9b5c9fdf248a4", + "homepage": "https://github.com/facebook/jest#readme", + "license": "MIT", + "main": "build/index.js", + "name": "jest-matcher-utils", + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/facebook/jest.git", + "directory": "packages/jest-matcher-utils" + }, + "version": "24.8.0" +} diff --git a/node_modules/jest-message-util/node_modules/slash/package.json b/node_modules/jest-message-util/node_modules/slash/package.json new file mode 100644 index 000000000..c329a5ed4 --- /dev/null +++ b/node_modules/jest-message-util/node_modules/slash/package.json @@ -0,0 +1,70 @@ +{ + "_args": [ + [ + "slash@2.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "slash@2.0.0", + "_id": "slash@2.0.0", + "_inBundle": false, + "_integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "_location": "/jest-message-util/slash", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "slash@2.0.0", + "name": "slash", + "escapedName": "slash", + "rawSpec": "2.0.0", + "saveSpec": null, + "fetchSpec": "2.0.0" + }, + "_requiredBy": [ + "/jest-message-util" + ], + "_resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "_spec": "2.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/slash/issues" + }, + "description": "Convert Windows backslash paths to slash paths", + "devDependencies": { + "ava": "*", + "xo": "*" + }, + "engines": { + "node": ">=6" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/slash#readme", + "keywords": [ + "path", + "seperator", + "sep", + "slash", + "backslash", + "windows", + "win" + ], + "license": "MIT", + "name": "slash", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/slash.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "2.0.0" +} diff --git a/node_modules/jest-message-util/package.json b/node_modules/jest-message-util/package.json new file mode 100644 index 000000000..d4df11728 --- /dev/null +++ b/node_modules/jest-message-util/package.json @@ -0,0 +1,74 @@ +{ + "_args": [ + [ + "jest-message-util@24.8.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "jest-message-util@24.8.0", + "_id": "jest-message-util@24.8.0", + "_inBundle": false, + "_integrity": "sha512-p2k71rf/b6ns8btdB0uVdljWo9h0ovpnEe05ZKWceQGfXYr4KkzgKo3PBi8wdnd9OtNh46VpNIJynUn/3MKm1g==", + "_location": "/jest-message-util", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "jest-message-util@24.8.0", + "name": "jest-message-util", + "escapedName": "jest-message-util", + "rawSpec": "24.8.0", + "saveSpec": null, + "fetchSpec": "24.8.0" + }, + "_requiredBy": [ + "/@jest/core", + "/@jest/fake-timers", + "/expect", + "/jest-circus", + "/jest-jasmine2", + "/jest-runner", + "/jest-runtime", + "/jest-snapshot" + ], + "_resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-24.8.0.tgz", + "_spec": "24.8.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/facebook/jest/issues" + }, + "dependencies": { + "@babel/code-frame": "^7.0.0", + "@jest/test-result": "^24.8.0", + "@jest/types": "^24.8.0", + "@types/stack-utils": "^1.0.1", + "chalk": "^2.0.1", + "micromatch": "^3.1.10", + "slash": "^2.0.0", + "stack-utils": "^1.0.1" + }, + "devDependencies": { + "@types/babel__code-frame": "^7.0.0", + "@types/micromatch": "^3.1.0", + "@types/slash": "^2.0.0" + }, + "engines": { + "node": ">= 6" + }, + "gitHead": "845728f24b3ef41e450595c384e9b5c9fdf248a4", + "homepage": "https://github.com/facebook/jest#readme", + "license": "MIT", + "main": "build/index.js", + "name": "jest-message-util", + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/facebook/jest.git", + "directory": "packages/jest-message-util" + }, + "types": "build/index.d.ts", + "version": "24.8.0" +} diff --git a/node_modules/jest-mock/package.json b/node_modules/jest-mock/package.json new file mode 100644 index 000000000..652ebad96 --- /dev/null +++ b/node_modules/jest-mock/package.json @@ -0,0 +1,61 @@ +{ + "_args": [ + [ + "jest-mock@24.8.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "jest-mock@24.8.0", + "_id": "jest-mock@24.8.0", + "_inBundle": false, + "_integrity": "sha512-6kWugwjGjJw+ZkK4mDa0Df3sDlUTsV47MSrT0nGQ0RBWJbpODDQ8MHDVtGtUYBne3IwZUhtB7elxHspU79WH3A==", + "_location": "/jest-mock", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "jest-mock@24.8.0", + "name": "jest-mock", + "escapedName": "jest-mock", + "rawSpec": "24.8.0", + "saveSpec": null, + "fetchSpec": "24.8.0" + }, + "_requiredBy": [ + "/@jest/environment", + "/@jest/fake-timers", + "/jest-environment-jsdom", + "/jest-environment-node", + "/jest-runtime" + ], + "_resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-24.8.0.tgz", + "_spec": "24.8.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "browser": "build-es5/index.js", + "bugs": { + "url": "https://github.com/facebook/jest/issues" + }, + "dependencies": { + "@jest/types": "^24.8.0" + }, + "description": "## API", + "engines": { + "node": ">= 6" + }, + "gitHead": "845728f24b3ef41e450595c384e9b5c9fdf248a4", + "homepage": "https://github.com/facebook/jest#readme", + "license": "MIT", + "main": "build/index.js", + "name": "jest-mock", + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/facebook/jest.git", + "directory": "packages/jest-mock" + }, + "types": "build/index.d.ts", + "version": "24.8.0" +} diff --git a/node_modules/jest-pnp-resolver/package.json b/node_modules/jest-pnp-resolver/package.json new file mode 100644 index 000000000..1d94e9b79 --- /dev/null +++ b/node_modules/jest-pnp-resolver/package.json @@ -0,0 +1,60 @@ +{ + "_args": [ + [ + "jest-pnp-resolver@1.2.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "jest-pnp-resolver@1.2.1", + "_id": "jest-pnp-resolver@1.2.1", + "_inBundle": false, + "_integrity": "sha512-pgFw2tm54fzgYvc/OHrnysABEObZCUNFnhjoRjaVOCN8NYc032/gVjPaHD4Aq6ApkSieWtfKAFQtmDKAmhupnQ==", + "_location": "/jest-pnp-resolver", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "jest-pnp-resolver@1.2.1", + "name": "jest-pnp-resolver", + "escapedName": "jest-pnp-resolver", + "rawSpec": "1.2.1", + "saveSpec": null, + "fetchSpec": "1.2.1" + }, + "_requiredBy": [ + "/jest-resolve" + ], + "_resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.1.tgz", + "_spec": "1.2.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/arcanis/jest-pnp-resolver/issues" + }, + "description": "plug'n'play resolver for Webpack", + "engines": { + "node": ">=6" + }, + "homepage": "https://github.com/arcanis/jest-pnp-resolver", + "keywords": [ + "jest", + "yarn", + "plugnplay", + "pnp" + ], + "license": "MIT", + "name": "jest-pnp-resolver", + "peerDependencies": { + "jest-resolve": "*" + }, + "peerDependenciesMeta": { + "jest-resolve": { + "optional": true + } + }, + "repository": { + "type": "git", + "url": "git+https://github.com/arcanis/jest-pnp-resolver.git" + }, + "version": "1.2.1" +} diff --git a/node_modules/jest-regex-util/package.json b/node_modules/jest-regex-util/package.json new file mode 100644 index 000000000..8ea168730 --- /dev/null +++ b/node_modules/jest-regex-util/package.json @@ -0,0 +1,57 @@ +{ + "_args": [ + [ + "jest-regex-util@24.3.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "jest-regex-util@24.3.0", + "_id": "jest-regex-util@24.3.0", + "_inBundle": false, + "_integrity": "sha512-tXQR1NEOyGlfylyEjg1ImtScwMq8Oh3iJbGTjN7p0J23EuVX1MA8rwU69K4sLbCmwzgCUbVkm0FkSF9TdzOhtg==", + "_location": "/jest-regex-util", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "jest-regex-util@24.3.0", + "name": "jest-regex-util", + "escapedName": "jest-regex-util", + "rawSpec": "24.3.0", + "saveSpec": null, + "fetchSpec": "24.3.0" + }, + "_requiredBy": [ + "/@jest/core", + "/@jest/transform", + "/expect", + "/jest-config", + "/jest-resolve-dependencies", + "/jest-runtime" + ], + "_resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-24.3.0.tgz", + "_spec": "24.3.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/facebook/jest/issues" + }, + "engines": { + "node": ">= 6" + }, + "gitHead": "3a7a4f3a3f5489ac8e07dcddf76bb949c482ec87", + "homepage": "https://github.com/facebook/jest#readme", + "license": "MIT", + "main": "build/index.js", + "name": "jest-regex-util", + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/facebook/jest.git", + "directory": "packages/jest-regex-util" + }, + "types": "build/index.d.ts", + "version": "24.3.0" +} diff --git a/node_modules/jest-resolve-dependencies/package.json b/node_modules/jest-resolve-dependencies/package.json new file mode 100644 index 000000000..91d03764f --- /dev/null +++ b/node_modules/jest-resolve-dependencies/package.json @@ -0,0 +1,62 @@ +{ + "_args": [ + [ + "jest-resolve-dependencies@24.8.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "jest-resolve-dependencies@24.8.0", + "_id": "jest-resolve-dependencies@24.8.0", + "_inBundle": false, + "_integrity": "sha512-hyK1qfIf/krV+fSNyhyJeq3elVMhK9Eijlwy+j5jqmZ9QsxwKBiP6qukQxaHtK8k6zql/KYWwCTQ+fDGTIJauw==", + "_location": "/jest-resolve-dependencies", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "jest-resolve-dependencies@24.8.0", + "name": "jest-resolve-dependencies", + "escapedName": "jest-resolve-dependencies", + "rawSpec": "24.8.0", + "saveSpec": null, + "fetchSpec": "24.8.0" + }, + "_requiredBy": [ + "/@jest/core" + ], + "_resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-24.8.0.tgz", + "_spec": "24.8.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/facebook/jest/issues" + }, + "dependencies": { + "@jest/types": "^24.8.0", + "jest-regex-util": "^24.3.0", + "jest-snapshot": "^24.8.0" + }, + "devDependencies": { + "jest-haste-map": "^24.8.0", + "jest-resolve": "^24.8.0", + "jest-runtime": "^24.8.0" + }, + "engines": { + "node": ">= 6" + }, + "gitHead": "845728f24b3ef41e450595c384e9b5c9fdf248a4", + "homepage": "https://github.com/facebook/jest#readme", + "license": "MIT", + "main": "build/index.js", + "name": "jest-resolve-dependencies", + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/facebook/jest.git", + "directory": "packages/jest-resolve-dependencies" + }, + "types": "build/index.d.ts", + "version": "24.8.0" +} diff --git a/node_modules/jest-resolve/package.json b/node_modules/jest-resolve/package.json new file mode 100644 index 000000000..66d63e164 --- /dev/null +++ b/node_modules/jest-resolve/package.json @@ -0,0 +1,67 @@ +{ + "_args": [ + [ + "jest-resolve@24.8.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "jest-resolve@24.8.0", + "_id": "jest-resolve@24.8.0", + "_inBundle": false, + "_integrity": "sha512-+hjSzi1PoRvnuOICoYd5V/KpIQmkAsfjFO71458hQ2Whi/yf1GDeBOFj8Gxw4LrApHsVJvn5fmjcPdmoUHaVKw==", + "_location": "/jest-resolve", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "jest-resolve@24.8.0", + "name": "jest-resolve", + "escapedName": "jest-resolve", + "rawSpec": "24.8.0", + "saveSpec": null, + "fetchSpec": "24.8.0" + }, + "_requiredBy": [ + "/@jest/reporters", + "/jest-config", + "/jest-runner", + "/jest-runtime", + "/jest-snapshot" + ], + "_resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-24.8.0.tgz", + "_spec": "24.8.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/facebook/jest/issues" + }, + "dependencies": { + "@jest/types": "^24.8.0", + "browser-resolve": "^1.11.3", + "chalk": "^2.0.1", + "jest-pnp-resolver": "^1.2.1", + "realpath-native": "^1.1.0" + }, + "devDependencies": { + "@types/browser-resolve": "^0.0.5", + "jest-haste-map": "^24.8.0" + }, + "engines": { + "node": ">= 6" + }, + "gitHead": "845728f24b3ef41e450595c384e9b5c9fdf248a4", + "homepage": "https://github.com/facebook/jest#readme", + "license": "MIT", + "main": "build/index.js", + "name": "jest-resolve", + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/facebook/jest.git", + "directory": "packages/jest-resolve" + }, + "types": "build/index.d.ts", + "version": "24.8.0" +} diff --git a/node_modules/jest-runner/package.json b/node_modules/jest-runner/package.json new file mode 100644 index 000000000..b27ecbe5a --- /dev/null +++ b/node_modules/jest-runner/package.json @@ -0,0 +1,79 @@ +{ + "_args": [ + [ + "jest-runner@24.8.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "jest-runner@24.8.0", + "_id": "jest-runner@24.8.0", + "_inBundle": false, + "_integrity": "sha512-utFqC5BaA3JmznbissSs95X1ZF+d+4WuOWwpM9+Ak356YtMhHE/GXUondZdcyAAOTBEsRGAgH/0TwLzfI9h7ow==", + "_location": "/jest-runner", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "jest-runner@24.8.0", + "name": "jest-runner", + "escapedName": "jest-runner", + "rawSpec": "24.8.0", + "saveSpec": null, + "fetchSpec": "24.8.0" + }, + "_requiredBy": [ + "/@jest/core", + "/@jest/test-sequencer" + ], + "_resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-24.8.0.tgz", + "_spec": "24.8.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/facebook/jest/issues" + }, + "dependencies": { + "@jest/console": "^24.7.1", + "@jest/environment": "^24.8.0", + "@jest/test-result": "^24.8.0", + "@jest/types": "^24.8.0", + "chalk": "^2.4.2", + "exit": "^0.1.2", + "graceful-fs": "^4.1.15", + "jest-config": "^24.8.0", + "jest-docblock": "^24.3.0", + "jest-haste-map": "^24.8.0", + "jest-jasmine2": "^24.8.0", + "jest-leak-detector": "^24.8.0", + "jest-message-util": "^24.8.0", + "jest-resolve": "^24.8.0", + "jest-runtime": "^24.8.0", + "jest-util": "^24.8.0", + "jest-worker": "^24.6.0", + "source-map-support": "^0.5.6", + "throat": "^4.0.0" + }, + "devDependencies": { + "@types/exit": "^0.1.30", + "@types/graceful-fs": "^4.1.2", + "@types/source-map-support": "^0.5.0" + }, + "engines": { + "node": ">= 6" + }, + "gitHead": "845728f24b3ef41e450595c384e9b5c9fdf248a4", + "homepage": "https://github.com/facebook/jest#readme", + "license": "MIT", + "main": "build/index.js", + "name": "jest-runner", + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/facebook/jest.git", + "directory": "packages/jest-runner" + }, + "types": "build/index.d.ts", + "version": "24.8.0" +} diff --git a/node_modules/jest-runtime/node_modules/slash/package.json b/node_modules/jest-runtime/node_modules/slash/package.json new file mode 100644 index 000000000..b96a66504 --- /dev/null +++ b/node_modules/jest-runtime/node_modules/slash/package.json @@ -0,0 +1,70 @@ +{ + "_args": [ + [ + "slash@2.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "slash@2.0.0", + "_id": "slash@2.0.0", + "_inBundle": false, + "_integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "_location": "/jest-runtime/slash", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "slash@2.0.0", + "name": "slash", + "escapedName": "slash", + "rawSpec": "2.0.0", + "saveSpec": null, + "fetchSpec": "2.0.0" + }, + "_requiredBy": [ + "/jest-runtime" + ], + "_resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "_spec": "2.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/slash/issues" + }, + "description": "Convert Windows backslash paths to slash paths", + "devDependencies": { + "ava": "*", + "xo": "*" + }, + "engines": { + "node": ">=6" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/slash#readme", + "keywords": [ + "path", + "seperator", + "sep", + "slash", + "backslash", + "windows", + "win" + ], + "license": "MIT", + "name": "slash", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/slash.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "2.0.0" +} diff --git a/node_modules/jest-runtime/package.json b/node_modules/jest-runtime/package.json new file mode 100644 index 000000000..fcc95def3 --- /dev/null +++ b/node_modules/jest-runtime/package.json @@ -0,0 +1,92 @@ +{ + "_args": [ + [ + "jest-runtime@24.8.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "jest-runtime@24.8.0", + "_id": "jest-runtime@24.8.0", + "_inBundle": false, + "_integrity": "sha512-Mq0aIXhvO/3bX44ccT+czU1/57IgOMyy80oM0XR/nyD5zgBcesF84BPabZi39pJVA6UXw+fY2Q1N+4BiVUBWOA==", + "_location": "/jest-runtime", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "jest-runtime@24.8.0", + "name": "jest-runtime", + "escapedName": "jest-runtime", + "rawSpec": "24.8.0", + "saveSpec": null, + "fetchSpec": "24.8.0" + }, + "_requiredBy": [ + "/@jest/core", + "/@jest/reporters", + "/@jest/test-sequencer", + "/jest-jasmine2", + "/jest-runner" + ], + "_resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-24.8.0.tgz", + "_spec": "24.8.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bin": { + "jest-runtime": "./bin/jest-runtime.js" + }, + "bugs": { + "url": "https://github.com/facebook/jest/issues" + }, + "dependencies": { + "@jest/console": "^24.7.1", + "@jest/environment": "^24.8.0", + "@jest/source-map": "^24.3.0", + "@jest/transform": "^24.8.0", + "@jest/types": "^24.8.0", + "@types/yargs": "^12.0.2", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.1.15", + "jest-config": "^24.8.0", + "jest-haste-map": "^24.8.0", + "jest-message-util": "^24.8.0", + "jest-mock": "^24.8.0", + "jest-regex-util": "^24.3.0", + "jest-resolve": "^24.8.0", + "jest-snapshot": "^24.8.0", + "jest-util": "^24.8.0", + "jest-validate": "^24.8.0", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "strip-bom": "^3.0.0", + "yargs": "^12.0.2" + }, + "devDependencies": { + "@types/exit": "^0.1.30", + "@types/glob": "^7.1.1", + "@types/graceful-fs": "^4.1.2", + "@types/slash": "^2.0.0", + "@types/strip-bom": "^3.0.0", + "jest-environment-node": "^24.8.0" + }, + "engines": { + "node": ">= 6" + }, + "gitHead": "845728f24b3ef41e450595c384e9b5c9fdf248a4", + "homepage": "https://github.com/facebook/jest#readme", + "license": "MIT", + "main": "build/index.js", + "name": "jest-runtime", + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/facebook/jest.git", + "directory": "packages/jest-runtime" + }, + "types": "build/index.d.ts", + "version": "24.8.0" +} diff --git a/node_modules/jest-serializer/package.json b/node_modules/jest-serializer/package.json new file mode 100644 index 000000000..0d1ef516b --- /dev/null +++ b/node_modules/jest-serializer/package.json @@ -0,0 +1,53 @@ +{ + "_args": [ + [ + "jest-serializer@24.4.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "jest-serializer@24.4.0", + "_id": "jest-serializer@24.4.0", + "_inBundle": false, + "_integrity": "sha512-k//0DtglVstc1fv+GY/VHDIjrtNjdYvYjMlbLUed4kxrE92sIUewOi5Hj3vrpB8CXfkJntRPDRjCrCvUhBdL8Q==", + "_location": "/jest-serializer", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "jest-serializer@24.4.0", + "name": "jest-serializer", + "escapedName": "jest-serializer", + "rawSpec": "24.4.0", + "saveSpec": null, + "fetchSpec": "24.4.0" + }, + "_requiredBy": [ + "/jest-haste-map" + ], + "_resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-24.4.0.tgz", + "_spec": "24.4.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/facebook/jest/issues" + }, + "description": "Module for serializing and deserializing object into memory and disk. By default, the `v8` implementations are used, but if not present, it defaults to `JSON` implementation. Both serializers have the advantage of being able to serialize `Map`, `Set`, `undefined`, `NaN`, etc, although the JSON one does it through a replacer/reviver.", + "engines": { + "node": ">= 6" + }, + "gitHead": "a018000fc162db3cfd0ebf9f23fdb734f05821a6", + "homepage": "https://github.com/facebook/jest#readme", + "license": "MIT", + "main": "build/index.js", + "name": "jest-serializer", + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/facebook/jest.git", + "directory": "packages/jest-serializer" + }, + "types": "build/index.d.ts", + "version": "24.4.0" +} diff --git a/node_modules/jest-snapshot/node_modules/semver/package.json b/node_modules/jest-snapshot/node_modules/semver/package.json new file mode 100644 index 000000000..0d90347f2 --- /dev/null +++ b/node_modules/jest-snapshot/node_modules/semver/package.json @@ -0,0 +1,64 @@ +{ + "_args": [ + [ + "semver@5.7.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "semver@5.7.0", + "_id": "semver@5.7.0", + "_inBundle": false, + "_integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", + "_location": "/jest-snapshot/semver", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "semver@5.7.0", + "name": "semver", + "escapedName": "semver", + "rawSpec": "5.7.0", + "saveSpec": null, + "fetchSpec": "5.7.0" + }, + "_requiredBy": [ + "/jest-snapshot" + ], + "_resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", + "_spec": "5.7.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bin": { + "semver": "./bin/semver" + }, + "bugs": { + "url": "https://github.com/npm/node-semver/issues" + }, + "description": "The semantic version parser used by npm.", + "devDependencies": { + "tap": "^13.0.0-rc.18" + }, + "files": [ + "bin", + "range.bnf", + "semver.js" + ], + "homepage": "https://github.com/npm/node-semver#readme", + "license": "ISC", + "main": "semver.js", + "name": "semver", + "repository": { + "type": "git", + "url": "git+https://github.com/npm/node-semver.git" + }, + "scripts": { + "postpublish": "git push origin --all; git push origin --tags", + "postversion": "npm publish", + "preversion": "npm test", + "test": "tap" + }, + "tap": { + "check-coverage": true + }, + "version": "5.7.0" +} diff --git a/node_modules/jest-snapshot/package.json b/node_modules/jest-snapshot/package.json new file mode 100644 index 000000000..cd188f7af --- /dev/null +++ b/node_modules/jest-snapshot/package.json @@ -0,0 +1,79 @@ +{ + "_args": [ + [ + "jest-snapshot@24.8.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "jest-snapshot@24.8.0", + "_id": "jest-snapshot@24.8.0", + "_inBundle": false, + "_integrity": "sha512-5ehtWoc8oU9/cAPe6fez6QofVJLBKyqkY2+TlKTOf0VllBB/mqUNdARdcjlZrs9F1Cv+/HKoCS/BknT0+tmfPg==", + "_location": "/jest-snapshot", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "jest-snapshot@24.8.0", + "name": "jest-snapshot", + "escapedName": "jest-snapshot", + "rawSpec": "24.8.0", + "saveSpec": null, + "fetchSpec": "24.8.0" + }, + "_requiredBy": [ + "/@jest/core", + "/jest-circus", + "/jest-jasmine2", + "/jest-resolve-dependencies", + "/jest-runtime" + ], + "_resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-24.8.0.tgz", + "_spec": "24.8.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/facebook/jest/issues" + }, + "dependencies": { + "@babel/types": "^7.0.0", + "@jest/types": "^24.8.0", + "chalk": "^2.0.1", + "expect": "^24.8.0", + "jest-diff": "^24.8.0", + "jest-matcher-utils": "^24.8.0", + "jest-message-util": "^24.8.0", + "jest-resolve": "^24.8.0", + "mkdirp": "^0.5.1", + "natural-compare": "^1.4.0", + "pretty-format": "^24.8.0", + "semver": "^5.5.0" + }, + "devDependencies": { + "@babel/traverse": "^7.3.4", + "@types/mkdirp": "^0.5.2", + "@types/natural-compare": "^1.4.0", + "@types/prettier": "^1.16.1", + "@types/semver": "^5.5.0", + "jest-haste-map": "^24.8.0", + "prettier": "^1.13.4" + }, + "engines": { + "node": ">= 6" + }, + "gitHead": "845728f24b3ef41e450595c384e9b5c9fdf248a4", + "homepage": "https://github.com/facebook/jest#readme", + "license": "MIT", + "main": "build/index.js", + "name": "jest-snapshot", + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/facebook/jest.git", + "directory": "packages/jest-snapshot" + }, + "types": "build/index.d.ts", + "version": "24.8.0" +} diff --git a/node_modules/jest-util/node_modules/callsites/package.json b/node_modules/jest-util/node_modules/callsites/package.json new file mode 100644 index 000000000..9cfb9cbaa --- /dev/null +++ b/node_modules/jest-util/node_modules/callsites/package.json @@ -0,0 +1,75 @@ +{ + "_args": [ + [ + "callsites@3.1.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "callsites@3.1.0", + "_id": "callsites@3.1.0", + "_inBundle": false, + "_integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "_location": "/jest-util/callsites", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "callsites@3.1.0", + "name": "callsites", + "escapedName": "callsites", + "rawSpec": "3.1.0", + "saveSpec": null, + "fetchSpec": "3.1.0" + }, + "_requiredBy": [ + "/jest-util" + ], + "_resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "_spec": "3.1.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/callsites/issues" + }, + "description": "Get callsites from the V8 stack trace API", + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, + "engines": { + "node": ">=6" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "homepage": "https://github.com/sindresorhus/callsites#readme", + "keywords": [ + "stacktrace", + "v8", + "callsite", + "callsites", + "stack", + "trace", + "function", + "file", + "line", + "debug" + ], + "license": "MIT", + "name": "callsites", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/callsites.git" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "3.1.0" +} diff --git a/node_modules/jest-util/node_modules/slash/package.json b/node_modules/jest-util/node_modules/slash/package.json new file mode 100644 index 000000000..b40ed81ca --- /dev/null +++ b/node_modules/jest-util/node_modules/slash/package.json @@ -0,0 +1,70 @@ +{ + "_args": [ + [ + "slash@2.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "slash@2.0.0", + "_id": "slash@2.0.0", + "_inBundle": false, + "_integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "_location": "/jest-util/slash", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "slash@2.0.0", + "name": "slash", + "escapedName": "slash", + "rawSpec": "2.0.0", + "saveSpec": null, + "fetchSpec": "2.0.0" + }, + "_requiredBy": [ + "/jest-util" + ], + "_resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "_spec": "2.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/slash/issues" + }, + "description": "Convert Windows backslash paths to slash paths", + "devDependencies": { + "ava": "*", + "xo": "*" + }, + "engines": { + "node": ">=6" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/slash#readme", + "keywords": [ + "path", + "seperator", + "sep", + "slash", + "backslash", + "windows", + "win" + ], + "license": "MIT", + "name": "slash", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/slash.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "2.0.0" +} diff --git a/node_modules/jest-util/package.json b/node_modules/jest-util/package.json new file mode 100644 index 000000000..35eff1c63 --- /dev/null +++ b/node_modules/jest-util/package.json @@ -0,0 +1,85 @@ +{ + "_args": [ + [ + "jest-util@24.8.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "jest-util@24.8.0", + "_id": "jest-util@24.8.0", + "_inBundle": false, + "_integrity": "sha512-DYZeE+XyAnbNt0BG1OQqKy/4GVLPtzwGx5tsnDrFcax36rVE3lTA5fbvgmbVPUZf9w77AJ8otqR4VBbfFJkUZA==", + "_location": "/jest-util", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "jest-util@24.8.0", + "name": "jest-util", + "escapedName": "jest-util", + "rawSpec": "24.8.0", + "saveSpec": null, + "fetchSpec": "24.8.0" + }, + "_requiredBy": [ + "/@jest/core", + "/@jest/reporters", + "/@jest/transform", + "/jest-circus", + "/jest-config", + "/jest-each", + "/jest-environment-jsdom", + "/jest-environment-node", + "/jest-haste-map", + "/jest-jasmine2", + "/jest-runner", + "/jest-runtime", + "/jest-watcher", + "/jest/jest-cli" + ], + "_resolved": "https://registry.npmjs.org/jest-util/-/jest-util-24.8.0.tgz", + "_spec": "24.8.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/facebook/jest/issues" + }, + "dependencies": { + "@jest/console": "^24.7.1", + "@jest/fake-timers": "^24.8.0", + "@jest/source-map": "^24.3.0", + "@jest/test-result": "^24.8.0", + "@jest/types": "^24.8.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "devDependencies": { + "@types/graceful-fs": "^4.1.2", + "@types/is-ci": "^1.0.10", + "@types/mkdirp": "^0.5.2", + "@types/slash": "^2.0.0" + }, + "engines": { + "node": ">= 6" + }, + "gitHead": "845728f24b3ef41e450595c384e9b5c9fdf248a4", + "homepage": "https://github.com/facebook/jest#readme", + "license": "MIT", + "main": "build/index.js", + "name": "jest-util", + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/facebook/jest.git", + "directory": "packages/jest-util" + }, + "types": "build/index.d.ts", + "version": "24.8.0" +} diff --git a/node_modules/jest-validate/package.json b/node_modules/jest-validate/package.json new file mode 100644 index 000000000..7877973c3 --- /dev/null +++ b/node_modules/jest-validate/package.json @@ -0,0 +1,68 @@ +{ + "_args": [ + [ + "jest-validate@24.8.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "jest-validate@24.8.0", + "_id": "jest-validate@24.8.0", + "_inBundle": false, + "_integrity": "sha512-+/N7VOEMW1Vzsrk3UWBDYTExTPwf68tavEPKDnJzrC6UlHtUDU/fuEdXqFoHzv9XnQ+zW6X3qMZhJ3YexfeLDA==", + "_location": "/jest-validate", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "jest-validate@24.8.0", + "name": "jest-validate", + "escapedName": "jest-validate", + "rawSpec": "24.8.0", + "saveSpec": null, + "fetchSpec": "24.8.0" + }, + "_requiredBy": [ + "/@jest/core", + "/jest-config", + "/jest-runtime", + "/jest/jest-cli" + ], + "_resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-24.8.0.tgz", + "_spec": "24.8.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/facebook/jest/issues" + }, + "dependencies": { + "@jest/types": "^24.8.0", + "camelcase": "^5.0.0", + "chalk": "^2.0.1", + "jest-get-type": "^24.8.0", + "leven": "^2.1.0", + "pretty-format": "^24.8.0" + }, + "description": "Generic configuration validation tool that helps you with warnings, errors and deprecation messages as well as showing users examples of correct configuration.", + "devDependencies": { + "@types/camelcase": "^4.1.0", + "@types/leven": "^2.1.1" + }, + "engines": { + "node": ">= 6" + }, + "gitHead": "845728f24b3ef41e450595c384e9b5c9fdf248a4", + "homepage": "https://github.com/facebook/jest#readme", + "license": "MIT", + "main": "build/index.js", + "name": "jest-validate", + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/facebook/jest.git", + "directory": "packages/jest-validate" + }, + "types": "build/index.d.ts", + "version": "24.8.0" +} diff --git a/node_modules/jest-watcher/package.json b/node_modules/jest-watcher/package.json new file mode 100644 index 000000000..93b67b0eb --- /dev/null +++ b/node_modules/jest-watcher/package.json @@ -0,0 +1,65 @@ +{ + "_args": [ + [ + "jest-watcher@24.8.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "jest-watcher@24.8.0", + "_id": "jest-watcher@24.8.0", + "_inBundle": false, + "_integrity": "sha512-SBjwHt5NedQoVu54M5GEx7cl7IGEFFznvd/HNT8ier7cCAx/Qgu9ZMlaTQkvK22G1YOpcWBLQPFSImmxdn3DAw==", + "_location": "/jest-watcher", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "jest-watcher@24.8.0", + "name": "jest-watcher", + "escapedName": "jest-watcher", + "rawSpec": "24.8.0", + "saveSpec": null, + "fetchSpec": "24.8.0" + }, + "_requiredBy": [ + "/@jest/core" + ], + "_resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-24.8.0.tgz", + "_spec": "24.8.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/facebook/jest/issues" + }, + "dependencies": { + "@jest/test-result": "^24.8.0", + "@jest/types": "^24.8.0", + "@types/yargs": "^12.0.9", + "ansi-escapes": "^3.0.0", + "chalk": "^2.0.1", + "jest-util": "^24.8.0", + "string-length": "^2.0.0" + }, + "description": "Delightful JavaScript Testing.", + "devDependencies": { + "@types/ansi-escapes": "^3.0.0", + "@types/string-length": "^2.0.0" + }, + "engines": { + "node": ">= 6" + }, + "gitHead": "845728f24b3ef41e450595c384e9b5c9fdf248a4", + "homepage": "https://jestjs.io/", + "license": "MIT", + "main": "build/index.js", + "name": "jest-watcher", + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/facebook/jest.git", + "directory": "packages/jest-watcher" + }, + "version": "24.8.0" +} diff --git a/node_modules/jest-worker/node_modules/supports-color/package.json b/node_modules/jest-worker/node_modules/supports-color/package.json new file mode 100644 index 000000000..38884a5d1 --- /dev/null +++ b/node_modules/jest-worker/node_modules/supports-color/package.json @@ -0,0 +1,89 @@ +{ + "_args": [ + [ + "supports-color@6.1.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "supports-color@6.1.0", + "_id": "supports-color@6.1.0", + "_inBundle": false, + "_integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "_location": "/jest-worker/supports-color", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "supports-color@6.1.0", + "name": "supports-color", + "escapedName": "supports-color", + "rawSpec": "6.1.0", + "saveSpec": null, + "fetchSpec": "6.1.0" + }, + "_requiredBy": [ + "/jest-worker" + ], + "_resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "_spec": "6.1.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "browser": "browser.js", + "bugs": { + "url": "https://github.com/chalk/supports-color/issues" + }, + "dependencies": { + "has-flag": "^3.0.0" + }, + "description": "Detect whether a terminal supports color", + "devDependencies": { + "ava": "^0.25.0", + "import-fresh": "^2.0.0", + "xo": "^0.23.0" + }, + "engines": { + "node": ">=6" + }, + "files": [ + "index.js", + "browser.js" + ], + "homepage": "https://github.com/chalk/supports-color#readme", + "keywords": [ + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "ansi", + "styles", + "tty", + "rgb", + "256", + "shell", + "xterm", + "command-line", + "support", + "supports", + "capability", + "detect", + "truecolor", + "16m" + ], + "license": "MIT", + "name": "supports-color", + "repository": { + "type": "git", + "url": "git+https://github.com/chalk/supports-color.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "6.1.0" +} diff --git a/node_modules/jest-worker/package.json b/node_modules/jest-worker/package.json new file mode 100644 index 000000000..0793955d9 --- /dev/null +++ b/node_modules/jest-worker/package.json @@ -0,0 +1,67 @@ +{ + "_args": [ + [ + "jest-worker@24.6.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "jest-worker@24.6.0", + "_id": "jest-worker@24.6.0", + "_inBundle": false, + "_integrity": "sha512-jDwgW5W9qGNvpI1tNnvajh0a5IE/PuGLFmHk6aR/BZFz8tSgGw17GsDPXAJ6p91IvYDjOw8GpFbvvZGAK+DPQQ==", + "_location": "/jest-worker", + "_phantomChildren": { + "has-flag": "3.0.0" + }, + "_requested": { + "type": "version", + "registry": true, + "raw": "jest-worker@24.6.0", + "name": "jest-worker", + "escapedName": "jest-worker", + "rawSpec": "24.6.0", + "saveSpec": null, + "fetchSpec": "24.6.0" + }, + "_requiredBy": [ + "/@jest/reporters", + "/jest-haste-map", + "/jest-runner" + ], + "_resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-24.6.0.tgz", + "_spec": "24.6.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/facebook/jest/issues" + }, + "dependencies": { + "merge-stream": "^1.0.1", + "supports-color": "^6.1.0" + }, + "description": "Module for executing heavy tasks under forked processes in parallel, by providing a `Promise` based interface, minimum overhead, and bound workers.", + "devDependencies": { + "@types/merge-stream": "^1.1.2", + "@types/supports-color": "^5.3.0", + "get-stream": "^4.1.0", + "worker-farm": "^1.6.0" + }, + "engines": { + "node": ">= 6" + }, + "gitHead": "04e6a66d2ba8b18bee080bb28547db74a255d2c7", + "homepage": "https://github.com/facebook/jest#readme", + "license": "MIT", + "main": "build/index.js", + "name": "jest-worker", + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/facebook/jest.git", + "directory": "packages/jest-worker" + }, + "types": "build/index.d.ts", + "version": "24.6.0" +} diff --git a/node_modules/jest/node_modules/jest-cli/package.json b/node_modules/jest/node_modules/jest-cli/package.json new file mode 100644 index 000000000..38e346996 --- /dev/null +++ b/node_modules/jest/node_modules/jest-cli/package.json @@ -0,0 +1,103 @@ +{ + "_args": [ + [ + "jest-cli@24.8.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "jest-cli@24.8.0", + "_id": "jest-cli@24.8.0", + "_inBundle": false, + "_integrity": "sha512-+p6J00jSMPQ116ZLlHJJvdf8wbjNbZdeSX9ptfHX06/MSNaXmKihQzx5vQcw0q2G6JsdVkUIdWbOWtSnaYs3yA==", + "_location": "/jest/jest-cli", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "jest-cli@24.8.0", + "name": "jest-cli", + "escapedName": "jest-cli", + "rawSpec": "24.8.0", + "saveSpec": null, + "fetchSpec": "24.8.0" + }, + "_requiredBy": [ + "/jest" + ], + "_resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-24.8.0.tgz", + "_spec": "24.8.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bin": { + "jest": "./bin/jest.js" + }, + "bugs": { + "url": "https://github.com/facebook/jest/issues" + }, + "dependencies": { + "@jest/core": "^24.8.0", + "@jest/test-result": "^24.8.0", + "@jest/types": "^24.8.0", + "chalk": "^2.0.1", + "exit": "^0.1.2", + "import-local": "^2.0.0", + "is-ci": "^2.0.0", + "jest-config": "^24.8.0", + "jest-util": "^24.8.0", + "jest-validate": "^24.8.0", + "prompts": "^2.0.1", + "realpath-native": "^1.1.0", + "yargs": "^12.0.2" + }, + "description": "Delightful JavaScript Testing.", + "devDependencies": { + "@types/exit": "^0.1.30", + "@types/is-ci": "^1.1.0", + "@types/prompts": "^1.2.0", + "@types/yargs": "^12.0.2" + }, + "engines": { + "node": ">= 6" + }, + "gitHead": "845728f24b3ef41e450595c384e9b5c9fdf248a4", + "homepage": "https://jestjs.io/", + "keywords": [ + "ava", + "babel", + "coverage", + "easy", + "expect", + "facebook", + "immersive", + "instant", + "jasmine", + "jest", + "jsdom", + "mocha", + "mocking", + "painless", + "qunit", + "runner", + "sandboxed", + "snapshot", + "tap", + "tape", + "test", + "testing", + "typescript", + "watch" + ], + "license": "MIT", + "main": "build/index.js", + "name": "jest-cli", + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/facebook/jest.git", + "directory": "packages/jest-cli" + }, + "types": "build/index.d.ts", + "version": "24.8.0" +} diff --git a/node_modules/jest/package.json b/node_modules/jest/package.json new file mode 100644 index 000000000..edec3ea17 --- /dev/null +++ b/node_modules/jest/package.json @@ -0,0 +1,99 @@ +{ + "_args": [ + [ + "jest@24.8.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "jest@24.8.0", + "_id": "jest@24.8.0", + "_inBundle": false, + "_integrity": "sha512-o0HM90RKFRNWmAWvlyV8i5jGZ97pFwkeVoGvPW1EtLTgJc2+jcuqcbbqcSZLE/3f2S5pt0y2ZBETuhpWNl1Reg==", + "_location": "/jest", + "_phantomChildren": { + "@jest/core": "24.8.0", + "@jest/test-result": "24.8.0", + "@jest/types": "24.8.0", + "chalk": "2.4.2", + "exit": "0.1.2", + "import-local": "2.0.0", + "is-ci": "2.0.0", + "jest-config": "24.8.0", + "jest-util": "24.8.0", + "jest-validate": "24.8.0", + "prompts": "2.1.0", + "realpath-native": "1.1.0", + "yargs": "12.0.5" + }, + "_requested": { + "type": "version", + "registry": true, + "raw": "jest@24.8.0", + "name": "jest", + "escapedName": "jest", + "rawSpec": "24.8.0", + "saveSpec": null, + "fetchSpec": "24.8.0" + }, + "_requiredBy": [ + "#DEV:/" + ], + "_resolved": "https://registry.npmjs.org/jest/-/jest-24.8.0.tgz", + "_spec": "24.8.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bin": { + "jest": "./bin/jest.js" + }, + "bugs": { + "url": "https://github.com/facebook/jest/issues" + }, + "dependencies": { + "import-local": "^2.0.0", + "jest-cli": "^24.8.0" + }, + "description": "Delightful JavaScript Testing.", + "engines": { + "node": ">= 6" + }, + "gitHead": "845728f24b3ef41e450595c384e9b5c9fdf248a4", + "homepage": "https://jestjs.io/", + "keywords": [ + "ava", + "babel", + "coverage", + "easy", + "expect", + "facebook", + "immersive", + "instant", + "jasmine", + "jest", + "jsdom", + "mocha", + "mocking", + "painless", + "qunit", + "runner", + "sandboxed", + "snapshot", + "tap", + "tape", + "test", + "testing", + "typescript", + "watch" + ], + "license": "MIT", + "main": "build/jest.js", + "name": "jest", + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/facebook/jest.git" + }, + "types": "build/jest.d.ts", + "version": "24.8.0" +} diff --git a/node_modules/js-tokens/package.json b/node_modules/js-tokens/package.json new file mode 100644 index 000000000..d30e758ec --- /dev/null +++ b/node_modules/js-tokens/package.json @@ -0,0 +1,69 @@ +{ + "_args": [ + [ + "js-tokens@4.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "js-tokens@4.0.0", + "_id": "js-tokens@4.0.0", + "_inBundle": false, + "_integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "_location": "/js-tokens", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "js-tokens@4.0.0", + "name": "js-tokens", + "escapedName": "js-tokens", + "rawSpec": "4.0.0", + "saveSpec": null, + "fetchSpec": "4.0.0" + }, + "_requiredBy": [ + "/@babel/highlight", + "/loose-envify" + ], + "_resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "_spec": "4.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Simon Lydell" + }, + "bugs": { + "url": "https://github.com/lydell/js-tokens/issues" + }, + "description": "A regex that tokenizes JavaScript.", + "devDependencies": { + "coffeescript": "2.1.1", + "esprima": "4.0.0", + "everything.js": "1.0.3", + "mocha": "5.0.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/lydell/js-tokens#readme", + "keywords": [ + "JavaScript", + "js", + "token", + "tokenize", + "regex" + ], + "license": "MIT", + "name": "js-tokens", + "repository": { + "type": "git", + "url": "git+https://github.com/lydell/js-tokens.git" + }, + "scripts": { + "build": "node generate-index.js", + "dev": "npm run build && npm test", + "esprima-compare": "node esprima-compare ./index.js everything.js/es5.js", + "test": "mocha --ui tdd" + }, + "version": "4.0.0" +} diff --git a/node_modules/js-yaml/package.json b/node_modules/js-yaml/package.json new file mode 100644 index 000000000..d3adae147 --- /dev/null +++ b/node_modules/js-yaml/package.json @@ -0,0 +1,97 @@ +{ + "_args": [ + [ + "js-yaml@3.13.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "js-yaml@3.13.1", + "_id": "js-yaml@3.13.1", + "_inBundle": false, + "_integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==", + "_location": "/js-yaml", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "js-yaml@3.13.1", + "name": "js-yaml", + "escapedName": "js-yaml", + "rawSpec": "3.13.1", + "saveSpec": null, + "fetchSpec": "3.13.1" + }, + "_requiredBy": [ + "/cosmiconfig" + ], + "_resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz", + "_spec": "3.13.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Vladimir Zapparov", + "email": "dervus.grim@gmail.com" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + }, + "bugs": { + "url": "https://github.com/nodeca/js-yaml/issues" + }, + "contributors": [ + { + "name": "Aleksey V Zapparov", + "email": "ixti@member.fsf.org", + "url": "http://www.ixti.net/" + }, + { + "name": "Vitaly Puzrin", + "email": "vitaly@rcdesign.ru", + "url": "https://github.com/puzrin" + }, + { + "name": "Martin Grenfell", + "email": "martin.grenfell@gmail.com", + "url": "http://got-ravings.blogspot.com" + } + ], + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "description": "YAML 1.2 parser and serializer", + "devDependencies": { + "ansi": "^0.3.1", + "benchmark": "^2.1.4", + "browserify": "^16.2.2", + "codemirror": "^5.13.4", + "eslint": "^4.1.1", + "fast-check": "1.1.3", + "istanbul": "^0.4.5", + "mocha": "^5.2.0", + "uglify-js": "^3.0.1" + }, + "files": [ + "index.js", + "lib/", + "bin/", + "dist/" + ], + "homepage": "https://github.com/nodeca/js-yaml", + "keywords": [ + "yaml", + "parser", + "serializer", + "pyyaml" + ], + "license": "MIT", + "name": "js-yaml", + "repository": { + "type": "git", + "url": "git+https://github.com/nodeca/js-yaml.git" + }, + "scripts": { + "test": "make test" + }, + "version": "3.13.1" +} diff --git a/node_modules/jsbn/package.json b/node_modules/jsbn/package.json new file mode 100644 index 000000000..91f25ee51 --- /dev/null +++ b/node_modules/jsbn/package.json @@ -0,0 +1,57 @@ +{ + "_args": [ + [ + "jsbn@0.1.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "jsbn@0.1.1", + "_id": "jsbn@0.1.1", + "_inBundle": false, + "_integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", + "_location": "/jsbn", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "jsbn@0.1.1", + "name": "jsbn", + "escapedName": "jsbn", + "rawSpec": "0.1.1", + "saveSpec": null, + "fetchSpec": "0.1.1" + }, + "_requiredBy": [ + "/ecc-jsbn", + "/sshpk" + ], + "_resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "_spec": "0.1.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Tom Wu" + }, + "bugs": { + "url": "https://github.com/andyperlitch/jsbn/issues" + }, + "description": "The jsbn library is a fast, portable implementation of large-number math in pure JavaScript, enabling public-key crypto and other applications on desktop and mobile browsers.", + "homepage": "https://github.com/andyperlitch/jsbn#readme", + "keywords": [ + "biginteger", + "bignumber", + "big", + "integer" + ], + "license": "MIT", + "main": "index.js", + "name": "jsbn", + "repository": { + "type": "git", + "url": "git+https://github.com/andyperlitch/jsbn.git" + }, + "scripts": { + "test": "mocha test.js" + }, + "version": "0.1.1" +} diff --git a/node_modules/jsdom/package.json b/node_modules/jsdom/package.json new file mode 100644 index 000000000..87d900ddb --- /dev/null +++ b/node_modules/jsdom/package.json @@ -0,0 +1,161 @@ +{ + "_args": [ + [ + "jsdom@11.12.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "jsdom@11.12.0", + "_id": "jsdom@11.12.0", + "_inBundle": false, + "_integrity": "sha512-y8Px43oyiBM13Zc1z780FrfNLJCXTL40EWlty/LXUtcjykRBNgLlCjWXpfSPBl2iv+N7koQN+dvqszHZgT/Fjw==", + "_location": "/jsdom", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "jsdom@11.12.0", + "name": "jsdom", + "escapedName": "jsdom", + "rawSpec": "11.12.0", + "saveSpec": null, + "fetchSpec": "11.12.0" + }, + "_requiredBy": [ + "/jest-environment-jsdom" + ], + "_resolved": "https://registry.npmjs.org/jsdom/-/jsdom-11.12.0.tgz", + "_spec": "11.12.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "browser": { + "canvas": false, + "vm": "./lib/jsdom/vm-shim.js", + "./lib/jsdom/living/websockets/WebSocket-impl.js": "./lib/jsdom/living/websockets/WebSocket-impl-browser.js" + }, + "bugs": { + "url": "https://github.com/jsdom/jsdom/issues" + }, + "dependencies": { + "abab": "^2.0.0", + "acorn": "^5.5.3", + "acorn-globals": "^4.1.0", + "array-equal": "^1.0.0", + "cssom": ">= 0.3.2 < 0.4.0", + "cssstyle": "^1.0.0", + "data-urls": "^1.0.0", + "domexception": "^1.0.1", + "escodegen": "^1.9.1", + "html-encoding-sniffer": "^1.0.2", + "left-pad": "^1.3.0", + "nwsapi": "^2.0.7", + "parse5": "4.0.0", + "pn": "^1.1.0", + "request": "^2.87.0", + "request-promise-native": "^1.0.5", + "sax": "^1.2.4", + "symbol-tree": "^3.2.2", + "tough-cookie": "^2.3.4", + "w3c-hr-time": "^1.0.1", + "webidl-conversions": "^4.0.2", + "whatwg-encoding": "^1.0.3", + "whatwg-mimetype": "^2.1.0", + "whatwg-url": "^6.4.1", + "ws": "^5.2.0", + "xml-name-validator": "^3.0.0" + }, + "description": "A JavaScript implementation of many web standards", + "devDependencies": { + "benchmark": "1.0.0", + "browserify": "^14.5.0", + "chai": "^4.1.2", + "eslint": "^4.19.1", + "eslint-find-rules": "^3.2.3", + "eslint-plugin-html": "^4.0.3", + "js-yaml": "^3.11.0", + "karma": "^1.7.1", + "karma-browserify": "^5.2.0", + "karma-chrome-launcher": "^2.2.0", + "karma-mocha": "^1.3.0", + "karma-mocha-webworker": "^1.3.0", + "karma-sauce-launcher": "^1.2.0", + "minimatch": "^3.0.4", + "mocha": "^3.5.2", + "mocha-sugar-free": "^1.3.1", + "optimist": "0.6.1", + "portfinder": "^1.0.13", + "q": "^1.5.1", + "rimraf": "^2.6.2", + "server-destroy": "^1.0.1", + "st": "^1.2.2", + "watchify": "^3.11.0", + "wd": "^1.7.0", + "webidl2js": "^9.0.0" + }, + "homepage": "https://github.com/jsdom/jsdom#readme", + "keywords": [ + "dom", + "html", + "whatwg", + "w3c" + ], + "license": "MIT", + "main": "./lib/api.js", + "maintainers": [ + { + "name": "Elijah Insua", + "email": "tmpvar@gmail.com", + "url": "http://tmpvar.com" + }, + { + "name": "Domenic Denicola", + "email": "d@domenic.me", + "url": "https://domenic.me/" + }, + { + "name": "Sebastian Mayr", + "email": "sebmaster16@gmail.com", + "url": "https://blog.smayr.name/" + }, + { + "name": "Joris van der Wel", + "email": "joris@jorisvanderwel.com" + }, + { + "name": "Timothy Gu", + "email": "timothygu99@gmail.com", + "url": "https://timothygu.me/" + }, + { + "name": "Zirro", + "email": "code@zirro.se" + } + ], + "name": "jsdom", + "repository": { + "type": "git", + "url": "git+https://github.com/jsdom/jsdom.git" + }, + "scripts": { + "benchmark": "node ./benchmark/runner", + "benchmark-browser": "node ./benchmark/runner --bundle", + "convert-idl": "node ./scripts/webidl/convert", + "init-wpt": "git submodule update --init --recursive", + "lint": "eslint . && eslint test/web-platform-tests/to-upstream --ext .html", + "lint-is-complete": "eslint-find-rules --unused .eslintrc.json", + "prepare": "yarn convert-idl", + "pretest": "yarn convert-idl && yarn init-wpt", + "reset-wpt": "rimraf ./test/web-platform-tests/tests && yarn init-wpt", + "test": "mocha test/index.js", + "test-api": "mocha test/api", + "test-browser": "yarn test-browser-iframe && yarn test-browser-worker", + "test-browser-iframe": "karma start test/karma.conf.js", + "test-browser-worker": "karma start test/karma-webworker.conf.js", + "test-mocha": "mocha", + "test-tuwpt": "mocha test/web-platform-tests/run-tuwpts.js", + "test-wpt": "mocha test/web-platform-tests/run-wpts.js", + "update-authors": "git log --format=\"%aN <%aE>\" | sort -f | uniq > AUTHORS.txt", + "update-wpt": "git submodule update --recursive --remote && cd test/web-platform-tests/tests && python wpt.py manifest --path ../wpt-manifest.json" + }, + "version": "11.12.0" +} diff --git a/node_modules/jsesc/package.json b/node_modules/jsesc/package.json new file mode 100644 index 000000000..4c89d82d5 --- /dev/null +++ b/node_modules/jsesc/package.json @@ -0,0 +1,89 @@ +{ + "_args": [ + [ + "jsesc@2.5.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "jsesc@2.5.2", + "_id": "jsesc@2.5.2", + "_inBundle": false, + "_integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "_location": "/jsesc", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "jsesc@2.5.2", + "name": "jsesc", + "escapedName": "jsesc", + "rawSpec": "2.5.2", + "saveSpec": null, + "fetchSpec": "2.5.2" + }, + "_requiredBy": [ + "/@babel/generator" + ], + "_resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "_spec": "2.5.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Mathias Bynens", + "url": "https://mathiasbynens.be/" + }, + "bin": { + "jsesc": "bin/jsesc" + }, + "bugs": { + "url": "https://github.com/mathiasbynens/jsesc/issues" + }, + "description": "Given some data, jsesc returns the shortest possible stringified & ASCII-safe representation of that data.", + "devDependencies": { + "coveralls": "^2.11.6", + "grunt": "^0.4.5", + "grunt-template": "^0.2.3", + "istanbul": "^0.4.2", + "mocha": "*", + "regenerate": "^1.3.0", + "requirejs": "^2.1.22" + }, + "engines": { + "node": ">=4" + }, + "files": [ + "LICENSE-MIT.txt", + "jsesc.js", + "bin/", + "man/" + ], + "homepage": "https://mths.be/jsesc", + "keywords": [ + "buffer", + "escape", + "javascript", + "json", + "map", + "set", + "string", + "stringify", + "tool" + ], + "license": "MIT", + "main": "jsesc.js", + "man": [ + "man/jsesc.1" + ], + "name": "jsesc", + "repository": { + "type": "git", + "url": "git+https://github.com/mathiasbynens/jsesc.git" + }, + "scripts": { + "build": "grunt template", + "cover": "istanbul cover --report 'html' --verbose --dir 'coverage' 'tests/tests.js'", + "coveralls": "istanbul cover --verbose --dir 'coverage' 'tests/tests.js' && coveralls < coverage/lcov.info'", + "test": "mocha tests" + }, + "version": "2.5.2" +} diff --git a/node_modules/json-parse-better-errors/package.json b/node_modules/json-parse-better-errors/package.json new file mode 100644 index 000000000..9e0278b6f --- /dev/null +++ b/node_modules/json-parse-better-errors/package.json @@ -0,0 +1,81 @@ +{ + "_args": [ + [ + "json-parse-better-errors@1.0.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "json-parse-better-errors@1.0.2", + "_id": "json-parse-better-errors@1.0.2", + "_inBundle": false, + "_integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "_location": "/json-parse-better-errors", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "json-parse-better-errors@1.0.2", + "name": "json-parse-better-errors", + "escapedName": "json-parse-better-errors", + "rawSpec": "1.0.2", + "saveSpec": null, + "fetchSpec": "1.0.2" + }, + "_requiredBy": [ + "/parse-json", + "/read-pkg/parse-json" + ], + "_resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "_spec": "1.0.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Kat Marchán", + "email": "kzm@zkat.tech" + }, + "bugs": { + "url": "https://github.com/zkat/json-parse-better-errors/issues" + }, + "config": { + "nyc": { + "exclude": [ + "node_modules/**", + "test/**" + ] + } + }, + "description": "JSON.parse with context information on error", + "devDependencies": { + "nyc": "^10.3.2", + "standard": "^9.0.2", + "standard-version": "^4.1.0", + "tap": "^10.3.3", + "weallbehave": "^1.2.0", + "weallcontribute": "^1.0.8" + }, + "files": [ + "*.js" + ], + "homepage": "https://github.com/zkat/json-parse-better-errors#readme", + "keywords": [ + "JSON", + "parser" + ], + "license": "MIT", + "main": "index.js", + "name": "json-parse-better-errors", + "repository": { + "type": "git", + "url": "git+https://github.com/zkat/json-parse-better-errors.git" + }, + "scripts": { + "postrelease": "npm publish && git push --follow-tags", + "prerelease": "npm t", + "pretest": "standard", + "release": "standard-version -s", + "test": "tap -J --coverage test/*.js", + "update-coc": "weallbehave -o . && git add CODE_OF_CONDUCT.md && git commit -m 'docs(coc): updated CODE_OF_CONDUCT.md'", + "update-contrib": "weallcontribute -o . && git add CONTRIBUTING.md && git commit -m 'docs(contributing): updated CONTRIBUTING.md'" + }, + "version": "1.0.2" +} diff --git a/node_modules/json-schema-traverse/package.json b/node_modules/json-schema-traverse/package.json new file mode 100644 index 000000000..7680cbf65 --- /dev/null +++ b/node_modules/json-schema-traverse/package.json @@ -0,0 +1,74 @@ +{ + "_args": [ + [ + "json-schema-traverse@0.4.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "json-schema-traverse@0.4.1", + "_id": "json-schema-traverse@0.4.1", + "_inBundle": false, + "_integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "_location": "/json-schema-traverse", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "json-schema-traverse@0.4.1", + "name": "json-schema-traverse", + "escapedName": "json-schema-traverse", + "rawSpec": "0.4.1", + "saveSpec": null, + "fetchSpec": "0.4.1" + }, + "_requiredBy": [ + "/ajv" + ], + "_resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "_spec": "0.4.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Evgeny Poberezkin" + }, + "bugs": { + "url": "https://github.com/epoberezkin/json-schema-traverse/issues" + }, + "description": "Traverse JSON Schema passing each schema object to callback", + "devDependencies": { + "coveralls": "^2.13.1", + "eslint": "^3.19.0", + "mocha": "^3.4.2", + "nyc": "^11.0.2", + "pre-commit": "^1.2.2" + }, + "homepage": "https://github.com/epoberezkin/json-schema-traverse#readme", + "keywords": [ + "JSON-Schema", + "traverse", + "iterate" + ], + "license": "MIT", + "main": "index.js", + "name": "json-schema-traverse", + "nyc": { + "exclude": [ + "**/spec/**", + "node_modules" + ], + "reporter": [ + "lcov", + "text-summary" + ] + }, + "repository": { + "type": "git", + "url": "git+https://github.com/epoberezkin/json-schema-traverse.git" + }, + "scripts": { + "eslint": "eslint index.js spec", + "test": "npm run eslint && nyc npm run test-spec", + "test-spec": "mocha spec -R spec" + }, + "version": "0.4.1" +} diff --git a/node_modules/json-schema/package.json b/node_modules/json-schema/package.json new file mode 100644 index 000000000..52a6480a7 --- /dev/null +++ b/node_modules/json-schema/package.json @@ -0,0 +1,75 @@ +{ + "_args": [ + [ + "json-schema@0.2.3", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "json-schema@0.2.3", + "_id": "json-schema@0.2.3", + "_inBundle": false, + "_integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=", + "_location": "/json-schema", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "json-schema@0.2.3", + "name": "json-schema", + "escapedName": "json-schema", + "rawSpec": "0.2.3", + "saveSpec": null, + "fetchSpec": "0.2.3" + }, + "_requiredBy": [ + "/jsprim" + ], + "_resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", + "_spec": "0.2.3", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Kris Zyp" + }, + "bugs": { + "url": "https://github.com/kriszyp/json-schema/issues" + }, + "description": "JSON Schema validation and specifications", + "devDependencies": { + "vows": "*" + }, + "directories": { + "lib": "./lib" + }, + "homepage": "https://github.com/kriszyp/json-schema#readme", + "keywords": [ + "json", + "schema" + ], + "licenses": [ + { + "type": "AFLv2.1", + "url": "http://trac.dojotoolkit.org/browser/dojo/trunk/LICENSE#L43" + }, + { + "type": "BSD", + "url": "http://trac.dojotoolkit.org/browser/dojo/trunk/LICENSE#L13" + } + ], + "main": "./lib/validate.js", + "maintainers": [ + { + "name": "Kris Zyp", + "email": "kriszyp@gmail.com" + } + ], + "name": "json-schema", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/kriszyp/json-schema.git" + }, + "scripts": { + "test": "echo TESTS DISABLED vows --spec test/*.js" + }, + "version": "0.2.3" +} diff --git a/node_modules/json-stringify-safe/package.json b/node_modules/json-stringify-safe/package.json new file mode 100644 index 000000000..5e516739f --- /dev/null +++ b/node_modules/json-stringify-safe/package.json @@ -0,0 +1,70 @@ +{ + "_args": [ + [ + "json-stringify-safe@5.0.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "json-stringify-safe@5.0.1", + "_id": "json-stringify-safe@5.0.1", + "_inBundle": false, + "_integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=", + "_location": "/json-stringify-safe", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "json-stringify-safe@5.0.1", + "name": "json-stringify-safe", + "escapedName": "json-stringify-safe", + "rawSpec": "5.0.1", + "saveSpec": null, + "fetchSpec": "5.0.1" + }, + "_requiredBy": [ + "/request" + ], + "_resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "_spec": "5.0.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me" + }, + "bugs": { + "url": "https://github.com/isaacs/json-stringify-safe/issues" + }, + "contributors": [ + { + "name": "Andri Möll", + "email": "andri@dot.ee", + "url": "http://themoll.com" + } + ], + "description": "Like JSON.stringify, but doesn't blow up on circular refs.", + "devDependencies": { + "mocha": ">= 2.1.0 < 3", + "must": ">= 0.12 < 0.13", + "sinon": ">= 1.12.2 < 2" + }, + "homepage": "https://github.com/isaacs/json-stringify-safe", + "keywords": [ + "json", + "stringify", + "circular", + "safe" + ], + "license": "ISC", + "main": "stringify.js", + "name": "json-stringify-safe", + "repository": { + "type": "git", + "url": "git://github.com/isaacs/json-stringify-safe.git" + }, + "scripts": { + "test": "node test.js" + }, + "version": "5.0.1" +} diff --git a/node_modules/json5/package.json b/node_modules/json5/package.json new file mode 100644 index 000000000..af922b78d --- /dev/null +++ b/node_modules/json5/package.json @@ -0,0 +1,114 @@ +{ + "_args": [ + [ + "json5@2.1.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "json5@2.1.0", + "_id": "json5@2.1.0", + "_inBundle": false, + "_integrity": "sha512-8Mh9h6xViijj36g7Dxi+Y4S6hNGV96vcJZr/SrlHh1LR/pEn/8j/+qIBbs44YKl69Lrfctp4QD+AdWLTMqEZAQ==", + "_location": "/json5", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "json5@2.1.0", + "name": "json5", + "escapedName": "json5", + "rawSpec": "2.1.0", + "saveSpec": null, + "fetchSpec": "2.1.0" + }, + "_requiredBy": [ + "/@babel/core", + "/ts-jest" + ], + "_resolved": "https://registry.npmjs.org/json5/-/json5-2.1.0.tgz", + "_spec": "2.1.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Aseem Kishore", + "email": "aseem.kishore@gmail.com" + }, + "bin": { + "json5": "lib/cli.js" + }, + "browser": "dist/index.js", + "bugs": { + "url": "https://github.com/json5/json5/issues" + }, + "contributors": [ + { + "name": "Max Nanasy", + "email": "max.nanasy@gmail.com" + }, + { + "name": "Andrew Eisenberg", + "email": "andrew@eisenberg.as" + }, + { + "name": "Jordan Tucker", + "email": "jordanbtucker@gmail.com" + } + ], + "dependencies": { + "minimist": "^1.2.0" + }, + "description": "JSON for humans.", + "devDependencies": { + "core-js": "^2.5.7", + "eslint": "^5.3.0", + "eslint-config-standard": "^11.0.0", + "eslint-plugin-import": "^2.14.0", + "eslint-plugin-node": "^7.0.1", + "eslint-plugin-promise": "^3.8.0", + "eslint-plugin-standard": "^3.1.0", + "regenerate": "^1.4.0", + "rollup": "^0.64.1", + "rollup-plugin-buble": "^0.19.2", + "rollup-plugin-commonjs": "^9.1.5", + "rollup-plugin-node-resolve": "^3.3.0", + "rollup-plugin-terser": "^1.0.1", + "sinon": "^6.1.5", + "tap": "^12.0.1", + "unicode-10.0.0": "^0.7.5" + }, + "engines": { + "node": ">=6" + }, + "files": [ + "lib/", + "dist/" + ], + "homepage": "http://json5.org/", + "keywords": [ + "json", + "json5", + "es5", + "es2015", + "ecmascript" + ], + "license": "MIT", + "main": "lib/index.js", + "name": "json5", + "repository": { + "type": "git", + "url": "git+https://github.com/json5/json5.git" + }, + "scripts": { + "build": "rollup -c", + "build-package": "node build/package.js", + "build-unicode": "node build/unicode.js", + "coverage": "tap --coverage-report html test", + "lint": "eslint --fix .", + "prepublishOnly": "npm run production", + "preversion": "npm run production", + "production": "npm run lint && npm test && npm run build", + "test": "tap -Rspec --100 test", + "version": "npm run build-package && git add package.json5" + }, + "version": "2.1.0" +} diff --git a/node_modules/jsprim/package.json b/node_modules/jsprim/package.json new file mode 100644 index 000000000..8f15bcf9a --- /dev/null +++ b/node_modules/jsprim/package.json @@ -0,0 +1,53 @@ +{ + "_args": [ + [ + "jsprim@1.4.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "jsprim@1.4.1", + "_id": "jsprim@1.4.1", + "_inBundle": false, + "_integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", + "_location": "/jsprim", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "jsprim@1.4.1", + "name": "jsprim", + "escapedName": "jsprim", + "rawSpec": "1.4.1", + "saveSpec": null, + "fetchSpec": "1.4.1" + }, + "_requiredBy": [ + "/http-signature" + ], + "_resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", + "_spec": "1.4.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/joyent/node-jsprim/issues" + }, + "dependencies": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.2.3", + "verror": "1.10.0" + }, + "description": "utilities for primitive JavaScript types", + "engines": [ + "node >=0.6.0" + ], + "homepage": "https://github.com/joyent/node-jsprim#readme", + "license": "MIT", + "main": "./lib/jsprim.js", + "name": "jsprim", + "repository": { + "type": "git", + "url": "git://github.com/joyent/node-jsprim.git" + }, + "version": "1.4.1" +} diff --git a/node_modules/kind-of/package.json b/node_modules/kind-of/package.json new file mode 100644 index 000000000..ea2f3aa3c --- /dev/null +++ b/node_modules/kind-of/package.json @@ -0,0 +1,160 @@ +{ + "_args": [ + [ + "kind-of@6.0.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "kind-of@6.0.2", + "_id": "kind-of@6.0.2", + "_inBundle": false, + "_integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", + "_location": "/kind-of", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "kind-of@6.0.2", + "name": "kind-of", + "escapedName": "kind-of", + "rawSpec": "6.0.2", + "saveSpec": null, + "fetchSpec": "6.0.2" + }, + "_requiredBy": [ + "/base/is-accessor-descriptor", + "/base/is-data-descriptor", + "/base/is-descriptor", + "/define-property/is-accessor-descriptor", + "/define-property/is-data-descriptor", + "/define-property/is-descriptor", + "/extglob/is-accessor-descriptor", + "/extglob/is-data-descriptor", + "/extglob/is-descriptor", + "/micromatch", + "/nanomatch", + "/snapdragon-node/is-accessor-descriptor", + "/snapdragon-node/is-data-descriptor", + "/snapdragon-node/is-descriptor" + ], + "_resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", + "_spec": "6.0.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/kind-of/issues" + }, + "contributors": [ + { + "name": "David Fox-Powell", + "url": "https://dtothefp.github.io/me" + }, + { + "name": "James", + "url": "https://twitter.com/aretecode" + }, + { + "name": "Jon Schlinkert", + "url": "http://twitter.com/jonschlinkert" + }, + { + "name": "Ken Sheedlo", + "url": "kensheedlo.com" + }, + { + "name": "laggingreflex", + "url": "https://github.com/laggingreflex" + }, + { + "name": "Miguel Mota", + "url": "https://miguelmota.com" + }, + { + "name": "Peter deHaan", + "url": "http://about.me/peterdehaan" + }, + { + "name": "tunnckoCore", + "url": "https://i.am.charlike.online" + } + ], + "description": "Get the native type of a value.", + "devDependencies": { + "benchmarked": "^2.0.0", + "browserify": "^14.4.0", + "gulp-format-md": "^1.0.0", + "mocha": "^4.0.1", + "write": "^1.0.3" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/kind-of", + "keywords": [ + "arguments", + "array", + "boolean", + "check", + "date", + "function", + "is", + "is-type", + "is-type-of", + "kind", + "kind-of", + "number", + "object", + "of", + "regexp", + "string", + "test", + "type", + "type-of", + "typeof", + "types" + ], + "license": "MIT", + "main": "index.js", + "name": "kind-of", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/kind-of.git" + }, + "scripts": { + "prepublish": "browserify -o browser.js -e index.js -s index --bare", + "test": "mocha" + }, + "verb": { + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "lint": { + "reflinks": true + }, + "related": { + "list": [ + "is-glob", + "is-number", + "is-primitive" + ] + }, + "reflinks": [ + "type-of", + "typeof", + "verb" + ] + }, + "version": "6.0.2" +} diff --git a/node_modules/kleur/package.json b/node_modules/kleur/package.json new file mode 100644 index 000000000..eaea4a1b2 --- /dev/null +++ b/node_modules/kleur/package.json @@ -0,0 +1,71 @@ +{ + "_args": [ + [ + "kleur@3.0.3", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "kleur@3.0.3", + "_id": "kleur@3.0.3", + "_inBundle": false, + "_integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "_location": "/kleur", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "kleur@3.0.3", + "name": "kleur", + "escapedName": "kleur", + "rawSpec": "3.0.3", + "saveSpec": null, + "fetchSpec": "3.0.3" + }, + "_requiredBy": [ + "/prompts" + ], + "_resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "_spec": "3.0.3", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Luke Edwards", + "email": "luke.edwards05@gmail.com", + "url": "lukeed.com" + }, + "bugs": { + "url": "https://github.com/lukeed/kleur/issues" + }, + "description": "The fastest Node.js library for formatting terminal text with ANSI colors~!", + "devDependencies": { + "tap-spec": "^5.0.0", + "tape": "^4.9.1" + }, + "engines": { + "node": ">=6" + }, + "files": [ + "*.js", + "*.d.ts" + ], + "homepage": "https://github.com/lukeed/kleur#readme", + "keywords": [ + "ansi", + "cli", + "color", + "colors", + "console", + "terminal" + ], + "license": "MIT", + "name": "kleur", + "repository": { + "type": "git", + "url": "git+https://github.com/lukeed/kleur.git" + }, + "scripts": { + "test": "tape test/*.js | tap-spec" + }, + "types": "kleur.d.ts", + "version": "3.0.3" +} diff --git a/node_modules/lcid/package.json b/node_modules/lcid/package.json new file mode 100644 index 000000000..3e1a2c498 --- /dev/null +++ b/node_modules/lcid/package.json @@ -0,0 +1,83 @@ +{ + "_args": [ + [ + "lcid@2.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "lcid@2.0.0", + "_id": "lcid@2.0.0", + "_inBundle": false, + "_integrity": "sha512-avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA==", + "_location": "/lcid", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "lcid@2.0.0", + "name": "lcid", + "escapedName": "lcid", + "rawSpec": "2.0.0", + "saveSpec": null, + "fetchSpec": "2.0.0" + }, + "_requiredBy": [ + "/os-locale" + ], + "_resolved": "https://registry.npmjs.org/lcid/-/lcid-2.0.0.tgz", + "_spec": "2.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/lcid/issues" + }, + "dependencies": { + "invert-kv": "^2.0.0" + }, + "description": "Mapping between standard locale identifiers and Windows locale identifiers (LCID)", + "devDependencies": { + "ava": "*", + "xo": "*" + }, + "engines": { + "node": ">=6" + }, + "files": [ + "index.js", + "lcid.json" + ], + "homepage": "https://github.com/sindresorhus/lcid#readme", + "keywords": [ + "lcid", + "locale", + "string", + "str", + "id", + "identifier", + "windows", + "language", + "lang", + "map", + "mapping", + "convert", + "json", + "bcp47", + "ietf", + "tag" + ], + "license": "MIT", + "name": "lcid", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/lcid.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "2.0.0" +} diff --git a/node_modules/left-pad/package.json b/node_modules/left-pad/package.json new file mode 100644 index 000000000..7a75e6b87 --- /dev/null +++ b/node_modules/left-pad/package.json @@ -0,0 +1,71 @@ +{ + "_args": [ + [ + "left-pad@1.3.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "left-pad@1.3.0", + "_id": "left-pad@1.3.0", + "_inBundle": false, + "_integrity": "sha512-XI5MPzVNApjAyhQzphX8BkmKsKUxD4LdyK24iZeQGinBN9yTQT3bFlCBy/aVx2HrNcqQGsdot8ghrjyrvMCoEA==", + "_location": "/left-pad", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "left-pad@1.3.0", + "name": "left-pad", + "escapedName": "left-pad", + "rawSpec": "1.3.0", + "saveSpec": null, + "fetchSpec": "1.3.0" + }, + "_requiredBy": [ + "/jsdom" + ], + "_resolved": "https://registry.npmjs.org/left-pad/-/left-pad-1.3.0.tgz", + "_spec": "1.3.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "azer" + }, + "bugs": { + "url": "https://github.com/stevemao/left-pad/issues" + }, + "description": "String left pad", + "devDependencies": { + "benchmark": "^2.1.0", + "fast-check": "0.0.8", + "tape": "*" + }, + "homepage": "https://github.com/stevemao/left-pad#readme", + "keywords": [ + "leftpad", + "left", + "pad", + "padding", + "string", + "repeat" + ], + "license": "WTFPL", + "main": "index.js", + "maintainers": [ + { + "name": "Cameron Westland", + "email": "camwest@gmail.com" + } + ], + "name": "left-pad", + "repository": { + "url": "git+ssh://git@github.com/stevemao/left-pad.git", + "type": "git" + }, + "scripts": { + "bench": "node perf/perf.js", + "test": "node test" + }, + "types": "index.d.ts", + "version": "1.3.0" +} diff --git a/node_modules/leven/package.json b/node_modules/leven/package.json new file mode 100644 index 000000000..e7b083409 --- /dev/null +++ b/node_modules/leven/package.json @@ -0,0 +1,91 @@ +{ + "_args": [ + [ + "leven@2.1.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "leven@2.1.0", + "_id": "leven@2.1.0", + "_inBundle": false, + "_integrity": "sha1-wuep93IJTe6dNCAq6KzORoeHVYA=", + "_location": "/leven", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "leven@2.1.0", + "name": "leven", + "escapedName": "leven", + "rawSpec": "2.1.0", + "saveSpec": null, + "fetchSpec": "2.1.0" + }, + "_requiredBy": [ + "/jest-validate" + ], + "_resolved": "https://registry.npmjs.org/leven/-/leven-2.1.0.tgz", + "_spec": "2.1.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/leven/issues" + }, + "description": "Measure the difference between two strings using the fastest JS implementation of the Levenshtein distance algorithm", + "devDependencies": { + "ava": "^0.17.0", + "fast-levenshtein": "^2.0.5", + "ld": "^0.1.0", + "levdist": "^2.0.0", + "levenshtein": "^1.0.4", + "levenshtein-component": "0.0.1", + "levenshtein-edit-distance": "^2.0.0", + "matcha": "^0.7.0", + "natural": "^0.4.0", + "talisman": "^0.18.0", + "xo": "^0.16.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/leven#readme", + "keywords": [ + "leven", + "levenshtein", + "distance", + "algorithm", + "algo", + "string", + "difference", + "diff", + "fast", + "fuzzy", + "similar", + "similarity", + "compare", + "comparison", + "edit", + "text", + "match", + "matching" + ], + "license": "MIT", + "name": "leven", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/leven.git" + }, + "scripts": { + "bench": "matcha bench.js", + "test": "xo && ava" + }, + "version": "2.1.0" +} diff --git a/node_modules/levn/package.json b/node_modules/levn/package.json new file mode 100644 index 000000000..3bc0cb3b6 --- /dev/null +++ b/node_modules/levn/package.json @@ -0,0 +1,81 @@ +{ + "_args": [ + [ + "levn@0.3.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "levn@0.3.0", + "_id": "levn@0.3.0", + "_inBundle": false, + "_integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", + "_location": "/levn", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "levn@0.3.0", + "name": "levn", + "escapedName": "levn", + "rawSpec": "0.3.0", + "saveSpec": null, + "fetchSpec": "0.3.0" + }, + "_requiredBy": [ + "/optionator" + ], + "_resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "_spec": "0.3.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "George Zahariev", + "email": "z@georgezahariev.com" + }, + "bugs": { + "url": "https://github.com/gkz/levn/issues" + }, + "dependencies": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + }, + "description": "Light ECMAScript (JavaScript) Value Notation - human written, concise, typed, flexible", + "devDependencies": { + "istanbul": "~0.4.1", + "livescript": "~1.4.0", + "mocha": "~2.3.4" + }, + "engines": { + "node": ">= 0.8.0" + }, + "files": [ + "lib", + "README.md", + "LICENSE" + ], + "homepage": "https://github.com/gkz/levn", + "keywords": [ + "levn", + "light", + "ecmascript", + "value", + "notation", + "json", + "typed", + "human", + "concise", + "typed", + "flexible" + ], + "license": "MIT", + "main": "./lib/", + "name": "levn", + "repository": { + "type": "git", + "url": "git://github.com/gkz/levn.git" + }, + "scripts": { + "test": "make test" + }, + "version": "0.3.0" +} diff --git a/node_modules/lines-and-columns/package.json b/node_modules/lines-and-columns/package.json new file mode 100644 index 000000000..786bceb85 --- /dev/null +++ b/node_modules/lines-and-columns/package.json @@ -0,0 +1,77 @@ +{ + "_args": [ + [ + "lines-and-columns@1.1.6", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "lines-and-columns@1.1.6", + "_id": "lines-and-columns@1.1.6", + "_inBundle": false, + "_integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=", + "_location": "/lines-and-columns", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "lines-and-columns@1.1.6", + "name": "lines-and-columns", + "escapedName": "lines-and-columns", + "rawSpec": "1.1.6", + "saveSpec": null, + "fetchSpec": "1.1.6" + }, + "_requiredBy": [ + "/read-pkg/parse-json" + ], + "_resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz", + "_spec": "1.1.6", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Brian Donovan", + "email": "me@brian-donovan.com" + }, + "bugs": { + "url": "https://github.com/eventualbuddha/lines-and-columns/issues" + }, + "description": "Maps lines and columns to character offsets and back.", + "devDependencies": { + "@types/mocha": "^2.2.34", + "@types/node": "^6.0.52", + "mocha": "^3.2.0", + "semantic-release": "^6.3.2", + "ts-node": "^1.7.2", + "tslint": "^4.1.1", + "typescript": "^2.1.4" + }, + "files": [ + "dist" + ], + "homepage": "https://github.com/eventualbuddha/lines-and-columns#readme", + "keywords": [ + "lines", + "columns", + "parser" + ], + "license": "MIT", + "main": "dist/index.js", + "module": "dist/index.mjs", + "name": "lines-and-columns", + "repository": { + "type": "git", + "url": "git+https://github.com/eventualbuddha/lines-and-columns.git" + }, + "scripts": { + "build": "./script/build", + "lint": "tslint --config tslint.json --project tsconfig.json --type-check", + "lint-fix": "tslint --config tslint.json --project tsconfig.json --type-check --fix", + "prebuild": "rm -rf dist", + "prepublish": "npm run lint && npm run build", + "pretest": "npm run build", + "semantic-release": "semantic-release pre && npm publish && semantic-release post", + "test": "mocha" + }, + "types": "dist/index.d.ts", + "version": "1.1.6" +} diff --git a/node_modules/load-json-file/package.json b/node_modules/load-json-file/package.json new file mode 100644 index 000000000..77470f15e --- /dev/null +++ b/node_modules/load-json-file/package.json @@ -0,0 +1,79 @@ +{ + "_args": [ + [ + "load-json-file@4.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "load-json-file@4.0.0", + "_id": "load-json-file@4.0.0", + "_inBundle": false, + "_integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=", + "_location": "/load-json-file", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "load-json-file@4.0.0", + "name": "load-json-file", + "escapedName": "load-json-file", + "rawSpec": "4.0.0", + "saveSpec": null, + "fetchSpec": "4.0.0" + }, + "_requiredBy": [ + "/read-pkg-up/read-pkg" + ], + "_resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", + "_spec": "4.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/load-json-file/issues" + }, + "dependencies": { + "graceful-fs": "^4.1.2", + "parse-json": "^4.0.0", + "pify": "^3.0.0", + "strip-bom": "^3.0.0" + }, + "description": "Read and parse a JSON file", + "devDependencies": { + "ava": "*", + "xo": "*" + }, + "engines": { + "node": ">=4" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/load-json-file#readme", + "keywords": [ + "read", + "json", + "parse", + "file", + "fs", + "graceful", + "load" + ], + "license": "MIT", + "name": "load-json-file", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/load-json-file.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "4.0.0", + "xo": { + "esnext": true + } +} diff --git a/node_modules/locate-path/package.json b/node_modules/locate-path/package.json new file mode 100644 index 000000000..bc47ed38e --- /dev/null +++ b/node_modules/locate-path/package.json @@ -0,0 +1,81 @@ +{ + "_args": [ + [ + "locate-path@5.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "locate-path@5.0.0", + "_id": "locate-path@5.0.0", + "_inBundle": false, + "_integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "_location": "/locate-path", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "locate-path@5.0.0", + "name": "locate-path", + "escapedName": "locate-path", + "rawSpec": "5.0.0", + "saveSpec": null, + "fetchSpec": "5.0.0" + }, + "_requiredBy": [ + "/find-up" + ], + "_resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "_spec": "5.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/locate-path/issues" + }, + "dependencies": { + "p-locate": "^4.1.0" + }, + "description": "Get the first path that exists on disk of multiple paths", + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, + "engines": { + "node": ">=8" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "homepage": "https://github.com/sindresorhus/locate-path#readme", + "keywords": [ + "locate", + "path", + "paths", + "file", + "files", + "exists", + "find", + "finder", + "search", + "searcher", + "array", + "iterable", + "iterator" + ], + "license": "MIT", + "name": "locate-path", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/locate-path.git" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "5.0.0" +} diff --git a/node_modules/lodash.sortby/package.json b/node_modules/lodash.sortby/package.json new file mode 100644 index 000000000..ca5364459 --- /dev/null +++ b/node_modules/lodash.sortby/package.json @@ -0,0 +1,74 @@ +{ + "_args": [ + [ + "lodash.sortby@4.7.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "lodash.sortby@4.7.0", + "_id": "lodash.sortby@4.7.0", + "_inBundle": false, + "_integrity": "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=", + "_location": "/lodash.sortby", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "lodash.sortby@4.7.0", + "name": "lodash.sortby", + "escapedName": "lodash.sortby", + "rawSpec": "4.7.0", + "saveSpec": null, + "fetchSpec": "4.7.0" + }, + "_requiredBy": [ + "/data-urls/whatwg-url", + "/whatwg-url" + ], + "_resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", + "_spec": "4.7.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "John-David Dalton", + "email": "john.david.dalton@gmail.com", + "url": "http://allyoucanleet.com/" + }, + "bugs": { + "url": "https://github.com/lodash/lodash/issues" + }, + "contributors": [ + { + "name": "John-David Dalton", + "email": "john.david.dalton@gmail.com", + "url": "http://allyoucanleet.com/" + }, + { + "name": "Blaine Bublitz", + "email": "blaine.bublitz@gmail.com", + "url": "https://github.com/phated" + }, + { + "name": "Mathias Bynens", + "email": "mathias@qiwi.be", + "url": "https://mathiasbynens.be/" + } + ], + "description": "The lodash method `_.sortBy` exported as a module.", + "homepage": "https://lodash.com/", + "icon": "https://lodash.com/icon.svg", + "keywords": [ + "lodash-modularized", + "sortby" + ], + "license": "MIT", + "name": "lodash.sortby", + "repository": { + "type": "git", + "url": "git+https://github.com/lodash/lodash.git" + }, + "scripts": { + "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" + }, + "version": "4.7.0" +} diff --git a/node_modules/lodash/package.json b/node_modules/lodash/package.json new file mode 100644 index 000000000..3b83b82c9 --- /dev/null +++ b/node_modules/lodash/package.json @@ -0,0 +1,71 @@ +{ + "_args": [ + [ + "lodash@4.17.15", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "lodash@4.17.15", + "_id": "lodash@4.17.15", + "_inBundle": false, + "_integrity": "sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==", + "_location": "/lodash", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "lodash@4.17.15", + "name": "lodash", + "escapedName": "lodash", + "rawSpec": "4.17.15", + "saveSpec": null, + "fetchSpec": "4.17.15" + }, + "_requiredBy": [ + "/@babel/core", + "/@babel/generator", + "/@babel/traverse", + "/@babel/types", + "/request-promise-core" + ], + "_resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz", + "_spec": "4.17.15", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "John-David Dalton", + "email": "john.david.dalton@gmail.com" + }, + "bugs": { + "url": "https://github.com/lodash/lodash/issues" + }, + "contributors": [ + { + "name": "John-David Dalton", + "email": "john.david.dalton@gmail.com" + }, + { + "name": "Mathias Bynens", + "email": "mathias@qiwi.be" + } + ], + "description": "Lodash modular utilities.", + "homepage": "https://lodash.com/", + "icon": "https://lodash.com/icon.svg", + "keywords": [ + "modules", + "stdlib", + "util" + ], + "license": "MIT", + "main": "lodash.js", + "name": "lodash", + "repository": { + "type": "git", + "url": "git+https://github.com/lodash/lodash.git" + }, + "scripts": { + "test": "echo \"See https://travis-ci.org/lodash-archive/lodash-cli for testing details.\"" + }, + "version": "4.17.15" +} diff --git a/node_modules/loose-envify/package.json b/node_modules/loose-envify/package.json new file mode 100644 index 000000000..bb2721090 --- /dev/null +++ b/node_modules/loose-envify/package.json @@ -0,0 +1,71 @@ +{ + "_args": [ + [ + "loose-envify@1.4.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "loose-envify@1.4.0", + "_id": "loose-envify@1.4.0", + "_inBundle": false, + "_integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "_location": "/loose-envify", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "loose-envify@1.4.0", + "name": "loose-envify", + "escapedName": "loose-envify", + "rawSpec": "1.4.0", + "saveSpec": null, + "fetchSpec": "1.4.0" + }, + "_requiredBy": [ + "/invariant" + ], + "_resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "_spec": "1.4.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Andres Suarez", + "email": "zertosh@gmail.com" + }, + "bin": { + "loose-envify": "cli.js" + }, + "bugs": { + "url": "https://github.com/zertosh/loose-envify/issues" + }, + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "description": "Fast (and loose) selective `process.env` replacer using js-tokens instead of an AST", + "devDependencies": { + "browserify": "^13.1.1", + "envify": "^3.4.0", + "tap": "^8.0.0" + }, + "homepage": "https://github.com/zertosh/loose-envify", + "keywords": [ + "environment", + "variables", + "browserify", + "browserify-transform", + "transform", + "source", + "configuration" + ], + "license": "MIT", + "main": "index.js", + "name": "loose-envify", + "repository": { + "type": "git", + "url": "git://github.com/zertosh/loose-envify.git" + }, + "scripts": { + "test": "tap test/*.js" + }, + "version": "1.4.0" +} diff --git a/node_modules/make-dir/node_modules/pify/package.json b/node_modules/make-dir/node_modules/pify/package.json new file mode 100644 index 000000000..37a47bb31 --- /dev/null +++ b/node_modules/make-dir/node_modules/pify/package.json @@ -0,0 +1,87 @@ +{ + "_args": [ + [ + "pify@4.0.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "pify@4.0.1", + "_id": "pify@4.0.1", + "_inBundle": false, + "_integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "_location": "/make-dir/pify", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "pify@4.0.1", + "name": "pify", + "escapedName": "pify", + "rawSpec": "4.0.1", + "saveSpec": null, + "fetchSpec": "4.0.1" + }, + "_requiredBy": [ + "/make-dir" + ], + "_resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "_spec": "4.0.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/pify/issues" + }, + "description": "Promisify a callback-style function", + "devDependencies": { + "ava": "^0.25.0", + "pinkie-promise": "^2.0.0", + "v8-natives": "^1.1.0", + "xo": "^0.23.0" + }, + "engines": { + "node": ">=6" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/pify#readme", + "keywords": [ + "promise", + "promises", + "promisify", + "all", + "denodify", + "denodeify", + "callback", + "cb", + "node", + "then", + "thenify", + "convert", + "transform", + "wrap", + "wrapper", + "bind", + "to", + "async", + "await", + "es2015", + "bluebird" + ], + "license": "MIT", + "name": "pify", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/pify.git" + }, + "scripts": { + "optimization-test": "node --allow-natives-syntax optimization-test.js", + "test": "xo && ava" + }, + "version": "4.0.1" +} diff --git a/node_modules/make-dir/node_modules/semver/package.json b/node_modules/make-dir/node_modules/semver/package.json new file mode 100644 index 000000000..1c8907f5f --- /dev/null +++ b/node_modules/make-dir/node_modules/semver/package.json @@ -0,0 +1,64 @@ +{ + "_args": [ + [ + "semver@5.7.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "semver@5.7.0", + "_id": "semver@5.7.0", + "_inBundle": false, + "_integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", + "_location": "/make-dir/semver", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "semver@5.7.0", + "name": "semver", + "escapedName": "semver", + "rawSpec": "5.7.0", + "saveSpec": null, + "fetchSpec": "5.7.0" + }, + "_requiredBy": [ + "/make-dir" + ], + "_resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", + "_spec": "5.7.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bin": { + "semver": "./bin/semver" + }, + "bugs": { + "url": "https://github.com/npm/node-semver/issues" + }, + "description": "The semantic version parser used by npm.", + "devDependencies": { + "tap": "^13.0.0-rc.18" + }, + "files": [ + "bin", + "range.bnf", + "semver.js" + ], + "homepage": "https://github.com/npm/node-semver#readme", + "license": "ISC", + "main": "semver.js", + "name": "semver", + "repository": { + "type": "git", + "url": "git+https://github.com/npm/node-semver.git" + }, + "scripts": { + "postpublish": "git push origin --all; git push origin --tags", + "postversion": "npm publish", + "preversion": "npm test", + "test": "tap" + }, + "tap": { + "check-coverage": true + }, + "version": "5.7.0" +} diff --git a/node_modules/make-dir/package.json b/node_modules/make-dir/package.json new file mode 100644 index 000000000..30f8689e8 --- /dev/null +++ b/node_modules/make-dir/package.json @@ -0,0 +1,96 @@ +{ + "_args": [ + [ + "make-dir@2.1.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "make-dir@2.1.0", + "_id": "make-dir@2.1.0", + "_inBundle": false, + "_integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "_location": "/make-dir", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "make-dir@2.1.0", + "name": "make-dir", + "escapedName": "make-dir", + "rawSpec": "2.1.0", + "saveSpec": null, + "fetchSpec": "2.1.0" + }, + "_requiredBy": [ + "/istanbul-lib-report", + "/istanbul-lib-source-maps" + ], + "_resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "_spec": "2.1.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/make-dir/issues" + }, + "dependencies": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "description": "Make a directory and its parents if needed - Think `mkdir -p`", + "devDependencies": { + "@types/graceful-fs": "^4.1.3", + "@types/node": "^11.10.4", + "ava": "^1.2.0", + "codecov": "^3.0.0", + "graceful-fs": "^4.1.11", + "nyc": "^13.1.0", + "path-type": "^3.0.0", + "tempy": "^0.2.1", + "tsd-check": "^0.3.0", + "xo": "^0.24.0" + }, + "engines": { + "node": ">=6" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "homepage": "https://github.com/sindresorhus/make-dir#readme", + "keywords": [ + "mkdir", + "mkdirp", + "make", + "directories", + "dir", + "dirs", + "folders", + "directory", + "folder", + "path", + "parent", + "parents", + "intermediate", + "recursively", + "recursive", + "create", + "fs", + "filesystem", + "file-system" + ], + "license": "MIT", + "name": "make-dir", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/make-dir.git" + }, + "scripts": { + "test": "xo && nyc ava && tsd-check" + }, + "version": "2.1.0" +} diff --git a/node_modules/make-error/package.json b/node_modules/make-error/package.json new file mode 100644 index 000000000..04388e2a8 --- /dev/null +++ b/node_modules/make-error/package.json @@ -0,0 +1,84 @@ +{ + "_args": [ + [ + "make-error@1.3.5", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "make-error@1.3.5", + "_id": "make-error@1.3.5", + "_inBundle": false, + "_integrity": "sha512-c3sIjNUow0+8swNwVpqoH4YCShKNFkMaw6oH1mNS2haDZQqkeZFlHS3dhoeEbKKmJB4vXpJucU6oH75aDYeE9g==", + "_location": "/make-error", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "make-error@1.3.5", + "name": "make-error", + "escapedName": "make-error", + "rawSpec": "1.3.5", + "saveSpec": null, + "fetchSpec": "1.3.5" + }, + "_requiredBy": [ + "/ts-jest" + ], + "_resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.5.tgz", + "_spec": "1.3.5", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Julien Fontanet", + "email": "julien.fontanet@isonoe.net" + }, + "bugs": { + "url": "https://github.com/JsCommunity/make-error/issues" + }, + "description": "Make your own error types!", + "devDependencies": { + "browserify": "^14.5.0", + "husky": "^0.14.3", + "jest": "^20", + "standard": "^10.0.3", + "uglify-js": "^3.3.2" + }, + "files": [ + "dist/", + "index.js", + "index.d.ts" + ], + "homepage": "https://github.com/JsCommunity/make-error", + "jest": { + "testEnvironment": "node" + }, + "keywords": [ + "create", + "custom", + "derive", + "error", + "errors", + "extend", + "extending", + "extension", + "factory", + "inherit", + "make", + "subclass" + ], + "license": "ISC", + "main": "index.js", + "name": "make-error", + "repository": { + "type": "git", + "url": "git://github.com/JsCommunity/make-error.git" + }, + "scripts": { + "commitmsg": "yarn test", + "dev-test": "jest --watch", + "prepublishOnly": "mkdir -p dist && browserify -s makeError index.js | uglifyjs -c > dist/make-error.js", + "pretest": "standard", + "test": "jest" + }, + "version": "1.3.5" +} diff --git a/node_modules/makeerror/package.json b/node_modules/makeerror/package.json new file mode 100644 index 000000000..1f40e194b --- /dev/null +++ b/node_modules/makeerror/package.json @@ -0,0 +1,57 @@ +{ + "_args": [ + [ + "makeerror@1.0.11", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "makeerror@1.0.11", + "_id": "makeerror@1.0.11", + "_inBundle": false, + "_integrity": "sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw=", + "_location": "/makeerror", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "makeerror@1.0.11", + "name": "makeerror", + "escapedName": "makeerror", + "rawSpec": "1.0.11", + "saveSpec": null, + "fetchSpec": "1.0.11" + }, + "_requiredBy": [ + "/walker" + ], + "_resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.11.tgz", + "_spec": "1.0.11", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Naitik Shah", + "email": "n@daaku.org" + }, + "bugs": { + "url": "https://github.com/daaku/nodejs-makeerror/issues" + }, + "dependencies": { + "tmpl": "1.0.x" + }, + "description": "A library to make errors.", + "devDependencies": { + "mocha": "0.12.x" + }, + "homepage": "https://github.com/daaku/nodejs-makeerror#readme", + "license": "BSD-3-Clause", + "main": "lib/makeerror", + "name": "makeerror", + "repository": { + "type": "git", + "url": "git+https://github.com/daaku/nodejs-makeerror.git" + }, + "scripts": { + "test": "NODE_PATH=./lib mocha --ui exports" + }, + "version": "1.0.11" +} diff --git a/node_modules/map-age-cleaner/package.json b/node_modules/map-age-cleaner/package.json new file mode 100644 index 000000000..f602608e4 --- /dev/null +++ b/node_modules/map-age-cleaner/package.json @@ -0,0 +1,95 @@ +{ + "_args": [ + [ + "map-age-cleaner@0.1.3", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "map-age-cleaner@0.1.3", + "_id": "map-age-cleaner@0.1.3", + "_inBundle": false, + "_integrity": "sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==", + "_location": "/map-age-cleaner", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "map-age-cleaner@0.1.3", + "name": "map-age-cleaner", + "escapedName": "map-age-cleaner", + "rawSpec": "0.1.3", + "saveSpec": null, + "fetchSpec": "0.1.3" + }, + "_requiredBy": [ + "/mem" + ], + "_resolved": "https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz", + "_spec": "0.1.3", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sam Verschueren", + "email": "sam.verschueren@gmail.com", + "url": "github.com/SamVerschueren" + }, + "bugs": { + "url": "https://github.com/SamVerschueren/map-age-cleaner/issues" + }, + "dependencies": { + "p-defer": "^1.0.0" + }, + "description": "Automatically cleanup expired items in a Map", + "devDependencies": { + "@types/delay": "^2.0.1", + "@types/node": "^10.7.1", + "ava": "^0.25.0", + "codecov": "^3.0.0", + "del-cli": "^1.1.0", + "delay": "^3.0.0", + "nyc": "^12.0.0", + "tslint": "^5.11.0", + "tslint-xo": "^0.9.0", + "typescript": "^3.0.1" + }, + "engines": { + "node": ">=6" + }, + "files": [ + "dist/index.js", + "dist/index.d.ts" + ], + "homepage": "https://github.com/SamVerschueren/map-age-cleaner#readme", + "keywords": [ + "map", + "age", + "cleaner", + "maxage", + "expire", + "expiration", + "expiring" + ], + "license": "MIT", + "main": "dist/index.js", + "name": "map-age-cleaner", + "nyc": { + "exclude": [ + "dist/test.js" + ] + }, + "repository": { + "type": "git", + "url": "git+https://github.com/SamVerschueren/map-age-cleaner.git" + }, + "scripts": { + "build": "npm run clean && tsc", + "clean": "del-cli dist", + "lint": "tslint --format stylish --project .", + "prepublishOnly": "npm run build", + "pretest": "npm run build -- --sourceMap", + "test": "npm run lint && nyc ava dist/test.js" + }, + "sideEffects": false, + "typings": "dist/index.d.ts", + "version": "0.1.3" +} diff --git a/node_modules/map-cache/package.json b/node_modules/map-cache/package.json new file mode 100644 index 000000000..f7264feff --- /dev/null +++ b/node_modules/map-cache/package.json @@ -0,0 +1,95 @@ +{ + "_args": [ + [ + "map-cache@0.2.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "map-cache@0.2.2", + "_id": "map-cache@0.2.2", + "_inBundle": false, + "_integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=", + "_location": "/map-cache", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "map-cache@0.2.2", + "name": "map-cache", + "escapedName": "map-cache", + "rawSpec": "0.2.2", + "saveSpec": null, + "fetchSpec": "0.2.2" + }, + "_requiredBy": [ + "/fragment-cache", + "/snapdragon" + ], + "_resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "_spec": "0.2.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/map-cache/issues" + }, + "description": "Basic cache object for storing key-value pairs.", + "devDependencies": { + "gulp-format-md": "^0.1.9", + "should": "^8.3.1" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/map-cache", + "keywords": [ + "cache", + "get", + "has", + "object", + "set", + "storage", + "store" + ], + "license": "MIT", + "main": "index.js", + "name": "map-cache", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/map-cache.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "run": true, + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "related": { + "list": [ + "config-cache", + "option-cache", + "cache-base" + ] + }, + "reflinks": [ + "verb" + ], + "lint": { + "reflinks": true + } + }, + "version": "0.2.2" +} diff --git a/node_modules/map-visit/package.json b/node_modules/map-visit/package.json new file mode 100644 index 000000000..f9d6166ef --- /dev/null +++ b/node_modules/map-visit/package.json @@ -0,0 +1,117 @@ +{ + "_args": [ + [ + "map-visit@1.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "map-visit@1.0.0", + "_id": "map-visit@1.0.0", + "_inBundle": false, + "_integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", + "_location": "/map-visit", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "map-visit@1.0.0", + "name": "map-visit", + "escapedName": "map-visit", + "rawSpec": "1.0.0", + "saveSpec": null, + "fetchSpec": "1.0.0" + }, + "_requiredBy": [ + "/collection-visit" + ], + "_resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "_spec": "1.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/map-visit/issues" + }, + "contributors": [ + { + "name": "Brian Woodward", + "email": "brian.woodward@gmail.com", + "url": "https://twitter.com/doowb" + }, + { + "name": "Jon Schlinkert", + "email": "jon.schlinkert@sellside.com", + "url": "http://twitter.com/jonschlinkert" + } + ], + "dependencies": { + "object-visit": "^1.0.0" + }, + "description": "Map `visit` over an array of objects.", + "devDependencies": { + "clone-deep": "^0.2.4", + "extend-shallow": "^2.0.1", + "gulp-format-md": "^0.1.12", + "lodash": "^4.17.4", + "mocha": "^3.2.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/map-visit", + "keywords": [ + "array", + "arrays", + "function", + "helper", + "invoke", + "key", + "map", + "method", + "object", + "objects", + "value", + "visit", + "visitor" + ], + "license": "MIT", + "main": "index.js", + "name": "map-visit", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/map-visit.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "lint": { + "reflinks": true + }, + "related": { + "list": [ + "collection-visit", + "object-visit" + ] + }, + "reflinks": [ + "verb", + "verb-generate-readme" + ] + }, + "version": "1.0.0" +} diff --git a/node_modules/mem/package.json b/node_modules/mem/package.json new file mode 100644 index 000000000..2aecd8174 --- /dev/null +++ b/node_modules/mem/package.json @@ -0,0 +1,82 @@ +{ + "_args": [ + [ + "mem@4.3.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "mem@4.3.0", + "_id": "mem@4.3.0", + "_inBundle": false, + "_integrity": "sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w==", + "_location": "/mem", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "mem@4.3.0", + "name": "mem", + "escapedName": "mem", + "rawSpec": "4.3.0", + "saveSpec": null, + "fetchSpec": "4.3.0" + }, + "_requiredBy": [ + "/os-locale" + ], + "_resolved": "https://registry.npmjs.org/mem/-/mem-4.3.0.tgz", + "_spec": "4.3.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/mem/issues" + }, + "dependencies": { + "map-age-cleaner": "^0.1.1", + "mimic-fn": "^2.0.0", + "p-is-promise": "^2.0.0" + }, + "description": "Memoize functions - An optimization used to speed up consecutive function calls by caching the result of calls with identical input", + "devDependencies": { + "ava": "^1.4.1", + "delay": "^4.1.0", + "tsd": "^0.7.1", + "xo": "^0.24.0" + }, + "engines": { + "node": ">=6" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "homepage": "https://github.com/sindresorhus/mem#readme", + "keywords": [ + "memoize", + "function", + "mem", + "memoization", + "cache", + "caching", + "optimize", + "performance", + "ttl", + "expire", + "promise" + ], + "license": "MIT", + "name": "mem", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/mem.git" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "4.3.0" +} diff --git a/node_modules/merge-stream/package.json b/node_modules/merge-stream/package.json new file mode 100644 index 000000000..fbf8bbb09 --- /dev/null +++ b/node_modules/merge-stream/package.json @@ -0,0 +1,60 @@ +{ + "_args": [ + [ + "merge-stream@1.0.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "merge-stream@1.0.1", + "_id": "merge-stream@1.0.1", + "_inBundle": false, + "_integrity": "sha1-QEEgLVCKNCugAXQAjfDCUbjBNeE=", + "_location": "/merge-stream", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "merge-stream@1.0.1", + "name": "merge-stream", + "escapedName": "merge-stream", + "rawSpec": "1.0.1", + "saveSpec": null, + "fetchSpec": "1.0.1" + }, + "_requiredBy": [ + "/jest-worker" + ], + "_resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-1.0.1.tgz", + "_spec": "1.0.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Stephen Sugden", + "email": "me@stephensugden.com" + }, + "bugs": { + "url": "https://github.com/grncdr/merge-stream/issues" + }, + "dependencies": { + "readable-stream": "^2.0.1" + }, + "description": "Create a stream that emits events from multiple other streams", + "devDependencies": { + "from2": "^2.0.3", + "istanbul": "^0.3.2" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/grncdr/merge-stream#readme", + "license": "MIT", + "name": "merge-stream", + "repository": { + "type": "git", + "url": "git+https://github.com/grncdr/merge-stream.git" + }, + "scripts": { + "test": "istanbul cover test.js && istanbul check-cover --statements 100 --branches 100" + }, + "version": "1.0.1" +} diff --git a/node_modules/micromatch/package.json b/node_modules/micromatch/package.json new file mode 100644 index 000000000..3fdcf7665 --- /dev/null +++ b/node_modules/micromatch/package.json @@ -0,0 +1,226 @@ +{ + "_args": [ + [ + "micromatch@3.1.10", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "micromatch@3.1.10", + "_id": "micromatch@3.1.10", + "_inBundle": false, + "_integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "_location": "/micromatch", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "micromatch@3.1.10", + "name": "micromatch", + "escapedName": "micromatch", + "rawSpec": "3.1.10", + "saveSpec": null, + "fetchSpec": "3.1.10" + }, + "_requiredBy": [ + "/@jest/core", + "/@jest/transform", + "/anymatch", + "/jest-config", + "/jest-haste-map", + "/jest-message-util", + "/sane" + ], + "_resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "_spec": "3.1.10", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/micromatch/micromatch/issues" + }, + "contributors": [ + { + "name": "Amila Welihinda", + "url": "amilajack.com" + }, + { + "name": "Bogdan Chadkin", + "url": "https://github.com/TrySound" + }, + { + "name": "Brian Woodward", + "url": "https://twitter.com/doowb" + }, + { + "name": "Devon Govett", + "url": "http://badassjs.com" + }, + { + "name": "Elan Shanker", + "url": "https://github.com/es128" + }, + { + "name": "Fabrício Matté", + "url": "https://ultcombo.js.org" + }, + { + "name": "Jon Schlinkert", + "url": "http://twitter.com/jonschlinkert" + }, + { + "name": "Martin Kolárik", + "url": "https://kolarik.sk" + }, + { + "name": "Olsten Larck", + "url": "https://i.am.charlike.online" + }, + { + "name": "Paul Miller", + "url": "paulmillr.com" + }, + { + "name": "Tom Byrer", + "url": "https://github.com/tomByrer" + }, + { + "name": "Tyler Akins", + "url": "http://rumkin.com" + }, + { + "url": "https://github.com/DianeLooney" + } + ], + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "description": "Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch.", + "devDependencies": { + "bash-match": "^1.0.2", + "for-own": "^1.0.0", + "gulp": "^3.9.1", + "gulp-format-md": "^1.0.0", + "gulp-istanbul": "^1.1.3", + "gulp-mocha": "^5.0.0", + "gulp-unused": "^0.2.1", + "is-windows": "^1.0.2", + "minimatch": "^3.0.4", + "minimist": "^1.2.0", + "mocha": "^3.5.3", + "multimatch": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js", + "lib" + ], + "homepage": "https://github.com/micromatch/micromatch", + "keywords": [ + "bash", + "expand", + "expansion", + "expression", + "file", + "files", + "filter", + "find", + "glob", + "globbing", + "globs", + "globstar", + "match", + "matcher", + "matches", + "matching", + "micromatch", + "minimatch", + "multimatch", + "path", + "pattern", + "patterns", + "regex", + "regexp", + "regular", + "shell", + "wildcard" + ], + "license": "MIT", + "lintDeps": { + "dependencies": { + "options": { + "lock": { + "snapdragon": "^0.8.1" + } + } + }, + "devDependencies": { + "files": { + "options": { + "ignore": [ + "benchmark/**" + ] + } + } + } + }, + "main": "index.js", + "name": "micromatch", + "repository": { + "type": "git", + "url": "git+https://github.com/micromatch/micromatch.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "toc": "collapsible", + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "helpers": [ + "./benchmark/helper.js" + ], + "related": { + "list": [ + "braces", + "expand-brackets", + "extglob", + "fill-range", + "nanomatch" + ] + }, + "lint": { + "reflinks": true + }, + "reflinks": [ + "expand-brackets", + "extglob", + "glob-object", + "minimatch", + "multimatch", + "snapdragon" + ] + }, + "version": "3.1.10" +} diff --git a/node_modules/mime-db/package.json b/node_modules/mime-db/package.json new file mode 100644 index 000000000..77a8a9670 --- /dev/null +++ b/node_modules/mime-db/package.json @@ -0,0 +1,105 @@ +{ + "_args": [ + [ + "mime-db@1.40.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "mime-db@1.40.0", + "_id": "mime-db@1.40.0", + "_inBundle": false, + "_integrity": "sha512-jYdeOMPy9vnxEqFRRo6ZvTZ8d9oPb+k18PKoYNYUe2stVEBPPwsln/qWzdbmaIvnhZ9v2P+CuecK+fpUfsV2mA==", + "_location": "/mime-db", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "mime-db@1.40.0", + "name": "mime-db", + "escapedName": "mime-db", + "rawSpec": "1.40.0", + "saveSpec": null, + "fetchSpec": "1.40.0" + }, + "_requiredBy": [ + "/mime-types" + ], + "_resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.40.0.tgz", + "_spec": "1.40.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/jshttp/mime-db/issues" + }, + "contributors": [ + { + "name": "Douglas Christopher Wilson", + "email": "doug@somethingdoug.com" + }, + { + "name": "Jonathan Ong", + "email": "me@jongleberry.com", + "url": "http://jongleberry.com" + }, + { + "name": "Robert Kieffer", + "email": "robert@broofa.com", + "url": "http://github.com/broofa" + } + ], + "description": "Media Type Database", + "devDependencies": { + "bluebird": "3.5.4", + "co": "4.6.0", + "cogent": "1.0.1", + "csv-parse": "4.3.4", + "eslint": "5.16.0", + "eslint-config-standard": "12.0.0", + "eslint-plugin-import": "2.16.0", + "eslint-plugin-node": "8.0.1", + "eslint-plugin-promise": "4.1.1", + "eslint-plugin-standard": "4.0.0", + "gnode": "0.1.2", + "mocha": "6.1.4", + "nyc": "14.0.0", + "raw-body": "2.3.3", + "stream-to-array": "2.3.0" + }, + "engines": { + "node": ">= 0.6" + }, + "files": [ + "HISTORY.md", + "LICENSE", + "README.md", + "db.json", + "index.js" + ], + "homepage": "https://github.com/jshttp/mime-db#readme", + "keywords": [ + "mime", + "db", + "type", + "types", + "database", + "charset", + "charsets" + ], + "license": "MIT", + "name": "mime-db", + "repository": { + "type": "git", + "url": "git+https://github.com/jshttp/mime-db.git" + }, + "scripts": { + "build": "node scripts/build", + "fetch": "node scripts/fetch-apache && gnode scripts/fetch-iana && node scripts/fetch-nginx", + "lint": "eslint .", + "test": "mocha --reporter spec --bail --check-leaks test/", + "test-cov": "nyc --reporter=html --reporter=text npm test", + "test-travis": "nyc --reporter=text npm test", + "update": "npm run fetch && npm run build", + "version": "node scripts/version-history.js && git add HISTORY.md" + }, + "version": "1.40.0" +} diff --git a/node_modules/mime-types/package.json b/node_modules/mime-types/package.json new file mode 100644 index 000000000..cbce7e9f0 --- /dev/null +++ b/node_modules/mime-types/package.json @@ -0,0 +1,91 @@ +{ + "_args": [ + [ + "mime-types@2.1.24", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "mime-types@2.1.24", + "_id": "mime-types@2.1.24", + "_inBundle": false, + "_integrity": "sha512-WaFHS3MCl5fapm3oLxU4eYDw77IQM2ACcxQ9RIxfaC3ooc6PFuBMGZZsYpvoXS5D5QTWPieo1jjLdAm3TBP3cQ==", + "_location": "/mime-types", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "mime-types@2.1.24", + "name": "mime-types", + "escapedName": "mime-types", + "rawSpec": "2.1.24", + "saveSpec": null, + "fetchSpec": "2.1.24" + }, + "_requiredBy": [ + "/form-data", + "/request" + ], + "_resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.24.tgz", + "_spec": "2.1.24", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/jshttp/mime-types/issues" + }, + "contributors": [ + { + "name": "Douglas Christopher Wilson", + "email": "doug@somethingdoug.com" + }, + { + "name": "Jeremiah Senkpiel", + "email": "fishrock123@rocketmail.com", + "url": "https://searchbeam.jit.su" + }, + { + "name": "Jonathan Ong", + "email": "me@jongleberry.com", + "url": "http://jongleberry.com" + } + ], + "dependencies": { + "mime-db": "1.40.0" + }, + "description": "The ultimate javascript content-type utility.", + "devDependencies": { + "eslint": "5.16.0", + "eslint-config-standard": "12.0.0", + "eslint-plugin-import": "2.17.2", + "eslint-plugin-node": "8.0.1", + "eslint-plugin-promise": "4.1.1", + "eslint-plugin-standard": "4.0.0", + "mocha": "6.1.4", + "nyc": "14.0.0" + }, + "engines": { + "node": ">= 0.6" + }, + "files": [ + "HISTORY.md", + "LICENSE", + "index.js" + ], + "homepage": "https://github.com/jshttp/mime-types#readme", + "keywords": [ + "mime", + "types" + ], + "license": "MIT", + "name": "mime-types", + "repository": { + "type": "git", + "url": "git+https://github.com/jshttp/mime-types.git" + }, + "scripts": { + "lint": "eslint .", + "test": "mocha --reporter spec test/test.js", + "test-cov": "nyc --reporter=html --reporter=text npm test", + "test-travis": "nyc --reporter=text npm test" + }, + "version": "2.1.24" +} diff --git a/node_modules/mimic-fn/package.json b/node_modules/mimic-fn/package.json new file mode 100644 index 000000000..80d816c5a --- /dev/null +++ b/node_modules/mimic-fn/package.json @@ -0,0 +1,78 @@ +{ + "_args": [ + [ + "mimic-fn@2.1.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "mimic-fn@2.1.0", + "_id": "mimic-fn@2.1.0", + "_inBundle": false, + "_integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "_location": "/mimic-fn", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "mimic-fn@2.1.0", + "name": "mimic-fn", + "escapedName": "mimic-fn", + "rawSpec": "2.1.0", + "saveSpec": null, + "fetchSpec": "2.1.0" + }, + "_requiredBy": [ + "/mem" + ], + "_resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "_spec": "2.1.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/mimic-fn/issues" + }, + "description": "Make a function mimic another one", + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.1", + "xo": "^0.24.0" + }, + "engines": { + "node": ">=6" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "homepage": "https://github.com/sindresorhus/mimic-fn#readme", + "keywords": [ + "function", + "mimic", + "imitate", + "rename", + "copy", + "inherit", + "properties", + "name", + "func", + "fn", + "set", + "infer", + "change" + ], + "license": "MIT", + "name": "mimic-fn", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/mimic-fn.git" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "2.1.0" +} diff --git a/node_modules/minimatch/package.json b/node_modules/minimatch/package.json new file mode 100644 index 000000000..cb4f296a4 --- /dev/null +++ b/node_modules/minimatch/package.json @@ -0,0 +1,68 @@ +{ + "_args": [ + [ + "minimatch@3.0.4", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "minimatch@3.0.4", + "_id": "minimatch@3.0.4", + "_inBundle": false, + "_integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "_location": "/minimatch", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "minimatch@3.0.4", + "name": "minimatch", + "escapedName": "minimatch", + "rawSpec": "3.0.4", + "saveSpec": null, + "fetchSpec": "3.0.4" + }, + "_requiredBy": [ + "/glob", + "/test-exclude" + ], + "_resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "_spec": "3.0.4", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me" + }, + "bugs": { + "url": "https://github.com/isaacs/minimatch/issues" + }, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "description": "a glob matcher in javascript", + "devDependencies": { + "tap": "^10.3.2" + }, + "engines": { + "node": "*" + }, + "files": [ + "minimatch.js" + ], + "homepage": "https://github.com/isaacs/minimatch#readme", + "license": "ISC", + "main": "minimatch.js", + "name": "minimatch", + "repository": { + "type": "git", + "url": "git://github.com/isaacs/minimatch.git" + }, + "scripts": { + "postpublish": "git push origin --all; git push origin --tags", + "postversion": "npm publish", + "preversion": "npm test", + "test": "tap test/*.js --cov" + }, + "version": "3.0.4" +} diff --git a/node_modules/minimist/package.json b/node_modules/minimist/package.json new file mode 100644 index 000000000..d249152a5 --- /dev/null +++ b/node_modules/minimist/package.json @@ -0,0 +1,79 @@ +{ + "_args": [ + [ + "minimist@1.2.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "minimist@1.2.0", + "_id": "minimist@1.2.0", + "_inBundle": false, + "_integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", + "_location": "/minimist", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "minimist@1.2.0", + "name": "minimist", + "escapedName": "minimist", + "rawSpec": "1.2.0", + "saveSpec": null, + "fetchSpec": "1.2.0" + }, + "_requiredBy": [ + "/@cnakazawa/watch", + "/json5", + "/sane" + ], + "_resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", + "_spec": "1.2.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "bugs": { + "url": "https://github.com/substack/minimist/issues" + }, + "description": "parse argument options", + "devDependencies": { + "covert": "^1.0.0", + "tap": "~0.4.0", + "tape": "^3.5.0" + }, + "homepage": "https://github.com/substack/minimist", + "keywords": [ + "argv", + "getopt", + "parser", + "optimist" + ], + "license": "MIT", + "main": "index.js", + "name": "minimist", + "repository": { + "type": "git", + "url": "git://github.com/substack/minimist.git" + }, + "scripts": { + "coverage": "covert test/*.js", + "test": "tap test/*.js" + }, + "testling": { + "files": "test/*.js", + "browsers": [ + "ie/6..latest", + "ff/5", + "firefox/latest", + "chrome/10", + "chrome/latest", + "safari/5.1", + "safari/latest", + "opera/12" + ] + }, + "version": "1.2.0" +} diff --git a/node_modules/mixin-deep/node_modules/is-extendable/package.json b/node_modules/mixin-deep/node_modules/is-extendable/package.json new file mode 100644 index 000000000..c2f1235f5 --- /dev/null +++ b/node_modules/mixin-deep/node_modules/is-extendable/package.json @@ -0,0 +1,102 @@ +{ + "_args": [ + [ + "is-extendable@1.0.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "is-extendable@1.0.1", + "_id": "is-extendable@1.0.1", + "_inBundle": false, + "_integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "_location": "/mixin-deep/is-extendable", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-extendable@1.0.1", + "name": "is-extendable", + "escapedName": "is-extendable", + "rawSpec": "1.0.1", + "saveSpec": null, + "fetchSpec": "1.0.1" + }, + "_requiredBy": [ + "/mixin-deep" + ], + "_resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "_spec": "1.0.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/is-extendable/issues" + }, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "description": "Returns true if a value is a plain object, array or function.", + "devDependencies": { + "gulp-format-md": "^1.0.0", + "mocha": "^3.4.2" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "homepage": "https://github.com/jonschlinkert/is-extendable", + "keywords": [ + "array", + "assign", + "check", + "date", + "extend", + "extendable", + "extensible", + "function", + "is", + "object", + "regex", + "test" + ], + "license": "MIT", + "main": "index.js", + "name": "is-extendable", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/is-extendable.git" + }, + "scripts": { + "test": "mocha" + }, + "types": "index.d.ts", + "verb": { + "related": { + "list": [ + "assign-deep", + "is-equal-shallow", + "is-plain-object", + "isobject", + "kind-of" + ] + }, + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "lint": { + "reflinks": true + } + }, + "version": "1.0.1" +} diff --git a/node_modules/mixin-deep/package.json b/node_modules/mixin-deep/package.json new file mode 100644 index 000000000..5e7e74f0f --- /dev/null +++ b/node_modules/mixin-deep/package.json @@ -0,0 +1,102 @@ +{ + "_args": [ + [ + "mixin-deep@1.3.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "mixin-deep@1.3.2", + "_id": "mixin-deep@1.3.2", + "_inBundle": false, + "_integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "_location": "/mixin-deep", + "_phantomChildren": { + "is-plain-object": "2.0.4" + }, + "_requested": { + "type": "version", + "registry": true, + "raw": "mixin-deep@1.3.2", + "name": "mixin-deep", + "escapedName": "mixin-deep", + "rawSpec": "1.3.2", + "saveSpec": null, + "fetchSpec": "1.3.2" + }, + "_requiredBy": [ + "/base" + ], + "_resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "_spec": "1.3.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/mixin-deep/issues" + }, + "dependencies": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "description": "Deeply mix the properties of objects into the first object. Like merge-deep, but doesn't clone.", + "devDependencies": { + "gulp-format-md": "^1.0.0", + "mocha": "^3.5.3", + "should": "^13.1.3" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/mixin-deep", + "keywords": [ + "deep", + "extend", + "key", + "keys", + "merge", + "mixin", + "object", + "prop", + "properties", + "util", + "values" + ], + "license": "MIT", + "main": "index.js", + "name": "mixin-deep", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/mixin-deep.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "related": { + "list": [ + "defaults-deep", + "extend-shallow", + "merge-deep", + "mixin-object" + ] + }, + "lint": { + "reflinks": true + } + }, + "version": "1.3.2" +} diff --git a/node_modules/mkdirp/node_modules/minimist/package.json b/node_modules/mkdirp/node_modules/minimist/package.json new file mode 100644 index 000000000..e1e7e68f1 --- /dev/null +++ b/node_modules/mkdirp/node_modules/minimist/package.json @@ -0,0 +1,75 @@ +{ + "_args": [ + [ + "minimist@0.0.8", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "minimist@0.0.8", + "_id": "minimist@0.0.8", + "_inBundle": false, + "_integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=", + "_location": "/mkdirp/minimist", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "minimist@0.0.8", + "name": "minimist", + "escapedName": "minimist", + "rawSpec": "0.0.8", + "saveSpec": null, + "fetchSpec": "0.0.8" + }, + "_requiredBy": [ + "/mkdirp" + ], + "_resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", + "_spec": "0.0.8", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "bugs": { + "url": "https://github.com/substack/minimist/issues" + }, + "description": "parse argument options", + "devDependencies": { + "tap": "~0.4.0", + "tape": "~1.0.4" + }, + "homepage": "https://github.com/substack/minimist", + "keywords": [ + "argv", + "getopt", + "parser", + "optimist" + ], + "license": "MIT", + "main": "index.js", + "name": "minimist", + "repository": { + "type": "git", + "url": "git://github.com/substack/minimist.git" + }, + "scripts": { + "test": "tap test/*.js" + }, + "testling": { + "files": "test/*.js", + "browsers": [ + "ie/6..latest", + "ff/5", + "firefox/latest", + "chrome/10", + "chrome/latest", + "safari/5.1", + "safari/latest", + "opera/12" + ] + }, + "version": "0.0.8" +} diff --git a/node_modules/mkdirp/package.json b/node_modules/mkdirp/package.json new file mode 100644 index 000000000..720128b85 --- /dev/null +++ b/node_modules/mkdirp/package.json @@ -0,0 +1,68 @@ +{ + "_args": [ + [ + "mkdirp@0.5.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "mkdirp@0.5.1", + "_id": "mkdirp@0.5.1", + "_inBundle": false, + "_integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", + "_location": "/mkdirp", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "mkdirp@0.5.1", + "name": "mkdirp", + "escapedName": "mkdirp", + "rawSpec": "0.5.1", + "saveSpec": null, + "fetchSpec": "0.5.1" + }, + "_requiredBy": [ + "/jest-snapshot", + "/jest-util", + "/ts-jest" + ], + "_resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", + "_spec": "0.5.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "bin": { + "mkdirp": "bin/cmd.js" + }, + "bugs": { + "url": "https://github.com/substack/node-mkdirp/issues" + }, + "dependencies": { + "minimist": "0.0.8" + }, + "description": "Recursively mkdir, like `mkdir -p`", + "devDependencies": { + "mock-fs": "2 >=2.7.0", + "tap": "1" + }, + "homepage": "https://github.com/substack/node-mkdirp#readme", + "keywords": [ + "mkdir", + "directory" + ], + "license": "MIT", + "main": "index.js", + "name": "mkdirp", + "repository": { + "type": "git", + "url": "git+https://github.com/substack/node-mkdirp.git" + }, + "scripts": { + "test": "tap test/*.js" + }, + "version": "0.5.1" +} diff --git a/node_modules/ms/package.json b/node_modules/ms/package.json new file mode 100644 index 000000000..8def93c64 --- /dev/null +++ b/node_modules/ms/package.json @@ -0,0 +1,73 @@ +{ + "_args": [ + [ + "ms@2.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "ms@2.0.0", + "_id": "ms@2.0.0", + "_inBundle": false, + "_integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "_location": "/ms", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "ms@2.0.0", + "name": "ms", + "escapedName": "ms", + "rawSpec": "2.0.0", + "saveSpec": null, + "fetchSpec": "2.0.0" + }, + "_requiredBy": [ + "/debug" + ], + "_resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "_spec": "2.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/zeit/ms/issues" + }, + "description": "Tiny milisecond conversion utility", + "devDependencies": { + "eslint": "3.19.0", + "expect.js": "0.3.1", + "husky": "0.13.3", + "lint-staged": "3.4.1", + "mocha": "3.4.1" + }, + "eslintConfig": { + "extends": "eslint:recommended", + "env": { + "node": true, + "es6": true + } + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/zeit/ms#readme", + "license": "MIT", + "lint-staged": { + "*.js": [ + "npm run lint", + "prettier --single-quote --write", + "git add" + ] + }, + "main": "./index", + "name": "ms", + "repository": { + "type": "git", + "url": "git+https://github.com/zeit/ms.git" + }, + "scripts": { + "lint": "eslint lib/* bin/*", + "precommit": "lint-staged", + "test": "mocha tests.js" + }, + "version": "2.0.0" +} diff --git a/node_modules/nanomatch/package.json b/node_modules/nanomatch/package.json new file mode 100644 index 000000000..4a274c611 --- /dev/null +++ b/node_modules/nanomatch/package.json @@ -0,0 +1,175 @@ +{ + "_args": [ + [ + "nanomatch@1.2.13", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "nanomatch@1.2.13", + "_id": "nanomatch@1.2.13", + "_inBundle": false, + "_integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "_location": "/nanomatch", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "nanomatch@1.2.13", + "name": "nanomatch", + "escapedName": "nanomatch", + "rawSpec": "1.2.13", + "saveSpec": null, + "fetchSpec": "1.2.13" + }, + "_requiredBy": [ + "/micromatch" + ], + "_resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "_spec": "1.2.13", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/micromatch/nanomatch/issues" + }, + "contributors": [ + { + "name": "Devon Govett", + "url": "http://badassjs.com" + }, + { + "name": "Jon Schlinkert", + "url": "http://twitter.com/jonschlinkert" + } + ], + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "description": "Fast, minimal glob matcher for node.js. Similar to micromatch, minimatch and multimatch, but complete Bash 4.3 wildcard support only (no support for exglobs, posix brackets or braces)", + "devDependencies": { + "bash-match": "^1.0.2", + "for-own": "^1.0.0", + "gulp": "^3.9.1", + "gulp-format-md": "^1.0.0", + "gulp-istanbul": "^1.1.3", + "gulp-mocha": "^5.0.0", + "helper-changelog": "^0.3.0", + "minimatch": "^3.0.4", + "minimist": "^1.2.0", + "mocha": "^3.5.3", + "multimatch": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js", + "lib" + ], + "homepage": "https://github.com/micromatch/nanomatch", + "keywords": [ + "bash", + "expand", + "expansion", + "expression", + "file", + "files", + "filter", + "find", + "glob", + "globbing", + "globs", + "globstar", + "match", + "matcher", + "matches", + "matching", + "micromatch", + "minimatch", + "multimatch", + "nanomatch", + "path", + "pattern", + "patterns", + "regex", + "regexp", + "regular", + "shell", + "wildcard" + ], + "license": "MIT", + "lintDeps": { + "dependencies": { + "options": { + "lock": { + "snapdragon": "^0.8.1" + } + } + }, + "devDependencies": { + "files": { + "options": { + "ignore": [ + "benchmark/**" + ] + } + } + } + }, + "main": "index.js", + "name": "nanomatch", + "repository": { + "type": "git", + "url": "git+https://github.com/micromatch/nanomatch.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "toc": "collapsible", + "layout": "default", + "tasks": [ + "readme" + ], + "helpers": [ + "helper-changelog" + ], + "plugins": [ + "gulp-format-md" + ], + "related": { + "list": [ + "extglob", + "is-extglob", + "is-glob", + "micromatch" + ] + }, + "reflinks": [ + "expand-brackets", + "expand-tilde", + "glob-object", + "micromatch", + "minimatch", + "options", + "snapdragon" + ], + "lint": { + "reflinks": true + } + }, + "version": "1.2.13" +} diff --git a/node_modules/natural-compare/package.json b/node_modules/natural-compare/package.json new file mode 100644 index 000000000..4d94813f2 --- /dev/null +++ b/node_modules/natural-compare/package.json @@ -0,0 +1,77 @@ +{ + "_args": [ + [ + "natural-compare@1.4.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "natural-compare@1.4.0", + "_id": "natural-compare@1.4.0", + "_inBundle": false, + "_integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", + "_location": "/natural-compare", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "natural-compare@1.4.0", + "name": "natural-compare", + "escapedName": "natural-compare", + "rawSpec": "1.4.0", + "saveSpec": null, + "fetchSpec": "1.4.0" + }, + "_requiredBy": [ + "/jest-snapshot" + ], + "_resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "_spec": "1.4.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Lauri Rooden", + "url": "https://github.com/litejs/natural-compare-lite" + }, + "bugs": { + "url": "https://github.com/litejs/natural-compare-lite/issues" + }, + "buildman": { + "dist/index-min.js": { + "banner": "/*! litejs.com/MIT-LICENSE.txt */", + "input": "index.js" + } + }, + "description": "Compare strings containing a mix of letters and numbers in the way a human being would in sort order.", + "devDependencies": { + "buildman": "*", + "testman": "*" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/litejs/natural-compare-lite#readme", + "keywords": [ + "string", + "natural", + "order", + "sort", + "natsort", + "natcmp", + "compare", + "alphanum", + "litejs" + ], + "license": "MIT", + "main": "index.js", + "name": "natural-compare", + "repository": { + "type": "git", + "url": "git://github.com/litejs/natural-compare-lite.git" + }, + "scripts": { + "build": "node node_modules/buildman/index.js --all", + "test": "node tests/index.js" + }, + "stability": 3, + "version": "1.4.0" +} diff --git a/node_modules/neo-async/package.json b/node_modules/neo-async/package.json new file mode 100644 index 000000000..31820dbc4 --- /dev/null +++ b/node_modules/neo-async/package.json @@ -0,0 +1,90 @@ +{ + "_args": [ + [ + "neo-async@2.6.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "neo-async@2.6.1", + "_id": "neo-async@2.6.1", + "_inBundle": false, + "_integrity": "sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw==", + "_location": "/neo-async", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "neo-async@2.6.1", + "name": "neo-async", + "escapedName": "neo-async", + "rawSpec": "2.6.1", + "saveSpec": null, + "fetchSpec": "2.6.1" + }, + "_requiredBy": [ + "/handlebars" + ], + "_resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.1.tgz", + "_spec": "2.6.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "browser": "async.min.js", + "bugs": { + "url": "https://github.com/suguru03/neo-async/issues" + }, + "dependencies": {}, + "description": "Neo-Async is thought to be used as a drop-in replacement for Async, it almost fully covers its functionality and runs faster ", + "devDependencies": { + "aigle": "^1.8.1", + "async": "^2.6.0", + "benchmark": "^2.1.1", + "bluebird": "^3.5.1", + "codecov.io": "^0.1.6", + "fs-extra": "^4.0.2", + "func-comparator": "^0.7.2", + "gulp": "^3.9.1", + "gulp-bump": "^2.8.0", + "gulp-exit": "0.0.2", + "gulp-git": "^2.4.2", + "gulp-jscs": "^4.0.0", + "gulp-mocha": "^4.2.0", + "gulp-tag-version": "^1.3.0", + "gulp-util": "^3.0.7", + "husky": "^1.2.0", + "istanbul": "^0.4.3", + "jsdoc": "^3.5.5", + "jshint": "^2.9.5", + "lint-staged": "^8.1.0", + "lodash": "^4.16.6", + "minimist": "^1.2.0", + "mocha": "^3.5.3", + "mocha-parallel-executor": "^0.3.0", + "mocha.parallel": "^0.15.3", + "prettier": "^1.15.2", + "require-dir": "^0.3.0", + "run-sequence": "^1.2.2" + }, + "homepage": "https://github.com/suguru03/neo-async", + "keywords": [ + "async", + "util" + ], + "license": "MIT", + "lint-staged": { + "*.{js,ts}": [ + "prettier --write", + "git add" + ] + }, + "main": "async.js", + "name": "neo-async", + "prettier": { + "printWidth": 100, + "singleQuote": true + }, + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/suguru03/neo-async.git" + }, + "version": "2.6.1" +} diff --git a/node_modules/nice-try/package.json b/node_modules/nice-try/package.json new file mode 100644 index 000000000..8b6bd26d1 --- /dev/null +++ b/node_modules/nice-try/package.json @@ -0,0 +1,65 @@ +{ + "_args": [ + [ + "nice-try@1.0.5", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "nice-try@1.0.5", + "_id": "nice-try@1.0.5", + "_inBundle": false, + "_integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "_location": "/nice-try", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "nice-try@1.0.5", + "name": "nice-try", + "escapedName": "nice-try", + "rawSpec": "1.0.5", + "saveSpec": null, + "fetchSpec": "1.0.5" + }, + "_requiredBy": [ + "/cross-spawn" + ], + "_resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "_spec": "1.0.5", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "authors": [ + "Tobias Reich " + ], + "bugs": { + "url": "https://github.com/electerious/nice-try/issues" + }, + "description": "Tries to execute a function and discards any error that occurs", + "devDependencies": { + "chai": "^4.1.2", + "coveralls": "^3.0.0", + "mocha": "^5.1.1", + "nyc": "^12.0.1" + }, + "files": [ + "src" + ], + "homepage": "https://github.com/electerious/nice-try", + "keywords": [ + "try", + "catch", + "error" + ], + "license": "MIT", + "main": "src/index.js", + "name": "nice-try", + "repository": { + "type": "git", + "url": "git+https://github.com/electerious/nice-try.git" + }, + "scripts": { + "coveralls": "nyc report --reporter=text-lcov | coveralls", + "test": "nyc node_modules/mocha/bin/_mocha" + }, + "version": "1.0.5" +} diff --git a/node_modules/node-int64/package.json b/node_modules/node-int64/package.json new file mode 100644 index 000000000..21e787a40 --- /dev/null +++ b/node_modules/node-int64/package.json @@ -0,0 +1,63 @@ +{ + "_args": [ + [ + "node-int64@0.4.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "node-int64@0.4.0", + "_id": "node-int64@0.4.0", + "_inBundle": false, + "_integrity": "sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=", + "_location": "/node-int64", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "node-int64@0.4.0", + "name": "node-int64", + "escapedName": "node-int64", + "rawSpec": "0.4.0", + "saveSpec": null, + "fetchSpec": "0.4.0" + }, + "_requiredBy": [ + "/bser" + ], + "_resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "_spec": "0.4.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Robert Kieffer", + "email": "robert@broofa.com" + }, + "bugs": { + "url": "https://github.com/broofa/node-int64/issues" + }, + "contributors": [], + "dependencies": {}, + "description": "Support for representing 64-bit integers in JavaScript", + "devDependencies": { + "nodeunit": "^0.9.0" + }, + "homepage": "https://github.com/broofa/node-int64#readme", + "keywords": [ + "math", + "integer", + "int64" + ], + "lib": ".", + "license": "MIT", + "main": "./Int64.js", + "name": "node-int64", + "repository": { + "type": "git", + "url": "git+https://github.com/broofa/node-int64.git" + }, + "scripts": { + "test": "nodeunit test.js" + }, + "url": "http://github.com/broofa/node-int64", + "version": "0.4.0" +} diff --git a/node_modules/node-modules-regexp/package.json b/node_modules/node-modules-regexp/package.json new file mode 100644 index 000000000..144da1fc8 --- /dev/null +++ b/node_modules/node-modules-regexp/package.json @@ -0,0 +1,80 @@ +{ + "_args": [ + [ + "node-modules-regexp@1.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "node-modules-regexp@1.0.0", + "_id": "node-modules-regexp@1.0.0", + "_inBundle": false, + "_integrity": "sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=", + "_location": "/node-modules-regexp", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "node-modules-regexp@1.0.0", + "name": "node-modules-regexp", + "escapedName": "node-modules-regexp", + "rawSpec": "1.0.0", + "saveSpec": null, + "fetchSpec": "1.0.0" + }, + "_requiredBy": [ + "/pirates" + ], + "_resolved": "https://registry.npmjs.org/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz", + "_spec": "1.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "James Talmage", + "email": "james@talmage.io", + "url": "github.com/jamestalmage" + }, + "bugs": { + "url": "https://github.com/jamestalmage/node-modules-regexp/issues" + }, + "dependencies": {}, + "description": "A regular expression for file paths that contain a `node_modules` folder.", + "devDependencies": { + "ava": "^0.7.0", + "xo": "^0.11.2" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jamestalmage/node-modules-regexp#readme", + "keywords": [ + "node_modules", + "regular expression", + "regular expressions", + "regular", + "expression", + "expressions", + "exclude", + "include", + "ignore", + "node", + "module" + ], + "license": "MIT", + "name": "node-modules-regexp", + "repository": { + "type": "git", + "url": "git+https://github.com/jamestalmage/node-modules-regexp.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "1.0.0", + "xo": { + "ignores": [ + "test.js" + ] + } +} diff --git a/node_modules/node-notifier/node_modules/semver/package.json b/node_modules/node-notifier/node_modules/semver/package.json new file mode 100644 index 000000000..29f0fc053 --- /dev/null +++ b/node_modules/node-notifier/node_modules/semver/package.json @@ -0,0 +1,64 @@ +{ + "_args": [ + [ + "semver@5.7.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "semver@5.7.0", + "_id": "semver@5.7.0", + "_inBundle": false, + "_integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", + "_location": "/node-notifier/semver", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "semver@5.7.0", + "name": "semver", + "escapedName": "semver", + "rawSpec": "5.7.0", + "saveSpec": null, + "fetchSpec": "5.7.0" + }, + "_requiredBy": [ + "/node-notifier" + ], + "_resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", + "_spec": "5.7.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bin": { + "semver": "./bin/semver" + }, + "bugs": { + "url": "https://github.com/npm/node-semver/issues" + }, + "description": "The semantic version parser used by npm.", + "devDependencies": { + "tap": "^13.0.0-rc.18" + }, + "files": [ + "bin", + "range.bnf", + "semver.js" + ], + "homepage": "https://github.com/npm/node-semver#readme", + "license": "ISC", + "main": "semver.js", + "name": "semver", + "repository": { + "type": "git", + "url": "git+https://github.com/npm/node-semver.git" + }, + "scripts": { + "postpublish": "git push origin --all; git push origin --tags", + "postversion": "npm publish", + "preversion": "npm test", + "test": "tap" + }, + "tap": { + "check-coverage": true + }, + "version": "5.7.0" +} diff --git a/node_modules/node-notifier/package.json b/node_modules/node-notifier/package.json new file mode 100644 index 000000000..70cc76620 --- /dev/null +++ b/node_modules/node-notifier/package.json @@ -0,0 +1,103 @@ +{ + "_args": [ + [ + "node-notifier@5.4.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "node-notifier@5.4.0", + "_id": "node-notifier@5.4.0", + "_inBundle": false, + "_integrity": "sha512-SUDEb+o71XR5lXSTyivXd9J7fCloE3SyP4lSgt3lU2oSANiox+SxlNRGPjDKrwU1YN3ix2KN/VGGCg0t01rttQ==", + "_location": "/node-notifier", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "node-notifier@5.4.0", + "name": "node-notifier", + "escapedName": "node-notifier", + "rawSpec": "5.4.0", + "saveSpec": null, + "fetchSpec": "5.4.0" + }, + "_requiredBy": [ + "/@jest/reporters" + ], + "_resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-5.4.0.tgz", + "_spec": "5.4.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Mikael Brevik" + }, + "bugs": { + "url": "https://github.com/mikaelbr/node-notifier/issues" + }, + "dependencies": { + "growly": "^1.3.0", + "is-wsl": "^1.1.0", + "semver": "^5.5.0", + "shellwords": "^0.1.1", + "which": "^1.3.0" + }, + "description": "A Node.js module for sending notifications on native Mac, Windows (post and pre 8) and Linux (or Growl as fallback)", + "devDependencies": { + "eslint": "^5.12.1", + "eslint-config-semistandard": "^13.0.0", + "eslint-config-standard": "^12.0.0", + "eslint-plugin-import": "^2.15.0", + "eslint-plugin-node": "^8.0.1", + "eslint-plugin-promise": "^4.0.1", + "eslint-plugin-standard": "^4.0.0", + "husky": "^1.3.1", + "jest": "^23.2.0", + "lint-staged": "^8.1.0", + "prettier": "^1.12.1" + }, + "directories": { + "example": "example", + "test": "test" + }, + "homepage": "https://github.com/mikaelbr/node-notifier#readme", + "jest": { + "testRegex": "/test/[^_]*.js", + "testEnvironment": "node", + "setupTestFrameworkScriptFile": "./test/_test-matchers.js" + }, + "keywords": [ + "notification center", + "mac os x 10.8", + "notify", + "terminal-notifier", + "notify-send", + "growl", + "windows 8 notification", + "toaster", + "notification" + ], + "license": "MIT", + "lint-staged": { + "*.{js,json,css,md}": [ + "prettier --write", + "git add" + ] + }, + "main": "index.js", + "name": "node-notifier", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/mikaelbr/node-notifier.git" + }, + "scripts": { + "example": "node ./example/message.js", + "example:mac": "node ./example/advanced.js", + "example:mac:input": "node ./example/macInput.js", + "example:windows": "node ./example/toaster.js", + "lint": "eslint example/*.js lib/*.js notifiers/*.js test/**/*.js index.js", + "precommit": "lint-staged", + "pretest": "npm run lint", + "test": "jest" + }, + "version": "5.4.0" +} diff --git a/node_modules/normalize-package-data/node_modules/semver/package.json b/node_modules/normalize-package-data/node_modules/semver/package.json new file mode 100644 index 000000000..e6b94e7f2 --- /dev/null +++ b/node_modules/normalize-package-data/node_modules/semver/package.json @@ -0,0 +1,64 @@ +{ + "_args": [ + [ + "semver@5.7.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "semver@5.7.0", + "_id": "semver@5.7.0", + "_inBundle": false, + "_integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", + "_location": "/normalize-package-data/semver", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "semver@5.7.0", + "name": "semver", + "escapedName": "semver", + "rawSpec": "5.7.0", + "saveSpec": null, + "fetchSpec": "5.7.0" + }, + "_requiredBy": [ + "/normalize-package-data" + ], + "_resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", + "_spec": "5.7.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bin": { + "semver": "./bin/semver" + }, + "bugs": { + "url": "https://github.com/npm/node-semver/issues" + }, + "description": "The semantic version parser used by npm.", + "devDependencies": { + "tap": "^13.0.0-rc.18" + }, + "files": [ + "bin", + "range.bnf", + "semver.js" + ], + "homepage": "https://github.com/npm/node-semver#readme", + "license": "ISC", + "main": "semver.js", + "name": "semver", + "repository": { + "type": "git", + "url": "git+https://github.com/npm/node-semver.git" + }, + "scripts": { + "postpublish": "git push origin --all; git push origin --tags", + "postversion": "npm publish", + "preversion": "npm test", + "test": "tap" + }, + "tap": { + "check-coverage": true + }, + "version": "5.7.0" +} diff --git a/node_modules/normalize-package-data/package.json b/node_modules/normalize-package-data/package.json new file mode 100644 index 000000000..049c94bc7 --- /dev/null +++ b/node_modules/normalize-package-data/package.json @@ -0,0 +1,82 @@ +{ + "_args": [ + [ + "normalize-package-data@2.5.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "normalize-package-data@2.5.0", + "_id": "normalize-package-data@2.5.0", + "_inBundle": false, + "_integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "_location": "/normalize-package-data", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "normalize-package-data@2.5.0", + "name": "normalize-package-data", + "escapedName": "normalize-package-data", + "rawSpec": "2.5.0", + "saveSpec": null, + "fetchSpec": "2.5.0" + }, + "_requiredBy": [ + "/read-pkg", + "/read-pkg-up/read-pkg" + ], + "_resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "_spec": "2.5.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Meryn Stol", + "email": "merynstol@gmail.com" + }, + "bugs": { + "url": "https://github.com/npm/normalize-package-data/issues" + }, + "contributors": [ + { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + { + "name": "Meryn Stol", + "email": "merynstol@gmail.com" + }, + { + "name": "Robert Kowalski", + "email": "rok@kowalski.gd" + } + ], + "dependencies": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + }, + "description": "Normalizes data that can be found in package.json files.", + "devDependencies": { + "async": "^2.6.1", + "tap": "^12.4.0", + "underscore": "^1.8.3" + }, + "files": [ + "lib/*.js", + "lib/*.json", + "AUTHORS" + ], + "homepage": "https://github.com/npm/normalize-package-data#readme", + "license": "BSD-2-Clause", + "main": "lib/normalize.js", + "name": "normalize-package-data", + "repository": { + "type": "git", + "url": "git://github.com/npm/normalize-package-data.git" + }, + "scripts": { + "test": "tap test/*.js" + }, + "version": "2.5.0" +} diff --git a/node_modules/normalize-path/package.json b/node_modules/normalize-path/package.json new file mode 100644 index 000000000..2ac096732 --- /dev/null +++ b/node_modules/normalize-path/package.json @@ -0,0 +1,121 @@ +{ + "_args": [ + [ + "normalize-path@2.1.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "normalize-path@2.1.1", + "_id": "normalize-path@2.1.1", + "_inBundle": false, + "_integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "_location": "/normalize-path", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "normalize-path@2.1.1", + "name": "normalize-path", + "escapedName": "normalize-path", + "rawSpec": "2.1.1", + "saveSpec": null, + "fetchSpec": "2.1.1" + }, + "_requiredBy": [ + "/anymatch" + ], + "_resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "_spec": "2.1.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/normalize-path/issues" + }, + "contributors": [ + { + "name": "Blaine Bublitz", + "email": "blaine.bublitz@gmail.com", + "url": "https://twitter.com/BlaineBublitz" + }, + { + "name": "Jon Schlinkert", + "email": "jon.schlinkert@sellside.com", + "url": "http://twitter.com/jonschlinkert" + } + ], + "dependencies": { + "remove-trailing-separator": "^1.0.1" + }, + "description": "Normalize file path slashes to be unix-like forward slashes. Also condenses repeat slashes to a single slash and removes and trailing slashes unless disabled.", + "devDependencies": { + "benchmarked": "^0.1.1", + "gulp-format-md": "^0.1.11", + "minimist": "^1.2.0", + "mocha": "*" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/normalize-path", + "keywords": [ + "backslash", + "file", + "filepath", + "fix", + "forward", + "fp", + "fs", + "normalize", + "path", + "slash", + "slashes", + "trailing", + "unix", + "urix" + ], + "license": "MIT", + "main": "index.js", + "name": "normalize-path", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/normalize-path.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "related": { + "list": [ + "contains-path", + "ends-with", + "is-absolute", + "is-relative", + "parse-filepath", + "path-ends-with", + "path-segments", + "rewrite-ext", + "unixify" + ], + "description": "Other useful libraries for working with paths in node.js:" + }, + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "lint": { + "reflinks": true + } + }, + "version": "2.1.1" +} diff --git a/node_modules/npm-run-path/package.json b/node_modules/npm-run-path/package.json new file mode 100644 index 000000000..f5dc69d9f --- /dev/null +++ b/node_modules/npm-run-path/package.json @@ -0,0 +1,81 @@ +{ + "_args": [ + [ + "npm-run-path@2.0.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "npm-run-path@2.0.2", + "_id": "npm-run-path@2.0.2", + "_inBundle": false, + "_integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "_location": "/npm-run-path", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "npm-run-path@2.0.2", + "name": "npm-run-path", + "escapedName": "npm-run-path", + "rawSpec": "2.0.2", + "saveSpec": null, + "fetchSpec": "2.0.2" + }, + "_requiredBy": [ + "/execa" + ], + "_resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "_spec": "2.0.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/npm-run-path/issues" + }, + "dependencies": { + "path-key": "^2.0.0" + }, + "description": "Get your PATH prepended with locally installed binaries", + "devDependencies": { + "ava": "*", + "xo": "*" + }, + "engines": { + "node": ">=4" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/npm-run-path#readme", + "keywords": [ + "npm", + "run", + "path", + "package", + "bin", + "binary", + "binaries", + "script", + "cli", + "command-line", + "execute", + "executable" + ], + "license": "MIT", + "name": "npm-run-path", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/npm-run-path.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "2.0.2", + "xo": { + "esnext": true + } +} diff --git a/node_modules/number-is-nan/package.json b/node_modules/number-is-nan/package.json new file mode 100644 index 000000000..5fa01ac8f --- /dev/null +++ b/node_modules/number-is-nan/package.json @@ -0,0 +1,71 @@ +{ + "_args": [ + [ + "number-is-nan@1.0.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "number-is-nan@1.0.1", + "_id": "number-is-nan@1.0.1", + "_inBundle": false, + "_integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", + "_location": "/number-is-nan", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "number-is-nan@1.0.1", + "name": "number-is-nan", + "escapedName": "number-is-nan", + "rawSpec": "1.0.1", + "saveSpec": null, + "fetchSpec": "1.0.1" + }, + "_requiredBy": [ + "/wrap-ansi/is-fullwidth-code-point" + ], + "_resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", + "_spec": "1.0.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/number-is-nan/issues" + }, + "description": "ES2015 Number.isNaN() ponyfill", + "devDependencies": { + "ava": "*" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/number-is-nan#readme", + "keywords": [ + "es2015", + "ecmascript", + "ponyfill", + "polyfill", + "shim", + "number", + "is", + "nan", + "not" + ], + "license": "MIT", + "name": "number-is-nan", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/number-is-nan.git" + }, + "scripts": { + "test": "ava" + }, + "version": "1.0.1" +} diff --git a/node_modules/nwsapi/package.json b/node_modules/nwsapi/package.json new file mode 100644 index 000000000..3feb65738 --- /dev/null +++ b/node_modules/nwsapi/package.json @@ -0,0 +1,72 @@ +{ + "_args": [ + [ + "nwsapi@2.1.4", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "nwsapi@2.1.4", + "_id": "nwsapi@2.1.4", + "_inBundle": false, + "_integrity": "sha512-iGfd9Y6SFdTNldEy2L0GUhcarIutFmk+MPWIn9dmj8NMIup03G08uUF2KGbbmv/Ux4RT0VZJoP/sVbWA6d/VIw==", + "_location": "/nwsapi", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "nwsapi@2.1.4", + "name": "nwsapi", + "escapedName": "nwsapi", + "rawSpec": "2.1.4", + "saveSpec": null, + "fetchSpec": "2.1.4" + }, + "_requiredBy": [ + "/jsdom" + ], + "_resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.1.4.tgz", + "_spec": "2.1.4", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Diego Perini", + "email": "diego.perini@gmail.com", + "url": "http://www.iport.it/" + }, + "bugs": { + "url": "http://github.com/dperini/nwsapi/issues" + }, + "description": "Fast CSS Selectors API Engine", + "homepage": "http://javascript.nwbox.com/nwsapi/", + "keywords": [ + "css", + "css3", + "css4", + "matcher", + "selector" + ], + "license": "MIT", + "licenses": [ + { + "type": "MIT", + "url": "http://javascript.nwbox.com/nwsapi/MIT-LICENSE" + } + ], + "main": "./src/nwsapi", + "maintainers": [ + { + "name": "Diego Perini", + "email": "diego.perini@gmail.com", + "url": "http://www.iport.it/" + } + ], + "name": "nwsapi", + "repository": { + "type": "git", + "url": "git://github.com/dperini/nwsapi.git" + }, + "scripts": { + "lint": "eslint ./src/nwsapi.js" + }, + "version": "2.1.4" +} diff --git a/node_modules/oauth-sign/package.json b/node_modules/oauth-sign/package.json new file mode 100644 index 000000000..5d39f592a --- /dev/null +++ b/node_modules/oauth-sign/package.json @@ -0,0 +1,60 @@ +{ + "_args": [ + [ + "oauth-sign@0.9.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "oauth-sign@0.9.0", + "_id": "oauth-sign@0.9.0", + "_inBundle": false, + "_integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", + "_location": "/oauth-sign", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "oauth-sign@0.9.0", + "name": "oauth-sign", + "escapedName": "oauth-sign", + "rawSpec": "0.9.0", + "saveSpec": null, + "fetchSpec": "0.9.0" + }, + "_requiredBy": [ + "/request" + ], + "_resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", + "_spec": "0.9.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Mikeal Rogers", + "email": "mikeal.rogers@gmail.com", + "url": "http://www.futurealoof.com" + }, + "bugs": { + "url": "https://github.com/mikeal/oauth-sign/issues" + }, + "dependencies": {}, + "description": "OAuth 1 signing. Formerly a vendor lib in mikeal/request, now a standalone module.", + "devDependencies": {}, + "engines": { + "node": "*" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/mikeal/oauth-sign#readme", + "license": "Apache-2.0", + "main": "index.js", + "name": "oauth-sign", + "optionalDependencies": {}, + "repository": { + "url": "git+https://github.com/mikeal/oauth-sign.git" + }, + "scripts": { + "test": "node test.js" + }, + "version": "0.9.0" +} diff --git a/node_modules/object-copy/node_modules/define-property/package.json b/node_modules/object-copy/node_modules/define-property/package.json new file mode 100644 index 000000000..cb64f81cb --- /dev/null +++ b/node_modules/object-copy/node_modules/define-property/package.json @@ -0,0 +1,86 @@ +{ + "_args": [ + [ + "define-property@0.2.5", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "define-property@0.2.5", + "_id": "define-property@0.2.5", + "_inBundle": false, + "_integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "_location": "/object-copy/define-property", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "define-property@0.2.5", + "name": "define-property", + "escapedName": "define-property", + "rawSpec": "0.2.5", + "saveSpec": null, + "fetchSpec": "0.2.5" + }, + "_requiredBy": [ + "/object-copy" + ], + "_resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "_spec": "0.2.5", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/define-property/issues" + }, + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "description": "Define a non-enumerable property on an object.", + "devDependencies": { + "mocha": "*", + "should": "^7.0.4" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/define-property", + "keywords": [ + "define", + "define-property", + "enumerable", + "key", + "non", + "non-enumerable", + "object", + "prop", + "property", + "value" + ], + "license": "MIT", + "main": "index.js", + "name": "define-property", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/define-property.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "related": { + "list": [ + "mixin-deep", + "mixin-object", + "delegate-object", + "forward-object" + ] + } + }, + "version": "0.2.5" +} diff --git a/node_modules/object-copy/node_modules/kind-of/package.json b/node_modules/object-copy/node_modules/kind-of/package.json new file mode 100644 index 000000000..78672e532 --- /dev/null +++ b/node_modules/object-copy/node_modules/kind-of/package.json @@ -0,0 +1,143 @@ +{ + "_args": [ + [ + "kind-of@3.2.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "kind-of@3.2.2", + "_id": "kind-of@3.2.2", + "_inBundle": false, + "_integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "_location": "/object-copy/kind-of", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "kind-of@3.2.2", + "name": "kind-of", + "escapedName": "kind-of", + "rawSpec": "3.2.2", + "saveSpec": null, + "fetchSpec": "3.2.2" + }, + "_requiredBy": [ + "/object-copy" + ], + "_resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "_spec": "3.2.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/kind-of/issues" + }, + "contributors": [ + { + "name": "David Fox-Powell", + "url": "https://dtothefp.github.io/me" + }, + { + "name": "Jon Schlinkert", + "url": "http://twitter.com/jonschlinkert" + }, + { + "name": "Ken Sheedlo", + "url": "kensheedlo.com" + }, + { + "name": "laggingreflex", + "url": "https://github.com/laggingreflex" + }, + { + "name": "Miguel Mota", + "url": "https://miguelmota.com" + }, + { + "name": "Peter deHaan", + "url": "http://about.me/peterdehaan" + } + ], + "dependencies": { + "is-buffer": "^1.1.5" + }, + "description": "Get the native type of a value.", + "devDependencies": { + "ansi-bold": "^0.1.1", + "benchmarked": "^1.0.0", + "browserify": "^14.3.0", + "glob": "^7.1.1", + "gulp-format-md": "^0.1.12", + "mocha": "^3.3.0", + "type-of": "^2.0.1", + "typeof": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/kind-of", + "keywords": [ + "arguments", + "array", + "boolean", + "check", + "date", + "function", + "is", + "is-type", + "is-type-of", + "kind", + "kind-of", + "number", + "object", + "of", + "regexp", + "string", + "test", + "type", + "type-of", + "typeof", + "types" + ], + "license": "MIT", + "main": "index.js", + "name": "kind-of", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/kind-of.git" + }, + "scripts": { + "prepublish": "browserify -o browser.js -e index.js -s index --bare", + "test": "mocha" + }, + "verb": { + "related": { + "list": [ + "is-glob", + "is-number", + "is-primitive" + ] + }, + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "lint": { + "reflinks": true + }, + "reflinks": [ + "verb" + ] + }, + "version": "3.2.2" +} diff --git a/node_modules/object-copy/package.json b/node_modules/object-copy/package.json new file mode 100644 index 000000000..47a1be5c9 --- /dev/null +++ b/node_modules/object-copy/package.json @@ -0,0 +1,85 @@ +{ + "_args": [ + [ + "object-copy@0.1.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "object-copy@0.1.0", + "_id": "object-copy@0.1.0", + "_inBundle": false, + "_integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", + "_location": "/object-copy", + "_phantomChildren": { + "is-buffer": "1.1.6", + "is-descriptor": "0.1.6" + }, + "_requested": { + "type": "version", + "registry": true, + "raw": "object-copy@0.1.0", + "name": "object-copy", + "escapedName": "object-copy", + "rawSpec": "0.1.0", + "saveSpec": null, + "fetchSpec": "0.1.0" + }, + "_requiredBy": [ + "/static-extend" + ], + "_resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "_spec": "0.1.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/object-copy/issues" + }, + "dependencies": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "description": "Copy static properties, prototype properties, and descriptors from one object to another.", + "devDependencies": { + "gulp-format-md": "*", + "mocha": "*" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/object-copy", + "keywords": [ + "copy", + "object" + ], + "license": "MIT", + "main": "index.js", + "name": "object-copy", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/object-copy.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "layout": "default", + "plugins": [ + "gulp-format-md" + ], + "related": { + "list": [] + }, + "reflinks": [ + "verb" + ] + }, + "version": "0.1.0" +} diff --git a/node_modules/object-keys/package.json b/node_modules/object-keys/package.json new file mode 100644 index 000000000..44f789eba --- /dev/null +++ b/node_modules/object-keys/package.json @@ -0,0 +1,122 @@ +{ + "_args": [ + [ + "object-keys@1.1.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "object-keys@1.1.1", + "_id": "object-keys@1.1.1", + "_inBundle": false, + "_integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "_location": "/object-keys", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "object-keys@1.1.1", + "name": "object-keys", + "escapedName": "object-keys", + "rawSpec": "1.1.1", + "saveSpec": null, + "fetchSpec": "1.1.1" + }, + "_requiredBy": [ + "/define-properties", + "/es-abstract" + ], + "_resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "_spec": "1.1.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jordan Harband", + "email": "ljharb@gmail.com", + "url": "http://ljharb.codes" + }, + "bugs": { + "url": "https://github.com/ljharb/object-keys/issues" + }, + "contributors": [ + { + "name": "Jordan Harband", + "email": "ljharb@gmail.com", + "url": "http://ljharb.codes" + }, + { + "name": "Raynos", + "email": "raynos2@gmail.com" + }, + { + "name": "Nathan Rajlich", + "email": "nathan@tootallnate.net" + }, + { + "name": "Ivan Starkov", + "email": "istarkov@gmail.com" + }, + { + "name": "Gary Katsevman", + "email": "git@gkatsev.com" + } + ], + "dependencies": {}, + "description": "An Object.keys replacement, in case Object.keys is not available. From https://github.com/es-shims/es5-shim", + "devDependencies": { + "@ljharb/eslint-config": "^13.1.1", + "covert": "^1.1.1", + "eslint": "^5.13.0", + "foreach": "^2.0.5", + "indexof": "^0.0.1", + "is": "^3.3.0", + "tape": "^4.9.2" + }, + "engines": { + "node": ">= 0.4" + }, + "homepage": "https://github.com/ljharb/object-keys#readme", + "keywords": [ + "Object.keys", + "keys", + "ES5", + "shim" + ], + "license": "MIT", + "main": "index.js", + "name": "object-keys", + "repository": { + "type": "git", + "url": "git://github.com/ljharb/object-keys.git" + }, + "scripts": { + "audit": "npm audit", + "coverage": "covert test/*.js", + "coverage-quiet": "covert test/*.js --quiet", + "lint": "eslint .", + "postaudit": "rm package-lock.json", + "posttest": "npm run --silent audit", + "preaudit": "npm install --package-lock --package-lock-only", + "pretest": "npm run --silent lint", + "test": "npm run --silent tests-only", + "tests-only": "node test/index.js" + }, + "testling": { + "files": "test/index.js", + "browsers": [ + "iexplore/6.0..latest", + "firefox/3.0..6.0", + "firefox/15.0..latest", + "firefox/nightly", + "chrome/4.0..10.0", + "chrome/20.0..latest", + "chrome/canary", + "opera/10.0..latest", + "opera/next", + "safari/4.0..latest", + "ipad/6.0..latest", + "iphone/6.0..latest", + "android-browser/4.2" + ] + }, + "version": "1.1.1" +} diff --git a/node_modules/object-visit/package.json b/node_modules/object-visit/package.json new file mode 100644 index 000000000..996320428 --- /dev/null +++ b/node_modules/object-visit/package.json @@ -0,0 +1,101 @@ +{ + "_args": [ + [ + "object-visit@1.0.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "object-visit@1.0.1", + "_id": "object-visit@1.0.1", + "_inBundle": false, + "_integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", + "_location": "/object-visit", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "object-visit@1.0.1", + "name": "object-visit", + "escapedName": "object-visit", + "rawSpec": "1.0.1", + "saveSpec": null, + "fetchSpec": "1.0.1" + }, + "_requiredBy": [ + "/collection-visit", + "/map-visit" + ], + "_resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "_spec": "1.0.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/object-visit/issues" + }, + "dependencies": { + "isobject": "^3.0.0" + }, + "description": "Call a specified method on each value in the given object.", + "devDependencies": { + "gulp": "^3.9.1", + "gulp-eslint": "^3.0.1", + "gulp-format-md": "^0.1.12", + "gulp-istanbul": "^1.1.1", + "gulp-mocha": "^3.0.0", + "mocha": "^3.2.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/object-visit", + "keywords": [ + "context", + "function", + "helper", + "key", + "method", + "object", + "value", + "visit", + "visitor" + ], + "license": "MIT", + "main": "index.js", + "name": "object-visit", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/object-visit.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "related": { + "list": [ + "base-methods", + "collection-visit", + "define-property", + "map-visit" + ] + }, + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "lint": { + "reflinks": true + } + }, + "version": "1.0.1" +} diff --git a/node_modules/object.getownpropertydescriptors/package.json b/node_modules/object.getownpropertydescriptors/package.json new file mode 100644 index 000000000..f4430a69f --- /dev/null +++ b/node_modules/object.getownpropertydescriptors/package.json @@ -0,0 +1,111 @@ +{ + "_args": [ + [ + "object.getownpropertydescriptors@2.0.3", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "object.getownpropertydescriptors@2.0.3", + "_id": "object.getownpropertydescriptors@2.0.3", + "_inBundle": false, + "_integrity": "sha1-h1jIRvW0B62rDyNuCYbxSwUcqhY=", + "_location": "/object.getownpropertydescriptors", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "object.getownpropertydescriptors@2.0.3", + "name": "object.getownpropertydescriptors", + "escapedName": "object.getownpropertydescriptors", + "rawSpec": "2.0.3", + "saveSpec": null, + "fetchSpec": "2.0.3" + }, + "_requiredBy": [ + "/util.promisify" + ], + "_resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz", + "_spec": "2.0.3", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jordan Harband" + }, + "bugs": { + "url": "https://github.com/ljharb/object.getownpropertydescriptors/issues" + }, + "dependencies": { + "define-properties": "^1.1.2", + "es-abstract": "^1.5.1" + }, + "description": "ES2017 spec-compliant shim for `Object.getOwnPropertyDescriptors` that works in ES5.", + "devDependencies": { + "@es-shims/api": "^1.2.0", + "@ljharb/eslint-config": "^6.0.0", + "covert": "^1.1.0", + "eslint": "^3.1.1", + "jscs": "^3.0.7", + "nsp": "^2.6.1", + "replace": "^0.3.0", + "semver": "^5.3.0", + "tape": "^4.6.0" + }, + "engines": { + "node": ">= 0.8" + }, + "homepage": "https://github.com/ljharb/object.getownpropertydescriptors#readme", + "keywords": [ + "Object.getOwnPropertyDescriptors", + "descriptor", + "property descriptor", + "ES8", + "ES2017", + "shim", + "polyfill", + "getOwnPropertyDescriptor", + "es-shim API" + ], + "license": "MIT", + "main": "index.js", + "name": "object.getownpropertydescriptors", + "repository": { + "type": "git", + "url": "git://github.com/ljharb/object.getownpropertydescriptors.git" + }, + "scripts": { + "coverage": "covert test/*.js", + "coverage:quiet": "covert test/*.js --quiet", + "eslint": "eslint test/*.js *.js", + "jscs": "jscs test/*.js *.js", + "lint": "npm run --silent jscs && npm run --silent eslint", + "posttest": "npm run --silent security", + "pretest": "npm run --silent lint && es-shim-api", + "security": "nsp check", + "test": "npm run --silent tests-only", + "test:module": "node test/index.js", + "test:shimmed": "node test/shimmed.js", + "tests-only": "npm run --silent test:shimmed && npm run --silent test:module" + }, + "testling": { + "files": [ + "test/index.js", + "test/shimmed.js" + ], + "browsers": [ + "iexplore/9.0..latest", + "firefox/4.0..6.0", + "firefox/15.0..latest", + "firefox/nightly", + "chrome/5.0..10.0", + "chrome/20.0..latest", + "chrome/canary", + "opera/12.0..latest", + "opera/next", + "safari/5.0..latest", + "ipad/6.0..latest", + "iphone/6.0..latest", + "android-browser/4.2" + ] + }, + "version": "2.0.3" +} diff --git a/node_modules/object.pick/package.json b/node_modules/object.pick/package.json new file mode 100644 index 000000000..ba22916d8 --- /dev/null +++ b/node_modules/object.pick/package.json @@ -0,0 +1,96 @@ +{ + "_args": [ + [ + "object.pick@1.3.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "object.pick@1.3.0", + "_id": "object.pick@1.3.0", + "_inBundle": false, + "_integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", + "_location": "/object.pick", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "object.pick@1.3.0", + "name": "object.pick", + "escapedName": "object.pick", + "rawSpec": "1.3.0", + "saveSpec": null, + "fetchSpec": "1.3.0" + }, + "_requiredBy": [ + "/micromatch", + "/nanomatch" + ], + "_resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "_spec": "1.3.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/object.pick/issues" + }, + "dependencies": { + "isobject": "^3.0.1" + }, + "description": "Returns a filtered copy of an object with only the specified keys, similar to `_.pick` from lodash / underscore.", + "devDependencies": { + "gulp-format-md": "^1.0.0", + "mocha": "^3.1.2", + "vinyl": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/object.pick", + "keywords": [ + "object", + "pick" + ], + "license": "MIT", + "main": "index.js", + "name": "object.pick", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/object.pick.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "run": true, + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "related": { + "list": [ + "extend-shallow", + "get-value", + "mixin-deep", + "set-value" + ], + "highlight": "object.omit" + }, + "reflinks": [ + "verb" + ], + "lint": { + "reflinks": true + } + }, + "version": "1.3.0" +} diff --git a/node_modules/once/package.json b/node_modules/once/package.json new file mode 100644 index 000000000..920aa691a --- /dev/null +++ b/node_modules/once/package.json @@ -0,0 +1,73 @@ +{ + "_args": [ + [ + "once@1.4.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "once@1.4.0", + "_id": "once@1.4.0", + "_inBundle": false, + "_integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "_location": "/once", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "once@1.4.0", + "name": "once", + "escapedName": "once", + "rawSpec": "1.4.0", + "saveSpec": null, + "fetchSpec": "1.4.0" + }, + "_requiredBy": [ + "/end-of-stream", + "/glob", + "/inflight", + "/pump" + ], + "_resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "_spec": "1.4.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me/" + }, + "bugs": { + "url": "https://github.com/isaacs/once/issues" + }, + "dependencies": { + "wrappy": "1" + }, + "description": "Run a function exactly one time", + "devDependencies": { + "tap": "^7.0.1" + }, + "directories": { + "test": "test" + }, + "files": [ + "once.js" + ], + "homepage": "https://github.com/isaacs/once#readme", + "keywords": [ + "once", + "function", + "one", + "single" + ], + "license": "ISC", + "main": "once.js", + "name": "once", + "repository": { + "type": "git", + "url": "git://github.com/isaacs/once.git" + }, + "scripts": { + "test": "tap test/*.js" + }, + "version": "1.4.0" +} diff --git a/node_modules/opencollective-postinstall/package.json b/node_modules/opencollective-postinstall/package.json new file mode 100644 index 000000000..528e844e8 --- /dev/null +++ b/node_modules/opencollective-postinstall/package.json @@ -0,0 +1,63 @@ +{ + "_args": [ + [ + "opencollective-postinstall@2.0.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "opencollective-postinstall@2.0.2", + "_id": "opencollective-postinstall@2.0.2", + "_inBundle": false, + "_integrity": "sha512-pVOEP16TrAO2/fjej1IdOyupJY8KDUM1CvsaScRbw6oddvpQoOfGk4ywha0HKKVAD6RkW4x6Q+tNBwhf3Bgpuw==", + "_location": "/opencollective-postinstall", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "opencollective-postinstall@2.0.2", + "name": "opencollective-postinstall", + "escapedName": "opencollective-postinstall", + "rawSpec": "2.0.2", + "saveSpec": null, + "fetchSpec": "2.0.2" + }, + "_requiredBy": [ + "/husky" + ], + "_resolved": "https://registry.npmjs.org/opencollective-postinstall/-/opencollective-postinstall-2.0.2.tgz", + "_spec": "2.0.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Xavier Damman", + "url": "@xdamman" + }, + "bin": { + "opencollective-postinstall": "index.js" + }, + "bugs": { + "url": "https://github.com/opencollective/opencollective-postinstall/issues" + }, + "description": "Lightweight npm postinstall message to invite people to donate to your collective", + "devDependencies": { + "jest": "^24.0.0" + }, + "homepage": "https://github.com/opencollective/opencollective-postinstall#readme", + "keywords": [ + "opencollective", + "donation", + "funding", + "sustain" + ], + "license": "MIT", + "main": "index.js", + "name": "opencollective-postinstall", + "repository": { + "type": "git", + "url": "git+https://github.com/opencollective/opencollective-postinstall.git" + }, + "scripts": { + "test": "jest" + }, + "version": "2.0.2" +} diff --git a/node_modules/optimist/node_modules/minimist/package.json b/node_modules/optimist/node_modules/minimist/package.json new file mode 100644 index 000000000..36333edd8 --- /dev/null +++ b/node_modules/optimist/node_modules/minimist/package.json @@ -0,0 +1,75 @@ +{ + "_args": [ + [ + "minimist@0.0.10", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "minimist@0.0.10", + "_id": "minimist@0.0.10", + "_inBundle": false, + "_integrity": "sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8=", + "_location": "/optimist/minimist", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "minimist@0.0.10", + "name": "minimist", + "escapedName": "minimist", + "rawSpec": "0.0.10", + "saveSpec": null, + "fetchSpec": "0.0.10" + }, + "_requiredBy": [ + "/optimist" + ], + "_resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz", + "_spec": "0.0.10", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "bugs": { + "url": "https://github.com/substack/minimist/issues" + }, + "description": "parse argument options", + "devDependencies": { + "tap": "~0.4.0", + "tape": "~1.0.4" + }, + "homepage": "https://github.com/substack/minimist", + "keywords": [ + "argv", + "getopt", + "parser", + "optimist" + ], + "license": "MIT", + "main": "index.js", + "name": "minimist", + "repository": { + "type": "git", + "url": "git://github.com/substack/minimist.git" + }, + "scripts": { + "test": "tap test/*.js" + }, + "testling": { + "files": "test/*.js", + "browsers": [ + "ie/6..latest", + "ff/5", + "firefox/latest", + "chrome/10", + "chrome/latest", + "safari/5.1", + "safari/latest", + "opera/12" + ] + }, + "version": "0.0.10" +} diff --git a/node_modules/optimist/package.json b/node_modules/optimist/package.json new file mode 100644 index 000000000..dcc873217 --- /dev/null +++ b/node_modules/optimist/package.json @@ -0,0 +1,72 @@ +{ + "_args": [ + [ + "optimist@0.6.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "optimist@0.6.1", + "_id": "optimist@0.6.1", + "_inBundle": false, + "_integrity": "sha1-2j6nRob6IaGaERwybpDrFaAZZoY=", + "_location": "/optimist", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "optimist@0.6.1", + "name": "optimist", + "escapedName": "optimist", + "rawSpec": "0.6.1", + "saveSpec": null, + "fetchSpec": "0.6.1" + }, + "_requiredBy": [ + "/handlebars" + ], + "_resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz", + "_spec": "0.6.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "bugs": { + "url": "https://github.com/substack/node-optimist/issues" + }, + "dependencies": { + "minimist": "~0.0.1", + "wordwrap": "~0.0.2" + }, + "description": "Light-weight option parsing with an argv hash. No optstrings attached.", + "devDependencies": { + "hashish": "~0.0.4", + "tap": "~0.4.0" + }, + "engine": { + "node": ">=0.4" + }, + "homepage": "https://github.com/substack/node-optimist#readme", + "keywords": [ + "argument", + "args", + "option", + "parser", + "parsing", + "cli", + "command" + ], + "license": "MIT/X11", + "main": "./index.js", + "name": "optimist", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/substack/node-optimist.git" + }, + "scripts": { + "test": "tap ./test/*.js" + }, + "version": "0.6.1" +} diff --git a/node_modules/optionator/node_modules/wordwrap/package.json b/node_modules/optionator/node_modules/wordwrap/package.json new file mode 100644 index 000000000..6e1d23a95 --- /dev/null +++ b/node_modules/optionator/node_modules/wordwrap/package.json @@ -0,0 +1,67 @@ +{ + "_args": [ + [ + "wordwrap@1.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "wordwrap@1.0.0", + "_id": "wordwrap@1.0.0", + "_inBundle": false, + "_integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=", + "_location": "/optionator/wordwrap", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "wordwrap@1.0.0", + "name": "wordwrap", + "escapedName": "wordwrap", + "rawSpec": "1.0.0", + "saveSpec": null, + "fetchSpec": "1.0.0" + }, + "_requiredBy": [ + "/optionator" + ], + "_resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", + "_spec": "1.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "bugs": { + "url": "https://github.com/substack/node-wordwrap/issues" + }, + "description": "Wrap those words. Show them at what columns to start and stop.", + "devDependencies": { + "tape": "^4.0.0" + }, + "directories": { + "lib": ".", + "example": "example", + "test": "test" + }, + "homepage": "https://github.com/substack/node-wordwrap#readme", + "keywords": [ + "word", + "wrap", + "rule", + "format", + "column" + ], + "license": "MIT", + "main": "./index.js", + "name": "wordwrap", + "repository": { + "type": "git", + "url": "git://github.com/substack/node-wordwrap.git" + }, + "scripts": { + "test": "expresso" + }, + "version": "1.0.0" +} diff --git a/node_modules/optionator/package.json b/node_modules/optionator/package.json new file mode 100644 index 000000000..6ab26bf12 --- /dev/null +++ b/node_modules/optionator/package.json @@ -0,0 +1,78 @@ +{ + "_args": [ + [ + "optionator@0.8.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "optionator@0.8.2", + "_id": "optionator@0.8.2", + "_inBundle": false, + "_integrity": "sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q=", + "_location": "/optionator", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "optionator@0.8.2", + "name": "optionator", + "escapedName": "optionator", + "rawSpec": "0.8.2", + "saveSpec": null, + "fetchSpec": "0.8.2" + }, + "_requiredBy": [ + "/escodegen" + ], + "_resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz", + "_spec": "0.8.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "George Zahariev", + "email": "z@georgezahariev.com" + }, + "bugs": { + "url": "https://github.com/gkz/optionator/issues" + }, + "dependencies": { + "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" + }, + "description": "option parsing and help generation", + "devDependencies": { + "istanbul": "~0.4.1", + "livescript": "~1.5.0", + "mocha": "~3.0.2" + }, + "engines": { + "node": ">= 0.8.0" + }, + "files": [ + "lib", + "README.md", + "LICENSE" + ], + "homepage": "https://github.com/gkz/optionator", + "keywords": [ + "options", + "flags", + "option parsing", + "cli" + ], + "license": "MIT", + "main": "./lib/", + "name": "optionator", + "repository": { + "type": "git", + "url": "git://github.com/gkz/optionator.git" + }, + "scripts": { + "test": "make test" + }, + "version": "0.8.2" +} diff --git a/node_modules/os-locale/package.json b/node_modules/os-locale/package.json new file mode 100644 index 000000000..db8cb888d --- /dev/null +++ b/node_modules/os-locale/package.json @@ -0,0 +1,81 @@ +{ + "_args": [ + [ + "os-locale@3.1.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "os-locale@3.1.0", + "_id": "os-locale@3.1.0", + "_inBundle": false, + "_integrity": "sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q==", + "_location": "/os-locale", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "os-locale@3.1.0", + "name": "os-locale", + "escapedName": "os-locale", + "rawSpec": "3.1.0", + "saveSpec": null, + "fetchSpec": "3.1.0" + }, + "_requiredBy": [ + "/yargs" + ], + "_resolved": "https://registry.npmjs.org/os-locale/-/os-locale-3.1.0.tgz", + "_spec": "3.1.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/os-locale/issues" + }, + "dependencies": { + "execa": "^1.0.0", + "lcid": "^2.0.0", + "mem": "^4.0.0" + }, + "description": "Get the system locale", + "devDependencies": { + "ava": "^1.0.1", + "import-fresh": "^3.0.0", + "xo": "^0.23.0" + }, + "engines": { + "node": ">=6" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/os-locale#readme", + "keywords": [ + "locale", + "lang", + "language", + "system", + "os", + "string", + "str", + "user", + "country", + "id", + "identifier", + "region" + ], + "license": "MIT", + "name": "os-locale", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/os-locale.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "3.1.0" +} diff --git a/node_modules/p-defer/package.json b/node_modules/p-defer/package.json new file mode 100644 index 000000000..baf05fb85 --- /dev/null +++ b/node_modules/p-defer/package.json @@ -0,0 +1,77 @@ +{ + "_args": [ + [ + "p-defer@1.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "p-defer@1.0.0", + "_id": "p-defer@1.0.0", + "_inBundle": false, + "_integrity": "sha1-n26xgvbJqozXQwBKfU+WsZaw+ww=", + "_location": "/p-defer", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "p-defer@1.0.0", + "name": "p-defer", + "escapedName": "p-defer", + "rawSpec": "1.0.0", + "saveSpec": null, + "fetchSpec": "1.0.0" + }, + "_requiredBy": [ + "/map-age-cleaner" + ], + "_resolved": "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz", + "_spec": "1.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/p-defer/issues" + }, + "description": "Create a deferred promise", + "devDependencies": { + "ava": "*", + "xo": "*" + }, + "engines": { + "node": ">=4" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/p-defer#readme", + "keywords": [ + "promise", + "defer", + "deferred", + "resolve", + "reject", + "lazy", + "later", + "async", + "await", + "promises", + "bluebird" + ], + "license": "MIT", + "name": "p-defer", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/p-defer.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "1.0.0", + "xo": { + "esnext": true + } +} diff --git a/node_modules/p-each-series/package.json b/node_modules/p-each-series/package.json new file mode 100644 index 000000000..5c9122c1d --- /dev/null +++ b/node_modules/p-each-series/package.json @@ -0,0 +1,87 @@ +{ + "_args": [ + [ + "p-each-series@1.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "p-each-series@1.0.0", + "_id": "p-each-series@1.0.0", + "_inBundle": false, + "_integrity": "sha1-kw89Et0fUOdDRFeiLNbwSsatf3E=", + "_location": "/p-each-series", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "p-each-series@1.0.0", + "name": "p-each-series", + "escapedName": "p-each-series", + "rawSpec": "1.0.0", + "saveSpec": null, + "fetchSpec": "1.0.0" + }, + "_requiredBy": [ + "/@jest/core" + ], + "_resolved": "https://registry.npmjs.org/p-each-series/-/p-each-series-1.0.0.tgz", + "_spec": "1.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/p-each-series/issues" + }, + "dependencies": { + "p-reduce": "^1.0.0" + }, + "description": "Iterate over promises serially", + "devDependencies": { + "ava": "*", + "delay": "^1.3.1", + "time-span": "^1.0.0", + "xo": "*" + }, + "engines": { + "node": ">=4" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/p-each-series#readme", + "keywords": [ + "promise", + "foreach", + "for-each", + "for", + "each", + "collection", + "iterable", + "iterator", + "fulfilled", + "async", + "await", + "promises", + "serial", + "serially", + "series", + "bluebird" + ], + "license": "MIT", + "name": "p-each-series", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/p-each-series.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "1.0.0", + "xo": { + "esnext": true + } +} diff --git a/node_modules/p-finally/package.json b/node_modules/p-finally/package.json new file mode 100644 index 000000000..b001b4f4c --- /dev/null +++ b/node_modules/p-finally/package.json @@ -0,0 +1,78 @@ +{ + "_args": [ + [ + "p-finally@1.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "p-finally@1.0.0", + "_id": "p-finally@1.0.0", + "_inBundle": false, + "_integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=", + "_location": "/p-finally", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "p-finally@1.0.0", + "name": "p-finally", + "escapedName": "p-finally", + "rawSpec": "1.0.0", + "saveSpec": null, + "fetchSpec": "1.0.0" + }, + "_requiredBy": [ + "/execa" + ], + "_resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "_spec": "1.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/p-finally/issues" + }, + "description": "`Promise#finally()` ponyfill - Invoked when the promise is settled regardless of outcome", + "devDependencies": { + "ava": "*", + "xo": "*" + }, + "engines": { + "node": ">=4" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/p-finally#readme", + "keywords": [ + "promise", + "finally", + "handler", + "function", + "async", + "await", + "promises", + "settled", + "ponyfill", + "polyfill", + "shim", + "bluebird" + ], + "license": "MIT", + "name": "p-finally", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/p-finally.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "1.0.0", + "xo": { + "esnext": true + } +} diff --git a/node_modules/p-is-promise/package.json b/node_modules/p-is-promise/package.json new file mode 100644 index 000000000..3e343c0d5 --- /dev/null +++ b/node_modules/p-is-promise/package.json @@ -0,0 +1,78 @@ +{ + "_args": [ + [ + "p-is-promise@2.1.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "p-is-promise@2.1.0", + "_id": "p-is-promise@2.1.0", + "_inBundle": false, + "_integrity": "sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg==", + "_location": "/p-is-promise", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "p-is-promise@2.1.0", + "name": "p-is-promise", + "escapedName": "p-is-promise", + "rawSpec": "2.1.0", + "saveSpec": null, + "fetchSpec": "2.1.0" + }, + "_requiredBy": [ + "/mem" + ], + "_resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-2.1.0.tgz", + "_spec": "2.1.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/p-is-promise/issues" + }, + "description": "Check if something is a promise", + "devDependencies": { + "ava": "^1.4.1", + "bluebird": "^3.5.4", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, + "engines": { + "node": ">=6" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "homepage": "https://github.com/sindresorhus/p-is-promise#readme", + "keywords": [ + "promise", + "is", + "detect", + "check", + "kind", + "type", + "thenable", + "es2015", + "async", + "await", + "promises", + "bluebird" + ], + "license": "MIT", + "name": "p-is-promise", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/p-is-promise.git" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "2.1.0" +} diff --git a/node_modules/p-limit/package.json b/node_modules/p-limit/package.json new file mode 100644 index 000000000..321b32c30 --- /dev/null +++ b/node_modules/p-limit/package.json @@ -0,0 +1,91 @@ +{ + "_args": [ + [ + "p-limit@2.2.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "p-limit@2.2.0", + "_id": "p-limit@2.2.0", + "_inBundle": false, + "_integrity": "sha512-pZbTJpoUsCzV48Mc9Nh51VbwO0X9cuPFE8gYwx9BTCt9SF8/b7Zljd2fVgOxhIF/HDTKgpVzs+GPhyKfjLLFRQ==", + "_location": "/p-limit", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "p-limit@2.2.0", + "name": "p-limit", + "escapedName": "p-limit", + "rawSpec": "2.2.0", + "saveSpec": null, + "fetchSpec": "2.2.0" + }, + "_requiredBy": [ + "/babel-plugin-istanbul/p-locate", + "/import-local/p-locate", + "/p-locate", + "/read-pkg-up/p-locate", + "/yargs/p-locate" + ], + "_resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.2.0.tgz", + "_spec": "2.2.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/p-limit/issues" + }, + "dependencies": { + "p-try": "^2.0.0" + }, + "description": "Run multiple promise-returning & async functions with limited concurrency", + "devDependencies": { + "ava": "^1.2.1", + "delay": "^4.1.0", + "in-range": "^1.0.0", + "random-int": "^1.0.0", + "time-span": "^2.0.0", + "tsd-check": "^0.3.0", + "xo": "^0.24.0" + }, + "engines": { + "node": ">=6" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "homepage": "https://github.com/sindresorhus/p-limit#readme", + "keywords": [ + "promise", + "limit", + "limited", + "concurrency", + "throttle", + "throat", + "rate", + "batch", + "ratelimit", + "task", + "queue", + "async", + "await", + "promises", + "bluebird" + ], + "license": "MIT", + "name": "p-limit", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/p-limit.git" + }, + "scripts": { + "test": "xo && ava && tsd-check" + }, + "version": "2.2.0" +} diff --git a/node_modules/p-locate/package.json b/node_modules/p-locate/package.json new file mode 100644 index 000000000..0ebd48042 --- /dev/null +++ b/node_modules/p-locate/package.json @@ -0,0 +1,89 @@ +{ + "_args": [ + [ + "p-locate@4.1.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "p-locate@4.1.0", + "_id": "p-locate@4.1.0", + "_inBundle": false, + "_integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "_location": "/p-locate", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "p-locate@4.1.0", + "name": "p-locate", + "escapedName": "p-locate", + "rawSpec": "4.1.0", + "saveSpec": null, + "fetchSpec": "4.1.0" + }, + "_requiredBy": [ + "/locate-path" + ], + "_resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "_spec": "4.1.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/p-locate/issues" + }, + "dependencies": { + "p-limit": "^2.2.0" + }, + "description": "Get the first fulfilled promise that satisfies the provided testing function", + "devDependencies": { + "ava": "^1.4.1", + "delay": "^4.1.0", + "in-range": "^1.0.0", + "time-span": "^3.0.0", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, + "engines": { + "node": ">=8" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "homepage": "https://github.com/sindresorhus/p-locate#readme", + "keywords": [ + "promise", + "locate", + "find", + "finder", + "search", + "searcher", + "test", + "array", + "collection", + "iterable", + "iterator", + "race", + "fulfilled", + "fastest", + "async", + "await", + "promises", + "bluebird" + ], + "license": "MIT", + "name": "p-locate", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/p-locate.git" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "4.1.0" +} diff --git a/node_modules/p-reduce/package.json b/node_modules/p-reduce/package.json new file mode 100644 index 000000000..a39ef2d28 --- /dev/null +++ b/node_modules/p-reduce/package.json @@ -0,0 +1,77 @@ +{ + "_args": [ + [ + "p-reduce@1.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "p-reduce@1.0.0", + "_id": "p-reduce@1.0.0", + "_inBundle": false, + "_integrity": "sha1-GMKw3ZNqRpClKfgjH1ig/bakffo=", + "_location": "/p-reduce", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "p-reduce@1.0.0", + "name": "p-reduce", + "escapedName": "p-reduce", + "rawSpec": "1.0.0", + "saveSpec": null, + "fetchSpec": "1.0.0" + }, + "_requiredBy": [ + "/p-each-series" + ], + "_resolved": "https://registry.npmjs.org/p-reduce/-/p-reduce-1.0.0.tgz", + "_spec": "1.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/p-reduce/issues" + }, + "description": "Reduce a list of values using promises into a promise for a value", + "devDependencies": { + "ava": "*", + "delay": "^1.3.1", + "xo": "*" + }, + "engines": { + "node": ">=4" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/p-reduce#readme", + "keywords": [ + "promise", + "reduce", + "collection", + "iterable", + "iterator", + "async", + "await", + "promises", + "accumulate", + "bluebird" + ], + "license": "MIT", + "name": "p-reduce", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/p-reduce.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "1.0.0", + "xo": { + "esnext": true + } +} diff --git a/node_modules/p-try/package.json b/node_modules/p-try/package.json new file mode 100644 index 000000000..b4d76bb83 --- /dev/null +++ b/node_modules/p-try/package.json @@ -0,0 +1,78 @@ +{ + "_args": [ + [ + "p-try@2.2.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "p-try@2.2.0", + "_id": "p-try@2.2.0", + "_inBundle": false, + "_integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "_location": "/p-try", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "p-try@2.2.0", + "name": "p-try", + "escapedName": "p-try", + "rawSpec": "2.2.0", + "saveSpec": null, + "fetchSpec": "2.2.0" + }, + "_requiredBy": [ + "/p-limit" + ], + "_resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "_spec": "2.2.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/p-try/issues" + }, + "description": "`Start a promise chain", + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.1", + "xo": "^0.24.0" + }, + "engines": { + "node": ">=6" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "homepage": "https://github.com/sindresorhus/p-try#readme", + "keywords": [ + "promise", + "try", + "resolve", + "function", + "catch", + "async", + "await", + "promises", + "settled", + "ponyfill", + "polyfill", + "shim", + "bluebird" + ], + "license": "MIT", + "name": "p-try", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/p-try.git" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "2.2.0" +} diff --git a/node_modules/parse-json/package.json b/node_modules/parse-json/package.json new file mode 100644 index 000000000..732740822 --- /dev/null +++ b/node_modules/parse-json/package.json @@ -0,0 +1,80 @@ +{ + "_args": [ + [ + "parse-json@4.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "parse-json@4.0.0", + "_id": "parse-json@4.0.0", + "_inBundle": false, + "_integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", + "_location": "/parse-json", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "parse-json@4.0.0", + "name": "parse-json", + "escapedName": "parse-json", + "rawSpec": "4.0.0", + "saveSpec": null, + "fetchSpec": "4.0.0" + }, + "_requiredBy": [ + "/cosmiconfig", + "/load-json-file" + ], + "_resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "_spec": "4.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/parse-json/issues" + }, + "dependencies": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + }, + "description": "Parse JSON with more helpful errors", + "devDependencies": { + "ava": "*", + "nyc": "^11.2.1", + "xo": "*" + }, + "engines": { + "node": ">=4" + }, + "files": [ + "index.js", + "vendor" + ], + "homepage": "https://github.com/sindresorhus/parse-json#readme", + "keywords": [ + "parse", + "json", + "graceful", + "error", + "message", + "humanize", + "friendly", + "helpful", + "string", + "str" + ], + "license": "MIT", + "name": "parse-json", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/parse-json.git" + }, + "scripts": { + "test": "xo && nyc ava" + }, + "version": "4.0.0" +} diff --git a/node_modules/parse5/package.json b/node_modules/parse5/package.json new file mode 100644 index 000000000..772c087a3 --- /dev/null +++ b/node_modules/parse5/package.json @@ -0,0 +1,96 @@ +{ + "_args": [ + [ + "parse5@4.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "parse5@4.0.0", + "_id": "parse5@4.0.0", + "_inBundle": false, + "_integrity": "sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==", + "_location": "/parse5", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "parse5@4.0.0", + "name": "parse5", + "escapedName": "parse5", + "rawSpec": "4.0.0", + "saveSpec": null, + "fetchSpec": "4.0.0" + }, + "_requiredBy": [ + "/jsdom" + ], + "_resolved": "https://registry.npmjs.org/parse5/-/parse5-4.0.0.tgz", + "_spec": "4.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Ivan Nikulin", + "email": "ifaaan@gmail.com", + "url": "https://github.com/inikulin" + }, + "bugs": { + "url": "https://github.com/inikulin/parse5/issues" + }, + "contributors": "https://github.com/inikulin/parse5/graphs/contributors", + "description": "HTML parsing/serialization toolset for Node.js. WHATWG HTML Living Standard (aka HTML5)-compliant.", + "devDependencies": { + "@types/node": "*", + "del": "^2.0.2", + "gulp": "^3.9.0", + "gulp-benchmark": "^1.1.1", + "gulp-download": "0.0.1", + "gulp-eslint": "^3.0.1", + "gulp-install": "^0.6.0", + "gulp-mocha": "^2.1.3", + "gulp-rename": "^1.2.2", + "gulp-typedoc": "^2.0.0", + "gulp-typescript": "^3.1.2", + "publish-please": "^2.2.0", + "through2": "^2.0.0", + "typedoc": "^0.5.1", + "typescript": "^2.0.6" + }, + "files": [ + "lib" + ], + "homepage": "https://github.com/inikulin/parse5", + "keywords": [ + "html", + "parser", + "html5", + "WHATWG", + "specification", + "fast", + "html parser", + "html5 parser", + "htmlparser", + "parse5", + "serializer", + "html serializer", + "htmlserializer", + "sax", + "simple api", + "parse", + "tokenize", + "serialize", + "tokenizer" + ], + "license": "MIT", + "main": "./lib/index.js", + "name": "parse5", + "repository": { + "type": "git", + "url": "git://github.com/inikulin/parse5.git" + }, + "scripts": { + "prepublish": "publish-please guard", + "publish-please": "publish-please", + "test": "gulp test" + }, + "version": "4.0.0" +} diff --git a/node_modules/pascalcase/package.json b/node_modules/pascalcase/package.json new file mode 100644 index 000000000..f7d08ad39 --- /dev/null +++ b/node_modules/pascalcase/package.json @@ -0,0 +1,81 @@ +{ + "_args": [ + [ + "pascalcase@0.1.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "pascalcase@0.1.1", + "_id": "pascalcase@0.1.1", + "_inBundle": false, + "_integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=", + "_location": "/pascalcase", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "pascalcase@0.1.1", + "name": "pascalcase", + "escapedName": "pascalcase", + "rawSpec": "0.1.1", + "saveSpec": null, + "fetchSpec": "0.1.1" + }, + "_requiredBy": [ + "/base" + ], + "_resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "_spec": "0.1.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/pascalcase/issues" + }, + "description": "Convert a string to pascal-case.", + "devDependencies": { + "mocha": "*", + "should": "*" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/pascalcase", + "keywords": [ + "camelcase", + "case", + "casing", + "pascal", + "pascal-case", + "pascalcase", + "string" + ], + "license": "MIT", + "main": "index.js", + "name": "pascalcase", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/pascalcase.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "related": { + "list": [ + "pad-left", + "pad-right", + "word-wrap", + "repeat-string", + "justified" + ] + } + }, + "version": "0.1.1" +} diff --git a/node_modules/path-exists/package.json b/node_modules/path-exists/package.json new file mode 100644 index 000000000..95ecec74a --- /dev/null +++ b/node_modules/path-exists/package.json @@ -0,0 +1,75 @@ +{ + "_args": [ + [ + "path-exists@4.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "path-exists@4.0.0", + "_id": "path-exists@4.0.0", + "_inBundle": false, + "_integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "_location": "/path-exists", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "path-exists@4.0.0", + "name": "path-exists", + "escapedName": "path-exists", + "rawSpec": "4.0.0", + "saveSpec": null, + "fetchSpec": "4.0.0" + }, + "_requiredBy": [ + "/find-up" + ], + "_resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "_spec": "4.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/path-exists/issues" + }, + "description": "Check if a path exists", + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, + "engines": { + "node": ">=8" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "homepage": "https://github.com/sindresorhus/path-exists#readme", + "keywords": [ + "path", + "exists", + "exist", + "file", + "filepath", + "fs", + "filesystem", + "file-system", + "access", + "stat" + ], + "license": "MIT", + "name": "path-exists", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/path-exists.git" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "4.0.0" +} diff --git a/node_modules/path-is-absolute/package.json b/node_modules/path-is-absolute/package.json new file mode 100644 index 000000000..2a8ec8a93 --- /dev/null +++ b/node_modules/path-is-absolute/package.json @@ -0,0 +1,79 @@ +{ + "_args": [ + [ + "path-is-absolute@1.0.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "path-is-absolute@1.0.1", + "_id": "path-is-absolute@1.0.1", + "_inBundle": false, + "_integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "_location": "/path-is-absolute", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "path-is-absolute@1.0.1", + "name": "path-is-absolute", + "escapedName": "path-is-absolute", + "rawSpec": "1.0.1", + "saveSpec": null, + "fetchSpec": "1.0.1" + }, + "_requiredBy": [ + "/glob" + ], + "_resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "_spec": "1.0.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/path-is-absolute/issues" + }, + "description": "Node.js 0.12 path.isAbsolute() ponyfill", + "devDependencies": { + "xo": "^0.16.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/path-is-absolute#readme", + "keywords": [ + "path", + "paths", + "file", + "dir", + "absolute", + "isabsolute", + "is-absolute", + "built-in", + "util", + "utils", + "core", + "ponyfill", + "polyfill", + "shim", + "is", + "detect", + "check" + ], + "license": "MIT", + "name": "path-is-absolute", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/path-is-absolute.git" + }, + "scripts": { + "test": "xo && node test.js" + }, + "version": "1.0.1" +} diff --git a/node_modules/path-key/package.json b/node_modules/path-key/package.json new file mode 100644 index 000000000..aaf249676 --- /dev/null +++ b/node_modules/path-key/package.json @@ -0,0 +1,76 @@ +{ + "_args": [ + [ + "path-key@2.0.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "path-key@2.0.1", + "_id": "path-key@2.0.1", + "_inBundle": false, + "_integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "_location": "/path-key", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "path-key@2.0.1", + "name": "path-key", + "escapedName": "path-key", + "rawSpec": "2.0.1", + "saveSpec": null, + "fetchSpec": "2.0.1" + }, + "_requiredBy": [ + "/cross-spawn", + "/npm-run-path" + ], + "_resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "_spec": "2.0.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/path-key/issues" + }, + "description": "Get the PATH environment variable key cross-platform", + "devDependencies": { + "ava": "*", + "xo": "*" + }, + "engines": { + "node": ">=4" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/path-key#readme", + "keywords": [ + "path", + "key", + "environment", + "env", + "variable", + "var", + "get", + "cross-platform", + "windows" + ], + "license": "MIT", + "name": "path-key", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/path-key.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "2.0.1", + "xo": { + "esnext": true + } +} diff --git a/node_modules/path-parse/package.json b/node_modules/path-parse/package.json new file mode 100644 index 000000000..2968080df --- /dev/null +++ b/node_modules/path-parse/package.json @@ -0,0 +1,65 @@ +{ + "_args": [ + [ + "path-parse@1.0.6", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "path-parse@1.0.6", + "_id": "path-parse@1.0.6", + "_inBundle": false, + "_integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==", + "_location": "/path-parse", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "path-parse@1.0.6", + "name": "path-parse", + "escapedName": "path-parse", + "rawSpec": "1.0.6", + "saveSpec": null, + "fetchSpec": "1.0.6" + }, + "_requiredBy": [ + "/resolve" + ], + "_resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz", + "_spec": "1.0.6", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Javier Blanco", + "email": "http://jbgutierrez.info" + }, + "bugs": { + "url": "https://github.com/jbgutierrez/path-parse/issues" + }, + "description": "Node.js path.parse() ponyfill", + "homepage": "https://github.com/jbgutierrez/path-parse#readme", + "keywords": [ + "path", + "paths", + "file", + "dir", + "parse", + "built-in", + "util", + "utils", + "core", + "ponyfill", + "polyfill", + "shim" + ], + "license": "MIT", + "main": "index.js", + "name": "path-parse", + "repository": { + "type": "git", + "url": "git+https://github.com/jbgutierrez/path-parse.git" + }, + "scripts": { + "test": "node test.js" + }, + "version": "1.0.6" +} diff --git a/node_modules/path-type/package.json b/node_modules/path-type/package.json new file mode 100644 index 000000000..a87361ce9 --- /dev/null +++ b/node_modules/path-type/package.json @@ -0,0 +1,81 @@ +{ + "_args": [ + [ + "path-type@3.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "path-type@3.0.0", + "_id": "path-type@3.0.0", + "_inBundle": false, + "_integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", + "_location": "/path-type", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "path-type@3.0.0", + "name": "path-type", + "escapedName": "path-type", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/read-pkg-up/read-pkg" + ], + "_resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/path-type/issues" + }, + "dependencies": { + "pify": "^3.0.0" + }, + "description": "Check if a path is a file, directory, or symlink", + "devDependencies": { + "ava": "*", + "xo": "*" + }, + "engines": { + "node": ">=4" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/path-type#readme", + "keywords": [ + "path", + "fs", + "type", + "is", + "check", + "directory", + "dir", + "file", + "filepath", + "symlink", + "symbolic", + "link", + "stat", + "stats", + "filesystem" + ], + "license": "MIT", + "name": "path-type", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/path-type.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "3.0.0" +} diff --git a/node_modules/performance-now/package.json b/node_modules/performance-now/package.json new file mode 100644 index 000000000..d389fb0ef --- /dev/null +++ b/node_modules/performance-now/package.json @@ -0,0 +1,69 @@ +{ + "_args": [ + [ + "performance-now@2.1.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "performance-now@2.1.0", + "_id": "performance-now@2.1.0", + "_inBundle": false, + "_integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=", + "_location": "/performance-now", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "performance-now@2.1.0", + "name": "performance-now", + "escapedName": "performance-now", + "rawSpec": "2.1.0", + "saveSpec": null, + "fetchSpec": "2.1.0" + }, + "_requiredBy": [ + "/request" + ], + "_resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "_spec": "2.1.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Braveg1rl", + "email": "braveg1rl@outlook.com" + }, + "bugs": { + "url": "https://github.com/braveg1rl/performance-now/issues" + }, + "dependencies": {}, + "description": "Implements performance.now (based on process.hrtime).", + "devDependencies": { + "bluebird": "^3.4.7", + "call-delayed": "^1.0.0", + "chai": "^3.5.0", + "chai-increasing": "^1.2.0", + "coffee-script": "~1.12.2", + "mocha": "~3.2.0", + "pre-commit": "^1.2.2" + }, + "homepage": "https://github.com/braveg1rl/performance-now", + "keywords": [], + "license": "MIT", + "main": "lib/performance-now.js", + "name": "performance-now", + "optionalDependencies": {}, + "private": false, + "repository": { + "type": "git", + "url": "git://github.com/braveg1rl/performance-now.git" + }, + "scripts": { + "build": "mkdir -p lib && rm -rf lib/* && node_modules/.bin/coffee --compile -m --output lib/ src/", + "prepublish": "npm test", + "pretest": "npm run build", + "test": "mocha", + "watch": "coffee --watch --compile --output lib/ src/" + }, + "typings": "src/index.d.ts", + "version": "2.1.0" +} diff --git a/node_modules/pify/package.json b/node_modules/pify/package.json new file mode 100644 index 000000000..090d1a210 --- /dev/null +++ b/node_modules/pify/package.json @@ -0,0 +1,88 @@ +{ + "_args": [ + [ + "pify@3.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "pify@3.0.0", + "_id": "pify@3.0.0", + "_inBundle": false, + "_integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "_location": "/pify", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "pify@3.0.0", + "name": "pify", + "escapedName": "pify", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/load-json-file", + "/path-type" + ], + "_resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/pify/issues" + }, + "description": "Promisify a callback-style function", + "devDependencies": { + "ava": "*", + "pinkie-promise": "^2.0.0", + "v8-natives": "^1.0.0", + "xo": "*" + }, + "engines": { + "node": ">=4" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/pify#readme", + "keywords": [ + "promise", + "promises", + "promisify", + "all", + "denodify", + "denodeify", + "callback", + "cb", + "node", + "then", + "thenify", + "convert", + "transform", + "wrap", + "wrapper", + "bind", + "to", + "async", + "await", + "es2015", + "bluebird" + ], + "license": "MIT", + "name": "pify", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/pify.git" + }, + "scripts": { + "optimization-test": "node --allow-natives-syntax optimization-test.js", + "test": "xo && ava && npm run optimization-test" + }, + "version": "3.0.0" +} diff --git a/node_modules/pirates/package.json b/node_modules/pirates/package.json new file mode 100644 index 000000000..f84ed0aac --- /dev/null +++ b/node_modules/pirates/package.json @@ -0,0 +1,113 @@ +{ + "_args": [ + [ + "pirates@4.0.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "pirates@4.0.1", + "_id": "pirates@4.0.1", + "_inBundle": false, + "_integrity": "sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==", + "_location": "/pirates", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "pirates@4.0.1", + "name": "pirates", + "escapedName": "pirates", + "rawSpec": "4.0.1", + "saveSpec": null, + "fetchSpec": "4.0.1" + }, + "_requiredBy": [ + "/@jest/core" + ], + "_resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.1.tgz", + "_spec": "4.0.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Ari Porad", + "email": "ari@ariporad.com", + "url": "http://ariporad.com" + }, + "ava": { + "files": [ + "test/*.js" + ], + "sources": [ + "lib/**/*.js" + ] + }, + "bugs": { + "url": "https://github.com/ariporad/pirates/issues" + }, + "config": { + "commitizen": { + "path": "cz-conventional-changelog" + } + }, + "dependencies": { + "node-modules-regexp": "^1.0.0" + }, + "description": "Properly hijack require", + "devDependencies": { + "@babel/cli": "^7.0.0", + "@babel/core": "^7.0.0", + "@babel/preset-env": "^7.0.0", + "ava": "^1.2.1", + "babel-core": "^7.0.0-0", + "babel-eslint": "^10.0.1", + "babel-plugin-istanbul": "^5.1.0", + "cross-env": "^5.0.5", + "cz-conventional-changelog": "^2.0.0", + "decache": "^4.1.0", + "eslint": "^5.1.0", + "eslint-config-prettier": "^4.0.0", + "eslint-plugin-import": "^2.2.0", + "eslint-plugin-prettier": "^3.0.1", + "mock-require": "^3.0.2", + "nyc": "^13.2.0", + "prettier": "^1.16.4", + "rewire": "^4.0.1", + "rimraf": "^2.6.1", + "semantic-release": "^15.7.0" + }, + "engines": { + "node": ">= 6" + }, + "files": [ + "lib", + "index.d.ts" + ], + "homepage": "https://github.com/ariporad/pirates#readme", + "license": "MIT", + "main": "lib/index.js", + "name": "pirates", + "nyc": { + "include": [ + "src/*.js" + ], + "reporter": [ + "json", + "text" + ], + "sourceMap": false, + "instrument": false + }, + "repository": { + "type": "git", + "url": "git+https://github.com/ariporad/pirates.git" + }, + "scripts": { + "build": "babel src -d lib", + "clean": "rimraf lib", + "lint": "eslint --report-unused-disable-directives .", + "prepublish": "yarn run clean && yarn run build", + "test": "yarn run lint && cross-env BABEL_ENV=test yarn run build && nyc ava" + }, + "types": "index.d.ts", + "version": "4.0.1" +} diff --git a/node_modules/pkg-dir/package.json b/node_modules/pkg-dir/package.json new file mode 100644 index 000000000..154ab2439 --- /dev/null +++ b/node_modules/pkg-dir/package.json @@ -0,0 +1,92 @@ +{ + "_args": [ + [ + "pkg-dir@4.2.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "pkg-dir@4.2.0", + "_id": "pkg-dir@4.2.0", + "_inBundle": false, + "_integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "_location": "/pkg-dir", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "pkg-dir@4.2.0", + "name": "pkg-dir", + "escapedName": "pkg-dir", + "rawSpec": "4.2.0", + "saveSpec": null, + "fetchSpec": "4.2.0" + }, + "_requiredBy": [ + "/husky" + ], + "_resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "_spec": "4.2.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/pkg-dir/issues" + }, + "dependencies": { + "find-up": "^4.0.0" + }, + "description": "Find the root directory of a Node.js project or npm package", + "devDependencies": { + "ava": "^1.4.1", + "tempy": "^0.3.0", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, + "engines": { + "node": ">=8" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "homepage": "https://github.com/sindresorhus/pkg-dir#readme", + "keywords": [ + "package", + "json", + "root", + "npm", + "entry", + "find", + "up", + "find-up", + "findup", + "look-up", + "look", + "file", + "search", + "match", + "resolve", + "parent", + "parents", + "folder", + "directory", + "dir", + "walk", + "walking", + "path" + ], + "license": "MIT", + "name": "pkg-dir", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/pkg-dir.git" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "4.2.0" +} diff --git a/node_modules/please-upgrade-node/package.json b/node_modules/please-upgrade-node/package.json new file mode 100644 index 000000000..5d041611e --- /dev/null +++ b/node_modules/please-upgrade-node/package.json @@ -0,0 +1,71 @@ +{ + "_args": [ + [ + "please-upgrade-node@3.1.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "please-upgrade-node@3.1.1", + "_id": "please-upgrade-node@3.1.1", + "_inBundle": false, + "_integrity": "sha512-KY1uHnQ2NlQHqIJQpnh/i54rKkuxCEBx+voJIS/Mvb+L2iYd2NMotwduhKTMjfC1uKoX3VXOxLjIYG66dfJTVQ==", + "_location": "/please-upgrade-node", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "please-upgrade-node@3.1.1", + "name": "please-upgrade-node", + "escapedName": "please-upgrade-node", + "rawSpec": "3.1.1", + "saveSpec": null, + "fetchSpec": "3.1.1" + }, + "_requiredBy": [ + "/husky" + ], + "_resolved": "https://registry.npmjs.org/please-upgrade-node/-/please-upgrade-node-3.1.1.tgz", + "_spec": "3.1.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "typicode" + }, + "bugs": { + "url": "https://github.com/typicode/please-upgrade-node/issues" + }, + "dependencies": { + "semver-compare": "^1.0.0" + }, + "description": "Displays a beginner-friendly message telling your user to upgrade their version of Node", + "devDependencies": { + "eslint": "^4.19.1", + "eslint-plugin-prettier": "^2.6.0", + "pkg-ok": "^1.1.0", + "prettier": "1.12.1", + "tape": "^4.9.1" + }, + "homepage": "https://github.com/typicode/please-upgrade-node#readme", + "keywords": [ + "node", + "engines", + "version", + "check", + "verify", + "upgrade" + ], + "license": "MIT", + "main": "index.js", + "name": "please-upgrade-node", + "repository": { + "type": "git", + "url": "git+https://github.com/typicode/please-upgrade-node.git" + }, + "scripts": { + "fix": "npm run lint -- --fix", + "lint": "eslint .", + "prepublishOnly": "npm test && npm run lint && pkg-ok", + "test": "node test" + }, + "version": "3.1.1" +} diff --git a/node_modules/pn/package.json b/node_modules/pn/package.json new file mode 100644 index 000000000..c00fa2911 --- /dev/null +++ b/node_modules/pn/package.json @@ -0,0 +1,59 @@ +{ + "_args": [ + [ + "pn@1.1.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "pn@1.1.0", + "_id": "pn@1.1.0", + "_inBundle": false, + "_integrity": "sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA==", + "_location": "/pn", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "pn@1.1.0", + "name": "pn", + "escapedName": "pn", + "rawSpec": "1.1.0", + "saveSpec": null, + "fetchSpec": "1.1.0" + }, + "_requiredBy": [ + "/jsdom" + ], + "_resolved": "https://registry.npmjs.org/pn/-/pn-1.1.0.tgz", + "_spec": "1.1.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "C. Scott Ananian" + }, + "bugs": { + "url": "https://github.com/cscott/node-pn/issues" + }, + "description": "Promisify the node standard library.", + "devDependencies": { + "es6-shim": "~0.35.3", + "mocha": "~3.5.0", + "prfun": "~2.1.4" + }, + "homepage": "https://github.com/cscott/node-pn#readme", + "keywords": [ + "promise", + "node" + ], + "license": "MIT", + "name": "pn", + "repository": { + "type": "git", + "url": "git://github.com/cscott/node-pn.git" + }, + "scripts": { + "generate": "scripts/generate.js", + "test": "mocha" + }, + "version": "1.1.0" +} diff --git a/node_modules/posix-character-classes/package.json b/node_modules/posix-character-classes/package.json new file mode 100644 index 000000000..01c09d339 --- /dev/null +++ b/node_modules/posix-character-classes/package.json @@ -0,0 +1,89 @@ +{ + "_args": [ + [ + "posix-character-classes@0.1.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "posix-character-classes@0.1.1", + "_id": "posix-character-classes@0.1.1", + "_inBundle": false, + "_integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=", + "_location": "/posix-character-classes", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "posix-character-classes@0.1.1", + "name": "posix-character-classes", + "escapedName": "posix-character-classes", + "rawSpec": "0.1.1", + "saveSpec": null, + "fetchSpec": "0.1.1" + }, + "_requiredBy": [ + "/expand-brackets" + ], + "_resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "_spec": "0.1.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/posix-character-classes/issues" + }, + "description": "POSIX character classes for creating regular expressions.", + "devDependencies": { + "gulp-format-md": "^0.1.12", + "mocha": "^3.2.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/posix-character-classes", + "keywords": [ + "character", + "classes", + "posix" + ], + "license": "MIT", + "main": "index.js", + "name": "posix-character-classes", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/posix-character-classes.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "reflinks": [ + "verb", + "verb-generate-readme" + ], + "lint": { + "reflinks": true + }, + "related-list": [ + "micromatch", + "nanomatch", + "extglob", + "expand-brackets" + ] + }, + "version": "0.1.1" +} diff --git a/node_modules/prelude-ls/package.json b/node_modules/prelude-ls/package.json new file mode 100644 index 000000000..a1ff1e568 --- /dev/null +++ b/node_modules/prelude-ls/package.json @@ -0,0 +1,88 @@ +{ + "_args": [ + [ + "prelude-ls@1.1.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "prelude-ls@1.1.2", + "_id": "prelude-ls@1.1.2", + "_inBundle": false, + "_integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=", + "_location": "/prelude-ls", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "prelude-ls@1.1.2", + "name": "prelude-ls", + "escapedName": "prelude-ls", + "rawSpec": "1.1.2", + "saveSpec": null, + "fetchSpec": "1.1.2" + }, + "_requiredBy": [ + "/levn", + "/optionator", + "/type-check" + ], + "_resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "_spec": "1.1.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "George Zahariev", + "email": "z@georgezahariev.com" + }, + "bugs": { + "url": "https://github.com/gkz/prelude-ls/issues" + }, + "description": "prelude.ls is a functionally oriented utility library. It is powerful and flexible. Almost all of its functions are curried. It is written in, and is the recommended base library for, LiveScript.", + "devDependencies": { + "browserify": "~3.24.13", + "istanbul": "~0.2.4", + "livescript": "~1.4.0", + "mocha": "~2.2.4", + "sinon": "~1.10.2", + "uglify-js": "~2.4.12" + }, + "engines": { + "node": ">= 0.8.0" + }, + "files": [ + "lib/", + "README.md", + "LICENSE" + ], + "homepage": "http://preludels.com", + "keywords": [ + "prelude", + "livescript", + "utility", + "ls", + "coffeescript", + "javascript", + "library", + "functional", + "array", + "list", + "object", + "string" + ], + "licenses": [ + { + "type": "MIT", + "url": "https://raw.github.com/gkz/prelude-ls/master/LICENSE" + } + ], + "main": "lib/", + "name": "prelude-ls", + "repository": { + "type": "git", + "url": "git://github.com/gkz/prelude-ls.git" + }, + "scripts": { + "test": "make test" + }, + "version": "1.1.2" +} diff --git a/node_modules/prettier/package.json b/node_modules/prettier/package.json new file mode 100644 index 000000000..9b99cc0dd --- /dev/null +++ b/node_modules/prettier/package.json @@ -0,0 +1,59 @@ +{ + "_args": [ + [ + "prettier@1.18.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "prettier@1.18.2", + "_id": "prettier@1.18.2", + "_inBundle": false, + "_integrity": "sha512-OeHeMc0JhFE9idD4ZdtNibzY0+TPHSpSSb9h8FqtP+YnoZZ1sl8Vc9b1sasjfymH3SonAF4QcA2+mzHPhMvIiw==", + "_location": "/prettier", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "prettier@1.18.2", + "name": "prettier", + "escapedName": "prettier", + "rawSpec": "1.18.2", + "saveSpec": null, + "fetchSpec": "1.18.2" + }, + "_requiredBy": [ + "#DEV:/" + ], + "_resolved": "https://registry.npmjs.org/prettier/-/prettier-1.18.2.tgz", + "_spec": "1.18.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "James Long" + }, + "bin": { + "prettier": "./bin-prettier.js" + }, + "bugs": { + "url": "https://github.com/prettier/prettier/issues" + }, + "description": "Prettier is an opinionated code formatter", + "engines": { + "node": ">=4" + }, + "files": [ + "*.js" + ], + "homepage": "https://prettier.io", + "license": "MIT", + "main": "./index.js", + "name": "prettier", + "repository": { + "type": "git", + "url": "git+https://github.com/prettier/prettier.git" + }, + "scripts": { + "prepublishOnly": "node -e \"assert.equal(require('.').version, require('..').version)\"" + }, + "version": "1.18.2" +} diff --git a/node_modules/pretty-format/package.json b/node_modules/pretty-format/package.json new file mode 100644 index 000000000..6c2adac45 --- /dev/null +++ b/node_modules/pretty-format/package.json @@ -0,0 +1,83 @@ +{ + "_args": [ + [ + "pretty-format@24.8.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "pretty-format@24.8.0", + "_id": "pretty-format@24.8.0", + "_inBundle": false, + "_integrity": "sha512-P952T7dkrDEplsR+TuY7q3VXDae5Sr7zmQb12JU/NDQa/3CH7/QW0yvqLcGN6jL+zQFKaoJcPc+yJxMTGmosqw==", + "_location": "/pretty-format", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "pretty-format@24.8.0", + "name": "pretty-format", + "escapedName": "pretty-format", + "rawSpec": "24.8.0", + "saveSpec": null, + "fetchSpec": "24.8.0" + }, + "_requiredBy": [ + "/jest-circus", + "/jest-config", + "/jest-diff", + "/jest-each", + "/jest-jasmine2", + "/jest-leak-detector", + "/jest-matcher-utils", + "/jest-snapshot", + "/jest-validate" + ], + "_resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-24.8.0.tgz", + "_spec": "24.8.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "James Kyle", + "email": "me@thejameskyle.com" + }, + "browser": "build-es5/index.js", + "bugs": { + "url": "https://github.com/facebook/jest/issues" + }, + "dependencies": { + "@jest/types": "^24.8.0", + "ansi-regex": "^4.0.0", + "ansi-styles": "^3.2.0", + "react-is": "^16.8.4" + }, + "description": "Stringify any JavaScript value.", + "devDependencies": { + "@types/ansi-regex": "^4.0.0", + "@types/ansi-styles": "^3.2.1", + "@types/react": "*", + "@types/react-is": "^16.7.1", + "@types/react-test-renderer": "*", + "immutable": "4.0.0-rc.9", + "react": "*", + "react-dom": "*", + "react-test-renderer": "*" + }, + "engines": { + "node": ">= 6" + }, + "gitHead": "845728f24b3ef41e450595c384e9b5c9fdf248a4", + "homepage": "https://github.com/facebook/jest#readme", + "license": "MIT", + "main": "build/index.js", + "name": "pretty-format", + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/facebook/jest.git", + "directory": "packages/pretty-format" + }, + "types": "build/index.d.ts", + "version": "24.8.0" +} diff --git a/node_modules/process-nextick-args/package.json b/node_modules/process-nextick-args/package.json new file mode 100644 index 000000000..32fce83f7 --- /dev/null +++ b/node_modules/process-nextick-args/package.json @@ -0,0 +1,54 @@ +{ + "_args": [ + [ + "process-nextick-args@2.0.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "process-nextick-args@2.0.1", + "_id": "process-nextick-args@2.0.1", + "_inBundle": false, + "_integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "_location": "/process-nextick-args", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "process-nextick-args@2.0.1", + "name": "process-nextick-args", + "escapedName": "process-nextick-args", + "rawSpec": "2.0.1", + "saveSpec": null, + "fetchSpec": "2.0.1" + }, + "_requiredBy": [ + "/readable-stream" + ], + "_resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "_spec": "2.0.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": "", + "bugs": { + "url": "https://github.com/calvinmetcalf/process-nextick-args/issues" + }, + "description": "process.nextTick but always with args", + "devDependencies": { + "tap": "~0.2.6" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/calvinmetcalf/process-nextick-args", + "license": "MIT", + "main": "index.js", + "name": "process-nextick-args", + "repository": { + "type": "git", + "url": "git+https://github.com/calvinmetcalf/process-nextick-args.git" + }, + "scripts": { + "test": "node test.js" + }, + "version": "2.0.1" +} diff --git a/node_modules/prompts/package.json b/node_modules/prompts/package.json new file mode 100644 index 000000000..993ca3387 --- /dev/null +++ b/node_modules/prompts/package.json @@ -0,0 +1,89 @@ +{ + "_args": [ + [ + "prompts@2.1.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "prompts@2.1.0", + "_id": "prompts@2.1.0", + "_inBundle": false, + "_integrity": "sha512-+x5TozgqYdOwWsQFZizE/Tra3fKvAoy037kOyU6cgz84n8f6zxngLOV4O32kTwt9FcLCxAqw0P/c8rOr9y+Gfg==", + "_location": "/prompts", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "prompts@2.1.0", + "name": "prompts", + "escapedName": "prompts", + "rawSpec": "2.1.0", + "saveSpec": null, + "fetchSpec": "2.1.0" + }, + "_requiredBy": [ + "/jest/jest-cli" + ], + "_resolved": "https://registry.npmjs.org/prompts/-/prompts-2.1.0.tgz", + "_spec": "2.1.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Terkel Gjervig", + "email": "terkel@terkel.com", + "url": "https://terkel.com" + }, + "bugs": { + "url": "https://github.com/terkelg/prompts/issues" + }, + "dependencies": { + "kleur": "^3.0.2", + "sisteransi": "^1.0.0" + }, + "description": "Lightweight, beautiful and user-friendly prompts", + "devDependencies": { + "@babel/cli": "^7.2.3", + "@babel/core": "^7.3.3", + "@babel/plugin-proposal-object-rest-spread": "^7.3.4", + "@babel/preset-env": "^7.3.4", + "tap-spec": "^5.0.0", + "tape": "^4.10.1" + }, + "engines": { + "node": ">= 6" + }, + "files": [ + "lib", + "dist", + "index.js" + ], + "homepage": "https://github.com/terkelg/prompts#readme", + "keywords": [ + "ui", + "prompts", + "cli", + "prompt", + "interface", + "command-line", + "input", + "command", + "stdin", + "menu", + "ask", + "interact" + ], + "license": "MIT", + "main": "index.js", + "name": "prompts", + "repository": { + "type": "git", + "url": "git+https://github.com/terkelg/prompts.git" + }, + "scripts": { + "build": "babel lib -d dist", + "prepublishOnly": "npm run build", + "start": "node lib/index.js", + "test": "tape test/*.js | tap-spec" + }, + "version": "2.1.0" +} diff --git a/node_modules/psl/package.json b/node_modules/psl/package.json new file mode 100644 index 000000000..d4f6a0e96 --- /dev/null +++ b/node_modules/psl/package.json @@ -0,0 +1,82 @@ +{ + "_args": [ + [ + "psl@1.2.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "psl@1.2.0", + "_id": "psl@1.2.0", + "_inBundle": false, + "_integrity": "sha512-GEn74ZffufCmkDDLNcl3uuyF/aSD6exEyh1v/ZSdAomB82t6G9hzJVRx0jBmLDW+VfZqks3aScmMw9DszwUalA==", + "_location": "/psl", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "psl@1.2.0", + "name": "psl", + "escapedName": "psl", + "rawSpec": "1.2.0", + "saveSpec": null, + "fetchSpec": "1.2.0" + }, + "_requiredBy": [ + "/request/tough-cookie", + "/tough-cookie" + ], + "_resolved": "https://registry.npmjs.org/psl/-/psl-1.2.0.tgz", + "_spec": "1.2.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Lupo Montero", + "email": "lupomontero@gmail.com", + "url": "https://lupomontero.com/" + }, + "bugs": { + "url": "https://github.com/lupomontero/psl/issues" + }, + "description": "Domain name parser based on the Public Suffix List", + "devDependencies": { + "JSONStream": "^1.3.5", + "browserify": "^16.2.3", + "commit-and-pr": "^1.0.3", + "eslint": "^6.0.1", + "eslint-config-hapi": "^12.0.0", + "eslint-plugin-hapi": "^4.1.0", + "karma": "^4.1.0", + "karma-browserify": "^6.0.0", + "karma-mocha": "^1.3.0", + "karma-mocha-reporter": "^2.2.5", + "karma-phantomjs-launcher": "^1.0.4", + "mocha": "^6.1.4", + "phantomjs-prebuilt": "^2.1.16", + "request": "^2.88.0", + "uglify-js": "^3.6.0", + "watchify": "^3.11.1" + }, + "homepage": "https://github.com/lupomontero/psl#readme", + "keywords": [ + "publicsuffix", + "publicsuffixlist" + ], + "license": "MIT", + "main": "index.js", + "name": "psl", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/lupomontero/psl.git" + }, + "scripts": { + "build": "browserify ./index.js --standalone=psl > ./dist/psl.js", + "changelog": "git log $(git describe --tags --abbrev=0)..HEAD --oneline --format=\"%h %s (%an <%ae>)\"", + "commit-and-pr": "commit-and-pr", + "postbuild": "cat ./dist/psl.js | uglifyjs -c -m > ./dist/psl.min.js", + "prebuild": "./scripts/update-rules.js", + "pretest": "eslint .", + "test": "mocha test && karma start ./karma.conf.js --single-run", + "watch": "mocha test --watch" + }, + "version": "1.2.0" +} diff --git a/node_modules/pump/package.json b/node_modules/pump/package.json new file mode 100644 index 000000000..bae8b72fc --- /dev/null +++ b/node_modules/pump/package.json @@ -0,0 +1,63 @@ +{ + "_args": [ + [ + "pump@3.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "pump@3.0.0", + "_id": "pump@3.0.0", + "_inBundle": false, + "_integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "_location": "/pump", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "pump@3.0.0", + "name": "pump", + "escapedName": "pump", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/get-stream" + ], + "_resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Mathias Buus Madsen", + "email": "mathiasbuus@gmail.com" + }, + "browser": { + "fs": false + }, + "bugs": { + "url": "https://github.com/mafintosh/pump/issues" + }, + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + }, + "description": "pipe streams together and close all of them if one of them closes", + "homepage": "https://github.com/mafintosh/pump#readme", + "keywords": [ + "streams", + "pipe", + "destroy", + "callback" + ], + "license": "MIT", + "name": "pump", + "repository": { + "type": "git", + "url": "git://github.com/mafintosh/pump.git" + }, + "scripts": { + "test": "node test-browser.js && node test-node.js" + }, + "version": "3.0.0" +} diff --git a/node_modules/punycode/package.json b/node_modules/punycode/package.json new file mode 100644 index 000000000..37609c7aa --- /dev/null +++ b/node_modules/punycode/package.json @@ -0,0 +1,91 @@ +{ + "_args": [ + [ + "punycode@2.1.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "punycode@2.1.1", + "_id": "punycode@2.1.1", + "_inBundle": false, + "_integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "_location": "/punycode", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "punycode@2.1.1", + "name": "punycode", + "escapedName": "punycode", + "rawSpec": "2.1.1", + "saveSpec": null, + "fetchSpec": "2.1.1" + }, + "_requiredBy": [ + "/tough-cookie", + "/tr46", + "/uri-js" + ], + "_resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "_spec": "2.1.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Mathias Bynens", + "url": "https://mathiasbynens.be/" + }, + "bugs": { + "url": "https://github.com/bestiejs/punycode.js/issues" + }, + "contributors": [ + { + "name": "Mathias Bynens", + "url": "https://mathiasbynens.be/" + } + ], + "description": "A robust Punycode converter that fully complies to RFC 3492 and RFC 5891, and works on nearly all JavaScript platforms.", + "devDependencies": { + "codecov": "^1.0.1", + "istanbul": "^0.4.1", + "mocha": "^2.5.3" + }, + "engines": { + "node": ">=6" + }, + "files": [ + "LICENSE-MIT.txt", + "punycode.js", + "punycode.es6.js" + ], + "homepage": "https://mths.be/punycode", + "jsnext:main": "punycode.es6.js", + "jspm": { + "map": { + "./punycode.js": { + "node": "@node/punycode" + } + } + }, + "keywords": [ + "punycode", + "unicode", + "idn", + "idna", + "dns", + "url", + "domain" + ], + "license": "MIT", + "main": "punycode.js", + "module": "punycode.es6.js", + "name": "punycode", + "repository": { + "type": "git", + "url": "git+https://github.com/bestiejs/punycode.js.git" + }, + "scripts": { + "prepublish": "node scripts/prepublish.js", + "test": "mocha tests" + }, + "version": "2.1.1" +} diff --git a/node_modules/qs/package.json b/node_modules/qs/package.json new file mode 100644 index 000000000..09d1d4b1a --- /dev/null +++ b/node_modules/qs/package.json @@ -0,0 +1,84 @@ +{ + "_args": [ + [ + "qs@6.5.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "qs@6.5.2", + "_id": "qs@6.5.2", + "_inBundle": false, + "_integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==", + "_location": "/qs", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "qs@6.5.2", + "name": "qs", + "escapedName": "qs", + "rawSpec": "6.5.2", + "saveSpec": null, + "fetchSpec": "6.5.2" + }, + "_requiredBy": [ + "/request" + ], + "_resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", + "_spec": "6.5.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/ljharb/qs/issues" + }, + "contributors": [ + { + "name": "Jordan Harband", + "email": "ljharb@gmail.com", + "url": "http://ljharb.codes" + } + ], + "dependencies": {}, + "description": "A querystring parser that supports nesting and arrays, with a depth limit", + "devDependencies": { + "@ljharb/eslint-config": "^12.2.1", + "browserify": "^16.2.0", + "covert": "^1.1.0", + "editorconfig-tools": "^0.1.1", + "eslint": "^4.19.1", + "evalmd": "^0.0.17", + "iconv-lite": "^0.4.21", + "mkdirp": "^0.5.1", + "qs-iconv": "^1.0.4", + "safe-publish-latest": "^1.1.1", + "safer-buffer": "^2.1.2", + "tape": "^4.9.0" + }, + "engines": { + "node": ">=0.6" + }, + "homepage": "https://github.com/ljharb/qs", + "keywords": [ + "querystring", + "qs" + ], + "license": "BSD-3-Clause", + "main": "lib/index.js", + "name": "qs", + "repository": { + "type": "git", + "url": "git+https://github.com/ljharb/qs.git" + }, + "scripts": { + "coverage": "covert test", + "dist": "mkdirp dist && browserify --standalone Qs lib/index.js > dist/qs.js", + "lint": "eslint lib/*.js test/*.js", + "prelint": "editorconfig-tools check * lib/* test/*", + "prepublish": "safe-publish-latest && npm run dist", + "pretest": "npm run --silent readme && npm run --silent lint", + "readme": "evalmd README.md", + "test": "npm run --silent coverage", + "tests-only": "node test" + }, + "version": "6.5.2" +} diff --git a/node_modules/react-is/package.json b/node_modules/react-is/package.json new file mode 100644 index 000000000..20f8f671c --- /dev/null +++ b/node_modules/react-is/package.json @@ -0,0 +1,56 @@ +{ + "_args": [ + [ + "react-is@16.8.6", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "react-is@16.8.6", + "_id": "react-is@16.8.6", + "_inBundle": false, + "_integrity": "sha512-aUk3bHfZ2bRSVFFbbeVS4i+lNPZr3/WM5jT2J5omUVV1zzcs1nAaf3l51ctA5FFvCRbhrH0bdAsRRQddFJZPtA==", + "_location": "/react-is", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "react-is@16.8.6", + "name": "react-is", + "escapedName": "react-is", + "rawSpec": "16.8.6", + "saveSpec": null, + "fetchSpec": "16.8.6" + }, + "_requiredBy": [ + "/pretty-format" + ], + "_resolved": "https://registry.npmjs.org/react-is/-/react-is-16.8.6.tgz", + "_spec": "16.8.6", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/facebook/react/issues" + }, + "description": "Brand checking of React Elements.", + "files": [ + "LICENSE", + "README.md", + "build-info.json", + "index.js", + "cjs/", + "umd/" + ], + "homepage": "https://reactjs.org/", + "keywords": [ + "react" + ], + "license": "MIT", + "main": "index.js", + "name": "react-is", + "repository": { + "type": "git", + "url": "git+https://github.com/facebook/react.git", + "directory": "packages/react-is" + }, + "version": "16.8.6" +} diff --git a/node_modules/read-pkg-up/node_modules/find-up/package.json b/node_modules/read-pkg-up/node_modules/find-up/package.json new file mode 100644 index 000000000..733b91a2f --- /dev/null +++ b/node_modules/read-pkg-up/node_modules/find-up/package.json @@ -0,0 +1,86 @@ +{ + "_args": [ + [ + "find-up@3.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "find-up@3.0.0", + "_id": "find-up@3.0.0", + "_inBundle": false, + "_integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "_location": "/read-pkg-up/find-up", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "find-up@3.0.0", + "name": "find-up", + "escapedName": "find-up", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/read-pkg-up" + ], + "_resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/find-up/issues" + }, + "dependencies": { + "locate-path": "^3.0.0" + }, + "description": "Find a file or directory by walking up parent directories", + "devDependencies": { + "ava": "*", + "tempy": "^0.2.1", + "xo": "*" + }, + "engines": { + "node": ">=6" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/find-up#readme", + "keywords": [ + "find", + "up", + "find-up", + "findup", + "look-up", + "look", + "file", + "search", + "match", + "package", + "resolve", + "parent", + "parents", + "folder", + "directory", + "dir", + "walk", + "walking", + "path" + ], + "license": "MIT", + "name": "find-up", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/find-up.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "3.0.0" +} diff --git a/node_modules/read-pkg-up/node_modules/locate-path/package.json b/node_modules/read-pkg-up/node_modules/locate-path/package.json new file mode 100644 index 000000000..6ff898b5d --- /dev/null +++ b/node_modules/read-pkg-up/node_modules/locate-path/package.json @@ -0,0 +1,80 @@ +{ + "_args": [ + [ + "locate-path@3.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "locate-path@3.0.0", + "_id": "locate-path@3.0.0", + "_inBundle": false, + "_integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "_location": "/read-pkg-up/locate-path", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "locate-path@3.0.0", + "name": "locate-path", + "escapedName": "locate-path", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/read-pkg-up/find-up" + ], + "_resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/locate-path/issues" + }, + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "description": "Get the first path that exists on disk of multiple paths", + "devDependencies": { + "ava": "*", + "xo": "*" + }, + "engines": { + "node": ">=6" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/locate-path#readme", + "keywords": [ + "locate", + "path", + "paths", + "file", + "files", + "exists", + "find", + "finder", + "search", + "searcher", + "array", + "iterable", + "iterator" + ], + "license": "MIT", + "name": "locate-path", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/locate-path.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "3.0.0" +} diff --git a/node_modules/read-pkg-up/node_modules/p-locate/package.json b/node_modules/read-pkg-up/node_modules/p-locate/package.json new file mode 100644 index 000000000..8b44837c0 --- /dev/null +++ b/node_modules/read-pkg-up/node_modules/p-locate/package.json @@ -0,0 +1,87 @@ +{ + "_args": [ + [ + "p-locate@3.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "p-locate@3.0.0", + "_id": "p-locate@3.0.0", + "_inBundle": false, + "_integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "_location": "/read-pkg-up/p-locate", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "p-locate@3.0.0", + "name": "p-locate", + "escapedName": "p-locate", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/read-pkg-up/locate-path" + ], + "_resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/p-locate/issues" + }, + "dependencies": { + "p-limit": "^2.0.0" + }, + "description": "Get the first fulfilled promise that satisfies the provided testing function", + "devDependencies": { + "ava": "*", + "delay": "^3.0.0", + "in-range": "^1.0.0", + "time-span": "^2.0.0", + "xo": "*" + }, + "engines": { + "node": ">=6" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/p-locate#readme", + "keywords": [ + "promise", + "locate", + "find", + "finder", + "search", + "searcher", + "test", + "array", + "collection", + "iterable", + "iterator", + "race", + "fulfilled", + "fastest", + "async", + "await", + "promises", + "bluebird" + ], + "license": "MIT", + "name": "p-locate", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/p-locate.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "3.0.0" +} diff --git a/node_modules/read-pkg-up/node_modules/path-exists/package.json b/node_modules/read-pkg-up/node_modules/path-exists/package.json new file mode 100644 index 000000000..bc0bbd60a --- /dev/null +++ b/node_modules/read-pkg-up/node_modules/path-exists/package.json @@ -0,0 +1,76 @@ +{ + "_args": [ + [ + "path-exists@3.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "path-exists@3.0.0", + "_id": "path-exists@3.0.0", + "_inBundle": false, + "_integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "_location": "/read-pkg-up/path-exists", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "path-exists@3.0.0", + "name": "path-exists", + "escapedName": "path-exists", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/read-pkg-up/locate-path" + ], + "_resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/path-exists/issues" + }, + "description": "Check if a path exists", + "devDependencies": { + "ava": "*", + "xo": "*" + }, + "engines": { + "node": ">=4" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/path-exists#readme", + "keywords": [ + "path", + "exists", + "exist", + "file", + "filepath", + "fs", + "filesystem", + "file-system", + "access", + "stat" + ], + "license": "MIT", + "name": "path-exists", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/path-exists.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "3.0.0", + "xo": { + "esnext": true + } +} diff --git a/node_modules/read-pkg-up/node_modules/read-pkg/package.json b/node_modules/read-pkg-up/node_modules/read-pkg/package.json new file mode 100644 index 000000000..89eb3ea87 --- /dev/null +++ b/node_modules/read-pkg-up/node_modules/read-pkg/package.json @@ -0,0 +1,78 @@ +{ + "_args": [ + [ + "read-pkg@3.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "read-pkg@3.0.0", + "_id": "read-pkg@3.0.0", + "_inBundle": false, + "_integrity": "sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=", + "_location": "/read-pkg-up/read-pkg", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "read-pkg@3.0.0", + "name": "read-pkg", + "escapedName": "read-pkg", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/read-pkg-up" + ], + "_resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/read-pkg/issues" + }, + "dependencies": { + "load-json-file": "^4.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^3.0.0" + }, + "description": "Read a package.json file", + "devDependencies": { + "ava": "*", + "xo": "*" + }, + "engines": { + "node": ">=4" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/read-pkg#readme", + "keywords": [ + "json", + "read", + "parse", + "file", + "fs", + "graceful", + "load", + "pkg", + "package", + "normalize" + ], + "license": "MIT", + "name": "read-pkg", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/read-pkg.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "3.0.0" +} diff --git a/node_modules/read-pkg-up/package.json b/node_modules/read-pkg-up/package.json new file mode 100644 index 000000000..25fca159b --- /dev/null +++ b/node_modules/read-pkg-up/package.json @@ -0,0 +1,98 @@ +{ + "_args": [ + [ + "read-pkg-up@4.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "read-pkg-up@4.0.0", + "_id": "read-pkg-up@4.0.0", + "_inBundle": false, + "_integrity": "sha512-6etQSH7nJGsK0RbG/2TeDzZFa8shjQ1um+SwQQ5cwKy0dhSXdOncEhb1CPpvQG4h7FyOV6EB6YlV0yJvZQNAkA==", + "_location": "/read-pkg-up", + "_phantomChildren": { + "load-json-file": "4.0.0", + "normalize-package-data": "2.5.0", + "p-limit": "2.2.0", + "path-type": "3.0.0" + }, + "_requested": { + "type": "version", + "registry": true, + "raw": "read-pkg-up@4.0.0", + "name": "read-pkg-up", + "escapedName": "read-pkg-up", + "rawSpec": "4.0.0", + "saveSpec": null, + "fetchSpec": "4.0.0" + }, + "_requiredBy": [ + "/test-exclude" + ], + "_resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-4.0.0.tgz", + "_spec": "4.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/read-pkg-up/issues" + }, + "dependencies": { + "find-up": "^3.0.0", + "read-pkg": "^3.0.0" + }, + "description": "Read the closest package.json file", + "devDependencies": { + "ava": "*", + "xo": "*" + }, + "engines": { + "node": ">=6" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/read-pkg-up#readme", + "keywords": [ + "json", + "read", + "parse", + "file", + "fs", + "graceful", + "load", + "pkg", + "package", + "find", + "up", + "find-up", + "findup", + "look-up", + "look", + "search", + "match", + "resolve", + "parent", + "parents", + "folder", + "directory", + "dir", + "walk", + "walking", + "path" + ], + "license": "MIT", + "name": "read-pkg-up", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/read-pkg-up.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "4.0.0" +} diff --git a/node_modules/read-pkg/node_modules/parse-json/package.json b/node_modules/read-pkg/node_modules/parse-json/package.json new file mode 100644 index 000000000..cd5fb39a9 --- /dev/null +++ b/node_modules/read-pkg/node_modules/parse-json/package.json @@ -0,0 +1,80 @@ +{ + "_args": [ + [ + "parse-json@5.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "parse-json@5.0.0", + "_id": "parse-json@5.0.0", + "_inBundle": false, + "_integrity": "sha512-OOY5b7PAEFV0E2Fir1KOkxchnZNCdowAJgQ5NuxjpBKTRP3pQhwkrkxqQjeoKJ+fO7bCpmIZaogI4eZGDMEGOw==", + "_location": "/read-pkg/parse-json", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "parse-json@5.0.0", + "name": "parse-json", + "escapedName": "parse-json", + "rawSpec": "5.0.0", + "saveSpec": null, + "fetchSpec": "5.0.0" + }, + "_requiredBy": [ + "/read-pkg" + ], + "_resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.0.0.tgz", + "_spec": "5.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/parse-json/issues" + }, + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1", + "lines-and-columns": "^1.1.6" + }, + "description": "Parse JSON with more helpful errors", + "devDependencies": { + "ava": "^1.4.1", + "nyc": "^14.1.1", + "xo": "^0.24.0" + }, + "engines": { + "node": ">=8" + }, + "files": [ + "index.js", + "vendor" + ], + "homepage": "https://github.com/sindresorhus/parse-json#readme", + "keywords": [ + "parse", + "json", + "graceful", + "error", + "message", + "humanize", + "friendly", + "helpful", + "string" + ], + "license": "MIT", + "name": "parse-json", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/parse-json.git" + }, + "scripts": { + "test": "xo && nyc ava" + }, + "version": "5.0.0" +} diff --git a/node_modules/read-pkg/package.json b/node_modules/read-pkg/package.json new file mode 100644 index 000000000..c660f79c6 --- /dev/null +++ b/node_modules/read-pkg/package.json @@ -0,0 +1,90 @@ +{ + "_args": [ + [ + "read-pkg@5.2.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "read-pkg@5.2.0", + "_id": "read-pkg@5.2.0", + "_inBundle": false, + "_integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "_location": "/read-pkg", + "_phantomChildren": { + "@babel/code-frame": "7.5.5", + "error-ex": "1.3.2", + "json-parse-better-errors": "1.0.2", + "lines-and-columns": "1.1.6" + }, + "_requested": { + "type": "version", + "registry": true, + "raw": "read-pkg@5.2.0", + "name": "read-pkg", + "escapedName": "read-pkg", + "rawSpec": "5.2.0", + "saveSpec": null, + "fetchSpec": "5.2.0" + }, + "_requiredBy": [ + "/husky" + ], + "_resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", + "_spec": "5.2.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/read-pkg/issues" + }, + "dependencies": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "description": "Read a package.json file", + "devDependencies": { + "ava": "^2.2.0", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, + "engines": { + "node": ">=8" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "homepage": "https://github.com/sindresorhus/read-pkg#readme", + "keywords": [ + "json", + "read", + "parse", + "file", + "fs", + "graceful", + "load", + "package", + "normalize" + ], + "license": "MIT", + "name": "read-pkg", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/read-pkg.git" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "5.2.0", + "xo": { + "ignores": [ + "test/test.js" + ] + } +} diff --git a/node_modules/readable-stream/package.json b/node_modules/readable-stream/package.json new file mode 100644 index 000000000..a5c2b4205 --- /dev/null +++ b/node_modules/readable-stream/package.json @@ -0,0 +1,85 @@ +{ + "_args": [ + [ + "readable-stream@2.3.6", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "readable-stream@2.3.6", + "_id": "readable-stream@2.3.6", + "_inBundle": false, + "_integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", + "_location": "/readable-stream", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "readable-stream@2.3.6", + "name": "readable-stream", + "escapedName": "readable-stream", + "rawSpec": "2.3.6", + "saveSpec": null, + "fetchSpec": "2.3.6" + }, + "_requiredBy": [ + "/merge-stream" + ], + "_resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", + "_spec": "2.3.6", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "browser": { + "util": false, + "./readable.js": "./readable-browser.js", + "./writable.js": "./writable-browser.js", + "./duplex.js": "./duplex-browser.js", + "./lib/internal/streams/stream.js": "./lib/internal/streams/stream-browser.js" + }, + "bugs": { + "url": "https://github.com/nodejs/readable-stream/issues" + }, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "description": "Streams3, a user-land copy of the stream library from Node.js", + "devDependencies": { + "assert": "^1.4.0", + "babel-polyfill": "^6.9.1", + "buffer": "^4.9.0", + "lolex": "^2.3.2", + "nyc": "^6.4.0", + "tap": "^0.7.0", + "tape": "^4.8.0" + }, + "homepage": "https://github.com/nodejs/readable-stream#readme", + "keywords": [ + "readable", + "stream", + "pipe" + ], + "license": "MIT", + "main": "readable.js", + "name": "readable-stream", + "nyc": { + "include": [ + "lib/**.js" + ] + }, + "repository": { + "type": "git", + "url": "git://github.com/nodejs/readable-stream.git" + }, + "scripts": { + "ci": "tap test/parallel/*.js test/ours/*.js --tap | tee test.tap && node test/verify-dependencies.js", + "cover": "nyc npm test", + "report": "nyc report --reporter=lcov", + "test": "tap test/parallel/*.js test/ours/*.js && node test/verify-dependencies.js" + }, + "version": "2.3.6" +} diff --git a/node_modules/realpath-native/package.json b/node_modules/realpath-native/package.json new file mode 100644 index 000000000..c29ac7755 --- /dev/null +++ b/node_modules/realpath-native/package.json @@ -0,0 +1,102 @@ +{ + "_args": [ + [ + "realpath-native@1.1.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "realpath-native@1.1.0", + "_id": "realpath-native@1.1.0", + "_inBundle": false, + "_integrity": "sha512-wlgPA6cCIIg9gKz0fgAPjnzh4yR/LnXovwuo9hvyGvx3h8nX4+/iLZplfUWasXpqD8BdnGnP5njOFjkUwPzvjA==", + "_location": "/realpath-native", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "realpath-native@1.1.0", + "name": "realpath-native", + "escapedName": "realpath-native", + "rawSpec": "1.1.0", + "saveSpec": null, + "fetchSpec": "1.1.0" + }, + "_requiredBy": [ + "/@jest/core", + "/@jest/transform", + "/jest-config", + "/jest-resolve", + "/jest-runtime", + "/jest/jest-cli" + ], + "_resolved": "https://registry.npmjs.org/realpath-native/-/realpath-native-1.1.0.tgz", + "_spec": "1.1.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Simen Bekkhus", + "email": "sbekkhus91@gmail.com" + }, + "bugs": { + "url": "https://github.com/SimenB/realpath-native/issues" + }, + "commitlint": { + "extends": [ + "@commitlint/config-conventional" + ] + }, + "dependencies": { + "util.promisify": "^1.0.0" + }, + "description": "Use the system's native `realpath`", + "devDependencies": { + "@commitlint/cli": "^6.0.2", + "@commitlint/config-conventional": "^6.0.2", + "ava": "^0.25.0", + "eslint": "^4.13.1", + "eslint-config-simenb-base": "^14.0.0", + "eslint-config-simenb-node": "^0.4.11", + "husky": "^0.14.3", + "lint-staged": "^6.0.0", + "prettier": "^1.16.4" + }, + "engines": { + "node": ">=4" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "homepage": "https://github.com/SimenB/realpath-native#readme", + "keywords": [ + "realpath" + ], + "license": "MIT", + "lint-staged": { + "*.js": [ + "eslint --fix", + "git add" + ], + "*.{md,json,ts}": [ + "prettier --write", + "git add" + ] + }, + "main": "index.js", + "name": "realpath-native", + "prettier": { + "proseWrap": "always", + "singleQuote": true, + "trailingComma": "es5" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/SimenB/realpath-native.git" + }, + "scripts": { + "lint": "eslint .", + "test": "eslint . && ava" + }, + "types": "index.d.ts", + "version": "1.1.0" +} diff --git a/node_modules/regex-not/package.json b/node_modules/regex-not/package.json new file mode 100644 index 000000000..e738fcee0 --- /dev/null +++ b/node_modules/regex-not/package.json @@ -0,0 +1,102 @@ +{ + "_args": [ + [ + "regex-not@1.0.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "regex-not@1.0.2", + "_id": "regex-not@1.0.2", + "_inBundle": false, + "_integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "_location": "/regex-not", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "regex-not@1.0.2", + "name": "regex-not", + "escapedName": "regex-not", + "rawSpec": "1.0.2", + "saveSpec": null, + "fetchSpec": "1.0.2" + }, + "_requiredBy": [ + "/expand-brackets", + "/extglob", + "/micromatch", + "/nanomatch", + "/to-regex" + ], + "_resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", + "_spec": "1.0.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/regex-not/issues" + }, + "dependencies": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "description": "Create a javascript regular expression for matching everything except for the given string.", + "devDependencies": { + "gulp-format-md": "^1.0.0", + "mocha": "^3.5.3" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/regex-not", + "keywords": [ + "exec", + "match", + "negate", + "negation", + "not", + "regex", + "regular expression", + "test" + ], + "license": "MIT", + "main": "index.js", + "name": "regex-not", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/regex-not.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "related": { + "list": [ + "regex-cache", + "to-regex" + ] + }, + "reflinks": [ + "verb", + "verb-generate-readme" + ], + "lint": { + "reflinks": true + } + }, + "version": "1.0.2" +} diff --git a/node_modules/remove-trailing-separator/package.json b/node_modules/remove-trailing-separator/package.json new file mode 100644 index 000000000..a220b992d --- /dev/null +++ b/node_modules/remove-trailing-separator/package.json @@ -0,0 +1,68 @@ +{ + "_args": [ + [ + "remove-trailing-separator@1.1.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "remove-trailing-separator@1.1.0", + "_id": "remove-trailing-separator@1.1.0", + "_inBundle": false, + "_integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=", + "_location": "/remove-trailing-separator", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "remove-trailing-separator@1.1.0", + "name": "remove-trailing-separator", + "escapedName": "remove-trailing-separator", + "rawSpec": "1.1.0", + "saveSpec": null, + "fetchSpec": "1.1.0" + }, + "_requiredBy": [ + "/normalize-path" + ], + "_resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "_spec": "1.1.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "darsain" + }, + "bugs": { + "url": "https://github.com/darsain/remove-trailing-separator/issues" + }, + "description": "Removes separators from the end of the string.", + "devDependencies": { + "ava": "^0.16.0", + "coveralls": "^2.11.14", + "nyc": "^8.3.0", + "xo": "^0.16.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/darsain/remove-trailing-separator#readme", + "keywords": [ + "remove", + "strip", + "trailing", + "separator" + ], + "license": "ISC", + "main": "index.js", + "name": "remove-trailing-separator", + "repository": { + "type": "git", + "url": "git+https://github.com/darsain/remove-trailing-separator.git" + }, + "scripts": { + "lint": "xo", + "pretest": "npm run lint", + "report": "nyc report --reporter=html", + "test": "nyc ava" + }, + "version": "1.1.0" +} diff --git a/node_modules/repeat-element/package.json b/node_modules/repeat-element/package.json new file mode 100644 index 000000000..a270914ee --- /dev/null +++ b/node_modules/repeat-element/package.json @@ -0,0 +1,84 @@ +{ + "_args": [ + [ + "repeat-element@1.1.3", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "repeat-element@1.1.3", + "_id": "repeat-element@1.1.3", + "_inBundle": false, + "_integrity": "sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==", + "_location": "/repeat-element", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "repeat-element@1.1.3", + "name": "repeat-element", + "escapedName": "repeat-element", + "rawSpec": "1.1.3", + "saveSpec": null, + "fetchSpec": "1.1.3" + }, + "_requiredBy": [ + "/braces" + ], + "_resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz", + "_spec": "1.1.3", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/repeat-element/issues" + }, + "description": "Create an array by repeating the given value n times.", + "devDependencies": { + "benchmarked": "^2.0.0", + "chalk": "^2.4.1", + "glob": "^7.1.2", + "gulp-format-md": "^1.0.0", + "minimist": "^1.2.0", + "mocha": "^3.5.3" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/repeat-element", + "keywords": [ + "array", + "element", + "repeat", + "string" + ], + "license": "MIT", + "main": "index.js", + "name": "repeat-element", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/repeat-element.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "lint": { + "reflinks": true + } + }, + "version": "1.1.3" +} diff --git a/node_modules/repeat-string/package.json b/node_modules/repeat-string/package.json new file mode 100644 index 000000000..53091f27e --- /dev/null +++ b/node_modules/repeat-string/package.json @@ -0,0 +1,133 @@ +{ + "_args": [ + [ + "repeat-string@1.6.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "repeat-string@1.6.1", + "_id": "repeat-string@1.6.1", + "_inBundle": false, + "_integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", + "_location": "/repeat-string", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "repeat-string@1.6.1", + "name": "repeat-string", + "escapedName": "repeat-string", + "rawSpec": "1.6.1", + "saveSpec": null, + "fetchSpec": "1.6.1" + }, + "_requiredBy": [ + "/fill-range", + "/to-regex-range" + ], + "_resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "_spec": "1.6.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "http://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/repeat-string/issues" + }, + "contributors": [ + { + "name": "Brian Woodward", + "email": "brian.woodward@gmail.com", + "url": "https://github.com/doowb" + }, + { + "name": "Jon Schlinkert", + "email": "jon.schlinkert@sellside.com", + "url": "http://twitter.com/jonschlinkert" + }, + { + "name": "Linus Unnebäck", + "email": "linus@folkdatorn.se", + "url": "http://linus.unnebäck.se" + }, + { + "name": "Thijs Busser", + "email": "tbusser@gmail.com", + "url": "http://tbusser.net" + }, + { + "name": "Titus", + "email": "tituswormer@gmail.com", + "url": "wooorm.com" + } + ], + "description": "Repeat the given string n times. Fastest implementation for repeating a string.", + "devDependencies": { + "ansi-cyan": "^0.1.1", + "benchmarked": "^0.2.5", + "gulp-format-md": "^0.1.11", + "isobject": "^2.1.0", + "mocha": "^3.1.2", + "repeating": "^3.0.0", + "text-table": "^0.2.0", + "yargs-parser": "^4.0.2" + }, + "engines": { + "node": ">=0.10" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/repeat-string", + "keywords": [ + "fast", + "fastest", + "fill", + "left", + "left-pad", + "multiple", + "pad", + "padding", + "repeat", + "repeating", + "repetition", + "right", + "right-pad", + "string", + "times" + ], + "license": "MIT", + "main": "index.js", + "name": "repeat-string", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/repeat-string.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "related": { + "list": [ + "repeat-element" + ] + }, + "helpers": [ + "./benchmark/helper.js" + ], + "reflinks": [ + "verb" + ] + }, + "version": "1.6.1" +} diff --git a/node_modules/request-promise-core/package.json b/node_modules/request-promise-core/package.json new file mode 100644 index 000000000..ecaf79955 --- /dev/null +++ b/node_modules/request-promise-core/package.json @@ -0,0 +1,92 @@ +{ + "_args": [ + [ + "request-promise-core@1.1.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "request-promise-core@1.1.2", + "_id": "request-promise-core@1.1.2", + "_inBundle": false, + "_integrity": "sha512-UHYyq1MO8GsefGEt7EprS8UrXsm1TxEvFUX1IMTuSLU2Rh7fTIdFtl8xD7JiEYiWU2dl+NYAjCTksTehQUxPag==", + "_location": "/request-promise-core", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "request-promise-core@1.1.2", + "name": "request-promise-core", + "escapedName": "request-promise-core", + "rawSpec": "1.1.2", + "saveSpec": null, + "fetchSpec": "1.1.2" + }, + "_requiredBy": [ + "/request-promise-native" + ], + "_resolved": "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.2.tgz", + "_spec": "1.1.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Nicolai Kamenzky", + "url": "https://github.com/analog-nico" + }, + "bugs": { + "url": "https://github.com/request/promise-core/issues" + }, + "dependencies": { + "lodash": "^4.17.11" + }, + "description": "Core Promise support implementation for the simplified HTTP request client 'request'.", + "devDependencies": { + "@request/api": "^0.6.0", + "@request/client": "^0.1.0", + "bluebird": "~3.4.1", + "body-parser": "~1.15.2", + "chai": "~3.5.0", + "chalk": "~1.1.3", + "gulp": "~3.9.1", + "gulp-coveralls": "~0.1.4", + "gulp-eslint": "~2.1.0", + "gulp-istanbul": "~1.0.0", + "gulp-mocha": "~2.2.0", + "node-version": "~1.0.0", + "publish-please": "~5.4.3", + "request": "^2.34.0", + "rimraf": "~2.5.3", + "run-sequence": "~1.2.2", + "stealthy-require": "~1.0.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "homepage": "https://github.com/request/promise-core#readme", + "keywords": [ + "xhr", + "http", + "https", + "promise", + "request", + "then", + "thenable", + "core" + ], + "license": "ISC", + "main": "./lib/plumbing.js", + "name": "request-promise-core", + "peerDependencies": { + "request": "^2.34" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/request/promise-core.git" + }, + "scripts": { + "prepublish": "publish-please guard", + "publish-please": "publish-please", + "test": "gulp ci", + "test-publish": "gulp ci-no-cov" + }, + "version": "1.1.2" +} diff --git a/node_modules/request-promise-native/package.json b/node_modules/request-promise-native/package.json new file mode 100644 index 000000000..6b09d483b --- /dev/null +++ b/node_modules/request-promise-native/package.json @@ -0,0 +1,90 @@ +{ + "_args": [ + [ + "request-promise-native@1.0.7", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "request-promise-native@1.0.7", + "_id": "request-promise-native@1.0.7", + "_inBundle": false, + "_integrity": "sha512-rIMnbBdgNViL37nZ1b3L/VfPOpSi0TqVDQPAvO6U14lMzOLrt5nilxCQqtDKhZeDiW0/hkCXGoQjhgJd/tCh6w==", + "_location": "/request-promise-native", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "request-promise-native@1.0.7", + "name": "request-promise-native", + "escapedName": "request-promise-native", + "rawSpec": "1.0.7", + "saveSpec": null, + "fetchSpec": "1.0.7" + }, + "_requiredBy": [ + "/jsdom" + ], + "_resolved": "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.7.tgz", + "_spec": "1.0.7", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Nicolai Kamenzky", + "url": "https://github.com/analog-nico" + }, + "bugs": { + "url": "https://github.com/request/request-promise-native/issues" + }, + "dependencies": { + "request-promise-core": "1.1.2", + "stealthy-require": "^1.1.1", + "tough-cookie": "^2.3.3" + }, + "description": "The simplified HTTP request client 'request' with Promise support. Powered by native ES6 promises.", + "devDependencies": { + "body-parser": "~1.15.2", + "chai": "~3.5.0", + "chalk": "~1.1.3", + "gulp": "~3.9.1", + "gulp-coveralls": "~0.1.4", + "gulp-eslint": "~2.1.0", + "gulp-istanbul": "~1.0.0", + "gulp-mocha": "~2.2.0", + "lodash": "~4.13.1", + "publish-please": "~2.1.4", + "request": "^2.34.0", + "rimraf": "~2.5.3", + "run-sequence": "~1.2.2" + }, + "engines": { + "node": ">=0.12.0" + }, + "homepage": "https://github.com/request/request-promise-native#readme", + "keywords": [ + "xhr", + "http", + "https", + "promise", + "request", + "then", + "thenable", + "native" + ], + "license": "ISC", + "main": "./lib/rp.js", + "name": "request-promise-native", + "peerDependencies": { + "request": "^2.34" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/request/request-promise-native.git" + }, + "scripts": { + "prepublish": "publish-please guard", + "publish-please": "publish-please", + "test": "gulp ci", + "test-publish": "gulp ci-no-cov" + }, + "version": "1.0.7" +} diff --git a/node_modules/request/node_modules/punycode/package.json b/node_modules/request/node_modules/punycode/package.json new file mode 100644 index 000000000..0be9b4c87 --- /dev/null +++ b/node_modules/request/node_modules/punycode/package.json @@ -0,0 +1,91 @@ +{ + "_args": [ + [ + "punycode@1.4.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "punycode@1.4.1", + "_id": "punycode@1.4.1", + "_inBundle": false, + "_integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=", + "_location": "/request/punycode", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "punycode@1.4.1", + "name": "punycode", + "escapedName": "punycode", + "rawSpec": "1.4.1", + "saveSpec": null, + "fetchSpec": "1.4.1" + }, + "_requiredBy": [ + "/request/tough-cookie" + ], + "_resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "_spec": "1.4.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Mathias Bynens", + "url": "https://mathiasbynens.be/" + }, + "bugs": { + "url": "https://github.com/bestiejs/punycode.js/issues" + }, + "contributors": [ + { + "name": "Mathias Bynens", + "url": "https://mathiasbynens.be/" + }, + { + "name": "John-David Dalton", + "url": "http://allyoucanleet.com/" + } + ], + "description": "A robust Punycode converter that fully complies to RFC 3492 and RFC 5891, and works on nearly all JavaScript platforms.", + "devDependencies": { + "coveralls": "^2.11.4", + "grunt": "^0.4.5", + "grunt-contrib-uglify": "^0.11.0", + "grunt-shell": "^1.1.2", + "istanbul": "^0.4.1", + "qunit-extras": "^1.4.4", + "qunitjs": "~1.11.0", + "requirejs": "^2.1.22" + }, + "files": [ + "LICENSE-MIT.txt", + "punycode.js" + ], + "homepage": "https://mths.be/punycode", + "jspm": { + "map": { + "./punycode.js": { + "node": "@node/punycode" + } + } + }, + "keywords": [ + "punycode", + "unicode", + "idn", + "idna", + "dns", + "url", + "domain" + ], + "license": "MIT", + "main": "punycode.js", + "name": "punycode", + "repository": { + "type": "git", + "url": "git+https://github.com/bestiejs/punycode.js.git" + }, + "scripts": { + "test": "node tests/tests.js" + }, + "version": "1.4.1" +} diff --git a/node_modules/request/node_modules/tough-cookie/package.json b/node_modules/request/node_modules/tough-cookie/package.json new file mode 100644 index 000000000..ddcb9c2a8 --- /dev/null +++ b/node_modules/request/node_modules/tough-cookie/package.json @@ -0,0 +1,98 @@ +{ + "_args": [ + [ + "tough-cookie@2.4.3", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "tough-cookie@2.4.3", + "_id": "tough-cookie@2.4.3", + "_inBundle": false, + "_integrity": "sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ==", + "_location": "/request/tough-cookie", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "tough-cookie@2.4.3", + "name": "tough-cookie", + "escapedName": "tough-cookie", + "rawSpec": "2.4.3", + "saveSpec": null, + "fetchSpec": "2.4.3" + }, + "_requiredBy": [ + "/request" + ], + "_resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.3.tgz", + "_spec": "2.4.3", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jeremy Stashewsky", + "email": "jstash@gmail.com" + }, + "bugs": { + "url": "https://github.com/salesforce/tough-cookie/issues" + }, + "contributors": [ + { + "name": "Alexander Savin" + }, + { + "name": "Ian Livingstone" + }, + { + "name": "Ivan Nikulin" + }, + { + "name": "Lalit Kapoor" + }, + { + "name": "Sam Thompson" + }, + { + "name": "Sebastian Mayr" + } + ], + "dependencies": { + "psl": "^1.1.24", + "punycode": "^1.4.1" + }, + "description": "RFC6265 Cookies and Cookie Jar for node.js", + "devDependencies": { + "async": "^1.4.2", + "nyc": "^11.6.0", + "string.prototype.repeat": "^0.2.0", + "vows": "^0.8.1" + }, + "engines": { + "node": ">=0.8" + }, + "files": [ + "lib" + ], + "homepage": "https://github.com/salesforce/tough-cookie", + "keywords": [ + "HTTP", + "cookie", + "cookies", + "set-cookie", + "cookiejar", + "jar", + "RFC6265", + "RFC2965" + ], + "license": "BSD-3-Clause", + "main": "./lib/cookie", + "name": "tough-cookie", + "repository": { + "type": "git", + "url": "git://github.com/salesforce/tough-cookie.git" + }, + "scripts": { + "cover": "nyc --reporter=lcov --reporter=html vows test/*_test.js", + "test": "vows test/*_test.js" + }, + "version": "2.4.3" +} diff --git a/node_modules/request/package.json b/node_modules/request/package.json new file mode 100644 index 000000000..2f15d43ea --- /dev/null +++ b/node_modules/request/package.json @@ -0,0 +1,121 @@ +{ + "_args": [ + [ + "request@2.88.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "request@2.88.0", + "_id": "request@2.88.0", + "_inBundle": false, + "_integrity": "sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg==", + "_location": "/request", + "_phantomChildren": { + "psl": "1.2.0" + }, + "_requested": { + "type": "version", + "registry": true, + "raw": "request@2.88.0", + "name": "request", + "escapedName": "request", + "rawSpec": "2.88.0", + "saveSpec": null, + "fetchSpec": "2.88.0" + }, + "_requiredBy": [ + "/jsdom" + ], + "_resolved": "https://registry.npmjs.org/request/-/request-2.88.0.tgz", + "_spec": "2.88.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Mikeal Rogers", + "email": "mikeal.rogers@gmail.com" + }, + "bugs": { + "url": "http://github.com/request/request/issues" + }, + "dependencies": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.0", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.4.3", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + }, + "description": "Simplified HTTP request client.", + "devDependencies": { + "bluebird": "^3.2.1", + "browserify": "^13.0.1", + "browserify-istanbul": "^2.0.0", + "buffer-equal": "^1.0.0", + "codecov": "^3.0.4", + "coveralls": "^3.0.2", + "function-bind": "^1.0.2", + "istanbul": "^0.4.0", + "karma": "^3.0.0", + "karma-browserify": "^5.0.1", + "karma-cli": "^1.0.0", + "karma-coverage": "^1.0.0", + "karma-phantomjs-launcher": "^1.0.0", + "karma-tap": "^3.0.1", + "phantomjs-prebuilt": "^2.1.3", + "rimraf": "^2.2.8", + "server-destroy": "^1.0.1", + "standard": "^9.0.0", + "tape": "^4.6.0", + "taper": "^0.5.0" + }, + "engines": { + "node": ">= 4" + }, + "files": [ + "lib/", + "index.js", + "request.js" + ], + "greenkeeper": { + "ignore": [ + "hawk", + "har-validator" + ] + }, + "homepage": "https://github.com/request/request#readme", + "keywords": [ + "http", + "simple", + "util", + "utility" + ], + "license": "Apache-2.0", + "main": "index.js", + "name": "request", + "repository": { + "type": "git", + "url": "git+https://github.com/request/request.git" + }, + "scripts": { + "lint": "standard", + "test": "npm run lint && npm run test-ci && npm run test-browser", + "test-browser": "node tests/browser/start.js", + "test-ci": "taper tests/test-*.js", + "test-cov": "istanbul cover tape tests/test-*.js" + }, + "version": "2.88.0" +} diff --git a/node_modules/require-directory/package.json b/node_modules/require-directory/package.json new file mode 100644 index 000000000..36ec187eb --- /dev/null +++ b/node_modules/require-directory/package.json @@ -0,0 +1,73 @@ +{ + "_args": [ + [ + "require-directory@2.1.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "require-directory@2.1.1", + "_id": "require-directory@2.1.1", + "_inBundle": false, + "_integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", + "_location": "/require-directory", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "require-directory@2.1.1", + "name": "require-directory", + "escapedName": "require-directory", + "rawSpec": "2.1.1", + "saveSpec": null, + "fetchSpec": "2.1.1" + }, + "_requiredBy": [ + "/yargs" + ], + "_resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "_spec": "2.1.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Troy Goode", + "email": "troygoode@gmail.com", + "url": "http://github.com/troygoode/" + }, + "bugs": { + "url": "http://github.com/troygoode/node-require-directory/issues/" + }, + "contributors": [ + { + "name": "Troy Goode", + "email": "troygoode@gmail.com", + "url": "http://github.com/troygoode/" + } + ], + "description": "Recursively iterates over specified directory, require()'ing each file, and returning a nested hash structure containing those modules.", + "devDependencies": { + "jshint": "^2.6.0", + "mocha": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "homepage": "https://github.com/troygoode/node-require-directory/", + "keywords": [ + "require", + "directory", + "library", + "recursive" + ], + "license": "MIT", + "main": "index.js", + "name": "require-directory", + "repository": { + "type": "git", + "url": "git://github.com/troygoode/node-require-directory.git" + }, + "scripts": { + "lint": "jshint index.js test/test.js", + "test": "mocha" + }, + "version": "2.1.1" +} diff --git a/node_modules/require-main-filename/package.json b/node_modules/require-main-filename/package.json new file mode 100644 index 000000000..40b69753d --- /dev/null +++ b/node_modules/require-main-filename/package.json @@ -0,0 +1,67 @@ +{ + "_args": [ + [ + "require-main-filename@2.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "require-main-filename@2.0.0", + "_id": "require-main-filename@2.0.0", + "_inBundle": false, + "_integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", + "_location": "/require-main-filename", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "require-main-filename@2.0.0", + "name": "require-main-filename", + "escapedName": "require-main-filename", + "rawSpec": "2.0.0", + "saveSpec": null, + "fetchSpec": "2.0.0" + }, + "_requiredBy": [ + "/test-exclude" + ], + "_resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "_spec": "2.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Ben Coe", + "email": "ben@npmjs.com" + }, + "bugs": { + "url": "https://github.com/yargs/require-main-filename/issues" + }, + "description": "shim for require.main.filename() that works in as many environments as possible", + "devDependencies": { + "chai": "^4.0.0", + "standard": "^10.0.3", + "standard-version": "^4.0.0", + "tap": "^11.0.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/yargs/require-main-filename#readme", + "keywords": [ + "require", + "shim", + "iisnode" + ], + "license": "ISC", + "main": "index.js", + "name": "require-main-filename", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/yargs/require-main-filename.git" + }, + "scripts": { + "pretest": "standard", + "release": "standard-version", + "test": "tap --coverage test.js" + }, + "version": "2.0.0" +} diff --git a/node_modules/resolve-cwd/package.json b/node_modules/resolve-cwd/package.json new file mode 100644 index 000000000..18bb941d5 --- /dev/null +++ b/node_modules/resolve-cwd/package.json @@ -0,0 +1,77 @@ +{ + "_args": [ + [ + "resolve-cwd@2.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "resolve-cwd@2.0.0", + "_id": "resolve-cwd@2.0.0", + "_inBundle": false, + "_integrity": "sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=", + "_location": "/resolve-cwd", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "resolve-cwd@2.0.0", + "name": "resolve-cwd", + "escapedName": "resolve-cwd", + "rawSpec": "2.0.0", + "saveSpec": null, + "fetchSpec": "2.0.0" + }, + "_requiredBy": [ + "/import-local" + ], + "_resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz", + "_spec": "2.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/resolve-cwd/issues" + }, + "dependencies": { + "resolve-from": "^3.0.0" + }, + "description": "Resolve the path of a module like `require.resolve()` but from the current working directory", + "devDependencies": { + "ava": "*", + "xo": "*" + }, + "engines": { + "node": ">=4" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/resolve-cwd#readme", + "keywords": [ + "require", + "resolve", + "path", + "module", + "from", + "like", + "cwd", + "current", + "working", + "directory", + "import" + ], + "license": "MIT", + "name": "resolve-cwd", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/resolve-cwd.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "2.0.0" +} diff --git a/node_modules/resolve-from/package.json b/node_modules/resolve-from/package.json new file mode 100644 index 000000000..6e9333d10 --- /dev/null +++ b/node_modules/resolve-from/package.json @@ -0,0 +1,72 @@ +{ + "_args": [ + [ + "resolve-from@3.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "resolve-from@3.0.0", + "_id": "resolve-from@3.0.0", + "_inBundle": false, + "_integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", + "_location": "/resolve-from", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "resolve-from@3.0.0", + "name": "resolve-from", + "escapedName": "resolve-from", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/import-fresh", + "/resolve-cwd" + ], + "_resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/resolve-from/issues" + }, + "description": "Resolve the path of a module like `require.resolve()` but from a given path", + "devDependencies": { + "ava": "*", + "xo": "*" + }, + "engines": { + "node": ">=4" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/resolve-from#readme", + "keywords": [ + "require", + "resolve", + "path", + "module", + "from", + "like", + "import", + "path" + ], + "license": "MIT", + "name": "resolve-from", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/resolve-from.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "3.0.0" +} diff --git a/node_modules/resolve-url/package.json b/node_modules/resolve-url/package.json new file mode 100644 index 000000000..dc75c3b82 --- /dev/null +++ b/node_modules/resolve-url/package.json @@ -0,0 +1,72 @@ +{ + "_args": [ + [ + "resolve-url@0.2.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "resolve-url@0.2.1", + "_id": "resolve-url@0.2.1", + "_inBundle": false, + "_integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=", + "_location": "/resolve-url", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "resolve-url@0.2.1", + "name": "resolve-url", + "escapedName": "resolve-url", + "rawSpec": "0.2.1", + "saveSpec": null, + "fetchSpec": "0.2.1" + }, + "_requiredBy": [ + "/source-map-resolve" + ], + "_resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", + "_spec": "0.2.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Simon Lydell" + }, + "bugs": { + "url": "https://github.com/lydell/resolve-url/issues" + }, + "description": "Like Node.js’ `path.resolve`/`url.resolve` for the browser.", + "devDependencies": { + "jshint": "~2.4.3", + "tape": "~2.5.0", + "testling": "~1.6.0" + }, + "homepage": "https://github.com/lydell/resolve-url#readme", + "keywords": [ + "resolve", + "url" + ], + "license": "MIT", + "main": "resolve-url.js", + "name": "resolve-url", + "repository": { + "type": "git", + "url": "git+https://github.com/lydell/resolve-url.git" + }, + "scripts": { + "test": "jshint resolve-url.js test/ && testling -u" + }, + "testling": { + "files": "test/*.js", + "browsers": [ + "ie/8..latest", + "chrome/latest", + "firefox/latest", + "opera/12", + "opera/latest", + "safari/5", + "iphone/6", + "android-browser/4" + ] + }, + "version": "0.2.1" +} diff --git a/node_modules/resolve/package.json b/node_modules/resolve/package.json new file mode 100644 index 000000000..9e7ca22e8 --- /dev/null +++ b/node_modules/resolve/package.json @@ -0,0 +1,77 @@ +{ + "_args": [ + [ + "resolve@1.11.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "resolve@1.11.1", + "_id": "resolve@1.11.1", + "_inBundle": false, + "_integrity": "sha512-vIpgF6wfuJOZI7KKKSP+HmiKggadPQAdsp5HiC1mvqnfp0gF1vdwgBWZIdrVft9pgqoMFQN+R7BSWZiBxx+BBw==", + "_location": "/resolve", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "resolve@1.11.1", + "name": "resolve", + "escapedName": "resolve", + "rawSpec": "1.11.1", + "saveSpec": null, + "fetchSpec": "1.11.1" + }, + "_requiredBy": [ + "/@babel/core", + "/normalize-package-data", + "/ts-jest" + ], + "_resolved": "https://registry.npmjs.org/resolve/-/resolve-1.11.1.tgz", + "_spec": "1.11.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "bugs": { + "url": "https://github.com/browserify/resolve/issues" + }, + "dependencies": { + "path-parse": "^1.0.6" + }, + "description": "resolve like require.resolve() on behalf of files asynchronously and synchronously", + "devDependencies": { + "@ljharb/eslint-config": "^13.1.1", + "eslint": "^5.16.0", + "object-keys": "^1.1.1", + "safe-publish-latest": "^1.1.2", + "tap": "0.4.13", + "tape": "^4.10.1" + }, + "homepage": "https://github.com/browserify/resolve#readme", + "keywords": [ + "resolve", + "require", + "node", + "module" + ], + "license": "MIT", + "main": "index.js", + "name": "resolve", + "repository": { + "type": "git", + "url": "git://github.com/browserify/resolve.git" + }, + "scripts": { + "lint": "eslint .", + "posttest": "npm run test:multirepo", + "prepublish": "safe-publish-latest", + "pretest": "npm run lint", + "test": "npm run --silent tests-only", + "test:multirepo": "cd ./test/resolver/multirepo && npm install && npm test", + "tests-only": "tape test/*.js" + }, + "version": "1.11.1" +} diff --git a/node_modules/resolve/test/module_dir/zmodules/bbb/package.json b/node_modules/resolve/test/module_dir/zmodules/bbb/package.json new file mode 100644 index 000000000..c13b8cf6a --- /dev/null +++ b/node_modules/resolve/test/module_dir/zmodules/bbb/package.json @@ -0,0 +1,3 @@ +{ + "main": "main.js" +} diff --git a/node_modules/resolve/test/resolver/baz/package.json b/node_modules/resolve/test/resolver/baz/package.json new file mode 100644 index 000000000..c41e4dbf7 --- /dev/null +++ b/node_modules/resolve/test/resolver/baz/package.json @@ -0,0 +1,3 @@ +{ + "main": "quux.js" +} diff --git a/node_modules/resolve/test/resolver/browser_field/package.json b/node_modules/resolve/test/resolver/browser_field/package.json new file mode 100644 index 000000000..bf406f083 --- /dev/null +++ b/node_modules/resolve/test/resolver/browser_field/package.json @@ -0,0 +1,5 @@ +{ + "name": "browser_field", + "main": "a", + "browser": "b" +} diff --git a/node_modules/resolve/test/resolver/dot_main/package.json b/node_modules/resolve/test/resolver/dot_main/package.json new file mode 100644 index 000000000..d7f4fc807 --- /dev/null +++ b/node_modules/resolve/test/resolver/dot_main/package.json @@ -0,0 +1,3 @@ +{ + "main": "." +} diff --git a/node_modules/resolve/test/resolver/dot_slash_main/package.json b/node_modules/resolve/test/resolver/dot_slash_main/package.json new file mode 100644 index 000000000..f51287b9d --- /dev/null +++ b/node_modules/resolve/test/resolver/dot_slash_main/package.json @@ -0,0 +1,3 @@ +{ + "main": "./" +} diff --git a/node_modules/resolve/test/resolver/incorrect_main/package.json b/node_modules/resolve/test/resolver/incorrect_main/package.json new file mode 100644 index 000000000..b71880417 --- /dev/null +++ b/node_modules/resolve/test/resolver/incorrect_main/package.json @@ -0,0 +1,3 @@ +{ + "main": "wrong.js" +} diff --git a/node_modules/resolve/test/resolver/invalid_main/package.json b/node_modules/resolve/test/resolver/invalid_main/package.json new file mode 100644 index 000000000..0cf827995 --- /dev/null +++ b/node_modules/resolve/test/resolver/invalid_main/package.json @@ -0,0 +1,7 @@ +{ + "name": "invalid main", + "main": [ + "why is this a thing", + "srsly omg wtf" + ] +} diff --git a/node_modules/resolve/test/resolver/multirepo/package.json b/node_modules/resolve/test/resolver/multirepo/package.json new file mode 100644 index 000000000..8508f9d2c --- /dev/null +++ b/node_modules/resolve/test/resolver/multirepo/package.json @@ -0,0 +1,20 @@ +{ + "name": "monorepo-symlink-test", + "private": true, + "version": "0.0.0", + "description": "", + "main": "index.js", + "scripts": { + "postinstall": "lerna bootstrap", + "test": "node packages/package-a" + }, + "author": "", + "license": "MIT", + "dependencies": { + "jquery": "^3.3.1", + "resolve": "../../../" + }, + "devDependencies": { + "lerna": "^3.4.3" + } +} diff --git a/node_modules/resolve/test/resolver/multirepo/packages/package-a/package.json b/node_modules/resolve/test/resolver/multirepo/packages/package-a/package.json new file mode 100644 index 000000000..204de51e0 --- /dev/null +++ b/node_modules/resolve/test/resolver/multirepo/packages/package-a/package.json @@ -0,0 +1,14 @@ +{ + "name": "@my-scope/package-a", + "version": "0.0.0", + "private": true, + "description": "", + "license": "MIT", + "main": "index.js", + "scripts": { + "test": "echo \"Error: run tests from root\" && exit 1" + }, + "dependencies": { + "@my-scope/package-b": "^0.0.0" + } +} diff --git a/node_modules/resolve/test/resolver/multirepo/packages/package-b/package.json b/node_modules/resolve/test/resolver/multirepo/packages/package-b/package.json new file mode 100644 index 000000000..f57c3b5f5 --- /dev/null +++ b/node_modules/resolve/test/resolver/multirepo/packages/package-b/package.json @@ -0,0 +1,14 @@ +{ + "name": "@my-scope/package-b", + "private": true, + "version": "0.0.0", + "description": "", + "license": "MIT", + "main": "index.js", + "scripts": { + "test": "echo \"Error: run tests from root\" && exit 1" + }, + "dependencies": { + "@my-scope/package-a": "^0.0.0" + } +} diff --git a/node_modules/ret/package.json b/node_modules/ret/package.json new file mode 100644 index 000000000..5c1d5179c --- /dev/null +++ b/node_modules/ret/package.json @@ -0,0 +1,71 @@ +{ + "_args": [ + [ + "ret@0.1.15", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "ret@0.1.15", + "_id": "ret@0.1.15", + "_inBundle": false, + "_integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", + "_location": "/ret", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "ret@0.1.15", + "name": "ret", + "escapedName": "ret", + "rawSpec": "0.1.15", + "saveSpec": null, + "fetchSpec": "0.1.15" + }, + "_requiredBy": [ + "/safe-regex" + ], + "_resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "_spec": "0.1.15", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Roly Fentanes", + "url": "https://github.com/fent" + }, + "bugs": { + "url": "https://github.com/fent/ret.js/issues" + }, + "description": "Tokenizes a string that represents a regular expression.", + "devDependencies": { + "istanbul": "*", + "vows": "*" + }, + "directories": { + "lib": "./lib" + }, + "engines": { + "node": ">=0.12" + }, + "files": [ + "lib" + ], + "homepage": "https://github.com/fent/ret.js#readme", + "keywords": [ + "regex", + "regexp", + "regular expression", + "parser", + "tokenizer" + ], + "license": "MIT", + "main": "./lib/index.js", + "name": "ret", + "repository": { + "type": "git", + "url": "git://github.com/fent/ret.js.git" + }, + "scripts": { + "test": "istanbul cover vows -- --spec test/*-test.js" + }, + "version": "0.1.15" +} diff --git a/node_modules/rimraf/package.json b/node_modules/rimraf/package.json new file mode 100644 index 000000000..6ae2aef9a --- /dev/null +++ b/node_modules/rimraf/package.json @@ -0,0 +1,72 @@ +{ + "_args": [ + [ + "rimraf@2.6.3", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "rimraf@2.6.3", + "_id": "rimraf@2.6.3", + "_inBundle": false, + "_integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", + "_location": "/rimraf", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "rimraf@2.6.3", + "name": "rimraf", + "escapedName": "rimraf", + "rawSpec": "2.6.3", + "saveSpec": null, + "fetchSpec": "2.6.3" + }, + "_requiredBy": [ + "/@jest/core", + "/istanbul-lib-source-maps" + ], + "_resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", + "_spec": "2.6.3", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me/" + }, + "bin": { + "rimraf": "./bin.js" + }, + "bugs": { + "url": "https://github.com/isaacs/rimraf/issues" + }, + "dependencies": { + "glob": "^7.1.3" + }, + "description": "A deep deletion module for node (like `rm -rf`)", + "devDependencies": { + "mkdirp": "^0.5.1", + "tap": "^12.1.1" + }, + "files": [ + "LICENSE", + "README.md", + "bin.js", + "rimraf.js" + ], + "homepage": "https://github.com/isaacs/rimraf#readme", + "license": "ISC", + "main": "rimraf.js", + "name": "rimraf", + "repository": { + "type": "git", + "url": "git://github.com/isaacs/rimraf.git" + }, + "scripts": { + "postpublish": "git push origin --all; git push origin --tags", + "postversion": "npm publish", + "preversion": "npm test", + "test": "tap test/*.js" + }, + "version": "2.6.3" +} diff --git a/node_modules/rsvp/package.json b/node_modules/rsvp/package.json new file mode 100644 index 000000000..641ca7a3f --- /dev/null +++ b/node_modules/rsvp/package.json @@ -0,0 +1,105 @@ +{ + "_args": [ + [ + "rsvp@4.8.5", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "rsvp@4.8.5", + "_id": "rsvp@4.8.5", + "_inBundle": false, + "_integrity": "sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==", + "_location": "/rsvp", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "rsvp@4.8.5", + "name": "rsvp", + "escapedName": "rsvp", + "rawSpec": "4.8.5", + "saveSpec": null, + "fetchSpec": "4.8.5" + }, + "_requiredBy": [ + "/capture-exit" + ], + "_resolved": "https://registry.npmjs.org/rsvp/-/rsvp-4.8.5.tgz", + "_spec": "4.8.5", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Tilde, Inc. & Stefan Penner" + }, + "browser": { + "vertx": false + }, + "bugs": { + "url": "https://github.com/tildeio/rsvp.js/issues" + }, + "description": "A lightweight library that provides tools for organizing asynchronous code", + "devDependencies": { + "babel-plugin-transform-es2015-arrow-functions": "^6.22.0", + "babel-plugin-transform-es2015-block-scoping": "6.26.0", + "babel-plugin-transform-es2015-classes": "^6.24.1", + "babel-plugin-transform-es2015-computed-properties": "^6.24.1", + "babel-plugin-transform-es2015-constants": "^6.1.4", + "babel-plugin-transform-es2015-destructuring": "^6.23.0", + "babel-plugin-transform-es2015-parameters": "^6.24.1", + "babel-plugin-transform-es2015-shorthand-properties": "^6.24.1", + "babel-plugin-transform-es2015-spread": "^6.22.0", + "babel-plugin-transform-es2015-template-literals": "^6.22.0", + "babel-preset-env": "1.7.0", + "babel6-plugin-strip-class-callcheck": "^6.0.0", + "broccoli-babel-transpiler": "6.4.3", + "broccoli-concat": "^3.7.1", + "broccoli-funnel": "2.0.1", + "broccoli-merge-trees": "^3.0.1", + "broccoli-rollup": "2.1.1", + "broccoli-stew": "^2.0.0", + "broccoli-uglify-js": "^0.2.0", + "broccoli-watchify": "1.0.1", + "ember-cli": "3.4.2", + "ember-cli-dependency-checker": "3.0.0", + "ember-cli-inject-live-reload": "^2.0.1", + "ember-cli-progress": "^1.0.6", + "git-repo-version": "1.0.2", + "mocha": "5.2.0", + "promises-aplus-tests": "2.1.2" + }, + "directories": { + "lib": "lib" + }, + "engines": { + "node": "6.* || >= 7.*" + }, + "files": [ + "dist", + "lib", + "!dist/test" + ], + "homepage": "https://github.com/tildeio/rsvp.js", + "jsnext:main": "dist/rsvp.es.js", + "keywords": [ + "futures", + "promises" + ], + "license": "MIT", + "main": "dist/rsvp.js", + "module": "dist/rsvp.es.js", + "name": "rsvp", + "namespace": "RSVP", + "repository": { + "type": "git", + "url": "git+https://github.com/tildeio/rsvp.js.git", + "dist": "git@github.com:components/rsvp.js.git" + }, + "scripts": { + "build": "ember build --environment production", + "start": "ember s", + "test": "ember test", + "test:node": "ember test --launch Mocha", + "test:server": "ember test --server" + }, + "version": "4.8.5" +} diff --git a/node_modules/run-node/package.json b/node_modules/run-node/package.json new file mode 100644 index 000000000..e7098ece8 --- /dev/null +++ b/node_modules/run-node/package.json @@ -0,0 +1,77 @@ +{ + "_args": [ + [ + "run-node@1.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "run-node@1.0.0", + "_id": "run-node@1.0.0", + "_inBundle": false, + "_integrity": "sha512-kc120TBlQ3mih1LSzdAJXo4xn/GWS2ec0l3S+syHDXP9uRr0JAT8Qd3mdMuyjqCzeZktgP3try92cEgf9Nks8A==", + "_location": "/run-node", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "run-node@1.0.0", + "name": "run-node", + "escapedName": "run-node", + "rawSpec": "1.0.0", + "saveSpec": null, + "fetchSpec": "1.0.0" + }, + "_requiredBy": [ + "/husky" + ], + "_resolved": "https://registry.npmjs.org/run-node/-/run-node-1.0.0.tgz", + "_spec": "1.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bin": { + "run-node": "run-node" + }, + "bugs": { + "url": "https://github.com/sindresorhus/run-node/issues" + }, + "description": "Run the Node.js binary no matter what", + "engines": { + "node": ">=4" + }, + "files": [ + "run-node" + ], + "homepage": "https://github.com/sindresorhus/run-node#readme", + "keywords": [ + "run", + "node", + "nodejs", + "node.js", + "find", + "binary", + "bin", + "execute", + "which", + "detect", + "path", + "env", + "bash", + "shell", + "sh" + ], + "license": "MIT", + "name": "run-node", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/run-node.git" + }, + "scripts": { + "test": "./run-node --version" + }, + "version": "1.0.0" +} diff --git a/node_modules/safe-buffer/package.json b/node_modules/safe-buffer/package.json new file mode 100644 index 000000000..31ff63dc2 --- /dev/null +++ b/node_modules/safe-buffer/package.json @@ -0,0 +1,70 @@ +{ + "_args": [ + [ + "safe-buffer@5.1.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "safe-buffer@5.1.2", + "_id": "safe-buffer@5.1.2", + "_inBundle": false, + "_integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "_location": "/safe-buffer", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "safe-buffer@5.1.2", + "name": "safe-buffer", + "escapedName": "safe-buffer", + "rawSpec": "5.1.2", + "saveSpec": null, + "fetchSpec": "5.1.2" + }, + "_requiredBy": [ + "/convert-source-map", + "/readable-stream", + "/request", + "/string_decoder", + "/tunnel-agent" + ], + "_resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "_spec": "5.1.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Feross Aboukhadijeh", + "email": "feross@feross.org", + "url": "http://feross.org" + }, + "bugs": { + "url": "https://github.com/feross/safe-buffer/issues" + }, + "description": "Safer Node.js Buffer API", + "devDependencies": { + "standard": "*", + "tape": "^4.0.0" + }, + "homepage": "https://github.com/feross/safe-buffer", + "keywords": [ + "buffer", + "buffer allocate", + "node security", + "safe", + "safe-buffer", + "security", + "uninitialized" + ], + "license": "MIT", + "main": "index.js", + "name": "safe-buffer", + "repository": { + "type": "git", + "url": "git://github.com/feross/safe-buffer.git" + }, + "scripts": { + "test": "standard && tape test/*.js" + }, + "types": "index.d.ts", + "version": "5.1.2" +} diff --git a/node_modules/safe-regex/package.json b/node_modules/safe-regex/package.json new file mode 100644 index 000000000..2dc72db80 --- /dev/null +++ b/node_modules/safe-regex/package.json @@ -0,0 +1,78 @@ +{ + "_args": [ + [ + "safe-regex@1.1.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "safe-regex@1.1.0", + "_id": "safe-regex@1.1.0", + "_inBundle": false, + "_integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", + "_location": "/safe-regex", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "safe-regex@1.1.0", + "name": "safe-regex", + "escapedName": "safe-regex", + "rawSpec": "1.1.0", + "saveSpec": null, + "fetchSpec": "1.1.0" + }, + "_requiredBy": [ + "/regex-not", + "/to-regex" + ], + "_resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "_spec": "1.1.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "bugs": { + "url": "https://github.com/substack/safe-regex/issues" + }, + "dependencies": { + "ret": "~0.1.10" + }, + "description": "detect possibly catastrophic, exponential-time regular expressions", + "devDependencies": { + "tape": "^3.5.0" + }, + "homepage": "https://github.com/substack/safe-regex", + "keywords": [ + "catastrophic", + "exponential", + "regex", + "safe", + "sandbox" + ], + "license": "MIT", + "main": "index.js", + "name": "safe-regex", + "repository": { + "type": "git", + "url": "git://github.com/substack/safe-regex.git" + }, + "scripts": { + "test": "tape test/*.js" + }, + "testling": { + "files": "test/*.js", + "browsers": [ + "ie/8", + "ie/9", + "ie/10", + "firefox/latest", + "chrome/latest", + "opera/latest", + "safari/latest" + ] + }, + "version": "1.1.0" +} diff --git a/node_modules/safer-buffer/package.json b/node_modules/safer-buffer/package.json new file mode 100644 index 000000000..bc233ed60 --- /dev/null +++ b/node_modules/safer-buffer/package.json @@ -0,0 +1,67 @@ +{ + "_args": [ + [ + "safer-buffer@2.1.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "safer-buffer@2.1.2", + "_id": "safer-buffer@2.1.2", + "_inBundle": false, + "_integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "_location": "/safer-buffer", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "safer-buffer@2.1.2", + "name": "safer-buffer", + "escapedName": "safer-buffer", + "rawSpec": "2.1.2", + "saveSpec": null, + "fetchSpec": "2.1.2" + }, + "_requiredBy": [ + "/asn1", + "/ecc-jsbn", + "/iconv-lite", + "/sshpk" + ], + "_resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "_spec": "2.1.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Nikita Skovoroda", + "email": "chalkerx@gmail.com", + "url": "https://github.com/ChALkeR" + }, + "bugs": { + "url": "https://github.com/ChALkeR/safer-buffer/issues" + }, + "description": "Modern Buffer API polyfill without footguns", + "devDependencies": { + "standard": "^11.0.1", + "tape": "^4.9.0" + }, + "files": [ + "Porting-Buffer.md", + "Readme.md", + "tests.js", + "dangerous.js", + "safer.js" + ], + "homepage": "https://github.com/ChALkeR/safer-buffer#readme", + "license": "MIT", + "main": "safer.js", + "name": "safer-buffer", + "repository": { + "type": "git", + "url": "git+https://github.com/ChALkeR/safer-buffer.git" + }, + "scripts": { + "browserify-test": "browserify --external tape tests.js > browserify-tests.js && tape browserify-tests.js", + "test": "standard && tape tests.js" + }, + "version": "2.1.2" +} diff --git a/node_modules/sane/package.json b/node_modules/sane/package.json new file mode 100644 index 000000000..1c1330201 --- /dev/null +++ b/node_modules/sane/package.json @@ -0,0 +1,88 @@ +{ + "_args": [ + [ + "sane@4.1.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "sane@4.1.0", + "_id": "sane@4.1.0", + "_inBundle": false, + "_integrity": "sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==", + "_location": "/sane", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "sane@4.1.0", + "name": "sane", + "escapedName": "sane", + "rawSpec": "4.1.0", + "saveSpec": null, + "fetchSpec": "4.1.0" + }, + "_requiredBy": [ + "/jest-haste-map" + ], + "_resolved": "https://registry.npmjs.org/sane/-/sane-4.1.0.tgz", + "_spec": "4.1.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "amasad" + }, + "bin": { + "sane": "./src/cli.js" + }, + "bugs": { + "url": "https://github.com/amasad/sane/issues" + }, + "dependencies": { + "@cnakazawa/watch": "^1.0.3", + "anymatch": "^2.0.0", + "capture-exit": "^2.0.0", + "exec-sh": "^0.3.2", + "execa": "^1.0.0", + "fb-watchman": "^2.0.0", + "micromatch": "^3.1.4", + "minimist": "^1.1.1", + "walker": "~1.0.5" + }, + "description": "Sane aims to be fast, small, and reliable file system watcher.", + "devDependencies": { + "eslint": "^5.15.1", + "mocha": "^6.0.2", + "prettier": "^1.16.4", + "rimraf": "~2.6.3", + "tmp": "0.0.33" + }, + "engines": { + "node": "6.* || 8.* || >= 10.*" + }, + "files": [ + "src", + "index.js" + ], + "homepage": "https://github.com/amasad/sane", + "keywords": [ + "watch", + "file", + "fswatcher", + "watchfile", + "fs", + "watching" + ], + "license": "MIT", + "main": "index.js", + "name": "sane", + "repository": { + "type": "git", + "url": "git+https://github.com/amasad/sane.git" + }, + "scripts": { + "format": "prettier --trailing-comma es5 --single-quote --write index.js 'src/**/*.js' 'test/**/*.js'", + "test": "npm run format && eslint src/ test/ index.js && mocha --bail test/test.js && mocha --bail test/utils-test.js && mocha --bail 'test/watchexec_*-test.js'", + "test:debug": "mocha debug --bail" + }, + "version": "4.1.0" +} diff --git a/node_modules/sax/package.json b/node_modules/sax/package.json new file mode 100644 index 000000000..2982461e0 --- /dev/null +++ b/node_modules/sax/package.json @@ -0,0 +1,65 @@ +{ + "_args": [ + [ + "sax@1.2.4", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "sax@1.2.4", + "_id": "sax@1.2.4", + "_inBundle": false, + "_integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", + "_location": "/sax", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "sax@1.2.4", + "name": "sax", + "escapedName": "sax", + "rawSpec": "1.2.4", + "saveSpec": null, + "fetchSpec": "1.2.4" + }, + "_requiredBy": [ + "/jsdom" + ], + "_resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "_spec": "1.2.4", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me/" + }, + "bugs": { + "url": "https://github.com/isaacs/sax-js/issues" + }, + "description": "An evented streaming XML parser in JavaScript", + "devDependencies": { + "standard": "^8.6.0", + "tap": "^10.5.1" + }, + "files": [ + "lib/sax.js", + "LICENSE", + "README.md" + ], + "homepage": "https://github.com/isaacs/sax-js#readme", + "license": "ISC", + "main": "lib/sax.js", + "name": "sax", + "repository": { + "type": "git", + "url": "git://github.com/isaacs/sax-js.git" + }, + "scripts": { + "postpublish": "git push origin --all; git push origin --tags", + "posttest": "standard -F test/*.js lib/*.js", + "postversion": "npm publish", + "preversion": "npm test", + "test": "tap test/*.js --cov -j4" + }, + "version": "1.2.4" +} diff --git a/node_modules/semver-compare/package.json b/node_modules/semver-compare/package.json new file mode 100644 index 000000000..0b6a61277 --- /dev/null +++ b/node_modules/semver-compare/package.json @@ -0,0 +1,63 @@ +{ + "_args": [ + [ + "semver-compare@1.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "semver-compare@1.0.0", + "_id": "semver-compare@1.0.0", + "_inBundle": false, + "_integrity": "sha1-De4hahyUGrN+nvsXiPavxf9VN/w=", + "_location": "/semver-compare", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "semver-compare@1.0.0", + "name": "semver-compare", + "escapedName": "semver-compare", + "rawSpec": "1.0.0", + "saveSpec": null, + "fetchSpec": "1.0.0" + }, + "_requiredBy": [ + "/please-upgrade-node" + ], + "_resolved": "https://registry.npmjs.org/semver-compare/-/semver-compare-1.0.0.tgz", + "_spec": "1.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "bugs": { + "url": "https://github.com/substack/semver-compare/issues" + }, + "dependencies": {}, + "description": "compare two semver version strings, returning -1, 0, or 1", + "devDependencies": { + "tape": "^3.0.0" + }, + "homepage": "https://github.com/substack/semver-compare", + "keywords": [ + "semver", + "compare", + "cmp", + "comparison", + "sort" + ], + "license": "MIT", + "main": "index.js", + "name": "semver-compare", + "repository": { + "type": "git", + "url": "git://github.com/substack/semver-compare.git" + }, + "scripts": { + "test": "tape test/*.js" + }, + "version": "1.0.0" +} diff --git a/node_modules/set-blocking/package.json b/node_modules/set-blocking/package.json new file mode 100644 index 000000000..c7229df8a --- /dev/null +++ b/node_modules/set-blocking/package.json @@ -0,0 +1,74 @@ +{ + "_args": [ + [ + "set-blocking@2.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "set-blocking@2.0.0", + "_id": "set-blocking@2.0.0", + "_inBundle": false, + "_integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", + "_location": "/set-blocking", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "set-blocking@2.0.0", + "name": "set-blocking", + "escapedName": "set-blocking", + "rawSpec": "2.0.0", + "saveSpec": null, + "fetchSpec": "2.0.0" + }, + "_requiredBy": [ + "/yargs" + ], + "_resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "_spec": "2.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Ben Coe", + "email": "ben@npmjs.com" + }, + "bugs": { + "url": "https://github.com/yargs/set-blocking/issues" + }, + "description": "set blocking stdio and stderr ensuring that terminal output does not truncate", + "devDependencies": { + "chai": "^3.5.0", + "coveralls": "^2.11.9", + "mocha": "^2.4.5", + "nyc": "^6.4.4", + "standard": "^7.0.1", + "standard-version": "^2.2.1" + }, + "files": [ + "index.js", + "LICENSE.txt" + ], + "homepage": "https://github.com/yargs/set-blocking#readme", + "keywords": [ + "flush", + "terminal", + "blocking", + "shim", + "stdio", + "stderr" + ], + "license": "ISC", + "main": "index.js", + "name": "set-blocking", + "repository": { + "type": "git", + "url": "git+https://github.com/yargs/set-blocking.git" + }, + "scripts": { + "coverage": "nyc report --reporter=text-lcov | coveralls", + "pretest": "standard", + "test": "nyc mocha ./test/*.js", + "version": "standard-version" + }, + "version": "2.0.0" +} diff --git a/node_modules/set-value/node_modules/extend-shallow/package.json b/node_modules/set-value/node_modules/extend-shallow/package.json new file mode 100644 index 000000000..4f2a618e2 --- /dev/null +++ b/node_modules/set-value/node_modules/extend-shallow/package.json @@ -0,0 +1,91 @@ +{ + "_args": [ + [ + "extend-shallow@2.0.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "extend-shallow@2.0.1", + "_id": "extend-shallow@2.0.1", + "_inBundle": false, + "_integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "_location": "/set-value/extend-shallow", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "extend-shallow@2.0.1", + "name": "extend-shallow", + "escapedName": "extend-shallow", + "rawSpec": "2.0.1", + "saveSpec": null, + "fetchSpec": "2.0.1" + }, + "_requiredBy": [ + "/set-value" + ], + "_resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "_spec": "2.0.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/extend-shallow/issues" + }, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "description": "Extend an object with the properties of additional objects. node.js/javascript util.", + "devDependencies": { + "array-slice": "^0.2.3", + "benchmarked": "^0.1.4", + "chalk": "^1.0.0", + "for-own": "^0.1.3", + "glob": "^5.0.12", + "is-plain-object": "^2.0.1", + "kind-of": "^2.0.0", + "minimist": "^1.1.1", + "mocha": "^2.2.5", + "should": "^7.0.1" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/extend-shallow", + "keywords": [ + "assign", + "extend", + "javascript", + "js", + "keys", + "merge", + "obj", + "object", + "prop", + "properties", + "property", + "props", + "shallow", + "util", + "utility", + "utils", + "value" + ], + "license": "MIT", + "main": "index.js", + "name": "extend-shallow", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/extend-shallow.git" + }, + "scripts": { + "test": "mocha" + }, + "version": "2.0.1" +} diff --git a/node_modules/set-value/package.json b/node_modules/set-value/package.json new file mode 100644 index 000000000..bacd8aad2 --- /dev/null +++ b/node_modules/set-value/package.json @@ -0,0 +1,125 @@ +{ + "_args": [ + [ + "set-value@2.0.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "set-value@2.0.1", + "_id": "set-value@2.0.1", + "_inBundle": false, + "_integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "_location": "/set-value", + "_phantomChildren": { + "is-extendable": "0.1.1" + }, + "_requested": { + "type": "version", + "registry": true, + "raw": "set-value@2.0.1", + "name": "set-value", + "escapedName": "set-value", + "rawSpec": "2.0.1", + "saveSpec": null, + "fetchSpec": "2.0.1" + }, + "_requiredBy": [ + "/cache-base", + "/union-value" + ], + "_resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "_spec": "2.0.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/set-value/issues" + }, + "contributors": [ + { + "name": "Jon Schlinkert", + "url": "http://twitter.com/jonschlinkert" + }, + { + "url": "https://github.com/wtgtybhertgeghgtwtg" + }, + { + "name": "Vadim Demedes", + "url": "https://vadimdemedes.com" + } + ], + "dependencies": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "description": "Create nested values and any intermediaries using dot notation (`'a.b.c'`) paths.", + "devDependencies": { + "gulp-format-md": "^0.1.12", + "mocha": "^3.4.2" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/set-value", + "keywords": [ + "get", + "has", + "hasown", + "key", + "keys", + "nested", + "notation", + "object", + "prop", + "properties", + "property", + "props", + "set", + "value", + "values" + ], + "license": "MIT", + "main": "index.js", + "name": "set-value", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/set-value.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "related": { + "list": [ + "assign-value", + "get-value", + "has-value", + "merge-value", + "omit-value", + "set-value", + "union-value", + "unset-value" + ] + }, + "lint": { + "reflinks": true + } + }, + "version": "2.0.1" +} diff --git a/node_modules/shebang-command/package.json b/node_modules/shebang-command/package.json new file mode 100644 index 000000000..1ad4b68fd --- /dev/null +++ b/node_modules/shebang-command/package.json @@ -0,0 +1,75 @@ +{ + "_args": [ + [ + "shebang-command@1.2.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "shebang-command@1.2.0", + "_id": "shebang-command@1.2.0", + "_inBundle": false, + "_integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "_location": "/shebang-command", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "shebang-command@1.2.0", + "name": "shebang-command", + "escapedName": "shebang-command", + "rawSpec": "1.2.0", + "saveSpec": null, + "fetchSpec": "1.2.0" + }, + "_requiredBy": [ + "/cross-spawn" + ], + "_resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "_spec": "1.2.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Kevin Martensson", + "email": "kevinmartensson@gmail.com", + "url": "github.com/kevva" + }, + "bugs": { + "url": "https://github.com/kevva/shebang-command/issues" + }, + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "description": "Get the command from a shebang", + "devDependencies": { + "ava": "*", + "xo": "*" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/kevva/shebang-command#readme", + "keywords": [ + "cmd", + "command", + "parse", + "shebang" + ], + "license": "MIT", + "name": "shebang-command", + "repository": { + "type": "git", + "url": "git+https://github.com/kevva/shebang-command.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "1.2.0", + "xo": { + "ignores": [ + "test.js" + ] + } +} diff --git a/node_modules/shebang-regex/package.json b/node_modules/shebang-regex/package.json new file mode 100644 index 000000000..96420f286 --- /dev/null +++ b/node_modules/shebang-regex/package.json @@ -0,0 +1,68 @@ +{ + "_args": [ + [ + "shebang-regex@1.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "shebang-regex@1.0.0", + "_id": "shebang-regex@1.0.0", + "_inBundle": false, + "_integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "_location": "/shebang-regex", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "shebang-regex@1.0.0", + "name": "shebang-regex", + "escapedName": "shebang-regex", + "rawSpec": "1.0.0", + "saveSpec": null, + "fetchSpec": "1.0.0" + }, + "_requiredBy": [ + "/shebang-command" + ], + "_resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "_spec": "1.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/shebang-regex/issues" + }, + "description": "Regular expression for matching a shebang", + "devDependencies": { + "ava": "0.0.4" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/shebang-regex#readme", + "keywords": [ + "re", + "regex", + "regexp", + "shebang", + "match", + "test" + ], + "license": "MIT", + "name": "shebang-regex", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/shebang-regex.git" + }, + "scripts": { + "test": "node test.js" + }, + "version": "1.0.0" +} diff --git a/node_modules/shellwords/package.json b/node_modules/shellwords/package.json new file mode 100644 index 000000000..177b74472 --- /dev/null +++ b/node_modules/shellwords/package.json @@ -0,0 +1,60 @@ +{ + "_args": [ + [ + "shellwords@0.1.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "shellwords@0.1.1", + "_id": "shellwords@0.1.1", + "_inBundle": false, + "_integrity": "sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==", + "_location": "/shellwords", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "shellwords@0.1.1", + "name": "shellwords", + "escapedName": "shellwords", + "rawSpec": "0.1.1", + "saveSpec": null, + "fetchSpec": "0.1.1" + }, + "_requiredBy": [ + "/node-notifier" + ], + "_resolved": "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz", + "_spec": "0.1.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jimmy Cuadra", + "email": "jimmy@jimmycuadra.com", + "url": "http://jimmycuadra.com/" + }, + "bugs": { + "url": "https://github.com/jimmycuadra/shellwords/issues" + }, + "dependencies": {}, + "description": "Manipulate strings according to the word parsing rules of the UNIX Bourne shell.", + "devDependencies": { + "jasmine-node": "~1.0.26", + "nodewatch": "~0.1.0" + }, + "files": [ + "lib" + ], + "homepage": "https://github.com/jimmycuadra/shellwords", + "license": "MIT", + "main": "./lib/shellwords", + "name": "shellwords", + "repository": { + "type": "git", + "url": "git://github.com/jimmycuadra/shellwords.git" + }, + "scripts": { + "test": "cake spec" + }, + "version": "0.1.1" +} diff --git a/node_modules/signal-exit/package.json b/node_modules/signal-exit/package.json new file mode 100644 index 000000000..26fbfdfd2 --- /dev/null +++ b/node_modules/signal-exit/package.json @@ -0,0 +1,71 @@ +{ + "_args": [ + [ + "signal-exit@3.0.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "signal-exit@3.0.2", + "_id": "signal-exit@3.0.2", + "_inBundle": false, + "_integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=", + "_location": "/signal-exit", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "signal-exit@3.0.2", + "name": "signal-exit", + "escapedName": "signal-exit", + "rawSpec": "3.0.2", + "saveSpec": null, + "fetchSpec": "3.0.2" + }, + "_requiredBy": [ + "/execa", + "/write-file-atomic" + ], + "_resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", + "_spec": "3.0.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Ben Coe", + "email": "ben@npmjs.com" + }, + "bugs": { + "url": "https://github.com/tapjs/signal-exit/issues" + }, + "description": "when you want to fire an event no matter how a process exits.", + "devDependencies": { + "chai": "^3.5.0", + "coveralls": "^2.11.10", + "nyc": "^8.1.0", + "standard": "^7.1.2", + "standard-version": "^2.3.0", + "tap": "^8.0.1" + }, + "files": [ + "index.js", + "signals.js" + ], + "homepage": "https://github.com/tapjs/signal-exit", + "keywords": [ + "signal", + "exit" + ], + "license": "ISC", + "main": "index.js", + "name": "signal-exit", + "repository": { + "type": "git", + "url": "git+https://github.com/tapjs/signal-exit.git" + }, + "scripts": { + "coverage": "nyc report --reporter=text-lcov | coveralls", + "pretest": "standard", + "release": "standard-version", + "test": "tap --timeout=240 ./test/*.js --cov" + }, + "version": "3.0.2" +} diff --git a/node_modules/sisteransi/package.json b/node_modules/sisteransi/package.json new file mode 100644 index 000000000..08bfbb142 --- /dev/null +++ b/node_modules/sisteransi/package.json @@ -0,0 +1,67 @@ +{ + "_args": [ + [ + "sisteransi@1.0.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "sisteransi@1.0.2", + "_id": "sisteransi@1.0.2", + "_inBundle": false, + "_integrity": "sha512-ZcYcZcT69nSLAR2oLN2JwNmLkJEKGooFMCdvOkFrToUt/WfcRWqhIg4P4KwY4dmLbuyXIx4o4YmPsvMRJYJd/w==", + "_location": "/sisteransi", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "sisteransi@1.0.2", + "name": "sisteransi", + "escapedName": "sisteransi", + "rawSpec": "1.0.2", + "saveSpec": null, + "fetchSpec": "1.0.2" + }, + "_requiredBy": [ + "/prompts" + ], + "_resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.2.tgz", + "_spec": "1.0.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Terkel Gjervig", + "email": "terkel@terkel.com", + "url": "https://terkel.com" + }, + "bugs": { + "url": "https://github.com/terkelg/sisteransi/issues" + }, + "description": "ANSI escape codes for some terminal swag", + "devDependencies": { + "tap-spec": "^5.0.0", + "tape": "^4.9.0" + }, + "files": [ + "src" + ], + "homepage": "https://github.com/terkelg/sisteransi#readme", + "keywords": [ + "ansi", + "escape codes", + "escape", + "terminal", + "style" + ], + "license": "MIT", + "main": "src/index.js", + "name": "sisteransi", + "repository": { + "type": "git", + "url": "git+https://github.com/terkelg/sisteransi.git" + }, + "scripts": { + "test": "tape test/*.js | tap-spec" + }, + "types": "./src/sisteransi.d.ts", + "version": "1.0.2" +} diff --git a/node_modules/slash/package.json b/node_modules/slash/package.json new file mode 100644 index 000000000..6da2e136f --- /dev/null +++ b/node_modules/slash/package.json @@ -0,0 +1,71 @@ +{ + "_args": [ + [ + "slash@3.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "slash@3.0.0", + "_id": "slash@3.0.0", + "_inBundle": false, + "_integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "_location": "/slash", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "slash@3.0.0", + "name": "slash", + "escapedName": "slash", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/husky" + ], + "_resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/slash/issues" + }, + "description": "Convert Windows backslash paths to slash paths", + "devDependencies": { + "ava": "^1.4.1", + "tsd": "^0.7.2", + "xo": "^0.24.0" + }, + "engines": { + "node": ">=8" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "homepage": "https://github.com/sindresorhus/slash#readme", + "keywords": [ + "path", + "seperator", + "slash", + "backslash", + "windows", + "convert" + ], + "license": "MIT", + "name": "slash", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/slash.git" + }, + "scripts": { + "test": "xo && ava && tsd" + }, + "version": "3.0.0" +} diff --git a/node_modules/snapdragon-node/node_modules/define-property/package.json b/node_modules/snapdragon-node/node_modules/define-property/package.json new file mode 100644 index 000000000..cda89d07e --- /dev/null +++ b/node_modules/snapdragon-node/node_modules/define-property/package.json @@ -0,0 +1,97 @@ +{ + "_args": [ + [ + "define-property@1.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "define-property@1.0.0", + "_id": "define-property@1.0.0", + "_inBundle": false, + "_integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "_location": "/snapdragon-node/define-property", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "define-property@1.0.0", + "name": "define-property", + "escapedName": "define-property", + "rawSpec": "1.0.0", + "saveSpec": null, + "fetchSpec": "1.0.0" + }, + "_requiredBy": [ + "/snapdragon-node" + ], + "_resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "_spec": "1.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/define-property/issues" + }, + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "description": "Define a non-enumerable property on an object.", + "devDependencies": { + "gulp-format-md": "^0.1.12", + "mocha": "^3.2.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/define-property", + "keywords": [ + "define", + "define-property", + "enumerable", + "key", + "non", + "non-enumerable", + "object", + "prop", + "property", + "value" + ], + "license": "MIT", + "main": "index.js", + "name": "define-property", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/define-property.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "related": { + "list": [ + "extend-shallow", + "merge-deep", + "assign-deep", + "mixin-deep" + ] + }, + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "lint": { + "reflinks": true + } + }, + "version": "1.0.0" +} diff --git a/node_modules/snapdragon-node/node_modules/is-accessor-descriptor/package.json b/node_modules/snapdragon-node/node_modules/is-accessor-descriptor/package.json new file mode 100644 index 000000000..5641c1abd --- /dev/null +++ b/node_modules/snapdragon-node/node_modules/is-accessor-descriptor/package.json @@ -0,0 +1,114 @@ +{ + "_args": [ + [ + "is-accessor-descriptor@1.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "is-accessor-descriptor@1.0.0", + "_id": "is-accessor-descriptor@1.0.0", + "_inBundle": false, + "_integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "_location": "/snapdragon-node/is-accessor-descriptor", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-accessor-descriptor@1.0.0", + "name": "is-accessor-descriptor", + "escapedName": "is-accessor-descriptor", + "rawSpec": "1.0.0", + "saveSpec": null, + "fetchSpec": "1.0.0" + }, + "_requiredBy": [ + "/snapdragon-node/is-descriptor" + ], + "_resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "_spec": "1.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/is-accessor-descriptor/issues" + }, + "contributors": [ + { + "name": "Jon Schlinkert", + "url": "http://twitter.com/jonschlinkert" + }, + { + "name": "Rouven Weßling", + "url": "www.rouvenwessling.de" + } + ], + "dependencies": { + "kind-of": "^6.0.0" + }, + "description": "Returns true if a value has the characteristics of a valid JavaScript accessor descriptor.", + "devDependencies": { + "gulp-format-md": "^1.0.0", + "mocha": "^3.5.3" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/is-accessor-descriptor", + "keywords": [ + "accessor", + "check", + "data", + "descriptor", + "get", + "getter", + "is", + "keys", + "object", + "properties", + "property", + "set", + "setter", + "type", + "valid", + "value" + ], + "license": "MIT", + "main": "index.js", + "name": "is-accessor-descriptor", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/is-accessor-descriptor.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "related": { + "list": [ + "is-accessor-descriptor", + "is-data-descriptor", + "is-descriptor", + "is-plain-object", + "isobject" + ] + }, + "lint": { + "reflinks": true + } + }, + "version": "1.0.0" +} diff --git a/node_modules/snapdragon-node/node_modules/is-data-descriptor/package.json b/node_modules/snapdragon-node/node_modules/is-data-descriptor/package.json new file mode 100644 index 000000000..0bed0880d --- /dev/null +++ b/node_modules/snapdragon-node/node_modules/is-data-descriptor/package.json @@ -0,0 +1,113 @@ +{ + "_args": [ + [ + "is-data-descriptor@1.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "is-data-descriptor@1.0.0", + "_id": "is-data-descriptor@1.0.0", + "_inBundle": false, + "_integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "_location": "/snapdragon-node/is-data-descriptor", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-data-descriptor@1.0.0", + "name": "is-data-descriptor", + "escapedName": "is-data-descriptor", + "rawSpec": "1.0.0", + "saveSpec": null, + "fetchSpec": "1.0.0" + }, + "_requiredBy": [ + "/snapdragon-node/is-descriptor" + ], + "_resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "_spec": "1.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/is-data-descriptor/issues" + }, + "contributors": [ + { + "name": "Jon Schlinkert", + "url": "http://twitter.com/jonschlinkert" + }, + { + "name": "Rouven Weßling", + "url": "www.rouvenwessling.de" + } + ], + "dependencies": { + "kind-of": "^6.0.0" + }, + "description": "Returns true if a value has the characteristics of a valid JavaScript data descriptor.", + "devDependencies": { + "gulp-format-md": "^1.0.0", + "mocha": "^3.5.3" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/is-data-descriptor", + "keywords": [ + "accessor", + "check", + "data", + "descriptor", + "get", + "getter", + "is", + "keys", + "object", + "properties", + "property", + "set", + "setter", + "type", + "valid", + "value" + ], + "license": "MIT", + "main": "index.js", + "name": "is-data-descriptor", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/is-data-descriptor.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "related": { + "list": [ + "is-accessor-descriptor", + "is-data-descriptor", + "is-descriptor", + "isobject" + ] + }, + "lint": { + "reflinks": true + } + }, + "version": "1.0.0" +} diff --git a/node_modules/snapdragon-node/node_modules/is-descriptor/package.json b/node_modules/snapdragon-node/node_modules/is-descriptor/package.json new file mode 100644 index 000000000..9f7005387 --- /dev/null +++ b/node_modules/snapdragon-node/node_modules/is-descriptor/package.json @@ -0,0 +1,118 @@ +{ + "_args": [ + [ + "is-descriptor@1.0.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "is-descriptor@1.0.2", + "_id": "is-descriptor@1.0.2", + "_inBundle": false, + "_integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "_location": "/snapdragon-node/is-descriptor", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-descriptor@1.0.2", + "name": "is-descriptor", + "escapedName": "is-descriptor", + "rawSpec": "1.0.2", + "saveSpec": null, + "fetchSpec": "1.0.2" + }, + "_requiredBy": [ + "/snapdragon-node/define-property" + ], + "_resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "_spec": "1.0.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/is-descriptor/issues" + }, + "contributors": [ + { + "name": "Brian Woodward", + "url": "https://twitter.com/doowb" + }, + { + "name": "Jon Schlinkert", + "url": "http://twitter.com/jonschlinkert" + }, + { + "url": "https://github.com/wtgtybhertgeghgtwtg" + } + ], + "dependencies": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "description": "Returns true if a value has the characteristics of a valid JavaScript descriptor. Works for data descriptors and accessor descriptors.", + "devDependencies": { + "gulp-format-md": "^1.0.0", + "mocha": "^3.5.3" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/is-descriptor", + "keywords": [ + "accessor", + "check", + "data", + "descriptor", + "get", + "getter", + "is", + "keys", + "object", + "properties", + "property", + "set", + "setter", + "type", + "valid", + "value" + ], + "license": "MIT", + "main": "index.js", + "name": "is-descriptor", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/is-descriptor.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "related": { + "list": [ + "is-accessor-descriptor", + "is-data-descriptor", + "is-descriptor", + "isobject" + ] + }, + "plugins": [ + "gulp-format-md" + ], + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "lint": { + "reflinks": true + } + }, + "version": "1.0.2" +} diff --git a/node_modules/snapdragon-node/package.json b/node_modules/snapdragon-node/package.json new file mode 100644 index 000000000..15996baef --- /dev/null +++ b/node_modules/snapdragon-node/package.json @@ -0,0 +1,113 @@ +{ + "_args": [ + [ + "snapdragon-node@2.1.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "snapdragon-node@2.1.1", + "_id": "snapdragon-node@2.1.1", + "_inBundle": false, + "_integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "_location": "/snapdragon-node", + "_phantomChildren": { + "kind-of": "6.0.2" + }, + "_requested": { + "type": "version", + "registry": true, + "raw": "snapdragon-node@2.1.1", + "name": "snapdragon-node", + "escapedName": "snapdragon-node", + "rawSpec": "2.1.1", + "saveSpec": null, + "fetchSpec": "2.1.1" + }, + "_requiredBy": [ + "/braces" + ], + "_resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "_spec": "2.1.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/snapdragon-node/issues" + }, + "dependencies": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "description": "Snapdragon utility for creating a new AST node in custom code, such as plugins.", + "devDependencies": { + "gulp": "^3.9.1", + "gulp-eslint": "^4.0.0", + "gulp-format-md": "^0.1.12", + "gulp-istanbul": "^1.1.2", + "gulp-mocha": "^3.0.1", + "mocha": "^3.4.2", + "snapdragon": "^0.11.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/snapdragon-node", + "keywords": [ + "ast", + "compile", + "compiler", + "convert", + "node", + "parse", + "parser", + "plugin", + "render", + "snapdragon", + "snapdragonplugin", + "token", + "transform" + ], + "license": "MIT", + "main": "index.js", + "name": "snapdragon-node", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/snapdragon-node.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "related": { + "list": [ + "breakdance", + "snapdragon", + "snapdragon-capture", + "snapdragon-cheerio", + "snapdragon-util" + ] + }, + "reflinks": [ + "verb", + "verb-generate-readme" + ], + "lint": { + "reflinks": true + } + }, + "version": "2.1.1" +} diff --git a/node_modules/snapdragon-util/node_modules/kind-of/package.json b/node_modules/snapdragon-util/node_modules/kind-of/package.json new file mode 100644 index 000000000..2c2e38410 --- /dev/null +++ b/node_modules/snapdragon-util/node_modules/kind-of/package.json @@ -0,0 +1,143 @@ +{ + "_args": [ + [ + "kind-of@3.2.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "kind-of@3.2.2", + "_id": "kind-of@3.2.2", + "_inBundle": false, + "_integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "_location": "/snapdragon-util/kind-of", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "kind-of@3.2.2", + "name": "kind-of", + "escapedName": "kind-of", + "rawSpec": "3.2.2", + "saveSpec": null, + "fetchSpec": "3.2.2" + }, + "_requiredBy": [ + "/snapdragon-util" + ], + "_resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "_spec": "3.2.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/kind-of/issues" + }, + "contributors": [ + { + "name": "David Fox-Powell", + "url": "https://dtothefp.github.io/me" + }, + { + "name": "Jon Schlinkert", + "url": "http://twitter.com/jonschlinkert" + }, + { + "name": "Ken Sheedlo", + "url": "kensheedlo.com" + }, + { + "name": "laggingreflex", + "url": "https://github.com/laggingreflex" + }, + { + "name": "Miguel Mota", + "url": "https://miguelmota.com" + }, + { + "name": "Peter deHaan", + "url": "http://about.me/peterdehaan" + } + ], + "dependencies": { + "is-buffer": "^1.1.5" + }, + "description": "Get the native type of a value.", + "devDependencies": { + "ansi-bold": "^0.1.1", + "benchmarked": "^1.0.0", + "browserify": "^14.3.0", + "glob": "^7.1.1", + "gulp-format-md": "^0.1.12", + "mocha": "^3.3.0", + "type-of": "^2.0.1", + "typeof": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/kind-of", + "keywords": [ + "arguments", + "array", + "boolean", + "check", + "date", + "function", + "is", + "is-type", + "is-type-of", + "kind", + "kind-of", + "number", + "object", + "of", + "regexp", + "string", + "test", + "type", + "type-of", + "typeof", + "types" + ], + "license": "MIT", + "main": "index.js", + "name": "kind-of", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/kind-of.git" + }, + "scripts": { + "prepublish": "browserify -o browser.js -e index.js -s index --bare", + "test": "mocha" + }, + "verb": { + "related": { + "list": [ + "is-glob", + "is-number", + "is-primitive" + ] + }, + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "lint": { + "reflinks": true + }, + "reflinks": [ + "verb" + ] + }, + "version": "3.2.2" +} diff --git a/node_modules/snapdragon-util/package.json b/node_modules/snapdragon-util/package.json new file mode 100644 index 000000000..a1484e7de --- /dev/null +++ b/node_modules/snapdragon-util/package.json @@ -0,0 +1,102 @@ +{ + "_args": [ + [ + "snapdragon-util@3.0.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "snapdragon-util@3.0.1", + "_id": "snapdragon-util@3.0.1", + "_inBundle": false, + "_integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "_location": "/snapdragon-util", + "_phantomChildren": { + "is-buffer": "1.1.6" + }, + "_requested": { + "type": "version", + "registry": true, + "raw": "snapdragon-util@3.0.1", + "name": "snapdragon-util", + "escapedName": "snapdragon-util", + "rawSpec": "3.0.1", + "saveSpec": null, + "fetchSpec": "3.0.1" + }, + "_requiredBy": [ + "/snapdragon-node" + ], + "_resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "_spec": "3.0.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/snapdragon-util/issues" + }, + "dependencies": { + "kind-of": "^3.2.0" + }, + "description": "Utilities for the snapdragon parser/compiler.", + "devDependencies": { + "define-property": "^1.0.0", + "gulp": "^3.9.1", + "gulp-eslint": "^3.0.1", + "gulp-format-md": "^0.1.12", + "gulp-istanbul": "^1.1.1", + "gulp-mocha": "^3.0.0", + "isobject": "^3.0.0", + "mocha": "^3.3.0", + "snapdragon": "^0.11.0", + "snapdragon-node": "^1.0.6" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/snapdragon-util", + "keywords": [ + "capture", + "compile", + "compiler", + "convert", + "match", + "parse", + "parser", + "plugin", + "render", + "snapdragon", + "snapdragonplugin", + "transform", + "util" + ], + "license": "MIT", + "main": "index.js", + "name": "snapdragon-util", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/snapdragon-util.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "toc": "collapsible", + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "lint": { + "reflinks": true + } + }, + "version": "3.0.1" +} diff --git a/node_modules/snapdragon/node_modules/define-property/package.json b/node_modules/snapdragon/node_modules/define-property/package.json new file mode 100644 index 000000000..5c489e718 --- /dev/null +++ b/node_modules/snapdragon/node_modules/define-property/package.json @@ -0,0 +1,86 @@ +{ + "_args": [ + [ + "define-property@0.2.5", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "define-property@0.2.5", + "_id": "define-property@0.2.5", + "_inBundle": false, + "_integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "_location": "/snapdragon/define-property", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "define-property@0.2.5", + "name": "define-property", + "escapedName": "define-property", + "rawSpec": "0.2.5", + "saveSpec": null, + "fetchSpec": "0.2.5" + }, + "_requiredBy": [ + "/snapdragon" + ], + "_resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "_spec": "0.2.5", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/define-property/issues" + }, + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "description": "Define a non-enumerable property on an object.", + "devDependencies": { + "mocha": "*", + "should": "^7.0.4" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/define-property", + "keywords": [ + "define", + "define-property", + "enumerable", + "key", + "non", + "non-enumerable", + "object", + "prop", + "property", + "value" + ], + "license": "MIT", + "main": "index.js", + "name": "define-property", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/define-property.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "related": { + "list": [ + "mixin-deep", + "mixin-object", + "delegate-object", + "forward-object" + ] + } + }, + "version": "0.2.5" +} diff --git a/node_modules/snapdragon/node_modules/extend-shallow/package.json b/node_modules/snapdragon/node_modules/extend-shallow/package.json new file mode 100644 index 000000000..f0264fcae --- /dev/null +++ b/node_modules/snapdragon/node_modules/extend-shallow/package.json @@ -0,0 +1,91 @@ +{ + "_args": [ + [ + "extend-shallow@2.0.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "extend-shallow@2.0.1", + "_id": "extend-shallow@2.0.1", + "_inBundle": false, + "_integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "_location": "/snapdragon/extend-shallow", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "extend-shallow@2.0.1", + "name": "extend-shallow", + "escapedName": "extend-shallow", + "rawSpec": "2.0.1", + "saveSpec": null, + "fetchSpec": "2.0.1" + }, + "_requiredBy": [ + "/snapdragon" + ], + "_resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "_spec": "2.0.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/extend-shallow/issues" + }, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "description": "Extend an object with the properties of additional objects. node.js/javascript util.", + "devDependencies": { + "array-slice": "^0.2.3", + "benchmarked": "^0.1.4", + "chalk": "^1.0.0", + "for-own": "^0.1.3", + "glob": "^5.0.12", + "is-plain-object": "^2.0.1", + "kind-of": "^2.0.0", + "minimist": "^1.1.1", + "mocha": "^2.2.5", + "should": "^7.0.1" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/extend-shallow", + "keywords": [ + "assign", + "extend", + "javascript", + "js", + "keys", + "merge", + "obj", + "object", + "prop", + "properties", + "property", + "props", + "shallow", + "util", + "utility", + "utils", + "value" + ], + "license": "MIT", + "main": "index.js", + "name": "extend-shallow", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/extend-shallow.git" + }, + "scripts": { + "test": "mocha" + }, + "version": "2.0.1" +} diff --git a/node_modules/snapdragon/node_modules/source-map/package.json b/node_modules/snapdragon/node_modules/source-map/package.json new file mode 100644 index 000000000..5e2d79a0c --- /dev/null +++ b/node_modules/snapdragon/node_modules/source-map/package.json @@ -0,0 +1,215 @@ +{ + "_args": [ + [ + "source-map@0.5.7", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "source-map@0.5.7", + "_id": "source-map@0.5.7", + "_inBundle": false, + "_integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "_location": "/snapdragon/source-map", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "source-map@0.5.7", + "name": "source-map", + "escapedName": "source-map", + "rawSpec": "0.5.7", + "saveSpec": null, + "fetchSpec": "0.5.7" + }, + "_requiredBy": [ + "/snapdragon" + ], + "_resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "_spec": "0.5.7", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Nick Fitzgerald", + "email": "nfitzgerald@mozilla.com" + }, + "bugs": { + "url": "https://github.com/mozilla/source-map/issues" + }, + "contributors": [ + { + "name": "Tobias Koppers", + "email": "tobias.koppers@googlemail.com" + }, + { + "name": "Duncan Beevers", + "email": "duncan@dweebd.com" + }, + { + "name": "Stephen Crane", + "email": "scrane@mozilla.com" + }, + { + "name": "Ryan Seddon", + "email": "seddon.ryan@gmail.com" + }, + { + "name": "Miles Elam", + "email": "miles.elam@deem.com" + }, + { + "name": "Mihai Bazon", + "email": "mihai.bazon@gmail.com" + }, + { + "name": "Michael Ficarra", + "email": "github.public.email@michael.ficarra.me" + }, + { + "name": "Todd Wolfson", + "email": "todd@twolfson.com" + }, + { + "name": "Alexander Solovyov", + "email": "alexander@solovyov.net" + }, + { + "name": "Felix Gnass", + "email": "fgnass@gmail.com" + }, + { + "name": "Conrad Irwin", + "email": "conrad.irwin@gmail.com" + }, + { + "name": "usrbincc", + "email": "usrbincc@yahoo.com" + }, + { + "name": "David Glasser", + "email": "glasser@davidglasser.net" + }, + { + "name": "Chase Douglas", + "email": "chase@newrelic.com" + }, + { + "name": "Evan Wallace", + "email": "evan.exe@gmail.com" + }, + { + "name": "Heather Arthur", + "email": "fayearthur@gmail.com" + }, + { + "name": "Hugh Kennedy", + "email": "hughskennedy@gmail.com" + }, + { + "name": "David Glasser", + "email": "glasser@davidglasser.net" + }, + { + "name": "Simon Lydell", + "email": "simon.lydell@gmail.com" + }, + { + "name": "Jmeas Smith", + "email": "jellyes2@gmail.com" + }, + { + "name": "Michael Z Goddard", + "email": "mzgoddard@gmail.com" + }, + { + "name": "azu", + "email": "azu@users.noreply.github.com" + }, + { + "name": "John Gozde", + "email": "john@gozde.ca" + }, + { + "name": "Adam Kirkton", + "email": "akirkton@truefitinnovation.com" + }, + { + "name": "Chris Montgomery", + "email": "christopher.montgomery@dowjones.com" + }, + { + "name": "J. Ryan Stinnett", + "email": "jryans@gmail.com" + }, + { + "name": "Jack Herrington", + "email": "jherrington@walmartlabs.com" + }, + { + "name": "Chris Truter", + "email": "jeffpalentine@gmail.com" + }, + { + "name": "Daniel Espeset", + "email": "daniel@danielespeset.com" + }, + { + "name": "Jamie Wong", + "email": "jamie.lf.wong@gmail.com" + }, + { + "name": "Eddy Bruël", + "email": "ejpbruel@mozilla.com" + }, + { + "name": "Hawken Rives", + "email": "hawkrives@gmail.com" + }, + { + "name": "Gilad Peleg", + "email": "giladp007@gmail.com" + }, + { + "name": "djchie", + "email": "djchie.dev@gmail.com" + }, + { + "name": "Gary Ye", + "email": "garysye@gmail.com" + }, + { + "name": "Nicolas Lalevée", + "email": "nicolas.lalevee@hibnet.org" + } + ], + "description": "Generates and consumes source maps", + "devDependencies": { + "doctoc": "^0.15.0", + "webpack": "^1.12.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "source-map.js", + "lib/", + "dist/source-map.debug.js", + "dist/source-map.js", + "dist/source-map.min.js", + "dist/source-map.min.js.map" + ], + "homepage": "https://github.com/mozilla/source-map", + "license": "BSD-3-Clause", + "main": "./source-map.js", + "name": "source-map", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/mozilla/source-map.git" + }, + "scripts": { + "build": "webpack --color", + "test": "npm run build && node test/run-tests.js", + "toc": "doctoc --title '## Table of Contents' README.md && doctoc --title '## Table of Contents' CONTRIBUTING.md" + }, + "typings": "source-map", + "version": "0.5.7" +} diff --git a/node_modules/snapdragon/package.json b/node_modules/snapdragon/package.json new file mode 100644 index 000000000..fb05aaf27 --- /dev/null +++ b/node_modules/snapdragon/package.json @@ -0,0 +1,130 @@ +{ + "_args": [ + [ + "snapdragon@0.8.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "snapdragon@0.8.2", + "_id": "snapdragon@0.8.2", + "_inBundle": false, + "_integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "_location": "/snapdragon", + "_phantomChildren": { + "is-descriptor": "0.1.6", + "is-extendable": "0.1.1" + }, + "_requested": { + "type": "version", + "registry": true, + "raw": "snapdragon@0.8.2", + "name": "snapdragon", + "escapedName": "snapdragon", + "rawSpec": "0.8.2", + "saveSpec": null, + "fetchSpec": "0.8.2" + }, + "_requiredBy": [ + "/braces", + "/expand-brackets", + "/extglob", + "/micromatch", + "/nanomatch" + ], + "_resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", + "_spec": "0.8.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/snapdragon/issues" + }, + "contributors": [ + { + "name": "Brian Woodward", + "url": "https://twitter.com/doowb" + }, + { + "name": "Edward Betts", + "url": "http://edwardbetts.com" + }, + { + "name": "Jon Schlinkert", + "url": "http://twitter.com/jonschlinkert" + } + ], + "dependencies": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "description": "Fast, pluggable and easy-to-use parser-renderer factory.", + "devDependencies": { + "gulp": "^3.9.1", + "gulp-eslint": "^3.0.1", + "gulp-format-md": "^0.1.10", + "gulp-istanbul": "^1.1.1", + "gulp-mocha": "^3.0.1", + "gulp-unused": "^0.2.0", + "mocha": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js", + "lib" + ], + "homepage": "https://github.com/jonschlinkert/snapdragon", + "keywords": [ + "lexer", + "snapdragon" + ], + "license": "MIT", + "main": "index.js", + "name": "snapdragon", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/snapdragon.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "related": { + "description": "These libraries use snapdragon:", + "list": [ + "braces", + "expand-brackets", + "extglob", + "micromatch" + ] + }, + "reflinks": [ + "css", + "pug", + "verb", + "verb-generate-readme" + ], + "lint": { + "reflinks": true + } + }, + "version": "0.8.2" +} diff --git a/node_modules/source-map-resolve/package.json b/node_modules/source-map-resolve/package.json new file mode 100644 index 000000000..8f899a21e --- /dev/null +++ b/node_modules/source-map-resolve/package.json @@ -0,0 +1,81 @@ +{ + "_args": [ + [ + "source-map-resolve@0.5.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "source-map-resolve@0.5.2", + "_id": "source-map-resolve@0.5.2", + "_inBundle": false, + "_integrity": "sha512-MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA==", + "_location": "/source-map-resolve", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "source-map-resolve@0.5.2", + "name": "source-map-resolve", + "escapedName": "source-map-resolve", + "rawSpec": "0.5.2", + "saveSpec": null, + "fetchSpec": "0.5.2" + }, + "_requiredBy": [ + "/snapdragon" + ], + "_resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.2.tgz", + "_spec": "0.5.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Simon Lydell" + }, + "browser": "source-map-resolve.js", + "bugs": { + "url": "https://github.com/lydell/source-map-resolve/issues" + }, + "dependencies": { + "atob": "^2.1.1", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + }, + "description": "Resolve the source map and/or sources for a generated file.", + "devDependencies": { + "Base64": "1.0.1", + "jshint": "2.9.5", + "setimmediate": "1.0.5", + "simple-asyncify": "1.0.0", + "tape": "4.9.0" + }, + "homepage": "https://github.com/lydell/source-map-resolve#readme", + "keywords": [ + "source map", + "sourcemap", + "source", + "map", + "sourceMappingURL", + "resolve", + "resolver", + "locate", + "locator", + "find", + "finder" + ], + "license": "MIT", + "main": "lib/source-map-resolve-node.js", + "name": "source-map-resolve", + "repository": { + "type": "git", + "url": "git+https://github.com/lydell/source-map-resolve.git" + }, + "scripts": { + "build": "node generate-source-map-resolve.js", + "lint": "jshint lib/ test/", + "test": "npm run lint && npm run unit", + "unit": "node test/source-map-resolve.js && node test/windows.js" + }, + "version": "0.5.2" +} diff --git a/node_modules/source-map-support/package.json b/node_modules/source-map-support/package.json new file mode 100644 index 000000000..573e0cb45 --- /dev/null +++ b/node_modules/source-map-support/package.json @@ -0,0 +1,61 @@ +{ + "_args": [ + [ + "source-map-support@0.5.12", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "source-map-support@0.5.12", + "_id": "source-map-support@0.5.12", + "_inBundle": false, + "_integrity": "sha512-4h2Pbvyy15EE02G+JOZpUCmqWJuqrs+sEkzewTm++BPi7Hvn/HwcqLAcNxYAyI0x13CpPPn+kMjl+hplXMHITQ==", + "_location": "/source-map-support", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "source-map-support@0.5.12", + "name": "source-map-support", + "escapedName": "source-map-support", + "rawSpec": "0.5.12", + "saveSpec": null, + "fetchSpec": "0.5.12" + }, + "_requiredBy": [ + "/jest-runner" + ], + "_resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.12.tgz", + "_spec": "0.5.12", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/evanw/node-source-map-support/issues" + }, + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + }, + "description": "Fixes stack traces for files with source maps", + "devDependencies": { + "browserify": "^4.2.3", + "coffeescript": "^1.12.7", + "http-server": "^0.11.1", + "mocha": "^3.5.3", + "webpack": "^1.15.0" + }, + "homepage": "https://github.com/evanw/node-source-map-support#readme", + "license": "MIT", + "main": "./source-map-support.js", + "name": "source-map-support", + "repository": { + "type": "git", + "url": "git+https://github.com/evanw/node-source-map-support.git" + }, + "scripts": { + "build": "node build.js", + "prepublish": "npm run build", + "serve-tests": "http-server -p 1336", + "test": "mocha" + }, + "version": "0.5.12" +} diff --git a/node_modules/source-map-url/package.json b/node_modules/source-map-url/package.json new file mode 100644 index 000000000..ec0bc61c7 --- /dev/null +++ b/node_modules/source-map-url/package.json @@ -0,0 +1,77 @@ +{ + "_args": [ + [ + "source-map-url@0.4.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "source-map-url@0.4.0", + "_id": "source-map-url@0.4.0", + "_inBundle": false, + "_integrity": "sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=", + "_location": "/source-map-url", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "source-map-url@0.4.0", + "name": "source-map-url", + "escapedName": "source-map-url", + "rawSpec": "0.4.0", + "saveSpec": null, + "fetchSpec": "0.4.0" + }, + "_requiredBy": [ + "/source-map-resolve" + ], + "_resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz", + "_spec": "0.4.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Simon Lydell" + }, + "bugs": { + "url": "https://github.com/lydell/source-map-url/issues" + }, + "description": "Tools for working with sourceMappingURL comments.", + "devDependencies": { + "expect.js": "~0.3.1", + "jshint": "~2.4.3", + "mocha": "~1.17.1" + }, + "homepage": "https://github.com/lydell/source-map-url#readme", + "keywords": [ + "source map", + "sourceMappingURL", + "comment", + "annotation" + ], + "license": "MIT", + "main": "source-map-url.js", + "name": "source-map-url", + "repository": { + "type": "git", + "url": "git+https://github.com/lydell/source-map-url.git" + }, + "scripts": { + "lint": "jshint source-map-url.js test/ ", + "test": "npm run lint && npm run unit", + "unit": "mocha" + }, + "testling": { + "harness": "mocha", + "files": "test/*.js", + "browsers": [ + "ie/8..latest", + "chrome/latest", + "firefox/latest", + "opera/12", + "opera/latest", + "safari/5", + "iphone/6", + "android-browser/4" + ] + }, + "version": "0.4.0" +} diff --git a/node_modules/source-map/package.json b/node_modules/source-map/package.json new file mode 100644 index 000000000..26dcee9b5 --- /dev/null +++ b/node_modules/source-map/package.json @@ -0,0 +1,224 @@ +{ + "_args": [ + [ + "source-map@0.6.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "source-map@0.6.1", + "_id": "source-map@0.6.1", + "_inBundle": false, + "_integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "_location": "/source-map", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "source-map@0.6.1", + "name": "source-map", + "escapedName": "source-map", + "rawSpec": "0.6.1", + "saveSpec": null, + "fetchSpec": "0.6.1" + }, + "_requiredBy": [ + "/@jest/reporters", + "/@jest/source-map", + "/@jest/transform", + "/escodegen", + "/handlebars", + "/istanbul-lib-source-maps", + "/jest-util", + "/source-map-support", + "/uglify-js" + ], + "_resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "_spec": "0.6.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Nick Fitzgerald", + "email": "nfitzgerald@mozilla.com" + }, + "bugs": { + "url": "https://github.com/mozilla/source-map/issues" + }, + "contributors": [ + { + "name": "Tobias Koppers", + "email": "tobias.koppers@googlemail.com" + }, + { + "name": "Duncan Beevers", + "email": "duncan@dweebd.com" + }, + { + "name": "Stephen Crane", + "email": "scrane@mozilla.com" + }, + { + "name": "Ryan Seddon", + "email": "seddon.ryan@gmail.com" + }, + { + "name": "Miles Elam", + "email": "miles.elam@deem.com" + }, + { + "name": "Mihai Bazon", + "email": "mihai.bazon@gmail.com" + }, + { + "name": "Michael Ficarra", + "email": "github.public.email@michael.ficarra.me" + }, + { + "name": "Todd Wolfson", + "email": "todd@twolfson.com" + }, + { + "name": "Alexander Solovyov", + "email": "alexander@solovyov.net" + }, + { + "name": "Felix Gnass", + "email": "fgnass@gmail.com" + }, + { + "name": "Conrad Irwin", + "email": "conrad.irwin@gmail.com" + }, + { + "name": "usrbincc", + "email": "usrbincc@yahoo.com" + }, + { + "name": "David Glasser", + "email": "glasser@davidglasser.net" + }, + { + "name": "Chase Douglas", + "email": "chase@newrelic.com" + }, + { + "name": "Evan Wallace", + "email": "evan.exe@gmail.com" + }, + { + "name": "Heather Arthur", + "email": "fayearthur@gmail.com" + }, + { + "name": "Hugh Kennedy", + "email": "hughskennedy@gmail.com" + }, + { + "name": "David Glasser", + "email": "glasser@davidglasser.net" + }, + { + "name": "Simon Lydell", + "email": "simon.lydell@gmail.com" + }, + { + "name": "Jmeas Smith", + "email": "jellyes2@gmail.com" + }, + { + "name": "Michael Z Goddard", + "email": "mzgoddard@gmail.com" + }, + { + "name": "azu", + "email": "azu@users.noreply.github.com" + }, + { + "name": "John Gozde", + "email": "john@gozde.ca" + }, + { + "name": "Adam Kirkton", + "email": "akirkton@truefitinnovation.com" + }, + { + "name": "Chris Montgomery", + "email": "christopher.montgomery@dowjones.com" + }, + { + "name": "J. Ryan Stinnett", + "email": "jryans@gmail.com" + }, + { + "name": "Jack Herrington", + "email": "jherrington@walmartlabs.com" + }, + { + "name": "Chris Truter", + "email": "jeffpalentine@gmail.com" + }, + { + "name": "Daniel Espeset", + "email": "daniel@danielespeset.com" + }, + { + "name": "Jamie Wong", + "email": "jamie.lf.wong@gmail.com" + }, + { + "name": "Eddy Bruël", + "email": "ejpbruel@mozilla.com" + }, + { + "name": "Hawken Rives", + "email": "hawkrives@gmail.com" + }, + { + "name": "Gilad Peleg", + "email": "giladp007@gmail.com" + }, + { + "name": "djchie", + "email": "djchie.dev@gmail.com" + }, + { + "name": "Gary Ye", + "email": "garysye@gmail.com" + }, + { + "name": "Nicolas Lalevée", + "email": "nicolas.lalevee@hibnet.org" + } + ], + "description": "Generates and consumes source maps", + "devDependencies": { + "doctoc": "^0.15.0", + "webpack": "^1.12.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "source-map.js", + "source-map.d.ts", + "lib/", + "dist/source-map.debug.js", + "dist/source-map.js", + "dist/source-map.min.js", + "dist/source-map.min.js.map" + ], + "homepage": "https://github.com/mozilla/source-map", + "license": "BSD-3-Clause", + "main": "./source-map.js", + "name": "source-map", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/mozilla/source-map.git" + }, + "scripts": { + "build": "webpack --color", + "test": "npm run build && node test/run-tests.js", + "toc": "doctoc --title '## Table of Contents' README.md && doctoc --title '## Table of Contents' CONTRIBUTING.md" + }, + "typings": "source-map", + "version": "0.6.1" +} diff --git a/node_modules/spdx-correct/package.json b/node_modules/spdx-correct/package.json new file mode 100644 index 000000000..4263e58eb --- /dev/null +++ b/node_modules/spdx-correct/package.json @@ -0,0 +1,92 @@ +{ + "_args": [ + [ + "spdx-correct@3.1.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "spdx-correct@3.1.0", + "_id": "spdx-correct@3.1.0", + "_inBundle": false, + "_integrity": "sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q==", + "_location": "/spdx-correct", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "spdx-correct@3.1.0", + "name": "spdx-correct", + "escapedName": "spdx-correct", + "rawSpec": "3.1.0", + "saveSpec": null, + "fetchSpec": "3.1.0" + }, + "_requiredBy": [ + "/validate-npm-package-license" + ], + "_resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.0.tgz", + "_spec": "3.1.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Kyle E. Mitchell", + "email": "kyle@kemitchell.com", + "url": "https://kemitchell.com" + }, + "bugs": { + "url": "https://github.com/jslicense/spdx-correct.js/issues" + }, + "contributors": [ + { + "name": "Kyle E. Mitchell", + "email": "kyle@kemitchell.com", + "url": "https://kemitchell.com" + }, + { + "name": "Christian Zommerfelds", + "email": "aero_super@yahoo.com" + }, + { + "name": "Tal Einat", + "email": "taleinat@gmail.com" + }, + { + "name": "Dan Butvinik", + "email": "butvinik@outlook.com" + } + ], + "dependencies": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + }, + "description": "correct invalid SPDX expressions", + "devDependencies": { + "defence-cli": "^2.0.1", + "replace-require-self": "^1.0.0", + "standard": "^11.0.0", + "standard-markdown": "^4.0.2", + "tape": "^4.9.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jslicense/spdx-correct.js#readme", + "keywords": [ + "SPDX", + "law", + "legal", + "license", + "metadata" + ], + "license": "Apache-2.0", + "name": "spdx-correct", + "repository": { + "type": "git", + "url": "git+https://github.com/jslicense/spdx-correct.js.git" + }, + "scripts": { + "lint": "standard && standard-markdown README.md", + "test": "defence README.md | replace-require-self | node && node test.js" + }, + "version": "3.1.0" +} diff --git a/node_modules/spdx-exceptions/package.json b/node_modules/spdx-exceptions/package.json new file mode 100644 index 000000000..1a85923ec --- /dev/null +++ b/node_modules/spdx-exceptions/package.json @@ -0,0 +1,53 @@ +{ + "_args": [ + [ + "spdx-exceptions@2.2.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "spdx-exceptions@2.2.0", + "_id": "spdx-exceptions@2.2.0", + "_inBundle": false, + "_integrity": "sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA==", + "_location": "/spdx-exceptions", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "spdx-exceptions@2.2.0", + "name": "spdx-exceptions", + "escapedName": "spdx-exceptions", + "rawSpec": "2.2.0", + "saveSpec": null, + "fetchSpec": "2.2.0" + }, + "_requiredBy": [ + "/spdx-expression-parse" + ], + "_resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz", + "_spec": "2.2.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "The Linux Foundation" + }, + "bugs": { + "url": "https://github.com/kemitchell/spdx-exceptions.json/issues" + }, + "contributors": [ + { + "name": "Kyle E. Mitchell", + "email": "kyle@kemitchell.com", + "url": "https://kemitchell.com/" + } + ], + "description": "list of SPDX standard license exceptions", + "homepage": "https://github.com/kemitchell/spdx-exceptions.json#readme", + "license": "CC-BY-3.0", + "name": "spdx-exceptions", + "repository": { + "type": "git", + "url": "git+https://github.com/kemitchell/spdx-exceptions.json.git" + }, + "version": "2.2.0" +} diff --git a/node_modules/spdx-expression-parse/package.json b/node_modules/spdx-expression-parse/package.json new file mode 100644 index 000000000..bc5029219 --- /dev/null +++ b/node_modules/spdx-expression-parse/package.json @@ -0,0 +1,101 @@ +{ + "_args": [ + [ + "spdx-expression-parse@3.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "spdx-expression-parse@3.0.0", + "_id": "spdx-expression-parse@3.0.0", + "_inBundle": false, + "_integrity": "sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg==", + "_location": "/spdx-expression-parse", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "spdx-expression-parse@3.0.0", + "name": "spdx-expression-parse", + "escapedName": "spdx-expression-parse", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/spdx-correct", + "/validate-npm-package-license" + ], + "_resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Kyle E. Mitchell", + "email": "kyle@kemitchell.com", + "url": "http://kemitchell.com" + }, + "bugs": { + "url": "https://github.com/jslicense/spdx-expression-parse.js/issues" + }, + "contributors": [ + { + "name": "C. Scott Ananian", + "email": "cscott@cscott.net", + "url": "http://cscott.net" + }, + { + "name": "Kyle E. Mitchell", + "email": "kyle@kemitchell.com", + "url": "https://kemitchell.com" + }, + { + "name": "Shinnosuke Watanabe", + "email": "snnskwtnb@gmail.com" + }, + { + "name": "Antoine Motet", + "email": "antoine.motet@gmail.com" + } + ], + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + }, + "description": "parse SPDX license expressions", + "devDependencies": { + "defence-cli": "^2.0.1", + "mocha": "^3.4.2", + "replace-require-self": "^1.0.0", + "standard": "^10.0.2" + }, + "files": [ + "AUTHORS", + "index.js", + "parse.js", + "scan.js" + ], + "homepage": "https://github.com/jslicense/spdx-expression-parse.js#readme", + "keywords": [ + "SPDX", + "law", + "legal", + "license", + "metadata", + "package", + "package.json", + "standards" + ], + "license": "MIT", + "name": "spdx-expression-parse", + "repository": { + "type": "git", + "url": "git+https://github.com/jslicense/spdx-expression-parse.js.git" + }, + "scripts": { + "lint": "standard", + "test": "npm run test:mocha && npm run test:readme", + "test:mocha": "mocha test/index.js", + "test:readme": "defence -i javascript README.md | replace-require-self | node" + }, + "version": "3.0.0" +} diff --git a/node_modules/spdx-license-ids/package.json b/node_modules/spdx-license-ids/package.json new file mode 100644 index 000000000..384c3e140 --- /dev/null +++ b/node_modules/spdx-license-ids/package.json @@ -0,0 +1,79 @@ +{ + "_args": [ + [ + "spdx-license-ids@3.0.5", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "spdx-license-ids@3.0.5", + "_id": "spdx-license-ids@3.0.5", + "_inBundle": false, + "_integrity": "sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q==", + "_location": "/spdx-license-ids", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "spdx-license-ids@3.0.5", + "name": "spdx-license-ids", + "escapedName": "spdx-license-ids", + "rawSpec": "3.0.5", + "saveSpec": null, + "fetchSpec": "3.0.5" + }, + "_requiredBy": [ + "/spdx-correct", + "/spdx-expression-parse" + ], + "_resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz", + "_spec": "3.0.5", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Shinnosuke Watanabe", + "url": "https://github.com/shinnn" + }, + "bugs": { + "url": "https://github.com/shinnn/spdx-license-ids/issues" + }, + "description": "A list of SPDX license identifiers", + "devDependencies": { + "@shinnn/eslint-config": "^6.8.7", + "chalk": "^2.4.1", + "eslint": "^5.10.0", + "get-spdx-license-ids": "^2.1.0", + "rmfr": "^2.0.0", + "tape": "^4.9.1" + }, + "eslintConfig": { + "extends": "@shinnn" + }, + "files": [ + "deprecated.json", + "index.json" + ], + "homepage": "https://github.com/shinnn/spdx-license-ids#readme", + "keywords": [ + "spdx", + "license", + "licenses", + "id", + "identifier", + "identifiers", + "json", + "array", + "oss" + ], + "license": "CC0-1.0", + "name": "spdx-license-ids", + "repository": { + "type": "git", + "url": "git+https://github.com/shinnn/spdx-license-ids.git" + }, + "scripts": { + "build": "node build.js", + "pretest": "eslint .", + "test": "node test.js" + }, + "version": "3.0.5" +} diff --git a/node_modules/split-string/package.json b/node_modules/split-string/package.json new file mode 100644 index 000000000..bc6bdf279 --- /dev/null +++ b/node_modules/split-string/package.json @@ -0,0 +1,107 @@ +{ + "_args": [ + [ + "split-string@3.1.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "split-string@3.1.0", + "_id": "split-string@3.1.0", + "_inBundle": false, + "_integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "_location": "/split-string", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "split-string@3.1.0", + "name": "split-string", + "escapedName": "split-string", + "rawSpec": "3.1.0", + "saveSpec": null, + "fetchSpec": "3.1.0" + }, + "_requiredBy": [ + "/braces", + "/set-value" + ], + "_resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", + "_spec": "3.1.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/split-string/issues" + }, + "contributors": [ + { + "name": "Brian Woodward", + "url": "https://twitter.com/doowb" + }, + { + "name": "Jon Schlinkert", + "url": "http://twitter.com/jonschlinkert" + } + ], + "dependencies": { + "extend-shallow": "^3.0.0" + }, + "description": "Split a string on a character except when the character is escaped.", + "devDependencies": { + "gulp-format-md": "^1.0.0", + "mocha": "^3.5.3" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/split-string", + "keywords": [ + "character", + "escape", + "split", + "string" + ], + "license": "MIT", + "main": "index.js", + "name": "split-string", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/split-string.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "toc": false, + "layout": "default", + "titles": [ + ".", + "install", + "Why use this?" + ], + "related": { + "list": [ + "deromanize", + "randomatic", + "repeat-string", + "romanize" + ] + }, + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "lint": { + "reflinks": true + } + }, + "version": "3.1.0" +} diff --git a/node_modules/sprintf-js/package.json b/node_modules/sprintf-js/package.json new file mode 100644 index 000000000..5fc7432c3 --- /dev/null +++ b/node_modules/sprintf-js/package.json @@ -0,0 +1,58 @@ +{ + "_args": [ + [ + "sprintf-js@1.0.3", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "sprintf-js@1.0.3", + "_id": "sprintf-js@1.0.3", + "_inBundle": false, + "_integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", + "_location": "/sprintf-js", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "sprintf-js@1.0.3", + "name": "sprintf-js", + "escapedName": "sprintf-js", + "rawSpec": "1.0.3", + "saveSpec": null, + "fetchSpec": "1.0.3" + }, + "_requiredBy": [ + "/argparse" + ], + "_resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "_spec": "1.0.3", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Alexandru Marasteanu", + "email": "hello@alexei.ro", + "url": "http://alexei.ro/" + }, + "bugs": { + "url": "https://github.com/alexei/sprintf.js/issues" + }, + "description": "JavaScript sprintf implementation", + "devDependencies": { + "grunt": "*", + "grunt-contrib-uglify": "*", + "grunt-contrib-watch": "*", + "mocha": "*" + }, + "homepage": "https://github.com/alexei/sprintf.js#readme", + "license": "BSD-3-Clause", + "main": "src/sprintf.js", + "name": "sprintf-js", + "repository": { + "type": "git", + "url": "git+https://github.com/alexei/sprintf.js.git" + }, + "scripts": { + "test": "mocha test/test.js" + }, + "version": "1.0.3" +} diff --git a/node_modules/sshpk/package.json b/node_modules/sshpk/package.json new file mode 100644 index 000000000..3ee4a473c --- /dev/null +++ b/node_modules/sshpk/package.json @@ -0,0 +1,100 @@ +{ + "_args": [ + [ + "sshpk@1.16.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "sshpk@1.16.1", + "_id": "sshpk@1.16.1", + "_inBundle": false, + "_integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", + "_location": "/sshpk", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "sshpk@1.16.1", + "name": "sshpk", + "escapedName": "sshpk", + "rawSpec": "1.16.1", + "saveSpec": null, + "fetchSpec": "1.16.1" + }, + "_requiredBy": [ + "/http-signature" + ], + "_resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", + "_spec": "1.16.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Joyent, Inc" + }, + "bin": { + "sshpk-conv": "bin/sshpk-conv", + "sshpk-sign": "bin/sshpk-sign", + "sshpk-verify": "bin/sshpk-verify" + }, + "bugs": { + "url": "https://github.com/arekinath/node-sshpk/issues" + }, + "contributors": [ + { + "name": "Dave Eddy", + "email": "dave@daveeddy.com" + }, + { + "name": "Mark Cavage", + "email": "mcavage@gmail.com" + }, + { + "name": "Alex Wilson", + "email": "alex@cooperi.net" + } + ], + "dependencies": { + "asn1": "~0.2.3", + "assert-plus": "^1.0.0", + "bcrypt-pbkdf": "^1.0.0", + "dashdash": "^1.12.0", + "ecc-jsbn": "~0.1.1", + "getpass": "^0.1.1", + "jsbn": "~0.1.0", + "safer-buffer": "^2.0.2", + "tweetnacl": "~0.14.0" + }, + "description": "A library for finding and using SSH public keys", + "devDependencies": { + "benchmark": "^1.0.0", + "sinon": "^1.17.2", + "tape": "^3.5.0", + "temp": "^0.8.2" + }, + "directories": { + "bin": "./bin", + "lib": "./lib", + "man": "./man/man1" + }, + "engines": { + "node": ">=0.10.0" + }, + "homepage": "https://github.com/arekinath/node-sshpk#readme", + "license": "MIT", + "main": "lib/index.js", + "man": [ + "/mnt/c/src/github/geertvdc/setup-hub/node_modules/sshpk/man/man1/sshpk-conv.1", + "/mnt/c/src/github/geertvdc/setup-hub/node_modules/sshpk/man/man1/sshpk-sign.1", + "/mnt/c/src/github/geertvdc/setup-hub/node_modules/sshpk/man/man1/sshpk-verify.1" + ], + "name": "sshpk", + "optionalDependencies": {}, + "repository": { + "type": "git", + "url": "git+https://github.com/joyent/node-sshpk.git" + }, + "scripts": { + "test": "tape test/*.js" + }, + "version": "1.16.1" +} diff --git a/node_modules/stack-utils/package.json b/node_modules/stack-utils/package.json new file mode 100644 index 000000000..c06bf6ead --- /dev/null +++ b/node_modules/stack-utils/package.json @@ -0,0 +1,72 @@ +{ + "_args": [ + [ + "stack-utils@1.0.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "stack-utils@1.0.2", + "_id": "stack-utils@1.0.2", + "_inBundle": false, + "_integrity": "sha512-MTX+MeG5U994cazkjd/9KNAapsHnibjMLnfXodlkXw76JEea0UiNzrqidzo1emMwk7w5Qhc9jd4Bn9TBb1MFwA==", + "_location": "/stack-utils", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "stack-utils@1.0.2", + "name": "stack-utils", + "escapedName": "stack-utils", + "rawSpec": "1.0.2", + "saveSpec": null, + "fetchSpec": "1.0.2" + }, + "_requiredBy": [ + "/jest-circus", + "/jest-message-util" + ], + "_resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-1.0.2.tgz", + "_spec": "1.0.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "James Talmage", + "email": "james@talmage.io", + "url": "github.com/jamestalmage" + }, + "bugs": { + "url": "https://github.com/tapjs/stack-utils/issues" + }, + "dependencies": {}, + "description": "Captures and cleans stack traces", + "devDependencies": { + "bluebird": "^3.1.1", + "coveralls": "^2.11.6", + "flatten": "0.0.1", + "nested-error-stacks": "^2.0.0", + "pify": "^2.3.0", + "q": "^1.4.1", + "tap": "^10.3.2" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/tapjs/stack-utils#readme", + "keywords": [], + "license": "MIT", + "name": "stack-utils", + "repository": { + "type": "git", + "url": "git+https://github.com/tapjs/stack-utils.git" + }, + "scripts": { + "postpublish": "git push origin --all; git push origin --tags", + "postversion": "npm publish", + "preversion": "npm test", + "test": "tap test/*.js --100 -J" + }, + "version": "1.0.2" +} diff --git a/node_modules/static-extend/node_modules/define-property/package.json b/node_modules/static-extend/node_modules/define-property/package.json new file mode 100644 index 000000000..1fc24d3ee --- /dev/null +++ b/node_modules/static-extend/node_modules/define-property/package.json @@ -0,0 +1,86 @@ +{ + "_args": [ + [ + "define-property@0.2.5", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "define-property@0.2.5", + "_id": "define-property@0.2.5", + "_inBundle": false, + "_integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "_location": "/static-extend/define-property", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "define-property@0.2.5", + "name": "define-property", + "escapedName": "define-property", + "rawSpec": "0.2.5", + "saveSpec": null, + "fetchSpec": "0.2.5" + }, + "_requiredBy": [ + "/static-extend" + ], + "_resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "_spec": "0.2.5", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/define-property/issues" + }, + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "description": "Define a non-enumerable property on an object.", + "devDependencies": { + "mocha": "*", + "should": "^7.0.4" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/define-property", + "keywords": [ + "define", + "define-property", + "enumerable", + "key", + "non", + "non-enumerable", + "object", + "prop", + "property", + "value" + ], + "license": "MIT", + "main": "index.js", + "name": "define-property", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/define-property.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "related": { + "list": [ + "mixin-deep", + "mixin-object", + "delegate-object", + "forward-object" + ] + } + }, + "version": "0.2.5" +} diff --git a/node_modules/static-extend/package.json b/node_modules/static-extend/package.json new file mode 100644 index 000000000..695f6ebaa --- /dev/null +++ b/node_modules/static-extend/package.json @@ -0,0 +1,100 @@ +{ + "_args": [ + [ + "static-extend@0.1.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "static-extend@0.1.2", + "_id": "static-extend@0.1.2", + "_inBundle": false, + "_integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", + "_location": "/static-extend", + "_phantomChildren": { + "is-descriptor": "0.1.6" + }, + "_requested": { + "type": "version", + "registry": true, + "raw": "static-extend@0.1.2", + "name": "static-extend", + "escapedName": "static-extend", + "rawSpec": "0.1.2", + "saveSpec": null, + "fetchSpec": "0.1.2" + }, + "_requiredBy": [ + "/class-utils" + ], + "_resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", + "_spec": "0.1.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/static-extend/issues" + }, + "dependencies": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + }, + "description": "Adds a static `extend` method to a class, to simplify inheritance. Extends the static properties, prototype properties, and descriptors from a `Parent` constructor onto `Child` constructors.", + "devDependencies": { + "gulp-format-md": "^0.1.9", + "mocha": "^2.5.3" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/static-extend", + "keywords": [ + "class", + "ctor", + "descriptor", + "extend", + "extends", + "inherit", + "inheritance", + "merge", + "method", + "prop", + "properties", + "property", + "prototype" + ], + "license": "MIT", + "main": "index.js", + "name": "static-extend", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/static-extend.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "run": true, + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "reflinks": [ + "verb", + "verb-readme-generator" + ], + "lint": { + "reflinks": true + } + }, + "version": "0.1.2" +} diff --git a/node_modules/stealthy-require/package.json b/node_modules/stealthy-require/package.json new file mode 100644 index 000000000..c484164cd --- /dev/null +++ b/node_modules/stealthy-require/package.json @@ -0,0 +1,81 @@ +{ + "_args": [ + [ + "stealthy-require@1.1.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "stealthy-require@1.1.1", + "_id": "stealthy-require@1.1.1", + "_inBundle": false, + "_integrity": "sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=", + "_location": "/stealthy-require", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "stealthy-require@1.1.1", + "name": "stealthy-require", + "escapedName": "stealthy-require", + "rawSpec": "1.1.1", + "saveSpec": null, + "fetchSpec": "1.1.1" + }, + "_requiredBy": [ + "/request-promise-native" + ], + "_resolved": "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz", + "_spec": "1.1.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Nicolai Kamenzky", + "url": "https://github.com/analog-nico" + }, + "bugs": { + "url": "https://github.com/analog-nico/stealthy-require/issues" + }, + "dependencies": {}, + "description": "The closest you can get to require something with bypassing the require cache", + "devDependencies": { + "bcrypt": "~1.0.2", + "browserify": "~14.3.0", + "chai": "~3.5.0", + "chalk": "~1.1.3", + "gulp": "~3.9.1", + "gulp-coveralls": "~0.1.4", + "gulp-eslint": "~2.1.0", + "gulp-istanbul": "~1.1.1", + "gulp-mocha": "~3.0.1", + "mkdirp": "~0.5.1", + "publish-please": "~2.3.1", + "rimraf": "~2.6.1", + "run-sequence": "~1.2.2", + "webpack": "~1.15.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "homepage": "https://github.com/analog-nico/stealthy-require#readme", + "keywords": [ + "require", + "bypass", + "no", + "cache", + "fresh" + ], + "license": "ISC", + "main": "./lib/index.js", + "name": "stealthy-require", + "repository": { + "type": "git", + "url": "git+https://github.com/analog-nico/stealthy-require.git" + }, + "scripts": { + "prepublish": "publish-please guard", + "publish-please": "publish-please", + "test": "gulp ci", + "test-publish": "gulp ci-no-cov" + }, + "version": "1.1.1" +} diff --git a/node_modules/string-length/node_modules/ansi-regex/package.json b/node_modules/string-length/node_modules/ansi-regex/package.json new file mode 100644 index 000000000..cb0c4292e --- /dev/null +++ b/node_modules/string-length/node_modules/ansi-regex/package.json @@ -0,0 +1,89 @@ +{ + "_args": [ + [ + "ansi-regex@3.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "ansi-regex@3.0.0", + "_id": "ansi-regex@3.0.0", + "_inBundle": false, + "_integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", + "_location": "/string-length/ansi-regex", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "ansi-regex@3.0.0", + "name": "ansi-regex", + "escapedName": "ansi-regex", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/string-length/strip-ansi" + ], + "_resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/chalk/ansi-regex/issues" + }, + "description": "Regular expression for matching ANSI escape codes", + "devDependencies": { + "ava": "*", + "xo": "*" + }, + "engines": { + "node": ">=4" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/chalk/ansi-regex#readme", + "keywords": [ + "ansi", + "styles", + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "string", + "tty", + "escape", + "formatting", + "rgb", + "256", + "shell", + "xterm", + "command-line", + "text", + "regex", + "regexp", + "re", + "match", + "test", + "find", + "pattern" + ], + "license": "MIT", + "name": "ansi-regex", + "repository": { + "type": "git", + "url": "git+https://github.com/chalk/ansi-regex.git" + }, + "scripts": { + "test": "xo && ava", + "view-supported": "node fixtures/view-codes.js" + }, + "version": "3.0.0" +} diff --git a/node_modules/string-length/node_modules/strip-ansi/package.json b/node_modules/string-length/node_modules/strip-ansi/package.json new file mode 100644 index 000000000..06c0ed404 --- /dev/null +++ b/node_modules/string-length/node_modules/strip-ansi/package.json @@ -0,0 +1,88 @@ +{ + "_args": [ + [ + "strip-ansi@4.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "strip-ansi@4.0.0", + "_id": "strip-ansi@4.0.0", + "_inBundle": false, + "_integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "_location": "/string-length/strip-ansi", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "strip-ansi@4.0.0", + "name": "strip-ansi", + "escapedName": "strip-ansi", + "rawSpec": "4.0.0", + "saveSpec": null, + "fetchSpec": "4.0.0" + }, + "_requiredBy": [ + "/string-length" + ], + "_resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "_spec": "4.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/chalk/strip-ansi/issues" + }, + "dependencies": { + "ansi-regex": "^3.0.0" + }, + "description": "Strip ANSI escape codes", + "devDependencies": { + "ava": "*", + "xo": "*" + }, + "engines": { + "node": ">=4" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/chalk/strip-ansi#readme", + "keywords": [ + "strip", + "trim", + "remove", + "ansi", + "styles", + "color", + "colour", + "colors", + "terminal", + "console", + "string", + "tty", + "escape", + "formatting", + "rgb", + "256", + "shell", + "xterm", + "log", + "logging", + "command-line", + "text" + ], + "license": "MIT", + "name": "strip-ansi", + "repository": { + "type": "git", + "url": "git+https://github.com/chalk/strip-ansi.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "4.0.0" +} diff --git a/node_modules/string-length/package.json b/node_modules/string-length/package.json new file mode 100644 index 000000000..39d6744a4 --- /dev/null +++ b/node_modules/string-length/package.json @@ -0,0 +1,80 @@ +{ + "_args": [ + [ + "string-length@2.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "string-length@2.0.0", + "_id": "string-length@2.0.0", + "_inBundle": false, + "_integrity": "sha1-1A27aGo6zpYMHP/KVivyxF+DY+0=", + "_location": "/string-length", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "string-length@2.0.0", + "name": "string-length", + "escapedName": "string-length", + "rawSpec": "2.0.0", + "saveSpec": null, + "fetchSpec": "2.0.0" + }, + "_requiredBy": [ + "/@jest/reporters", + "/jest-watcher" + ], + "_resolved": "https://registry.npmjs.org/string-length/-/string-length-2.0.0.tgz", + "_spec": "2.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/string-length/issues" + }, + "dependencies": { + "astral-regex": "^1.0.0", + "strip-ansi": "^4.0.0" + }, + "description": "Get the real length of a string - by correctly counting astral symbols and ignoring ansi escape codes", + "devDependencies": { + "ava": "*", + "xo": "*" + }, + "engines": { + "node": ">=4" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/string-length#readme", + "keywords": [ + "unicode", + "string", + "length", + "size", + "count", + "astral", + "symbol", + "surrogates", + "codepoints", + "ansi", + "escape", + "codes" + ], + "license": "MIT", + "name": "string-length", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/string-length.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "2.0.0" +} diff --git a/node_modules/string-width/node_modules/ansi-regex/package.json b/node_modules/string-width/node_modules/ansi-regex/package.json new file mode 100644 index 000000000..1289a599f --- /dev/null +++ b/node_modules/string-width/node_modules/ansi-regex/package.json @@ -0,0 +1,89 @@ +{ + "_args": [ + [ + "ansi-regex@3.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "ansi-regex@3.0.0", + "_id": "ansi-regex@3.0.0", + "_inBundle": false, + "_integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", + "_location": "/string-width/ansi-regex", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "ansi-regex@3.0.0", + "name": "ansi-regex", + "escapedName": "ansi-regex", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/string-width/strip-ansi" + ], + "_resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/chalk/ansi-regex/issues" + }, + "description": "Regular expression for matching ANSI escape codes", + "devDependencies": { + "ava": "*", + "xo": "*" + }, + "engines": { + "node": ">=4" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/chalk/ansi-regex#readme", + "keywords": [ + "ansi", + "styles", + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "string", + "tty", + "escape", + "formatting", + "rgb", + "256", + "shell", + "xterm", + "command-line", + "text", + "regex", + "regexp", + "re", + "match", + "test", + "find", + "pattern" + ], + "license": "MIT", + "name": "ansi-regex", + "repository": { + "type": "git", + "url": "git+https://github.com/chalk/ansi-regex.git" + }, + "scripts": { + "test": "xo && ava", + "view-supported": "node fixtures/view-codes.js" + }, + "version": "3.0.0" +} diff --git a/node_modules/string-width/node_modules/strip-ansi/package.json b/node_modules/string-width/node_modules/strip-ansi/package.json new file mode 100644 index 000000000..70d0f3bd2 --- /dev/null +++ b/node_modules/string-width/node_modules/strip-ansi/package.json @@ -0,0 +1,88 @@ +{ + "_args": [ + [ + "strip-ansi@4.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "strip-ansi@4.0.0", + "_id": "strip-ansi@4.0.0", + "_inBundle": false, + "_integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "_location": "/string-width/strip-ansi", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "strip-ansi@4.0.0", + "name": "strip-ansi", + "escapedName": "strip-ansi", + "rawSpec": "4.0.0", + "saveSpec": null, + "fetchSpec": "4.0.0" + }, + "_requiredBy": [ + "/string-width" + ], + "_resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "_spec": "4.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/chalk/strip-ansi/issues" + }, + "dependencies": { + "ansi-regex": "^3.0.0" + }, + "description": "Strip ANSI escape codes", + "devDependencies": { + "ava": "*", + "xo": "*" + }, + "engines": { + "node": ">=4" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/chalk/strip-ansi#readme", + "keywords": [ + "strip", + "trim", + "remove", + "ansi", + "styles", + "color", + "colour", + "colors", + "terminal", + "console", + "string", + "tty", + "escape", + "formatting", + "rgb", + "256", + "shell", + "xterm", + "log", + "logging", + "command-line", + "text" + ], + "license": "MIT", + "name": "strip-ansi", + "repository": { + "type": "git", + "url": "git+https://github.com/chalk/strip-ansi.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "4.0.0" +} diff --git a/node_modules/string-width/package.json b/node_modules/string-width/package.json new file mode 100644 index 000000000..68d395b91 --- /dev/null +++ b/node_modules/string-width/package.json @@ -0,0 +1,92 @@ +{ + "_args": [ + [ + "string-width@2.1.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "string-width@2.1.1", + "_id": "string-width@2.1.1", + "_inBundle": false, + "_integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "_location": "/string-width", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "string-width@2.1.1", + "name": "string-width", + "escapedName": "string-width", + "rawSpec": "2.1.1", + "saveSpec": null, + "fetchSpec": "2.1.1" + }, + "_requiredBy": [ + "/cliui", + "/yargs" + ], + "_resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", + "_spec": "2.1.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/string-width/issues" + }, + "dependencies": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + }, + "description": "Get the visual width of a string - the number of columns required to display it", + "devDependencies": { + "ava": "*", + "xo": "*" + }, + "engines": { + "node": ">=4" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/string-width#readme", + "keywords": [ + "string", + "str", + "character", + "char", + "unicode", + "width", + "visual", + "column", + "columns", + "fullwidth", + "full-width", + "full", + "ansi", + "escape", + "codes", + "cli", + "command-line", + "terminal", + "console", + "cjk", + "chinese", + "japanese", + "korean", + "fixed-width" + ], + "license": "MIT", + "name": "string-width", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/string-width.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "2.1.1" +} diff --git a/node_modules/string_decoder/package.json b/node_modules/string_decoder/package.json new file mode 100644 index 000000000..07dc3180a --- /dev/null +++ b/node_modules/string_decoder/package.json @@ -0,0 +1,63 @@ +{ + "_args": [ + [ + "string_decoder@1.1.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "string_decoder@1.1.1", + "_id": "string_decoder@1.1.1", + "_inBundle": false, + "_integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "_location": "/string_decoder", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "string_decoder@1.1.1", + "name": "string_decoder", + "escapedName": "string_decoder", + "rawSpec": "1.1.1", + "saveSpec": null, + "fetchSpec": "1.1.1" + }, + "_requiredBy": [ + "/readable-stream" + ], + "_resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "_spec": "1.1.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/nodejs/string_decoder/issues" + }, + "dependencies": { + "safe-buffer": "~5.1.0" + }, + "description": "The string_decoder module from Node core", + "devDependencies": { + "babel-polyfill": "^6.23.0", + "core-util-is": "^1.0.2", + "inherits": "^2.0.3", + "tap": "~0.4.8" + }, + "homepage": "https://github.com/nodejs/string_decoder", + "keywords": [ + "string", + "decoder", + "browser", + "browserify" + ], + "license": "MIT", + "main": "lib/string_decoder.js", + "name": "string_decoder", + "repository": { + "type": "git", + "url": "git://github.com/nodejs/string_decoder.git" + }, + "scripts": { + "ci": "tap test/parallel/*.js test/ours/*.js --tap | tee test.tap && node test/verify-dependencies.js", + "test": "tap test/parallel/*.js && node test/verify-dependencies" + }, + "version": "1.1.1" +} diff --git a/node_modules/strip-ansi/package.json b/node_modules/strip-ansi/package.json new file mode 100644 index 000000000..ea55b0a67 --- /dev/null +++ b/node_modules/strip-ansi/package.json @@ -0,0 +1,90 @@ +{ + "_args": [ + [ + "strip-ansi@5.2.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "strip-ansi@5.2.0", + "_id": "strip-ansi@5.2.0", + "_inBundle": false, + "_integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "_location": "/strip-ansi", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "strip-ansi@5.2.0", + "name": "strip-ansi", + "escapedName": "strip-ansi", + "rawSpec": "5.2.0", + "saveSpec": null, + "fetchSpec": "5.2.0" + }, + "_requiredBy": [ + "/@jest/core" + ], + "_resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "_spec": "5.2.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/chalk/strip-ansi/issues" + }, + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "description": "Strip ANSI escape codes from a string", + "devDependencies": { + "ava": "^1.3.1", + "tsd-check": "^0.5.0", + "xo": "^0.24.0" + }, + "engines": { + "node": ">=6" + }, + "files": [ + "index.js", + "index.d.ts" + ], + "homepage": "https://github.com/chalk/strip-ansi#readme", + "keywords": [ + "strip", + "trim", + "remove", + "ansi", + "styles", + "color", + "colour", + "colors", + "terminal", + "console", + "string", + "tty", + "escape", + "formatting", + "rgb", + "256", + "shell", + "xterm", + "log", + "logging", + "command-line", + "text" + ], + "license": "MIT", + "name": "strip-ansi", + "repository": { + "type": "git", + "url": "git+https://github.com/chalk/strip-ansi.git" + }, + "scripts": { + "test": "xo && ava && tsd-check" + }, + "version": "5.2.0" +} diff --git a/node_modules/strip-bom/package.json b/node_modules/strip-bom/package.json new file mode 100644 index 000000000..6c3a3af05 --- /dev/null +++ b/node_modules/strip-bom/package.json @@ -0,0 +1,77 @@ +{ + "_args": [ + [ + "strip-bom@3.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "strip-bom@3.0.0", + "_id": "strip-bom@3.0.0", + "_inBundle": false, + "_integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", + "_location": "/strip-bom", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "strip-bom@3.0.0", + "name": "strip-bom", + "escapedName": "strip-bom", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/jest-runtime", + "/load-json-file" + ], + "_resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/strip-bom/issues" + }, + "description": "Strip UTF-8 byte order mark (BOM) from a string", + "devDependencies": { + "ava": "*", + "xo": "*" + }, + "engines": { + "node": ">=4" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/strip-bom#readme", + "keywords": [ + "strip", + "bom", + "byte", + "order", + "mark", + "unicode", + "utf8", + "utf-8", + "remove", + "delete", + "trim", + "text", + "string" + ], + "license": "MIT", + "name": "strip-bom", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/strip-bom.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "3.0.0" +} diff --git a/node_modules/strip-eof/package.json b/node_modules/strip-eof/package.json new file mode 100644 index 000000000..b77aaf9c8 --- /dev/null +++ b/node_modules/strip-eof/package.json @@ -0,0 +1,75 @@ +{ + "_args": [ + [ + "strip-eof@1.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "strip-eof@1.0.0", + "_id": "strip-eof@1.0.0", + "_inBundle": false, + "_integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=", + "_location": "/strip-eof", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "strip-eof@1.0.0", + "name": "strip-eof", + "escapedName": "strip-eof", + "rawSpec": "1.0.0", + "saveSpec": null, + "fetchSpec": "1.0.0" + }, + "_requiredBy": [ + "/execa" + ], + "_resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "_spec": "1.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/strip-eof/issues" + }, + "description": "Strip the End-Of-File (EOF) character from a string/buffer", + "devDependencies": { + "ava": "*", + "xo": "*" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/strip-eof#readme", + "keywords": [ + "strip", + "trim", + "remove", + "delete", + "eof", + "end", + "file", + "newline", + "linebreak", + "character", + "string", + "buffer" + ], + "license": "MIT", + "name": "strip-eof", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/strip-eof.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "1.0.0" +} diff --git a/node_modules/supports-color/package.json b/node_modules/supports-color/package.json new file mode 100644 index 000000000..8c914de55 --- /dev/null +++ b/node_modules/supports-color/package.json @@ -0,0 +1,89 @@ +{ + "_args": [ + [ + "supports-color@5.5.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "supports-color@5.5.0", + "_id": "supports-color@5.5.0", + "_inBundle": false, + "_integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "_location": "/supports-color", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "supports-color@5.5.0", + "name": "supports-color", + "escapedName": "supports-color", + "rawSpec": "5.5.0", + "saveSpec": null, + "fetchSpec": "5.5.0" + }, + "_requiredBy": [ + "/chalk" + ], + "_resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "_spec": "5.5.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "browser": "browser.js", + "bugs": { + "url": "https://github.com/chalk/supports-color/issues" + }, + "dependencies": { + "has-flag": "^3.0.0" + }, + "description": "Detect whether a terminal supports color", + "devDependencies": { + "ava": "^0.25.0", + "import-fresh": "^2.0.0", + "xo": "^0.20.0" + }, + "engines": { + "node": ">=4" + }, + "files": [ + "index.js", + "browser.js" + ], + "homepage": "https://github.com/chalk/supports-color#readme", + "keywords": [ + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "ansi", + "styles", + "tty", + "rgb", + "256", + "shell", + "xterm", + "command-line", + "support", + "supports", + "capability", + "detect", + "truecolor", + "16m" + ], + "license": "MIT", + "name": "supports-color", + "repository": { + "type": "git", + "url": "git+https://github.com/chalk/supports-color.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "5.5.0" +} diff --git a/node_modules/symbol-tree/package.json b/node_modules/symbol-tree/package.json new file mode 100644 index 000000000..ce352f660 --- /dev/null +++ b/node_modules/symbol-tree/package.json @@ -0,0 +1,79 @@ +{ + "_args": [ + [ + "symbol-tree@3.2.4", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "symbol-tree@3.2.4", + "_id": "symbol-tree@3.2.4", + "_inBundle": false, + "_integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", + "_location": "/symbol-tree", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "symbol-tree@3.2.4", + "name": "symbol-tree", + "escapedName": "symbol-tree", + "rawSpec": "3.2.4", + "saveSpec": null, + "fetchSpec": "3.2.4" + }, + "_requiredBy": [ + "/jsdom" + ], + "_resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "_spec": "3.2.4", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Joris van der Wel", + "email": "joris@jorisvanderwel.com" + }, + "bugs": { + "url": "https://github.com/jsdom/js-symbol-tree/issues" + }, + "description": "Turn any collection of objects into its own efficient tree or linked list using Symbol", + "devDependencies": { + "babel-eslint": "^10.0.1", + "coveralls": "^3.0.0", + "eslint": "^5.16.0", + "eslint-plugin-import": "^2.2.0", + "istanbul": "^0.4.5", + "jsdoc-to-markdown": "^5.0.0", + "tape": "^4.0.0" + }, + "files": [ + "lib" + ], + "homepage": "https://github.com/jsdom/js-symbol-tree#symbol-tree", + "keywords": [ + "list", + "queue", + "stack", + "linked-list", + "tree", + "es6", + "dom", + "symbol" + ], + "license": "MIT", + "main": "lib/SymbolTree.js", + "name": "symbol-tree", + "repository": { + "type": "git", + "url": "git+https://github.com/jsdom/js-symbol-tree.git" + }, + "scripts": { + "ci": "istanbul cover test/SymbolTree.js --report lcovonly && cat ./coverage/lcov.info | coveralls", + "documentation": "jsdoc2md --files lib/SymbolTree.js >> README.md", + "lint": "eslint lib test", + "postci": "npm run posttest", + "posttest": "npm run lint", + "predocumentation": "cp readme-header.md README.md", + "test": "istanbul cover test/SymbolTree.js" + }, + "version": "3.2.4" +} diff --git a/node_modules/test-exclude/package.json b/node_modules/test-exclude/package.json new file mode 100644 index 000000000..4999184b8 --- /dev/null +++ b/node_modules/test-exclude/package.json @@ -0,0 +1,71 @@ +{ + "_args": [ + [ + "test-exclude@5.2.3", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "test-exclude@5.2.3", + "_id": "test-exclude@5.2.3", + "_inBundle": false, + "_integrity": "sha512-M+oxtseCFO3EDtAaGH7iiej3CBkzXqFMbzqYAACdzKui4eZA+pq3tZEwChvOdNfa7xxy8BfbmgJSIr43cC/+2g==", + "_location": "/test-exclude", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "test-exclude@5.2.3", + "name": "test-exclude", + "escapedName": "test-exclude", + "rawSpec": "5.2.3", + "saveSpec": null, + "fetchSpec": "5.2.3" + }, + "_requiredBy": [ + "/babel-plugin-istanbul" + ], + "_resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-5.2.3.tgz", + "_spec": "5.2.3", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Ben Coe", + "email": "ben@npmjs.com" + }, + "bugs": { + "url": "https://github.com/istanbuljs/istanbuljs/issues" + }, + "dependencies": { + "glob": "^7.1.3", + "minimatch": "^3.0.4", + "read-pkg-up": "^4.0.0", + "require-main-filename": "^2.0.0" + }, + "description": "test for inclusion or exclusion of paths using pkg-conf and globs", + "engines": { + "node": ">=6" + }, + "files": [ + "index.js" + ], + "gitHead": "90e60cc47833bb780680f916488ca24f0be36ca2", + "homepage": "https://istanbul.js.org/", + "keywords": [ + "exclude", + "include", + "glob", + "package", + "config" + ], + "license": "ISC", + "main": "index.js", + "name": "test-exclude", + "repository": { + "type": "git", + "url": "git+https://github.com/istanbuljs/istanbuljs.git" + }, + "scripts": { + "test": "mocha" + }, + "version": "5.2.3" +} diff --git a/node_modules/throat/package.json b/node_modules/throat/package.json new file mode 100644 index 000000000..c71726dac --- /dev/null +++ b/node_modules/throat/package.json @@ -0,0 +1,82 @@ +{ + "_args": [ + [ + "throat@4.1.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "throat@4.1.0", + "_id": "throat@4.1.0", + "_inBundle": false, + "_integrity": "sha1-iQN8vJLFarGJJua6TLsgDhVnKmo=", + "_location": "/throat", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "throat@4.1.0", + "name": "throat", + "escapedName": "throat", + "rawSpec": "4.1.0", + "saveSpec": null, + "fetchSpec": "4.1.0" + }, + "_requiredBy": [ + "/jest-changed-files", + "/jest-circus", + "/jest-jasmine2", + "/jest-runner" + ], + "_resolved": "https://registry.npmjs.org/throat/-/throat-4.1.0.tgz", + "_spec": "4.1.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "ForbesLindesay" + }, + "bugs": { + "url": "https://github.com/ForbesLindesay/throat/issues" + }, + "description": "Throttle the parallelism of an asynchronous (promise returning) function / functions", + "devDependencies": { + "coveralls": "^2.11.2", + "flow-bin": "^0.49.1", + "istanbul": "^0.4.5", + "jest": "^20.0.4", + "promise": "^8.0.0", + "sauce-test": "^1.0.0", + "test-result": "^2.0.0", + "testit": "^2.1.3", + "typescript": "^2.3.4" + }, + "files": [ + "index.d.ts", + "index.js", + "index.js.flow" + ], + "homepage": "https://github.com/ForbesLindesay/throat#readme", + "keywords": [ + "promise", + "aplus", + "then", + "throttle", + "concurrency", + "parallelism", + "limit" + ], + "license": "MIT", + "name": "throat", + "repository": { + "type": "git", + "url": "git+https://github.com/ForbesLindesay/throat.git" + }, + "scripts": { + "coverage": "istanbul cover test/index.js", + "coveralls": "npm run coverage && cat ./coverage/lcov.info | coveralls", + "flow": "flow", + "test": "node test/index.js && npm run test:types && node test/browser.js", + "test:types": "jest", + "tsc": "tsc --noEmit" + }, + "version": "4.1.0" +} diff --git a/node_modules/tmpl/package.json b/node_modules/tmpl/package.json new file mode 100644 index 000000000..10326dee2 --- /dev/null +++ b/node_modules/tmpl/package.json @@ -0,0 +1,54 @@ +{ + "_args": [ + [ + "tmpl@1.0.4", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "tmpl@1.0.4", + "_id": "tmpl@1.0.4", + "_inBundle": false, + "_integrity": "sha1-I2QN17QtAEM5ERQIIOXPRA5SHdE=", + "_location": "/tmpl", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "tmpl@1.0.4", + "name": "tmpl", + "escapedName": "tmpl", + "rawSpec": "1.0.4", + "saveSpec": null, + "fetchSpec": "1.0.4" + }, + "_requiredBy": [ + "/makeerror" + ], + "_resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.4.tgz", + "_spec": "1.0.4", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Naitik Shah", + "email": "n@daaku.org" + }, + "bugs": { + "url": "https://github.com/daaku/nodejs-tmpl/issues" + }, + "description": "JavaScript micro templates.", + "devDependencies": { + "mocha": "0.12.x" + }, + "homepage": "https://github.com/nshah/nodejs-tmpl", + "license": "BSD-3-Clause", + "main": "lib/tmpl", + "name": "tmpl", + "repository": { + "type": "git", + "url": "git+https://github.com/daaku/nodejs-tmpl.git" + }, + "scripts": { + "test": "NODE_PATH=./lib mocha --ui exports" + }, + "version": "1.0.4" +} diff --git a/node_modules/to-fast-properties/package.json b/node_modules/to-fast-properties/package.json new file mode 100644 index 000000000..6ea6db5cf --- /dev/null +++ b/node_modules/to-fast-properties/package.json @@ -0,0 +1,71 @@ +{ + "_args": [ + [ + "to-fast-properties@2.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "to-fast-properties@2.0.0", + "_id": "to-fast-properties@2.0.0", + "_inBundle": false, + "_integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", + "_location": "/to-fast-properties", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "to-fast-properties@2.0.0", + "name": "to-fast-properties", + "escapedName": "to-fast-properties", + "rawSpec": "2.0.0", + "saveSpec": null, + "fetchSpec": "2.0.0" + }, + "_requiredBy": [ + "/@babel/types" + ], + "_resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "_spec": "2.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/to-fast-properties/issues" + }, + "description": "Force V8 to use fast properties for an object", + "devDependencies": { + "ava": "0.0.4" + }, + "engines": { + "node": ">=4" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/to-fast-properties#readme", + "keywords": [ + "object", + "obj", + "properties", + "props", + "v8", + "optimize", + "fast", + "convert", + "mode" + ], + "license": "MIT", + "name": "to-fast-properties", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/to-fast-properties.git" + }, + "scripts": { + "test": "node --allow-natives-syntax test.js" + }, + "version": "2.0.0" +} diff --git a/node_modules/to-object-path/node_modules/kind-of/package.json b/node_modules/to-object-path/node_modules/kind-of/package.json new file mode 100644 index 000000000..4f93ee543 --- /dev/null +++ b/node_modules/to-object-path/node_modules/kind-of/package.json @@ -0,0 +1,143 @@ +{ + "_args": [ + [ + "kind-of@3.2.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "kind-of@3.2.2", + "_id": "kind-of@3.2.2", + "_inBundle": false, + "_integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "_location": "/to-object-path/kind-of", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "kind-of@3.2.2", + "name": "kind-of", + "escapedName": "kind-of", + "rawSpec": "3.2.2", + "saveSpec": null, + "fetchSpec": "3.2.2" + }, + "_requiredBy": [ + "/to-object-path" + ], + "_resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "_spec": "3.2.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/kind-of/issues" + }, + "contributors": [ + { + "name": "David Fox-Powell", + "url": "https://dtothefp.github.io/me" + }, + { + "name": "Jon Schlinkert", + "url": "http://twitter.com/jonschlinkert" + }, + { + "name": "Ken Sheedlo", + "url": "kensheedlo.com" + }, + { + "name": "laggingreflex", + "url": "https://github.com/laggingreflex" + }, + { + "name": "Miguel Mota", + "url": "https://miguelmota.com" + }, + { + "name": "Peter deHaan", + "url": "http://about.me/peterdehaan" + } + ], + "dependencies": { + "is-buffer": "^1.1.5" + }, + "description": "Get the native type of a value.", + "devDependencies": { + "ansi-bold": "^0.1.1", + "benchmarked": "^1.0.0", + "browserify": "^14.3.0", + "glob": "^7.1.1", + "gulp-format-md": "^0.1.12", + "mocha": "^3.3.0", + "type-of": "^2.0.1", + "typeof": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/kind-of", + "keywords": [ + "arguments", + "array", + "boolean", + "check", + "date", + "function", + "is", + "is-type", + "is-type-of", + "kind", + "kind-of", + "number", + "object", + "of", + "regexp", + "string", + "test", + "type", + "type-of", + "typeof", + "types" + ], + "license": "MIT", + "main": "index.js", + "name": "kind-of", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/kind-of.git" + }, + "scripts": { + "prepublish": "browserify -o browser.js -e index.js -s index --bare", + "test": "mocha" + }, + "verb": { + "related": { + "list": [ + "is-glob", + "is-number", + "is-primitive" + ] + }, + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "lint": { + "reflinks": true + }, + "reflinks": [ + "verb" + ] + }, + "version": "3.2.2" +} diff --git a/node_modules/to-object-path/package.json b/node_modules/to-object-path/package.json new file mode 100644 index 000000000..deed7a685 --- /dev/null +++ b/node_modules/to-object-path/package.json @@ -0,0 +1,85 @@ +{ + "_args": [ + [ + "to-object-path@0.3.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "to-object-path@0.3.0", + "_id": "to-object-path@0.3.0", + "_inBundle": false, + "_integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", + "_location": "/to-object-path", + "_phantomChildren": { + "is-buffer": "1.1.6" + }, + "_requested": { + "type": "version", + "registry": true, + "raw": "to-object-path@0.3.0", + "name": "to-object-path", + "escapedName": "to-object-path", + "rawSpec": "0.3.0", + "saveSpec": null, + "fetchSpec": "0.3.0" + }, + "_requiredBy": [ + "/cache-base" + ], + "_resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "_spec": "0.3.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/to-object-path/issues" + }, + "dependencies": { + "kind-of": "^3.0.2" + }, + "description": "Create an object path from a list or array of strings.", + "devDependencies": { + "base": "^0.6.7", + "mocha": "*" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/to-object-path", + "keywords": [ + "dot", + "nested", + "notation", + "object", + "path", + "stringify" + ], + "license": "MIT", + "main": "index.js", + "name": "to-object-path", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/to-object-path.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "related": { + "list": [ + "get-value", + "set-value", + "has-value", + "omit-value", + "unset-value" + ] + } + }, + "version": "0.3.0" +} diff --git a/node_modules/to-regex-range/package.json b/node_modules/to-regex-range/package.json new file mode 100644 index 000000000..88fc95b08 --- /dev/null +++ b/node_modules/to-regex-range/package.json @@ -0,0 +1,121 @@ +{ + "_args": [ + [ + "to-regex-range@2.1.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "to-regex-range@2.1.1", + "_id": "to-regex-range@2.1.1", + "_inBundle": false, + "_integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "_location": "/to-regex-range", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "to-regex-range@2.1.1", + "name": "to-regex-range", + "escapedName": "to-regex-range", + "rawSpec": "2.1.1", + "saveSpec": null, + "fetchSpec": "2.1.1" + }, + "_requiredBy": [ + "/fill-range" + ], + "_resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "_spec": "2.1.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/micromatch/to-regex-range/issues" + }, + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "description": "Pass two numbers, get a regex-compatible source string for matching ranges. Validated against more than 2.78 million test assertions.", + "devDependencies": { + "fill-range": "^3.1.1", + "gulp-format-md": "^0.1.12", + "mocha": "^3.2.0", + "text-table": "^0.2.0", + "time-diff": "^0.3.1" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/micromatch/to-regex-range", + "keywords": [ + "alpha", + "alphabetical", + "bash", + "brace", + "date", + "expand", + "expansion", + "glob", + "match", + "matches", + "matching", + "number", + "numerical", + "range", + "ranges", + "regex", + "sequence", + "sh", + "to", + "year" + ], + "license": "MIT", + "main": "index.js", + "name": "to-regex-range", + "repository": { + "type": "git", + "url": "git+https://github.com/micromatch/to-regex-range.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "related": { + "list": [ + "expand-range", + "fill-range", + "micromatch", + "repeat-element", + "repeat-string" + ] + }, + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "lint": { + "reflinks": true + }, + "helpers": [ + "./examples.js" + ], + "reflinks": [ + "0-5", + "0-9", + "1-5", + "1-9" + ] + }, + "version": "2.1.1" +} diff --git a/node_modules/to-regex/package.json b/node_modules/to-regex/package.json new file mode 100644 index 000000000..37567af51 --- /dev/null +++ b/node_modules/to-regex/package.json @@ -0,0 +1,101 @@ +{ + "_args": [ + [ + "to-regex@3.0.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "to-regex@3.0.2", + "_id": "to-regex@3.0.2", + "_inBundle": false, + "_integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "_location": "/to-regex", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "to-regex@3.0.2", + "name": "to-regex", + "escapedName": "to-regex", + "rawSpec": "3.0.2", + "saveSpec": null, + "fetchSpec": "3.0.2" + }, + "_requiredBy": [ + "/braces", + "/expand-brackets", + "/extglob", + "/micromatch", + "/nanomatch" + ], + "_resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", + "_spec": "3.0.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/to-regex/issues" + }, + "dependencies": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "description": "Generate a regex from a string or array of strings.", + "devDependencies": { + "gulp-format-md": "^1.0.0", + "mocha": "^3.5.3" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/to-regex", + "keywords": [ + "match", + "regex", + "regular expression", + "test", + "to" + ], + "license": "MIT", + "main": "index.js", + "name": "to-regex", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/to-regex.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "toc": { + "method": "preWrite" + }, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "related": { + "list": [ + "has-glob", + "is-glob", + "path-regex", + "to-regex-range" + ] + }, + "lint": { + "reflinks": true + } + }, + "version": "3.0.2" +} diff --git a/node_modules/tough-cookie/package.json b/node_modules/tough-cookie/package.json new file mode 100644 index 000000000..bdb8b8b3a --- /dev/null +++ b/node_modules/tough-cookie/package.json @@ -0,0 +1,101 @@ +{ + "_args": [ + [ + "tough-cookie@2.5.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "tough-cookie@2.5.0", + "_id": "tough-cookie@2.5.0", + "_inBundle": false, + "_integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "_location": "/tough-cookie", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "tough-cookie@2.5.0", + "name": "tough-cookie", + "escapedName": "tough-cookie", + "rawSpec": "2.5.0", + "saveSpec": null, + "fetchSpec": "2.5.0" + }, + "_requiredBy": [ + "/jsdom", + "/request-promise-native" + ], + "_resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "_spec": "2.5.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jeremy Stashewsky", + "email": "jstash@gmail.com" + }, + "bugs": { + "url": "https://github.com/salesforce/tough-cookie/issues" + }, + "contributors": [ + { + "name": "Alexander Savin" + }, + { + "name": "Ian Livingstone" + }, + { + "name": "Ivan Nikulin" + }, + { + "name": "Lalit Kapoor" + }, + { + "name": "Sam Thompson" + }, + { + "name": "Sebastian Mayr" + } + ], + "dependencies": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + }, + "description": "RFC6265 Cookies and Cookie Jar for node.js", + "devDependencies": { + "async": "^1.4.2", + "genversion": "^2.1.0", + "nyc": "^11.6.0", + "string.prototype.repeat": "^0.2.0", + "vows": "^0.8.2" + }, + "engines": { + "node": ">=0.8" + }, + "files": [ + "lib" + ], + "homepage": "https://github.com/salesforce/tough-cookie", + "keywords": [ + "HTTP", + "cookie", + "cookies", + "set-cookie", + "cookiejar", + "jar", + "RFC6265", + "RFC2965" + ], + "license": "BSD-3-Clause", + "main": "./lib/cookie", + "name": "tough-cookie", + "repository": { + "type": "git", + "url": "git://github.com/salesforce/tough-cookie.git" + }, + "scripts": { + "cover": "nyc --reporter=lcov --reporter=html vows test/*_test.js", + "test": "vows test/*_test.js", + "version": "genversion lib/version.js && git add lib/version.js" + }, + "version": "2.5.0" +} diff --git a/node_modules/tr46/package.json b/node_modules/tr46/package.json new file mode 100644 index 000000000..05a8c289e --- /dev/null +++ b/node_modules/tr46/package.json @@ -0,0 +1,77 @@ +{ + "_args": [ + [ + "tr46@1.0.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "tr46@1.0.1", + "_id": "tr46@1.0.1", + "_inBundle": false, + "_integrity": "sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=", + "_location": "/tr46", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "tr46@1.0.1", + "name": "tr46", + "escapedName": "tr46", + "rawSpec": "1.0.1", + "saveSpec": null, + "fetchSpec": "1.0.1" + }, + "_requiredBy": [ + "/data-urls/whatwg-url", + "/whatwg-url" + ], + "_resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", + "_spec": "1.0.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sebastian Mayr", + "email": "npm@smayr.name" + }, + "bugs": { + "url": "https://github.com/Sebmaster/tr46.js/issues" + }, + "dependencies": { + "punycode": "^2.1.0" + }, + "description": "An implementation of the Unicode TR46 spec", + "devDependencies": { + "eslint": "^3.13.0", + "mocha": "^3.2.0", + "regenerate": "^1.3.2", + "request": "^2.79.0", + "unicode-10.0.0": "^0.7.4" + }, + "files": [ + "index.js", + "lib/mappingTable.json", + "lib/regexes.js" + ], + "homepage": "https://github.com/Sebmaster/tr46.js#readme", + "keywords": [ + "unicode", + "tr46", + "url", + "whatwg" + ], + "license": "MIT", + "main": "index.js", + "name": "tr46", + "repository": { + "type": "git", + "url": "git+https://github.com/Sebmaster/tr46.js.git" + }, + "scripts": { + "lint": "eslint .", + "prepublish": "node scripts/generateMappingTable.js && node scripts/generateRegexes.js", + "pretest": "node scripts/getLatestTests.js", + "test": "mocha" + }, + "unicodeVersion": "10.0.0", + "version": "1.0.1" +} diff --git a/node_modules/trim-right/package.json b/node_modules/trim-right/package.json new file mode 100644 index 000000000..d42ca5d78 --- /dev/null +++ b/node_modules/trim-right/package.json @@ -0,0 +1,73 @@ +{ + "_args": [ + [ + "trim-right@1.0.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "trim-right@1.0.1", + "_id": "trim-right@1.0.1", + "_inBundle": false, + "_integrity": "sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM=", + "_location": "/trim-right", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "trim-right@1.0.1", + "name": "trim-right", + "escapedName": "trim-right", + "rawSpec": "1.0.1", + "saveSpec": null, + "fetchSpec": "1.0.1" + }, + "_requiredBy": [ + "/@babel/generator" + ], + "_resolved": "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz", + "_spec": "1.0.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/trim-right/issues" + }, + "description": "Similar to String#trim() but removes only whitespace on the right", + "devDependencies": { + "ava": "0.0.4" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/trim-right#readme", + "keywords": [ + "trim", + "right", + "string", + "str", + "util", + "utils", + "utility", + "whitespace", + "space", + "remove", + "delete" + ], + "license": "MIT", + "name": "trim-right", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/trim-right.git" + }, + "scripts": { + "test": "node test.js" + }, + "version": "1.0.1" +} diff --git a/node_modules/ts-jest/node_modules/camelcase/package.json b/node_modules/ts-jest/node_modules/camelcase/package.json new file mode 100644 index 000000000..64fb18c0b --- /dev/null +++ b/node_modules/ts-jest/node_modules/camelcase/package.json @@ -0,0 +1,78 @@ +{ + "_args": [ + [ + "camelcase@4.1.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "camelcase@4.1.0", + "_id": "camelcase@4.1.0", + "_inBundle": false, + "_integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=", + "_location": "/ts-jest/camelcase", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "camelcase@4.1.0", + "name": "camelcase", + "escapedName": "camelcase", + "rawSpec": "4.1.0", + "saveSpec": null, + "fetchSpec": "4.1.0" + }, + "_requiredBy": [ + "/ts-jest/yargs-parser" + ], + "_resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz", + "_spec": "4.1.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/camelcase/issues" + }, + "description": "Convert a dash/dot/underscore/space separated string to camelCase: foo-bar → fooBar", + "devDependencies": { + "ava": "*", + "xo": "*" + }, + "engines": { + "node": ">=4" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/camelcase#readme", + "keywords": [ + "camelcase", + "camel-case", + "camel", + "case", + "dash", + "hyphen", + "dot", + "underscore", + "separator", + "string", + "text", + "convert" + ], + "license": "MIT", + "name": "camelcase", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/camelcase.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "4.1.0", + "xo": { + "esnext": true + } +} diff --git a/node_modules/ts-jest/node_modules/semver/package.json b/node_modules/ts-jest/node_modules/semver/package.json new file mode 100644 index 000000000..7cf32eed5 --- /dev/null +++ b/node_modules/ts-jest/node_modules/semver/package.json @@ -0,0 +1,64 @@ +{ + "_args": [ + [ + "semver@5.7.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "semver@5.7.0", + "_id": "semver@5.7.0", + "_inBundle": false, + "_integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", + "_location": "/ts-jest/semver", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "semver@5.7.0", + "name": "semver", + "escapedName": "semver", + "rawSpec": "5.7.0", + "saveSpec": null, + "fetchSpec": "5.7.0" + }, + "_requiredBy": [ + "/ts-jest" + ], + "_resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", + "_spec": "5.7.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bin": { + "semver": "./bin/semver" + }, + "bugs": { + "url": "https://github.com/npm/node-semver/issues" + }, + "description": "The semantic version parser used by npm.", + "devDependencies": { + "tap": "^13.0.0-rc.18" + }, + "files": [ + "bin", + "range.bnf", + "semver.js" + ], + "homepage": "https://github.com/npm/node-semver#readme", + "license": "ISC", + "main": "semver.js", + "name": "semver", + "repository": { + "type": "git", + "url": "git+https://github.com/npm/node-semver.git" + }, + "scripts": { + "postpublish": "git push origin --all; git push origin --tags", + "postversion": "npm publish", + "preversion": "npm test", + "test": "tap" + }, + "tap": { + "check-coverage": true + }, + "version": "5.7.0" +} diff --git a/node_modules/ts-jest/node_modules/yargs-parser/package.json b/node_modules/ts-jest/node_modules/yargs-parser/package.json new file mode 100644 index 000000000..e91ef2ec0 --- /dev/null +++ b/node_modules/ts-jest/node_modules/yargs-parser/package.json @@ -0,0 +1,79 @@ +{ + "_args": [ + [ + "yargs-parser@10.1.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "yargs-parser@10.1.0", + "_id": "yargs-parser@10.1.0", + "_inBundle": false, + "_integrity": "sha512-VCIyR1wJoEBZUqk5PA+oOBF6ypbwh5aNB3I50guxAL/quggdfs4TtNHQrSazFA3fYZ+tEqfs0zIGlv0c/rgjbQ==", + "_location": "/ts-jest/yargs-parser", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "yargs-parser@10.1.0", + "name": "yargs-parser", + "escapedName": "yargs-parser", + "rawSpec": "10.1.0", + "saveSpec": null, + "fetchSpec": "10.1.0" + }, + "_requiredBy": [ + "/ts-jest" + ], + "_resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-10.1.0.tgz", + "_spec": "10.1.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Ben Coe", + "email": "ben@npmjs.com" + }, + "bugs": { + "url": "https://github.com/yargs/yargs-parser/issues" + }, + "dependencies": { + "camelcase": "^4.1.0" + }, + "description": "the mighty option parser used by yargs", + "devDependencies": { + "chai": "^3.5.0", + "coveralls": "^2.11.12", + "mocha": "^3.0.1", + "nyc": "^11.4.1", + "standard": "^10.0.2", + "standard-version": "^4.3.0" + }, + "files": [ + "lib", + "index.js" + ], + "homepage": "https://github.com/yargs/yargs-parser#readme", + "keywords": [ + "argument", + "parser", + "yargs", + "command", + "cli", + "parsing", + "option", + "args", + "argument" + ], + "license": "ISC", + "main": "index.js", + "name": "yargs-parser", + "repository": { + "url": "git+ssh://git@github.com/yargs/yargs-parser.git" + }, + "scripts": { + "coverage": "nyc report --reporter=text-lcov | coveralls", + "posttest": "standard", + "release": "standard-version", + "test": "nyc mocha test/*.js" + }, + "version": "10.1.0" +} diff --git a/node_modules/ts-jest/package.json b/node_modules/ts-jest/package.json new file mode 100644 index 000000000..a51367341 --- /dev/null +++ b/node_modules/ts-jest/package.json @@ -0,0 +1,171 @@ +{ + "_args": [ + [ + "ts-jest@24.0.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "ts-jest@24.0.2", + "_id": "ts-jest@24.0.2", + "_inBundle": false, + "_integrity": "sha512-h6ZCZiA1EQgjczxq+uGLXQlNgeg02WWJBbeT8j6nyIBRQdglqbvzDoHahTEIiS6Eor6x8mK6PfZ7brQ9Q6tzHw==", + "_location": "/ts-jest", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "ts-jest@24.0.2", + "name": "ts-jest", + "escapedName": "ts-jest", + "rawSpec": "24.0.2", + "saveSpec": null, + "fetchSpec": "24.0.2" + }, + "_requiredBy": [ + "#DEV:/" + ], + "_resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-24.0.2.tgz", + "_spec": "24.0.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Kulshekhar Kabra", + "email": "kulshekhar@users.noreply.github.com", + "url": "https://github.com/kulshekhar" + }, + "bin": { + "ts-jest": "cli.js" + }, + "bugs": { + "url": "https://github.com/kulshekhar/ts-jest/issues" + }, + "contributors": [ + { + "name": "Huafu Gandon", + "email": "huafu.gandon@gmail.com", + "url": "https://github.com/huafu" + } + ], + "dependencies": { + "bs-logger": "0.x", + "buffer-from": "1.x", + "fast-json-stable-stringify": "2.x", + "json5": "2.x", + "make-error": "1.x", + "mkdirp": "0.x", + "resolve": "1.x", + "semver": "^5.5", + "yargs-parser": "10.x" + }, + "description": "A preprocessor with source maps support to help use TypeScript with Jest", + "devDependencies": { + "@commitlint/cli": "7.x", + "@commitlint/config-conventional": "7.x", + "@types/babel__core": "7.x", + "@types/buffer-from": "latest", + "@types/cross-spawn": "latest", + "@types/fs-extra": "latest", + "@types/jest": "23.x", + "@types/js-yaml": "latest", + "@types/json5": "latest", + "@types/lodash.memoize": "4.x", + "@types/lodash.merge": "4.x", + "@types/lodash.set": "4.x", + "@types/mkdirp": "latest", + "@types/node": "10.x", + "@types/resolve": "latest", + "@types/semver": "latest", + "@types/yargs": "latest", + "conventional-changelog-cli": "2.x", + "cross-spawn": "latest", + "eslint": "latest", + "fs-extra": "latest", + "glob-gitignore": "latest", + "husky": "1.x", + "jest": "24.x", + "js-yaml": "latest", + "lint-staged": "latest", + "lodash.memoize": "4.x", + "lodash.merge": "4.x", + "lodash.set": "4.x", + "npm-run-all": "latest", + "prettier": "latest", + "source-map": "latest", + "tslint": "latest", + "tslint-config-prettier": "latest", + "tslint-plugin-prettier": "latest", + "typescript": "3.x" + }, + "engines": { + "node": ">= 6" + }, + "homepage": "https://kulshekhar.github.io/ts-jest", + "husky": { + "hooks": { + "pre-commit": "lint-staged", + "commit-msg": "commitlint -E HUSKY_GIT_PARAMS", + "post-commit": "git reset" + } + }, + "keywords": [ + "jest", + "typescript", + "sourcemap", + "react", + "testing" + ], + "license": "MIT", + "lint-staged": { + "linters": { + "*.{ts,tsx}": [ + "tslint --fix", + "git add" + ], + "*.{js,jsx}": [ + "eslint --fix", + "git add" + ] + } + }, + "main": "dist/index.js", + "name": "ts-jest", + "peerDependencies": { + "jest": ">=24 <25" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/kulshekhar/ts-jest.git" + }, + "scripts": { + "build": "tsc -p tsconfig.build.json", + "build:watch": "tsc -p tsconfig.build.json -w", + "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0", + "clean": "node scripts/clean.js", + "doc": "cd docs && bundle exec jekyll serve --livereload", + "doc:build": "cd docs && bundle exec jekyll build", + "doc:build-commit": "npm run doc:build && cd docs/_site && git add --all && git commit -m \"Updates github pages\"", + "doc:link": "git worktree add docs/_site gh-pages", + "doc:unlink": "git worktree prune", + "lint": "run-s lint:ts lint:js", + "lint:fix": "run-s lint:fix:ts lint:fix:js", + "lint:fix:js": "eslint . --fix", + "lint:fix:ts": "tslint --fix --project .", + "lint:js": "eslint . -f stylish", + "lint:ts": "tslint -t stylish --project .", + "postbuild": "node scripts/post-build.js", + "prebuild": "node scripts/clean-dist.js", + "prepare": "npm run build", + "prepublishOnly": "npm run test", + "pretest": "npm run lint", + "preversion": "npm run test", + "test": "run-s -s test:e2e \"test:unit -- {@}\" --", + "test:e2e": "node scripts/e2e.js", + "test:external": "node scripts/test-external-project.js", + "test:prepare": "npm run test:e2e -- --prepareOnly", + "test:unit": "jest", + "typecheck": "tsc -p .", + "version": "npm run changelog && git add CHANGELOG.md" + }, + "types": "dist/index.d.ts", + "version": "24.0.2" +} diff --git a/node_modules/tunnel-agent/package.json b/node_modules/tunnel-agent/package.json new file mode 100644 index 000000000..537bede37 --- /dev/null +++ b/node_modules/tunnel-agent/package.json @@ -0,0 +1,59 @@ +{ + "_args": [ + [ + "tunnel-agent@0.6.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "tunnel-agent@0.6.0", + "_id": "tunnel-agent@0.6.0", + "_inBundle": false, + "_integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", + "_location": "/tunnel-agent", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "tunnel-agent@0.6.0", + "name": "tunnel-agent", + "escapedName": "tunnel-agent", + "rawSpec": "0.6.0", + "saveSpec": null, + "fetchSpec": "0.6.0" + }, + "_requiredBy": [ + "/request" + ], + "_resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "_spec": "0.6.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Mikeal Rogers", + "email": "mikeal.rogers@gmail.com", + "url": "http://www.futurealoof.com" + }, + "bugs": { + "url": "https://github.com/mikeal/tunnel-agent/issues" + }, + "dependencies": { + "safe-buffer": "^5.0.1" + }, + "description": "HTTP proxy tunneling agent. Formerly part of mikeal/request, now a standalone module.", + "devDependencies": {}, + "engines": { + "node": "*" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/mikeal/tunnel-agent#readme", + "license": "Apache-2.0", + "main": "index.js", + "name": "tunnel-agent", + "optionalDependencies": {}, + "repository": { + "url": "git+https://github.com/mikeal/tunnel-agent.git" + }, + "version": "0.6.0" +} diff --git a/node_modules/tweetnacl/package.json b/node_modules/tweetnacl/package.json new file mode 100644 index 000000000..a26bfb8e4 --- /dev/null +++ b/node_modules/tweetnacl/package.json @@ -0,0 +1,90 @@ +{ + "_args": [ + [ + "tweetnacl@0.14.5", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "tweetnacl@0.14.5", + "_id": "tweetnacl@0.14.5", + "_inBundle": false, + "_integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", + "_location": "/tweetnacl", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "tweetnacl@0.14.5", + "name": "tweetnacl", + "escapedName": "tweetnacl", + "rawSpec": "0.14.5", + "saveSpec": null, + "fetchSpec": "0.14.5" + }, + "_requiredBy": [ + "/bcrypt-pbkdf", + "/sshpk" + ], + "_resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "_spec": "0.14.5", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "TweetNaCl-js contributors" + }, + "browser": { + "buffer": false, + "crypto": false + }, + "bugs": { + "url": "https://github.com/dchest/tweetnacl-js/issues" + }, + "description": "Port of TweetNaCl cryptographic library to JavaScript", + "devDependencies": { + "browserify": "^13.0.0", + "eslint": "^2.2.0", + "faucet": "^0.0.1", + "tap-browser-color": "^0.1.2", + "tape": "^4.4.0", + "tape-run": "^2.1.3", + "tweetnacl-util": "^0.13.3", + "uglify-js": "^2.6.1" + }, + "directories": { + "test": "test" + }, + "homepage": "https://tweetnacl.js.org", + "keywords": [ + "crypto", + "cryptography", + "curve25519", + "ed25519", + "encrypt", + "hash", + "key", + "nacl", + "poly1305", + "public", + "salsa20", + "signatures" + ], + "license": "Unlicense", + "main": "nacl-fast.js", + "name": "tweetnacl", + "repository": { + "type": "git", + "url": "git+https://github.com/dchest/tweetnacl-js.git" + }, + "scripts": { + "bench": "node test/benchmark/bench.js", + "build": "uglifyjs nacl.js -c -m -o nacl.min.js && uglifyjs nacl-fast.js -c -m -o nacl-fast.min.js", + "build-test-browser": "browserify test/browser/init.js test/*.js | uglifyjs -c -m -o test/browser/_bundle.js 2>/dev/null && browserify test/browser/init.js test/*.quick.js | uglifyjs -c -m -o test/browser/_bundle-quick.js 2>/dev/null", + "lint": "eslint nacl.js nacl-fast.js test/*.js test/benchmark/*.js", + "test": "npm run test-node-all && npm run test-browser", + "test-browser": "NACL_SRC=${NACL_SRC:='nacl.min.js'} && npm run build-test-browser && cat $NACL_SRC test/browser/_bundle.js | tape-run | faucet", + "test-node": "tape test/*.js | faucet", + "test-node-all": "make -C test/c && tape test/*.js test/c/*.js | faucet" + }, + "types": "nacl.d.ts", + "version": "0.14.5" +} diff --git a/node_modules/type-check/package.json b/node_modules/type-check/package.json new file mode 100644 index 000000000..536fb44e8 --- /dev/null +++ b/node_modules/type-check/package.json @@ -0,0 +1,75 @@ +{ + "_args": [ + [ + "type-check@0.3.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "type-check@0.3.2", + "_id": "type-check@0.3.2", + "_inBundle": false, + "_integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", + "_location": "/type-check", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "type-check@0.3.2", + "name": "type-check", + "escapedName": "type-check", + "rawSpec": "0.3.2", + "saveSpec": null, + "fetchSpec": "0.3.2" + }, + "_requiredBy": [ + "/levn", + "/optionator" + ], + "_resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "_spec": "0.3.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "George Zahariev", + "email": "z@georgezahariev.com" + }, + "bugs": { + "url": "https://github.com/gkz/type-check/issues" + }, + "dependencies": { + "prelude-ls": "~1.1.2" + }, + "description": "type-check allows you to check the types of JavaScript values at runtime with a Haskell like type syntax.", + "devDependencies": { + "browserify": "~12.0.1", + "istanbul": "~0.4.1", + "livescript": "~1.4.0", + "mocha": "~2.3.4" + }, + "engines": { + "node": ">= 0.8.0" + }, + "files": [ + "lib", + "README.md", + "LICENSE" + ], + "homepage": "https://github.com/gkz/type-check", + "keywords": [ + "type", + "check", + "checking", + "library" + ], + "license": "MIT", + "main": "./lib/", + "name": "type-check", + "repository": { + "type": "git", + "url": "git://github.com/gkz/type-check.git" + }, + "scripts": { + "test": "make test" + }, + "version": "0.3.2" +} diff --git a/node_modules/type-fest/package.json b/node_modules/type-fest/package.json new file mode 100644 index 000000000..601901ef1 --- /dev/null +++ b/node_modules/type-fest/package.json @@ -0,0 +1,87 @@ +{ + "_args": [ + [ + "type-fest@0.6.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "type-fest@0.6.0", + "_id": "type-fest@0.6.0", + "_inBundle": false, + "_integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "_location": "/type-fest", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "type-fest@0.6.0", + "name": "type-fest", + "escapedName": "type-fest", + "rawSpec": "0.6.0", + "saveSpec": null, + "fetchSpec": "0.6.0" + }, + "_requiredBy": [ + "/read-pkg" + ], + "_resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "_spec": "0.6.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/type-fest/issues" + }, + "description": "A collection of essential TypeScript types", + "devDependencies": { + "@sindresorhus/tsconfig": "^0.4.0", + "@typescript-eslint/eslint-plugin": "^1.9.0", + "@typescript-eslint/parser": "^1.10.2", + "eslint-config-xo-typescript": "^0.14.0", + "tsd": "^0.7.3", + "xo": "^0.24.0" + }, + "engines": { + "node": ">=8" + }, + "files": [ + "index.d.ts", + "source" + ], + "homepage": "https://github.com/sindresorhus/type-fest#readme", + "keywords": [ + "typescript", + "ts", + "types", + "utility", + "util", + "utilities", + "omit", + "merge", + "json" + ], + "license": "(MIT OR CC0-1.0)", + "name": "type-fest", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/type-fest.git" + }, + "scripts": { + "test": "xo && tsd" + }, + "version": "0.6.0", + "xo": { + "extends": "xo-typescript", + "extensions": [ + "ts" + ], + "rules": { + "import/no-unresolved": "off", + "@typescript-eslint/indent": "off" + } + } +} diff --git a/node_modules/typescript/package.json b/node_modules/typescript/package.json new file mode 100644 index 000000000..379fed6ce --- /dev/null +++ b/node_modules/typescript/package.json @@ -0,0 +1,141 @@ +{ + "_args": [ + [ + "typescript@3.5.3", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "typescript@3.5.3", + "_id": "typescript@3.5.3", + "_inBundle": false, + "_integrity": "sha512-ACzBtm/PhXBDId6a6sDJfroT2pOWt/oOnk4/dElG5G33ZL776N3Y6/6bKZJBFpd+b05F3Ct9qDjMeJmRWtE2/g==", + "_location": "/typescript", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "typescript@3.5.3", + "name": "typescript", + "escapedName": "typescript", + "rawSpec": "3.5.3", + "saveSpec": null, + "fetchSpec": "3.5.3" + }, + "_requiredBy": [ + "#DEV:/" + ], + "_resolved": "https://registry.npmjs.org/typescript/-/typescript-3.5.3.tgz", + "_spec": "3.5.3", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Microsoft Corp." + }, + "bin": { + "tsc": "./bin/tsc", + "tsserver": "./bin/tsserver" + }, + "browser": { + "fs": false, + "os": false, + "path": false + }, + "bugs": { + "url": "https://github.com/Microsoft/TypeScript/issues" + }, + "dependencies": {}, + "description": "TypeScript is a language for application scale JavaScript development", + "devDependencies": { + "@octokit/rest": "latest", + "@types/browserify": "latest", + "@types/chai": "latest", + "@types/convert-source-map": "latest", + "@types/del": "latest", + "@types/glob": "latest", + "@types/gulp": "^4.0.5", + "@types/gulp-concat": "latest", + "@types/gulp-newer": "latest", + "@types/gulp-rename": "0.0.33", + "@types/gulp-sourcemaps": "0.0.32", + "@types/jake": "latest", + "@types/merge2": "latest", + "@types/minimatch": "latest", + "@types/minimist": "latest", + "@types/mkdirp": "latest", + "@types/mocha": "latest", + "@types/ms": "latest", + "@types/node": "8.5.5", + "@types/q": "latest", + "@types/source-map-support": "latest", + "@types/through2": "latest", + "@types/travis-fold": "latest", + "@types/xml2js": "^0.4.0", + "browser-resolve": "^1.11.2", + "browserify": "latest", + "chai": "latest", + "chalk": "latest", + "convert-source-map": "latest", + "del": "latest", + "fancy-log": "latest", + "fs-extra": "^6.0.1", + "gulp": "^4.0.0", + "gulp-concat": "latest", + "gulp-insert": "latest", + "gulp-newer": "latest", + "gulp-rename": "latest", + "gulp-sourcemaps": "latest", + "istanbul": "latest", + "merge2": "latest", + "minimist": "latest", + "mkdirp": "latest", + "mocha": "latest", + "mocha-fivemat-progress-reporter": "latest", + "ms": "latest", + "plugin-error": "latest", + "pretty-hrtime": "^1.0.3", + "prex": "^0.4.3", + "q": "latest", + "remove-internal": "^2.9.2", + "source-map-support": "latest", + "through2": "latest", + "travis-fold": "latest", + "tslint": "latest", + "typescript": "next", + "vinyl": "latest", + "vinyl-sourcemaps-apply": "latest", + "xml2js": "^0.4.19" + }, + "engines": { + "node": ">=4.2.0" + }, + "homepage": "https://www.typescriptlang.org/", + "keywords": [ + "TypeScript", + "Microsoft", + "compiler", + "language", + "javascript" + ], + "license": "Apache-2.0", + "main": "./lib/typescript.js", + "name": "typescript", + "repository": { + "type": "git", + "url": "git+https://github.com/Microsoft/TypeScript.git" + }, + "scripts": { + "build": "npm run build:compiler && npm run build:tests", + "build:compiler": "gulp local", + "build:tests": "gulp tests", + "clean": "gulp clean", + "gulp": "gulp", + "jake": "gulp", + "lint": "gulp lint", + "pretest": "gulp tests", + "setup-hooks": "node scripts/link-hooks.js", + "start": "node lib/tsc", + "test": "gulp runtests-parallel --light=false" + }, + "typings": "./lib/typescript.d.ts", + "version": "3.5.3" +} diff --git a/node_modules/uglify-js/package.json b/node_modules/uglify-js/package.json new file mode 100644 index 000000000..7f725710a --- /dev/null +++ b/node_modules/uglify-js/package.json @@ -0,0 +1,108 @@ +{ + "_args": [ + [ + "uglify-js@3.6.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "uglify-js@3.6.0", + "_id": "uglify-js@3.6.0", + "_inBundle": false, + "_integrity": "sha512-W+jrUHJr3DXKhrsS7NUVxn3zqMOFn0hL/Ei6v0anCIMoKC93TjcflTagwIHLW7SfMFfiQuktQyFVCFHGUE0+yg==", + "_location": "/uglify-js", + "_optional": true, + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "uglify-js@3.6.0", + "name": "uglify-js", + "escapedName": "uglify-js", + "rawSpec": "3.6.0", + "saveSpec": null, + "fetchSpec": "3.6.0" + }, + "_requiredBy": [ + "/handlebars" + ], + "_resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.6.0.tgz", + "_spec": "3.6.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Mihai Bazon", + "email": "mihai.bazon@gmail.com", + "url": "http://lisperator.net/" + }, + "bin": { + "uglifyjs": "bin/uglifyjs" + }, + "bugs": { + "url": "https://github.com/mishoo/UglifyJS2/issues" + }, + "dependencies": { + "commander": "~2.20.0", + "source-map": "~0.6.1" + }, + "description": "JavaScript parser, mangler/compressor and beautifier toolkit", + "devDependencies": { + "acorn": "~6.1.1", + "semver": "~6.0.0" + }, + "engines": { + "node": ">=0.8.0" + }, + "files": [ + "bin", + "lib", + "tools", + "LICENSE" + ], + "homepage": "https://github.com/mishoo/UglifyJS2#readme", + "keywords": [ + "cli", + "compress", + "compressor", + "ecma", + "ecmascript", + "es", + "es5", + "javascript", + "js", + "jsmin", + "min", + "minification", + "minifier", + "minify", + "optimize", + "optimizer", + "pack", + "packer", + "parse", + "parser", + "uglifier", + "uglify" + ], + "license": "BSD-2-Clause", + "main": "tools/node.js", + "maintainers": [ + { + "name": "Alex Lam", + "email": "alexlamsl@gmail.com" + }, + { + "name": "Mihai Bazon", + "email": "mihai.bazon@gmail.com", + "url": "http://lisperator.net/" + } + ], + "name": "uglify-js", + "repository": { + "type": "git", + "url": "git+https://github.com/mishoo/UglifyJS2.git" + }, + "scripts": { + "test": "node test/compress.js && node test/mocha.js" + }, + "version": "3.6.0" +} diff --git a/node_modules/union-value/package.json b/node_modules/union-value/package.json new file mode 100644 index 000000000..9c18c0d7e --- /dev/null +++ b/node_modules/union-value/package.json @@ -0,0 +1,105 @@ +{ + "_args": [ + [ + "union-value@1.0.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "union-value@1.0.1", + "_id": "union-value@1.0.1", + "_inBundle": false, + "_integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "_location": "/union-value", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "union-value@1.0.1", + "name": "union-value", + "escapedName": "union-value", + "rawSpec": "1.0.1", + "saveSpec": null, + "fetchSpec": "1.0.1" + }, + "_requiredBy": [ + "/cache-base" + ], + "_resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", + "_spec": "1.0.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/union-value/issues" + }, + "dependencies": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" + }, + "description": "Set an array of unique values as the property of an object. Supports setting deeply nested properties using using object-paths/dot notation.", + "devDependencies": { + "gulp-format-md": "^0.1.11", + "mocha": "^3.2.0", + "should": "^11.2.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/union-value", + "keywords": [ + "array", + "dot", + "get", + "has", + "nested", + "notation", + "object", + "path", + "prop", + "property", + "set", + "union", + "value" + ], + "license": "MIT", + "main": "index.js", + "name": "union-value", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/union-value.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "related": { + "list": [ + "assign-value", + "get-value", + "has-value", + "set-value", + "unset-value" + ] + }, + "lint": { + "reflinks": true + } + }, + "version": "1.0.1" +} diff --git a/node_modules/unset-value/node_modules/has-value/node_modules/isobject/package.json b/node_modules/unset-value/node_modules/has-value/node_modules/isobject/package.json new file mode 100644 index 000000000..e40dd4aa4 --- /dev/null +++ b/node_modules/unset-value/node_modules/has-value/node_modules/isobject/package.json @@ -0,0 +1,102 @@ +{ + "_args": [ + [ + "isobject@2.1.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "isobject@2.1.0", + "_id": "isobject@2.1.0", + "_inBundle": false, + "_integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", + "_location": "/unset-value/has-value/isobject", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "isobject@2.1.0", + "name": "isobject", + "escapedName": "isobject", + "rawSpec": "2.1.0", + "saveSpec": null, + "fetchSpec": "2.1.0" + }, + "_requiredBy": [ + "/unset-value/has-value" + ], + "_resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "_spec": "2.1.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/isobject/issues" + }, + "dependencies": { + "isarray": "1.0.0" + }, + "description": "Returns true if the value is an object and not an array or null.", + "devDependencies": { + "gulp-format-md": "^0.1.9", + "mocha": "^2.4.5" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/isobject", + "keywords": [ + "check", + "is", + "is-object", + "isobject", + "kind", + "kind-of", + "kindof", + "native", + "object", + "type", + "typeof", + "value" + ], + "license": "MIT", + "main": "index.js", + "name": "isobject", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/isobject.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "related": { + "list": [ + "merge-deep", + "extend-shallow", + "is-plain-object", + "kind-of" + ] + }, + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "lint": { + "reflinks": true + }, + "reflinks": [ + "verb" + ] + }, + "version": "2.1.0" +} diff --git a/node_modules/unset-value/node_modules/has-value/package.json b/node_modules/unset-value/node_modules/has-value/package.json new file mode 100644 index 000000000..79f0d4a78 --- /dev/null +++ b/node_modules/unset-value/node_modules/has-value/package.json @@ -0,0 +1,118 @@ +{ + "_args": [ + [ + "has-value@0.3.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "has-value@0.3.1", + "_id": "has-value@0.3.1", + "_inBundle": false, + "_integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", + "_location": "/unset-value/has-value", + "_phantomChildren": { + "isarray": "1.0.0" + }, + "_requested": { + "type": "version", + "registry": true, + "raw": "has-value@0.3.1", + "name": "has-value", + "escapedName": "has-value", + "rawSpec": "0.3.1", + "saveSpec": null, + "fetchSpec": "0.3.1" + }, + "_requiredBy": [ + "/unset-value" + ], + "_resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", + "_spec": "0.3.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/has-value/issues" + }, + "dependencies": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "description": "Returns true if a value exists, false if empty. Works with deeply nested values using object paths.", + "devDependencies": { + "gulp-format-md": "^0.1.7", + "mocha": "^2.4.5" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/has-value", + "keywords": [ + "array", + "boolean", + "empty", + "find", + "function", + "has", + "hasOwn", + "javascript", + "js", + "key", + "keys", + "node.js", + "null", + "number", + "object", + "properties", + "property", + "string", + "type", + "util", + "utilities", + "utility", + "value" + ], + "license": "MIT", + "main": "index.js", + "name": "has-value", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/has-value.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "run": true, + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "related": { + "list": [ + "get-object", + "get-property", + "get-value", + "set-value" + ] + }, + "reflinks": [ + "verb" + ], + "lint": { + "reflinks": true + } + }, + "version": "0.3.1" +} diff --git a/node_modules/unset-value/node_modules/has-values/package.json b/node_modules/unset-value/node_modules/has-values/package.json new file mode 100644 index 000000000..1956e0943 --- /dev/null +++ b/node_modules/unset-value/node_modules/has-values/package.json @@ -0,0 +1,110 @@ +{ + "_args": [ + [ + "has-values@0.1.4", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "has-values@0.1.4", + "_id": "has-values@0.1.4", + "_inBundle": false, + "_integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=", + "_location": "/unset-value/has-values", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "has-values@0.1.4", + "name": "has-values", + "escapedName": "has-values", + "rawSpec": "0.1.4", + "saveSpec": null, + "fetchSpec": "0.1.4" + }, + "_requiredBy": [ + "/unset-value/has-value" + ], + "_resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", + "_spec": "0.1.4", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/has-values/issues" + }, + "description": "Returns true if any values exist, false if empty. Works for booleans, functions, numbers, strings, nulls, objects and arrays. ", + "devDependencies": { + "gulp-format-md": "^0.1.7", + "mocha": "^2.4.5" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/has-values", + "keywords": [ + "array", + "boolean", + "empty", + "find", + "function", + "has", + "hasOwn", + "javascript", + "js", + "key", + "keys", + "node.js", + "null", + "number", + "object", + "properties", + "property", + "string", + "type", + "util", + "utilities", + "utility", + "value" + ], + "license": "MIT", + "main": "index.js", + "name": "has-values", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/has-values.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "run": true, + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "related": { + "list": [ + "has-value", + "isobject", + "is-plain-object" + ] + }, + "reflinks": [ + "verb" + ], + "lint": { + "reflinks": true + } + }, + "version": "0.1.4" +} diff --git a/node_modules/unset-value/package.json b/node_modules/unset-value/package.json new file mode 100644 index 000000000..5d4db41c8 --- /dev/null +++ b/node_modules/unset-value/package.json @@ -0,0 +1,116 @@ +{ + "_args": [ + [ + "unset-value@1.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "unset-value@1.0.0", + "_id": "unset-value@1.0.0", + "_inBundle": false, + "_integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", + "_location": "/unset-value", + "_phantomChildren": { + "get-value": "2.0.6", + "isarray": "1.0.0" + }, + "_requested": { + "type": "version", + "registry": true, + "raw": "unset-value@1.0.0", + "name": "unset-value", + "escapedName": "unset-value", + "rawSpec": "1.0.0", + "saveSpec": null, + "fetchSpec": "1.0.0" + }, + "_requiredBy": [ + "/cache-base" + ], + "_resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", + "_spec": "1.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/unset-value/issues" + }, + "contributors": [ + { + "email": "wtgtybhertgeghgtwtg@gmail.com", + "url": "https://github.com/wtgtybhertgeghgtwtg" + }, + { + "name": "Jon Schlinkert", + "email": "jon.schlinkert@sellside.com", + "url": "http://twitter.com/jonschlinkert" + } + ], + "dependencies": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "description": "Delete nested properties from an object using dot notation.", + "devDependencies": { + "gulp-format-md": "^0.1.11", + "mocha": "*", + "should": "*" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/unset-value", + "keywords": [ + "del", + "delete", + "key", + "object", + "omit", + "prop", + "property", + "remove", + "unset", + "value" + ], + "license": "MIT", + "main": "index.js", + "name": "unset-value", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/unset-value.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "related": { + "list": [ + "get-value", + "get-values", + "omit-value", + "put-value", + "set-value", + "union-value", + "upsert-value" + ] + }, + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "lint": { + "reflinks": true + } + }, + "version": "1.0.0" +} diff --git a/node_modules/uri-js/package.json b/node_modules/uri-js/package.json new file mode 100644 index 000000000..c5c78bd1e --- /dev/null +++ b/node_modules/uri-js/package.json @@ -0,0 +1,97 @@ +{ + "_args": [ + [ + "uri-js@4.2.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "uri-js@4.2.2", + "_id": "uri-js@4.2.2", + "_inBundle": false, + "_integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==", + "_location": "/uri-js", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "uri-js@4.2.2", + "name": "uri-js", + "escapedName": "uri-js", + "rawSpec": "4.2.2", + "saveSpec": null, + "fetchSpec": "4.2.2" + }, + "_requiredBy": [ + "/ajv" + ], + "_resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz", + "_spec": "4.2.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Gary Court", + "email": "gary.court@gmail.com" + }, + "bugs": { + "url": "https://github.com/garycourt/uri-js/issues" + }, + "dependencies": { + "punycode": "^2.1.0" + }, + "description": "An RFC 3986/3987 compliant, scheme extendable URI/IRI parsing/validating/resolving library for JavaScript.", + "devDependencies": { + "babel-cli": "^6.26.0", + "babel-plugin-external-helpers": "^6.22.0", + "babel-preset-latest": "^6.24.1", + "mocha": "^3.2.0", + "mocha-qunit-ui": "^0.1.3", + "rollup": "^0.41.6", + "rollup-plugin-babel": "^2.7.1", + "rollup-plugin-node-resolve": "^2.0.0", + "sorcery": "^0.10.0", + "typescript": "^2.8.1", + "uglify-js": "^2.8.14" + }, + "directories": { + "test": "tests" + }, + "homepage": "https://github.com/garycourt/uri-js", + "keywords": [ + "URI", + "IRI", + "IDN", + "URN", + "UUID", + "HTTP", + "HTTPS", + "MAILTO", + "RFC3986", + "RFC3987", + "RFC5891", + "RFC2616", + "RFC2818", + "RFC2141", + "RFC4122", + "RFC4291", + "RFC5952", + "RFC6068", + "RFC6874" + ], + "license": "BSD-2-Clause", + "main": "dist/es5/uri.all.js", + "name": "uri-js", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/garycourt/uri-js.git" + }, + "scripts": { + "build": "npm run build:esnext && npm run build:es5 && npm run build:es5:min", + "build:es5": "rollup -c && cp dist/esnext/uri.d.ts dist/es5/uri.all.d.ts && npm run build:es5:fix-sourcemap", + "build:es5:fix-sourcemap": "sorcery -i dist/es5/uri.all.js", + "build:es5:min": "uglifyjs dist/es5/uri.all.js --support-ie8 --output dist/es5/uri.all.min.js --in-source-map dist/es5/uri.all.js.map --source-map uri.all.min.js.map --comments --compress --mangle --pure-funcs merge subexp && mv uri.all.min.js.map dist/es5/ && cp dist/es5/uri.all.d.ts dist/es5/uri.all.min.d.ts", + "build:esnext": "tsc", + "test": "mocha -u mocha-qunit-ui dist/es5/uri.all.js tests/tests.js" + }, + "types": "dist/es5/uri.all.d.ts", + "version": "4.2.2" +} diff --git a/node_modules/urix/package.json b/node_modules/urix/package.json new file mode 100644 index 000000000..4102f914f --- /dev/null +++ b/node_modules/urix/package.json @@ -0,0 +1,63 @@ +{ + "_args": [ + [ + "urix@0.1.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "urix@0.1.0", + "_id": "urix@0.1.0", + "_inBundle": false, + "_integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=", + "_location": "/urix", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "urix@0.1.0", + "name": "urix", + "escapedName": "urix", + "rawSpec": "0.1.0", + "saveSpec": null, + "fetchSpec": "0.1.0" + }, + "_requiredBy": [ + "/source-map-resolve" + ], + "_resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", + "_spec": "0.1.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Simon Lydell" + }, + "bugs": { + "url": "https://github.com/lydell/urix/issues" + }, + "description": "Makes Windows-style paths more unix and URI friendly.", + "devDependencies": { + "jshint": "^2.4.4", + "mocha": "^1.17.1" + }, + "homepage": "https://github.com/lydell/urix#readme", + "keywords": [ + "path", + "url", + "uri", + "unix", + "windows", + "backslash", + "slash" + ], + "license": "MIT", + "main": "index.js", + "name": "urix", + "repository": { + "type": "git", + "url": "git+https://github.com/lydell/urix.git" + }, + "scripts": { + "test": "jshint index.js test/ && mocha" + }, + "version": "0.1.0" +} diff --git a/node_modules/use/package.json b/node_modules/use/package.json new file mode 100644 index 000000000..139bb4326 --- /dev/null +++ b/node_modules/use/package.json @@ -0,0 +1,112 @@ +{ + "_args": [ + [ + "use@3.1.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "use@3.1.1", + "_id": "use@3.1.1", + "_inBundle": false, + "_integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", + "_location": "/use", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "use@3.1.1", + "name": "use", + "escapedName": "use", + "rawSpec": "3.1.1", + "saveSpec": null, + "fetchSpec": "3.1.1" + }, + "_requiredBy": [ + "/snapdragon" + ], + "_resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", + "_spec": "3.1.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert" + }, + "bugs": { + "url": "https://github.com/jonschlinkert/use/issues" + }, + "contributors": [ + { + "name": "Brian Woodward", + "url": "https://twitter.com/doowb" + }, + { + "name": "Jon Schlinkert", + "url": "http://twitter.com/jonschlinkert" + }, + { + "name": "Olsten Larck", + "url": "https://i.am.charlike.online" + }, + { + "url": "https://github.com/wtgtybhertgeghgtwtg" + } + ], + "description": "Easily add plugin support to your node.js application.", + "devDependencies": { + "base-plugins": "^1.0.0", + "define-property": "^2.0.0", + "extend-shallow": "^3.0.1", + "gulp": "^3.9.1", + "gulp-eslint": "^4.0.0", + "gulp-format-md": "^1.0.0", + "gulp-istanbul": "^1.1.2", + "gulp-mocha": "^3.0.1", + "mocha": "^4.0.1" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/jonschlinkert/use", + "keywords": [ + "use" + ], + "license": "MIT", + "main": "index.js", + "name": "use", + "repository": { + "type": "git", + "url": "git+https://github.com/jonschlinkert/use.git" + }, + "scripts": { + "test": "mocha" + }, + "verb": { + "toc": false, + "layout": "default", + "tasks": [ + "readme" + ], + "plugins": [ + "gulp-format-md" + ], + "related": { + "list": [ + "base", + "base-plugins", + "ware" + ] + }, + "reflinks": [ + "verb", + "ware" + ], + "lint": { + "reflinks": true + } + }, + "version": "3.1.1" +} diff --git a/node_modules/util-deprecate/package.json b/node_modules/util-deprecate/package.json new file mode 100644 index 000000000..5051024bc --- /dev/null +++ b/node_modules/util-deprecate/package.json @@ -0,0 +1,60 @@ +{ + "_args": [ + [ + "util-deprecate@1.0.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "util-deprecate@1.0.2", + "_id": "util-deprecate@1.0.2", + "_inBundle": false, + "_integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "_location": "/util-deprecate", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "util-deprecate@1.0.2", + "name": "util-deprecate", + "escapedName": "util-deprecate", + "rawSpec": "1.0.2", + "saveSpec": null, + "fetchSpec": "1.0.2" + }, + "_requiredBy": [ + "/readable-stream" + ], + "_resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "_spec": "1.0.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Nathan Rajlich", + "email": "nathan@tootallnate.net", + "url": "http://n8.io/" + }, + "browser": "browser.js", + "bugs": { + "url": "https://github.com/TooTallNate/util-deprecate/issues" + }, + "description": "The Node.js `util.deprecate()` function with browser support", + "homepage": "https://github.com/TooTallNate/util-deprecate", + "keywords": [ + "util", + "deprecate", + "browserify", + "browser", + "node" + ], + "license": "MIT", + "main": "node.js", + "name": "util-deprecate", + "repository": { + "type": "git", + "url": "git://github.com/TooTallNate/util-deprecate.git" + }, + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "version": "1.0.2" +} diff --git a/node_modules/util.promisify/package.json b/node_modules/util.promisify/package.json new file mode 100644 index 000000000..6d7d4a644 --- /dev/null +++ b/node_modules/util.promisify/package.json @@ -0,0 +1,73 @@ +{ + "_args": [ + [ + "util.promisify@1.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "util.promisify@1.0.0", + "_id": "util.promisify@1.0.0", + "_inBundle": false, + "_integrity": "sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==", + "_location": "/util.promisify", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "util.promisify@1.0.0", + "name": "util.promisify", + "escapedName": "util.promisify", + "rawSpec": "1.0.0", + "saveSpec": null, + "fetchSpec": "1.0.0" + }, + "_requiredBy": [ + "/realpath-native" + ], + "_resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz", + "_spec": "1.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Jordan Harband", + "email": "ljharb@gmail.com" + }, + "bugs": { + "url": "https://github.com/ljharb/util.promisify/issues" + }, + "dependencies": { + "define-properties": "^1.1.2", + "object.getownpropertydescriptors": "^2.0.3" + }, + "description": "Polyfill/shim for util.promisify in node versions < v8", + "devDependencies": { + "@es-shims/api": "^1.2.0", + "@ljharb/eslint-config": "^11.0.0", + "eslint": "^3.19.0", + "safe-publish-latest": "^1.1.1" + }, + "homepage": "https://github.com/ljharb/util.promisify#readme", + "keywords": [ + "promisify", + "promise", + "util", + "polyfill", + "shim", + "util.promisify" + ], + "license": "MIT", + "main": "index.js", + "name": "util.promisify", + "repository": { + "type": "git", + "url": "git+https://github.com/ljharb/util.promisify.git" + }, + "scripts": { + "lint": "eslint .", + "prepublish": "safe-publish-latest", + "pretest": "npm run lint", + "test": "npm run tests-only", + "tests-only": "es-shim-api --bound" + }, + "version": "1.0.0" +} diff --git a/node_modules/validate-npm-package-license/package.json b/node_modules/validate-npm-package-license/package.json new file mode 100644 index 000000000..465e53860 --- /dev/null +++ b/node_modules/validate-npm-package-license/package.json @@ -0,0 +1,71 @@ +{ + "_args": [ + [ + "validate-npm-package-license@3.0.4", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "validate-npm-package-license@3.0.4", + "_id": "validate-npm-package-license@3.0.4", + "_inBundle": false, + "_integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "_location": "/validate-npm-package-license", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "validate-npm-package-license@3.0.4", + "name": "validate-npm-package-license", + "escapedName": "validate-npm-package-license", + "rawSpec": "3.0.4", + "saveSpec": null, + "fetchSpec": "3.0.4" + }, + "_requiredBy": [ + "/normalize-package-data" + ], + "_resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "_spec": "3.0.4", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Kyle E. Mitchell", + "email": "kyle@kemitchell.com", + "url": "https://kemitchell.com" + }, + "bugs": { + "url": "https://github.com/kemitchell/validate-npm-package-license.js/issues" + }, + "contributors": [ + { + "name": "Mark Stacey", + "email": "markjstacey@gmail.com" + } + ], + "dependencies": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + }, + "description": "Give me a string and I'll tell you if it's a valid npm package license string", + "devDependencies": { + "defence-cli": "^2.0.1", + "replace-require-self": "^1.0.0" + }, + "homepage": "https://github.com/kemitchell/validate-npm-package-license.js#readme", + "keywords": [ + "license", + "npm", + "package", + "validation" + ], + "license": "Apache-2.0", + "name": "validate-npm-package-license", + "repository": { + "type": "git", + "url": "git+https://github.com/kemitchell/validate-npm-package-license.js.git" + }, + "scripts": { + "test": "defence README.md | replace-require-self | node" + }, + "version": "3.0.4" +} diff --git a/node_modules/verror/package.json b/node_modules/verror/package.json new file mode 100644 index 000000000..0bc040950 --- /dev/null +++ b/node_modules/verror/package.json @@ -0,0 +1,55 @@ +{ + "_args": [ + [ + "verror@1.10.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "verror@1.10.0", + "_id": "verror@1.10.0", + "_inBundle": false, + "_integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", + "_location": "/verror", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "verror@1.10.0", + "name": "verror", + "escapedName": "verror", + "rawSpec": "1.10.0", + "saveSpec": null, + "fetchSpec": "1.10.0" + }, + "_requiredBy": [ + "/jsprim" + ], + "_resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "_spec": "1.10.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/davepacheco/node-verror/issues" + }, + "dependencies": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + }, + "description": "richer JavaScript errors", + "engines": [ + "node >=0.6.0" + ], + "homepage": "https://github.com/davepacheco/node-verror#readme", + "license": "MIT", + "main": "./lib/verror.js", + "name": "verror", + "repository": { + "type": "git", + "url": "git://github.com/davepacheco/node-verror.git" + }, + "scripts": { + "test": "make test" + }, + "version": "1.10.0" +} diff --git a/node_modules/w3c-hr-time/package.json b/node_modules/w3c-hr-time/package.json new file mode 100644 index 000000000..ca3a09968 --- /dev/null +++ b/node_modules/w3c-hr-time/package.json @@ -0,0 +1,65 @@ +{ + "_args": [ + [ + "w3c-hr-time@1.0.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "w3c-hr-time@1.0.1", + "_id": "w3c-hr-time@1.0.1", + "_inBundle": false, + "_integrity": "sha1-gqwr/2PZUOqeMYmlimViX+3xkEU=", + "_location": "/w3c-hr-time", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "w3c-hr-time@1.0.1", + "name": "w3c-hr-time", + "escapedName": "w3c-hr-time", + "rawSpec": "1.0.1", + "saveSpec": null, + "fetchSpec": "1.0.1" + }, + "_requiredBy": [ + "/jsdom" + ], + "_resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.1.tgz", + "_spec": "1.0.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Timothy Gu", + "email": "timothygu99@gmail.com" + }, + "bugs": { + "url": "https://github.com/jsdom/w3c-hr-time/issues" + }, + "dependencies": { + "browser-process-hrtime": "^0.1.2" + }, + "description": "An implementation of the W3C High Resolution Time Level 2 specification.", + "devDependencies": { + "eslint": "^4.14.0", + "eslint-plugin-jest": "^21.5.0", + "jest": "^22.0.4" + }, + "files": [ + "lib", + "index.js" + ], + "homepage": "https://github.com/jsdom/w3c-hr-time#readme", + "license": "MIT", + "main": "index.js", + "name": "w3c-hr-time", + "private": false, + "repository": { + "type": "git", + "url": "git+https://github.com/jsdom/w3c-hr-time.git" + }, + "scripts": { + "lint": "eslint .", + "test": "jest" + }, + "version": "1.0.1" +} diff --git a/node_modules/walker/package.json b/node_modules/walker/package.json new file mode 100644 index 000000000..73336bc59 --- /dev/null +++ b/node_modules/walker/package.json @@ -0,0 +1,63 @@ +{ + "_args": [ + [ + "walker@1.0.7", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "walker@1.0.7", + "_id": "walker@1.0.7", + "_inBundle": false, + "_integrity": "sha1-L3+bj9ENZ3JisYqITijRlhjgKPs=", + "_location": "/walker", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "walker@1.0.7", + "name": "walker", + "escapedName": "walker", + "rawSpec": "1.0.7", + "saveSpec": null, + "fetchSpec": "1.0.7" + }, + "_requiredBy": [ + "/jest-haste-map", + "/sane" + ], + "_resolved": "https://registry.npmjs.org/walker/-/walker-1.0.7.tgz", + "_spec": "1.0.7", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Naitik Shah", + "email": "n@daaku.org" + }, + "bugs": { + "url": "https://github.com/daaku/nodejs-walker/issues" + }, + "dependencies": { + "makeerror": "1.0.x" + }, + "description": "A simple directory tree walker.", + "devDependencies": { + "mocha": "0.12.x" + }, + "homepage": "https://github.com/daaku/nodejs-walker", + "keywords": [ + "utils", + "fs", + "filesystem" + ], + "license": "Apache-2.0", + "main": "lib/walker", + "name": "walker", + "repository": { + "type": "git", + "url": "git+https://github.com/daaku/nodejs-walker.git" + }, + "scripts": { + "test": "NODE_PATH=./lib mocha --ui exports" + }, + "version": "1.0.7" +} diff --git a/node_modules/webidl-conversions/package.json b/node_modules/webidl-conversions/package.json new file mode 100644 index 000000000..0e273ddb8 --- /dev/null +++ b/node_modules/webidl-conversions/package.json @@ -0,0 +1,70 @@ +{ + "_args": [ + [ + "webidl-conversions@4.0.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "webidl-conversions@4.0.2", + "_id": "webidl-conversions@4.0.2", + "_inBundle": false, + "_integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==", + "_location": "/webidl-conversions", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "webidl-conversions@4.0.2", + "name": "webidl-conversions", + "escapedName": "webidl-conversions", + "rawSpec": "4.0.2", + "saveSpec": null, + "fetchSpec": "4.0.2" + }, + "_requiredBy": [ + "/data-urls/whatwg-url", + "/domexception", + "/jsdom", + "/whatwg-url" + ], + "_resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", + "_spec": "4.0.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Domenic Denicola", + "email": "d@domenic.me", + "url": "https://domenic.me/" + }, + "bugs": { + "url": "https://github.com/jsdom/webidl-conversions/issues" + }, + "description": "Implements the WebIDL algorithms for converting to and from JavaScript values", + "devDependencies": { + "eslint": "^3.15.0", + "mocha": "^1.21.4", + "nyc": "^10.1.2" + }, + "files": [ + "lib/" + ], + "homepage": "https://github.com/jsdom/webidl-conversions#readme", + "keywords": [ + "webidl", + "web", + "types" + ], + "license": "BSD-2-Clause", + "main": "lib/index.js", + "name": "webidl-conversions", + "repository": { + "type": "git", + "url": "git+https://github.com/jsdom/webidl-conversions.git" + }, + "scripts": { + "coverage": "nyc mocha test/*.js", + "lint": "eslint .", + "test": "mocha test/*.js" + }, + "version": "4.0.2" +} diff --git a/node_modules/whatwg-encoding/package.json b/node_modules/whatwg-encoding/package.json new file mode 100644 index 000000000..299223975 --- /dev/null +++ b/node_modules/whatwg-encoding/package.json @@ -0,0 +1,70 @@ +{ + "_args": [ + [ + "whatwg-encoding@1.0.5", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "whatwg-encoding@1.0.5", + "_id": "whatwg-encoding@1.0.5", + "_inBundle": false, + "_integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", + "_location": "/whatwg-encoding", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "whatwg-encoding@1.0.5", + "name": "whatwg-encoding", + "escapedName": "whatwg-encoding", + "rawSpec": "1.0.5", + "saveSpec": null, + "fetchSpec": "1.0.5" + }, + "_requiredBy": [ + "/html-encoding-sniffer", + "/jsdom" + ], + "_resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", + "_spec": "1.0.5", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Domenic Denicola", + "email": "d@domenic.me", + "url": "https://domenic.me/" + }, + "bugs": { + "url": "https://github.com/jsdom/whatwg-encoding/issues" + }, + "dependencies": { + "iconv-lite": "0.4.24" + }, + "description": "Decode strings according to the WHATWG Encoding Standard", + "devDependencies": { + "eslint": "^5.3.0", + "got": "^9.0.0", + "mocha": "^5.2.0" + }, + "files": [ + "lib/" + ], + "homepage": "https://github.com/jsdom/whatwg-encoding#readme", + "keywords": [ + "encoding", + "whatwg" + ], + "license": "MIT", + "main": "lib/whatwg-encoding.js", + "name": "whatwg-encoding", + "repository": { + "type": "git", + "url": "git+https://github.com/jsdom/whatwg-encoding.git" + }, + "scripts": { + "lint": "eslint lib test", + "prepare": "node scripts/update.js", + "test": "mocha" + }, + "version": "1.0.5" +} diff --git a/node_modules/whatwg-mimetype/package.json b/node_modules/whatwg-mimetype/package.json new file mode 100644 index 000000000..28fbb3038 --- /dev/null +++ b/node_modules/whatwg-mimetype/package.json @@ -0,0 +1,84 @@ +{ + "_args": [ + [ + "whatwg-mimetype@2.3.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "whatwg-mimetype@2.3.0", + "_id": "whatwg-mimetype@2.3.0", + "_inBundle": false, + "_integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==", + "_location": "/whatwg-mimetype", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "whatwg-mimetype@2.3.0", + "name": "whatwg-mimetype", + "escapedName": "whatwg-mimetype", + "rawSpec": "2.3.0", + "saveSpec": null, + "fetchSpec": "2.3.0" + }, + "_requiredBy": [ + "/data-urls", + "/jsdom" + ], + "_resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", + "_spec": "2.3.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Domenic Denicola", + "email": "d@domenic.me", + "url": "https://domenic.me/" + }, + "bugs": { + "url": "https://github.com/jsdom/whatwg-mimetype/issues" + }, + "description": "Parses, serializes, and manipulates MIME types, according to the WHATWG MIME Sniffing Standard", + "devDependencies": { + "eslint": "^5.9.0", + "jest": "^23.6.0", + "printable-string": "^0.3.0", + "request": "^2.88.0", + "whatwg-encoding": "^1.0.5" + }, + "files": [ + "lib/" + ], + "homepage": "https://github.com/jsdom/whatwg-mimetype#readme", + "jest": { + "coverageDirectory": "coverage", + "coverageReporters": [ + "lcov", + "text-summary" + ], + "testEnvironment": "node", + "testMatch": [ + "/test/**/*.js" + ] + }, + "keywords": [ + "content-type", + "mime type", + "mimesniff", + "http", + "whatwg" + ], + "license": "MIT", + "main": "lib/mime-type.js", + "name": "whatwg-mimetype", + "repository": { + "type": "git", + "url": "git+https://github.com/jsdom/whatwg-mimetype.git" + }, + "scripts": { + "coverage": "jest --coverage", + "lint": "eslint .", + "pretest": "node scripts/get-latest-platform-tests.js", + "test": "jest" + }, + "version": "2.3.0" +} diff --git a/node_modules/whatwg-url/package.json b/node_modules/whatwg-url/package.json new file mode 100644 index 000000000..aa36dfe58 --- /dev/null +++ b/node_modules/whatwg-url/package.json @@ -0,0 +1,95 @@ +{ + "_args": [ + [ + "whatwg-url@6.5.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "whatwg-url@6.5.0", + "_id": "whatwg-url@6.5.0", + "_inBundle": false, + "_integrity": "sha512-rhRZRqx/TLJQWUpQ6bmrt2UV4f0HCQ463yQuONJqC6fO2VoEb1pTYddbe59SkYq87aoM5A3bdhMZiUiVws+fzQ==", + "_location": "/whatwg-url", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "whatwg-url@6.5.0", + "name": "whatwg-url", + "escapedName": "whatwg-url", + "rawSpec": "6.5.0", + "saveSpec": null, + "fetchSpec": "6.5.0" + }, + "_requiredBy": [ + "/jsdom" + ], + "_resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-6.5.0.tgz", + "_spec": "6.5.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sebastian Mayr", + "email": "github@smayr.name" + }, + "bugs": { + "url": "https://github.com/jsdom/whatwg-url/issues" + }, + "dependencies": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + }, + "description": "An implementation of the WHATWG URL Standard's URL API and parsing machinery", + "devDependencies": { + "browserify": "^16.2.2", + "domexception": "^1.0.1", + "eslint": "^4.19.1", + "istanbul": "~0.4.5", + "jest": "^22.4.3", + "jsdom": "^11.8.0", + "recast": "~0.14.7", + "request": "^2.85.0", + "webidl2js": "^7.4.0" + }, + "files": [ + "lib/" + ], + "homepage": "https://github.com/jsdom/whatwg-url#readme", + "jest": { + "collectCoverageFrom": [ + "lib/**/*.js", + "!lib/utils.js" + ], + "coverageDirectory": "coverage", + "coverageReporters": [ + "lcov", + "text-summary" + ], + "testEnvironment": "node", + "testMatch": [ + "/test/**/*.js" + ], + "testPathIgnorePatterns": [ + "^/test/testharness.js$", + "^/test/web-platform-tests/" + ] + }, + "license": "MIT", + "main": "lib/public-api.js", + "name": "whatwg-url", + "repository": { + "type": "git", + "url": "git+https://github.com/jsdom/whatwg-url.git" + }, + "scripts": { + "build": "node scripts/transform.js && node scripts/convert-idl.js", + "build-live-viewer": "browserify lib/public-api.js --standalone whatwgURL > live-viewer/whatwg-url.js", + "coverage": "jest --coverage", + "lint": "eslint .", + "prepublish": "node scripts/transform.js && node scripts/convert-idl.js", + "pretest": "node scripts/get-latest-platform-tests.js && node scripts/transform.js && node scripts/convert-idl.js", + "test": "jest" + }, + "version": "6.5.0" +} diff --git a/node_modules/which-module/package.json b/node_modules/which-module/package.json new file mode 100644 index 000000000..f47c2565a --- /dev/null +++ b/node_modules/which-module/package.json @@ -0,0 +1,72 @@ +{ + "_args": [ + [ + "which-module@2.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "which-module@2.0.0", + "_id": "which-module@2.0.0", + "_inBundle": false, + "_integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=", + "_location": "/which-module", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "which-module@2.0.0", + "name": "which-module", + "escapedName": "which-module", + "rawSpec": "2.0.0", + "saveSpec": null, + "fetchSpec": "2.0.0" + }, + "_requiredBy": [ + "/yargs" + ], + "_resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", + "_spec": "2.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "nexdrew" + }, + "bugs": { + "url": "https://github.com/nexdrew/which-module/issues" + }, + "description": "Find the module object for something that was require()d", + "devDependencies": { + "ava": "^0.19.1", + "coveralls": "^2.13.1", + "nyc": "^10.3.0", + "standard": "^10.0.2", + "standard-version": "^4.0.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/nexdrew/which-module#readme", + "keywords": [ + "which", + "module", + "exports", + "filename", + "require", + "reverse", + "lookup" + ], + "license": "ISC", + "main": "index.js", + "name": "which-module", + "repository": { + "type": "git", + "url": "git+https://github.com/nexdrew/which-module.git" + }, + "scripts": { + "coverage": "nyc report --reporter=text-lcov | coveralls", + "pretest": "standard", + "release": "standard-version", + "test": "nyc ava" + }, + "version": "2.0.0" +} diff --git a/node_modules/which/package.json b/node_modules/which/package.json new file mode 100644 index 000000000..0ac62b45b --- /dev/null +++ b/node_modules/which/package.json @@ -0,0 +1,70 @@ +{ + "_args": [ + [ + "which@1.3.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "which@1.3.1", + "_id": "which@1.3.1", + "_inBundle": false, + "_integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "_location": "/which", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "which@1.3.1", + "name": "which", + "escapedName": "which", + "rawSpec": "1.3.1", + "saveSpec": null, + "fetchSpec": "1.3.1" + }, + "_requiredBy": [ + "/cross-spawn", + "/node-notifier" + ], + "_resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "_spec": "1.3.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me" + }, + "bin": { + "which": "./bin/which" + }, + "bugs": { + "url": "https://github.com/isaacs/node-which/issues" + }, + "dependencies": { + "isexe": "^2.0.0" + }, + "description": "Like which(1) unix command. Find the first instance of an executable in the PATH.", + "devDependencies": { + "mkdirp": "^0.5.0", + "rimraf": "^2.6.2", + "tap": "^12.0.1" + }, + "files": [ + "which.js", + "bin/which" + ], + "homepage": "https://github.com/isaacs/node-which#readme", + "license": "ISC", + "main": "which.js", + "name": "which", + "repository": { + "type": "git", + "url": "git://github.com/isaacs/node-which.git" + }, + "scripts": { + "changelog": "bash gen-changelog.sh", + "postversion": "npm run changelog && git add CHANGELOG.md && git commit -m 'update changelog - '${npm_package_version}", + "test": "tap test/*.js --cov" + }, + "version": "1.3.1" +} diff --git a/node_modules/wordwrap/package.json b/node_modules/wordwrap/package.json new file mode 100644 index 000000000..9c934004c --- /dev/null +++ b/node_modules/wordwrap/package.json @@ -0,0 +1,70 @@ +{ + "_args": [ + [ + "wordwrap@0.0.3", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "wordwrap@0.0.3", + "_id": "wordwrap@0.0.3", + "_inBundle": false, + "_integrity": "sha1-o9XabNXAvAAI03I0u68b7WMFkQc=", + "_location": "/wordwrap", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "wordwrap@0.0.3", + "name": "wordwrap", + "escapedName": "wordwrap", + "rawSpec": "0.0.3", + "saveSpec": null, + "fetchSpec": "0.0.3" + }, + "_requiredBy": [ + "/optimist" + ], + "_resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz", + "_spec": "0.0.3", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "bugs": { + "url": "https://github.com/substack/node-wordwrap/issues" + }, + "description": "Wrap those words. Show them at what columns to start and stop.", + "devDependencies": { + "expresso": "=0.7.x" + }, + "directories": { + "lib": ".", + "example": "example", + "test": "test" + }, + "engines": { + "node": ">=0.4.0" + }, + "homepage": "https://github.com/substack/node-wordwrap#readme", + "keywords": [ + "word", + "wrap", + "rule", + "format", + "column" + ], + "license": "MIT", + "main": "./index.js", + "name": "wordwrap", + "repository": { + "type": "git", + "url": "git://github.com/substack/node-wordwrap.git" + }, + "scripts": { + "test": "expresso" + }, + "version": "0.0.3" +} diff --git a/node_modules/wrap-ansi/node_modules/ansi-regex/package.json b/node_modules/wrap-ansi/node_modules/ansi-regex/package.json new file mode 100644 index 000000000..8fc7760b7 --- /dev/null +++ b/node_modules/wrap-ansi/node_modules/ansi-regex/package.json @@ -0,0 +1,112 @@ +{ + "_args": [ + [ + "ansi-regex@2.1.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "ansi-regex@2.1.1", + "_id": "ansi-regex@2.1.1", + "_inBundle": false, + "_integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "_location": "/wrap-ansi/ansi-regex", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "ansi-regex@2.1.1", + "name": "ansi-regex", + "escapedName": "ansi-regex", + "rawSpec": "2.1.1", + "saveSpec": null, + "fetchSpec": "2.1.1" + }, + "_requiredBy": [ + "/wrap-ansi/strip-ansi" + ], + "_resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "_spec": "2.1.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/chalk/ansi-regex/issues" + }, + "description": "Regular expression for matching ANSI escape codes", + "devDependencies": { + "ava": "0.17.0", + "xo": "0.16.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/chalk/ansi-regex#readme", + "keywords": [ + "ansi", + "styles", + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "string", + "tty", + "escape", + "formatting", + "rgb", + "256", + "shell", + "xterm", + "command-line", + "text", + "regex", + "regexp", + "re", + "match", + "test", + "find", + "pattern" + ], + "license": "MIT", + "maintainers": [ + { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + { + "name": "Joshua Appelman", + "email": "jappelman@xebia.com", + "url": "jbnicolai.com" + }, + { + "name": "JD Ballard", + "email": "i.am.qix@gmail.com", + "url": "github.com/qix-" + } + ], + "name": "ansi-regex", + "repository": { + "type": "git", + "url": "git+https://github.com/chalk/ansi-regex.git" + }, + "scripts": { + "test": "xo && ava --verbose", + "view-supported": "node fixtures/view-codes.js" + }, + "version": "2.1.1", + "xo": { + "rules": { + "guard-for-in": 0, + "no-loop-func": 0 + } + } +} diff --git a/node_modules/wrap-ansi/node_modules/is-fullwidth-code-point/package.json b/node_modules/wrap-ansi/node_modules/is-fullwidth-code-point/package.json new file mode 100644 index 000000000..c1cc242d9 --- /dev/null +++ b/node_modules/wrap-ansi/node_modules/is-fullwidth-code-point/package.json @@ -0,0 +1,81 @@ +{ + "_args": [ + [ + "is-fullwidth-code-point@1.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "is-fullwidth-code-point@1.0.0", + "_id": "is-fullwidth-code-point@1.0.0", + "_inBundle": false, + "_integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "_location": "/wrap-ansi/is-fullwidth-code-point", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "is-fullwidth-code-point@1.0.0", + "name": "is-fullwidth-code-point", + "escapedName": "is-fullwidth-code-point", + "rawSpec": "1.0.0", + "saveSpec": null, + "fetchSpec": "1.0.0" + }, + "_requiredBy": [ + "/wrap-ansi/string-width" + ], + "_resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "_spec": "1.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/is-fullwidth-code-point/issues" + }, + "dependencies": { + "number-is-nan": "^1.0.0" + }, + "description": "Check if the character represented by a given Unicode code point is fullwidth", + "devDependencies": { + "ava": "0.0.4", + "code-point-at": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/is-fullwidth-code-point#readme", + "keywords": [ + "fullwidth", + "full-width", + "full", + "width", + "unicode", + "character", + "char", + "string", + "str", + "codepoint", + "code", + "point", + "is", + "detect", + "check" + ], + "license": "MIT", + "name": "is-fullwidth-code-point", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/is-fullwidth-code-point.git" + }, + "scripts": { + "test": "node test.js" + }, + "version": "1.0.0" +} diff --git a/node_modules/wrap-ansi/node_modules/string-width/package.json b/node_modules/wrap-ansi/node_modules/string-width/package.json new file mode 100644 index 000000000..42437ccc0 --- /dev/null +++ b/node_modules/wrap-ansi/node_modules/string-width/package.json @@ -0,0 +1,92 @@ +{ + "_args": [ + [ + "string-width@1.0.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "string-width@1.0.2", + "_id": "string-width@1.0.2", + "_inBundle": false, + "_integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "_location": "/wrap-ansi/string-width", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "string-width@1.0.2", + "name": "string-width", + "escapedName": "string-width", + "rawSpec": "1.0.2", + "saveSpec": null, + "fetchSpec": "1.0.2" + }, + "_requiredBy": [ + "/wrap-ansi" + ], + "_resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "_spec": "1.0.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/string-width/issues" + }, + "dependencies": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + }, + "description": "Get the visual width of a string - the number of columns required to display it", + "devDependencies": { + "ava": "*", + "xo": "*" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/string-width#readme", + "keywords": [ + "string", + "str", + "character", + "char", + "unicode", + "width", + "visual", + "column", + "columns", + "fullwidth", + "full-width", + "full", + "ansi", + "escape", + "codes", + "cli", + "command-line", + "terminal", + "console", + "cjk", + "chinese", + "japanese", + "korean", + "fixed-width" + ], + "license": "MIT", + "name": "string-width", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/string-width.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "1.0.2" +} diff --git a/node_modules/wrap-ansi/node_modules/strip-ansi/package.json b/node_modules/wrap-ansi/node_modules/strip-ansi/package.json new file mode 100644 index 000000000..d7190f09f --- /dev/null +++ b/node_modules/wrap-ansi/node_modules/strip-ansi/package.json @@ -0,0 +1,106 @@ +{ + "_args": [ + [ + "strip-ansi@3.0.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "strip-ansi@3.0.1", + "_id": "strip-ansi@3.0.1", + "_inBundle": false, + "_integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "_location": "/wrap-ansi/strip-ansi", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "strip-ansi@3.0.1", + "name": "strip-ansi", + "escapedName": "strip-ansi", + "rawSpec": "3.0.1", + "saveSpec": null, + "fetchSpec": "3.0.1" + }, + "_requiredBy": [ + "/wrap-ansi", + "/wrap-ansi/string-width" + ], + "_resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "_spec": "3.0.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/chalk/strip-ansi/issues" + }, + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "description": "Strip ANSI escape codes", + "devDependencies": { + "ava": "*", + "xo": "*" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/chalk/strip-ansi#readme", + "keywords": [ + "strip", + "trim", + "remove", + "ansi", + "styles", + "color", + "colour", + "colors", + "terminal", + "console", + "string", + "tty", + "escape", + "formatting", + "rgb", + "256", + "shell", + "xterm", + "log", + "logging", + "command-line", + "text" + ], + "license": "MIT", + "maintainers": [ + { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + { + "name": "Joshua Boy Nicolai Appelman", + "email": "joshua@jbna.nl", + "url": "jbna.nl" + }, + { + "name": "JD Ballard", + "email": "i.am.qix@gmail.com", + "url": "github.com/qix-" + } + ], + "name": "strip-ansi", + "repository": { + "type": "git", + "url": "git+https://github.com/chalk/strip-ansi.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "3.0.1" +} diff --git a/node_modules/wrap-ansi/package.json b/node_modules/wrap-ansi/package.json new file mode 100644 index 000000000..48d21b475 --- /dev/null +++ b/node_modules/wrap-ansi/package.json @@ -0,0 +1,123 @@ +{ + "_args": [ + [ + "wrap-ansi@2.1.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "wrap-ansi@2.1.0", + "_id": "wrap-ansi@2.1.0", + "_inBundle": false, + "_integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=", + "_location": "/wrap-ansi", + "_phantomChildren": { + "code-point-at": "1.1.0", + "number-is-nan": "1.0.1" + }, + "_requested": { + "type": "version", + "registry": true, + "raw": "wrap-ansi@2.1.0", + "name": "wrap-ansi", + "escapedName": "wrap-ansi", + "rawSpec": "2.1.0", + "saveSpec": null, + "fetchSpec": "2.1.0" + }, + "_requiredBy": [ + "/cliui" + ], + "_resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", + "_spec": "2.1.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/chalk/wrap-ansi/issues" + }, + "dependencies": { + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1" + }, + "description": "Wordwrap a string with ANSI escape codes", + "devDependencies": { + "ava": "^0.16.0", + "chalk": "^1.1.0", + "coveralls": "^2.11.4", + "has-ansi": "^2.0.0", + "nyc": "^6.2.1", + "strip-ansi": "^3.0.0", + "xo": "*" + }, + "engines": { + "node": ">=0.10.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/chalk/wrap-ansi#readme", + "keywords": [ + "wrap", + "break", + "wordwrap", + "wordbreak", + "linewrap", + "ansi", + "styles", + "color", + "colour", + "colors", + "terminal", + "console", + "cli", + "string", + "tty", + "escape", + "formatting", + "rgb", + "256", + "shell", + "xterm", + "log", + "logging", + "command-line", + "text" + ], + "license": "MIT", + "maintainers": [ + { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + { + "name": "Joshua Appelman", + "email": "jappelman@xebia.com", + "url": "jbnicolai.com" + }, + { + "name": "JD Ballard", + "email": "i.am.qix@gmail.com", + "url": "github.com/qix-" + }, + { + "name": "Benjamin Coe", + "email": "ben@npmjs.com", + "url": "github.com/bcoe" + } + ], + "name": "wrap-ansi", + "repository": { + "type": "git", + "url": "git+https://github.com/chalk/wrap-ansi.git" + }, + "scripts": { + "coveralls": "nyc report --reporter=text-lcov | coveralls", + "test": "xo && nyc ava" + }, + "version": "2.1.0" +} diff --git a/node_modules/wrappy/package.json b/node_modules/wrappy/package.json new file mode 100644 index 000000000..2b191e47e --- /dev/null +++ b/node_modules/wrappy/package.json @@ -0,0 +1,63 @@ +{ + "_args": [ + [ + "wrappy@1.0.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "wrappy@1.0.2", + "_id": "wrappy@1.0.2", + "_inBundle": false, + "_integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "_location": "/wrappy", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "wrappy@1.0.2", + "name": "wrappy", + "escapedName": "wrappy", + "rawSpec": "1.0.2", + "saveSpec": null, + "fetchSpec": "1.0.2" + }, + "_requiredBy": [ + "/inflight", + "/once" + ], + "_resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "_spec": "1.0.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me/" + }, + "bugs": { + "url": "https://github.com/npm/wrappy/issues" + }, + "dependencies": {}, + "description": "Callback wrapping utility", + "devDependencies": { + "tap": "^2.3.1" + }, + "directories": { + "test": "test" + }, + "files": [ + "wrappy.js" + ], + "homepage": "https://github.com/npm/wrappy", + "license": "ISC", + "main": "wrappy.js", + "name": "wrappy", + "repository": { + "type": "git", + "url": "git+https://github.com/npm/wrappy.git" + }, + "scripts": { + "test": "tap --coverage test/*.js" + }, + "version": "1.0.2" +} diff --git a/node_modules/write-file-atomic/package.json b/node_modules/write-file-atomic/package.json new file mode 100644 index 000000000..176e3e7ec --- /dev/null +++ b/node_modules/write-file-atomic/package.json @@ -0,0 +1,71 @@ +{ + "_args": [ + [ + "write-file-atomic@2.4.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "write-file-atomic@2.4.1", + "_id": "write-file-atomic@2.4.1", + "_inBundle": false, + "_integrity": "sha512-TGHFeZEZMnv+gBFRfjAcxL5bPHrsGKtnb4qsFAws7/vlh+QfwAaySIw4AXP9ZskTTh5GWu3FLuJhsWVdiJPGvg==", + "_location": "/write-file-atomic", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "write-file-atomic@2.4.1", + "name": "write-file-atomic", + "escapedName": "write-file-atomic", + "rawSpec": "2.4.1", + "saveSpec": null, + "fetchSpec": "2.4.1" + }, + "_requiredBy": [ + "/@jest/transform" + ], + "_resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.1.tgz", + "_spec": "2.4.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Rebecca Turner", + "email": "me@re-becca.org", + "url": "http://re-becca.org" + }, + "bugs": { + "url": "https://github.com/iarna/write-file-atomic/issues" + }, + "dependencies": { + "graceful-fs": "^4.1.11", + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.2" + }, + "description": "Write files in an atomic fashion w/configurable ownership", + "devDependencies": { + "mkdirp": "^0.5.1", + "require-inject": "^1.4.0", + "rimraf": "^2.5.4", + "standard": "^12.0.1", + "tap": "^12.1.3" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/iarna/write-file-atomic", + "keywords": [ + "writeFile", + "atomic" + ], + "license": "ISC", + "main": "index.js", + "name": "write-file-atomic", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/iarna/write-file-atomic.git" + }, + "scripts": { + "test": "standard && tap --100 test/*.js" + }, + "version": "2.4.1" +} diff --git a/node_modules/ws/package.json b/node_modules/ws/package.json new file mode 100644 index 000000000..daf368f96 --- /dev/null +++ b/node_modules/ws/package.json @@ -0,0 +1,82 @@ +{ + "_args": [ + [ + "ws@5.2.2", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "ws@5.2.2", + "_id": "ws@5.2.2", + "_inBundle": false, + "_integrity": "sha512-jaHFD6PFv6UgoIVda6qZllptQsMlDEJkTQcybzzXDYM1XO9Y8em691FGMPmM46WGyLU4z9KMgQN+qrux/nhlHA==", + "_location": "/ws", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "ws@5.2.2", + "name": "ws", + "escapedName": "ws", + "rawSpec": "5.2.2", + "saveSpec": null, + "fetchSpec": "5.2.2" + }, + "_requiredBy": [ + "/jsdom" + ], + "_resolved": "https://registry.npmjs.org/ws/-/ws-5.2.2.tgz", + "_spec": "5.2.2", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Einar Otto Stangvik", + "email": "einaros@gmail.com", + "url": "http://2x.io" + }, + "bugs": { + "url": "https://github.com/websockets/ws/issues" + }, + "dependencies": { + "async-limiter": "~1.0.0" + }, + "description": "Simple to use, blazing fast and thoroughly tested websocket client and server for Node.js", + "devDependencies": { + "benchmark": "~2.1.2", + "bufferutil": "~3.0.0", + "eslint": "~4.19.0", + "eslint-config-standard": "~11.0.0", + "eslint-plugin-import": "~2.12.0", + "eslint-plugin-node": "~6.0.0", + "eslint-plugin-promise": "~3.8.0", + "eslint-plugin-standard": "~3.0.0", + "mocha": "~5.2.0", + "nyc": "~12.0.2", + "utf-8-validate": "~4.0.0" + }, + "files": [ + "index.js", + "lib" + ], + "homepage": "https://github.com/websockets/ws", + "keywords": [ + "HyBi", + "Push", + "RFC-6455", + "WebSocket", + "WebSockets", + "real-time" + ], + "license": "MIT", + "main": "index.js", + "name": "ws", + "repository": { + "type": "git", + "url": "git+https://github.com/websockets/ws.git" + }, + "scripts": { + "integration": "eslint . && mocha test/*.integration.js", + "lint": "eslint .", + "test": "eslint . && nyc --reporter=html --reporter=text mocha test/*.test.js" + }, + "version": "5.2.2" +} diff --git a/node_modules/xml-name-validator/package.json b/node_modules/xml-name-validator/package.json new file mode 100644 index 000000000..8c50a5dc1 --- /dev/null +++ b/node_modules/xml-name-validator/package.json @@ -0,0 +1,68 @@ +{ + "_args": [ + [ + "xml-name-validator@3.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "xml-name-validator@3.0.0", + "_id": "xml-name-validator@3.0.0", + "_inBundle": false, + "_integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==", + "_location": "/xml-name-validator", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "xml-name-validator@3.0.0", + "name": "xml-name-validator", + "escapedName": "xml-name-validator", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/jsdom" + ], + "_resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Domenic Denicola", + "email": "d@domenic.me", + "url": "https://domenic.me/" + }, + "bugs": { + "url": "https://github.com/jsdom/xml-name-validator/issues" + }, + "description": "Validates whether a string matches the production for an XML name or qualified name", + "devDependencies": { + "eslint": "^2.9.0", + "mocha": "^2.4.5", + "waka": "0.1.2" + }, + "files": [ + "lib/" + ], + "homepage": "https://github.com/jsdom/xml-name-validator#readme", + "keywords": [ + "xml", + "name", + "qname" + ], + "license": "Apache-2.0", + "main": "lib/xml-name-validator.js", + "name": "xml-name-validator", + "repository": { + "type": "git", + "url": "git+https://github.com/jsdom/xml-name-validator.git" + }, + "scripts": { + "lint": "eslint .", + "prepublish": "node scripts/generate-grammar.js < lib/grammar.pegjs > lib/generated-parser.js", + "pretest": "npm run prepublish", + "test": "mocha" + }, + "version": "3.0.0" +} diff --git a/node_modules/y18n/package.json b/node_modules/y18n/package.json new file mode 100644 index 000000000..1f3a970d3 --- /dev/null +++ b/node_modules/y18n/package.json @@ -0,0 +1,71 @@ +{ + "_args": [ + [ + "y18n@4.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "y18n@4.0.0", + "_id": "y18n@4.0.0", + "_inBundle": false, + "_integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==", + "_location": "/y18n", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "y18n@4.0.0", + "name": "y18n", + "escapedName": "y18n", + "rawSpec": "4.0.0", + "saveSpec": null, + "fetchSpec": "4.0.0" + }, + "_requiredBy": [ + "/yargs" + ], + "_resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz", + "_spec": "4.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Ben Coe", + "email": "ben@npmjs.com" + }, + "bugs": { + "url": "https://github.com/yargs/y18n/issues" + }, + "description": "the bare-bones internationalization library used by yargs", + "devDependencies": { + "chai": "^4.0.1", + "coveralls": "^3.0.0", + "mocha": "^4.0.1", + "nyc": "^11.0.1", + "rimraf": "^2.5.0", + "standard": "^10.0.0-beta.0", + "standard-version": "^4.2.0" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/yargs/y18n", + "keywords": [ + "i18n", + "internationalization", + "yargs" + ], + "license": "ISC", + "main": "index.js", + "name": "y18n", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/yargs/y18n.git" + }, + "scripts": { + "coverage": "nyc report --reporter=text-lcov | coveralls", + "pretest": "standard", + "release": "standard-version", + "test": "nyc mocha" + }, + "version": "4.0.0" +} diff --git a/node_modules/yargs-parser/package.json b/node_modules/yargs-parser/package.json new file mode 100644 index 000000000..1657c89bd --- /dev/null +++ b/node_modules/yargs-parser/package.json @@ -0,0 +1,83 @@ +{ + "_args": [ + [ + "yargs-parser@11.1.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "yargs-parser@11.1.1", + "_id": "yargs-parser@11.1.1", + "_inBundle": false, + "_integrity": "sha512-C6kB/WJDiaxONLJQnF8ccx9SEeoTTLek8RVbaOIsrAUS8VrBEXfmeSnCZxygc+XC2sNMBIwOOnfcxiynjHsVSQ==", + "_location": "/yargs-parser", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "yargs-parser@11.1.1", + "name": "yargs-parser", + "escapedName": "yargs-parser", + "rawSpec": "11.1.1", + "saveSpec": null, + "fetchSpec": "11.1.1" + }, + "_requiredBy": [ + "/yargs" + ], + "_resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-11.1.1.tgz", + "_spec": "11.1.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Ben Coe", + "email": "ben@npmjs.com" + }, + "bugs": { + "url": "https://github.com/yargs/yargs-parser/issues" + }, + "dependencies": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + }, + "description": "the mighty option parser used by yargs", + "devDependencies": { + "chai": "^4.2.0", + "coveralls": "^3.0.2", + "mocha": "^5.2.0", + "nyc": "^13.0.1", + "standard": "^12.0.1", + "standard-version": "^4.4.0" + }, + "engine": { + "node": ">=6" + }, + "files": [ + "lib", + "index.js" + ], + "homepage": "https://github.com/yargs/yargs-parser#readme", + "keywords": [ + "argument", + "parser", + "yargs", + "command", + "cli", + "parsing", + "option", + "args", + "argument" + ], + "license": "ISC", + "main": "index.js", + "name": "yargs-parser", + "repository": { + "url": "git+ssh://git@github.com/yargs/yargs-parser.git" + }, + "scripts": { + "coverage": "nyc report --reporter=text-lcov | coveralls", + "posttest": "standard", + "release": "standard-version", + "test": "nyc mocha test/*.js" + }, + "version": "11.1.1" +} diff --git a/node_modules/yargs/node_modules/find-up/package.json b/node_modules/yargs/node_modules/find-up/package.json new file mode 100644 index 000000000..4830ddbfc --- /dev/null +++ b/node_modules/yargs/node_modules/find-up/package.json @@ -0,0 +1,86 @@ +{ + "_args": [ + [ + "find-up@3.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "find-up@3.0.0", + "_id": "find-up@3.0.0", + "_inBundle": false, + "_integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "_location": "/yargs/find-up", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "find-up@3.0.0", + "name": "find-up", + "escapedName": "find-up", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/yargs" + ], + "_resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/find-up/issues" + }, + "dependencies": { + "locate-path": "^3.0.0" + }, + "description": "Find a file or directory by walking up parent directories", + "devDependencies": { + "ava": "*", + "tempy": "^0.2.1", + "xo": "*" + }, + "engines": { + "node": ">=6" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/find-up#readme", + "keywords": [ + "find", + "up", + "find-up", + "findup", + "look-up", + "look", + "file", + "search", + "match", + "package", + "resolve", + "parent", + "parents", + "folder", + "directory", + "dir", + "walk", + "walking", + "path" + ], + "license": "MIT", + "name": "find-up", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/find-up.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "3.0.0" +} diff --git a/node_modules/yargs/node_modules/locate-path/package.json b/node_modules/yargs/node_modules/locate-path/package.json new file mode 100644 index 000000000..ce0554db3 --- /dev/null +++ b/node_modules/yargs/node_modules/locate-path/package.json @@ -0,0 +1,80 @@ +{ + "_args": [ + [ + "locate-path@3.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "locate-path@3.0.0", + "_id": "locate-path@3.0.0", + "_inBundle": false, + "_integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "_location": "/yargs/locate-path", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "locate-path@3.0.0", + "name": "locate-path", + "escapedName": "locate-path", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/yargs/find-up" + ], + "_resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/locate-path/issues" + }, + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "description": "Get the first path that exists on disk of multiple paths", + "devDependencies": { + "ava": "*", + "xo": "*" + }, + "engines": { + "node": ">=6" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/locate-path#readme", + "keywords": [ + "locate", + "path", + "paths", + "file", + "files", + "exists", + "find", + "finder", + "search", + "searcher", + "array", + "iterable", + "iterator" + ], + "license": "MIT", + "name": "locate-path", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/locate-path.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "3.0.0" +} diff --git a/node_modules/yargs/node_modules/p-locate/package.json b/node_modules/yargs/node_modules/p-locate/package.json new file mode 100644 index 000000000..d0bd0f464 --- /dev/null +++ b/node_modules/yargs/node_modules/p-locate/package.json @@ -0,0 +1,87 @@ +{ + "_args": [ + [ + "p-locate@3.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "p-locate@3.0.0", + "_id": "p-locate@3.0.0", + "_inBundle": false, + "_integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "_location": "/yargs/p-locate", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "p-locate@3.0.0", + "name": "p-locate", + "escapedName": "p-locate", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/yargs/locate-path" + ], + "_resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/p-locate/issues" + }, + "dependencies": { + "p-limit": "^2.0.0" + }, + "description": "Get the first fulfilled promise that satisfies the provided testing function", + "devDependencies": { + "ava": "*", + "delay": "^3.0.0", + "in-range": "^1.0.0", + "time-span": "^2.0.0", + "xo": "*" + }, + "engines": { + "node": ">=6" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/p-locate#readme", + "keywords": [ + "promise", + "locate", + "find", + "finder", + "search", + "searcher", + "test", + "array", + "collection", + "iterable", + "iterator", + "race", + "fulfilled", + "fastest", + "async", + "await", + "promises", + "bluebird" + ], + "license": "MIT", + "name": "p-locate", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/p-locate.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "3.0.0" +} diff --git a/node_modules/yargs/node_modules/path-exists/package.json b/node_modules/yargs/node_modules/path-exists/package.json new file mode 100644 index 000000000..b00bc13b3 --- /dev/null +++ b/node_modules/yargs/node_modules/path-exists/package.json @@ -0,0 +1,76 @@ +{ + "_args": [ + [ + "path-exists@3.0.0", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "path-exists@3.0.0", + "_id": "path-exists@3.0.0", + "_inBundle": false, + "_integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "_location": "/yargs/path-exists", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "path-exists@3.0.0", + "name": "path-exists", + "escapedName": "path-exists", + "rawSpec": "3.0.0", + "saveSpec": null, + "fetchSpec": "3.0.0" + }, + "_requiredBy": [ + "/yargs/locate-path" + ], + "_resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "_spec": "3.0.0", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "sindresorhus.com" + }, + "bugs": { + "url": "https://github.com/sindresorhus/path-exists/issues" + }, + "description": "Check if a path exists", + "devDependencies": { + "ava": "*", + "xo": "*" + }, + "engines": { + "node": ">=4" + }, + "files": [ + "index.js" + ], + "homepage": "https://github.com/sindresorhus/path-exists#readme", + "keywords": [ + "path", + "exists", + "exist", + "file", + "filepath", + "fs", + "filesystem", + "file-system", + "access", + "stat" + ], + "license": "MIT", + "name": "path-exists", + "repository": { + "type": "git", + "url": "git+https://github.com/sindresorhus/path-exists.git" + }, + "scripts": { + "test": "xo && ava" + }, + "version": "3.0.0", + "xo": { + "esnext": true + } +} diff --git a/node_modules/yargs/node_modules/require-main-filename/package.json b/node_modules/yargs/node_modules/require-main-filename/package.json new file mode 100644 index 000000000..cd1a949d5 --- /dev/null +++ b/node_modules/yargs/node_modules/require-main-filename/package.json @@ -0,0 +1,62 @@ +{ + "_args": [ + [ + "require-main-filename@1.0.1", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "require-main-filename@1.0.1", + "_id": "require-main-filename@1.0.1", + "_inBundle": false, + "_integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=", + "_location": "/yargs/require-main-filename", + "_phantomChildren": {}, + "_requested": { + "type": "version", + "registry": true, + "raw": "require-main-filename@1.0.1", + "name": "require-main-filename", + "escapedName": "require-main-filename", + "rawSpec": "1.0.1", + "saveSpec": null, + "fetchSpec": "1.0.1" + }, + "_requiredBy": [ + "/yargs" + ], + "_resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", + "_spec": "1.0.1", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "author": { + "name": "Ben Coe", + "email": "ben@npmjs.com" + }, + "bugs": { + "url": "https://github.com/yargs/require-main-filename/issues" + }, + "description": "shim for require.main.filename() that works in as many environments as possible", + "devDependencies": { + "chai": "^3.5.0", + "standard": "^6.0.5", + "tap": "^5.2.0" + }, + "homepage": "https://github.com/yargs/require-main-filename#readme", + "keywords": [ + "require", + "shim", + "iisnode" + ], + "license": "ISC", + "main": "index.js", + "name": "require-main-filename", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/yargs/require-main-filename.git" + }, + "scripts": { + "pretest": "standard", + "test": "tap --coverage test.js" + }, + "version": "1.0.1" +} diff --git a/node_modules/yargs/package.json b/node_modules/yargs/package.json new file mode 100644 index 000000000..db84c1021 --- /dev/null +++ b/node_modules/yargs/package.json @@ -0,0 +1,114 @@ +{ + "_args": [ + [ + "yargs@12.0.5", + "/mnt/c/src/github/geertvdc/setup-hub" + ] + ], + "_development": true, + "_from": "yargs@12.0.5", + "_id": "yargs@12.0.5", + "_inBundle": false, + "_integrity": "sha512-Lhz8TLaYnxq/2ObqHDql8dX8CJi97oHxrjUcYtzKbbykPtVW9WB+poxI+NM2UIzsMgNCZTIf0AQwsjK5yMAqZw==", + "_location": "/yargs", + "_phantomChildren": { + "p-limit": "2.2.0" + }, + "_requested": { + "type": "version", + "registry": true, + "raw": "yargs@12.0.5", + "name": "yargs", + "escapedName": "yargs", + "rawSpec": "12.0.5", + "saveSpec": null, + "fetchSpec": "12.0.5" + }, + "_requiredBy": [ + "/jest-runtime", + "/jest/jest-cli" + ], + "_resolved": "https://registry.npmjs.org/yargs/-/yargs-12.0.5.tgz", + "_spec": "12.0.5", + "_where": "/mnt/c/src/github/geertvdc/setup-hub", + "bugs": { + "url": "https://github.com/yargs/yargs/issues" + }, + "contributors": [ + { + "name": "Yargs Contributors", + "url": "https://github.com/yargs/yargs/graphs/contributors" + } + ], + "dependencies": { + "cliui": "^4.0.0", + "decamelize": "^1.2.0", + "find-up": "^3.0.0", + "get-caller-file": "^1.0.1", + "os-locale": "^3.0.0", + "require-directory": "^2.1.1", + "require-main-filename": "^1.0.1", + "set-blocking": "^2.0.0", + "string-width": "^2.0.0", + "which-module": "^2.0.0", + "y18n": "^3.2.1 || ^4.0.0", + "yargs-parser": "^11.1.1" + }, + "description": "yargs the modern, pirate-themed, successor to optimist.", + "devDependencies": { + "chai": "^4.1.2", + "chalk": "^1.1.3", + "coveralls": "^3.0.2", + "cpr": "^2.0.0", + "cross-spawn": "^6.0.4", + "es6-promise": "^4.0.2", + "hashish": "0.0.4", + "mocha": "^5.1.1", + "nyc": "^11.7.3", + "rimraf": "^2.5.0", + "standard": "^11.0.1", + "standard-version": "^4.2.0", + "which": "^1.2.9", + "yargs-test-extends": "^1.0.1" + }, + "engine": { + "node": ">=6" + }, + "files": [ + "index.js", + "yargs.js", + "lib", + "locales", + "completion.sh.hbs", + "LICENSE" + ], + "homepage": "https://yargs.js.org/", + "keywords": [ + "argument", + "args", + "option", + "parser", + "parsing", + "cli", + "command" + ], + "license": "MIT", + "main": "./index.js", + "name": "yargs", + "repository": { + "type": "git", + "url": "git+https://github.com/yargs/yargs.git" + }, + "scripts": { + "coverage": "nyc report --reporter=text-lcov | coveralls", + "pretest": "standard", + "release": "standard-version", + "test": "nyc --cache mocha --require ./test/before.js --timeout=8000 --check-leaks" + }, + "standard": { + "ignore": [ + "**/example/**" + ] + }, + "version": "12.0.5" +} diff --git a/package-lock.json b/package-lock.json index 8e767dfd0..0b7e72974 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,5 +1,5 @@ { - "name": "setup-java", + "name": "setup-hub", "version": "1.0.0", "lockfileVersion": 1, "requires": true, diff --git a/package.json b/package.json index 4ff3f19a6..f426b3809 100644 --- a/package.json +++ b/package.json @@ -1,9 +1,9 @@ { - "name": "setup-java", + "name": "setup-hub", "version": "1.0.0", "private": true, - "description": "setup java action", - "main": "lib/setup-java.js", + "description": "setup hub action", + "main": "lib/setup-hub.js", "scripts": { "build": "tsc", "format": "prettier --write **/*.ts", @@ -12,14 +12,14 @@ }, "repository": { "type": "git", - "url": "git+https://github.com/actions/setup-java.git" + "url": "git+https://github.com/geertvdc/setup-hub.git" }, "keywords": [ "actions", "node", "setup" ], - "author": "GitHub", + "author": "Geert van der Cruijsen", "license": "MIT", "dependencies": { "@actions/core": "^1.0.0", diff --git a/src/installer.ts b/src/installer.ts index 646f552da..f7aad72e1 100644 --- a/src/installer.ts +++ b/src/installer.ts @@ -1,258 +1,179 @@ -let tempDirectory = process.env['RUNNER_TEMP'] || ''; - -import * as core from '@actions/core'; -import * as io from '@actions/io'; -import * as exec from '@actions/exec'; -import * as tc from '@actions/tool-cache'; -import * as fs from 'fs'; -import * as path from 'path'; -import * as semver from 'semver'; -import * as httpm from 'typed-rest-client/HttpClient'; - -const IS_WINDOWS = process.platform === 'win32'; - -if (!tempDirectory) { - let baseLocation; - if (IS_WINDOWS) { - // On windows use the USERPROFILE env variable - baseLocation = process.env['USERPROFILE'] || 'C:\\'; - } else { - if (process.platform === 'darwin') { - baseLocation = '/Users'; - } else { - baseLocation = '/home'; - } - } - tempDirectory = path.join(baseLocation, 'actions', 'temp'); -} - -export async function getJava( - version: string, - arch: string, - jdkFile: string -): Promise { - let toolPath = tc.find('Java', version); - - if (toolPath) { - core.debug(`Tool found in cache ${toolPath}`); - } else { - let compressedFileExtension = ''; - if (!jdkFile) { - core.debug('Downloading Jdk from Azul'); - let http: httpm.HttpClient = new httpm.HttpClient('setup-java'); - let contents = await (await http.get( - 'https://static.azul.com/zulu/bin/' - )).readBody(); - let refs = contents.match(/
/gi) || []; - - const downloadInfo = getDownloadInfo(refs, version); - - jdkFile = await tc.downloadTool(downloadInfo.url); - version = downloadInfo.version; - compressedFileExtension = IS_WINDOWS ? '.zip' : '.tar.gz'; - } else { - core.debug('Retrieving Jdk from local path'); - } - compressedFileExtension = compressedFileExtension || getFileEnding(jdkFile); - let tempDir: string = path.join( - tempDirectory, - 'temp_' + Math.floor(Math.random() * 2000000000) - ); - const jdkDir = await unzipJavaDownload( - jdkFile, - compressedFileExtension, - tempDir - ); - core.debug(`jdk extracted to ${jdkDir}`); - toolPath = await tc.cacheDir( - jdkDir, - 'Java', - getCacheVersionString(version), - arch - ); - } - - let extendedJavaHome = 'JAVA_HOME_' + version + '_' + arch; - core.exportVariable('JAVA_HOME', toolPath); - core.exportVariable(extendedJavaHome, toolPath); - core.addPath(path.join(toolPath, 'bin')); -} - -function getCacheVersionString(version: string) { - const versionArray = version.split('.'); - const major = versionArray[0]; - const minor = versionArray.length > 1 ? versionArray[1] : '0'; - const patch = versionArray.length > 2 ? versionArray[2] : '0'; - return `${major}.${minor}.${patch}`; -} - -function getFileEnding(file: string): string { - let fileEnding = ''; - - if (file.endsWith('.tar')) { - fileEnding = '.tar'; - } else if (file.endsWith('.tar.gz')) { - fileEnding = '.tar.gz'; - } else if (file.endsWith('.zip')) { - fileEnding = '.zip'; - } else if (file.endsWith('.7z')) { - fileEnding = '.7z'; - } else { - throw new Error(`${file} has an unsupported file extension`); - } - - return fileEnding; -} - -async function extractFiles( - file: string, - fileEnding: string, - destinationFolder: string -): Promise { - const stats = fs.statSync(file); - if (!stats) { - throw new Error(`Failed to extract ${file} - it doesn't exist`); - } else if (stats.isDirectory()) { - throw new Error(`Failed to extract ${file} - it is a directory`); - } - - if ('.tar' === fileEnding || '.tar.gz' === fileEnding) { - await tc.extractTar(file, destinationFolder); - } else if ('.zip' === fileEnding) { - await tc.extractZip(file, destinationFolder); - } else { - // fall through and use sevenZip - await tc.extract7z(file, destinationFolder); - } -} - -// This method recursively finds all .pack files under fsPath and unpacks them with the unpack200 tool -async function unpackJars(fsPath: string, javaBinPath: string) { - if (fs.existsSync(fsPath)) { - if (fs.lstatSync(fsPath).isDirectory()) { - for (const file in fs.readdirSync(fsPath)) { - const curPath = path.join(fsPath, file); - await unpackJars(curPath, javaBinPath); - } - } else if (path.extname(fsPath).toLowerCase() === '.pack') { - // Unpack the pack file synchonously - const p = path.parse(fsPath); - const toolName = IS_WINDOWS ? 'unpack200.exe' : 'unpack200'; - const args = IS_WINDOWS ? '-r -v -l ""' : ''; - const name = path.join(p.dir, p.name); - await exec.exec(`"${path.join(javaBinPath, toolName)}"`, [ - `${args} "${name}.pack" "${name}.jar"` - ]); - } - } -} - -async function unzipJavaDownload( - repoRoot: string, - fileEnding: string, - destinationFolder: string, - extension?: string -): Promise { - // Create the destination folder if it doesn't exist - await io.mkdirP(destinationFolder); - - const jdkFile = path.normalize(repoRoot); - const stats = fs.statSync(jdkFile); - if (stats.isFile()) { - await extractFiles(jdkFile, fileEnding, destinationFolder); - const jdkDirectory = path.join( - destinationFolder, - fs.readdirSync(destinationFolder)[0] - ); - await unpackJars(jdkDirectory, path.join(jdkDirectory, 'bin')); - return jdkDirectory; - } else { - throw new Error(`Jdk argument ${jdkFile} is not a file`); - } -} - -function getDownloadInfo( - refs: string[], - version: string -): {version: string; url: string} { - version = normalizeVersion(version); - let extension = ''; - if (IS_WINDOWS) { - extension = `-win_x64.zip`; - } else { - if (process.platform === 'darwin') { - extension = `-macosx_x64.tar.gz`; - } else { - extension = `-linux_x64.tar.gz`; - } - } - - // Maps version to url - let versionMap = new Map(); - - // Filter by platform - refs.forEach(ref => { - if (ref.indexOf(extension) < 0) { - return; - } - - // If we haven't returned, means we're looking at the correct platform - let versions = ref.match(/jdk.*-/gi) || []; - if (versions.length > 1) { - throw new Error( - `Invalid ref received from https://static.azul.com/zulu/bin/: ${ref}` - ); - } - if (versions.length == 0) { - return; - } - const refVersion = versions[0].slice('jdk'.length, versions[0].length - 1); - - if (semver.satisfies(refVersion, version)) { - versionMap.set( - refVersion, - 'https://static.azul.com/zulu/bin/' + - ref.slice(''.length) - ); - } - }); - - // Choose the most recent satisfying version - let curVersion = '0.0.0'; - let curUrl = ''; - for (const entry of versionMap.entries()) { - const entryVersion = entry[0]; - const entryUrl = entry[1]; - if (semver.gt(entryVersion, curVersion)) { - curUrl = entryUrl; - curVersion = entryVersion; - } - } - - if (curUrl == '') { - throw new Error( - `No valid download found for version ${version}. Check https://static.azul.com/zulu/bin/ for a list of valid versions or download your own jdk file and add the jdkFile argument` - ); - } - - return {version: curVersion, url: curUrl}; -} - -function normalizeVersion(version: string): string { - if (version.slice(0, 2) === '1.') { - // Trim leading 1. for versions like 1.8 - version = version.slice(2); - if (!version) { - throw new Error('1. is not a valid version'); - } - } - - // Add trailing .x if it is missing - if (version.split('.').length != 3) { - if (version[version.length - 1] != 'x') { - version = version + '.x'; - } - } - - return version; -} +let tempDirectory = process.env['RUNNER_TEMP'] || ''; + +import * as core from '@actions/core'; +import * as io from '@actions/io'; +import * as exec from '@actions/exec'; +import * as tc from '@actions/tool-cache'; +import * as fs from 'fs'; +import * as path from 'path'; +import * as semver from 'semver'; +import * as httpm from 'typed-rest-client/HttpClient'; + +const IS_WINDOWS = process.platform === 'win32'; + +if (!tempDirectory) { + let baseLocation; + if (IS_WINDOWS) { + // On windows use the USERPROFILE env variable + baseLocation = process.env['USERPROFILE'] || 'C:\\'; + } else { + if (process.platform === 'darwin') { + baseLocation = '/Users'; + } else { + baseLocation = '/home'; + } + } + tempDirectory = path.join(baseLocation, 'actions', 'temp'); +} + +export async function getHub( + version: string, +): Promise { + let toolPath = tc.find('hub', version); + + if (toolPath) { + core.debug(`Tool found in cache ${toolPath}`); + } else { + let compressedFileExtension = ''; + + core.debug('Downloading hub from Github releases'); + const downloadInfo = await getDownloadInfo(version); + let hubBin = await tc.downloadTool(downloadInfo.url); + compressedFileExtension = IS_WINDOWS ? '.zip' : '.tar.gz'; + + let hubFile = downloadInfo.url.substring(downloadInfo.url.lastIndexOf('/')); + + let tempDir: string = path.join( + tempDirectory, + 'temp_' + Math.floor(Math.random() * 2000000000) + ); + const hubDir = await unzipHubDownload( + hubFile, + compressedFileExtension, + tempDir + ); + core.debug(`hub extracted to ${hubDir}`); + toolPath = await tc.cacheDir( + hubDir, + 'hub', + getCacheVersionString(version) + ); + } + + core.addPath(path.join(toolPath, 'bin')); +} + +function getCacheVersionString(version: string) { + const versionArray = version.split('.'); + const major = versionArray[0]; + const minor = versionArray.length > 1 ? versionArray[1] : '0'; + const patch = versionArray.length > 2 ? versionArray[2] : '0'; + return `${major}.${minor}.${patch}`; +} + +function getFileEnding(file: string): string { + let fileEnding = ''; + + if (file.endsWith('.tar')) { + fileEnding = '.tar'; + } else if (file.endsWith('.tar.gz')) { + fileEnding = '.tar.gz'; + } else if (file.endsWith('.zip')) { + fileEnding = '.zip'; + } else if (file.endsWith('.7z')) { + fileEnding = '.7z'; + } else { + throw new Error(`${file} has an unsupported file extension`); + } + + return fileEnding; +} + +async function extractFiles( + file: string, + fileEnding: string, + destinationFolder: string +): Promise { + const stats = fs.statSync(file); + if (!stats) { + throw new Error(`Failed to extract ${file} - it doesn't exist`); + } else if (stats.isDirectory()) { + throw new Error(`Failed to extract ${file} - it is a directory`); + } + + if ('.tar' === fileEnding || '.tar.gz' === fileEnding) { + await tc.extractTar(file, destinationFolder); + } else if ('.zip' === fileEnding) { + await tc.extractZip(file, destinationFolder); + } else { + // fall through and use sevenZip + await tc.extract7z(file, destinationFolder); + } +} + +async function unzipHubDownload( + repoRoot: string, + fileEnding: string, + destinationFolder: string, + extension?: string +): Promise { + // Create the destination folder if it doesn't exist + await io.mkdirP(destinationFolder); + + const file = path.normalize(repoRoot); + const stats = fs.statSync(file); + if (stats.isFile()) { + await extractFiles(file, fileEnding, destinationFolder); + const hubDir = path.join( + destinationFolder, + fs.readdirSync(destinationFolder)[0] + ); + return hubDir; + } else { + throw new Error(`file argument ${file} is not a file`); + } +} + +async function getDownloadInfo( + version: string +): Promise { + let platform = ''; + let fileExtension = IS_WINDOWS ? '.zip' : '.tar.gz'; + + if (IS_WINDOWS) { + platform = `windows`; + } else { + if (process.platform === 'darwin') { + platform = `darwin`; + } else { + platform = `linux`; + } + } + + if(version){ + let validVersion = semver.valid(version); + if(!validVersion) + { + throw new Error( + `No valid download found for version ${version}. Check https://github.com/github/hub/releases for a list of valid releases` + ); + } + //specific version, get that version from releases + return {url: `https://github.com/github/hub/releases/download/v${version}/hub-${platform}-amd64-${version}${fileExtension}`,version: version} as DownloadInfo; + + } + else{ + //get latest release + let http: httpm.HttpClient = new httpm.HttpClient('setup-hub'); + let releaseJson = await (await http.get('https://api.github.com/repos/github/hub/releases/latest')).readBody(); + let releasesInfo = JSON.parse(releaseJson); + let latestVersion = releasesInfo.tag_name.substring(1); + + return {url: `https://github.com/github/hub/releases/latest/download/hub-${platform}-amd64-${latestVersion}${fileExtension}`,version: latestVersion} as DownloadInfo; + } +} + +export interface DownloadInfo { + url: string; + version: string; +} \ No newline at end of file diff --git a/src/setup-hub.ts b/src/setup-hub.ts new file mode 100644 index 000000000..d7cfd85f9 --- /dev/null +++ b/src/setup-hub.ts @@ -0,0 +1,20 @@ +import * as core from '@actions/core'; +import * as installer from './installer'; +import * as path from 'path'; + +async function run() { + try { + let version = core.getInput('version'); + if (!version) { + version = core.getInput('hub-version', {required: true}); + } + await installer.getHub(version); + + const matchersPath = path.join(__dirname, '..', '.github'); + console.log(`##[add-matcher]${path.join(matchersPath, 'hub.json')}`); + } catch (error) { + core.setFailed(error.message); + } +} + +run();