forked from nodeSolidServer/oidc-rp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 1.78 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@interop-alliance/oidc-rp",
"version": "0.12.4",
"description": "OpenID Connect Relying Party client library",
"main": "./src/index.js",
"module": "./src/index.js",
"engines": {
"node": ">=10"
},
"files": [
"dist",
"src"
],
"scripts": {
"dist": "webpack --progress",
"prepare": "npm run dist && npm run test",
"preversion": "npm test",
"standard": "standard src/",
"test": "npm run standard && mocha --timeout=10000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/solid/oidc-rp.git"
},
"contributors": [
{
"name": "Christian Smith",
"email": "[email protected]",
"url": "http://anvil.io"
},
{
"name": "Dmitri Zagidulin",
"url": "https://github.com/dmitrizagidulin"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/solid/oidc-rp/issues"
},
"homepage": "https://github.com/solid/oidc-rp",
"dependencies": {
"@solid/jose": "^0.6.5",
"assert": "^2.0.0",
"base64url-universal": "^1.1.0",
"bnid": "^2.0.0",
"cross-fetch": "^3.1.4",
"isomorphic-webcrypto": "^2.3.6",
"standard-http-error": "^2.0.1",
"universal-base64": "^2.1.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"dirty-chai": "^2.0.1",
"mocha": "^8.2.1",
"nock": "^13.0.5",
"sinon": "^9.2.3",
"sinon-chai": "^3.5.0",
"standard": "^16.0.3",
"webpack": "^5.13.0",
"webpack-cli": "^4.3.1"
},
"browser": {
"buffer": false,
"./src/crypto.js": "./src/crypto-browser.js"
},
"standard": {
"globals": [
"after",
"afterEach",
"before",
"beforeEach",
"describe",
"fetch",
"it"
]
}
}