UNPKG

synopkg

Version:

Consistent dependency versions in large JavaScript Monorepos

108 lines (107 loc) 3.79 kB
{ "name": "@fluidframework/server-local-server", "version": "6.0.0", "description": "Fluid local server implementation", "homepage": "https://fluidframework.com", "repository": { "type": "git", "url": "https://github.com/microsoft/FluidFramework.git", "directory": "server/routerlicious/packages/local-server" }, "license": "MIT", "author": "Microsoft and contributors", "sideEffects": false, "main": "dist/index.js", "module": "lib/index.js", "types": "dist/index.d.ts", "scripts": { "build": "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:test": "tsc --project ./src/test/tsconfig.json", "check:release-tags": "api-extractor run --local --config ./api-extractor-lint.json", "clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc _api-extractor-temp", "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/protocol-definitions": "^3.2.0", "@fluidframework/server-lambdas": "workspace:~", "@fluidframework/server-memory-orderer": "workspace:~", "@fluidframework/server-services-client": "workspace:~", "@fluidframework/server-services-core": "workspace:~", "@fluidframework/server-services-telemetry": "workspace:~", "@fluidframework/server-test-utils": "workspace:~", "debug": "^4.3.4", "events_pkg": "npm:events@^3.1.0", "jsrsasign": "^11.0.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-local-server-previous": "npm:@fluidframework/server-local-server@5.0.0", "@microsoft/api-extractor": "^7.45.1", "@types/jsrsasign": "^10.5.12", "@types/mocha": "^10.0.1", "@types/nock": "^9.3.0", "@types/node": "^18.19.39", "@types/sinon": "^9.0.9", "@types/uuid": "^9.0.2", "c8": "^8.0.1", "concurrently": "^8.2.1", "copyfiles": "^2.4.1", "eslint": "~8.55.0", "mocha": "^10.2.0", "nock": "^13.3.3", "prettier": "~3.0.3", "rimraf": "^4.4.0", "sinon": "^9.2.3", "ts-loader": "^9.5.1", "typescript": "~5.1.6", "webpack": "^5.94.0", "webpack-cli": "^5.1.4" }, "typeValidation": { "broken": { "ClassDeclaration_LocalOrdererManager": { "forwardCompat": false } } } }