2023-02-03 10:45:11 +00:00
|
|
|
{
|
|
|
|
"name": "@keycloak/keycloak-admin-client",
|
2023-03-03 10:11:44 +00:00
|
|
|
"version": "999.0.0-SNAPSHOT",
|
2023-02-03 10:45:11 +00:00
|
|
|
"description": "A client to interact with Keycloak's Administration API",
|
|
|
|
"type": "module",
|
|
|
|
"main": "lib/index.js",
|
|
|
|
"files": [
|
|
|
|
"lib"
|
|
|
|
],
|
|
|
|
"types": "lib/index.d.ts",
|
|
|
|
"engines": {
|
2023-05-26 09:50:00 +00:00
|
|
|
"node": ">=18"
|
2023-02-03 10:45:11 +00:00
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"build": "wireit",
|
|
|
|
"lint": "wireit",
|
|
|
|
"test": "wireit",
|
2023-05-05 16:03:24 +00:00
|
|
|
"prepublishOnly": "pnpm run build"
|
2023-02-03 10:45:11 +00:00
|
|
|
},
|
|
|
|
"wireit": {
|
|
|
|
"build": {
|
|
|
|
"command": "tsc --pretty",
|
|
|
|
"files": [
|
|
|
|
"src/**",
|
|
|
|
"package.json",
|
|
|
|
"tsconfig.json"
|
|
|
|
],
|
|
|
|
"output": [
|
|
|
|
"lib/**"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"lint": {
|
|
|
|
"command": "eslint . --ext js,jsx,mjs,ts,tsx"
|
|
|
|
},
|
|
|
|
"test": {
|
|
|
|
"command": "TS_NODE_PROJECT=tsconfig.test.json mocha --recursive \"test/**/*.spec.ts\" --timeout 10000"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-05-01 21:03:10 +00:00
|
|
|
"camelize-ts": "^3.0.0",
|
2023-02-03 10:45:11 +00:00
|
|
|
"url-join": "^5.0.0",
|
2023-12-14 08:30:00 +00:00
|
|
|
"url-template": "^3.1.1"
|
2023-02-03 10:45:11 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-02-09 01:07:28 +00:00
|
|
|
"@faker-js/faker": "^8.4.1",
|
2024-03-21 10:07:51 +00:00
|
|
|
"@types/chai": "^4.3.14",
|
2023-11-22 08:49:24 +00:00
|
|
|
"@types/lodash-es": "^4.17.12",
|
2023-11-23 10:56:18 +00:00
|
|
|
"@types/mocha": "^10.0.6",
|
2024-03-20 00:43:48 +00:00
|
|
|
"@types/node": "^20.11.30",
|
2024-02-13 01:01:14 +00:00
|
|
|
"chai": "^5.1.0",
|
2024-01-12 09:41:38 +00:00
|
|
|
"lodash-es": "^4.17.21",
|
2024-02-08 15:50:20 +00:00
|
|
|
"mocha": "^10.3.0",
|
2023-12-11 09:05:12 +00:00
|
|
|
"ts-node": "^10.9.2"
|
2023-02-03 10:45:11 +00:00
|
|
|
},
|
|
|
|
"author": {
|
|
|
|
"name": "Red Hat, Inc.",
|
|
|
|
"url": "https://www.keycloak.org/"
|
|
|
|
},
|
|
|
|
"license": "Apache-2.0",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2024-03-07 11:38:23 +00:00
|
|
|
"url": "https://github.com/keycloak/keycloak.git",
|
|
|
|
"directory": "js/libs/keycloak-admin-client"
|
2023-02-03 10:45:11 +00:00
|
|
|
},
|
|
|
|
"homepage": "https://www.keycloak.org/"
|
|
|
|
}
|