diff options
author | Matthew Miller <matthew@millerti.me> | 2020-05-17 22:51:58 -0700 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2020-05-17 22:51:58 -0700 |
commit | 0c4ea4347eeb3f9da2e6f89aac4b74f7062bd966 (patch) | |
tree | bd5943833f1765ae27ca62083e9566dfc447741b | |
parent | 256a20719b493d9e5116beb5344e1eaf74f469fd (diff) |
Install cbor, base64url, and upgrade TS
-rw-r--r-- | package-lock.json | 28 | ||||
-rw-r--r-- | package.json | 6 |
2 files changed, 32 insertions, 2 deletions
diff --git a/package-lock.json b/package-lock.json index d009b2c..630c229 100644 --- a/package-lock.json +++ b/package-lock.json @@ -658,6 +658,15 @@ "@babel/types": "^7.3.0" } }, + "@types/cbor": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@types/cbor/-/cbor-5.0.0.tgz", + "integrity": "sha512-9HFbkKNnQUn8bseuoggKdgynqAuM31Bf5IPMlPFh7SOKApjMFG1M+yoIrVbXOo/ohzovKkFW14zsDGlnuBofqA==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, "@types/color-name": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz", @@ -1071,6 +1080,11 @@ "tweetnacl": "^0.14.3" } }, + "bignumber.js": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.0.0.tgz", + "integrity": "sha512-t/OYhhJ2SD+YGBQcjY8GzzDHEk9f3nerxjtfa6tlMXfe7frs/WozhvCNoGvpM0P3bNf3Gq5ZRMlGr5f3r4/N8A==" + }, "brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", @@ -1181,6 +1195,15 @@ "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=", "dev": true }, + "cbor": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/cbor/-/cbor-5.0.2.tgz", + "integrity": "sha512-6JiKVURxxO92FntzTJq54QdN/8fBaBwD7+nNyGIAi1HL9mBgU3YK6ULV8k7WTuT/EwfRsjy3MuqDKlkQMCmfXg==", + "requires": { + "bignumber.js": "^9.0.0", + "nofilter": "^1.0.3" + } + }, "chalk": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", @@ -3158,6 +3181,11 @@ } } }, + "nofilter": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/nofilter/-/nofilter-1.0.3.tgz", + "integrity": "sha512-FlUlqwRK6reQCaFLAhMcF+6VkVG2caYjKQY3YsRDTl4/SEch595Qb3oLjJRDr8dkHAAOVj2pOx3VknfnSgkE5g==" + }, "normalize-package-data": { "version": "2.5.0", "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", diff --git a/package.json b/package.json index 370ed08..bd2fb66 100644 --- a/package.json +++ b/package.json @@ -13,16 +13,18 @@ "test:watch": "jest --watch" }, "devDependencies": { + "@types/cbor": "^5.0.0", "@types/jest": "^25.1.2", "jest": "^25.1.0", "rimraf": "^3.0.2", "ts-jest": "^25.2.0", - "typescript": "^3.7.5" + "typescript": "^3.9.2" }, "keywords": [ "webauthn" ], "dependencies": { - "base64url": "^3.0.1" + "base64url": "^3.0.1", + "cbor": "^5.0.2" } } |