2022-11-08 14:01:11 +00:00
|
|
|
{
|
|
|
|
"name": "@keycloak/keycloak-admin-client",
|
|
|
|
"version": "999.0.0-dev",
|
|
|
|
"description": "keycloak admin client",
|
|
|
|
"type": "module",
|
|
|
|
"main": "lib/index.js",
|
|
|
|
"files": [
|
|
|
|
"lib"
|
|
|
|
],
|
|
|
|
"types": "lib/index.d.ts",
|
|
|
|
"engines": {
|
|
|
|
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"build": "wireit",
|
|
|
|
"lint": "wireit",
|
|
|
|
"test": "wireit",
|
|
|
|
"prepublishOnly": "npm run build"
|
|
|
|
},
|
|
|
|
"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": {
|
2022-12-14 10:25:01 +00:00
|
|
|
"camelize-ts": "^2.2.0",
|
2022-11-08 14:01:11 +00:00
|
|
|
"lodash-es": "^4.17.21",
|
|
|
|
"url-join": "^5.0.0",
|
|
|
|
"url-template": "^3.0.0"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@faker-js/faker": "^7.1.0",
|
2022-11-14 13:50:45 +00:00
|
|
|
"@types/chai": "^4.3.4",
|
2022-11-08 14:01:11 +00:00
|
|
|
"@types/lodash-es": "^4.17.5",
|
2022-11-29 10:57:29 +00:00
|
|
|
"@types/mocha": "^10.0.1",
|
2023-02-06 10:47:53 +00:00
|
|
|
"@types/node": "^18.11.19",
|
2022-11-14 13:50:45 +00:00
|
|
|
"chai": "^4.3.7",
|
2022-12-12 09:35:08 +00:00
|
|
|
"mocha": "^10.2.0",
|
2022-11-08 14:01:11 +00:00
|
|
|
"ts-node": "^10.2.1"
|
|
|
|
},
|
|
|
|
"author": "wwwy3y3",
|
|
|
|
"license": "Apache-2.0",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/keycloak/keycloak-ui.git"
|
|
|
|
},
|
|
|
|
"homepage": "https://www.keycloak.org/"
|
|
|
|
}
|