diff options
author | Matthew Miller <matthew@millerti.me> | 2020-06-02 15:53:42 -0700 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2020-06-02 15:53:42 -0700 |
commit | 5a98b5117e37a66139f90b55de10ed09e35973eb (patch) | |
tree | af6455278660fd217a59f15585cd418c0d4d3256 /example | |
parent | 8feadcb47dbb7c06de278e9abfd9c28ae8e2b905 (diff) |
Update example deps to v0.5.0
Diffstat (limited to 'example')
-rw-r--r-- | example/package-lock.json | 20 | ||||
-rw-r--r-- | example/package.json | 2 | ||||
-rw-r--r-- | example/public/login/index.html | 2 | ||||
-rw-r--r-- | example/public/register/index.html | 2 |
4 files changed, 13 insertions, 13 deletions
diff --git a/example/package-lock.json b/example/package-lock.json index 2f8440c..19490b1 100644 --- a/example/package-lock.json +++ b/example/package-lock.json @@ -5,11 +5,11 @@ "requires": true, "dependencies": { "@simplewebauthn/server": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/@simplewebauthn/server/-/server-0.4.2.tgz", - "integrity": "sha512-yav5YbqHuATvwrqrEfTwqVaB922035HsNNsrclye0cTJZlrQtpWXx0P/SpQMAjHVX9HfVtwhZhHW5imjNnvU1A==", + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/@simplewebauthn/server/-/server-0.5.0.tgz", + "integrity": "sha512-u00N8uNImOPoXsxRHlM5c0HD4CFQ5K8kKEM3TSnTEch19fKmNst6InNObzGbm/wzgnbWXTZNmPGFacaHmNYt2Q==", "requires": { - "@simplewebauthn/typescript-types": "^0.4.0", + "@simplewebauthn/typescript-types": "^0.5.0", "base64url": "^3.0.1", "cbor": "^5.0.2", "elliptic": "^6.5.2", @@ -18,9 +18,9 @@ } }, "@simplewebauthn/typescript-types": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/@simplewebauthn/typescript-types/-/typescript-types-0.4.0.tgz", - "integrity": "sha512-HZXT9QO7i73nyLv7eSon0tkbcfafnOKg4zv88yQOMmzanuq8dVngbYSNrh2lqVR9jSfpz4icYiBIU+bYvRV77Q==" + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/@simplewebauthn/typescript-types/-/typescript-types-0.5.0.tgz", + "integrity": "sha512-4e7EQE10zKuE5rMMMkC/AIaw0+xAHwNBvF53kSV9F2F00/uF3AzX1Mnqy2UhpVAKCBwvlHhdf9fPlbI4V3rQtQ==" }, "@sindresorhus/is": { "version": "0.14.0", @@ -811,9 +811,9 @@ "dev": true }, "jsrsasign": { - "version": "8.0.15", - "resolved": "https://registry.npmjs.org/jsrsasign/-/jsrsasign-8.0.15.tgz", - "integrity": "sha512-6UKHqnNs5lYROn03wf1BTw7DQx5tW616DTigjbo0JHV97D3HzIqYmPVCBSNsfEfQOrfpFqmPZJvaC3cMNOT0Yw==" + "version": "8.0.16", + "resolved": "https://registry.npmjs.org/jsrsasign/-/jsrsasign-8.0.16.tgz", + "integrity": "sha512-4yR8Bm76RKlh+qYtS7m7F1wjKB2A0R0e0VxyMy10PJNEpb/UiXKS40QmU36nuUT7Ea4/cbv4HXu1Z9c91nwLow==" }, "keyv": { "version": "3.1.0", diff --git a/example/package.json b/example/package.json index 295e980..b6685e7 100644 --- a/example/package.json +++ b/example/package.json @@ -10,7 +10,7 @@ "author": "", "license": "ISC", "dependencies": { - "@simplewebauthn/server": "^0.4.2", + "@simplewebauthn/server": "^0.5.0", "express": "^4.17.1" }, "devDependencies": { diff --git a/example/public/login/index.html b/example/public/login/index.html index 480efd6..a5e1f66 100644 --- a/example/public/login/index.html +++ b/example/public/login/index.html @@ -3,7 +3,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <script src="https://unpkg.com/@simplewebauthn/browser@0.4.0/dist/simplewebauthn-browser.min.js"></script> + <script src="https://unpkg.com/@simplewebauthn/browser@0.5.0/dist/simplewebauthn-browser.min.js"></script> <link rel="stylesheet" href="../styles.css" /> <title>SimpleWebAuthn Example Site | Login</title> </head> diff --git a/example/public/register/index.html b/example/public/register/index.html index c8d6d7f..05d7ef5 100644 --- a/example/public/register/index.html +++ b/example/public/register/index.html @@ -3,7 +3,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <script src="https://unpkg.com/@simplewebauthn/browser@0.4.0/dist/simplewebauthn-browser.min.js"></script> + <script src="https://unpkg.com/@simplewebauthn/browser@0.5.0/dist/simplewebauthn-browser.min.js"></script> <link rel="stylesheet" href="../styles.css" /> <title>SimpleWebAuthn Example Site | Register</title> </head> |