UNPKG

ancesdir

Version:

Find a specific ancestor/root directory given a starting location and a search parameter

94 lines 2.87 kB
{ "name": "ancesdir", "version": "7.2.0", "description": "Find a specific ancestor/root directory given a starting location and a search parameter", "types": "dist/index.d.ts", "main": "dist/index.js", "module": "dist/es/index.js", "repository": { "type": "git", "url": "https://github.com/somewhatabstract/ancesdir.git" }, "bugs": { "url": "https://github.com/somewhatabstract/ancesdir/issues" }, "author": "Jeff Yates <jeff@somewhatabstract.com>", "license": "MIT", "private": false, "publishConfig": { "access": "public", "provenance": true }, "engines": { "node": ">=20", "npm": "please-use-pnpm", "yarn": "please-use-pnpm" }, "keywords": [ "find", "ancestor", "utility", "root", "directory", "folder", "project", "repository" ], "files": [ "dist" ], "devDependencies": { "@babel/cli": "^7.28.3", "@babel/core": "^7.28.5", "@babel/eslint-parser": "^7.28.5", "@babel/eslint-plugin": "^7.27.1", "@babel/preset-env": "^7.28.5", "@babel/preset-typescript": "^7.28.5", "@changesets/cli": "^2.28.1", "@codecov/rollup-plugin": "^1.9.1", "@eslint/compat": "^1.2.8", "@eslint/eslintrc": "^3.3.1", "@eslint/js": "^9.24.0", "@khanacademy/eslint-config": "^5.2.1", "@khanacademy/eslint-plugin": "^3.1.2", "@rollup/plugin-babel": "^6.1.0", "@rollup/plugin-commonjs": "^29.0.0", "@rollup/plugin-node-resolve": "^16.0.3", "@rollup/plugin-terser": "^0.4.4", "@types/jest": "^30.0.0", "@types/node": "^20.19.0", "@typescript-eslint/eslint-plugin": "^8.46.4", "@typescript-eslint/parser": "^8.46.4", "babel-jest": "^30.2.0", "eslint": "^9.24.0", "eslint-config-prettier": "^10.1.1", "eslint-import-resolver-typescript": "^4.3.1", "eslint-plugin-eslint-comments": "^3.2.0", "eslint-plugin-import": "^2.31.0", "eslint-plugin-jest": "^29.1.0", "eslint-plugin-jsx-a11y": "^6.10.2", "eslint-plugin-prettier": "^5.2.6", "eslint-plugin-react": "^7.37.5", "globals": "^16.5.0", "jest": "^30.2.0", "jest-extended": "^7.0.0", "prettier": "^3.5.3", "rollup": "^4.53.2", "rollup-plugin-filesize": "^10.0.0", "typescript": "^5.9.3" }, "resolutions": { "nanomatch>kind-of": "^6.0.3", "micromatch>kind-of": "^6.0.3", "is-descriptor>kind-of": "^6.0.3" }, "scripts": { "clean": "rm -rf dist", "build": "pnpm test && rollup -c && pnpm build:types", "build:types": "tsc --emitDeclarationOnly --declaration --project tsconfig-types.json", "test": "jest --colors --config jest.config.js", "coverage": "jest --colors --config jest.config.js --coverage", "typecheck": "tsc --noEmit --project tsconfig.json", "publish:ci": "git diff --stat --exit-code HEAD && pnpm build && changeset publish" } }