voppe-jekyll-theme 0.1.1 → 0.1.2

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.
Files changed (51) hide show
  1. checksums.yaml +4 -4
  2. data/bower_components/font-awesome/.bower.json +37 -0
  3. data/bower_components/font-awesome/.gitignore +33 -0
  4. data/bower_components/font-awesome/.npmignore +42 -0
  5. data/bower_components/font-awesome/HELP-US-OUT.txt +7 -0
  6. data/bower_components/font-awesome/bower.json +22 -0
  7. data/bower_components/font-awesome/css/font-awesome.css +2337 -0
  8. data/bower_components/font-awesome/css/font-awesome.css.map +7 -0
  9. data/bower_components/font-awesome/css/font-awesome.min.css +4 -0
  10. data/bower_components/font-awesome/fonts/FontAwesome.otf +0 -0
  11. data/bower_components/font-awesome/fonts/fontawesome-webfont.eot +0 -0
  12. data/bower_components/font-awesome/fonts/fontawesome-webfont.svg +2671 -0
  13. data/bower_components/font-awesome/fonts/fontawesome-webfont.ttf +0 -0
  14. data/bower_components/font-awesome/fonts/fontawesome-webfont.woff +0 -0
  15. data/bower_components/font-awesome/fonts/fontawesome-webfont.woff2 +0 -0
  16. data/bower_components/font-awesome/less/animated.less +34 -0
  17. data/bower_components/font-awesome/less/bordered-pulled.less +25 -0
  18. data/bower_components/font-awesome/less/core.less +12 -0
  19. data/bower_components/font-awesome/less/fixed-width.less +6 -0
  20. data/bower_components/font-awesome/less/font-awesome.less +18 -0
  21. data/bower_components/font-awesome/less/icons.less +789 -0
  22. data/bower_components/font-awesome/less/larger.less +13 -0
  23. data/bower_components/font-awesome/less/list.less +19 -0
  24. data/bower_components/font-awesome/less/mixins.less +60 -0
  25. data/bower_components/font-awesome/less/path.less +15 -0
  26. data/bower_components/font-awesome/less/rotated-flipped.less +20 -0
  27. data/bower_components/font-awesome/less/screen-reader.less +5 -0
  28. data/bower_components/font-awesome/less/stacked.less +20 -0
  29. data/bower_components/font-awesome/less/variables.less +800 -0
  30. data/bower_components/font-awesome/scss/_animated.scss +34 -0
  31. data/bower_components/font-awesome/scss/_bordered-pulled.scss +25 -0
  32. data/bower_components/font-awesome/scss/_core.scss +12 -0
  33. data/bower_components/font-awesome/scss/_fixed-width.scss +6 -0
  34. data/bower_components/font-awesome/scss/_icons.scss +789 -0
  35. data/bower_components/font-awesome/scss/_larger.scss +13 -0
  36. data/bower_components/font-awesome/scss/_list.scss +19 -0
  37. data/bower_components/font-awesome/scss/_mixins.scss +60 -0
  38. data/bower_components/font-awesome/scss/_path.scss +15 -0
  39. data/bower_components/font-awesome/scss/_rotated-flipped.scss +20 -0
  40. data/bower_components/font-awesome/scss/_screen-reader.scss +5 -0
  41. data/bower_components/font-awesome/scss/_stacked.scss +20 -0
  42. data/bower_components/font-awesome/scss/_variables.scss +800 -0
  43. data/bower_components/font-awesome/scss/font-awesome.scss +18 -0
  44. data/bower_components/normalize-css/.bower.json +29 -0
  45. data/bower_components/normalize-css/.editorconfig +12 -0
  46. data/bower_components/normalize-css/.gitignore +2 -0
  47. data/bower_components/normalize-css/.travis.yml +3 -0
  48. data/bower_components/normalize-css/LICENSE.md +21 -0
  49. data/bower_components/normalize-css/bower.json +17 -0
  50. data/bower_components/normalize-css/normalize.css +461 -0
  51. metadata +50 -1
