Keycloak
65 строк · 1.5 Кб
1{
2"name": "@keycloak/keycloak-admin-client",
3"version": "999.0.0-SNAPSHOT",
4"description": "A client to interact with Keycloak's Administration API",
5"type": "module",
6"main": "lib/index.js",
7"files": [
8"lib"
9],
10"types": "lib/index.d.ts",
11"engines": {
12"node": ">=18"
13},
14"scripts": {
15"build": "wireit",
16"lint": "wireit",
17"test": "wireit",
18"prepublishOnly": "pnpm run build"
19},
20"wireit": {
21"build": {
22"command": "tsc --pretty",
23"files": [
24"src/**",
25"package.json",
26"tsconfig.json"
27],
28"output": [
29"lib/**"
30]
31},
32"lint": {
33"command": "eslint . --ext js,jsx,mjs,ts,tsx"
34},
35"test": {
36"command": "TS_NODE_PROJECT=tsconfig.test.json mocha --recursive \"test/**/*.spec.ts\" --timeout 10000"
37}
38},
39"dependencies": {
40"camelize-ts": "^3.0.0",
41"url-join": "^5.0.0",
42"url-template": "^3.1.1"
43},
44"devDependencies": {
45"@faker-js/faker": "^8.4.1",
46"@types/chai": "^4.3.12",
47"@types/lodash-es": "^4.17.12",
48"@types/mocha": "^10.0.6",
49"@types/node": "^20.11.24",
50"chai": "^5.1.0",
51"lodash-es": "^4.17.21",
52"mocha": "^10.3.0",
53"ts-node": "^10.9.2"
54},
55"author": {
56"name": "Red Hat, Inc.",
57"url": "https://www.keycloak.org/"
58},
59"license": "Apache-2.0",
60"repository": {
61"type": "git",
62"url": "https://github.com/keycloak/keycloak.git"
63},
64"homepage": "https://www.keycloak.org/"
65}
66