UNPKG

synopkg

Version:

Consistent dependency versions in large JavaScript Monorepos

113 lines (112 loc) 3.51 kB
{ "name": "@fluidframework/server-services-utils", "version": "6.0.0", "description": "Fluid server services shared utilities", "homepage": "https://fluidframework.com", "repository": { "type": "git", "url": "https://github.com/microsoft/FluidFramework.git", "directory": "server/routerlicious/packages/services-utils" }, "license": "MIT", "author": "Microsoft and contributors", "sideEffects": false, "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "build": "npm run build:genver && concurrently npm:build:compile npm:lint", "build:compile": "npm run tsc && npm run typetests:gen", "build:genver": "gen-version", "clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" 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 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", "test:debug": "mocha inspect --recursive \"dist/test/*.spec.*js\"", "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/protocol-definitions": "^3.2.0", "@fluidframework/server-services-client": "workspace:~", "@fluidframework/server-services-core": "workspace:~", "@fluidframework/server-services-telemetry": "workspace:~", "debug": "^4.3.4", "express": "^4.21.1", "ioredis": "^5.2.3", "json-stringify-safe": "^5.0.1", "jsonwebtoken": "^9.0.0", "morgan": "^1.8.1", "nconf": "^0.12.0", "serialize-error": "^8.1.0", "sillyname": "^0.1.0", "split": "^1.0.0", "uuid": "^9.0.0", "winston": "^3.6.0", "winston-transport": "^4.5.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-utils-previous": "npm:@fluidframework/server-services-utils@5.0.0", "@fluidframework/server-test-utils": "workspace:~", "@types/debug": "^4.1.5", "@types/express": "^4.17.21", "@types/express-serve-static-core": "^4.17.32", "@types/json-stringify-safe": "^5.0.0", "@types/jsonwebtoken": "^9.0.0", "@types/mocha": "^10.0.1", "@types/morgan": "^1.7.35", "@types/nconf": "^0.10.2", "@types/node": "^18.19.39", "@types/supertest": "^2.0.5", "@types/uuid": "^9.0.2", "c8": "^8.0.1", "concurrently": "^8.2.1", "eslint": "~8.55.0", "mocha": "^10.2.0", "prettier": "~3.0.3", "rimraf": "^4.4.0", "supertest": "^3.1.0", "typescript": "~5.1.6" }, "fluidBuild": { "tasks": { "tsc": [ "...", "typetests:gen" ] } }, "typeValidation": { "broken": {} } }