forked from keycloak/keycloak-nodejs-connect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.89 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
{
"name": "keycloak-connect",
"version": "5.0.0-dev",
"description": "Keycloak Connect Middleware",
"homepage": "http://keycloak.org",
"main": "index.js",
"scripts": {
"lint": "jshint *.js stores/*.js middleware/*.js middleware/auth-utils/*.js example/*.js",
"format": "semistandard",
"test": "tape test/unit/*.js test/*.js",
"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": "istanbul cover tape test/unit/*.js tape test/*.js"
},
"keywords": [
"sso",
"keycloak",
"oauth",
"oauth2.0",
"authentication"
],
"files": [
"example",
"middleware",
"stores",
"test",
"index.js",
"uuid.js"
],
"author": {
"name": "Red Hat, Inc.",
"url": "http://keycloak.org"
},
"license": "Apache-2.0",
"dependencies": {
"jwk-to-pem": "^2.0.0"
},
"devDependencies": {
"axios": "^0.18.0",
"blue-tape": "^1.0.0",
"body-parser": "^1.13.3",
"coveralls": "^3.0.1",
"express": "^4.14.0",
"express-session": "^1.14.2",
"hogan-express": "^0.5.2",
"ink-docstrap": "^1.1.4",
"istanbul": "^0.4.5",
"jsdoc": "^3.4.3",
"jshint": "^2.9.6",
"keycloak-admin-client": "bucharest-gold/keycloak-admin-client",
"keycloak-request-token": "^0.1.0",
"nock": "^9.0.2",
"phantomjs-prebuilt": "^2.1.14",
"rsa-compat": "^1.2.7",
"selenium-webdriver": "^3.6.0",
"semistandard": "^9.2.1",
"server-destroy": "^1.0.1",
"tape": "^4.6.3",
"tape-catch": "^1.0.6"
},
"semistandard": {
"ignore": [
"**/phantomjs*/",
"**/keycloak*/"
]
},
"engines": {
"node": ">=4.6.2"
},
"repository": {
"type": "git",
"url": "https://github.com/keycloak/keycloak-nodejs-connect.git"
},
"bugs": "https://github.com/keycloak/keycloak-nodejs-connect/issues"
}