properties-file 3.2.16 → 3.2.17
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/README.md +2 -2
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -27,7 +27,7 @@ npm install properties-file
|
|
|
27
27
|
- A `PropertiesEditor` class enables the addition, edition, and removal of entries.
|
|
28
28
|
- `escapeKey` and `escapeValue` allow the conversion of any content to a `.properties` compatible format.
|
|
29
29
|
- The library also includes a Webpack loader to import `.properties` files directly into your application.
|
|
30
|
-
- Tiny ([under
|
|
30
|
+
- Tiny ([under 4kB compressed](https://bundlephobia.com/package/properties-file)) with 0 dependencies.
|
|
31
31
|
- 100% test coverage based on the output from a Java implementation.
|
|
32
32
|
- Active maintenance (many popular `.properties` packages have been inactive for years).
|
|
33
33
|
|
|
@@ -254,7 +254,7 @@ While many options exist today to handle configurations, `.properties` files rem
|
|
|
254
254
|
| `JSON` | No (can do more) | No (requires JSON5) | No | Depends on the schema |
|
|
255
255
|
| `YAML` | No (can do more) | Yes | No | Depends on the schema |
|
|
256
256
|
|
|
257
|
-
Having good JavaScript/TypeScript support for
|
|
257
|
+
Having good JavaScript/TypeScript support for `.properties` files offers more internationalization (i18n) options.
|
|
258
258
|
|
|
259
259
|
### How does this package work?
|
|
260
260
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "properties-file",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.17",
|
|
4
4
|
"description": ".properties file parser, editor, formatter and Webpack loader.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
".properties",
|
|
@@ -69,16 +69,16 @@
|
|
|
69
69
|
"@babel/preset-typescript": "7.22.5",
|
|
70
70
|
"@release-it/conventional-changelog": "7.0.0",
|
|
71
71
|
"@types/jest": "29.5.3",
|
|
72
|
-
"@typescript-eslint/eslint-plugin": "6.
|
|
73
|
-
"@typescript-eslint/parser": "6.
|
|
72
|
+
"@typescript-eslint/eslint-plugin": "6.4.0",
|
|
73
|
+
"@typescript-eslint/parser": "6.4.0",
|
|
74
74
|
"babel-preset-minify": "^0.5.2",
|
|
75
75
|
"check-node-version": "^4.2.1",
|
|
76
|
-
"dotenv-cli": "7.
|
|
77
|
-
"eslint": "8.
|
|
76
|
+
"dotenv-cli": "7.3.0",
|
|
77
|
+
"eslint": "8.47.0",
|
|
78
78
|
"eslint-config-prettier": "9.0.0",
|
|
79
79
|
"eslint-import-resolver-node": "0.3.9",
|
|
80
80
|
"eslint-import-resolver-typescript": "3.6.0",
|
|
81
|
-
"eslint-plugin-import": "2.28.
|
|
81
|
+
"eslint-plugin-import": "2.28.1",
|
|
82
82
|
"eslint-plugin-jest": "27.2.3",
|
|
83
83
|
"eslint-plugin-json-files": "3.0.0",
|
|
84
84
|
"eslint-plugin-prefer-arrow-functions": "3.1.4",
|
|
@@ -86,10 +86,10 @@
|
|
|
86
86
|
"eslint-plugin-tsdoc": "0.2.17",
|
|
87
87
|
"eslint-plugin-unicorn": "48.0.1",
|
|
88
88
|
"jest": "29.6.2",
|
|
89
|
-
"prettier": "3.0.
|
|
89
|
+
"prettier": "3.0.2",
|
|
90
90
|
"prettier-plugin-organize-imports": "3.2.3",
|
|
91
91
|
"prettier-plugin-sh": "0.13.1",
|
|
92
|
-
"release-it": "16.1.
|
|
92
|
+
"release-it": "16.1.5",
|
|
93
93
|
"ts-jest": "29.1.1",
|
|
94
94
|
"ts-node": "10.9.1",
|
|
95
95
|
"typescript": "5.1.6"
|