properties-file 3.5.6 → 3.5.8

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 (1) hide show
  1. package/package.json +23 -20
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "properties-file",
3
- "version": "3.5.6",
3
+ "version": "3.5.8",
4
4
  "description": ".properties file parser, editor, formatter and Webpack loader.",
5
5
  "keywords": [
6
6
  ".properties",
@@ -19,10 +19,10 @@
19
19
  ],
20
20
  "repository": {
21
21
  "type": "git",
22
- "url": "git+https://github.com/Avansai/properties-file.git"
22
+ "url": "git+https://github.com/properties-file/properties-file.git"
23
23
  },
24
24
  "license": "MIT",
25
- "author": "Avansai (https://avansai.com)",
25
+ "author": "properties-file",
26
26
  "type": "module",
27
27
  "exports": {
28
28
  ".": {
@@ -84,46 +84,49 @@
84
84
  ],
85
85
  "scripts": {
86
86
  "add-file-type-declaration": "node ./lib/esm/add-import-type.js && find ./lib -name 'add-import-type.*' -type f -delete",
87
- "build": "check-node-version --node '>=16' && npm run prettier && npm run lint-fix && rm -Rf ./lib && tsc -p tsconfig.cjs.json && tsc -p tsconfig.esm.json && echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json && tsc -p tsconfig.build-scripts.json && node lib/build-scripts/build.js && npm run test",
87
+ "build": "npm run check-nvm-node-version && npm run prettier-write && npm run eslint-fix && rm -Rf ./lib && tsc -p tsconfig.cjs.json && tsc -p tsconfig.esm.json && echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json && tsc -p src/build-scripts/tsconfig.json && node lib/build-scripts/build.js && npm run test",
88
+ "check-nvm-node-version": "check-node-version --node $(node -p \"'>=' + require('fs').readFileSync('.nvmrc', 'utf-8').trim()\")",
88
89
  "ci": "npm run build --legacy-peer-deps",
89
90
  "depcheck": "depcheck",
90
- "lint-fix": "eslint --fix .",
91
- "prettier": "prettier --write .",
91
+ "eslint-fix": "eslint --fix",
92
+ "prepare": "husky",
93
+ "prettier-write": "prettier --write .",
92
94
  "release": "dotenv -- release-it --only-version",
93
95
  "test": "jest --coverage"
94
96
  },
95
97
  "devDependencies": {
96
- "@eslint/js": "9.9.1",
97
- "@release-it/conventional-changelog": "8.0.1",
98
- "@types/jest": "29.5.12",
99
- "@types/node": "22.5.0",
100
- "@typescript-eslint/eslint-plugin": "8.2.0",
101
- "@typescript-eslint/parser": "8.2.0",
98
+ "@eslint/js": "9.11.1",
99
+ "@release-it/conventional-changelog": "8.0.2",
100
+ "@types/jest": "29.5.13",
101
+ "@types/node": "22.7.3",
102
+ "@typescript-eslint/eslint-plugin": "8.7.0",
103
+ "@typescript-eslint/parser": "8.7.0",
102
104
  "check-node-version": "4.2.1",
103
105
  "depcheck": "1.4.7",
104
106
  "dotenv-cli": "7.4.2",
105
- "eslint": "9.9.1",
107
+ "eslint": "9.11.1",
106
108
  "eslint-config-prettier": "9.1.0",
107
109
  "eslint-import-resolver-node": "0.3.9",
108
- "eslint-import-resolver-typescript": "3.6.1",
109
- "eslint-plugin-import-x": "3.1.0",
110
- "eslint-plugin-jest": "28.8.0",
111
- "eslint-plugin-jsdoc": "50.2.2",
110
+ "eslint-import-resolver-typescript": "3.6.3",
111
+ "eslint-plugin-import-x": "4.3.0",
112
+ "eslint-plugin-jest": "28.8.3",
113
+ "eslint-plugin-jsdoc": "50.3.0",
112
114
  "eslint-plugin-json-files": "4.4.1",
113
115
  "eslint-plugin-prefer-arrow-functions": "3.4.1",
114
116
  "eslint-plugin-prettier": "5.2.1",
115
117
  "eslint-plugin-tsdoc": "0.3.0",
116
118
  "eslint-plugin-unicorn": "55.0.0",
117
119
  "globals": "15.9.0",
120
+ "husky": "^9.1.6",
118
121
  "jest": "29.7.0",
119
122
  "jsonc-eslint-parser": "2.4.0",
120
123
  "prettier": "3.3.3",
121
- "prettier-plugin-organize-imports": "4.0.0",
124
+ "prettier-plugin-organize-imports": "4.1.0",
122
125
  "prettier-plugin-sh": "0.14.0",
123
126
  "release-it": "17.6.0",
124
- "terser": "5.31.6",
127
+ "terser": "5.34.0",
125
128
  "ts-jest": "29.2.5",
126
- "typescript": "5.5.4"
129
+ "typescript": "5.6.2"
127
130
  },
128
131
  "engines": {
129
132
  "node": "*"