This repository was archived by the owner on Jan 16, 2024. It is now read-only.
forked from ferrerojosh/nest-keycloak-connect
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.2 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.2 KB
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
{
"name": "@cenkce/nest-keycloak-connect",
"version": "1.2.0",
"description": "keycloak-nodejs-connect module for Nest",
"author": "John Joshua Ferrer <johnjoshuaferrer@disroot.org>",
"contributors": [
"Cenk Cetinkaya <mail@cenkcetinkaya.com>"
],
"license": "MIT",
"scripts": {
"start:dev": "tsc -w",
"prebuild": "rimraf dist",
"build": "tsc || true",
"postbuild": "cpr README.md dist/ && cpr LICENSE dist/ && cpr package.json dist/",
"npm:publish": "npm run build && cd dist && npm publish",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json -c tslint.json"
},
"keywords": [
"nestjs",
"keycloak",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/cenkce/nest-keycloak-connect"
},
"bugs": "https://github.com/cenkce/nest-keycloak-connect/issues",
"dependencies": {
"reflect-metadata": "^0.1.12",
"@nestjs/common": "^7.0.3",
"@nestjs/core": "^7.0.3",
"keycloak-connect": "^9.0.2",
"request-promise": "^4.2.5"
},
"devDependencies": {
"cpr": "^3.0.1",
"prettier": "^1.19.1",
"reflect-metadata": "^0.1.12",
"rimraf": "^3.0.2",
"typescript": "^3.8.3"
}
}