-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.05 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.05 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
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
87
88
{
"name": "@solid/oidc-auth-manager",
"version": "0.25.2",
"description": "An OpenID Connect (OIDC) authentication manager (OP, RP and RS) for decentralized peer-to-peer authentication",
"main": "./src/index.js",
"scripts": {
"build": "echo nothing to build",
"standard": "standard",
"standard-fix": "standard --fix",
"test": "npm run standard && npm run mocha",
"mocha": "nyc mocha --exit --recursive --timeout 20000",
"preversion": "npm test",
"postversion": "git push --follow-tags",
"prepublishOnly": "npm test"
},
"engines": {
"node": ">=8.10"
},
"repository": {
"type": "git",
"url": "https://github.com/solid/oidc-auth-manager"
},
"keywords": [
"solid",
"decentralized",
"web",
"oidc",
"openid",
"connect",
"authentication",
"linked",
"data"
],
"author": {
"name": "Dmitri Zagidulin",
"url": "https://github.com/dmitrizagidulin/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/solid/oidc-auth-manager/issues"
},
"homepage": "https://github.com/solid/oidc-auth-manager",
"dependencies": {
"@solid/oidc-op": "^0.12.1",
"@solid/oidc-rp": "^0.12.1",
"@solid/oidc-rs": "^0.7.0",
"@solid/solid-multi-rp-client": "^0.7.2",
"ajv": "^8.17.1",
"bcryptjs": "^3.0.3",
"fs-extra": "^11.3.3",
"kvplus-files": "0.0.4",
"li": "^1.3.0",
"node-fetch": "^2.7.0",
"rdflib": "^2.3.2",
"valid-url": "^1.0.9"
},
"devDependencies": {
"chai": "^4.5.0",
"chai-as-promised": "^7.1.2",
"dirty-chai": "^2.0.1",
"mocha": "^11.7.5",
"nock": "^14.0.10",
"node-mocks-http": "^1.17.2",
"nyc": "^17.1.0",
"sinon": "^9.2.4",
"sinon-chai": "^3.7.0",
"solid-auth-cli": "^1.0.15",
"solid-auth-client": "^2.5.6",
"standard": "^17.1.2",
"whatwg-url": "^15.1.0"
},
"nyc": {
"reporter": [
"html",
"text-summary"
]
},
"standard": {
"globals": [
"after",
"afterEach",
"before",
"beforeEach",
"describe",
"it"
]
}
}