-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.53 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
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@prxi/openid-connect",
"version": "0.0.1",
"description": "Prxi based OpenID Connect auth proxy server",
"main": "dist/index.js",
"author": "FireBlink LTD",
"homepage": "https://github.com/FireBlinkLTD/prxi-openid-connect",
"license": "The Prosperity Public License 3.0.0",
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"proxy",
"reverse proxy",
"http",
"websocket",
"openid",
"auth",
"authentication",
"authorization"
],
"bin": {
"prxi-openid-connect": "dist/src/index.js"
},
"scripts": {
"start": "node dist/src/index.js",
"dev": "tsc-watch --noClear --onSuccess \"node dist/src/index.js\"",
"build": "tsc",
"keygen": "openssl req -x509 -newkey rsa:2048 -nodes -sha256 -subj '/CN=localhost' -keyout test/key.pem -out test/cert.pem",
"test:keycloak": "bash bin/1-test-keycloak.sh",
"test:clean": "rimraf ./coverage && rm puppeteer-error-*",
"test": "export NODE_EXTRA_CA_CERTS=test/cert.pem && nyc --reporter=html --reporter=text mocha",
"test:coverage": "nyc report --reporter=text-lcov > ./coverage/coverage.lcov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FireBlinkLTD/prxi-openid-connect.git"
},
"dependencies": {
"cookie": "^0.6.0",
"dotenv": "^16.3.1",
"jsonwebtoken": "^9.0.1",
"jwk-to-pem": "^2.0.5",
"node-graceful-shutdown": "^1.1.5",
"openid-client": "^5.6.2",
"prxi": "^1.3.4",
"raw-body": "^2.5.2",
"winston": "^3.11.0",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"@testdeck/mocha": "^0.3.3",
"@types/cookie": "^0.6.0",
"@types/jsonwebtoken": "^9.0.2",
"@types/jwk-to-pem": "^2.0.1",
"@types/mocha": "^10.0.1",
"@types/node": "^20.10.5",
"dev-echo-server": "^0.2.1",
"mocha": "^10.2.0",
"mochawesome": "^7.1.3",
"nyc": "^15.1.0",
"puppeteer": "^21.6.1",
"rimraf": "^5.0.1",
"socket.io-client": "^4.6.2",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"tsc-watch": "^6.0.4",
"typescript": "^5.3.3"
},
"nyc": {
"cache": false,
"extension": [
".ts"
],
"exclude": [
"src/**/index.ts",
"src/interfaces/*.ts",
"**/*.d.ts",
"coverage/**"
],
"check-coverage": true,
"per-file": true,
"lines": 0,
"statements": 0,
"functions": 0,
"branches": 0,
"include": [
"src",
"dist/src"
]
},
"contributors": [
{
"name": "Vladyslav Tkachenko",
"email": "[email protected]"
}
]
}