forked from keycloak/keycloak-nodejs-connect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.54 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
{
"name": "keycloak-connect",
"version": "3.0.0",
"description": "Keycloak Connect Middleware",
"homepage": "http://keycloak.org",
"main": "index.js",
"scripts": {
"lint": "jshint *.js stores/*.js middleware/*.js example/*.js",
"format": "semistandard",
"test": "tape test/unit/keycloak-object-test.js test/keycloak-connect-test.js",
"prepublish": "nsp check",
"docs": "jsdoc --verbose -d docs -t ./node_modules/ink-docstrap/template -R README.md index.js ./middleware/*.js stores/*.js",
"coverage": "istanbul cover tape test/keycloak-connect-test.js tape test/unit/keycloak-object-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": {
"keycloak-auth-utils": "3.0.0"
},
"bundledDependencies": [
"keycloak-auth-utils"
],
"devDependencies": {
"express": "^4.14.0",
"express-session": "^1.14.2",
"ink-docstrap": "^1.3.0",
"istanbul": "^0.4.5",
"jsdoc": "^3.4.3",
"jshint": "^2.9.4",
"nsp": "^2.6.2",
"roi": "^0.14.1",
"semistandard": "^9.2.1",
"tape": "^4.6.3"
},
"engines": {
"node": ">=4.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/keycloak/keycloak-nodejs-connect.git"
},
"bugs": "https://github.com/keycloak/keycloak-nodejs-connect/issues"
}