synopkg
Version:
Consistent dependency versions in large JavaScript Monorepos
107 lines (106 loc) • 3.48 kB
JSON
{
"name": "@fluidframework/historian-base",
"version": "0.0.1",
"description": "Base classes for historian",
"homepage": "https://fluidframework.com",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/FluidFramework.git",
"directory": "server/historian/packages/historian-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 --ext=ts,tsx --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 --recursive dist/test",
"test:coverage": "c8 npm test -- --reporter xunit --reporter-option output=nyc/junit-report.xml",
"test:debug": "mocha inspect --recursive ./dist/test --grep \"Your test key word\" --timeout 0",
"tsc": "tsc"
},
"c8": {
"all": true,
"cache-dir": "nyc/.cache",
"exclude": [
"src/test/**/*.*ts",
"lib/test/**/*.*js"
],
"exclude-after-remap": false,
"include": [
"src/**/*.*ts",
"lib/**/*.*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-definitions": "^3.2.0",
"@fluidframework/server-services": "6.0.0-301718",
"@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",
"@types/ioredis-mock": "^8.2.5",
"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",
"ioredis-mock": "^8.9.0",
"json-stringify-safe": "5.0.1",
"jsonwebtoken": "^9.0.0",
"nconf": "^0.11.4",
"uuid": "^3.3.2",
"winston": "^3.6.0"
},
"devDependencies": {
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/eslint-config-fluid": "^5.1.0",
"@fluidframework/server-test-utils": "6.0.0-301718",
"@types/compression": "0.0.36",
"@types/cors": "^2.8.4",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.3",
"@types/express-serve-static-core": "^4.17.32",
"@types/mocha": "^10.0.0",
"@types/nconf": "0.0.37",
"@types/node": "^18.17.1",
"@types/supertest": "^2.0.7",
"@types/uuid": "^3.4.4",
"async": "^3.2.2",
"axios-mock-adapter": "^1.19.0",
"c8": "^8.0.1",
"concurrently": "^8.2.1",
"eslint": "~8.55.0",
"eslint-config-prettier": "~9.0.0",
"mocha": "^10.1.0",
"prettier": "~3.0.3",
"rimraf": "^5.0.0",
"sinon": "^9.2.3",
"supertest": "^3.3.0",
"typescript": "~5.1.6"
}
}