@@ -0,0 +1,18 @@
1
+ /*!
2
+ * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
3
+ * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
4
+ */
5
+
6
+ @import "variables";
7
+ @import "mixins";
8
+ @import "path";
9
+ @import "core";
10
+ @import "larger";
11
+ @import "fixed-width";
12
+ @import "list";
13
+ @import "bordered-pulled";
14
+ @import "animated";
15
+ @import "rotated-flipped";
16
+ @import "stacked";
17
+ @import "icons";
18
+ @import "screen-reader";
@@ -0,0 +1,29 @@
1
+ {
2
+ "name": "normalize-css",
3
+ "description": "A modern alternative to CSS resets",
4
+ "main": "normalize.css",
5
+ "authors": [
6
+ "Jonathan Neal <jonathantneal@hotmail.com> (http://jonathantneal.com/)",
7
+ "Nicolas Gallagher <nicolas@nicolasgallagher.com> (http://nicolasgallagher.com/)"
8
+ ],
9
+ "license": "MIT",
10
+ "ignore": [
11
+ "CHANGELOG.md",
12
+ "CONTRIBUTING.md",
13
+ "package.json",
14
+ "README.md",
15
+ "test.html"
16
+ ],
17
+ "homepage": "https://github.com/necolas/normalize.css",
18
+ "version": "5.0.0",
19
+ "_release": "5.0.0",
20
+ "_resolution": {
21
+ "type": "version",
22
+ "tag": "5.0.0",
23
+ "commit": "ef3b56780437e59feff7d065d3903059ed3d6a16"
24
+ },
25
+ "_source": "https://github.com/necolas/normalize.css.git",
26
+ "_target": "^5.0.0",
27
+ "_originalSource": "normalize.css",
28
+ "_direct": true
29
+ }
@@ -0,0 +1,12 @@
1
+ root = true
2
+
3
+ [*]
4
+ charset = utf-8
5
+ end_of_line = lf
6
+ indent_size = 2
7
+ indent_style = space
8
+ insert_final_newline = true
9
+ trim_trailing_whitespace = true
10
+
11
+ [*.md]
12
+ trim_trailing_whitespace = false
@@ -0,0 +1,2 @@
1
+ node_modules
2
+ npm-debug.log
@@ -0,0 +1,3 @@
1
+ language: node_js
2
+ node_js:
3
+ - stable
@@ -0,0 +1,21 @@
1
+ # The MIT License (MIT)
2
+
3
+ Copyright © Nicolas Gallagher and Jonathan Neal
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
6
+ this software and associated documentation files (the "Software"), to deal in
7
+ the Software without restriction, including without limitation the rights to
8
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
9
+ of the Software, and to permit persons to whom the Software is furnished to do
10
+ so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "normalize-css",
3
+ "description": "A modern alternative to CSS resets",
4
+ "main": "normalize.css",
5
+ "authors": [
6
+ "Jonathan Neal <jonathantneal@hotmail.com> (http://jonathantneal.com/)",
7
+ "Nicolas Gallagher <nicolas@nicolasgallagher.com> (http://nicolasgallagher.com/)"
8
+ ],
9
+ "license": "MIT",
10
+ "ignore": [
11
+ "CHANGELOG.md",
12
+ "CONTRIBUTING.md",
13
+ "package.json",
14
+ "README.md",
15
+ "test.html"
16
+ ]
17
+ }
@@ -0,0 +1,461 @@
1
+ /*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
2
+
3
+ /**
4
+ * 1. Change the default font family in all browsers (opinionated).
5
+ * 2. Correct the line height in all browsers.
6
+ * 3. Prevent adjustments of font size after orientation changes in
7
+ * IE on Windows Phone and in iOS.
8
+ */
9
+
10
+ /* Document
11
+ ========================================================================== */
12
+
13
+ html {
14
+ font-family: sans-serif; /* 1 */
15
+ line-height: 1.15; /* 2 */
16
+ -ms-text-size-adjust: 100%; /* 3 */
17
+ -webkit-text-size-adjust: 100%; /* 3 */
18
+ }
19
+
20
+ /* Sections
21
+ ========================================================================== */
22
+
23
+ /**
24
+ * Remove the margin in all browsers (opinionated).
25
+ */
26
+
27
+ body {
28
+ margin: 0;
29
+ }
30
+
31
+ /**
32
+ * Add the correct display in IE 9-.
33
+ */
34
+
35
+ article,
36
+ aside,
37
+ footer,
38
+ header,
39
+ nav,
40
+ section {
41
+ display: block;
42
+ }
43
+
44
+ /**
45
+ * Correct the font size and margin on `h1` elements within `section` and
46
+ * `article` contexts in Chrome, Firefox, and Safari.
47
+ */
48
+
49
+ h1 {
50
+ font-size: 2em;
51
+ margin: 0.67em 0;
52
+ }
53
+
54
+ /* Grouping content
55
+ ========================================================================== */
56
+
57
+ /**
58
+ * Add the correct display in IE 9-.
59
+ * 1. Add the correct display in IE.
60
+ */
61
+
62
+ figcaption,
63
+ figure,
64
+ main { /* 1 */
65
+ display: block;
66
+ }
67
+
68
+ /**
69
+ * Add the correct margin in IE 8.
70
+ */
71
+
72
+ figure {
73
+ margin: 1em 40px;
74
+ }
75
+
76
+ /**
77
+ * 1. Add the correct box sizing in Firefox.
78
+ * 2. Show the overflow in Edge and IE.
79
+ */
80
+
81
+ hr {
82
+ box-sizing: content-box; /* 1 */
83
+ height: 0; /* 1 */
84
+ overflow: visible; /* 2 */
85
+ }
86
+
87
+ /**
88
+ * 1. Correct the inheritance and scaling of font size in all browsers.
89
+ * 2. Correct the odd `em` font sizing in all browsers.
90
+ */
91
+
92
+ pre {
93
+ font-family: monospace, monospace; /* 1 */
94
+ font-size: 1em; /* 2 */
95
+ }
96
+
97
+ /* Text-level semantics
98
+ ========================================================================== */
99
+
100
+ /**
101
+ * 1. Remove the gray background on active links in IE 10.
102
+ * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
103
+ */
104
+
105
+ a {
106
+ background-color: transparent; /* 1 */
107
+ -webkit-text-decoration-skip: objects; /* 2 */
108
+ }
109
+
110
+ /**
111
+ * Remove the outline on focused links when they are also active or hovered
112
+ * in all browsers (opinionated).
113
+ */
114
+
115
+ a:active,
116
+ a:hover {
117
+ outline-width: 0;
118
+ }
119
+
120
+ /**
121
+ * 1. Remove the bottom border in Firefox 39-.
122
+ * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
123
+ */
124
+
125
+ abbr[title] {
126
+ border-bottom: none; /* 1 */
127
+ text-decoration: underline; /* 2 */
128
+ text-decoration: underline dotted; /* 2 */
129
+ }
130
+
131
+ /**
132
+ * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
133
+ */
134
+
135
+ b,
136
+ strong {
137
+ font-weight: inherit;
138
+ }
139
+
140
+ /**
141
+ * Add the correct font weight in Chrome, Edge, and Safari.
142
+ */
143
+
144
+ b,
145
+ strong {
146
+ font-weight: bolder;
147
+ }
148
+
149
+ /**
150
+ * 1. Correct the inheritance and scaling of font size in all browsers.
151
+ * 2. Correct the odd `em` font sizing in all browsers.
152
+ */
153
+
154
+ code,
155
+ kbd,
156
+ samp {
157
+ font-family: monospace, monospace; /* 1 */
158
+ font-size: 1em; /* 2 */
159
+ }
160
+
161
+ /**
162
+ * Add the correct font style in Android 4.3-.
163
+ */
164
+
165
+ dfn {
166
+ font-style: italic;
167
+ }
168
+
169
+ /**
170
+ * Add the correct background and color in IE 9-.
171
+ */
172
+
173
+ mark {
174
+ background-color: #ff0;
175
+ color: #000;
176
+ }
177
+
178
+ /**
179
+ * Add the correct font size in all browsers.
180
+ */
181
+
182
+ small {
183
+ font-size: 80%;
184
+ }
185
+
186
+ /**
187
+ * Prevent `sub` and `sup` elements from affecting the line height in
188
+ * all browsers.
189
+ */
190
+
191
+ sub,
192
+ sup {
193
+ font-size: 75%;
194
+ line-height: 0;
195
+ position: relative;
196
+ vertical-align: baseline;
197
+ }
198
+
199
+ sub {
200
+ bottom: -0.25em;
201
+ }
202
+
203
+ sup {
204
+ top: -0.5em;
205
+ }
206
+
207
+ /* Embedded content
208
+ ========================================================================== */
209
+
210
+ /**
211
+ * Add the correct display in IE 9-.
212
+ */
213
+
214
+ audio,
215
+ video {
216
+ display: inline-block;
217
+ }
218
+
219
+ /**
220
+ * Add the correct display in iOS 4-7.
221
+ */
222
+
223
+ audio:not([controls]) {
224
+ display: none;
225
+ height: 0;
226
+ }
227
+
228
+ /**
229
+ * Remove the border on images inside links in IE 10-.
230
+ */
231
+
232
+ img {
233
+ border-style: none;
234
+ }
235
+
236
+ /**
237
+ * Hide the overflow in IE.
238
+ */
239
+
240
+ svg:not(:root) {
241
+ overflow: hidden;
242
+ }
243
+
244
+ /* Forms
245
+ ========================================================================== */
246
+
247
+ /**
248
+ * 1. Change the font styles in all browsers (opinionated).
249
+ * 2. Remove the margin in Firefox and Safari.
250
+ */
251
+
252
+ button,
253
+ input,
254
+ optgroup,
255
+ select,
256
+ textarea {
257
+ font-family: sans-serif; /* 1 */
258
+ font-size: 100%; /* 1 */
259
+ line-height: 1.15; /* 1 */
260
+ margin: 0; /* 2 */
261
+ }
262
+
263
+ /**
264
+ * Show the overflow in IE.
265
+ * 1. Show the overflow in Edge.
266
+ */
267
+
268
+ button,
269
+ input { /* 1 */
270
+ overflow: visible;
271
+ }
272
+
273
+ /**
274
+ * Remove the inheritance of text transform in Edge, Firefox, and IE.
275
+ * 1. Remove the inheritance of text transform in Firefox.
276
+ */
277
+
278
+ button,
279
+ select { /* 1 */
280
+ text-transform: none;
281
+ }
282
+
283
+ /**
284
+ * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
285
+ * controls in Android 4.
286
+ * 2. Correct the inability to style clickable types in iOS and Safari.
287
+ */
288
+
289
+ button,
290
+ html [type="button"], /* 1 */
291
+ [type="reset"],
292
+ [type="submit"] {
293
+ -webkit-appearance: button; /* 2 */
294
+ }
295
+
296
+ /**
297
+ * Remove the inner border and padding in Firefox.
298
+ */
299
+
300
+ button::-moz-focus-inner,
301
+ [type="button"]::-moz-focus-inner,
302
+ [type="reset"]::-moz-focus-inner,
303
+ [type="submit"]::-moz-focus-inner {
304
+ border-style: none;
305
+ padding: 0;
306
+ }
307
+
308
+ /**
309
+ * Restore the focus styles unset by the previous rule.
310
+ */
311
+
312
+ button:-moz-focusring,
313
+ [type="button"]:-moz-focusring,
314
+ [type="reset"]:-moz-focusring,
315
+ [type="submit"]:-moz-focusring {
316
+ outline: 1px dotted ButtonText;
317
+ }
318
+
319
+ /**
320
+ * Change the border, margin, and padding in all browsers (opinionated).
321
+ */
322
+
323
+ fieldset {
324
+ border: 1px solid #c0c0c0;
325
+ margin: 0 2px;
326
+ padding: 0.35em 0.625em 0.75em;
327
+ }
328
+
329
+ /**
330
+ * 1. Correct the text wrapping in Edge and IE.
331
+ * 2. Correct the color inheritance from `fieldset` elements in IE.
332
+ * 3. Remove the padding so developers are not caught out when they zero out
333
+ * `fieldset` elements in all browsers.
334
+ */
335
+
336
+ legend {
337
+ box-sizing: border-box; /* 1 */
338
+ color: inherit; /* 2 */
339
+ display: table; /* 1 */
340
+ max-width: 100%; /* 1 */
341
+ padding: 0; /* 3 */
342
+ white-space: normal; /* 1 */
343
+ }
344
+
345
+ /**
346
+ * 1. Add the correct display in IE 9-.
347
+ * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
348
+ */
349
+
350
+ progress {
351
+ display: inline-block; /* 1 */
352
+ vertical-align: baseline; /* 2 */
353
+ }
354
+
355
+ /**
356
+ * Remove the default vertical scrollbar in IE.
357
+ */
358
+
359
+ textarea {
360
+ overflow: auto;
361
+ }
362
+
363
+ /**
364
+ * 1. Add the correct box sizing in IE 10-.
365
+ * 2. Remove the padding in IE 10-.
366
+ */
367
+
368
+ [type="checkbox"],
369
+ [type="radio"] {
370
+ box-sizing: border-box; /* 1 */
371
+ padding: 0; /* 2 */
372
+ }
373
+
374
+ /**
375
+ * Correct the cursor style of increment and decrement buttons in Chrome.
376
+ */
377
+
378
+ [type="number"]::-webkit-inner-spin-button,
379
+ [type="number"]::-webkit-outer-spin-button {
380
+ height: auto;
381
+ }
382
+
383
+ /**
384
+ * 1. Correct the odd appearance in Chrome and Safari.
385
+ * 2. Correct the outline style in Safari.
386
+ */
387
+
388
+ [type="search"] {
389
+ -webkit-appearance: textfield; /* 1 */
390
+ outline-offset: -2px; /* 2 */
391
+ }
392
+
393
+ /**
394
+ * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
395
+ */
396
+
397
+ [type="search"]::-webkit-search-cancel-button,
398
+ [type="search"]::-webkit-search-decoration {
399
+ -webkit-appearance: none;
400
+ }
401
+
402
+ /**
403
+ * 1. Correct the inability to style clickable types in iOS and Safari.
404
+ * 2. Change font properties to `inherit` in Safari.
405
+ */
406
+
407
+ ::-webkit-file-upload-button {
408
+ -webkit-appearance: button; /* 1 */
409
+ font: inherit; /* 2 */
410
+ }
411
+
412
+ /* Interactive
413
+ ========================================================================== */
414
+
415
+ /*
416
+ * Add the correct display in IE 9-.
417
+ * 1. Add the correct display in Edge, IE, and Firefox.
418
+ */
419
+
420
+ details, /* 1 */
421
+ menu {
422
+ display: block;
423
+ }
424
+
425
+ /*
426
+ * Add the correct display in all browsers.
427
+ */
428
+
429
+ summary {
430
+ display: list-item;
431
+ }
432
+
433
+ /* Scripting
434
+ ========================================================================== */
435
+
436
+ /**
437
+ * Add the correct display in IE 9-.
438
+ */
439
+
440
+ canvas {
441
+ display: inline-block;
442
+ }
443
+
444
+ /**
445
+ * Add the correct display in IE.
446
+ */
447
+
448
+ template {
449
+ display: none;
450
+ }
451
+
452
+ /* Hidden
453
+ ========================================================================== */
454
+
455
+ /**
456
+ * Add the correct display in IE 10-.
457
+ */
458
+
459
+ [hidden] {
460
+ display: none;
461
+ }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: voppe-jekyll-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - voppe
@@ -78,6 +78,55 @@ files:
78
78
  - _sass/utils/utils.scss
