update electron to v43
All checks were successful
Android Build / publish (push) Successful in 55s
Linux Build / publish (push) Successful in 1m6s

This commit is contained in:
olcxja 2026-07-09 22:38:33 +02:00
commit fb6c8b6ee9
5385 changed files with 513060 additions and 123058 deletions

View file

@ -1,9 +1,10 @@
{
"name": "dir-compare",
"version": "2.4.0",
"version": "4.2.0",
"description": "Node JS directory compare",
"main": "src/index.js",
"types": "src/index.d.ts",
"type": "commonjs",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/gliviu/dir-compare"
@ -14,42 +15,40 @@
"folder"
],
"files": [
"src"
"build/src"
],
"scripts": {
"prepublishOnly": "npm run clean && npm run build && npm run lint",
"clean": "rm -rf build && rm -rf .nyc_output && rm -rf coverage",
"copydeps": "copyfiles \"test/expected/**\" test/testdir.tar \"test/extended/res/**\" package.json build",
"copydeps": "copyfiles \"test/expected/**\" test/testdir.tar \"test/extended/res/**\" \"test/permissionDeniedTests/expected/**\" build",
"build": "tsc && npm run copydeps",
"lint": "tslint -p tsconfig.json",
"pretest": "npm install && npm run build",
"test": "node build/test/runTests.js",
"extest": "npm run pretest && ./test/extended/init.sh && test/extended/runall.sh",
"lint": "eslint ./src ./test --ext .ts,.js",
"watch": "tsc-watch --onSuccess 'npm run copydeps --silent'",
"test": "bash test/run.sh",
"testminimal": "npm install && npm run build && node build/test/runTests.js",
"extest": "./test/extended/init.sh && test/extended/runall.sh",
"coverage": "npx nyc --exclude \"build/test/**\" --reporter=lcov npm test && npx nyc report",
"toc": "npx markdown-toc README.md; echo \n",
"docs": "typedoc --includeVersion --includeDeclarations --excludeExternals --theme minimal --mode file --readme none --gitRevision master --toc compare,compareSync,fileCompareHandlers,Options,Result --out docs ./src/index.d.ts"
"docs": "typedoc --includeVersion --excludeExternals --excludeInternal --readme none --gitRevision master -cleanOutputDir --sort source-order --out docs ./src/index.ts"
},
"dependencies": {
"buffer-equal": "1.0.0",
"colors": "1.0.3",
"commander": "2.9.0",
"minimatch": "3.0.4"
"minimatch": "^3.0.5",
"p-limit": "^3.1.0 "
},
"devDependencies": {
"@types/node": "^12.11.7",
"copyfiles": "^1.2.0",
"@types/node": "18.11.9",
"@typescript-eslint/eslint-plugin": "6.3.0",
"@typescript-eslint/parser": "6.3.0",
"colors": "1.4.0",
"copyfiles": "2.4.1",
"eslint": "8.47.0",
"memory-streams": "0.1.0",
"semver": "5.6.0",
"shelljs": "0.3.0",
"semver": "7.5.4",
"tar-fs": "2.1.1",
"temp": "0.9.0",
"ts-node": "^8.5.4",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.13.0",
"typedoc": "0.19.2",
"typescript": "^3.7.4"
},
"bin": {
"dircompare": "src/cli/dircompare.js"
"ts-node": "10.9.1",
"tsc-watch": "4.5.0",
"typedoc": "0.24.8",
"typescript": "4.9.5"
},
"author": "Liviu Grigorescu",
"license": "MIT",