synopkg
Version:
Consistent dependency versions in large JavaScript Monorepos
114 lines (113 loc) • 3.53 kB
JSON
{
"name": "@fluidframework/gitrest-base",
"version": "1.0.0",
"description": "Git REST API base components",
"homepage": "https://fluidframework.com",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/FluidFramework.git",
"directory": "server/gitrest/packages/gitrest-base"
},
"license": "MIT",
"author": "Microsoft and contributors",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "concurrently npm:build:compile npm:lint",
"build:commonjs": "npm run tsc && npm run build:test",
"build:compile": "npm run build:commonjs",
"build:test": "tsc --project ./src/test/tsconfig.json",
"clean": "rimraf --glob dist \"**/*.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",
"start": "node dist/www.js",
"test": "mocha dist/test --reporterOptions maxDiffSize=1024",
"test:coverage": "c8 npm test",
"tsc": "tsc"
},
"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": "^1.1.1",
"@fluidframework/gitresources": "6.0.0-287165",
"@fluidframework/protocol-base": "6.0.0-287165",
"@fluidframework/protocol-definitions": "^3.2.0",
"@fluidframework/server-services-client": "6.0.0-301718",
"@fluidframework/server-services-core": "6.0.0-301718",
"@fluidframework/server-services-shared": "6.0.0-301718",
"@fluidframework/server-services-telemetry": "6.0.0-301718",
"@fluidframework/server-services-utils": "6.0.0-301718",
"@fluidframework/server-test-utils": "6.0.0-301718",
"async-mutex": "^0.3.2",
"axios": "^1.7.7",
"body-parser": "^1.20.3",
"compression": "^1.7.3",
"cors": "^2.8.5",
"debug": "^4.3.4",
"express": "^4.21.1",
"ioredis": "^5.2.3",
"isomorphic-git": "^1.25.10",
"json-stringify-safe": "^5.0.1",
"memfs": "^3.4.12",
"nconf": "^0.11.4",
"object-sizeof": "^1.6.3",
"prettier": "~3.0.3",
"split": "^1.0.0",
"uuid": "^3.3.2",
"winston": "^3.6.0"
},
"devDependencies": {
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/eslint-config-fluid": "^5.2.0",
"@types/async": "^3.2.9",
"@types/cors": "^2.8.4",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.21",
"@types/express-serve-static-core": "^4.17.32",
"@types/ioredis-mock": "^8.2.5",
"@types/lorem-ipsum": "^1.0.2",
"@types/mocha": "^10.0.0",
"@types/nconf": "^0.10.0",
"@types/node": "^18.17.1",
"@types/rimraf": "^3.0.2",
"@types/sinon": "^17.0.2",
"@types/supertest": "^2.0.7",
"@types/uuid": "^3.4.4",
"@types/winston": "^2.4.4",
"async": "^3.2.2",
"c8": "^8.0.1",
"concurrently": "^8.2.1",
"eslint": "~8.55.0",
"ioredis-mock": "^8.9.0",
"lorem-ipsum": "^1.0.6",
"mocha": "^10.1.0",
"rimraf": "^3.0.2",
"sillyname": "^0.1.0",
"sinon": "^17.0.1",
"supertest": "^3.4.2",
"typescript": "~5.1.6"
}
}