UNPKG

find-workspace-root

Version:

Find the root of a multi-package repo with Yarn workspaces

51 lines (50 loc) 1.28 kB
{ "name": "find-workspace-root", "description": "Find the root of a multi-package repo with Yarn workspaces", "repository": { "type": "git", "url": "git+https://github.com/hupe1980/find-workspace-root.git" }, "bugs": { "url": "https://github.com/hupe1980/find-workspace-root/issues" }, "homepage": "https://github.com/hupe1980/find-workspace-root#readme", "version": "1.0.1", "license": "MIT", "keywords": [ "yarn", "workspaces", "monorepo", "multi-package", "root" ], "main": "lib/index.js", "types": "lib/index.d.ts", "files": [ "lib" ], "scripts": { "build": "rimraf lib && tsc", "watch": "tsc -w", "test": "jest", "lint": "eslint '*/**/*.{ts,tsx}' --report-unused-disable-directives", "prepublishOnly": "npm run test && npm run build" }, "dependencies": { "fs-extra": "^9.0.1", "micromatch": "^4.0.2" }, "devDependencies": { "@types/fs-extra": "^9.0.1", "@types/jest": "^26.0.3", "@types/micromatch": "^4.0.1", "@types/node": "^12.12.5", "@typescript-eslint/eslint-plugin": "^3.5.0", "@typescript-eslint/parser": "^3.5.0", "eslint": "^7.3.1", "jest": "^26.1.0", "rimraf": "^3.0.2", "ts-jest": "^26.1.1", "typescript": "^3.9.6" } }