-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.9 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.9 KB
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
{
"name": "keycloak-backend",
"version": "5.1.0",
"description": "Keycloak Node.js minimalist connector for backend services integration. ",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "ts-standard",
"format": "ts-standard --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:integration": "npm run integration:up && npm run integration:wait && npm run integration:test; EXIT_CODE=$?; npm run integration:down; exit $EXIT_CODE",
"integration:up": "docker compose up -d",
"integration:down": "docker compose down",
"integration:clean": "docker compose down -v",
"integration:logs": "docker compose logs -f",
"integration:wait": "node tests/integration/wait-for-keycloak.js",
"integration:test": "jest --config jest.integration.config.js",
"actions": "DOCKER_HOST=$(docker context inspect --format '{{.Endpoints.docker.Host}}') act pull_request",
"build": "tsc",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jkyberneees/keycloak-backend.git"
},
"keywords": [
"keycloak",
"auth",
"oauth",
"jwt",
"rest"
],
"files": [
"LICENSE",
"README.md",
"libs/",
"dist/"
],
"author": "Rolando Santamaria Maso <kyberneees@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jkyberneees/keycloak-backend/issues"
},
"homepage": "https://github.com/jkyberneees/keycloak-backend#readme",
"dependencies": {
"axios": "^1.13.2",
"jsonwebtoken": "^9.0.2"
},
"devDependencies": {
"@types/axios-mock-adapter": "^1.10.4",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^18.19.130",
"axios-mock-adapter": "^2.1.0",
"jest": "^30.2.0",
"ts-jest": "^29.4.5",
"ts-standard": "^12.0.2",
"typescript": "^4.9.5"
}
}