UNPKG

synopkg

Version:

Consistent dependency versions in large JavaScript Monorepos

88 lines (87 loc) 2.78 kB
{ "name": "@fluidframework/server-services-telemetry", "version": "6.0.0", "description": "Fluid server telemetry utilities", "homepage": "https://fluidframework.com", "repository": { "type": "git", "url": "https://github.com/microsoft/FluidFramework.git", "directory": "server/routerlicious/packages/services-telemetry" }, "license": "MIT", "author": "Microsoft and contributors", "sideEffects": false, "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "build": "concurrently npm:build:compile npm:lint", "build:compile": "npm run tsc && npm run typetests:gen && npm run build:test", "build:test": "tsc --project ./src/test/tsconfig.json", "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", "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", "json-stringify-safe": "^5.0.1", "path-browserify": "^1.0.1", "serialize-error": "^8.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-telemetry-previous": "npm:@fluidframework/server-services-telemetry@5.0.0", "@types/mocha": "^10.0.1", "@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", "sinon": "^9.2.3", "typescript": "~5.1.6" }, "typeValidation": { "broken": { "InterfaceDeclaration_ITelemetryContextProperties": { "forwardCompat": false } } } }