package.json 2.0 KB

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