forked from keycloak/keycloak-nodejs-connect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.06 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
{
"name": "keycloak-connect",
"version": "14.0.0-beta.2",
"description": "Keycloak Connect Middleware",
"homepage": "http://keycloak.org",
"main": "keycloak.js",
"scripts": {
"lint": "eslint *.js *.ts examples/**/*.js middleware/**/*.js stores/**/*.js test/**/*.js",
"doc": "rimraf docs && ./node_modules/.bin/jsdoc -c .jsdoc.json",
"clean": "rimraf docs .nyc_output",
"test": "rimraf .nyc_output && nyc ./node_modules/.bin/tap --timeout=360 -j1 test/*-spec.js"
},
"keywords": [
"sso",
"keycloak",
"oauth",
"oauth2.0",
"authentication"
],
"files": [
"example",
"middleware",
"stores",
"test",
"index.js",
"uuid.js",
"keycloak.d.ts",
"LICENSE.txt",
"get-version.sh",
"release.sh",
"set-version.sh",
"WaitKeycloakAppRunning.sh"
],
"typings": "keycloak.d.ts",
"author": {
"name": "Red Hat, Inc.",
"url": "http://keycloak.org"
},
"license": "Apache-2.0",
"dependencies": {
"jwk-to-pem": "^2.0.5"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"coveralls": "^3.1.0",
"defaults-deep": "^0.2.4",
"eslint": "^7.26.0",
"eslint-plugin-react": "^7.23.2",
"express": "^4.17.1",
"express-session": "^1.17.1",
"hogan-express": "^0.5.2",
"ink-docstrap": "^1.3.2",
"jsdoc": "^3.6.7",
"keycloak-request-token": "^0.1.0",
"keycloak-admin-client": "bucharest-gold/keycloak-admin-client",
"minimist": "^1.2.5",
"nock": "^13.0.11",
"nyc": "^15.1.0",
"rsa-compat": "^2.0.8",
"selenium-webdriver": "^3.6.0",
"server-destroy": "^1.0.1",
"tap": "^15.0.9",
"typescript": "^4.2.4"
},
"optionalDependencies": {
"chromedriver": "latest"
},
"engines": {
"node": ">=10.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/keycloak/keycloak-nodejs-connect.git"
},
"bugs": "https://issues.redhat.com/projects/KEYCLOAK/issues"
}