This repository has been archived by the owner on Feb 25, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.73 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
{
"name": "@trust/oidc-op",
"version": "0.3.1",
"description": "OpenID Connect Provider",
"main": "src/index.js",
"directories": {
"test": "test"
},
"scripts": {
"coverage": "nyc --reporter=lcov mocha test",
"jsdoc": "jsdoc -c jsdoc.json -r",
"postversion": "git push --follow-tags",
"preversion": "mocha test",
"standard": "standard",
"test": "nyc mocha test && echo 'to view coverage: open coverage/index.html'"
},
"repository": {
"type": "git",
"url": "https://github.com/anvilresearch/oidc-op.git"
},
"author": "Anvil Research, Inc.",
"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/anvilresearch/oidc-op/issues"
},
"homepage": "https://github.com/anvilresearch/oidc-op#README",
"dependencies": {
"@trust/jose": "^0.1.7",
"@trust/json-document": "^0.1.4",
"@trust/keychain": "^0.1.1",
"@trust/webcrypto": "0.3.0",
"base64url": "^2.0.0",
"pem-jwk": "^1.5.1",
"qs": "^6.2.0",
"whatwg-url": "^6.1.0"
},
"devDependencies": {
"chai": "^4.0.1",
"chai-as-promised": "^7.0.0",
"codecov": "^2.3.0",
"dirty-chai": "^2.0.0",
"mocha": "^3.2.0",
"node-mocks-http": "^1.6.3",
"nyc": "^11.2.1",
"sinon": "^2.3.2",
"sinon-chai": "^2.8.0",
"standard": "^10.0.3"
},
"nyc": {
"reporter": [
"html",
"text-summary"
],
"cache": true
}
}