diff --git a/package.json b/package.json index 3839a6c..9e2e61d 100644 --- a/package.json +++ b/package.json @@ -6,14 +6,14 @@ "license": "MIT", "devDependencies": { "@commitlint/config-conventional": "^7.1.2", - "@types/node": "10.5.7", - "commitlint": "^7.1.2", + "@types/node": "10.12.18", + "commitlint": "^7.2.1", "cz-conventional-changelog": "^2.1.0", - "husky": "^1.0.1", - "semantic-release": "^15.9.16", - "tslint": "^5.11.0", - "typescript": "^3.0.3", - "valory-runtime": "^3.8.1" + "husky": "^1.3.0", + "semantic-release": "^15.13.1", + "tslint": "^5.12.0", + "typescript": "^3.2.2", + "valory-runtime": "^3.12.2" }, "files": [ "dist/adaptor-polka.js", diff --git a/src/adaptor-polka.ts b/src/adaptor-polka.ts index c43638f..d239c59 100644 --- a/src/adaptor-polka.ts +++ b/src/adaptor-polka.ts @@ -58,8 +58,9 @@ function attemptParse(contentType: string, obj: any): any { if (contentType == null) { return obj; } + const parsedContentType = contentType.split(";")[0]; try { - switch (contentType) { + switch (parsedContentType) { case "application/json": return JSON.parse(obj); case "application/x-www-form-urlencoded": diff --git a/yarn.lock b/yarn.lock index 3ef71da..fa72c50 100644 --- a/yarn.lock +++ b/yarn.lock @@ -6,13 +6,14 @@ version "1.0.0" resolved "https://npm.modoapi.com/@arr%2fevery/-/every-1.0.0.tgz#314f8168f50ae48a032cfdad5fdb436f464a97ac" -"@commitlint/cli@^7.1.2": - version "7.1.2" - resolved "https://npm.modoapi.com/@commitlint%2fcli/-/cli-7.1.2.tgz#9ad1b4703679e18e3b1972c4abf0441255219e78" - dependencies: - "@commitlint/format" "^7.1.2" - "@commitlint/lint" "^7.1.2" - "@commitlint/load" "^7.1.2" +"@commitlint/cli@^7.2.1": + version "7.2.1" + resolved "https://npm.modoapi.com/@commitlint%2fcli/-/cli-7.2.1.tgz#dbb9eeb1f5015a129bb0801fbc1115eb1dcd513b" + integrity sha512-PUHWGoQOx8m6ZSpZPSHb+YISFAvW7jiWvCJOQiViKHZC8CLKu4bjyc/AwP8gBte0RsTGAu1ekiitp5Q0NcLGcA== + dependencies: + "@commitlint/format" "^7.2.1" + "@commitlint/lint" "^7.2.1" + "@commitlint/load" "^7.2.1" "@commitlint/read" "^7.1.2" babel-polyfill "6.26.0" chalk "2.3.1" @@ -20,14 +21,17 @@ lodash.merge "4.6.1" lodash.pick "4.4.0" meow "5.0.0" + resolve-from "^4.0.0" + resolve-global "^0.1.0" "@commitlint/config-conventional@^7.1.2": version "7.1.2" resolved "https://npm.modoapi.com/@commitlint%2fconfig-conventional/-/config-conventional-7.1.2.tgz#5b5e45924c9abd8f9a8d83eb1f66e24e5f66916f" -"@commitlint/ensure@^7.1.2": - version "7.1.2" - resolved "https://npm.modoapi.com/@commitlint%2fensure/-/ensure-7.1.2.tgz#30d74bf0062ac6d917037f20dbf27bb63a4ae7c1" +"@commitlint/ensure@^7.2.0": + version "7.2.0" + resolved "https://npm.modoapi.com/@commitlint%2fensure/-/ensure-7.2.0.tgz#03cfab7135f57f62b73698f441a516886a84a1f6" + integrity sha512-j2AJE4eDeLP6O/Z1CdPwEXAzcrRRoeeHLuvW8bldQ4J2nHiX9hzmSe87H87Ob8Avm+zIegsqVPGaBAtRmbODYw== dependencies: lodash.camelcase "4.3.0" lodash.kebabcase "4.1.1" @@ -41,32 +45,36 @@ dependencies: babel-runtime "6.26.0" -"@commitlint/format@^7.1.2": - version "7.1.2" - resolved "https://npm.modoapi.com/@commitlint%2fformat/-/format-7.1.2.tgz#0f601d572d97d7cca59ef6f3da0cde0d10de3de2" +"@commitlint/format@^7.2.1": + version "7.2.1" + resolved "https://npm.modoapi.com/@commitlint%2fformat/-/format-7.2.1.tgz#7d8b25002792d6481f0f8f9614736e43106749c1" + integrity sha512-1YcL+ZWB8V52oDFQBhSBJjiJOZDt4Vl06O5TkG70BMpre3EQru5KYIN16eEPqfihNw0bj8gSIWcf87Gvh3OrOw== dependencies: babel-runtime "^6.23.0" chalk "^2.0.1" -"@commitlint/is-ignored@^7.1.2": - version "7.1.2" - resolved "https://npm.modoapi.com/@commitlint%2fis-ignored/-/is-ignored-7.1.2.tgz#1168ef48883e86446dd2930f23300ec0e038dddc" +"@commitlint/is-ignored@^7.2.1": + version "7.2.1" + resolved "https://npm.modoapi.com/@commitlint%2fis-ignored/-/is-ignored-7.2.1.tgz#624b3703ca88a4b6573176439b1126b7eb3708d4" + integrity sha512-3DsEEKRnj8Bv9qImsxWcGf9BwerDnk5Vs+oK6ELzIwkndHaAZLHyATjmaz/rsc+U+DWiVjgKrrw3xvd/UsoazA== dependencies: - semver "5.5.0" + semver "5.6.0" -"@commitlint/lint@^7.1.2": - version "7.1.2" - resolved "https://npm.modoapi.com/@commitlint%2flint/-/lint-7.1.2.tgz#7166a9ba71e75c2f981f531a2386739ef28b21a3" +"@commitlint/lint@^7.2.1": + version "7.2.1" + resolved "https://npm.modoapi.com/@commitlint%2flint/-/lint-7.2.1.tgz#4511a9acada6870042ca3244417b401ad1043d46" + integrity sha512-rM7nUyNUJyuKw1MTwJG/wk4twB5YCAG2wzJMn5NqVpGD/qmLOzlZoBl0+CYmuOsbIRAA2rlEV6KZHBk9tTfAdQ== dependencies: - "@commitlint/is-ignored" "^7.1.2" + "@commitlint/is-ignored" "^7.2.1" "@commitlint/parse" "^7.1.2" - "@commitlint/rules" "^7.1.2" + "@commitlint/rules" "^7.2.0" babel-runtime "^6.23.0" lodash.topairs "4.3.0" -"@commitlint/load@^7.1.2": - version "7.1.2" - resolved "https://npm.modoapi.com/@commitlint%2fload/-/load-7.1.2.tgz#91fc756f63477d19299cd1ed79be2d36aaa8c33d" +"@commitlint/load@^7.2.1": + version "7.2.1" + resolved "https://npm.modoapi.com/@commitlint%2fload/-/load-7.2.1.tgz#f1a49cb2ecf53e235e4f3523f75a553f5b481f5c" + integrity sha512-FnfmfhPGJqGwILVRznduBejOicNey6p/byfcyxtcBkN2+X96gDuNtqcnGcngCrzPIAgaIrQQcTQDA1/KMtW21A== dependencies: "@commitlint/execute-rule" "^7.1.2" "@commitlint/resolve-extends" "^7.1.2" @@ -109,11 +117,12 @@ resolve-from "^4.0.0" resolve-global "^0.1.0" -"@commitlint/rules@^7.1.2": - version "7.1.2" - resolved "https://npm.modoapi.com/@commitlint%2frules/-/rules-7.1.2.tgz#ba241dc3dbb6c05ce4a186a7cdf85c170345778c" +"@commitlint/rules@^7.2.0": + version "7.2.0" + resolved "https://npm.modoapi.com/@commitlint%2frules/-/rules-7.2.0.tgz#44ab5dadead1668f6a2790fbdfe70e456346866c" + integrity sha512-c15Q9H5iYE9fnncLnFnMuvPLYA/i0pve5moV0uxJJGr4GgJoBKyldd4CCDhoE80C1k8ABuqr2o2qsopzVEp3Ww== dependencies: - "@commitlint/ensure" "^7.1.2" + "@commitlint/ensure" "^7.2.0" "@commitlint/message" "^7.1.2" "@commitlint/to-lines" "^7.1.2" babel-runtime "^6.23.0" @@ -147,17 +156,39 @@ version "1.1.2" resolved "https://npm.modoapi.com/@nodelib%2ffs.stat/-/fs.stat-1.1.2.tgz#54c5a964462be3d4d78af631363c18d6fa91ac26" -"@octokit/rest@^15.2.0": - version "15.12.1" - resolved "https://npm.modoapi.com/@octokit%2frest/-/rest-15.12.1.tgz#f0dc169f336f8fd05ae8d8c83371b2f0c0dd8de1" +"@octokit/endpoint@^3.0.0": + version "3.1.1" + resolved "https://npm.modoapi.com/@octokit%2fendpoint/-/endpoint-3.1.1.tgz#ede9afefaa4d6b7584169e12346425c6fbb45cc3" + integrity sha512-KPkoTvKwCTetu/UqonLs1pfwFO5HAqTv/Ksp9y4NAg//ZgUCpvJsT4Hrst85uEzJvkB8+LxKyR4Bfv2X8O4cmQ== dependencies: - before-after-hook "^1.1.0" + deepmerge "3.0.0" + is-plain-object "^2.0.4" + universal-user-agent "^2.0.1" + url-template "^2.0.8" + +"@octokit/request@2.2.0": + version "2.2.0" + resolved "https://npm.modoapi.com/@octokit%2frequest/-/request-2.2.0.tgz#f4b2d1ad7c4c8a0b148193610c912046961f8be5" + integrity sha512-4P9EbwKZ4xfyupVMb3KVuHmM+aO2fye3nufjGKz/qDssvdJj9Rlx44O0FdFvUp4kIzToy3AHLTOulEIDAL+dpg== + dependencies: + "@octokit/endpoint" "^3.0.0" + is-plain-object "^2.0.4" + node-fetch "^2.3.0" + universal-user-agent "^2.0.1" + +"@octokit/rest@^16.0.1": + version "16.3.0" + resolved "https://npm.modoapi.com/@octokit%2frest/-/rest-16.3.0.tgz#98a24a3334312a87fff8a2a54c1dca4d0900d54d" + integrity sha512-u0HkROLB0nOSfJhkF5FKMg6I12m6cN5S3S73Lwtfgrs9u4LhgUCZN2hC2KDyIaT7nhvNe9Kx0PgxhhD6li6QsA== + dependencies: + "@octokit/request" "2.2.0" + before-after-hook "^1.2.0" btoa-lite "^1.0.0" - debug "^3.1.0" - http-proxy-agent "^2.1.0" - https-proxy-agent "^2.2.0" - lodash "^4.17.4" - node-fetch "^2.1.1" + lodash.get "^4.4.2" + lodash.pick "^4.4.0" + lodash.set "^4.3.2" + lodash.uniq "^4.5.0" + octokit-pagination-methods "^1.1.0" universal-user-agent "^2.0.0" url-template "^2.0.8" @@ -165,9 +196,10 @@ version "0.5.0" resolved "https://npm.modoapi.com/@polka%2furl/-/url-0.5.0.tgz#b21510597fd601e5d7c95008b76bf0d254ebfd31" -"@semantic-release/commit-analyzer@^6.0.0": - version "6.0.1" - resolved "https://npm.modoapi.com/@semantic-release%2fcommit-analyzer/-/commit-analyzer-6.0.1.tgz#5acd015130d60e279b6ed2de56b8e0d06169cd3f" +"@semantic-release/commit-analyzer@^6.1.0": + version "6.1.0" + resolved "https://npm.modoapi.com/@semantic-release%2fcommit-analyzer/-/commit-analyzer-6.1.0.tgz#32bbe3c23da86e23edf072fbb276fa2f383fcb17" + integrity sha512-2lb+t6muGenI86mYGpZYOgITx9L3oZYF697tJoqXeQEk0uw0fm+OkkOuDTBA3Oax9ftoNIrCKv9bwgYvxrbM6w== dependencies: conventional-changelog-angular "^5.0.0" conventional-commits-filter "^2.0.0" @@ -180,11 +212,12 @@ version "2.2.0" resolved "https://npm.modoapi.com/@semantic-release%2ferror/-/error-2.2.0.tgz#ee9d5a09c9969eade1ec864776aeda5c5cddbbf0" -"@semantic-release/github@^5.0.0": - version "5.0.5" - resolved "https://npm.modoapi.com/@semantic-release%2fgithub/-/github-5.0.5.tgz#9149b4fd9232f63ee38039c540a800a00a4d9e55" +"@semantic-release/github@^5.1.0": + version "5.2.7" + resolved "https://npm.modoapi.com/@semantic-release%2fgithub/-/github-5.2.7.tgz#d9eb8bcc9332a02b85458ddb0988a17023e2b460" + integrity sha512-cWQhM9bdBv8KAwClmwM64Mo3vsOHVM2aJAGI6K3qbJfJ3GsLJLh1hTi+rMd5EkZ2DA8zUUHCiAJZ3ujMvUB0yg== dependencies: - "@octokit/rest" "^15.2.0" + "@octokit/rest" "^16.0.1" "@semantic-release/error" "^2.2.0" aggregate-error "^1.0.0" bottleneck "^2.0.1" @@ -198,32 +231,31 @@ lodash "^4.17.4" mime "^2.0.3" p-filter "^1.0.0" - p-retry "^2.0.0" + p-retry "^3.0.0" parse-github-url "^1.0.1" url-join "^4.0.0" -"@semantic-release/npm@^5.0.1": - version "5.0.4" - resolved "https://npm.modoapi.com/@semantic-release%2fnpm/-/npm-5.0.4.tgz#bef4ff31c9a70cc6db7583e08d2d29741b32d2f8" +"@semantic-release/npm@^5.0.5": + version "5.1.2" + resolved "https://npm.modoapi.com/@semantic-release%2fnpm/-/npm-5.1.2.tgz#96dda235677c628059abb35f5e8f447f1c5c4d64" + integrity sha512-hAt8Q86jjp0AiykihhZ7vuCFKYz0j8v3W6Jae8b+RCLi8IUofrPF1ZImx3oY0rRu8ZZSb4aU9uxtFmeOYZebjg== dependencies: "@semantic-release/error" "^2.2.0" aggregate-error "^1.0.0" - detect-indent "^5.0.0" - detect-newline "^2.1.0" execa "^1.0.0" fs-extra "^7.0.0" lodash "^4.17.4" nerf-dart "^1.0.0" - normalize-url "^3.0.0" + normalize-url "^4.0.0" npm "^6.3.0" - parse-json "^4.0.0" rc "^1.2.8" read-pkg "^4.0.0" registry-auth-token "^3.3.1" -"@semantic-release/release-notes-generator@^7.0.0": - version "7.0.2" - resolved "https://npm.modoapi.com/@semantic-release%2frelease-notes-generator/-/release-notes-generator-7.0.2.tgz#67f15c53c4f8e68106a74f0364bfb1326ade3e63" +"@semantic-release/release-notes-generator@^7.1.2": + version "7.1.4" + resolved "https://npm.modoapi.com/@semantic-release%2frelease-notes-generator/-/release-notes-generator-7.1.4.tgz#8f4f752c5a8385abdaac1256127cef05988bc2ad" + integrity sha512-pWPouZujddgb6t61t9iA9G3yIfp3TeQ7bPbV1ixYSeP6L7gI1+Du82fY/OHfEwyifpymLUQW0XnIKgKct5IMMw== dependencies: conventional-changelog-angular "^5.0.0" conventional-changelog-writer "^4.0.0" @@ -231,9 +263,8 @@ conventional-commits-parser "^3.0.0" debug "^4.0.0" get-stream "^4.0.0" - git-url-parse "^10.0.1" import-from "^2.1.0" - into-stream "^3.1.0" + into-stream "^4.0.0" lodash "^4.17.4" "@types/events@*": @@ -244,9 +275,10 @@ version "10.11.1" resolved "https://npm.modoapi.com/@types%2fnode/-/node-10.11.1.tgz#adc48781dd50b2635a8a7854d99c759a26ede840" -"@types/node@10.5.7": - version "10.5.7" - resolved "https://npm.modoapi.com/@types%2fnode/-/node-10.5.7.tgz#960d9feb3ade2233bcc9843c918d740b4f78a7cf" +"@types/node@10.12.18": + version "10.12.18" + resolved "https://npm.modoapi.com/@types%2fnode/-/node-10.12.18.tgz#1d3ca764718915584fcd9f6344621b7672665c67" + integrity sha512-fh+pAqt4xRzPfqA6eh3Z2y6fyZavRIumvjhaCL753+TVkGKGhpPeyrJG2JftD0T9q4GF00KjefsQ+PQNDdWQaQ== "@types/pino@^5.20.0": version "5.20.0" @@ -381,10 +413,15 @@ array-union@^1.0.1: dependencies: array-uniq "^1.0.1" -array-uniq@^1.0.0, array-uniq@^1.0.1: +array-uniq@^1.0.1: version "1.0.3" resolved "https://npm.modoapi.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" +array-uniq@^2.0.0: + version "2.0.0" + resolved "https://npm.modoapi.com/array-uniq/-/array-uniq-2.0.0.tgz#0009e30306e37a6dd2e2e2480db5316fdade1583" + integrity sha512-O3QZEr+3wDj7otzF7PjNGs6CA3qmYMLvt5xGkjY/V0VxS+ovvqVo/5wKM/OVOAyuX4DTh9H31zE/yKtO66hTkg== + array-unique@^0.3.2: version "0.3.2" resolved "https://npm.modoapi.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" @@ -478,9 +515,10 @@ bcrypt-pbkdf@^1.0.0: dependencies: tweetnacl "^0.14.3" -before-after-hook@^1.1.0: - version "1.1.0" - resolved "https://npm.modoapi.com/before-after-hook/-/before-after-hook-1.1.0.tgz#83165e15a59460d13702cb8febd6a1807896db5a" +before-after-hook@^1.2.0: + version "1.2.0" + resolved "https://npm.modoapi.com/before-after-hook/-/before-after-hook-1.2.0.tgz#1079c10312cd4d4ad0d1676d37951ef8bfc3a563" + integrity sha512-wI3QtdLppHNkmM1VgRVLCrlWCKk/YexlPicYbXPs4eYdd1InrUCTFsx5bX1iUQzzMsoRXXPpM1r+p7JEJJydag== bin-links@^1.1.2: version "1.1.2" @@ -623,16 +661,35 @@ call-me-maybe@^1.0.1: version "1.0.1" resolved "https://npm.modoapi.com/call-me-maybe/-/call-me-maybe-1.0.1.tgz#26d208ea89e37b5cbde60250a15f031c16a4d66b" +caller-callsite@^2.0.0: + version "2.0.0" + resolved "https://npm.modoapi.com/caller-callsite/-/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134" + integrity sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ= + dependencies: + callsites "^2.0.0" + caller-path@^0.1.0: version "0.1.0" resolved "https://npm.modoapi.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" dependencies: callsites "^0.2.0" +caller-path@^2.0.0: + version "2.0.0" + resolved "https://npm.modoapi.com/caller-path/-/caller-path-2.0.0.tgz#468f83044e369ab2010fac5f06ceee15bb2cb1f4" + integrity sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ= + dependencies: + caller-callsite "^2.0.0" + callsites@^0.2.0: version "0.2.0" resolved "https://npm.modoapi.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" +callsites@^2.0.0: + version "2.0.0" + resolved "https://npm.modoapi.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" + integrity sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA= + camelcase-keys@^4.0.0: version "4.2.0" resolved "https://npm.modoapi.com/camelcase-keys/-/camelcase-keys-4.2.0.tgz#a2aa5fb1af688758259c32c141426d78923b9b77" @@ -822,11 +879,12 @@ commander@~2.17.1: version "2.17.1" resolved "https://npm.modoapi.com/commander/-/commander-2.17.1.tgz#bd77ab7de6de94205ceacc72f1716d29f20a77bf" -commitlint@^7.1.2: - version "7.1.2" - resolved "https://npm.modoapi.com/commitlint/-/commitlint-7.1.2.tgz#f6cccefcd41bab272188e326e2c46656ba1db116" +commitlint@^7.2.1: + version "7.2.1" + resolved "https://npm.modoapi.com/commitlint/-/commitlint-7.2.1.tgz#c1d50a26bf2324b60a0f67507b20dc0a74976a8c" + integrity sha512-P0TB+bjQleuNK6S22yelvsUJygxfIBtYQjfpuAOOYbUyw46k3hfXImR39WLofl9SPDGr3burcDo8eBgHgvzXRw== dependencies: - "@commitlint/cli" "^7.1.2" + "@commitlint/cli" "^7.2.1" read-pkg "3.0.0" resolve-pkg "1.0.0" @@ -972,7 +1030,7 @@ cosmiconfig@^4.0.0: parse-json "^4.0.0" require-from-string "^2.0.1" -cosmiconfig@^5.0.1, cosmiconfig@^5.0.6: +cosmiconfig@^5.0.1: version "5.0.6" resolved "https://npm.modoapi.com/cosmiconfig/-/cosmiconfig-5.0.6.tgz#dca6cf680a0bd03589aff684700858c81abeeb39" dependencies: @@ -980,6 +1038,16 @@ cosmiconfig@^5.0.1, cosmiconfig@^5.0.6: js-yaml "^3.9.0" parse-json "^4.0.0" +cosmiconfig@^5.0.7: + version "5.0.7" + resolved "https://npm.modoapi.com/cosmiconfig/-/cosmiconfig-5.0.7.tgz#39826b292ee0d78eda137dfa3173bd1c21a43b04" + integrity sha512-PcLqxTKiDmNT6pSpy4N6KtuPwb53W+2tzNvwOZw0WH9N6O0vLIBq0x8aj8Oj75ere4YcGi48bDFCL+3fRJdlNA== + dependencies: + import-fresh "^2.0.0" + is-directory "^0.3.1" + js-yaml "^3.9.0" + parse-json "^4.0.0" + create-error-class@^3.0.0: version "3.0.2" resolved "https://npm.modoapi.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" @@ -1101,6 +1169,11 @@ deep-extend@^0.6.0: version "0.6.0" resolved "https://npm.modoapi.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" +deepmerge@3.0.0: + version "3.0.0" + resolved "https://npm.modoapi.com/deepmerge/-/deepmerge-3.0.0.tgz#ca7903b34bfa1f8c2eab6779280775a411bfc6ba" + integrity sha512-a8z8bkgHsAML+uHLqmMS83HHlpy3PvZOOuiTQqaa3wu8ZVg3h0hqHk6aCsGdOnZV2XMM/FRimNGjUh0KCcmHBw== + defaults@^1.0.3: version "1.0.3" resolved "https://npm.modoapi.com/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d" @@ -1134,7 +1207,7 @@ delegates@^1.0.0: version "1.0.0" resolved "https://npm.modoapi.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" -detect-indent@^5.0.0, detect-indent@~5.0.0: +detect-indent@~5.0.0: version "5.0.0" resolved "https://npm.modoapi.com/detect-indent/-/detect-indent-5.0.0.tgz#3871cc0a6a002e8c3e5b3cf7f336264675f06b9d" @@ -1287,18 +1360,6 @@ execa@^0.7.0: signal-exit "^3.0.0" strip-eof "^1.0.0" -execa@^0.9.0: - version "0.9.0" - resolved "https://npm.modoapi.com/execa/-/execa-0.9.0.tgz#adb7ce62cf985071f60580deb4a88b9e34712d01" - dependencies: - cross-spawn "^5.0.1" - get-stream "^3.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" - execa@^1.0.0: version "1.0.0" resolved "https://npm.modoapi.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" @@ -1384,9 +1445,10 @@ fast-json-stable-stringify@^2.0.0: version "2.0.0" resolved "https://npm.modoapi.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" -fast-redact@^1.2.0: - version "1.2.0" - resolved "https://npm.modoapi.com/fast-redact/-/fast-redact-1.2.0.tgz#356bdb968c23473cd4e460689c10785842f41529" +fast-redact@^1.4.2: + version "1.4.2" + resolved "https://npm.modoapi.com/fast-redact/-/fast-redact-1.4.2.tgz#14989f452ee07f0723fbb483ee778d363135b7ad" + integrity sha512-ttC8IgelNvYqb9RBC+rirgUCVPtPVonfdeRdsHBcBx3kzQat1DafbUKAEhLo5GnvuBqda+Xe1BvblecPpQkZ2Q== fast-safe-stringify@^2.0.6: version "2.0.6" @@ -1453,17 +1515,23 @@ find-up@^3.0.0: dependencies: locate-path "^3.0.0" -find-versions@^2.0.0: - version "2.0.0" - resolved "https://npm.modoapi.com/find-versions/-/find-versions-2.0.0.tgz#2ad90d490f6828c1aa40292cf709ac3318210c3c" +find-versions@^3.0.0: + version "3.0.0" + resolved "https://npm.modoapi.com/find-versions/-/find-versions-3.0.0.tgz#2c05a86e839c249101910100b354196785a2c065" + integrity sha512-IUvtItVFNmTtKoB0PRfbkR0zR9XMG5rWNO3qI1S8L0zdv+v2gqzM0pAunloxqbqAfT8w7bg8n/5gHzTXte8H5A== dependencies: - array-uniq "^1.0.0" - semver-regex "^1.0.0" + array-uniq "^2.0.0" + semver-regex "^2.0.0" -flatstr@^1.0.5, flatstr@^1.0.8: +flatstr@^1.0.8: version "1.0.8" resolved "https://npm.modoapi.com/flatstr/-/flatstr-1.0.8.tgz#0e849229751f2b9f6a0919f8e81e1229e84ba901" +flatstr@^1.0.9: + version "1.0.9" + resolved "https://npm.modoapi.com/flatstr/-/flatstr-1.0.9.tgz#0950d56fec02de1030c1311847ecd58c25690eb9" + integrity sha512-qFlJnOBWDfIaunF54/lBqNKmXOI0HqNhu+mHkLmbaBXlS71PUd9OjFOdyevHt/aHoHB1+eW7eKHgRKOG5aHSpw== + flush-write-stream@^1.0.0: version "1.0.3" resolved "https://npm.modoapi.com/flush-write-stream/-/flush-write-stream-1.0.3.tgz#c5d586ef38af6097650b49bc41b55fabb19f35bd" @@ -1634,19 +1702,6 @@ git-raw-commits@^1.3.0: split2 "^2.0.0" through2 "^2.0.0" -git-up@^2.0.0: - version "2.0.10" - resolved "https://npm.modoapi.com/git-up/-/git-up-2.0.10.tgz#20fe6bafbef4384cae253dc4f463c49a0c3bd2ec" - dependencies: - is-ssh "^1.3.0" - parse-url "^1.3.0" - -git-url-parse@^10.0.1: - version "10.0.1" - resolved "https://npm.modoapi.com/git-url-parse/-/git-url-parse-10.0.1.tgz#75f153b24ac7297447fc583cf9fac23a5ae687c1" - dependencies: - git-up "^2.0.0" - glob-parent@^3.1.0: version "3.1.0" resolved "https://npm.modoapi.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" @@ -1809,12 +1864,13 @@ humanize-ms@^1.2.1: dependencies: ms "^2.0.0" -husky@^1.0.1: - version "1.0.1" - resolved "https://npm.modoapi.com/husky/-/husky-1.0.1.tgz#749bc6b3a14bdc9cab73d8cc827b92fcd691fac6" +husky@^1.3.0: + version "1.3.0" + resolved "https://npm.modoapi.com/husky/-/husky-1.3.0.tgz#fbb97b5e52739d945fd86c3bf92def0ea60175c4" + integrity sha512-0Yfh4PkWr8Nrume/lEMgSgK5zg8Q19jGM7jDmN7H92VrqgcYSbn+CM1iLGmAvQSNWuaPx9iq/rq/4Y8LPX6dLA== dependencies: - cosmiconfig "^5.0.6" - execa "^0.9.0" + cosmiconfig "^5.0.7" + execa "^1.0.0" find-up "^3.0.0" get-stdin "^6.0.0" is-ci "^1.2.1" @@ -1855,6 +1911,14 @@ ignore@^3.3.5: version "3.3.10" resolved "https://npm.modoapi.com/ignore/-/ignore-3.3.10.tgz#0a97fb876986e8081c631160f8f9f389157f0043" +import-fresh@^2.0.0: + version "2.0.0" + resolved "https://npm.modoapi.com/import-fresh/-/import-fresh-2.0.0.tgz#d81355c15612d386c61f9ddd3922d4304822a546" + integrity sha1-2BNVwVYS04bGH53dOSLUMEgipUY= + dependencies: + caller-path "^2.0.0" + resolve-from "^3.0.0" + import-from@^2.1.0: version "2.1.0" resolved "https://npm.modoapi.com/import-from/-/import-from-2.1.0.tgz#335db7f2a7affd53aaa471d4b8021dee36b7f3b1" @@ -1901,12 +1965,13 @@ init-package-json@^1.10.3: validate-npm-package-license "^3.0.1" validate-npm-package-name "^3.0.0" -into-stream@^3.1.0: - version "3.1.0" - resolved "https://npm.modoapi.com/into-stream/-/into-stream-3.1.0.tgz#96fb0a936c12babd6ff1752a17d05616abd094c6" +into-stream@^4.0.0: + version "4.0.0" + resolved "https://npm.modoapi.com/into-stream/-/into-stream-4.0.0.tgz#ef10ee2ffb6f78af34c93194bbdc36c35f7d8a9d" + integrity sha512-i29KNyE5r0Y/UQzcQ0IbZO1MYJ53Jn0EcFRZPj5FzWKYH17kDFEOwuA+3jroymOI06SW1dEDnly9A1CAreC5dg== dependencies: from2 "^2.1.1" - p-is-promise "^1.1.0" + p-is-promise "^2.0.0" invert-kv@^1.0.0: version "1.0.0" @@ -2075,12 +2140,6 @@ is-retry-allowed@^1.0.0: version "1.1.0" resolved "https://npm.modoapi.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34" -is-ssh@^1.3.0: - version "1.3.0" - resolved "https://npm.modoapi.com/is-ssh/-/is-ssh-1.3.0.tgz#ebea1169a2614da392a63740366c3ce049d8dff6" - dependencies: - protocols "^1.1.0" - is-stream@^1.0.0, is-stream@^1.1.0: version "1.1.0" resolved "https://npm.modoapi.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" @@ -2349,6 +2408,11 @@ lodash.escaperegexp@^4.1.2: version "4.1.2" resolved "https://npm.modoapi.com/lodash.escaperegexp/-/lodash.escaperegexp-4.1.2.tgz#64762c48618082518ac3df4ccf5d5886dae20347" +lodash.get@^4.4.2: + version "4.4.2" + resolved "https://npm.modoapi.com/lodash.get/-/lodash.get-4.4.2.tgz#2d177f652fa31e939b4438d5341499dfa3825e99" + integrity sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk= + lodash.isplainobject@^4.0.6: version "4.0.6" resolved "https://npm.modoapi.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb" @@ -2377,10 +2441,15 @@ lodash.omit@4.5.0: version "4.5.0" resolved "https://npm.modoapi.com/lodash.omit/-/lodash.omit-4.5.0.tgz#6eb19ae5a1ee1dd9df0b969e66ce0b7fa30b5e60" -lodash.pick@4.4.0: +lodash.pick@4.4.0, lodash.pick@^4.4.0: version "4.4.0" resolved "https://npm.modoapi.com/lodash.pick/-/lodash.pick-4.4.0.tgz#52f05610fff9ded422611441ed1fc123a03001b3" +lodash.set@^4.3.2: + version "4.3.2" + resolved "https://npm.modoapi.com/lodash.set/-/lodash.set-4.3.2.tgz#d8757b1da807dde24816b0d6a84bea1a76230b23" + integrity sha1-2HV7HagH3eJIFrDWqEvqGnYjCyM= + lodash.snakecase@4.1.1: version "4.1.1" resolved "https://npm.modoapi.com/lodash.snakecase/-/lodash.snakecase-4.1.1.tgz#39d714a35357147837aefd64b5dcbb16becd8f8d" @@ -2414,7 +2483,7 @@ lodash.union@~4.6.0: version "4.6.0" resolved "https://npm.modoapi.com/lodash.union/-/lodash.union-4.6.0.tgz#48bb5088409f16f1821666641c44dd1aaae3cd88" -lodash.uniq@~4.5.0: +lodash.uniq@^4.5.0, lodash.uniq@~4.5.0: version "4.5.0" resolved "https://npm.modoapi.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" @@ -2460,6 +2529,11 @@ macos-release@^1.0.0: version "1.1.0" resolved "https://npm.modoapi.com/macos-release/-/macos-release-1.1.0.tgz#831945e29365b470aa8724b0ab36c8f8959d10fb" +macos-release@^2.0.0: + version "2.0.0" + resolved "https://npm.modoapi.com/macos-release/-/macos-release-2.0.0.tgz#7dddf4caf79001a851eb4fba7fb6034f251276ab" + integrity sha512-iCM3ZGeqIzlrH7KxYK+fphlJpCCczyHXc+HhRVbEu9uNTCrzYJjvvtefzeKTCVHd5AP/aD/fzC80JZ4ZP+dQ/A== + make-dir@^1.0.0: version "1.3.0" resolved "https://npm.modoapi.com/make-dir/-/make-dir-1.3.0.tgz#79c1033b80515bd6d24ec9933e860ca75ee27f0c" @@ -2774,9 +2848,10 @@ node-fetch-npm@^2.0.2: json-parse-better-errors "^1.0.0" safe-buffer "^5.1.1" -node-fetch@^2.1.1: - version "2.2.0" - resolved "https://npm.modoapi.com/node-fetch/-/node-fetch-2.2.0.tgz#4ee79bde909262f9775f731e3656d0db55ced5b5" +node-fetch@^2.3.0: + version "2.3.0" + resolved "https://npm.modoapi.com/node-fetch/-/node-fetch-2.3.0.tgz#1a1d940bbfb916a1d3e0219f037e89e71f8c5fa5" + integrity sha512-MOd8pV3fxENbryESLgVIeaGKrdl+uaYhCSSVkjeOb/31/njTpcis5aWfdqgNlHIrKOLRbMnfPINPOML2CIFeXA== node-gyp@^3.8.0: version "3.8.0" @@ -2817,9 +2892,10 @@ normalize-package-data@^2.0.0, normalize-package-data@^2.3.2, normalize-package- semver "2 || 3 || 4 || 5" validate-npm-package-license "^3.0.1" -normalize-url@^3.0.0: - version "3.3.0" - resolved "https://npm.modoapi.com/normalize-url/-/normalize-url-3.3.0.tgz#b2e1c4dc4f7c6d57743df733a4f5978d18650559" +normalize-url@^4.0.0: + version "4.1.0" + resolved "https://npm.modoapi.com/normalize-url/-/normalize-url-4.1.0.tgz#307e74c87473efa81969ad1b4bb91f1990178904" + integrity sha512-X781mkWeK6PDMAZJfGn/wnwil4dV6pIdF9euiNqtA89uJvZuNDJO2YyJxiwpPhTQcF5pYUU1v+kcOxzYV6rZlA== npm-audit-report@^1.3.1: version "1.3.1" @@ -3094,6 +3170,11 @@ object.pick@^1.3.0: dependencies: isobject "^3.0.1" +octokit-pagination-methods@^1.1.0: + version "1.1.0" + resolved "https://npm.modoapi.com/octokit-pagination-methods/-/octokit-pagination-methods-1.1.0.tgz#cf472edc9d551055f9ef73f6e42b4dbb4c80bea4" + integrity sha512-fZ4qZdQ2nxJvtcasX7Ghl+WlWS/d9IgnBIwFZXVNNZUmzpno91SX5bc5vuxiuKoCtK78XxGGNuSCrDC7xYB3OQ== + once@^1.3.0, once@^1.3.1, once@^1.3.3, once@^1.4.0, once@~1.4.0: version "1.4.0" resolved "https://npm.modoapi.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" @@ -3138,6 +3219,14 @@ os-name@^2.0.1: macos-release "^1.0.0" win-release "^1.0.0" +os-name@^3.0.0: + version "3.0.0" + resolved "https://npm.modoapi.com/os-name/-/os-name-3.0.0.tgz#e1434dbfddb8e74b44c98b56797d951b7648a5d9" + integrity sha512-7c74tib2FsdFbQ3W+qj8Tyd1R3Z6tuVRNNxXjJcZ4NgjIEQU9N/prVMqcW29XZPXGACqaXN3jq58/6hoaoXH6g== + dependencies: + macos-release "^2.0.0" + windows-release "^3.1.0" + os-tmpdir@^1.0.0: version "1.0.2" resolved "https://npm.modoapi.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" @@ -3167,6 +3256,11 @@ p-is-promise@^1.1.0: version "1.1.0" resolved "https://npm.modoapi.com/p-is-promise/-/p-is-promise-1.1.0.tgz#9c9456989e9f6588017b0434d56097675c3da05e" +p-is-promise@^2.0.0: + version "2.0.0" + resolved "https://npm.modoapi.com/p-is-promise/-/p-is-promise-2.0.0.tgz#7554e3d572109a87e1f3f53f6a7d85d1b194f4c5" + integrity sha512-pzQPhYMCAgLAKPWD2jC3Se9fEfrD9npNos0y150EeqZll7akhEgGhTW/slB6lHku8AvYGiJ+YJ5hfHKePPgFWg== + p-limit@^1.1.0: version "1.3.0" resolved "https://npm.modoapi.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" @@ -3199,9 +3293,10 @@ p-reduce@^1.0.0: version "1.0.0" resolved "https://npm.modoapi.com/p-reduce/-/p-reduce-1.0.0.tgz#18c2b0dd936a4690a529f8231f58a0fdb6a47dfa" -p-retry@^2.0.0: - version "2.0.0" - resolved "https://npm.modoapi.com/p-retry/-/p-retry-2.0.0.tgz#b97f1f4d6d81a3c065b2b40107b811e995c1bfba" +p-retry@^3.0.0: + version "3.0.0" + resolved "https://npm.modoapi.com/p-retry/-/p-retry-3.0.0.tgz#f1a09233417dd40b42a7a4a3ed0f4780f23b90d8" + integrity sha512-fAB7bebxaj8nylNAsxPNkwPZ/48bXFdFnWrz0v2sV+H5BsGfVL7Ap7KgONqy7rOK4ZI1I+SU+lmettO3hM+2HQ== dependencies: retry "^0.12.0" @@ -3271,13 +3366,6 @@ parse-json@^4.0.0: error-ex "^1.3.1" json-parse-better-errors "^1.0.1" -parse-url@^1.3.0: - version "1.3.11" - resolved "https://npm.modoapi.com/parse-url/-/parse-url-1.3.11.tgz#57c15428ab8a892b1f43869645c711d0e144b554" - dependencies: - is-ssh "^1.3.0" - protocols "^1.4.0" - pascalcase@^0.1.1: version "0.1.1" resolved "https://npm.modoapi.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" @@ -3320,22 +3408,24 @@ pify@^3.0.0: version "3.0.0" resolved "https://npm.modoapi.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" -pino-std-serializers@^2.2.1: - version "2.2.1" - resolved "https://npm.modoapi.com/pino-std-serializers/-/pino-std-serializers-2.2.1.tgz#ceb583374358c75949e9c4ddbdd690428c15958e" +pino-std-serializers@^2.3.0: + version "2.3.0" + resolved "https://npm.modoapi.com/pino-std-serializers/-/pino-std-serializers-2.3.0.tgz#34eeaab97c055c28e22c0542ae55978e7e427786" + integrity sha512-klfGoOsP6sJH7ON796G4xoUSx2fkpFgKHO4YVVO2zmz31jR+etzc/QzGJILaOIiCD6HTCFgkPx+XN8nk+ruqPw== -pino@^5.6.1: - version "5.6.2" - resolved "https://npm.modoapi.com/pino/-/pino-5.6.2.tgz#523b7926db828e765a944eef6460682722fa27e5" +pino@^5.8.0: + version "5.10.4" + resolved "https://npm.modoapi.com/pino/-/pino-5.10.4.tgz#a92604d06c8d8501b1f57399bfca972b4b121ead" + integrity sha512-LFXwowazOLqsDUT6DubP8hzIZDjsuCRu29lU5iiXQBuhxKuyooi5RCnaqel3VfrX35tAZbErIR8kjmMm0lASEw== dependencies: fast-json-parse "^1.0.3" - fast-redact "^1.2.0" + fast-redact "^1.4.2" fast-safe-stringify "^2.0.6" - flatstr "^1.0.5" - pino-std-serializers "^2.2.1" + flatstr "^1.0.9" + pino-std-serializers "^2.3.0" pump "^3.0.0" quick-format-unescaped "^3.0.0" - sonic-boom "^0.6.1" + sonic-boom "^0.7.1" pkg-conf@^2.1.0: version "2.1.0" @@ -3396,10 +3486,6 @@ proto-list@~1.2.1: version "1.2.4" resolved "https://npm.modoapi.com/proto-list/-/proto-list-1.2.4.tgz#212d5bfe1318306a420f6402b8e26ff39647a849" -protocols@^1.1.0, protocols@^1.4.0: - version "1.4.6" - resolved "https://npm.modoapi.com/protocols/-/protocols-1.4.6.tgz#f8bb263ea1b5fd7a7604d26b8be39bd77678bf8a" - protoduck@^5.0.0: version "5.0.0" resolved "https://npm.modoapi.com/protoduck/-/protoduck-5.0.0.tgz#752145e6be0ad834cb25716f670a713c860dce70" @@ -3771,25 +3857,25 @@ safe-regex@^1.1.0: version "2.1.2" resolved "https://npm.modoapi.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" -semantic-release@^15.9.16: - version "15.9.16" - resolved "https://npm.modoapi.com/semantic-release/-/semantic-release-15.9.16.tgz#70391ef6a9246253f54061ecd06634994e305b1e" +semantic-release@^15.13.1: + version "15.13.1" + resolved "https://npm.modoapi.com/semantic-release/-/semantic-release-15.13.1.tgz#18541032504aa0b443d011083685c9b42eb38c9f" + integrity sha512-bkrfQ10BhbJRMeq/Ih9DZ9FO4ffDwFYsRR134JP9JvQSf8GVX4sg3SnFFd7Q10C6pKwjKqMZ4+ZNB5uQYMLPEg== dependencies: - "@semantic-release/commit-analyzer" "^6.0.0" + "@semantic-release/commit-analyzer" "^6.1.0" "@semantic-release/error" "^2.2.0" - "@semantic-release/github" "^5.0.0" - "@semantic-release/npm" "^5.0.1" - "@semantic-release/release-notes-generator" "^7.0.0" + "@semantic-release/github" "^5.1.0" + "@semantic-release/npm" "^5.0.5" + "@semantic-release/release-notes-generator" "^7.1.2" aggregate-error "^1.0.0" cosmiconfig "^5.0.1" debug "^4.0.0" env-ci "^3.0.0" execa "^1.0.0" figures "^2.0.0" - find-versions "^2.0.0" + find-versions "^3.0.0" get-stream "^4.0.0" git-log-parser "^1.2.0" - git-url-parse "^10.0.1" hook-std "^1.1.0" hosted-git-info "^2.7.1" lodash "^4.17.4" @@ -3813,17 +3899,19 @@ semver-diff@^2.0.0: dependencies: semver "^5.0.3" -semver-regex@^1.0.0: - version "1.0.0" - resolved "https://npm.modoapi.com/semver-regex/-/semver-regex-1.0.0.tgz#92a4969065f9c70c694753d55248fc68f8f652c9" +semver-regex@^2.0.0: + version "2.0.0" + resolved "https://npm.modoapi.com/semver-regex/-/semver-regex-2.0.0.tgz#a93c2c5844539a770233379107b38c7b4ac9d338" + integrity sha512-mUdIBBvdn0PLOeP3TEkMH7HHeUP3GjsXCwKarjv/kGmUFOYg1VqEemKhoQpWMu6X2I8kHeuVdGibLGkVK+/5Qw== "semver@2 >=2.2.1 || 3.x || 4 || 5", "semver@2 || 3 || 4 || 5", "semver@2.x || 3.x || 4 || 5", "semver@^2.3.0 || 3.x || 4 || 5", semver@^5.0.1, semver@^5.0.3, semver@^5.1.0, semver@^5.3.0, semver@^5.4.1, semver@^5.5.0: version "5.5.1" resolved "https://npm.modoapi.com/semver/-/semver-5.5.1.tgz#7dfdd8814bdb7cabc7be0fb1d734cfb66c940477" -semver@5.5.0: - version "5.5.0" - resolved "https://npm.modoapi.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" +semver@5.6.0: + version "5.6.0" + resolved "https://npm.modoapi.com/semver/-/semver-5.6.0.tgz#7e74256fbaa49c75aa7c7a205cc22799cac80004" + integrity sha512-RS9R6R35NYgQn++fkDWaOmqGoj4Ek9gGs+DPxNUZKuwE183xjJroKvyo1IzVFeXvUrvmALy6FWD5xrdJT25gMg== semver@~5.3.0: version "5.3.0" @@ -3955,11 +4043,12 @@ socks@~2.2.0: ip "^1.1.5" smart-buffer "^4.0.1" -sonic-boom@^0.6.1: - version "0.6.1" - resolved "https://npm.modoapi.com/sonic-boom/-/sonic-boom-0.6.1.tgz#da832af4ed7c477eb5317fe4c5132c75f7556245" +sonic-boom@^0.7.1: + version "0.7.1" + resolved "https://npm.modoapi.com/sonic-boom/-/sonic-boom-0.7.1.tgz#d6aae30428802dbd43b1167643efe1ef708bb534" + integrity sha512-zveqTNcDTI35ae0LgK/SwHkFeMfe6FJKyeACgPzuOe3f+9CyaoXJHTnDgekXt8PKIoMCGF/m57/9RNjjkqmt2A== dependencies: - flatstr "^1.0.5" + flatstr "^1.0.9" sorted-object@~2.0.1: version "2.0.1" @@ -4292,9 +4381,10 @@ tslib@^1.8.0, tslib@^1.8.1: version "1.9.3" resolved "https://npm.modoapi.com/tslib/-/tslib-1.9.3.tgz#d7e4dd79245d85428c4d7e4822a79917954ca286" -tslint@^5.11.0: - version "5.11.0" - resolved "https://npm.modoapi.com/tslint/-/tslint-5.11.0.tgz#98f30c02eae3cde7006201e4c33cb08b48581eed" +tslint@^5.12.0: + version "5.12.0" + resolved "https://npm.modoapi.com/tslint/-/tslint-5.12.0.tgz#47f2dba291ed3d580752d109866fb640768fca36" + integrity sha512-CKEcH1MHUBhoV43SA/Jmy1l24HJJgI0eyLbBNSRyFlsQvb9v6Zdq+Nz2vEOH00nC5SUx4SneJ59PZUS/ARcokQ== dependencies: babel-code-frame "^6.22.0" builtin-modules "^1.1.1" @@ -4329,9 +4419,10 @@ typedarray@^0.0.6: version "0.0.6" resolved "https://npm.modoapi.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" -typescript@^3.0.3: - version "3.1.1" - resolved "https://npm.modoapi.com/typescript/-/typescript-3.1.1.tgz#3362ba9dd1e482ebb2355b02dfe8bcd19a2c7c96" +typescript@^3.2.2: + version "3.2.2" + resolved "https://npm.modoapi.com/typescript/-/typescript-3.2.2.tgz#fe8101c46aa123f8353523ebdcf5730c2ae493e5" + integrity sha512-VCj5UiSyHBjwfYacmDuc/NOk4QQixbE+Wn7MFJuS0nRuPQbof132Pw4u53dm264O8LPc2MVsc7RJNml5szurkg== uglify-js@^3.1.4: version "3.4.9" @@ -4381,6 +4472,13 @@ universal-user-agent@^2.0.0: dependencies: os-name "^2.0.1" +universal-user-agent@^2.0.1: + version "2.0.2" + resolved "https://npm.modoapi.com/universal-user-agent/-/universal-user-agent-2.0.2.tgz#b0322da546100c658adcf4965110a56ed238aee6" + integrity sha512-nOwvHWLH3dBazyuzbECPA5uVFNd7AlgviXRHgR4yf48QqitIvpdncRrxMbZNMpPPEfgz30I9ubd1XmiJiqsTrg== + dependencies: + os-name "^3.0.0" + universalify@^0.1.0: version "0.1.2" resolved "https://npm.modoapi.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" @@ -4466,16 +4564,17 @@ validate-npm-package-name@^3.0.0, validate-npm-package-name@~3.0.0: dependencies: builtins "^1.0.3" -valory-runtime@^3.8.1: - version "3.8.1" - resolved "https://npm.modoapi.com/valory-runtime/-/valory-runtime-3.8.1.tgz#5a0845ac398739607c7d9fdd26ec330b0c32f3ef" +valory-runtime@^3.12.2: + version "3.12.2" + resolved "https://npm.modoapi.com/valory-runtime/-/valory-runtime-3.12.2.tgz#02b164da52615a51661abcafba6b74ef8110e37e" + integrity sha512-DT01y5fhCOzHR9AoPhohE9z6z4Nd3q0fzoK9zacpA7av3LcweR3gZ1T+jA55n/ZfktrbEQXCYgd2edmVpkbD5Q== dependencies: "@types/pino" "^5.20.0" bluebird "^3.5.2" flatstr "^1.0.8" hyperid "^1.4.1" lodash "^4.17.11" - pino "^5.6.1" + pino "^5.8.0" steed "^1.1.3" xxhashjs "^0.2.2" @@ -4521,6 +4620,13 @@ win-release@^1.0.0: dependencies: semver "^5.0.1" +windows-release@^3.1.0: + version "3.1.0" + resolved "https://npm.modoapi.com/windows-release/-/windows-release-3.1.0.tgz#8d4a7e266cbf5a233f6c717dac19ce00af36e12e" + integrity sha512-hBb7m7acFgQPQc222uEQTmdcGLeBmQLNLFIh0rDk3CwFOBrfjefLzEfEfmpMq8Af/n/GnFf3eYf203FY1PmudA== + dependencies: + execa "^0.10.0" + word-wrap@^1.0.3: version "1.2.3" resolved "https://npm.modoapi.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c"