@solid/solid-multi-rp-client 0.6.4 → 0.6.6-271cb660

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@solid/solid-multi-rp-client",
3
- "version": "0.6.4",
3
+ "version": "0.6.6-271cb660",
4
4
  "description": "OpenID Connect client for multiple Relying Parties for Solid",
5
5
  "main": "./src/index.js",
6
6
  "scripts": {
@@ -8,7 +8,7 @@
8
8
  "standard": "standard src/*",
9
9
  "tape": "tape test/unit/*.js",
10
10
  "test": "npm run standard && npm run tape",
11
- "prepare": "npm test",
11
+ "ignore:prepublishOnly": "npm test",
12
12
  "postversion": "git push --follow-tags"
13
13
  },
14
14
  "engines": {
@@ -39,13 +39,14 @@
39
39
  },
40
40
  "homepage": "https://github.com/solid/solid-multi-rp-client",
41
41
  "dependencies": {
42
- "@solid/oidc-rp": "^0.11.5",
42
+ "@solid/oidc-rp": "^0.12.0",
43
+ "@solid/solid-multi-rp-client": "^0.6.6",
43
44
  "kvplus-files": "0.0.4"
44
45
  },
45
46
  "devDependencies": {
46
- "sinon": "^9.2.4",
47
- "standard": "^16.0.3",
48
- "tape": "^5.1.1"
47
+ "sinon": "^21.0.1",
48
+ "standard": "^17.1.2",
49
+ "tape": "^5.9.0"
49
50
  },
50
51
  "standard": {
51
52
  "globals": []
@@ -184,7 +184,7 @@ class MultiRpClient {
184
184
  ['code', 'id_token token', 'code id_token token']
185
185
  config.post_logout_redirect_uris = config.post_logout_redirect_uris ||
186
186
  this.localConfig.post_logout_redirect_uris || []
187
- config.scope = config.scope || 'openid profile'
187
+ config.scope = config.scope || 'openid profile webid'
188
188
  // client_uri: 'https://github.com/solid/node-solid-server',
189
189
  // logo_uri: 'solid logo',
190
190
  // post_logout_redirect_uris: [ '...' ],
package/.travis.yml DELETED
@@ -1,7 +0,0 @@
1
- sudo: false
2
- language: node_js
3
- node_js:
4
- - "8.10"
5
- cache:
6
- directories:
7
- - node_modules