diff --git a/config.js b/config.js index 5a829f075..39fa5f5e8 100644 --- a/config.js +++ b/config.js @@ -77,6 +77,16 @@ function validateAutoPush(autoPush, githubToken) { throw new Error("'auto-push' is enabled but 'github-token' is not set. Please give API token for pushing GitHub pages branch to remote"); } } +function getBoolInput(name) { + const input = core.getInput(name); + if (!input) { + return false; + } + if (input !== 'true' && input !== 'false') { + throw new Error(`'${name}' input must be boolean value 'true' or 'false' but got '${input}'`); + } + return input === 'true'; +} async function configFromJobInput() { const tool = core.getInput('tool'); let outputFilePath = core.getInput('output-file-path'); @@ -84,7 +94,7 @@ async function configFromJobInput() { let benchmarkDataDirPath = core.getInput('benchmark-data-dir-path'); const name = core.getInput('name'); const githubToken = core.getInput('github-token') || undefined; - const autoPush = core.getInput('auto-push') === 'true'; + const autoPush = getBoolInput('auto-push'); validateToolType(tool); outputFilePath = await validateOutputFilePath(outputFilePath); validateGhPagesBranch(ghPagesBranch); @@ -94,4 +104,4 @@ async function configFromJobInput() { return { name, tool, outputFilePath, ghPagesBranch, benchmarkDataDirPath, githubToken, autoPush }; } exports.configFromJobInput = configFromJobInput; -//# sourceMappingURL=config.js.map +//# sourceMappingURL=config.js.map \ No newline at end of file diff --git a/extract.js b/extract.js index e1815a591..f8a5d9d3b 100644 --- a/extract.js +++ b/extract.js @@ -107,4 +107,4 @@ async function extractResult(config) { }; } exports.extractResult = extractResult; -//# sourceMappingURL=extract.js.map +//# sourceMappingURL=extract.js.map \ No newline at end of file diff --git a/index.js b/index.js index a1bfe8ec9..789ffb9d4 100644 --- a/index.js +++ b/index.js @@ -17,7 +17,7 @@ async function main() { const bench = await extract_1.extractResult(config); core.debug(`Benchmark result was extracted: ${bench}`); await write_1.writeBenchmark(bench, config); - console.log('Benchmark was pushed successfully!', '\nData:', bench); + console.log('github-aciton-bvenchmark was run successfully!', '\nData:', bench); } main().catch(e => core.setFailed(e.message)); //# sourceMappingURL=index.js.map \ No newline at end of file diff --git a/node_modules/@actions/core/package.json b/node_modules/@actions/core/package.json index ef50ea3aa..1701c7c0d 100644 --- a/node_modules/@actions/core/package.json +++ b/node_modules/@actions/core/package.json @@ -1,34 +1,36 @@ { - "_from": "@actions/core", + "_args": [ + [ + "@actions/core@1.2.0", + "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark" + ] + ], + "_from": "@actions/core@1.2.0", "_id": "@actions/core@1.2.0", "_inBundle": false, "_integrity": "sha512-ZKdyhlSlyz38S6YFfPnyNgCDZuAF2T0Qv5eHflNWytPS8Qjvz39bZFMry9Bb/dpSnqWcNeav5yM2CTYpJeY+Dw==", "_location": "/@actions/core", "_phantomChildren": {}, "_requested": { - "type": "tag", + "type": "version", "registry": true, - "raw": "@actions/core", + "raw": "@actions/core@1.2.0", "name": "@actions/core", "escapedName": "@actions%2fcore", "scope": "@actions", - "rawSpec": "", + "rawSpec": "1.2.0", "saveSpec": null, - "fetchSpec": "latest" + "fetchSpec": "1.2.0" }, "_requiredBy": [ - "#USER", "/" ], "_resolved": "https://registry.npmjs.org/@actions/core/-/core-1.2.0.tgz", - "_shasum": "aa5f52b26c362c821d41557e599371a42f6c0b3d", - "_spec": "@actions/core", - "_where": "/Users/npsdev5/Develop/github.com/rhysd/github-action-benchmark", + "_spec": "1.2.0", + "_where": "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark", "bugs": { "url": "https://github.com/actions/toolkit/issues" }, - "bundleDependencies": false, - "deprecated": false, "description": "Actions core lib", "devDependencies": { "@types/node": "^12.0.2" diff --git a/node_modules/@actions/exec/package.json b/node_modules/@actions/exec/package.json index 3885e9534..2beefcffc 100644 --- a/node_modules/@actions/exec/package.json +++ b/node_modules/@actions/exec/package.json @@ -1,34 +1,36 @@ { - "_from": "@actions/exec", + "_args": [ + [ + "@actions/exec@1.0.1", + "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark" + ] + ], + "_from": "@actions/exec@1.0.1", "_id": "@actions/exec@1.0.1", "_inBundle": false, "_integrity": "sha512-nvFkxwiicvpzNiCBF4wFBDfnBvi7xp/as7LE1hBxBxKG2L29+gkIPBiLKMVORL+Hg3JNf07AKRfl0V5djoypjQ==", "_location": "/@actions/exec", "_phantomChildren": {}, "_requested": { - "type": "tag", + "type": "version", "registry": true, - "raw": "@actions/exec", + "raw": "@actions/exec@1.0.1", "name": "@actions/exec", "escapedName": "@actions%2fexec", "scope": "@actions", - "rawSpec": "", + "rawSpec": "1.0.1", "saveSpec": null, - "fetchSpec": "latest" + "fetchSpec": "1.0.1" }, "_requiredBy": [ - "#USER", "/" ], "_resolved": "https://registry.npmjs.org/@actions/exec/-/exec-1.0.1.tgz", - "_shasum": "1624b541165697e7008d7c87bc1f69f191263c6c", - "_spec": "@actions/exec", - "_where": "/Users/npsdev5/Develop/github.com/rhysd/github-action-benchmark", + "_spec": "1.0.1", + "_where": "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark", "bugs": { "url": "https://github.com/actions/toolkit/issues" }, - "bundleDependencies": false, - "deprecated": false, "description": "Actions exec lib", "devDependencies": { "@actions/io": "^1.0.1" diff --git a/node_modules/@actions/github/package.json b/node_modules/@actions/github/package.json index c1c25b568..e6fdb6a44 100644 --- a/node_modules/@actions/github/package.json +++ b/node_modules/@actions/github/package.json @@ -1,38 +1,40 @@ { - "_from": "@actions/github", + "_args": [ + [ + "@actions/github@1.1.0", + "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark" + ] + ], + "_from": "@actions/github@1.1.0", "_id": "@actions/github@1.1.0", "_inBundle": false, "_integrity": "sha512-cHf6PyoNMdei13jEdGPhKprIMFmjVVW/dnM5/9QmQDJ1ZTaGVyezUSCUIC/ySNLRvDUpeFwPYMdThSEJldSbUw==", "_location": "/@actions/github", "_phantomChildren": {}, "_requested": { - "type": "tag", + "type": "version", "registry": true, - "raw": "@actions/github", + "raw": "@actions/github@1.1.0", "name": "@actions/github", "escapedName": "@actions%2fgithub", "scope": "@actions", - "rawSpec": "", + "rawSpec": "1.1.0", "saveSpec": null, - "fetchSpec": "latest" + "fetchSpec": "1.1.0" }, "_requiredBy": [ - "#USER", "/" ], "_resolved": "https://registry.npmjs.org/@actions/github/-/github-1.1.0.tgz", - "_shasum": "06f34e6b0cf07eb2b3641de3e680dbfae6bcd400", - "_spec": "@actions/github", - "_where": "/Users/npsdev5/Develop/github.com/rhysd/github-action-benchmark", + "_spec": "1.1.0", + "_where": "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark", "bugs": { "url": "https://github.com/actions/toolkit/issues" }, - "bundleDependencies": false, "dependencies": { "@octokit/graphql": "^2.0.1", "@octokit/rest": "^16.15.0" }, - "deprecated": false, "description": "Actions github lib", "devDependencies": { "jest": "^24.7.1" diff --git a/node_modules/@actions/io/package.json b/node_modules/@actions/io/package.json index e164975c3..a1b651cd5 100644 --- a/node_modules/@actions/io/package.json +++ b/node_modules/@actions/io/package.json @@ -1,34 +1,36 @@ { - "_from": "@actions/io", + "_args": [ + [ + "@actions/io@1.0.1", + "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark" + ] + ], + "_from": "@actions/io@1.0.1", "_id": "@actions/io@1.0.1", "_inBundle": false, "_integrity": "sha512-rhq+tfZukbtaus7xyUtwKfuiCRXd1hWSfmJNEpFgBQJ4woqPEpsBw04awicjwz9tyG2/MVhAEMfVn664Cri5zA==", "_location": "/@actions/io", "_phantomChildren": {}, "_requested": { - "type": "tag", + "type": "version", "registry": true, - "raw": "@actions/io", + "raw": "@actions/io@1.0.1", "name": "@actions/io", "escapedName": "@actions%2fio", "scope": "@actions", - "rawSpec": "", + "rawSpec": "1.0.1", "saveSpec": null, - "fetchSpec": "latest" + "fetchSpec": "1.0.1" }, "_requiredBy": [ - "#USER", "/" ], "_resolved": "https://registry.npmjs.org/@actions/io/-/io-1.0.1.tgz", - "_shasum": "81a9418fe2bbdef2d2717a8e9f85188b9c565aca", - "_spec": "@actions/io", - "_where": "/Users/npsdev5/Develop/github.com/rhysd/github-action-benchmark", + "_spec": "1.0.1", + "_where": "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark", "bugs": { "url": "https://github.com/actions/toolkit/issues" }, - "bundleDependencies": false, - "deprecated": false, "description": "Actions io lib", "directories": { "lib": "lib", diff --git a/node_modules/@octokit/endpoint/node_modules/universal-user-agent/package.json b/node_modules/@octokit/endpoint/node_modules/universal-user-agent/package.json index 1d057f8cb..451360cba 100644 --- a/node_modules/@octokit/endpoint/node_modules/universal-user-agent/package.json +++ b/node_modules/@octokit/endpoint/node_modules/universal-user-agent/package.json @@ -1,35 +1,38 @@ { - "_from": "universal-user-agent@^4.0.0", + "_args": [ + [ + "universal-user-agent@4.0.0", + "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark" + ] + ], + "_from": "universal-user-agent@4.0.0", "_id": "universal-user-agent@4.0.0", "_inBundle": false, "_integrity": "sha512-eM8knLpev67iBDizr/YtqkJsF3GK8gzDc6st/WKzrTuPtcsOKW/0IdL4cnMBsU69pOx0otavLWBDGTwg+dB0aA==", "_location": "/@octokit/endpoint/universal-user-agent", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "universal-user-agent@^4.0.0", + "raw": "universal-user-agent@4.0.0", "name": "universal-user-agent", "escapedName": "universal-user-agent", - "rawSpec": "^4.0.0", + "rawSpec": "4.0.0", "saveSpec": null, - "fetchSpec": "^4.0.0" + "fetchSpec": "4.0.0" }, "_requiredBy": [ "/@octokit/endpoint" ], "_resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-4.0.0.tgz", - "_shasum": "27da2ec87e32769619f68a14996465ea1cb9df16", - "_spec": "universal-user-agent@^4.0.0", - "_where": "/Users/npsdev5/Develop/github.com/rhysd/github-action-benchmark/node_modules/@octokit/endpoint", + "_spec": "4.0.0", + "_where": "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark", "bugs": { "url": "https://github.com/gr2m/universal-user-agent/issues" }, - "bundleDependencies": false, "dependencies": { "os-name": "^3.1.0" }, - "deprecated": false, "description": "Get a user agent string in both browser and node", "devDependencies": { "@gr2m/pika-plugin-build-web": "^0.6.0-issue-84.1", diff --git a/node_modules/@octokit/endpoint/package.json b/node_modules/@octokit/endpoint/package.json index 29681b369..637283136 100644 --- a/node_modules/@octokit/endpoint/package.json +++ b/node_modules/@octokit/endpoint/package.json @@ -1,5 +1,11 @@ { - "_from": "@octokit/endpoint@^5.5.0", + "_args": [ + [ + "@octokit/endpoint@5.5.1", + "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark" + ] + ], + "_from": "@octokit/endpoint@5.5.1", "_id": "@octokit/endpoint@5.5.1", "_inBundle": false, "_integrity": "sha512-nBFhRUb5YzVTCX/iAK1MgQ4uWo89Gu0TH00qQHoYRCsE12dWcG1OiLd7v2EIo2+tpUKPMOQ62QFy9hy9Vg2ULg==", @@ -8,34 +14,31 @@ "os-name": "3.1.0" }, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "@octokit/endpoint@^5.5.0", + "raw": "@octokit/endpoint@5.5.1", "name": "@octokit/endpoint", "escapedName": "@octokit%2fendpoint", "scope": "@octokit", - "rawSpec": "^5.5.0", + "rawSpec": "5.5.1", "saveSpec": null, - "fetchSpec": "^5.5.0" + "fetchSpec": "5.5.1" }, "_requiredBy": [ "/@octokit/request" ], "_resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-5.5.1.tgz", - "_shasum": "2eea81e110ca754ff2de11c79154ccab4ae16b3f", - "_spec": "@octokit/endpoint@^5.5.0", - "_where": "/Users/npsdev5/Develop/github.com/rhysd/github-action-benchmark/node_modules/@octokit/request", + "_spec": "5.5.1", + "_where": "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark", "bugs": { "url": "https://github.com/octokit/endpoint.js/issues" }, - "bundleDependencies": false, "deno": "dist-web/index.js", "dependencies": { "@octokit/types": "^2.0.0", "is-plain-object": "^3.0.0", "universal-user-agent": "^4.0.0" }, - "deprecated": false, "description": "Turns REST API endpoints into generic request options", "devDependencies": { "@pika/pack": "^0.5.0", diff --git a/node_modules/@octokit/graphql/package.json b/node_modules/@octokit/graphql/package.json index 8c49c2aa7..d9c8dcd11 100644 --- a/node_modules/@octokit/graphql/package.json +++ b/node_modules/@octokit/graphql/package.json @@ -1,28 +1,33 @@ { - "_from": "@octokit/graphql@^2.0.1", + "_args": [ + [ + "@octokit/graphql@2.1.3", + "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark" + ] + ], + "_from": "@octokit/graphql@2.1.3", "_id": "@octokit/graphql@2.1.3", "_inBundle": false, "_integrity": "sha512-XoXJqL2ondwdnMIW3wtqJWEwcBfKk37jO/rYkoxNPEVeLBDGsGO1TCWggrAlq3keGt/O+C/7VepXnukUxwt5vA==", "_location": "/@octokit/graphql", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "@octokit/graphql@^2.0.1", + "raw": "@octokit/graphql@2.1.3", "name": "@octokit/graphql", "escapedName": "@octokit%2fgraphql", "scope": "@octokit", - "rawSpec": "^2.0.1", + "rawSpec": "2.1.3", "saveSpec": null, - "fetchSpec": "^2.0.1" + "fetchSpec": "2.1.3" }, "_requiredBy": [ "/@actions/github" ], "_resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-2.1.3.tgz", - "_shasum": "60c058a0ed5fa242eca6f938908d95fd1a2f4b92", - "_spec": "@octokit/graphql@^2.0.1", - "_where": "/Users/npsdev5/Develop/github.com/rhysd/github-action-benchmark/node_modules/@actions/github", + "_spec": "2.1.3", + "_where": "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark", "author": { "name": "Gregor Martynus", "url": "https://github.com/gr2m" @@ -30,7 +35,6 @@ "bugs": { "url": "https://github.com/octokit/graphql.js/issues" }, - "bundleDependencies": false, "bundlesize": [ { "path": "./dist/octokit-graphql.min.js.gz", @@ -41,7 +45,6 @@ "@octokit/request": "^5.0.0", "universal-user-agent": "^2.0.3" }, - "deprecated": false, "description": "GitHub GraphQL API client for browsers and Node", "devDependencies": { "chai": "^4.2.0", diff --git a/node_modules/@octokit/request-error/package.json b/node_modules/@octokit/request-error/package.json index c84f9bd0a..e07765fa7 100644 --- a/node_modules/@octokit/request-error/package.json +++ b/node_modules/@octokit/request-error/package.json @@ -1,40 +1,43 @@ { - "_from": "@octokit/request-error@^1.0.1", + "_args": [ + [ + "@octokit/request-error@1.2.0", + "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark" + ] + ], + "_from": "@octokit/request-error@1.2.0", "_id": "@octokit/request-error@1.2.0", "_inBundle": false, "_integrity": "sha512-DNBhROBYjjV/I9n7A8kVkmQNkqFAMem90dSxqvPq57e2hBr7mNTX98y3R2zDpqMQHVRpBDjsvsfIGgBzy+4PAg==", "_location": "/@octokit/request-error", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "@octokit/request-error@^1.0.1", + "raw": "@octokit/request-error@1.2.0", "name": "@octokit/request-error", "escapedName": "@octokit%2frequest-error", "scope": "@octokit", - "rawSpec": "^1.0.1", + "rawSpec": "1.2.0", "saveSpec": null, - "fetchSpec": "^1.0.1" + "fetchSpec": "1.2.0" }, "_requiredBy": [ "/@octokit/request", "/@octokit/rest" ], "_resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-1.2.0.tgz", - "_shasum": "a64d2a9d7a13555570cd79722de4a4d76371baaa", - "_spec": "@octokit/request-error@^1.0.1", - "_where": "/Users/npsdev5/Develop/github.com/rhysd/github-action-benchmark/node_modules/@octokit/request", + "_spec": "1.2.0", + "_where": "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark", "bugs": { "url": "https://github.com/octokit/request-error.js/issues" }, - "bundleDependencies": false, "deno": "dist-web/index.js", "dependencies": { "@octokit/types": "^2.0.0", "deprecation": "^2.0.0", "once": "^1.4.0" }, - "deprecated": false, "description": "Error class for Octokit request errors", "devDependencies": { "@pika/pack": "^0.5.0", diff --git a/node_modules/@octokit/request/node_modules/universal-user-agent/package.json b/node_modules/@octokit/request/node_modules/universal-user-agent/package.json index 55bc315ce..0ed1ecd5d 100644 --- a/node_modules/@octokit/request/node_modules/universal-user-agent/package.json +++ b/node_modules/@octokit/request/node_modules/universal-user-agent/package.json @@ -1,35 +1,38 @@ { - "_from": "universal-user-agent@^4.0.0", + "_args": [ + [ + "universal-user-agent@4.0.0", + "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark" + ] + ], + "_from": "universal-user-agent@4.0.0", "_id": "universal-user-agent@4.0.0", "_inBundle": false, "_integrity": "sha512-eM8knLpev67iBDizr/YtqkJsF3GK8gzDc6st/WKzrTuPtcsOKW/0IdL4cnMBsU69pOx0otavLWBDGTwg+dB0aA==", "_location": "/@octokit/request/universal-user-agent", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "universal-user-agent@^4.0.0", + "raw": "universal-user-agent@4.0.0", "name": "universal-user-agent", "escapedName": "universal-user-agent", - "rawSpec": "^4.0.0", + "rawSpec": "4.0.0", "saveSpec": null, - "fetchSpec": "^4.0.0" + "fetchSpec": "4.0.0" }, "_requiredBy": [ "/@octokit/request" ], "_resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-4.0.0.tgz", - "_shasum": "27da2ec87e32769619f68a14996465ea1cb9df16", - "_spec": "universal-user-agent@^4.0.0", - "_where": "/Users/npsdev5/Develop/github.com/rhysd/github-action-benchmark/node_modules/@octokit/request", + "_spec": "4.0.0", + "_where": "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark", "bugs": { "url": "https://github.com/gr2m/universal-user-agent/issues" }, - "bundleDependencies": false, "dependencies": { "os-name": "^3.1.0" }, - "deprecated": false, "description": "Get a user agent string in both browser and node", "devDependencies": { "@gr2m/pika-plugin-build-web": "^0.6.0-issue-84.1", diff --git a/node_modules/@octokit/request/package.json b/node_modules/@octokit/request/package.json index d59379bcc..0514b3651 100644 --- a/node_modules/@octokit/request/package.json +++ b/node_modules/@octokit/request/package.json @@ -1,5 +1,11 @@ { - "_from": "@octokit/request@^5.0.0", + "_args": [ + [ + "@octokit/request@5.3.1", + "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark" + ] + ], + "_from": "@octokit/request@5.3.1", "_id": "@octokit/request@5.3.1", "_inBundle": false, "_integrity": "sha512-5/X0AL1ZgoU32fAepTfEoggFinO3rxsMLtzhlUX+RctLrusn/CApJuGFCd0v7GMFhF+8UiCsTTfsu7Fh1HnEJg==", @@ -8,28 +14,26 @@ "os-name": "3.1.0" }, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "@octokit/request@^5.0.0", + "raw": "@octokit/request@5.3.1", "name": "@octokit/request", "escapedName": "@octokit%2frequest", "scope": "@octokit", - "rawSpec": "^5.0.0", + "rawSpec": "5.3.1", "saveSpec": null, - "fetchSpec": "^5.0.0" + "fetchSpec": "5.3.1" }, "_requiredBy": [ "/@octokit/graphql", "/@octokit/rest" ], "_resolved": "https://registry.npmjs.org/@octokit/request/-/request-5.3.1.tgz", - "_shasum": "3a1ace45e6f88b1be4749c5da963b3a3b4a2f120", - "_spec": "@octokit/request@^5.0.0", - "_where": "/Users/npsdev5/Develop/github.com/rhysd/github-action-benchmark/node_modules/@octokit/graphql", + "_spec": "5.3.1", + "_where": "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark", "bugs": { "url": "https://github.com/octokit/request.js/issues" }, - "bundleDependencies": false, "deno": "dist-web/index.js", "dependencies": { "@octokit/endpoint": "^5.5.0", @@ -41,7 +45,6 @@ "once": "^1.4.0", "universal-user-agent": "^4.0.0" }, - "deprecated": false, "description": "Send parameterized requests to GitHub’s APIs with sensible defaults in browsers and Node", "devDependencies": { "@octokit/auth-app": "^2.1.2", diff --git a/node_modules/@octokit/rest/node_modules/universal-user-agent/package.json b/node_modules/@octokit/rest/node_modules/universal-user-agent/package.json index 5bd08a500..bd519a074 100644 --- a/node_modules/@octokit/rest/node_modules/universal-user-agent/package.json +++ b/node_modules/@octokit/rest/node_modules/universal-user-agent/package.json @@ -1,35 +1,38 @@ { - "_from": "universal-user-agent@^4.0.0", + "_args": [ + [ + "universal-user-agent@4.0.0", + "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark" + ] + ], + "_from": "universal-user-agent@4.0.0", "_id": "universal-user-agent@4.0.0", "_inBundle": false, "_integrity": "sha512-eM8knLpev67iBDizr/YtqkJsF3GK8gzDc6st/WKzrTuPtcsOKW/0IdL4cnMBsU69pOx0otavLWBDGTwg+dB0aA==", "_location": "/@octokit/rest/universal-user-agent", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "universal-user-agent@^4.0.0", + "raw": "universal-user-agent@4.0.0", "name": "universal-user-agent", "escapedName": "universal-user-agent", - "rawSpec": "^4.0.0", + "rawSpec": "4.0.0", "saveSpec": null, - "fetchSpec": "^4.0.0" + "fetchSpec": "4.0.0" }, "_requiredBy": [ "/@octokit/rest" ], "_resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-4.0.0.tgz", - "_shasum": "27da2ec87e32769619f68a14996465ea1cb9df16", - "_spec": "universal-user-agent@^4.0.0", - "_where": "/Users/npsdev5/Develop/github.com/rhysd/github-action-benchmark/node_modules/@octokit/rest", + "_spec": "4.0.0", + "_where": "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark", "bugs": { "url": "https://github.com/gr2m/universal-user-agent/issues" }, - "bundleDependencies": false, "dependencies": { "os-name": "^3.1.0" }, - "deprecated": false, "description": "Get a user agent string in both browser and node", "devDependencies": { "@gr2m/pika-plugin-build-web": "^0.6.0-issue-84.1", diff --git a/node_modules/@octokit/rest/package.json b/node_modules/@octokit/rest/package.json index c51237abc..f489d5c35 100644 --- a/node_modules/@octokit/rest/package.json +++ b/node_modules/@octokit/rest/package.json @@ -1,5 +1,11 @@ { - "_from": "@octokit/rest@^16.15.0", + "_args": [ + [ + "@octokit/rest@16.34.1", + "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark" + ] + ], + "_from": "@octokit/rest@16.34.1", "_id": "@octokit/rest@16.34.1", "_inBundle": false, "_integrity": "sha512-JUoS12cdktf1fv86rgrjC/RvYLuL+o7p57W7zX1x7ANFJ7OvdV8emvUNkFlcidEaOkYrxK3SoWgQFt3FhNmabA==", @@ -8,23 +14,22 @@ "os-name": "3.1.0" }, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "@octokit/rest@^16.15.0", + "raw": "@octokit/rest@16.34.1", "name": "@octokit/rest", "escapedName": "@octokit%2frest", "scope": "@octokit", - "rawSpec": "^16.15.0", + "rawSpec": "16.34.1", "saveSpec": null, - "fetchSpec": "^16.15.0" + "fetchSpec": "16.34.1" }, "_requiredBy": [ "/@actions/github" ], "_resolved": "https://registry.npmjs.org/@octokit/rest/-/rest-16.34.1.tgz", - "_shasum": "e28b5a573ca2f15bb002f90bc010020845ed9c01", - "_spec": "@octokit/rest@^16.15.0", - "_where": "/Users/npsdev5/Develop/github.com/rhysd/github-action-benchmark/node_modules/@actions/github", + "_spec": "16.34.1", + "_where": "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark", "author": { "name": "Gregor Martynus", "url": "https://github.com/gr2m" @@ -32,7 +37,6 @@ "bugs": { "url": "https://github.com/octokit/rest.js/issues" }, - "bundleDependencies": false, "bundlesize": [ { "path": "./dist/octokit-rest.min.js.gz", @@ -71,7 +75,6 @@ "once": "^1.4.0", "universal-user-agent": "^4.0.0" }, - "deprecated": false, "description": "GitHub REST API client for Node.js", "devDependencies": { "@gimenete/type-writer": "^0.1.3", diff --git a/node_modules/@octokit/types/package.json b/node_modules/@octokit/types/package.json index e0c8f5398..f9e005009 100644 --- a/node_modules/@octokit/types/package.json +++ b/node_modules/@octokit/types/package.json @@ -1,20 +1,26 @@ { - "_from": "@octokit/types@^2.0.0", + "_args": [ + [ + "@octokit/types@2.0.1", + "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark" + ] + ], + "_from": "@octokit/types@2.0.1", "_id": "@octokit/types@2.0.1", "_inBundle": false, "_integrity": "sha512-YDYgV6nCzdGdOm7wy43Ce8SQ3M5DMKegB8E5sTB/1xrxOdo2yS/KgUgML2N2ZGD621mkbdrAglwTyA4NDOlFFA==", "_location": "/@octokit/types", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "@octokit/types@^2.0.0", + "raw": "@octokit/types@2.0.1", "name": "@octokit/types", "escapedName": "@octokit%2ftypes", "scope": "@octokit", - "rawSpec": "^2.0.0", + "rawSpec": "2.0.1", "saveSpec": null, - "fetchSpec": "^2.0.0" + "fetchSpec": "2.0.1" }, "_requiredBy": [ "/@octokit/endpoint", @@ -22,9 +28,8 @@ "/@octokit/request-error" ], "_resolved": "https://registry.npmjs.org/@octokit/types/-/types-2.0.1.tgz", - "_shasum": "0caf0364e010296265621593ac9a37f40ef75dad", - "_spec": "@octokit/types@^2.0.0", - "_where": "/Users/npsdev5/Develop/github.com/rhysd/github-action-benchmark/node_modules/@octokit/request", + "_spec": "2.0.1", + "_where": "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark", "author": { "name": "Gregor Martynus", "url": "https://twitter.com/gr2m" @@ -32,11 +37,9 @@ "bugs": { "url": "https://github.com/octokit/types.ts/issues" }, - "bundleDependencies": false, "dependencies": { "@types/node": ">= 8" }, - "deprecated": false, "description": "Shared TypeScript definitions for Octokit projects", "devDependencies": { "@octokit/graphql": "^4.2.2", diff --git a/node_modules/@types/node/package.json b/node_modules/@types/node/package.json index cc751db5a..0ef770a4f 100644 --- a/node_modules/@types/node/package.json +++ b/node_modules/@types/node/package.json @@ -2,7 +2,7 @@ "_args": [ [ "@types/node@12.12.7", - "/Users/npsdev5/Develop/github.com/rhysd/github-action-benchmark" + "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark" ] ], "_from": "@types/node@12.12.7", @@ -31,7 +31,7 @@ ], "_resolved": "https://registry.npmjs.org/@types/node/-/node-12.12.7.tgz", "_spec": "12.12.7", - "_where": "/Users/npsdev5/Develop/github.com/rhysd/github-action-benchmark", + "_where": "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark", "bugs": { "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" }, diff --git a/node_modules/atob-lite/package.json b/node_modules/atob-lite/package.json index 58cbdd555..06e9ccd60 100644 --- a/node_modules/atob-lite/package.json +++ b/node_modules/atob-lite/package.json @@ -1,27 +1,32 @@ { - "_from": "atob-lite@^2.0.0", + "_args": [ + [ + "atob-lite@2.0.0", + "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark" + ] + ], + "_from": "atob-lite@2.0.0", "_id": "atob-lite@2.0.0", "_inBundle": false, "_integrity": "sha1-D+9a1G8b16hQLGVyfwNn1e5D1pY=", "_location": "/atob-lite", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "atob-lite@^2.0.0", + "raw": "atob-lite@2.0.0", "name": "atob-lite", "escapedName": "atob-lite", - "rawSpec": "^2.0.0", + "rawSpec": "2.0.0", "saveSpec": null, - "fetchSpec": "^2.0.0" + "fetchSpec": "2.0.0" }, "_requiredBy": [ "/@octokit/rest" ], "_resolved": "https://registry.npmjs.org/atob-lite/-/atob-lite-2.0.0.tgz", - "_shasum": "0fef5ad46f1bd7a8502c65727f0367d5ee43d696", - "_spec": "atob-lite@^2.0.0", - "_where": "/Users/npsdev5/Develop/github.com/rhysd/github-action-benchmark/node_modules/@octokit/rest", + "_spec": "2.0.0", + "_where": "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark", "author": { "name": "Hugh Kennedy", "email": "hughskennedy@gmail.com", @@ -31,9 +36,7 @@ "bugs": { "url": "https://github.com/hughsk/atob-lite/issues" }, - "bundleDependencies": false, "dependencies": {}, - "deprecated": false, "description": "Smallest/simplest possible means of using atob with both Node and browserify", "devDependencies": { "browserify": "^10.2.4", diff --git a/node_modules/before-after-hook/package.json b/node_modules/before-after-hook/package.json index b8842c8bc..d9eed1826 100644 --- a/node_modules/before-after-hook/package.json +++ b/node_modules/before-after-hook/package.json @@ -1,36 +1,39 @@ { - "_from": "before-after-hook@^2.0.0", + "_args": [ + [ + "before-after-hook@2.1.0", + "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark" + ] + ], + "_from": "before-after-hook@2.1.0", "_id": "before-after-hook@2.1.0", "_inBundle": false, "_integrity": "sha512-IWIbu7pMqyw3EAJHzzHbWa85b6oud/yfKYg5rqB5hNE8CeMi3nX+2C2sj0HswfblST86hpVEOAb9x34NZd6P7A==", "_location": "/before-after-hook", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "before-after-hook@^2.0.0", + "raw": "before-after-hook@2.1.0", "name": "before-after-hook", "escapedName": "before-after-hook", - "rawSpec": "^2.0.0", + "rawSpec": "2.1.0", "saveSpec": null, - "fetchSpec": "^2.0.0" + "fetchSpec": "2.1.0" }, "_requiredBy": [ "/@octokit/rest" ], "_resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.1.0.tgz", - "_shasum": "b6c03487f44e24200dd30ca5e6a1979c5d2fb635", - "_spec": "before-after-hook@^2.0.0", - "_where": "/Users/npsdev5/Develop/github.com/rhysd/github-action-benchmark/node_modules/@octokit/rest", + "_spec": "2.1.0", + "_where": "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark", "author": { "name": "Gregor Martynus" }, "bugs": { "url": "https://github.com/gr2m/before-after-hook/issues" }, - "bundleDependencies": false, "dependencies": {}, - "deprecated": false, "description": "asynchronous before/error/after hooks for internal functionality", "devDependencies": { "browserify": "^16.0.0", diff --git a/node_modules/btoa-lite/package.json b/node_modules/btoa-lite/package.json index 1abfd603e..492ec5762 100644 --- a/node_modules/btoa-lite/package.json +++ b/node_modules/btoa-lite/package.json @@ -1,27 +1,32 @@ { - "_from": "btoa-lite@^1.0.0", + "_args": [ + [ + "btoa-lite@1.0.0", + "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark" + ] + ], + "_from": "btoa-lite@1.0.0", "_id": "btoa-lite@1.0.0", "_inBundle": false, "_integrity": "sha1-M3dm2hWAEhD92VbCLpxokaudAzc=", "_location": "/btoa-lite", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "btoa-lite@^1.0.0", + "raw": "btoa-lite@1.0.0", "name": "btoa-lite", "escapedName": "btoa-lite", - "rawSpec": "^1.0.0", + "rawSpec": "1.0.0", "saveSpec": null, - "fetchSpec": "^1.0.0" + "fetchSpec": "1.0.0" }, "_requiredBy": [ "/@octokit/rest" ], "_resolved": "https://registry.npmjs.org/btoa-lite/-/btoa-lite-1.0.0.tgz", - "_shasum": "337766da15801210fdd956c22e9c6891ab9d0337", - "_spec": "btoa-lite@^1.0.0", - "_where": "/Users/npsdev5/Develop/github.com/rhysd/github-action-benchmark/node_modules/@octokit/rest", + "_spec": "1.0.0", + "_where": "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark", "author": { "name": "Hugh Kennedy", "email": "hughskennedy@gmail.com", @@ -31,9 +36,7 @@ "bugs": { "url": "https://github.com/hughsk/btoa-lite/issues" }, - "bundleDependencies": false, "dependencies": {}, - "deprecated": false, "description": "Smallest/simplest possible means of using btoa with both Node and browserify", "devDependencies": { "browserify": "^10.2.4", diff --git a/node_modules/cross-spawn/package.json b/node_modules/cross-spawn/package.json index 5190a0436..a55ff5620 100644 --- a/node_modules/cross-spawn/package.json +++ b/node_modules/cross-spawn/package.json @@ -1,27 +1,34 @@ { - "_from": "cross-spawn@^6.0.0", + "_args": [ + [ + "cross-spawn@6.0.5", + "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark" + ] + ], + "_from": "cross-spawn@6.0.5", "_id": "cross-spawn@6.0.5", "_inBundle": false, "_integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", "_location": "/cross-spawn", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "cross-spawn@^6.0.0", + "raw": "cross-spawn@6.0.5", "name": "cross-spawn", "escapedName": "cross-spawn", - "rawSpec": "^6.0.0", + "rawSpec": "6.0.5", "saveSpec": null, - "fetchSpec": "^6.0.0" + "fetchSpec": "6.0.5" }, "_requiredBy": [ - "/execa" + "/eslint", + "/execa", + "/npm-run-all" ], "_resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "_shasum": "4a5ec7c64dfae22c3a14124dbacdee846d80cbc4", - "_spec": "cross-spawn@^6.0.0", - "_where": "/Users/npsdev5/Develop/github.com/rhysd/github-action-benchmark/node_modules/execa", + "_spec": "6.0.5", + "_where": "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark", "author": { "name": "André Cruz", "email": "andre@moxy.studio" @@ -29,7 +36,6 @@ "bugs": { "url": "https://github.com/moxystudio/node-cross-spawn/issues" }, - "bundleDependencies": false, "commitlint": { "extends": [ "@commitlint/config-conventional" @@ -42,7 +48,6 @@ "shebang-command": "^1.2.0", "which": "^1.2.9" }, - "deprecated": false, "description": "Cross platform child_process#spawn and child_process#spawnSync", "devDependencies": { "@commitlint/cli": "^6.0.0", diff --git a/node_modules/deprecation/package.json b/node_modules/deprecation/package.json index 55389cf09..97af1a991 100644 --- a/node_modules/deprecation/package.json +++ b/node_modules/deprecation/package.json @@ -1,19 +1,25 @@ { - "_from": "deprecation@^2.0.0", + "_args": [ + [ + "deprecation@2.3.1", + "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark" + ] + ], + "_from": "deprecation@2.3.1", "_id": "deprecation@2.3.1", "_inBundle": false, "_integrity": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==", "_location": "/deprecation", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "deprecation@^2.0.0", + "raw": "deprecation@2.3.1", "name": "deprecation", "escapedName": "deprecation", - "rawSpec": "^2.0.0", + "rawSpec": "2.3.1", "saveSpec": null, - "fetchSpec": "^2.0.0" + "fetchSpec": "2.3.1" }, "_requiredBy": [ "/@octokit/request", @@ -21,15 +27,12 @@ "/@octokit/rest" ], "_resolved": "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz", - "_shasum": "6368cbdb40abf3373b525ac87e4a260c3a700919", - "_spec": "deprecation@^2.0.0", - "_where": "/Users/npsdev5/Develop/github.com/rhysd/github-action-benchmark/node_modules/@octokit/request", + "_spec": "2.3.1", + "_where": "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark", "bugs": { "url": "https://github.com/gr2m/deprecation/issues" }, - "bundleDependencies": false, "dependencies": {}, - "deprecated": false, "description": "Log a deprecation message with stack", "devDependencies": { "@pika/pack": "^0.3.7", diff --git a/node_modules/end-of-stream/package.json b/node_modules/end-of-stream/package.json index b2aee0764..d3948609c 100644 --- a/node_modules/end-of-stream/package.json +++ b/node_modules/end-of-stream/package.json @@ -1,27 +1,32 @@ { - "_from": "end-of-stream@^1.1.0", + "_args": [ + [ + "end-of-stream@1.4.4", + "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark" + ] + ], + "_from": "end-of-stream@1.4.4", "_id": "end-of-stream@1.4.4", "_inBundle": false, "_integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", "_location": "/end-of-stream", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "end-of-stream@^1.1.0", + "raw": "end-of-stream@1.4.4", "name": "end-of-stream", "escapedName": "end-of-stream", - "rawSpec": "^1.1.0", + "rawSpec": "1.4.4", "saveSpec": null, - "fetchSpec": "^1.1.0" + "fetchSpec": "1.4.4" }, "_requiredBy": [ "/pump" ], "_resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "_shasum": "5ae64a5f45057baf3626ec14da0ca5e4b2431eb0", - "_spec": "end-of-stream@^1.1.0", - "_where": "/Users/npsdev5/Develop/github.com/rhysd/github-action-benchmark/node_modules/pump", + "_spec": "1.4.4", + "_where": "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark", "author": { "name": "Mathias Buus", "email": "mathiasbuus@gmail.com" @@ -29,11 +34,9 @@ "bugs": { "url": "https://github.com/mafintosh/end-of-stream/issues" }, - "bundleDependencies": false, "dependencies": { "once": "^1.4.0" }, - "deprecated": false, "description": "Call a callback when a readable/writable/duplex stream has completed or failed.", "devDependencies": { "tape": "^4.11.0" diff --git a/node_modules/execa/package.json b/node_modules/execa/package.json index 47f110e36..3407ed4c8 100644 --- a/node_modules/execa/package.json +++ b/node_modules/execa/package.json @@ -1,27 +1,33 @@ { - "_from": "execa@^1.0.0", + "_args": [ + [ + "execa@1.0.0", + "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark" + ] + ], + "_from": "execa@1.0.0", "_id": "execa@1.0.0", "_inBundle": false, "_integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", "_location": "/execa", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "execa@^1.0.0", + "raw": "execa@1.0.0", "name": "execa", "escapedName": "execa", - "rawSpec": "^1.0.0", + "rawSpec": "1.0.0", "saveSpec": null, - "fetchSpec": "^1.0.0" + "fetchSpec": "1.0.0" }, "_requiredBy": [ + "/husky", "/windows-release" ], "_resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", - "_shasum": "c6236a5bb4df6d6f15e88e7f017798216749ddd8", - "_spec": "execa@^1.0.0", - "_where": "/Users/npsdev5/Develop/github.com/rhysd/github-action-benchmark/node_modules/windows-release", + "_spec": "1.0.0", + "_where": "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", @@ -30,7 +36,6 @@ "bugs": { "url": "https://github.com/sindresorhus/execa/issues" }, - "bundleDependencies": false, "dependencies": { "cross-spawn": "^6.0.0", "get-stream": "^4.0.0", @@ -40,7 +45,6 @@ "signal-exit": "^3.0.0", "strip-eof": "^1.0.0" }, - "deprecated": false, "description": "A better `child_process`", "devDependencies": { "ava": "*", diff --git a/node_modules/get-stream/package.json b/node_modules/get-stream/package.json index 713384d78..f91438a8a 100644 --- a/node_modules/get-stream/package.json +++ b/node_modules/get-stream/package.json @@ -1,27 +1,32 @@ { - "_from": "get-stream@^4.0.0", + "_args": [ + [ + "get-stream@4.1.0", + "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark" + ] + ], + "_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": "range", + "type": "version", "registry": true, - "raw": "get-stream@^4.0.0", + "raw": "get-stream@4.1.0", "name": "get-stream", "escapedName": "get-stream", - "rawSpec": "^4.0.0", + "rawSpec": "4.1.0", "saveSpec": null, - "fetchSpec": "^4.0.0" + "fetchSpec": "4.1.0" }, "_requiredBy": [ "/execa" ], "_resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", - "_shasum": "c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5", - "_spec": "get-stream@^4.0.0", - "_where": "/Users/npsdev5/Develop/github.com/rhysd/github-action-benchmark/node_modules/execa", + "_spec": "4.1.0", + "_where": "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", @@ -30,11 +35,9 @@ "bugs": { "url": "https://github.com/sindresorhus/get-stream/issues" }, - "bundleDependencies": false, "dependencies": { "pump": "^3.0.0" }, - "deprecated": false, "description": "Get a stream as a string, buffer, or array", "devDependencies": { "ava": "*", diff --git a/node_modules/is-plain-object/package.json b/node_modules/is-plain-object/package.json index 8c6db0c20..477df9be8 100644 --- a/node_modules/is-plain-object/package.json +++ b/node_modules/is-plain-object/package.json @@ -1,28 +1,33 @@ { - "_from": "is-plain-object@^3.0.0", + "_args": [ + [ + "is-plain-object@3.0.0", + "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark" + ] + ], + "_from": "is-plain-object@3.0.0", "_id": "is-plain-object@3.0.0", "_inBundle": false, "_integrity": "sha512-tZIpofR+P05k8Aocp7UI/2UTa9lTJSebCXpFFoR9aibpokDj/uXBsJ8luUu0tTVYKkMU6URDUuOfJZ7koewXvg==", "_location": "/is-plain-object", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "is-plain-object@^3.0.0", + "raw": "is-plain-object@3.0.0", "name": "is-plain-object", "escapedName": "is-plain-object", - "rawSpec": "^3.0.0", + "rawSpec": "3.0.0", "saveSpec": null, - "fetchSpec": "^3.0.0" + "fetchSpec": "3.0.0" }, "_requiredBy": [ "/@octokit/endpoint", "/@octokit/request" ], "_resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-3.0.0.tgz", - "_shasum": "47bfc5da1b5d50d64110806c199359482e75a928", - "_spec": "is-plain-object@^3.0.0", - "_where": "/Users/npsdev5/Develop/github.com/rhysd/github-action-benchmark/node_modules/@octokit/request", + "_spec": "3.0.0", + "_where": "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark", "author": { "name": "Jon Schlinkert", "url": "https://github.com/jonschlinkert" @@ -30,7 +35,6 @@ "bugs": { "url": "https://github.com/jonschlinkert/is-plain-object/issues" }, - "bundleDependencies": false, "contributors": [ { "name": "Jon Schlinkert", @@ -51,7 +55,6 @@ "dependencies": { "isobject": "^4.0.0" }, - "deprecated": false, "description": "Returns true if an object was created by the `Object` constructor.", "devDependencies": { "chai": "^4.2.0", diff --git a/node_modules/is-stream/package.json b/node_modules/is-stream/package.json index ada481c63..b03cc992f 100644 --- a/node_modules/is-stream/package.json +++ b/node_modules/is-stream/package.json @@ -1,27 +1,32 @@ { - "_from": "is-stream@^1.1.0", + "_args": [ + [ + "is-stream@1.1.0", + "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark" + ] + ], + "_from": "is-stream@1.1.0", "_id": "is-stream@1.1.0", "_inBundle": false, "_integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", "_location": "/is-stream", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "is-stream@^1.1.0", + "raw": "is-stream@1.1.0", "name": "is-stream", "escapedName": "is-stream", - "rawSpec": "^1.1.0", + "rawSpec": "1.1.0", "saveSpec": null, - "fetchSpec": "^1.1.0" + "fetchSpec": "1.1.0" }, "_requiredBy": [ "/execa" ], "_resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "_shasum": "12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44", - "_spec": "is-stream@^1.1.0", - "_where": "/Users/npsdev5/Develop/github.com/rhysd/github-action-benchmark/node_modules/execa", + "_spec": "1.1.0", + "_where": "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", @@ -30,8 +35,6 @@ "bugs": { "url": "https://github.com/sindresorhus/is-stream/issues" }, - "bundleDependencies": false, - "deprecated": false, "description": "Check if something is a Node.js stream", "devDependencies": { "ava": "*", diff --git a/node_modules/isexe/package.json b/node_modules/isexe/package.json index a5aaa7148..890213452 100644 --- a/node_modules/isexe/package.json +++ b/node_modules/isexe/package.json @@ -1,27 +1,32 @@ { - "_from": "isexe@^2.0.0", + "_args": [ + [ + "isexe@2.0.0", + "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark" + ] + ], + "_from": "isexe@2.0.0", "_id": "isexe@2.0.0", "_inBundle": false, "_integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", "_location": "/isexe", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "isexe@^2.0.0", + "raw": "isexe@2.0.0", "name": "isexe", "escapedName": "isexe", - "rawSpec": "^2.0.0", + "rawSpec": "2.0.0", "saveSpec": null, - "fetchSpec": "^2.0.0" + "fetchSpec": "2.0.0" }, "_requiredBy": [ "/which" ], "_resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "_shasum": "e8fbf374dc556ff8947a10dcb0572d633f2cfa10", - "_spec": "isexe@^2.0.0", - "_where": "/Users/npsdev5/Develop/github.com/rhysd/github-action-benchmark/node_modules/which", + "_spec": "2.0.0", + "_where": "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark", "author": { "name": "Isaac Z. Schlueter", "email": "i@izs.me", @@ -30,8 +35,6 @@ "bugs": { "url": "https://github.com/isaacs/isexe/issues" }, - "bundleDependencies": false, - "deprecated": false, "description": "Minimal module to check if a file is executable.", "devDependencies": { "mkdirp": "^0.5.1", diff --git a/node_modules/isobject/package.json b/node_modules/isobject/package.json index 2f7f20974..949755bb3 100644 --- a/node_modules/isobject/package.json +++ b/node_modules/isobject/package.json @@ -1,27 +1,32 @@ { - "_from": "isobject@^4.0.0", + "_args": [ + [ + "isobject@4.0.0", + "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark" + ] + ], + "_from": "isobject@4.0.0", "_id": "isobject@4.0.0", "_inBundle": false, "_integrity": "sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA==", "_location": "/isobject", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "isobject@^4.0.0", + "raw": "isobject@4.0.0", "name": "isobject", "escapedName": "isobject", - "rawSpec": "^4.0.0", + "rawSpec": "4.0.0", "saveSpec": null, - "fetchSpec": "^4.0.0" + "fetchSpec": "4.0.0" }, "_requiredBy": [ "/is-plain-object" ], "_resolved": "https://registry.npmjs.org/isobject/-/isobject-4.0.0.tgz", - "_shasum": "3f1c9155e73b192022a80819bacd0343711697b0", - "_spec": "isobject@^4.0.0", - "_where": "/Users/npsdev5/Develop/github.com/rhysd/github-action-benchmark/node_modules/is-plain-object", + "_spec": "4.0.0", + "_where": "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark", "author": { "name": "Jon Schlinkert", "url": "https://github.com/jonschlinkert" @@ -29,7 +34,6 @@ "bugs": { "url": "https://github.com/jonschlinkert/isobject/issues" }, - "bundleDependencies": false, "contributors": [ { "url": "https://github.com/LeSuisse" @@ -52,7 +56,6 @@ } ], "dependencies": {}, - "deprecated": false, "description": "Returns true if the value is an object and not an array or null.", "devDependencies": { "esm": "^3.2.22", diff --git a/node_modules/lodash.get/package.json b/node_modules/lodash.get/package.json index e09554b25..d36e8e3b8 100644 --- a/node_modules/lodash.get/package.json +++ b/node_modules/lodash.get/package.json @@ -1,27 +1,32 @@ { - "_from": "lodash.get@^4.4.2", + "_args": [ + [ + "lodash.get@4.4.2", + "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark" + ] + ], + "_from": "lodash.get@4.4.2", "_id": "lodash.get@4.4.2", "_inBundle": false, "_integrity": "sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=", "_location": "/lodash.get", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "lodash.get@^4.4.2", + "raw": "lodash.get@4.4.2", "name": "lodash.get", "escapedName": "lodash.get", - "rawSpec": "^4.4.2", + "rawSpec": "4.4.2", "saveSpec": null, - "fetchSpec": "^4.4.2" + "fetchSpec": "4.4.2" }, "_requiredBy": [ "/@octokit/rest" ], "_resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz", - "_shasum": "2d177f652fa31e939b4438d5341499dfa3825e99", - "_spec": "lodash.get@^4.4.2", - "_where": "/Users/npsdev5/Develop/github.com/rhysd/github-action-benchmark/node_modules/@octokit/rest", + "_spec": "4.4.2", + "_where": "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark", "author": { "name": "John-David Dalton", "email": "john.david.dalton@gmail.com", @@ -30,7 +35,6 @@ "bugs": { "url": "https://github.com/lodash/lodash/issues" }, - "bundleDependencies": false, "contributors": [ { "name": "John-David Dalton", @@ -48,7 +52,6 @@ "url": "https://mathiasbynens.be/" } ], - "deprecated": false, "description": "The lodash method `_.get` exported as a module.", "homepage": "https://lodash.com/", "icon": "https://lodash.com/icon.svg", diff --git a/node_modules/lodash.set/package.json b/node_modules/lodash.set/package.json index 22be60dda..4fd62303f 100644 --- a/node_modules/lodash.set/package.json +++ b/node_modules/lodash.set/package.json @@ -1,27 +1,32 @@ { - "_from": "lodash.set@^4.3.2", + "_args": [ + [ + "lodash.set@4.3.2", + "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark" + ] + ], + "_from": "lodash.set@4.3.2", "_id": "lodash.set@4.3.2", "_inBundle": false, "_integrity": "sha1-2HV7HagH3eJIFrDWqEvqGnYjCyM=", "_location": "/lodash.set", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "lodash.set@^4.3.2", + "raw": "lodash.set@4.3.2", "name": "lodash.set", "escapedName": "lodash.set", - "rawSpec": "^4.3.2", + "rawSpec": "4.3.2", "saveSpec": null, - "fetchSpec": "^4.3.2" + "fetchSpec": "4.3.2" }, "_requiredBy": [ "/@octokit/rest" ], "_resolved": "https://registry.npmjs.org/lodash.set/-/lodash.set-4.3.2.tgz", - "_shasum": "d8757b1da807dde24816b0d6a84bea1a76230b23", - "_spec": "lodash.set@^4.3.2", - "_where": "/Users/npsdev5/Develop/github.com/rhysd/github-action-benchmark/node_modules/@octokit/rest", + "_spec": "4.3.2", + "_where": "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark", "author": { "name": "John-David Dalton", "email": "john.david.dalton@gmail.com", @@ -30,7 +35,6 @@ "bugs": { "url": "https://github.com/lodash/lodash/issues" }, - "bundleDependencies": false, "contributors": [ { "name": "John-David Dalton", @@ -48,7 +52,6 @@ "url": "https://mathiasbynens.be/" } ], - "deprecated": false, "description": "The lodash method `_.set` exported as a module.", "homepage": "https://lodash.com/", "icon": "https://lodash.com/icon.svg", diff --git a/node_modules/lodash.uniq/package.json b/node_modules/lodash.uniq/package.json index 85abf7b53..b880e2008 100644 --- a/node_modules/lodash.uniq/package.json +++ b/node_modules/lodash.uniq/package.json @@ -1,27 +1,32 @@ { - "_from": "lodash.uniq@^4.5.0", + "_args": [ + [ + "lodash.uniq@4.5.0", + "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark" + ] + ], + "_from": "lodash.uniq@4.5.0", "_id": "lodash.uniq@4.5.0", "_inBundle": false, "_integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=", "_location": "/lodash.uniq", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "lodash.uniq@^4.5.0", + "raw": "lodash.uniq@4.5.0", "name": "lodash.uniq", "escapedName": "lodash.uniq", - "rawSpec": "^4.5.0", + "rawSpec": "4.5.0", "saveSpec": null, - "fetchSpec": "^4.5.0" + "fetchSpec": "4.5.0" }, "_requiredBy": [ "/@octokit/rest" ], "_resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", - "_shasum": "d0225373aeb652adc1bc82e4945339a842754773", - "_spec": "lodash.uniq@^4.5.0", - "_where": "/Users/npsdev5/Develop/github.com/rhysd/github-action-benchmark/node_modules/@octokit/rest", + "_spec": "4.5.0", + "_where": "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark", "author": { "name": "John-David Dalton", "email": "john.david.dalton@gmail.com", @@ -30,7 +35,6 @@ "bugs": { "url": "https://github.com/lodash/lodash/issues" }, - "bundleDependencies": false, "contributors": [ { "name": "John-David Dalton", @@ -48,7 +52,6 @@ "url": "https://mathiasbynens.be/" } ], - "deprecated": false, "description": "The lodash method `_.uniq` exported as a module.", "homepage": "https://lodash.com/", "icon": "https://lodash.com/icon.svg", diff --git a/node_modules/macos-release/package.json b/node_modules/macos-release/package.json index 6248b2cb9..09aff48b5 100644 --- a/node_modules/macos-release/package.json +++ b/node_modules/macos-release/package.json @@ -1,27 +1,32 @@ { - "_from": "macos-release@^2.2.0", + "_args": [ + [ + "macos-release@2.3.0", + "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark" + ] + ], + "_from": "macos-release@2.3.0", "_id": "macos-release@2.3.0", "_inBundle": false, "_integrity": "sha512-OHhSbtcviqMPt7yfw5ef5aghS2jzFVKEFyCJndQt2YpSQ9qRVSEv2axSJI1paVThEu+FFGs584h/1YhxjVqajA==", "_location": "/macos-release", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "macos-release@^2.2.0", + "raw": "macos-release@2.3.0", "name": "macos-release", "escapedName": "macos-release", - "rawSpec": "^2.2.0", + "rawSpec": "2.3.0", "saveSpec": null, - "fetchSpec": "^2.2.0" + "fetchSpec": "2.3.0" }, "_requiredBy": [ "/os-name" ], "_resolved": "https://registry.npmjs.org/macos-release/-/macos-release-2.3.0.tgz", - "_shasum": "eb1930b036c0800adebccd5f17bc4c12de8bb71f", - "_spec": "macos-release@^2.2.0", - "_where": "/Users/npsdev5/Develop/github.com/rhysd/github-action-benchmark/node_modules/os-name", + "_spec": "2.3.0", + "_where": "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", @@ -30,8 +35,6 @@ "bugs": { "url": "https://github.com/sindresorhus/macos-release/issues" }, - "bundleDependencies": false, - "deprecated": false, "description": "Get the name and version of a macOS release from the Darwin version", "devDependencies": { "ava": "^1.4.1", diff --git a/node_modules/nice-try/package.json b/node_modules/nice-try/package.json index e09bc9207..c9a88fbb0 100644 --- a/node_modules/nice-try/package.json +++ b/node_modules/nice-try/package.json @@ -1,35 +1,38 @@ { - "_from": "nice-try@^1.0.4", + "_args": [ + [ + "nice-try@1.0.5", + "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark" + ] + ], + "_from": "nice-try@1.0.5", "_id": "nice-try@1.0.5", "_inBundle": false, "_integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", "_location": "/nice-try", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "nice-try@^1.0.4", + "raw": "nice-try@1.0.5", "name": "nice-try", "escapedName": "nice-try", - "rawSpec": "^1.0.4", + "rawSpec": "1.0.5", "saveSpec": null, - "fetchSpec": "^1.0.4" + "fetchSpec": "1.0.5" }, "_requiredBy": [ "/cross-spawn" ], "_resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", - "_shasum": "a3378a7696ce7d223e88fc9b764bd7ef1089e366", - "_spec": "nice-try@^1.0.4", - "_where": "/Users/npsdev5/Develop/github.com/rhysd/github-action-benchmark/node_modules/cross-spawn", + "_spec": "1.0.5", + "_where": "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark", "authors": [ "Tobias Reich " ], "bugs": { "url": "https://github.com/electerious/nice-try/issues" }, - "bundleDependencies": false, - "deprecated": false, "description": "Tries to execute a function and discards any error that occurs", "devDependencies": { "chai": "^4.1.2", diff --git a/node_modules/node-fetch/package.json b/node_modules/node-fetch/package.json index 13f259d6f..a52dd134b 100644 --- a/node_modules/node-fetch/package.json +++ b/node_modules/node-fetch/package.json @@ -1,27 +1,32 @@ { - "_from": "node-fetch@^2.3.0", + "_args": [ + [ + "node-fetch@2.6.0", + "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark" + ] + ], + "_from": "node-fetch@2.6.0", "_id": "node-fetch@2.6.0", "_inBundle": false, "_integrity": "sha512-8dG4H5ujfvFiqDmVu9fQ5bOHUC15JMjMY/Zumv26oOvvVJjM67KF8koCWIabKQ1GJIa9r2mMZscBq/TbdOcmNA==", "_location": "/node-fetch", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "node-fetch@^2.3.0", + "raw": "node-fetch@2.6.0", "name": "node-fetch", "escapedName": "node-fetch", - "rawSpec": "^2.3.0", + "rawSpec": "2.6.0", "saveSpec": null, - "fetchSpec": "^2.3.0" + "fetchSpec": "2.6.0" }, "_requiredBy": [ "/@octokit/request" ], "_resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.0.tgz", - "_shasum": "e633456386d4aa55863f676a7ab0daa8fdecb0fd", - "_spec": "node-fetch@^2.3.0", - "_where": "/Users/npsdev5/Develop/github.com/rhysd/github-action-benchmark/node_modules/@octokit/request", + "_spec": "2.6.0", + "_where": "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark", "author": { "name": "David Frank" }, @@ -29,9 +34,7 @@ "bugs": { "url": "https://github.com/bitinn/node-fetch/issues" }, - "bundleDependencies": false, "dependencies": {}, - "deprecated": false, "description": "A light-weight module that brings window.fetch to node.js", "devDependencies": { "@ungap/url-search-params": "^0.1.2", diff --git a/node_modules/npm-run-path/package.json b/node_modules/npm-run-path/package.json index 8e066746c..f1831a7fe 100644 --- a/node_modules/npm-run-path/package.json +++ b/node_modules/npm-run-path/package.json @@ -1,27 +1,32 @@ { - "_from": "npm-run-path@^2.0.0", + "_args": [ + [ + "npm-run-path@2.0.2", + "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark" + ] + ], + "_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": "range", + "type": "version", "registry": true, - "raw": "npm-run-path@^2.0.0", + "raw": "npm-run-path@2.0.2", "name": "npm-run-path", "escapedName": "npm-run-path", - "rawSpec": "^2.0.0", + "rawSpec": "2.0.2", "saveSpec": null, - "fetchSpec": "^2.0.0" + "fetchSpec": "2.0.2" }, "_requiredBy": [ "/execa" ], "_resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", - "_shasum": "35a9232dfa35d7067b4cb2ddf2357b1871536c5f", - "_spec": "npm-run-path@^2.0.0", - "_where": "/Users/npsdev5/Develop/github.com/rhysd/github-action-benchmark/node_modules/execa", + "_spec": "2.0.2", + "_where": "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", @@ -30,11 +35,9 @@ "bugs": { "url": "https://github.com/sindresorhus/npm-run-path/issues" }, - "bundleDependencies": false, "dependencies": { "path-key": "^2.0.0" }, - "deprecated": false, "description": "Get your PATH prepended with locally installed binaries", "devDependencies": { "ava": "*", diff --git a/node_modules/octokit-pagination-methods/package.json b/node_modules/octokit-pagination-methods/package.json index cc4109cbc..6677dd0db 100644 --- a/node_modules/octokit-pagination-methods/package.json +++ b/node_modules/octokit-pagination-methods/package.json @@ -1,27 +1,32 @@ { - "_from": "octokit-pagination-methods@^1.1.0", + "_args": [ + [ + "octokit-pagination-methods@1.1.0", + "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark" + ] + ], + "_from": "octokit-pagination-methods@1.1.0", "_id": "octokit-pagination-methods@1.1.0", "_inBundle": false, "_integrity": "sha512-fZ4qZdQ2nxJvtcasX7Ghl+WlWS/d9IgnBIwFZXVNNZUmzpno91SX5bc5vuxiuKoCtK78XxGGNuSCrDC7xYB3OQ==", "_location": "/octokit-pagination-methods", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "octokit-pagination-methods@^1.1.0", + "raw": "octokit-pagination-methods@1.1.0", "name": "octokit-pagination-methods", "escapedName": "octokit-pagination-methods", - "rawSpec": "^1.1.0", + "rawSpec": "1.1.0", "saveSpec": null, - "fetchSpec": "^1.1.0" + "fetchSpec": "1.1.0" }, "_requiredBy": [ "/@octokit/rest" ], "_resolved": "https://registry.npmjs.org/octokit-pagination-methods/-/octokit-pagination-methods-1.1.0.tgz", - "_shasum": "cf472edc9d551055f9ef73f6e42b4dbb4c80bea4", - "_spec": "octokit-pagination-methods@^1.1.0", - "_where": "/Users/npsdev5/Develop/github.com/rhysd/github-action-benchmark/node_modules/@octokit/rest", + "_spec": "1.1.0", + "_where": "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark", "author": { "name": "Gregor Martynus", "url": "https://github.com/gr2m" @@ -29,9 +34,7 @@ "bugs": { "url": "https://github.com/gr2m/octokit-pagination-methods/issues" }, - "bundleDependencies": false, "dependencies": {}, - "deprecated": false, "description": "Legacy Octokit pagination methods from v15", "devDependencies": { "@octokit/rest": "github:octokit/rest.js#next", diff --git a/node_modules/once/package.json b/node_modules/once/package.json index d18dac1c7..2b37d69df 100644 --- a/node_modules/once/package.json +++ b/node_modules/once/package.json @@ -1,31 +1,39 @@ { - "_from": "once@^1.4.0", + "_args": [ + [ + "once@1.4.0", + "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark" + ] + ], + "_from": "once@1.4.0", "_id": "once@1.4.0", "_inBundle": false, "_integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", "_location": "/once", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "once@^1.4.0", + "raw": "once@1.4.0", "name": "once", "escapedName": "once", - "rawSpec": "^1.4.0", + "rawSpec": "1.4.0", "saveSpec": null, - "fetchSpec": "^1.4.0" + "fetchSpec": "1.4.0" }, "_requiredBy": [ "/@octokit/request", "/@octokit/request-error", "/@octokit/rest", + "/@typescript-eslint/typescript-estree/glob", "/end-of-stream", + "/glob", + "/inflight", "/pump" ], "_resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "_shasum": "583b1aa775961d4b113ac17d9c50baef9dd76bd1", - "_spec": "once@^1.4.0", - "_where": "/Users/npsdev5/Develop/github.com/rhysd/github-action-benchmark/node_modules/@octokit/request", + "_spec": "1.4.0", + "_where": "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark", "author": { "name": "Isaac Z. Schlueter", "email": "i@izs.me", @@ -34,11 +42,9 @@ "bugs": { "url": "https://github.com/isaacs/once/issues" }, - "bundleDependencies": false, "dependencies": { "wrappy": "1" }, - "deprecated": false, "description": "Run a function exactly one time", "devDependencies": { "tap": "^7.0.1" diff --git a/node_modules/os-name/package.json b/node_modules/os-name/package.json index 5590f6716..d776b64e5 100644 --- a/node_modules/os-name/package.json +++ b/node_modules/os-name/package.json @@ -1,19 +1,25 @@ { - "_from": "os-name@^3.1.0", + "_args": [ + [ + "os-name@3.1.0", + "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark" + ] + ], + "_from": "os-name@3.1.0", "_id": "os-name@3.1.0", "_inBundle": false, "_integrity": "sha512-h8L+8aNjNcMpo/mAIBPn5PXCM16iyPGjHNWo6U1YO8sJTMHtEtyczI6QJnLoplswm6goopQkqc7OAnjhWcugVg==", "_location": "/os-name", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "os-name@^3.1.0", + "raw": "os-name@3.1.0", "name": "os-name", "escapedName": "os-name", - "rawSpec": "^3.1.0", + "rawSpec": "3.1.0", "saveSpec": null, - "fetchSpec": "^3.1.0" + "fetchSpec": "3.1.0" }, "_requiredBy": [ "/@octokit/endpoint/universal-user-agent", @@ -22,9 +28,8 @@ "/universal-user-agent" ], "_resolved": "https://registry.npmjs.org/os-name/-/os-name-3.1.0.tgz", - "_shasum": "dec19d966296e1cd62d701a5a66ee1ddeae70801", - "_spec": "os-name@^3.1.0", - "_where": "/Users/npsdev5/Develop/github.com/rhysd/github-action-benchmark/node_modules/@octokit/endpoint/node_modules/universal-user-agent", + "_spec": "3.1.0", + "_where": "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", @@ -33,12 +38,10 @@ "bugs": { "url": "https://github.com/sindresorhus/os-name/issues" }, - "bundleDependencies": false, "dependencies": { "macos-release": "^2.2.0", "windows-release": "^3.1.0" }, - "deprecated": false, "description": "Get the name of the current operating system. Example: macOS Sierra", "devDependencies": { "@types/node": "^11.13.0", diff --git a/node_modules/p-finally/package.json b/node_modules/p-finally/package.json index bd871419b..2171288de 100644 --- a/node_modules/p-finally/package.json +++ b/node_modules/p-finally/package.json @@ -1,27 +1,32 @@ { - "_from": "p-finally@^1.0.0", + "_args": [ + [ + "p-finally@1.0.0", + "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark" + ] + ], + "_from": "p-finally@1.0.0", "_id": "p-finally@1.0.0", "_inBundle": false, "_integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=", "_location": "/p-finally", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "p-finally@^1.0.0", + "raw": "p-finally@1.0.0", "name": "p-finally", "escapedName": "p-finally", - "rawSpec": "^1.0.0", + "rawSpec": "1.0.0", "saveSpec": null, - "fetchSpec": "^1.0.0" + "fetchSpec": "1.0.0" }, "_requiredBy": [ "/execa" ], "_resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", - "_shasum": "3fbcfb15b899a44123b34b6dcc18b724336a2cae", - "_spec": "p-finally@^1.0.0", - "_where": "/Users/npsdev5/Develop/github.com/rhysd/github-action-benchmark/node_modules/execa", + "_spec": "1.0.0", + "_where": "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", @@ -30,8 +35,6 @@ "bugs": { "url": "https://github.com/sindresorhus/p-finally/issues" }, - "bundleDependencies": false, - "deprecated": false, "description": "`Promise#finally()` ponyfill - Invoked when the promise is settled regardless of outcome", "devDependencies": { "ava": "*", diff --git a/node_modules/path-key/package.json b/node_modules/path-key/package.json index 004228129..acd6c8656 100644 --- a/node_modules/path-key/package.json +++ b/node_modules/path-key/package.json @@ -1,28 +1,33 @@ { - "_from": "path-key@^2.0.1", + "_args": [ + [ + "path-key@2.0.1", + "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark" + ] + ], + "_from": "path-key@2.0.1", "_id": "path-key@2.0.1", "_inBundle": false, "_integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", "_location": "/path-key", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "path-key@^2.0.1", + "raw": "path-key@2.0.1", "name": "path-key", "escapedName": "path-key", - "rawSpec": "^2.0.1", + "rawSpec": "2.0.1", "saveSpec": null, - "fetchSpec": "^2.0.1" + "fetchSpec": "2.0.1" }, "_requiredBy": [ "/cross-spawn", "/npm-run-path" ], "_resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "_shasum": "411cadb574c5a140d3a4b1910d40d80cc9f40b40", - "_spec": "path-key@^2.0.1", - "_where": "/Users/npsdev5/Develop/github.com/rhysd/github-action-benchmark/node_modules/cross-spawn", + "_spec": "2.0.1", + "_where": "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", @@ -31,8 +36,6 @@ "bugs": { "url": "https://github.com/sindresorhus/path-key/issues" }, - "bundleDependencies": false, - "deprecated": false, "description": "Get the PATH environment variable key cross-platform", "devDependencies": { "ava": "*", diff --git a/node_modules/pump/package.json b/node_modules/pump/package.json index 880ea3e9c..88fe0446f 100644 --- a/node_modules/pump/package.json +++ b/node_modules/pump/package.json @@ -1,27 +1,32 @@ { - "_from": "pump@^3.0.0", + "_args": [ + [ + "pump@3.0.0", + "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark" + ] + ], + "_from": "pump@3.0.0", "_id": "pump@3.0.0", "_inBundle": false, "_integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", "_location": "/pump", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "pump@^3.0.0", + "raw": "pump@3.0.0", "name": "pump", "escapedName": "pump", - "rawSpec": "^3.0.0", + "rawSpec": "3.0.0", "saveSpec": null, - "fetchSpec": "^3.0.0" + "fetchSpec": "3.0.0" }, "_requiredBy": [ "/get-stream" ], "_resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "_shasum": "b4a2116815bde2f4e1ea602354e8c75565107a64", - "_spec": "pump@^3.0.0", - "_where": "/Users/npsdev5/Develop/github.com/rhysd/github-action-benchmark/node_modules/get-stream", + "_spec": "3.0.0", + "_where": "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark", "author": { "name": "Mathias Buus Madsen", "email": "mathiasbuus@gmail.com" @@ -32,12 +37,10 @@ "bugs": { "url": "https://github.com/mafintosh/pump/issues" }, - "bundleDependencies": false, "dependencies": { "end-of-stream": "^1.1.0", "once": "^1.3.1" }, - "deprecated": false, "description": "pipe streams together and close all of them if one of them closes", "homepage": "https://github.com/mafintosh/pump#readme", "keywords": [ diff --git a/node_modules/semver/package.json b/node_modules/semver/package.json index c76a912c9..2e776426e 100644 --- a/node_modules/semver/package.json +++ b/node_modules/semver/package.json @@ -1,35 +1,40 @@ { - "_from": "semver@^5.5.0", + "_args": [ + [ + "semver@5.7.1", + "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark" + ] + ], + "_from": "semver@5.7.1", "_id": "semver@5.7.1", "_inBundle": false, "_integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", "_location": "/semver", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "semver@^5.5.0", + "raw": "semver@5.7.1", "name": "semver", "escapedName": "semver", - "rawSpec": "^5.5.0", + "rawSpec": "5.7.1", "saveSpec": null, - "fetchSpec": "^5.5.0" + "fetchSpec": "5.7.1" }, "_requiredBy": [ - "/cross-spawn" + "/cross-spawn", + "/node-environment-flags", + "/normalize-package-data" ], "_resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "_shasum": "a954f931aeba508d307bbf069eff0c01c96116f7", - "_spec": "semver@^5.5.0", - "_where": "/Users/npsdev5/Develop/github.com/rhysd/github-action-benchmark/node_modules/cross-spawn", + "_spec": "5.7.1", + "_where": "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark", "bin": { "semver": "./bin/semver" }, "bugs": { "url": "https://github.com/npm/node-semver/issues" }, - "bundleDependencies": false, - "deprecated": false, "description": "The semantic version parser used by npm.", "devDependencies": { "tap": "^13.0.0-rc.18" diff --git a/node_modules/shebang-command/package.json b/node_modules/shebang-command/package.json index b668bb4ff..b67c7259a 100644 --- a/node_modules/shebang-command/package.json +++ b/node_modules/shebang-command/package.json @@ -1,27 +1,32 @@ { - "_from": "shebang-command@^1.2.0", + "_args": [ + [ + "shebang-command@1.2.0", + "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark" + ] + ], + "_from": "shebang-command@1.2.0", "_id": "shebang-command@1.2.0", "_inBundle": false, "_integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", "_location": "/shebang-command", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "shebang-command@^1.2.0", + "raw": "shebang-command@1.2.0", "name": "shebang-command", "escapedName": "shebang-command", - "rawSpec": "^1.2.0", + "rawSpec": "1.2.0", "saveSpec": null, - "fetchSpec": "^1.2.0" + "fetchSpec": "1.2.0" }, "_requiredBy": [ "/cross-spawn" ], "_resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "_shasum": "44aac65b695b03398968c39f363fee5deafdf1ea", - "_spec": "shebang-command@^1.2.0", - "_where": "/Users/npsdev5/Develop/github.com/rhysd/github-action-benchmark/node_modules/cross-spawn", + "_spec": "1.2.0", + "_where": "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark", "author": { "name": "Kevin Martensson", "email": "kevinmartensson@gmail.com", @@ -30,11 +35,9 @@ "bugs": { "url": "https://github.com/kevva/shebang-command/issues" }, - "bundleDependencies": false, "dependencies": { "shebang-regex": "^1.0.0" }, - "deprecated": false, "description": "Get the command from a shebang", "devDependencies": { "ava": "*", diff --git a/node_modules/shebang-regex/package.json b/node_modules/shebang-regex/package.json index 125554064..d55665b77 100644 --- a/node_modules/shebang-regex/package.json +++ b/node_modules/shebang-regex/package.json @@ -1,27 +1,32 @@ { - "_from": "shebang-regex@^1.0.0", + "_args": [ + [ + "shebang-regex@1.0.0", + "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark" + ] + ], + "_from": "shebang-regex@1.0.0", "_id": "shebang-regex@1.0.0", "_inBundle": false, "_integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", "_location": "/shebang-regex", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "shebang-regex@^1.0.0", + "raw": "shebang-regex@1.0.0", "name": "shebang-regex", "escapedName": "shebang-regex", - "rawSpec": "^1.0.0", + "rawSpec": "1.0.0", "saveSpec": null, - "fetchSpec": "^1.0.0" + "fetchSpec": "1.0.0" }, "_requiredBy": [ "/shebang-command" ], "_resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "_shasum": "da42f49740c0b42db2ca9728571cb190c98efea3", - "_spec": "shebang-regex@^1.0.0", - "_where": "/Users/npsdev5/Develop/github.com/rhysd/github-action-benchmark/node_modules/shebang-command", + "_spec": "1.0.0", + "_where": "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", @@ -30,8 +35,6 @@ "bugs": { "url": "https://github.com/sindresorhus/shebang-regex/issues" }, - "bundleDependencies": false, - "deprecated": false, "description": "Regular expression for matching a shebang", "devDependencies": { "ava": "0.0.4" diff --git a/node_modules/signal-exit/package.json b/node_modules/signal-exit/package.json index b604a314c..ef0178089 100644 --- a/node_modules/signal-exit/package.json +++ b/node_modules/signal-exit/package.json @@ -1,27 +1,33 @@ { - "_from": "signal-exit@^3.0.0", + "_args": [ + [ + "signal-exit@3.0.2", + "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark" + ] + ], + "_from": "signal-exit@3.0.2", "_id": "signal-exit@3.0.2", "_inBundle": false, "_integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=", "_location": "/signal-exit", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "signal-exit@^3.0.0", + "raw": "signal-exit@3.0.2", "name": "signal-exit", "escapedName": "signal-exit", - "rawSpec": "^3.0.0", + "rawSpec": "3.0.2", "saveSpec": null, - "fetchSpec": "^3.0.0" + "fetchSpec": "3.0.2" }, "_requiredBy": [ - "/execa" + "/execa", + "/restore-cursor" ], "_resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", - "_shasum": "b5fdc08f1287ea1178628e415e25132b73646c6d", - "_spec": "signal-exit@^3.0.0", - "_where": "/Users/npsdev5/Develop/github.com/rhysd/github-action-benchmark/node_modules/execa", + "_spec": "3.0.2", + "_where": "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark", "author": { "name": "Ben Coe", "email": "ben@npmjs.com" @@ -29,8 +35,6 @@ "bugs": { "url": "https://github.com/tapjs/signal-exit/issues" }, - "bundleDependencies": false, - "deprecated": false, "description": "when you want to fire an event no matter how a process exits.", "devDependencies": { "chai": "^3.5.0", diff --git a/node_modules/strip-eof/package.json b/node_modules/strip-eof/package.json index 2964d734f..6d9188d50 100644 --- a/node_modules/strip-eof/package.json +++ b/node_modules/strip-eof/package.json @@ -1,27 +1,32 @@ { - "_from": "strip-eof@^1.0.0", + "_args": [ + [ + "strip-eof@1.0.0", + "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark" + ] + ], + "_from": "strip-eof@1.0.0", "_id": "strip-eof@1.0.0", "_inBundle": false, "_integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=", "_location": "/strip-eof", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "strip-eof@^1.0.0", + "raw": "strip-eof@1.0.0", "name": "strip-eof", "escapedName": "strip-eof", - "rawSpec": "^1.0.0", + "rawSpec": "1.0.0", "saveSpec": null, - "fetchSpec": "^1.0.0" + "fetchSpec": "1.0.0" }, "_requiredBy": [ "/execa" ], "_resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", - "_shasum": "bb43ff5598a6eb05d89b59fcd129c983313606bf", - "_spec": "strip-eof@^1.0.0", - "_where": "/Users/npsdev5/Develop/github.com/rhysd/github-action-benchmark/node_modules/execa", + "_spec": "1.0.0", + "_where": "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", @@ -30,8 +35,6 @@ "bugs": { "url": "https://github.com/sindresorhus/strip-eof/issues" }, - "bundleDependencies": false, - "deprecated": false, "description": "Strip the End-Of-File (EOF) character from a string/buffer", "devDependencies": { "ava": "*", diff --git a/node_modules/universal-user-agent/package.json b/node_modules/universal-user-agent/package.json index 718bb201e..a4a0ce848 100644 --- a/node_modules/universal-user-agent/package.json +++ b/node_modules/universal-user-agent/package.json @@ -1,27 +1,32 @@ { - "_from": "universal-user-agent@^2.0.3", + "_args": [ + [ + "universal-user-agent@2.1.0", + "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark" + ] + ], + "_from": "universal-user-agent@2.1.0", "_id": "universal-user-agent@2.1.0", "_inBundle": false, "_integrity": "sha512-8itiX7G05Tu3mGDTdNY2fB4KJ8MgZLS54RdG6PkkfwMAavrXu1mV/lls/GABx9O3Rw4PnTtasxrvbMQoBYY92Q==", "_location": "/universal-user-agent", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "universal-user-agent@^2.0.3", + "raw": "universal-user-agent@2.1.0", "name": "universal-user-agent", "escapedName": "universal-user-agent", - "rawSpec": "^2.0.3", + "rawSpec": "2.1.0", "saveSpec": null, - "fetchSpec": "^2.0.3" + "fetchSpec": "2.1.0" }, "_requiredBy": [ "/@octokit/graphql" ], "_resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-2.1.0.tgz", - "_shasum": "5abfbcc036a1ba490cb941f8fd68c46d3669e8e4", - "_spec": "universal-user-agent@^2.0.3", - "_where": "/Users/npsdev5/Develop/github.com/rhysd/github-action-benchmark/node_modules/@octokit/graphql", + "_spec": "2.1.0", + "_where": "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark", "author": { "name": "Gregor Martynus", "url": "https://github.com/gr2m" @@ -30,11 +35,9 @@ "bugs": { "url": "https://github.com/gr2m/universal-user-agent/issues" }, - "bundleDependencies": false, "dependencies": { "os-name": "^3.0.0" }, - "deprecated": false, "description": "Get a user agent string in both browser and node", "devDependencies": { "chai": "^4.1.2", diff --git a/node_modules/which/package.json b/node_modules/which/package.json index 9ff2a29ed..184763836 100644 --- a/node_modules/which/package.json +++ b/node_modules/which/package.json @@ -1,27 +1,33 @@ { - "_from": "which@^1.2.9", + "_args": [ + [ + "which@1.3.1", + "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark" + ] + ], + "_from": "which@1.3.1", "_id": "which@1.3.1", "_inBundle": false, "_integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", "_location": "/which", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "which@^1.2.9", + "raw": "which@1.3.1", "name": "which", "escapedName": "which", - "rawSpec": "^1.2.9", + "rawSpec": "1.3.1", "saveSpec": null, - "fetchSpec": "^1.2.9" + "fetchSpec": "1.3.1" }, "_requiredBy": [ - "/cross-spawn" + "/cross-spawn", + "/mocha" ], "_resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "_shasum": "a45043d54f5805316da8d62f9f50918d3da70b0a", - "_spec": "which@^1.2.9", - "_where": "/Users/npsdev5/Develop/github.com/rhysd/github-action-benchmark/node_modules/cross-spawn", + "_spec": "1.3.1", + "_where": "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark", "author": { "name": "Isaac Z. Schlueter", "email": "i@izs.me", @@ -33,11 +39,9 @@ "bugs": { "url": "https://github.com/isaacs/node-which/issues" }, - "bundleDependencies": false, "dependencies": { "isexe": "^2.0.0" }, - "deprecated": false, "description": "Like which(1) unix command. Find the first instance of an executable in the PATH.", "devDependencies": { "mkdirp": "^0.5.0", diff --git a/node_modules/windows-release/package.json b/node_modules/windows-release/package.json index 5360761da..bbed9b222 100644 --- a/node_modules/windows-release/package.json +++ b/node_modules/windows-release/package.json @@ -1,27 +1,32 @@ { - "_from": "windows-release@^3.1.0", + "_args": [ + [ + "windows-release@3.2.0", + "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark" + ] + ], + "_from": "windows-release@3.2.0", "_id": "windows-release@3.2.0", "_inBundle": false, "_integrity": "sha512-QTlz2hKLrdqukrsapKsINzqMgOUpQW268eJ0OaOpJN32h272waxR9fkB9VoWRtK7uKHG5EHJcTXQBD8XZVJkFA==", "_location": "/windows-release", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "windows-release@^3.1.0", + "raw": "windows-release@3.2.0", "name": "windows-release", "escapedName": "windows-release", - "rawSpec": "^3.1.0", + "rawSpec": "3.2.0", "saveSpec": null, - "fetchSpec": "^3.1.0" + "fetchSpec": "3.2.0" }, "_requiredBy": [ "/os-name" ], "_resolved": "https://registry.npmjs.org/windows-release/-/windows-release-3.2.0.tgz", - "_shasum": "8122dad5afc303d833422380680a79cdfa91785f", - "_spec": "windows-release@^3.1.0", - "_where": "/Users/npsdev5/Develop/github.com/rhysd/github-action-benchmark/node_modules/os-name", + "_spec": "3.2.0", + "_where": "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", @@ -30,11 +35,9 @@ "bugs": { "url": "https://github.com/sindresorhus/windows-release/issues" }, - "bundleDependencies": false, "dependencies": { "execa": "^1.0.0" }, - "deprecated": false, "description": "Get the name of a Windows version from the release number: `5.1.2600` → `XP`", "devDependencies": { "ava": "^1.4.1", diff --git a/node_modules/wrappy/package.json b/node_modules/wrappy/package.json index 2ece13161..bfa6e388b 100644 --- a/node_modules/wrappy/package.json +++ b/node_modules/wrappy/package.json @@ -1,27 +1,33 @@ { - "_from": "wrappy@1", + "_args": [ + [ + "wrappy@1.0.2", + "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark" + ] + ], + "_from": "wrappy@1.0.2", "_id": "wrappy@1.0.2", "_inBundle": false, "_integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", "_location": "/wrappy", "_phantomChildren": {}, "_requested": { - "type": "range", + "type": "version", "registry": true, - "raw": "wrappy@1", + "raw": "wrappy@1.0.2", "name": "wrappy", "escapedName": "wrappy", - "rawSpec": "1", + "rawSpec": "1.0.2", "saveSpec": null, - "fetchSpec": "1" + "fetchSpec": "1.0.2" }, "_requiredBy": [ + "/inflight", "/once" ], "_resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "_shasum": "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f", - "_spec": "wrappy@1", - "_where": "/Users/npsdev5/Develop/github.com/rhysd/github-action-benchmark/node_modules/once", + "_spec": "1.0.2", + "_where": "/Users/rhayasd/Develop/github.com/rhysd/github-action-benchmark", "author": { "name": "Isaac Z. Schlueter", "email": "i@izs.me", @@ -30,9 +36,7 @@ "bugs": { "url": "https://github.com/npm/wrappy/issues" }, - "bundleDependencies": false, "dependencies": {}, - "deprecated": false, "description": "Callback wrapping utility", "devDependencies": { "tap": "^2.3.1"