forked from keycloak/keycloak-nodejs-connect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.4 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
{
"name": "keycloak-connect",
"version": "17.0.0-dev",
"description": "Keycloak Connect Middleware",
"homepage": "http://keycloak.org",
"main": "keycloak.js",
"scripts": {
"lint": "jshint *.js stores/*.js middleware/*.js middleware/auth-utils/*.js example/*.js && standard",
"test": "./run-tests.sh",
"docs": "jsdoc --verbose -d docs -t ./node_modules/ink-docstrap/template -R README.md index.js ./middleware/*.js stores/*.js ./middleware/auth-utils/*.js",
"coverage": "nyc cover tape test/unit/*.js tape test/*.js",
"server:start": "./scripts/start-server.mjs -Dkeycloak.profile.feature.account_api=disabled -Dkeycloak.profile.feature.account2=disabled -Dkeycloak.migration.action=import -Dkeycloak.migration.provider=singleFile -Dkeycloak.migration.file=test/fixtures/auth-utils/nodejs-test-realm.json -Dkeycloak.migration.strategy=OVERWRITE_EXISTING"
},
"keywords": [
"sso",
"keycloak",
"oauth",
"oauth2.0",
"authentication"
],
"files": [
"example",
"middleware",
"stores",
"test",
"index.js",
"uuid.js",
"keycloak.d.ts",
"run-tests.sh"
],
"typings": "keycloak.d.ts",
"author": {
"name": "Red Hat, Inc.",
"url": "http://keycloak.org"
},
"license": "Apache-2.0",
"dependencies": {
"jwk-to-pem": "^2.0.0"
},
"devDependencies": {
"@keycloak/keycloak-admin-client": "^18.0.0",
"@octokit/rest": "^19.0.3",
"axios": "^0.27.2",
"blue-tape": "^1.0.0",
"body-parser": "^1.13.3",
"cookie-parser": "^1.4.5",
"coveralls": "^3.0.1",
"express": "^4.14.0",
"express-session": "^1.14.2",
"gunzip-maybe": "^1.4.2",
"hogan-express": "^0.5.2",
"ink-docstrap": "^1.1.4",
"jsdoc": "^3.6.3",
"jshint": "^2.10.2",
"keycloak-request-token": "^0.1.0",
"nock": "^13.2.2",
"node-fetch": "^3.2.3",
"nyc": "^15.0.0",
"rsa-compat": "^2.0.8",
"selenium-webdriver": "^3.6.0",
"server-destroy": "^1.0.1",
"standard": "^17.0.0",
"tap-xunit": "^2.4.1",
"tape": "^5.4.1",
"tape-catch": "^1.0.6",
"tar-fs": "^2.1.1"
},
"optionalDependencies": {
"chromedriver": "latest"
},
"standard": {
"ignore": [
"**/keycloak*/"
]
},
"engines": {
"node": ">=14"
},
"repository": {
"type": "git",
"url": "https://github.com/keycloak/keycloak-nodejs-connect.git"
},
"bugs": "https://github.com/keycloak/keycloak-nodejs-connect/issues"
}