-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.92 KB
/
package.json
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
{
"name": "keycloak-api-ts",
"version": "1.0.0",
"description": "A Keycloak admin API client.",
"author": "Edmilson Santana <42233304+edmilsonss@users.noreply.github.com>",
"repository": {
"type": "git",
"url": "https://github.com/Master-Mils/keycloak-api-ts.git"
},
"bugs": {
"url": "https://github.com/Master-Mils/keycloak-api-ts/issues"
},
"homepage": "https://github.com/Master-Mils/keycloak-api-ts#readme",
"license": "MIT",
"private": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"format": "prettier --write \"lib/**/*.ts\"",
"lint": "tslint -p ./tsconfig.json",
"test": "mocha --timeout 10000 --require ts-node/register 'test/**/*.ts'",
"publish:patch": "npm run build && npm version patch --force && npm publish && git push",
"publish:minor": "npm run build && npm version minor --force && npm publish && git push",
"publish:major": "npm run build && npm version major --force && npm publish && git push",
"prepare": "yarn build",
"prepublishOnly": "yarn lint",
"preversion": "yarn lint",
"version": "yarn format && git add -A lib"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"axios": "^1.6.2",
"axios-request-throttle": "^1.0.0",
"axios-retry": "^3.3.1",
"camelize": "^1.0.0",
"openid-client": "^5.6.1",
"query-string": "^7.1.1"
},
"devDependencies": {
"@types/camelize": "^1.0.0",
"@types/chai": "^4.3.16",
"@types/mocha": "^10.0.7",
"@types/node": "^18.7.18",
"@types/qs": "^6.9.7",
"chai": "^4.4.1",
"dotenv": "^16.4.5",
"mocha": "^10.7.0",
"prettier": "^2.7.1",
"ts-node": "^10.9.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=20"
},
"keywords": [
"keycloak",
"api",
"oauth",
"oidc"
]
}