| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- {
- "name": "@jsonjoy.com/fs-node",
- "publishConfig": {
- "access": "public"
- },
- "version": "4.56.10",
- "description": "In-memory filesystem with Node.js fs-compatible API",
- "author": {
- "name": "streamich",
- "url": "https://github.com/streamich"
- },
- "homepage": "https://github.com/streamich/memfs/tree/master/packages/fs-node",
- "repository": "streamich/memfs",
- "license": "Apache-2.0",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/streamich"
- },
- "keywords": [
- "fs",
- "filesystem",
- "node",
- "virtual",
- "memory",
- "in-memory",
- "memfs"
- ],
- "engines": {
- "node": ">=10.0"
- },
- "main": "lib/index.js",
- "types": "lib/index.d.ts",
- "typings": "lib/index.d.ts",
- "files": [
- "LICENSE",
- "lib/"
- ],
- "scripts": {
- "clean": "rimraf lib typedocs coverage gh-pages yarn-error.log",
- "build": "tsc --project tsconfig.build.json --module commonjs --target es2020 --outDir lib",
- "jest": "node -r ts-node/register ./node_modules/.bin/jest",
- "test": "jest --maxWorkers 7",
- "test:ci": "yarn jest --maxWorkers 3 --no-cache",
- "coverage": "yarn test --collectCoverage",
- "typedoc": "typedoc",
- "typecheck": "tsc -p ."
- },
- "jest": {
- "preset": "ts-jest",
- "testEnvironment": "node",
- "moduleFileExtensions": [
- "ts",
- "js",
- "tsx"
- ],
- "transform": {
- "^.+\\.tsx?$": "ts-jest"
- },
- "transformIgnorePatterns": [
- ".*/node_modules/.*"
- ],
- "testRegex": ".*/(__tests__|__jest__|demo)/.*\\.(test|spec)\\.tsx?$",
- "rootDir": ".",
- "testPathIgnorePatterns": [
- "node_modules"
- ]
- },
- "devDependencies": {
- "@types/jest": "^29.0.0",
- "@types/node": "^20.0.0",
- "jest": "^29.0.0",
- "rimraf": "^5.0.0",
- "ts-jest": "^29.4.2",
- "ts-node": "^10.9.2",
- "typescript": "^5.9.2"
- },
- "peerDependencies": {
- "tslib": "2"
- },
- "dependencies": {
- "@jsonjoy.com/fs-core": "4.56.10",
- "@jsonjoy.com/fs-node-builtins": "4.56.10",
- "@jsonjoy.com/fs-node-utils": "4.56.10",
- "@jsonjoy.com/fs-print": "4.56.10",
- "@jsonjoy.com/fs-snapshot": "4.56.10",
- "glob-to-regex.js": "^1.0.0",
- "thingies": "^2.5.0"
- }
- }
|