package.json 2.0 KB

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