package.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. {
  2. "name": "@jsonjoy.com/fs-node-builtins",
  3. "publishConfig": {
  4. "access": "public"
  5. },
  6. "version": "4.56.10",
  7. "description": "Node.js standard library dependencies for fs-related packages",
  8. "author": {
  9. "name": "streamich",
  10. "url": "https://github.com/streamich"
  11. },
  12. "homepage": "https://github.com/streamich/memfs/tree/master/packages/fs-node-builtins",
  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. "builtins",
  23. "filesystem",
  24. "dependencies",
  25. "node builtins",
  26. "node fs",
  27. "node filesystem"
  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. }