properties-file 2.1.14 → 2.1.15

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/lib/index.d.ts CHANGED
@@ -7,6 +7,6 @@ export { PropertyLine } from './property-line';
7
7
  /**
8
8
  * A simple "key/value" object.
9
9
  */
10
- export declare type KeyValueObject = {
10
+ export type KeyValueObject = {
11
11
  [key: string]: string;
12
12
  };
@@ -30,7 +30,7 @@ export declare class Properties {
30
30
  /**
31
31
  * Object associating keys with their line numbers.
32
32
  */
33
- export declare type KeyLineNumbers = {
33
+ export type KeyLineNumbers = {
34
34
  [key: string]: number[];
35
35
  };
36
36
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "properties-file",
3
- "version": "2.1.14",
3
+ "version": "2.1.15",
4
4
  "description": ".properties file parser, JSON converter and Webpack loader.",
5
5
  "author": "Avansai (https://avansai.com)",
6
6
  "repository": {
@@ -53,9 +53,9 @@
53
53
  },
54
54
  "devDependencies": {
55
55
  "@release-it/conventional-changelog": "^5.1.1",
56
- "@types/jest": "^29.2.2",
57
- "@typescript-eslint/eslint-plugin": "^5.42.1",
58
- "@typescript-eslint/parser": "^5.42.1",
56
+ "@types/jest": "^29.2.3",
57
+ "@typescript-eslint/eslint-plugin": "^5.43.0",
58
+ "@typescript-eslint/parser": "^5.43.0",
59
59
  "dotenv-cli": "^6.0.0",
60
60
  "eslint": "^8.27.0",
61
61
  "eslint-config-prettier": "^8.5.0",
@@ -73,7 +73,7 @@
73
73
  "release-it": "^15.5.0",
74
74
  "ts-jest": "^29.0.3",
75
75
  "ts-node": "^10.9.1",
76
- "typescript": "^4.8.4"
76
+ "typescript": "^4.9.3"
77
77
  },
78
78
  "engines": {
79
79
  "node": "^14.18.1 || >=16.0.0"