-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.64 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.64 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
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@continuoussecuritytooling/keycloak-reporter",
"version": "1.2.1",
"description": "Reporting Tools for Keycloak",
"main": "dist/index.js",
"bin": {
"kc-reporter": "dist/cli.js"
},
"type": "module",
"scripts": {
"clean": "rm -rf dist/* && npm i",
"build": "tsc && chmod +x dist/cli.js && cp -rp config dist/",
"test": "eslint --config .eslintrc.cjs . && jest",
"end2end:start-server": ".bin/start-server.mjs",
"end2end:test": "./e2e/run-tests.sh",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"changelog:add": "git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md'",
"release": "npm run test",
"release:major": "npm run release && npm version major && npm run version-and-push",
"release:minor": "npm run release && npm version minor && npm run version-and-push",
"release:patch": "npm run release && npm version patch && npm run version-and-push",
"version-and-push": "npm run changelog && npm run changelog:add && git push origin && git push origin --tags && git checkout main && git merge develop && git push && git checkout develop"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ContinuousSecurityTooling/keycloak-reporter.git"
},
"author": "Martin Reinhardt",
"license": "MIT",
"bugs": {
"url": "https://github.com/ContinuousSecurityTooling/keycloak-reporter/issues"
},
"homepage": "https://github.com/ContinuousSecurityTooling/keycloak-reporter#readme",
"dependencies": {
"@continuoussecuritytooling/keycloak-auditor": "^2.0.0",
"@elastic/ecs-winston-format": "^1.5.3",
"@json2csv/node": "^7.0.0",
"@keycloak/keycloak-admin-client": "^26.0.0",
"@slack/webhook": "^7.0.0",
"ajv": "^8.12.0",
"install": "^0.13.0",
"ms-teams-webhook": "^2.0.2",
"openid-client": "^6.0.0",
"ramda": "^0.32.0",
"winston": "^3.17.0",
"yargs": "^18.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@octokit/rest": "^22.0.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.0",
"@types/ramda": "^0.31.1",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"conventional-changelog-cli": "^5.0.0",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-prettier": "^5.0.0",
"globals": "^17.4.0",
"gunzip-maybe": "^1.4.2",
"jest": "^30.0.0",
"jest-extended": "^7.0.0",
"node-fetch": "^3.3.1",
"tap-xunit": "^2.4.1",
"tape": "^5.6.3",
"tar-fs": "^3.0.0",
"ts-jest": "^29.1.0",
"typescript": "^6.0.0"
}
}