keycloak_theme/package.json

61 lines
1.9 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",
2021-02-28 18:40:57 +01:00
"version": "0.0.21",
2021-02-23 13:11:56 +01:00
"description": "Keycloak theme generator for Reacts app",
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-27 02:31:47 +01:00
"clean": "rimraf dist/",
"build": "yarn clean && tsc && yarn grant-exec-perms && yarn copy-files",
2021-02-28 18:40:57 +01:00
"grant-exec-perms": "node dist/bin/tools/grant-exec-perms.js",
2021-02-28 19:56:01 +01:00
"test": "node dist/test/build-keycloak-theme.js && node dist/test/download-sample-keycloak-themes.js",
2021-02-27 02:31:47 +01:00
"enable_short_import_path": "yarn build && denoify_enable_short_npm_import_path",
2021-02-28 18:40:57 +01:00
"copy-files": "copyfiles -u 1 src/**/*.ftl src/**/*.xml dist/",
"generate-messages": "node dist/bin/generate-i18n-messages.js",
"watch": "tsc -w"
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-27 02:22:45 +01:00
"!dist/tsconfig.tsbuildinfo"
2021-02-20 11:51:44 +01:00
],
2021-02-21 21:16:43 +01:00
"keywords": [
"keycloak",
"react",
2021-02-28 18:40:57 +01:00
"theme",
"FreeMarker",
"ftl",
"login",
"register"
2021-02-21 21:16:43 +01:00
],
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-22 00:20:10 +01:00
"copyfiles": "^2.4.1",
2021-02-27 02:15:17 +01:00
"denoify": "^0.6.5",
2021-02-28 18:40:57 +01:00
"properties-parser": "^0.3.1",
2021-02-27 02:31:47 +01:00
"rimraf": "^3.0.2",
2021-02-21 21:27:42 +01:00
"scripting-tools": "^0.19.13",
2021-02-28 18:45:55 +01:00
"typescript": "^4.1.5",
"@types/react": "^17.0.0",
"react": "^17.0.1"
2021-02-21 17:38:59 +01:00
},
"dependencies": {
2021-02-23 15:32:37 +01:00
"cheerio": "^1.0.0-rc.5",
2021-02-28 18:40:57 +01:00
"evt": "^1.9.12",
2021-02-28 19:34:08 +01:00
"powerhooks": "^0.0.14"
2021-02-20 11:51:44 +01:00
}
2021-02-21 23:12:55 +01:00
}