tickplate 1.0.8 → 1.0.9

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 (3) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +1 -2
  3. package/package.json +9 -12
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2017-2023 Metarhia contributors
3
+ Copyright (c) 2017-2025 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
@@ -1,7 +1,6 @@
1
1
  ## Tickplate - Back-tick templates for JavaScript
2
2
 
3
3
  [![ci status](https://github.com/metarhia/tickplate/workflows/Testing%20CI/badge.svg)](https://github.com/metarhia/tickplate/actions?query=workflow%3A%22Testing+CI%22+branch%3Amaster)
4
- [![codacy](https://api.codacy.com/project/badge/Grade/69719502402b43598ffac0fd35f2192c)](https://www.codacy.com/app/metarhia/tickplate)
5
4
  [![snyk](https://snyk.io/test/github/metarhia/tickplate/badge.svg)](https://snyk.io/test/github/metarhia/tickplate)
6
5
  [![npm version](https://badge.fury.io/js/tickplate.svg)](https://badge.fury.io/js/tickplate)
7
6
  [![npm downloads/month](https://img.shields.io/npm/dm/tickplate.svg)](https://www.npmjs.com/package/tickplate)
@@ -60,6 +59,6 @@ console.log(templ(data));
60
59
 
61
60
  ## License & Contributors
62
61
 
63
- Copyright (c) 2017-2023 [Metarhia contributors](https://github.com/metarhia/tickplate/graphs/contributors).
62
+ Copyright (c) 2017-2025 [Metarhia contributors](https://github.com/metarhia/tickplate/graphs/contributors).
64
63
  Tickplate is [MIT licensed](./LICENSE).\
65
64
  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.8",
3
+ "version": "1.0.9",
4
4
  "author": "Timur Shemsedinov <timur.shemsedinov@gmail.com>",
5
5
  "description": "Back-tick templates for JavaScript",
6
6
  "license": "MIT",
@@ -31,25 +31,22 @@
31
31
  "tickplate.d.ts"
32
32
  ],
33
33
  "engines": {
34
- "node": "18 || 20 || 21"
34
+ "node": ">=18"
35
35
  },
36
36
  "readmeFilename": "README.md",
37
37
  "scripts": {
38
38
  "test": "npm run lint && npm run types && node ./test.js",
39
39
  "types": "tsc -p tsconfig.json",
40
- "lint": "eslint . && prettier -c \"**/*.js\" \"**/*.json\" \"**/*.md\" \".*rc\" \"**/*.yml\"",
41
- "fmt": "prettier --write \"**/*.js\" \"**/*.json\" \"**/*.md\" \".*rc\" \"**/*.yml\""
40
+ "lint": "eslint . && prettier -c \"**/*.js\" \"**/*.json\" \"**/*.md\"",
41
+ "fix": "prettier --write \"**/*.js\" \"**/*.json\" \"**/*.md\""
42
42
  },
43
43
  "devDependencies": {
44
- "eslint": "^8.54.0",
45
- "eslint-config-metarhia": "^8.1.0",
46
- "eslint-config-prettier": "^9.0.0",
47
- "eslint-plugin-import": "^2.29.0",
48
- "eslint-plugin-prettier": "^5.0.1",
49
- "prettier": "^3.1.0",
50
- "typescript": "^5.3.2"
44
+ "eslint": "^9.39.2",
45
+ "eslint-config-metarhia": "^9.1.5",
46
+ "prettier": "^3.7.4",
47
+ "typescript": "^5.9.3"
51
48
  },
52
49
  "dependencies": {
53
- "metautil": "^4.0.1"
50
+ "metautil": "^5.4.0"
54
51
  }
55
52
  }