jwtbutler 1.7.1 → 1.7.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/package.json +1 -29
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@ jwtbutler is a helper library for setting up a single sign on with jwt in a mult
|
|
|
4
4
|
|
|
5
5
|
## features
|
|
6
6
|
|
|
7
|
-
- works in all js
|
|
7
|
+
- works in all js-applications
|
|
8
8
|
- renders a simple loginform if needed
|
|
9
9
|
- requires no code changes on the auth server
|
|
10
10
|
- has a fetch helper function for api calls that do all the heavy lifting (e.g. refreshing token, repeating calls) under the hood
|
|
@@ -256,7 +256,7 @@ setup the following vhosts:
|
|
|
256
256
|
and then run the test:
|
|
257
257
|
|
|
258
258
|
```bash
|
|
259
|
-
|
|
259
|
+
npm run js:tests
|
|
260
260
|
```
|
|
261
261
|
|
|
262
262
|
## pseudo code
|
package/package.json
CHANGED
|
@@ -46,11 +46,8 @@
|
|
|
46
46
|
"cli-error-notifier": "^3.0.2",
|
|
47
47
|
"concat": "^1.0.3",
|
|
48
48
|
"core-js": "^3.46.0",
|
|
49
|
-
"cpx": "^1.5.0",
|
|
50
49
|
"critical": "^7.2.1",
|
|
51
50
|
"cross-env": "^10.1.0",
|
|
52
|
-
"cross-spawn": "^7.0.6",
|
|
53
|
-
"cross-var": "^1.1.0",
|
|
54
51
|
"cssnano": "^7.1.2",
|
|
55
52
|
"del-cli": "^7.0.0",
|
|
56
53
|
"dotenv": "^17.2.3",
|
|
@@ -59,24 +56,8 @@
|
|
|
59
56
|
"eslint": "^9.39.1",
|
|
60
57
|
"exit": "^0.1.2",
|
|
61
58
|
"from-env": "^1.1.4",
|
|
62
|
-
"gulp": "^5.0.1",
|
|
63
|
-
"gulp-autoprefixer": "^10.0.0",
|
|
64
|
-
"gulp-babel": "^8.0.0",
|
|
65
|
-
"gulp-clean-css": "^4.3.0",
|
|
66
|
-
"gulp-concat": "^2.6.1",
|
|
67
|
-
"gulp-connect": "^5.7.0",
|
|
68
|
-
"gulp-htmlmin": "^5.0.1",
|
|
69
|
-
"gulp-jest": "^4.0.4",
|
|
70
|
-
"gulp-penthouse": "^0.2.0",
|
|
71
|
-
"gulp-rename": "^2.1.0",
|
|
72
|
-
"gulp-sass": "^6.0.1",
|
|
73
|
-
"gulp-sourcemaps": "^3.0.0",
|
|
74
|
-
"gulp-uglify": "^3.0.2",
|
|
75
|
-
"gulp-vueify": "0.0.3",
|
|
76
59
|
"highlight.js": "^11.11.1",
|
|
77
60
|
"hlp": "^3.5.7",
|
|
78
|
-
"html-minifier": "^4.0.0",
|
|
79
|
-
"inline-source-cli": "^2.0.0",
|
|
80
61
|
"ismobilejs": "^1.1.1",
|
|
81
62
|
"jest": "^29",
|
|
82
63
|
"jest-cli": "^29",
|
|
@@ -90,29 +71,20 @@
|
|
|
90
71
|
"onchange": "^7.1.0",
|
|
91
72
|
"postcss": "^8.5.6",
|
|
92
73
|
"postcss-cli": "^11.0.1",
|
|
93
|
-
"postcss-tailwind-data-attr": "^1.0.7",
|
|
94
74
|
"postcss-url": "^10.1.3",
|
|
95
75
|
"prettier": "^3.6.2",
|
|
96
76
|
"puppeteer": "^24.30.0",
|
|
97
77
|
"regenerator-runtime": "^0.14.1",
|
|
98
78
|
"replace-in-file": "^8.3.0",
|
|
99
79
|
"run-sequence": "^2.2.1",
|
|
100
|
-
"tailwindcss": "^4.1.17",
|
|
101
80
|
"terser": "^5.44.1",
|
|
102
|
-
"through-gulp": "^0.5.0",
|
|
103
|
-
"uglify": "^0.1.5",
|
|
104
|
-
"uglify-js": "^3.19.3",
|
|
105
81
|
"vinyl-buffer": "^1.0.1",
|
|
106
82
|
"vinyl-source-stream": "^2.0.0",
|
|
107
|
-
"vue": "^3.5.24",
|
|
108
|
-
"vue-template-compiler": "^2.7.16",
|
|
109
|
-
"vueify": "^9.4.1",
|
|
110
|
-
"vueify-insert-css": "^1.0.0",
|
|
111
83
|
"whatwg-fetch": "^3.6.20"
|
|
112
84
|
},
|
|
113
85
|
"devDependencies": {},
|
|
114
86
|
"name": "jwtbutler",
|
|
115
|
-
"version": "1.7.
|
|
87
|
+
"version": "1.7.3",
|
|
116
88
|
"description": "",
|
|
117
89
|
"main": "_js/_build/script.js",
|
|
118
90
|
"files": [
|