This commit is contained in:
Joseph Garrone
2021-02-21 21:16:43 +01:00
parent ee3fd977c1
commit 98ff75daff
12 changed files with 27 additions and 1182 deletions

View File

@ -6,18 +6,17 @@
"type": "git",
"url": "git://github.com/garronej/keycloak-react-theming.git"
},
"main": "src/index.js",
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"scripts": {
"start": "webpack-dev-server --open",
"create": "webpack",
"build": "npm run tsc && npm run grant-exec-perms",
"grant-exec-perms": "chmod +x dist/bin/build-keycloak-theme/index.js",
"test": "node dist/test/build-keycloak-theme.js",
"enable_short_import_path": "npm run build && denoify_enable_short_npm_import_path"
},
"bin": {
"build-keycloak-theme": "dist/bin/build-keycloak-theme"
},
"author": "u/garronej",
"license": "MIT",
"files": [
@ -27,17 +26,20 @@
"!dist/test/",
"!dist/tsconfig.tsbuildinfo"
],
"keywords": [],
"keywords": [
"keycloak",
"react",
"theme"
],
"homepage": "https://github.com/garronej/keycloak-react-theming",
"devDependencies": {
"@types/node": "^10.0.0",
"denoify": "^0.6.4",
"evt": "beta",
"typescript": "^4.1.5"
"typescript": "^4.1.5",
"scripting-tools": "^0.19.13"
},
"dependencies": {
"scripting-tools": "^0.19.13",
"cheerio": "^1.0.0-rc.5",
"node-html-parser": "^2.1.0"
"cheerio": "^1.0.0-rc.5"
}
}
}