-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.23 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
{
"name": "@solid/oidc-rs",
"version": "0.5.6",
"description": "OpenID Connect Resource Server Authentication for Node.js",
"main": "src/index.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "echo nothing to build",
"postversion": "git push --follow-tags",
"preversion": "npm test",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/solid/oidc-rs.git"
},
"author": "",
"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-rs/issues"
},
"homepage": "https://github.com/solid/oidc-rs#readme",
"dependencies": {
"@solid/jose": "^0.6.8",
"jsonwebtoken": "^8.5.1",
"jwk-thumbprint": "^0.1.4",
"jwk-to-pem": "^2.0.5",
"node-fetch": "^2.6.7"
},
"devDependencies": {
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"dirty-chai": "^2.0.1",
"mocha": "^8.4.0",
"nock": "^13.2.9",
"node-mocks-http": "^1.11.0",
"sinon": "^9.2.4",
"sinon-chai": "^3.7.0"
}
}