properties-file
Advanced tools
Comparing version 3.3.19 to 3.4.0
106
package.json
{ | ||
"name": "properties-file", | ||
"version": "3.3.19", | ||
"version": "3.4.0", | ||
"description": ".properties file parser, editor, formatter and Webpack loader.", | ||
@@ -26,27 +26,58 @@ "keywords": [ | ||
"author": "Avansai (https://avansai.com)", | ||
"type": "module", | ||
"exports": { | ||
".": "./lib/index.js", | ||
"./editor": "./lib/editor/index.js", | ||
"./escape": "./lib/escape/index.js", | ||
"./unescape": "./lib/unescape/index.js", | ||
"./webpack-loader": "./lib/loader/webpack.js" | ||
}, | ||
"main": "lib/index.js", | ||
"types": "lib/index.d.ts", | ||
"typesVersions": { | ||
"*": { | ||
"editor": [ | ||
"lib/editor/index.d.ts" | ||
], | ||
"escape": [ | ||
"lib/escape/index.d.ts" | ||
], | ||
"unescape": [ | ||
"lib/unescape/index.d.ts" | ||
], | ||
"webpack-loader": [ | ||
"lib/loader/webpack.d.ts" | ||
] | ||
".": { | ||
"import": { | ||
"types": "./lib/esm/index.d.ts", | ||
"default": "./lib/esm/index.js" | ||
}, | ||
"require": { | ||
"types": "./lib/cjs/index.d.ts", | ||
"default": "./lib/cjs/index.js" | ||
} | ||
}, | ||
"./editor": { | ||
"import": { | ||
"types": "./lib/esm/editor/index.d.ts", | ||
"default": "./lib/esm/editor/index.js" | ||
}, | ||
"require": { | ||
"types": "./lib/cjs/editor/index.d.ts", | ||
"default": "./lib/cjs/editor/index.js" | ||
} | ||
}, | ||
"./escape": { | ||
"import": { | ||
"types": "./lib/esm/escape/index.d.ts", | ||
"default": "./lib/esm/escape/index.js" | ||
}, | ||
"require": { | ||
"types": "./lib/cjs/escape/index.d.ts", | ||
"default": "./lib/cjs/escape/index.js" | ||
} | ||
}, | ||
"./unescape": { | ||
"import": { | ||
"types": "./lib/esm/unescape/index.d.ts", | ||
"default": "./lib/esm/unescape/index.js" | ||
}, | ||
"require": { | ||
"types": "./lib/cjs/unescape/index.d.ts", | ||
"default": "./lib/cjs/unescape/index.js" | ||
} | ||
}, | ||
"./webpack-loader": { | ||
"import": { | ||
"types": "./lib/esm/loader/webpack.d.ts", | ||
"default": "./lib/esm/loader/webpack.js" | ||
}, | ||
"require": { | ||
"types": "./lib/cjs/loader/webpack.d.ts", | ||
"default": "./lib/cjs/loader/webpack.js" | ||
} | ||
} | ||
}, | ||
"main": "lib/cjs/index.js", | ||
"module": "lib/esm/index.js", | ||
"types": "lib/esm/index.d.ts", | ||
"files": [ | ||
@@ -56,7 +87,7 @@ "lib" | ||
"scripts": { | ||
"add-import-type": "ts-node ./src/add-import-type.ts && rm -f ./lib/add-import-type.*", | ||
"build": "check-node-version --node '>=16' && npm run prettier && npm run lint-fix && rm -Rf ./lib && babel --config-file ./.babelrc --extensions .ts src -d lib && tsc && npm run add-import-type && npm run test", | ||
"add-file-type-declaration": "node ./lib/esm/add-import-type.js && find ./lib -name 'add-import-type.*' -type f -delete", | ||
"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/run-all.js && npm run test", | ||
"ci": "npm run build", | ||
"lint-check": "eslint --ext .js --ext .jsx --ext .ts --ext .tsx --ext .json .", | ||
"lint-fix": "eslint --ext .js --ext .jsx --ext .ts --ext .tsx --ext .json --fix .", | ||
"lint-fix": "eslint --fix .", | ||
"lint-print-config": "eslint --print-config ./eslintrc.yaml", | ||
@@ -68,14 +99,10 @@ "prettier": "prettier --write .", | ||
"devDependencies": { | ||
"@babel/cli": "^7.23.9", | ||
"@babel/core": "^7.23.9", | ||
"@babel/preset-env": "^7.23.9", | ||
"@babel/preset-typescript": "7.23.3", | ||
"@release-it/conventional-changelog": "8.0.1", | ||
"@types/jest": "29.5.12", | ||
"@typescript-eslint/eslint-plugin": "6.21.0", | ||
"@typescript-eslint/parser": "6.21.0", | ||
"babel-preset-minify": "^0.5.2", | ||
"@types/node": "^20.11.21", | ||
"@typescript-eslint/eslint-plugin": "7.1.0", | ||
"@typescript-eslint/parser": "7.1.0", | ||
"check-node-version": "^4.2.1", | ||
"dotenv-cli": "7.3.0", | ||
"eslint": "8.56.0", | ||
"eslint": "8.57.0", | ||
"eslint-config-prettier": "9.1.0", | ||
@@ -85,13 +112,18 @@ "eslint-import-resolver-node": "0.3.9", | ||
"eslint-plugin-import": "2.29.1", | ||
"eslint-plugin-jest": "27.6.3", | ||
"eslint-plugin-jest": "27.9.0", | ||
"eslint-plugin-jsdoc": "^48.2.0", | ||
"eslint-plugin-json-files": "4.1.0", | ||
"eslint-plugin-prefer-arrow-functions": "3.2.4", | ||
"eslint-plugin-prefer-arrow-functions": "3.3.2", | ||
"eslint-plugin-prettier": "5.1.3", | ||
"eslint-plugin-tsdoc": "0.2.17", | ||
"eslint-plugin-unicorn": "51.0.1", | ||
"glob": "^10.3.10", | ||
"globals": "^14.0.0", | ||
"jest": "29.7.0", | ||
"jsonc-eslint-parser": "^2.4.0", | ||
"prettier": "3.2.5", | ||
"prettier-plugin-organize-imports": "3.2.4", | ||
"prettier-plugin-sh": "0.14.0", | ||
"release-it": "17.0.3", | ||
"release-it": "17.1.1", | ||
"terser": "^5.28.1", | ||
"ts-jest": "29.1.2", | ||
@@ -98,0 +130,0 @@ "ts-node": "10.9.2", |
@@ -0,0 +0,0 @@ # properties-file |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Minified code
QualityThis package contains minified code. This may be harmless in some cases where minified code is included in packaged libraries, however packages on npm should not minify code.
Found 3 instances in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
74167
38
804
Yes
31
6
1