keycloak-typescript
Version:
A user friendly library to use keycloak in nodejs projects
63 lines (62 loc) • 1.66 kB
JSON
{
"name": "keycloak-typescript",
"version": "1.2.1",
"description": "A user friendly library to use keycloak in nodejs projects",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"lint": "eslint . --ext .ts --ext .js",
"build": "tsc --build",
"prettier:format": "prettier --config .prettierrc 'src/**/*.(ts|js)' --write",
"prettier:watch": "onchange 'src/**/*.(ts|js)' -- prettier --write {{changed}}",
"pack": "npm pack --pack-destination ~",
"publish": "npm publish",
"test": "jest",
"test:watch": "jest --watch --verbose --no-cache"
},
"repository": {
"type": "git",
"url": "git+https://github.com/krasamo/keycloak-typescript"
},
"homepage": "https://www.krasamo.com/",
"bugs": {
"url": "https://github.com/krasamo/keycloak-typescript/issues",
"email": "npm_admin@krasamo.com"
},
"keywords": [
"keycloak",
"rest",
"typescript",
"ts",
"auth",
"oauth",
"quarkus",
"wildfly"
],
"files": [
"LICENSE",
"lib/"
],
"author": "Nestor Sandoval",
"license": "MIT",
"devDependencies": {
"@jest/globals": "^29.6.1",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.2",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.5.0",
"jest-mock-extended": "^3.0.4",
"prettier": "^3.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"axios": "^1.4.0",
"query-string": "^8.1.0"
}
}