keycloak_theme/package.json

46 lines
1.5 KiB
JSON
Raw Normal View History

2021-02-20 11:51:44 +01:00
{
2021-02-20 10:53:26 +00:00
"name": "keycloak-react-theming",
"version": "0.0.6",
2021-02-21 17:38:59 +01:00
"description": "Provides a way to customize Keycloak login and register pages with React",
2021-02-20 11:51:44 +01:00
"repository": {
"type": "git",
2021-02-20 10:53:26 +00:00
"url": "git://github.com/garronej/keycloak-react-theming.git"
2021-02-20 11:51:44 +01:00
},
2021-02-21 21:16:43 +01:00
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
2021-02-20 11:51:44 +01:00
"scripts": {
2021-02-21 21:27:42 +01:00
"build": "tsc && npm run grant-exec-perms",
2021-02-21 23:12:55 +01:00
"grant-exec-perms": "cd dist/bin && chmod +x build-keycloak-theme/index.js download-sample-keycloak-themes.js",
2021-02-21 23:06:42 +01:00
"test": "node dist/test/build-keycloak-theme && node dist/test/download-sample-keycloak-themes",
2021-02-20 12:50:32 +01:00
"enable_short_import_path": "npm run build && denoify_enable_short_npm_import_path"
2021-02-20 11:51:44 +01:00
},
2021-02-21 21:16:43 +01:00
"bin": {
2021-02-21 23:25:21 +01:00
"build-keycloak-theme": "dist/bin/build-keycloak-theme/index.js",
"download-sample-keycloak-themes": "dist/bin/download-sample-keycloak-themes.js"
2021-02-21 21:16:43 +01:00
},
2021-02-20 10:53:26 +00:00
"author": "u/garronej",
2021-02-20 11:51:44 +01:00
"license": "MIT",
"files": [
"src/",
"!src/test/",
"dist/",
"!dist/test/",
2021-02-21 23:57:35 +01:00
"!dist/tsconfig.tsbuildinfo"
2021-02-20 11:51:44 +01:00
],
2021-02-21 21:16:43 +01:00
"keywords": [
"keycloak",
"react",
"theme"
],
2021-02-20 10:53:26 +00:00
"homepage": "https://github.com/garronej/keycloak-react-theming",
2021-02-20 11:51:44 +01:00
"devDependencies": {
"@types/node": "^10.0.0",
2021-02-21 23:40:10 +01:00
"denoify": "^0.6.4",
2021-02-21 21:27:42 +01:00
"scripting-tools": "^0.19.13",
"typescript": "^4.1.5"
2021-02-21 17:38:59 +01:00
},
"dependencies": {
2021-02-21 23:40:10 +01:00
"cheerio": "^1.0.0-rc.5"
2021-02-20 11:51:44 +01:00
}
2021-02-21 23:12:55 +01:00
}