keycloak-testcontainer
Version:
Run a Keycloak testcontainer with node.js
56 lines (55 loc) • 1.26 kB
JSON
{
"name": "keycloak-testcontainer",
"version": "0.1.1",
"description": "Run a Keycloak testcontainer with node.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .ts",
"test": "vitest --coverage"
},
"engines": {
"node": ">=20.19.0",
"npm": ">=7.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/slemke/keycloak-testcontainer.git"
},
"keywords": [
"node",
"keycloak",
"testcontainer",
"docker",
"container",
"testing",
"typescript"
],
"author": "Sascha Lemke",
"license": "MIT",
"bugs": {
"url": "https://github.com/slemke/keycloak-testcontainer/issues"
},
"homepage": "https://github.com/slemke/keycloak-testcontainer#readme",
"files": [
"dist",
"LICENSE",
"README.md",
"package.json"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "8.46.3",
"@typescript-eslint/parser": "8.46.3",
"@vitest/coverage-v8": "4.0.7",
"axios": "1.13.2",
"eslint": "9.39.1",
"typescript": "5.9.3",
"vitest": "4.0.7"
},
"dependencies": {
"@keycloak/keycloak-admin-client": "26.4.2",
"testcontainers": "11.8.0"
}
}