Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "dir-compare",
  3. "version": "4.2.0",
  4. "description": "Node JS directory compare",
  5. "type": "commonjs",
  6. "main": "build/src/index.js",
  7. "types": "build/src/index.d.ts",
  8. "repository": {
  9. "type": "git",
  10. "url": "https://github.com/gliviu/dir-compare"
  11. },
  12. "keywords": [
  13. "compare",
  14. "directory",
  15. "folder"
  16. ],
  17. "files": [
  18. "build/src"
  19. ],
  20. "scripts": {
  21. "prepublishOnly": "npm run clean && npm run build && npm run lint",
  22. "clean": "rm -rf build && rm -rf .nyc_output && rm -rf coverage",
  23. "copydeps": "copyfiles \"test/expected/**\" test/testdir.tar \"test/extended/res/**\" \"test/permissionDeniedTests/expected/**\" build",
  24. "build": "tsc && npm run copydeps",
  25. "lint": "eslint ./src ./test --ext .ts,.js",
  26. "watch": "tsc-watch --onSuccess 'npm run copydeps --silent'",
  27. "test": "bash test/run.sh",
  28. "testminimal": "npm install && npm run build && node build/test/runTests.js",
  29. "extest": "./test/extended/init.sh && test/extended/runall.sh",
  30. "coverage": "npx nyc --exclude \"build/test/**\" --reporter=lcov npm test && npx nyc report",
  31. "toc": "npx markdown-toc README.md; echo \n",
  32. "docs": "typedoc --includeVersion --excludeExternals --excludeInternal --readme none --gitRevision master -cleanOutputDir --sort source-order --out docs ./src/index.ts"
  33. },
  34. "dependencies": {
  35. "minimatch": "^3.0.5",
  36. "p-limit": "^3.1.0 "
  37. },
  38. "devDependencies": {
  39. "@types/node": "18.11.9",
  40. "@typescript-eslint/eslint-plugin": "6.3.0",
  41. "@typescript-eslint/parser": "6.3.0",
  42. "colors": "1.4.0",
  43. "copyfiles": "2.4.1",
  44. "eslint": "8.47.0",
  45. "memory-streams": "0.1.0",
  46. "semver": "7.5.4",
  47. "tar-fs": "2.1.1",
  48. "ts-node": "10.9.1",
  49. "tsc-watch": "4.5.0",
  50. "typedoc": "0.24.8",
  51. "typescript": "4.9.5"
  52. },
  53. "author": "Liviu Grigorescu",
  54. "license": "MIT",
  55. "bugs": {
  56. "url": "https://github.com/gliviu/dir-compare/issues"
  57. }
  58. }