package.json 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. {
  2. "name": "@jsonjoy.com/fs-node",
  3. "publishConfig": {
  4. "access": "public"
  5. },
  6. "version": "4.56.10",
  7. "description": "In-memory filesystem with Node.js fs-compatible API",
  8. "author": {
  9. "name": "streamich",
  10. "url": "https://github.com/streamich"
  11. },
  12. "homepage": "https://github.com/streamich/memfs/tree/master/packages/fs-node",
  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. "fs",
  21. "filesystem",
  22. "node",
  23. "virtual",
  24. "memory",
  25. "in-memory",
  26. "memfs"
  27. ],
  28. "engines": {
  29. "node": ">=10.0"
  30. },
  31. "main": "lib/index.js",
  32. "types": "lib/index.d.ts",
  33. "typings": "lib/index.d.ts",
  34. "files": [
  35. "LICENSE",
  36. "lib/"
  37. ],
  38. "scripts": {
  39. "clean": "rimraf lib typedocs coverage gh-pages yarn-error.log",
  40. "build": "tsc --project tsconfig.build.json --module commonjs --target es2020 --outDir lib",
  41. "jest": "node -r ts-node/register ./node_modules/.bin/jest",
  42. "test": "jest --maxWorkers 7",
  43. "test:ci": "yarn jest --maxWorkers 3 --no-cache",
  44. "coverage": "yarn test --collectCoverage",
  45. "typedoc": "typedoc",
  46. "typecheck": "tsc -p ."
  47. },
  48. "jest": {
  49. "preset": "ts-jest",
  50. "testEnvironment": "node",
  51. "moduleFileExtensions": [
  52. "ts",
  53. "js",
  54. "tsx"
  55. ],
  56. "transform": {
  57. "^.+\\.tsx?$": "ts-jest"
  58. },
  59. "transformIgnorePatterns": [
  60. ".*/node_modules/.*"
  61. ],
  62. "testRegex": ".*/(__tests__|__jest__|demo)/.*\\.(test|spec)\\.tsx?$",
  63. "rootDir": ".",
  64. "testPathIgnorePatterns": [
  65. "node_modules"
  66. ]
  67. },
  68. "devDependencies": {
  69. "@types/jest": "^29.0.0",
  70. "@types/node": "^20.0.0",
  71. "jest": "^29.0.0",
  72. "rimraf": "^5.0.0",
  73. "ts-jest": "^29.4.2",
  74. "ts-node": "^10.9.2",
  75. "typescript": "^5.9.2"
  76. },
  77. "peerDependencies": {
  78. "tslib": "2"
  79. },
  80. "dependencies": {
  81. "@jsonjoy.com/fs-core": "4.56.10",
  82. "@jsonjoy.com/fs-node-builtins": "4.56.10",
  83. "@jsonjoy.com/fs-node-utils": "4.56.10",
  84. "@jsonjoy.com/fs-print": "4.56.10",
  85. "@jsonjoy.com/fs-snapshot": "4.56.10",
  86. "glob-to-regex.js": "^1.0.0",
  87. "thingies": "^2.5.0"
  88. }
  89. }