uti 6.3.10 → 6.5.0

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/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2015-2021 by Markus Felten
1
+ Copyright (c) 2015-2022 by Markus Felten
2
2
  All rights reserved.
3
3
 
4
4
  Redistribution and use in source and binary forms, with or without
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "uti",
3
- "version": "6.3.10",
3
+ "version": "6.5.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -31,12 +31,12 @@
31
31
  },
32
32
  "devDependencies": {
33
33
  "ava": "^3.15.0",
34
- "c8": "^7.7.1",
35
- "documentation": "^13.2.4",
36
- "semantic-release": "^17.4.2"
34
+ "c8": "^7.11.0",
35
+ "documentation": "^13.2.5",
36
+ "semantic-release": "^18.0.1"
37
37
  },
38
38
  "engines": {
39
- "node": ">=14.16.1"
39
+ "node": ">=14.18.1"
40
40
  },
41
41
  "repository": {
42
42
  "type": "git",
@@ -259,6 +259,12 @@ const types = [
259
259
  fileNameExtension: ".xz",
260
260
  mimeType: "application/x-xz"
261
261
  },
262
+ {
263
+ name: "public.zst-archive",
264
+ conformsTo: "public.archive",
265
+ fileNameExtension: ".zst",
266
+ mimeType: "application/zst"
267
+ },
262
268
  {
263
269
  name: "public.7z-archive",
264
270
  conformsTo: "public.archive",
@@ -286,7 +292,7 @@ const types = [
286
292
  {
287
293
  name: "public.ar-archive",
288
294
  conformsTo: "public.archive",
289
- fileNameExtension: [".a",".lib"]
295
+ fileNameExtension: [".a", ".lib"]
290
296
  },
291
297
  {
292
298
  name: "public.deb-archive",
@@ -296,9 +302,18 @@ const types = [
296
302
  },
297
303
  {
298
304
  name: "public.arch-linux-archive",
299
- conformsTo: "public.archive",
305
+ conformsTo: "public.archive"
306
+ },
307
+ {
308
+ name: "public.arch-linux-archive.xz",
309
+ conformsTo: ["public.arch-linux-archive", "public.xz-archive"],
300
310
  fileNameExtension: ".pkg.tar.xz"
301
311
  },
312
+ {
313
+ name: "public.arch-linux-archive.zst",
314
+ conformsTo: ["public.arch-linux-archive", "public.zst-archive"],
315
+ fileNameExtension: ".pkg.tar.zst"
316
+ },
302
317
  {
303
318
  name: "com.apple.package",
304
319
  conformsTo: "public.directory"
@@ -479,6 +494,26 @@ const types = [
479
494
  conformsTo: "public.data",
480
495
  fileNameExtension: ".p7r",
481
496
  mimeType: "application/x-pkcs7-certreqresp"
497
+ },
498
+ {
499
+ name: "public.systemd-service-unit",
500
+ conformsTo: "public.text",
501
+ fileNameExtension: ".service"
502
+ },
503
+ {
504
+ name: "public.systemd-socket-unit",
505
+ conformsTo: "public.text",
506
+ fileNameExtension: ".socket"
507
+ },
508
+ {
509
+ name: "public.systemd-timer-unit",
510
+ conformsTo: "public.text",
511
+ fileNameExtension: ".timer"
512
+ },
513
+ {
514
+ name: "public.systemd-path-unit",
515
+ conformsTo: "public.text",
516
+ fileNameExtension: ".socket"
482
517
  }
483
518
  ];
484
519