synopkg
Version:
Consistent dependency versions in large JavaScript Monorepos
64 lines (63 loc) • 1.98 kB
JSON
{
"name": "@fluid-tools/telemetry-generator",
"version": "1.0.0",
"description": "Tool to take performance benchmark output files and write them to our monitoring systems",
"homepage": "https://fluidframework.com",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/FluidFramework.git",
"directory": "tools/telemetry-generator"
},
"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",
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" \"nyc/**\"",
"eslint": "eslint src",
"eslint:fix": "eslint src --fix",
"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 bin/run",
"test": "mocha --recursive \"dist/test/**/*.test.*js\"",
"tsc": "tsc"
},
"dependencies": {
"@fluidframework/core-interfaces": "^2.0.0-rc.1.0.4",
"@fluidframework/test-driver-definitions": "^2.0.0-rc.1.0.4",
"@oclif/core": "^1.12.0",
"applicationinsights": "^2.4.1"
},
"devDependencies": {
"@fluid-internal/mocha-test-setup": "^2.3.1",
"@fluidframework/build-common": "^2.0.1",
"@fluidframework/eslint-config-fluid": "^5.2.0",
"@types/mocha": "^10.0.9",
"@types/node": "^14.18.0",
"@types/sinon": "^17.0.3",
"concurrently": "^8.2.1",
"eslint": "~8.55.0",
"mocha": "^10.7.3",
"mocha-multi-reporters": "^1.5.1",
"prettier": "~3.0.3",
"rimraf": "^2.6.2",
"sinon": "^19.0.2",
"typescript": "~4.5.5"
},
"oclif": {
"default": ".",
"commands": "./dist/commands",
"additionalHelpFlags": [
"-h"
],
"additionalVersionFlags": [
"-v"
]
}
}