Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion flow-typed/lib-defs.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ declare module 'auth-header' {

declare module 'isomorphic-fetch' {}

declare module 'oidc-rp' {
declare module '@trust/oidc-rp' {
declare export default class RelyingParty {
provider : { url: string };
static from (data: object): Promise<RelyingParty>;
Expand Down
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"description": "Opaquely authenticates solid clients",
"main": "lib/index.js",
"files": [
"lib"
"lib",
"dist"
],
"repository": "git@github.com:solid/solid-auth-client.git",
"author": "Daniel Friedman <dfriedman58@gmail.com>",
Expand All @@ -27,10 +28,10 @@
"prepublish": "yarn build"
},
"dependencies": {
"@trust/oidc-rp": "^0.3.0",
"auth-header": "^0.3.1",
"bootstrap": "^4.0.0-alpha.6",
"isomorphic-fetch": "^2.2.1",
"oidc-rp": "git://github.com/anvilresearch/oidc-rp.git#47de5e5dfe1356eff7484171d22f5abb2981a8d2"
"isomorphic-fetch": "^2.2.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
Expand Down
2 changes: 1 addition & 1 deletion src/webid-oidc.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// @flow
import RelyingParty from 'oidc-rp'
import RelyingParty from '@trust/oidc-rp'

import type { loginOptions } from './api'
import type { session } from './session'
Expand Down
28 changes: 14 additions & 14 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@


"@trust/jose@^0.1.2":
version "0.1.2"
resolved "https://registry.yarnpkg.com/@trust/jose/-/jose-0.1.2.tgz#47e0cd15c62e35d84ddd30d24204695145482cf8"
version "0.1.3"
resolved "https://registry.yarnpkg.com/@trust/jose/-/jose-0.1.3.tgz#5c119979c113cda3c34c0d2176aadacd2b1a6a74"
dependencies:
"@trust/json-document" "^0.1.4"
"@trust/webcrypto" "^0.0.2"
Expand All @@ -15,6 +15,18 @@
version "0.1.4"
resolved "https://registry.yarnpkg.com/@trust/json-document/-/json-document-0.1.4.tgz#b2023b1e145ba7685bd1f36ec7b69128940073e9"

"@trust/oidc-rp@^0.3.0":
version "0.3.0"
resolved "https://registry.yarnpkg.com/@trust/oidc-rp/-/oidc-rp-0.3.0.tgz#8de33340a6f7984f63b2262fc00d4dff72632004"
dependencies:
"@trust/jose" "^0.1.2"
"@trust/json-document" "^0.1.4"
"@trust/webcrypto" "0.0.2"
base64url "^2.0.0"
node-fetch "^1.7.1"
text-encoding "^0.6.1"
urlutils "0.0.3"

"@trust/webcrypto@0.0.2", "@trust/webcrypto@^0.0.2":
version "0.0.2"
resolved "https://registry.yarnpkg.com/@trust/webcrypto/-/webcrypto-0.0.2.tgz#e77c69a2e612b9d392251c5966c73168537e2667"
Expand Down Expand Up @@ -3910,18 +3922,6 @@ obuf@^1.0.0, obuf@^1.1.1:
version "1.1.1"
resolved "https://registry.yarnpkg.com/obuf/-/obuf-1.1.1.tgz#104124b6c602c6796881a042541d36db43a5264e"

"oidc-rp@git://github.com/anvilresearch/oidc-rp.git#47de5e5dfe1356eff7484171d22f5abb2981a8d2":
version "0.2.1"
resolved "git://github.com/anvilresearch/oidc-rp.git#47de5e5dfe1356eff7484171d22f5abb2981a8d2"
dependencies:
"@trust/jose" "^0.1.2"
"@trust/json-document" "^0.1.4"
"@trust/webcrypto" "0.0.2"
base64url "^2.0.0"
node-fetch "^1.7.1"
text-encoding "^0.6.1"
urlutils "0.0.3"

on-finished@~2.3.0:
version "2.3.0"
resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947"
Expand Down