properties-file 2.1.9 → 2.1.10
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 +1 -1
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -23,7 +23,7 @@ npm install properties-file
|
|
|
23
23
|
- A modern TypeScript library that reproduces exactly the [Properties Java implementation](/assets/java-implementation.md).
|
|
24
24
|
- Flexible APIs:
|
|
25
25
|
- `propertiesToJson` allows quick conversion from `.properties` files to JSON.
|
|
26
|
-
- `getProperties` returns a `Properties` object that
|
|
26
|
+
- `getProperties` returns a `Properties` object that provides insights into parsing issues such as key collisions.
|
|
27
27
|
- `propertiesToJson` & `getProperties` also have a browser-compatible version when passing directly the content of a file using the APIs under `properties-file/content`.
|
|
28
28
|
- Out of the box Webpack loader to `import` `.properties` files directly in your application.
|
|
29
29
|
- 100% test coverage based on the output from a Java implementation.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "properties-file",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.10",
|
|
4
4
|
"description": ".properties file parser, JSON converter and Webpack loader.",
|
|
5
5
|
"author": "Avansai (https://avansai.com)",
|
|
6
6
|
"repository": {
|
|
@@ -54,18 +54,18 @@
|
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"@release-it/conventional-changelog": "^5.1.1",
|
|
56
56
|
"@types/jest": "^29.1.2",
|
|
57
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
58
|
-
"@typescript-eslint/parser": "^5.
|
|
57
|
+
"@typescript-eslint/eslint-plugin": "^5.40.0",
|
|
58
|
+
"@typescript-eslint/parser": "^5.40.0",
|
|
59
59
|
"dotenv-cli": "^6.0.0",
|
|
60
60
|
"eslint": "^8.25.0",
|
|
61
61
|
"eslint-config-prettier": "^8.5.0",
|
|
62
62
|
"eslint-import-resolver-node": "^0.3.6",
|
|
63
63
|
"eslint-import-resolver-typescript": "^3.5.1",
|
|
64
64
|
"eslint-plugin-import": "^2.26.0",
|
|
65
|
-
"eslint-plugin-jest": "^27.1.
|
|
65
|
+
"eslint-plugin-jest": "^27.1.2",
|
|
66
66
|
"eslint-plugin-prettier": "^4.2.1",
|
|
67
67
|
"eslint-plugin-unicorn": "^44.0.2",
|
|
68
|
-
"jest": "^29.
|
|
68
|
+
"jest": "^29.2.0",
|
|
69
69
|
"prettier": "^2.7.1",
|
|
70
70
|
"prettier-plugin-organize-imports": "^3.1.1",
|
|
71
71
|
"prettier-plugin-sh": "^0.12.8",
|