-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.31 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.31 KB
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
{
"name": "@solid/oidc-rs",
"version": "0.7.0",
"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",
"prepublishOnly": "npm test",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/solid/oidc-rs.git"
},
"author": "",
"contributors": [
{
"name": "Christian Smith",
"email": "smith@anvil.io",
"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.7.0",
"jsonwebtoken": "^9.0.3",
"jwk-thumbprint": "^0.1.4",
"jwk-to-pem": "^2.0.7",
"node-fetch": "^2.7.0"
},
"devDependencies": {
"chai": "^4.5.0",
"chai-as-promised": "^7.1.2",
"dirty-chai": "^2.0.1",
"mocha": "^11.7.5",
"nock": "^13.5.6",
"node-mocks-http": "^1.17.2",
"sinon": "^9.2.4",
"sinon-chai": "^3.7.0"
}
}