UNPKG

synopkg

Version:

Consistent dependency versions in large JavaScript Monorepos

101 lines (100 loc) 3.59 kB
{ "name": "@fluidframework/server-services-client", "version": "6.0.0", "description": "Fluid server isomorphic services for communicating with Fluid", "homepage": "https://fluidframework.com", "repository": { "type": "git", "url": "https://github.com/microsoft/FluidFramework.git", "directory": "server/routerlicious/packages/services-client" }, "license": "MIT", "author": "Microsoft and contributors", "sideEffects": false, "main": "dist/index.js", "module": "lib/index.js", "types": "dist/index.d.ts", "scripts": { "build": "npm run build:genver && concurrently npm:build:compile npm:lint && npm run build:docs", "build:commonjs": "npm run tsc && npm run typetests:gen && npm run build:test", "build:compile": "concurrently npm:build:commonjs npm:build:esnext", "build:docs": "api-extractor run --local && copyfiles -u 1 \"./_api-extractor-temp/doc-models/*\" ../../_api-extractor-temp/", "build:esnext": "tsc --project ./tsconfig.esnext.json", "build:genver": "gen-version", "build:test": "tsc --project ./src/test/tsconfig.json", "check:release-tags": "api-extractor run --local --config ./api-extractor-lint.json", "ci:build:docs": "api-extractor run", "clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" _api-extractor-temp nyc", "eslint": "eslint --format stylish src", "eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout", "format": "npm run prettier:fix", "lint": "npm run prettier && npm run check:release-tags && npm run eslint", "lint:fix": "npm run prettier:fix && npm run eslint:fix", "prettier": "prettier --check . --cache --ignore-path ../../.prettierignore", "prettier:fix": "prettier --write . --cache --ignore-path ../../.prettierignore", "test": "mocha --recursive \"dist/test/**/*.spec.*js\"", "test:coverage": "c8 npm test -- --reporter xunit --reporter-option output=nyc/junit-report.xml", "tsc": "tsc", "typetests:gen": "fluid-type-test-generator", "typetests:prepare": "flub typetests --dir . --reset --previous --normalize" }, "c8": { "all": true, "cache-dir": "nyc/.cache", "exclude": [ "src/test/**/*.*ts", "dist/test/**/*.*js" ], "exclude-after-remap": false, "include": [ "src/**/*.*ts", "dist/**/*.*js" ], "report-dir": "nyc/report", "reporter": [ "cobertura", "html", "text" ], "temp-directory": "nyc/.nyc_output" }, "dependencies": { "@fluidframework/common-utils": "^3.1.0", "@fluidframework/gitresources": "workspace:~", "@fluidframework/protocol-base": "workspace:~", "@fluidframework/protocol-definitions": "^3.2.0", "axios": "^1.7.7", "crc-32": "1.2.0", "debug": "^4.3.4", "json-stringify-safe": "^5.0.1", "jsrsasign": "^11.0.0", "jwt-decode": "^4.0.0", "sillyname": "^0.1.0", "uuid": "^9.0.0" }, "devDependencies": { "@fluid-tools/build-cli": "^0.38.0", "@fluidframework/build-common": "^2.0.3", "@fluidframework/build-tools": "^0.38.0", "@fluidframework/eslint-config-fluid": "^5.2.0", "@fluidframework/server-services-client-previous": "npm:@fluidframework/server-services-client@5.0.0", "@microsoft/api-extractor": "^7.45.1", "@types/debug": "^4.1.5", "@types/jsrsasign": "^10.5.12", "@types/mocha": "^10.0.1", "@types/node": "^18.19.39", "@types/uuid": "^9.0.2", "axios-mock-adapter": "^1.19.0", "c8": "^8.0.1", "concurrently": "^8.2.1", "copyfiles": "^2.4.1", "eslint": "~8.55.0", "mocha": "^10.2.0", "prettier": "~3.0.3", "rimraf": "^4.4.0", "typescript": "~5.1.6" }, "typeValidation": { "broken": {} } }