forked from BackendStack21/keycloak-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.02 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
{
"name": "keycloak-backend",
"version": "2.0.1",
"description": "Keycloak Node.js minimalist connector for backend services integration. ",
"main": "src/index.js",
"scripts": {
"transpile": "babel libs --out-dir src --ignore templates/* --copy-files",
"lint": "standard",
"format": "standard --fix",
"test": "echo 'TODO'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jkyberneees/keycloak-backend.git"
},
"keywords": [
"keycloak",
"auth",
"oauth",
"jwt",
"rest"
],
"files": [
"LICENSE",
"README.md",
"src/"
],
"author": "Rolando Santamaria Maso <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jkyberneees/keycloak-backend/issues"
},
"homepage": "https://github.com/jkyberneees/keycloak-backend#readme",
"dependencies": {
"axios": "^0.21.0",
"jsonwebtoken": "^8.5.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"standard": "^15.0.0"
}
}