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.
- package/LICENSE +1 -1
- package/README.md +1 -2
- package/package.json +9 -12
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2017-
|
|
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
|
[](https://github.com/metarhia/tickplate/actions?query=workflow%3A%22Testing+CI%22+branch%3Amaster)
|
|
4
|
-
[](https://www.codacy.com/app/metarhia/tickplate)
|
|
5
4
|
[](https://snyk.io/test/github/metarhia/tickplate)
|
|
6
5
|
[](https://badge.fury.io/js/tickplate)
|
|
7
6
|
[](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-
|
|
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.
|
|
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
|
|
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\"
|
|
41
|
-
"
|
|
40
|
+
"lint": "eslint . && prettier -c \"**/*.js\" \"**/*.json\" \"**/*.md\"",
|
|
41
|
+
"fix": "prettier --write \"**/*.js\" \"**/*.json\" \"**/*.md\""
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"eslint": "^
|
|
45
|
-
"eslint-config-metarhia": "^
|
|
46
|
-
"
|
|
47
|
-
"
|
|
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
|
|
50
|
+
"metautil": "^5.4.0"
|
|
54
51
|
}
|
|
55
52
|
}
|