-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
86 lines (86 loc) · 1.96 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
81
82
83
84
85
86
{
"name": "@solid/oidc-op",
"version": "0.11.6",
"engines": {
"node": ">=10.0"
},
"description": "OpenID Connect Provider",
"main": "src/index.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "echo nothing to build",
"coverage": "nyc --reporter=lcov mocha test",
"jsdoc": "jsdoc -c jsdoc.json -r",
"postversion": "git push --follow-tags",
"preversion": "mocha test --recursive --timeout 20000",
"standard": "standard",
"test": "nyc mocha test --recursive --timeout 20000 && echo 'to view coverage: open coverage/index.html'"
},
"repository": {
"type": "git",
"url": "https://github.com/solid/oidc-op.git"
},
"contributors": [
{
"name": "Christian Smith",
"email": "[email protected]",
"url": "http://anvil.io"
},
{
"name": "Greg Linklater",
"email": "[email protected]",
"url": "https://github.com/EternalDeiwos"
},
{
"name": "Dmitri Zagidulin",
"url": "https://github.com/dmitrizagidulin/"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/solid/oidc-op/issues"
},
"homepage": "https://github.com/solid/oidc-op#README",
"dependencies": {
"@solid/jose": "^0.6.5",
"@solid/keychain": "^0.3.4",
"base64url": "^3.0.1",
"debug": "^4.3.1",
"jsonwebtoken": "^8.5.1",
"jwk-thumbprint": "^0.1.4",
"jwk-to-pem": "^2.0.5",
"qs": "^6.10.1",
"whatwg-url": "^8.5.0"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"codecov": "^3.8.2",
"dirty-chai": "^2.0.1",
"mocha": "^8.4.0",
"node-mocks-http": "^1.10.1",
"nyc": "^15.1.0",
"sinon": "^11.1.1",
"sinon-chai": "^3.7.0",
"standard": "^16.0.3"
},
"nyc": {
"reporter": [
"html",
"text-summary"
],
"cache": true
},
"standard": {
"globals": [
"after",
"afterEach",
"before",
"beforeEach",
"describe",
"it"
]
}
}