-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.29 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.29 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
{
"name": "oidc-squared",
"version": "0.1.4",
"description": "The OIDC² library.",
"keywords": [
"OpenID Connect",
"OIDC²",
"OIDC squared",
"end-to-end authentication",
"E2EA",
"ID Certification Token",
"ICT",
"OIDC"
],
"homepage": "https://github.com/JonasPrimbs/oidc-squared",
"bugs": {
"url": "https://github.com/JonasPrimbs/oidc-squared/issues",
"email": "mail@jonasprimbs.de"
},
"license": "MIT",
"author": {
"name": "Jonas Primbs",
"email": "mail@jonasprimbs.de",
"url": "https://www.jonasprimbs.de"
},
"files": [
"/dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "github:JonasPrimbs/oidc-squared",
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"docs": "typedoc src/**/* --out docs"
},
"dependencies": {
"@jonasprimbs/byte-array-converter": "^0.0.11",
"jose": "^4.14.4",
"typedoc": "^0.25.0"
},
"devDependencies": {
"@jest/globals": "^29.6.4",
"@types/jest": "^29.5.4",
"@types/node": "^20.5.7",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.48.0",
"jest": "^29.6.4",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
}
}