UNPKG

synopkg

Version:

Consistent dependency versions in large JavaScript Monorepos

138 lines (137 loc) 3.76 kB
{ "name": "@fluid-tools/version-tools", "version": "0.50.0", "description": "Versioning tools for Fluid Framework", "homepage": "https://fluidframework.com", "repository": { "type": "git", "url": "https://github.com/microsoft/FluidFramework.git", "directory": "build-tools/packages/version-tools" }, "license": "MIT", "author": "Microsoft and contributors", "sideEffects": false, "type": "commonjs", "exports": { ".": { "default": { "types": "./lib/index.d.ts", "default": "./lib/index.js" } } }, "main": "lib/index.js", "types": "lib/index.d.ts", "bin": { "fluv": "./bin/run.js" }, "files": [ "/bin", "/lib", "/oclif.manifest.json" ], "scripts": { "build": "concurrently npm:build:compile npm:lint && npm run build:docs", "build:commonjs": "npm run tsc && npm run build:test", "build:compile": "npm run build:commonjs && npm run build:readme", "build:docs": "api-extractor run --local", "build:manifest": "oclif manifest", "build:readme": "oclif readme --version 0.0.0", "build:test": "tsc --project ./src/test/tsconfig.json", "check:biome": "biome check .", "check:format": "npm run check:biome", "ci:build:docs": "api-extractor run", "clean": "rimraf --glob dist lib oclif.manifest.json \"**/*.tsbuildinfo\" \"**/*.build.log\" _api-extractor-temp nyc", "clean:manifest": "rimraf --glob oclif.manifest.json", "compile": "fluid-build . --task compile", "eslint": "eslint --format stylish src", "eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout", "format": "npm run format:biome", "format:biome": "biome check --write .", "lint": "npm run eslint", "lint:fix": "npm run eslint:fix", "postpack": "npm run clean:manifest", "test": "npm run test:mocha", "test:coverage": "c8 npm run test", "test:mocha": "mocha --forbid-only \"lib/test/**/*.test.js\"", "tsc": "tsc" }, "c8": { "all": true, "cache-dir": "nyc/.cache", "exclude": [ "src/test/**/*.*ts", "lib/test/**/*.*js" ], "exclude-after-remap": false, "include": [ "src/**/*.*ts", "lib/**/*.*js" ], "report-dir": "nyc/report", "reporter": [ "cobertura", "html", "text" ], "temp-directory": "nyc/.nyc_output" }, "dependencies": { "@oclif/core": "^4.0.30", "@oclif/plugin-autocomplete": "^3.2.6", "@oclif/plugin-commands": "^4.1.3", "@oclif/plugin-help": "^6.2.16", "@oclif/plugin-not-found": "^3.2.22", "chalk": "^2.4.2", "semver": "^7.5.4", "table": "^6.8.1" }, "devDependencies": { "@biomejs/biome": "~1.9.3", "@fluidframework/build-common": "^2.0.3", "@fluidframework/build-tools-bin": "npm:@fluidframework/build-tools@~0.44.0", "@fluidframework/eslint-config-fluid": "^5.3.0", "@microsoft/api-extractor": "^7.45.1", "@oclif/test": "^4.1.0", "@types/chai": "^4.3.5", "@types/mocha": "^9.1.1", "@types/node": "^18.18.6", "@types/semver": "^7.5.0", "c8": "^7.14.0", "chai": "^4.5.0", "concurrently": "^8.2.1", "eslint": "~8.57.0", "eslint-config-oclif": "^5.2.1", "eslint-config-oclif-typescript": "^3.1.12", "eslint-config-prettier": "~9.1.0", "mocha": "^10.2.0", "mocha-multi-reporters": "^1.5.1", "moment": "^2.29.4", "oclif": "^4.15.12", "rimraf": "^4.4.1", "ts-node": "^10.9.1", "tslib": "^2.6.0", "typescript": "~5.4.5" }, "engines": { "node": ">=18.17.1" }, "oclif": { "bin": "fluv", "dirname": "fluv", "commands": "./lib/commands", "additionalHelpFlags": [ "-h" ], "additionalVersionFlags": [ "-V" ], "plugins": [ "@oclif/plugin-autocomplete", "@oclif/plugin-help" ], "repositoryPrefix": "<%- repo %>/blob/main/build-tools/packages/version-tools/<%- commandPath %>", "topicSeparator": " ", "topics": {} } }