tickplate 1.0.5 → 1.0.6

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/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  ## [Unreleased][unreleased]
4
4
 
5
+ ## [1.0.6][] - 2023-02-20
6
+
7
+ - Package maintenance
8
+
5
9
  ## [1.0.5][] - 2022-07-07
6
10
 
7
11
  - Package maintenance
@@ -30,7 +34,8 @@
30
34
 
31
35
  ## [0.0.x][] Pre-release versions
32
36
 
33
- [unreleased]: https://github.com/metarhia/tickplate/compare/v1.0.5...HEAD
37
+ [unreleased]: https://github.com/metarhia/tickplate/compare/v1.0.6...HEAD
38
+ [1.0.6]: https://github.com/metarhia/tickplate/compare/v1.0.5...v1.0.6
34
39
  [1.0.5]: https://github.com/metarhia/tickplate/compare/v1.0.4...v1.0.5
35
40
  [1.0.4]: https://github.com/metarhia/tickplate/compare/v1.0.3...v1.0.4
36
41
  [1.0.3]: https://github.com/metarhia/tickplate/compare/v1.0.2...v1.0.3
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2017-2022 Metarhia contributors
3
+ Copyright (c) 2017-2023 Metarhia contributors
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -36,6 +36,6 @@ console.log(templ(data));
36
36
 
37
37
  ## License & Contributors
38
38
 
39
- Copyright (c) 2017-2022 [Metarhia contributors](https://github.com/metarhia/tickplate/graphs/contributors).
39
+ Copyright (c) 2017-2023 [Metarhia contributors](https://github.com/metarhia/tickplate/graphs/contributors).
40
40
  Tickplate is [MIT licensed](./LICENSE).\
41
41
  Tickplate is a part of [Metarhia](https://github.com/metarhia) technology stack.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tickplate",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "author": "Timur Shemsedinov <timur.shemsedinov@gmail.com>",
5
5
  "description": "Back-tick templates for JavaScript",
6
6
  "license": "MIT",
@@ -27,11 +27,9 @@
27
27
  },
28
28
  "main": "tickplate.js",
29
29
  "types": "tickplate.d.ts",
30
- "files": [
31
- "tickplate.d.ts"
32
- ],
30
+ "files": ["tickplate.d.ts"],
33
31
  "engines": {
34
- "node": "14 || 16 || 18"
32
+ "node": "^14.18 || 16 || 18 || 19"
35
33
  },
36
34
  "readmeFilename": "README.md",
37
35
  "scripts": {
@@ -41,12 +39,12 @@
41
39
  "fmt": "prettier --write \"**/*.js\" \"**/*.json\" \"**/*.md\" \".*rc\" \"**/*.yml\""
42
40
  },
43
41
  "devDependencies": {
44
- "eslint": "^8.19.0",
42
+ "eslint": "^8.34.0",
45
43
  "eslint-config-metarhia": "^8.1.0",
46
- "eslint-config-prettier": "^8.3.0",
47
- "eslint-plugin-import": "^2.23.4",
44
+ "eslint-config-prettier": "^8.6.0",
45
+ "eslint-plugin-import": "^2.27.5",
48
46
  "eslint-plugin-prettier": "^4.2.1",
49
- "prettier": "^2.7.1",
50
- "typescript": "^4.7.4"
47
+ "prettier": "^2.8.4",
48
+ "typescript": "^4.9.5"
51
49
  }
52
50
  }