UNPKG

@wezom/fs-walker

Version:
75 lines 2.14 kB
{ "name": "@wezom/fs-walker", "version": "0.3.0", "description": "FS helper tools", "main": "lib/index.js", "module": "lib/index.mjs", "types": "lib/index.d.ts", "type": "module", "exports": { ".": { "require": "./lib/index.js", "import": "./lib/index.mjs", "types": "./lib/index.d.ts" } }, "files": [ "lib" ], "keywords": [ "fs", "file", "structure", "walker", "glob", "path", "pattern" ], "author": "OlehDutchenko <dutchenko.o.dev@gmail.com>", "license": "BSD 3-Clause License", "bugs": { "url": "https://github.com/WezomCompany/fs-walker/issues" }, "homepage": "https://github.com/WezomCompany/fs-walker#readme", "repository": { "type": "git", "url": "git+https://github.com/WezomCompany/fs-walker.git" }, "publishConfig": { "access": "public" }, "devDependencies": { "@rollup/plugin-terser": "^0.4.3", "@rollup/plugin-typescript": "^11.1.2", "@vitest/coverage-istanbul": "^0.34.1", "@wezom/eslint-config": "^11.0.5", "@wezom/eslint-config-ts": "^11.0.5", "del-cli": "^5.0.0", "eslint": "^8.46.0", "eslint-config-prettier": "^8.9.0", "istanbul-badges-readme": "^1.8.5", "jsdom": "^22.1.0", "prettier": "^3.0.0", "rollup": "^3.27.0", "typescript": "^5.1.6", "vitest": "^0.34.1" }, "dependencies": { "from-cwd": "^1.0.1", "glob": "^10.3.3", "mkdirp": "^3.0.1" }, "scripts": { "build": "rollup --config rollup.config.js", "prebuild": "del-cli lib", "postbuild": "del-cli lib/**/__specs__", "test": "vitest run", "test-with-watch-mode": "vitest", "test-with-coverage": "vitest run --coverage && istanbul-badges-readme && prettier \"./README.md\" --check --write", "lint": "eslint \"./src/**/**.ts\" --cache --cache-location ./.cache/eslint/src", "lint-with-autofix": "pnpm run lint --fix", "format": "prettier \"./src/**/*.ts\" --write --check", "pr-ready": "pnpm run format && pnpm run lint-with-autofix && pnpm run test-with-coverage && pnpm run build", "ci-test": "pnpm run lint && pnpm run test" } }