package.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. {
  2. "name": "@jsonjoy.com/fs-node-to-fsa",
  3. "publishConfig": {
  4. "access": "public"
  5. },
  6. "version": "4.56.10",
  7. "description": "Adapter to convert Node.js fs API to File System Access 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-to-fsa",
  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. "fsa",
  23. "file-system-access",
  24. "node-to-fsa",
  25. "adapter"
  26. ],
  27. "engines": {
  28. "node": ">=10.0"
  29. },
  30. "main": "lib/index.js",
  31. "types": "lib/index.d.ts",
  32. "typings": "lib/index.d.ts",
  33. "files": [
  34. "LICENSE",
  35. "lib/"
  36. ],
  37. "scripts": {
  38. "clean": "rimraf lib typedocs coverage gh-pages yarn-error.log",
  39. "build": "tsc --project tsconfig.build.json --module commonjs --target es2020 --outDir lib",
  40. "jest": "node -r ts-node/register ./node_modules/.bin/jest",
  41. "test": "jest --maxWorkers 7",
  42. "test:ci": "yarn jest --maxWorkers 3 --no-cache",
  43. "coverage": "yarn test --collectCoverage",
  44. "typedoc": "typedoc",
  45. "typecheck": "tsc -p ."
  46. },
  47. "jest": {
  48. "preset": "ts-jest",
  49. "testEnvironment": "node",
  50. "moduleFileExtensions": [
  51. "ts",
  52. "js",
  53. "tsx"
  54. ],
  55. "transform": {
  56. "^.+\\.tsx?$": "ts-jest"
  57. },
  58. "transformIgnorePatterns": [
  59. ".*/node_modules/.*"
  60. ],
  61. "testRegex": ".*/(__tests__|__jest__|demo)/.*\\.(test|spec)\\.tsx?$",
  62. "rootDir": ".",
  63. "testPathIgnorePatterns": [
  64. "node_modules"
  65. ]
  66. },
  67. "devDependencies": {
  68. "@jsonjoy.com/fs-node": "4.56.10",
  69. "@types/jest": "^29.0.0",
  70. "@types/node": "^20.0.0",
  71. "jest": "^29.0.0",
  72. "memfs": "4.56.10",
  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-fsa": "4.56.10",
  83. "@jsonjoy.com/fs-node-builtins": "4.56.10",
  84. "@jsonjoy.com/fs-node-utils": "4.56.10"
  85. }
  86. }