79
79
  - assets/scripts/index.js
80
80
  - assets/styles/index.scss
81
+ - bower_components/font-awesome/.bower.json
82
+ - bower_components/font-awesome/.gitignore
83
+ - bower_components/font-awesome/.npmignore
84
+ - bower_components/font-awesome/HELP-US-OUT.txt
85
+ - bower_components/font-awesome/bower.json
86
+ - bower_components/font-awesome/css/font-awesome.css
87
+ - bower_components/font-awesome/css/font-awesome.css.map
88
+ - bower_components/font-awesome/css/font-awesome.min.css
89
+ - bower_components/font-awesome/fonts/FontAwesome.otf
90
+ - bower_components/font-awesome/fonts/fontawesome-webfont.eot
91
+ - bower_components/font-awesome/fonts/fontawesome-webfont.svg
92
+ - bower_components/font-awesome/fonts/fontawesome-webfont.ttf
93
+ - bower_components/font-awesome/fonts/fontawesome-webfont.woff
94
+ - bower_components/font-awesome/fonts/fontawesome-webfont.woff2
95
+ - bower_components/font-awesome/less/animated.less
96
+ - bower_components/font-awesome/less/bordered-pulled.less
97
+ - bower_components/font-awesome/less/core.less
98
+ - bower_components/font-awesome/less/fixed-width.less
99
+ - bower_components/font-awesome/less/font-awesome.less
100
+ - bower_components/font-awesome/less/icons.less
101
+ - bower_components/font-awesome/less/larger.less
102
+ - bower_components/font-awesome/less/list.less
103
+ - bower_components/font-awesome/less/mixins.less
104
+ - bower_components/font-awesome/less/path.less
105
+ - bower_components/font-awesome/less/rotated-flipped.less
106
+ - bower_components/font-awesome/less/screen-reader.less
107
+ - bower_components/font-awesome/less/stacked.less
108
+ - bower_components/font-awesome/less/variables.less
109
+ - bower_components/font-awesome/scss/_animated.scss
110
+ - bower_components/font-awesome/scss/_bordered-pulled.scss
111
+ - bower_components/font-awesome/scss/_core.scss
112
+ - bower_components/font-awesome/scss/_fixed-width.scss
113
+ - bower_components/font-awesome/scss/_icons.scss
114
+ - bower_components/font-awesome/scss/_larger.scss
115
+ - bower_components/font-awesome/scss/_list.scss
116
+ - bower_components/font-awesome/scss/_mixins.scss
117
+ - bower_components/font-awesome/scss/_path.scss
118
+ - bower_components/font-awesome/scss/_rotated-flipped.scss
119
+ - bower_components/font-awesome/scss/_screen-reader.scss
120
+ - bower_components/font-awesome/scss/_stacked.scss
121
+ - bower_components/font-awesome/scss/_variables.scss
122
+ - bower_components/font-awesome/scss/font-awesome.scss
123
+ - bower_components/normalize-css/.bower.json
124
+ - bower_components/normalize-css/.editorconfig
125
+ - bower_components/normalize-css/.gitignore
126
+ - bower_components/normalize-css/.travis.yml
127
+ - bower_components/normalize-css/LICENSE.md
128
+ - bower_components/normalize-css/bower.json
129
+ - bower_components/normalize-css/normalize.css
81
130
  homepage: https://voppe.it
82
131
  licenses:
83
132
  - MIT