package.json 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. {
  2. "name": "@jsonjoy.com/fs-print",
  3. "publishConfig": {
  4. "access": "public"
  5. },
  6. "version": "4.56.10",
  7. "description": "File system tree printer - print a file system structure as a tree",
  8. "author": {
  9. "name": "streamich",
  10. "url": "https://github.com/streamich"
  11. },
  12. "homepage": "https://github.com/streamich/memfs/tree/master/packages/fs-print",
  13. "repository": "streamich/memfs",
  14. "license": "Apache-2.0",
  15. "funding": {
  16. "type": "github",
  17. "url": "https://github.com/sponsors/streamich"
  18. },
  19. "keywords": [
  20. "filesystem",
  21. "fs",
  22. "tree",
  23. "print",
  24. "visual",
  25. "directory",
  26. "structure",
  27. "debug"
  28. ],
  29. "engines": {
  30. "node": ">=10.0"
  31. },
  32. "main": "lib/index.js",
  33. "types": "lib/index.d.ts",
  34. "typings": "lib/index.d.ts",
  35. "files": [
  36. "LICENSE",
  37. "lib/"
  38. ],
  39. "scripts": {
  40. "clean": "rimraf lib typedocs coverage gh-pages yarn-error.log",
  41. "build": "tsc --project tsconfig.build.json --module commonjs --target es2020 --outDir lib",
  42. "jest": "node -r ts-node/register ./node_modules/.bin/jest",
  43. "test": "jest --maxWorkers 7",
  44. "test:ci": "yarn jest --maxWorkers 3 --no-cache",
  45. "coverage": "yarn test --collectCoverage",
  46. "typedoc": "typedoc",
  47. "typecheck": "tsc -p ."
  48. },
  49. "jest": {
  50. "preset": "ts-jest",
  51. "testEnvironment": "node",
  52. "moduleFileExtensions": [
  53. "ts",
  54. "js",
  55. "tsx"
  56. ],
  57. "transform": {
  58. "^.+\\.tsx?$": "ts-jest"
  59. },
  60. "transformIgnorePatterns": [
  61. ".*/node_modules/.*"
  62. ],
  63. "testRegex": ".*/(__tests__|__jest__|demo)/.*\\.(test|spec)\\.tsx?$",
  64. "rootDir": ".",
  65. "testPathIgnorePatterns": [
  66. "node_modules"
  67. ]
  68. },
  69. "devDependencies": {
  70. "@types/jest": "^29.0.0",
  71. "@types/node": "^20.0.0",
  72. "jest": "^29.0.0",
  73. "rimraf": "^5.0.0",
  74. "ts-jest": "^29.4.2",
  75. "ts-node": "^10.9.2",
  76. "typescript": "^5.9.2"
  77. },
  78. "peerDependencies": {
  79. "tslib": "2"
  80. },
  81. "dependencies": {
  82. "@jsonjoy.com/fs-node-utils": "4.56.10",
  83. "tree-dump": "^1.1.0"
  84. }
  85. }