-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
65 lines (65 loc) · 1.47 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
{
"name": "keycloak-connect-multirealm",
"version": "2.1.0",
"description": "Keycloak Node.js Adapter With Support for multiple realms",
"main": "index.js",
"scripts": {
"test": "jest",
"lint": "eslint .",
"lint-fix": "eslint --fix .",
"posttest": "yarn run lint",
"coverage": "jest --coverage && npm run posttest",
"prepush": "yarn run coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devsu/keycloak-nodejs-multirealm.git"
},
"keywords": [
"keycloak",
"multi",
"realm",
"node",
"nodejs",
"connect",
"express",
"auth",
"authentication",
"authorization"
],
"author": "Cesar Salazar @ Devsu",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/devsu/keycloak-nodejs-multirealm/issues"
},
"homepage": "https://github.com/devsu/keycloak-nodejs-multirealm#readme",
"devDependencies": {
"eslint": "^7.7.0",
"eslint-config-devsu": "^0.0.3",
"jest": "^26.4.1",
"keycloak-connect": "^11.0.0"
},
"coverageThreshold": {
"global": {
"branches": 95,
"functions": 95,
"lines": 95,
"statements": 95
}
},
"collectCoverageFrom": [
"src/**/*.{js}",
"!<rootDir>/node_modules/"
],
"dependencies": {
"composable-middleware": "^0.3.0",
"jsonwebtoken": "^8.5.1",
"node-cache": "^5.1.2"
},
"peerDependencies": {
"keycloak-connect": "11.x"
},
"jest": {
"testEnvironment": "node"
}
}