mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
ae0c347f27
[misc] npm workspaces GitOrigin-RevId: 87aa72db6637fb238d7cd35b0a48ac3ed58ab3eb
37 lines
1.2 KiB
JSON
37 lines
1.2 KiB
JSON
{
|
|
"name": "@overleaf/metrics",
|
|
"version": "4.0.0",
|
|
"description": "A drop-in metrics and monitoring module for node.js apps",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/overleaf/metrics-module.git"
|
|
},
|
|
"dependencies": {
|
|
"@google-cloud/debug-agent": "^5.1.2",
|
|
"@google-cloud/profiler": "^4.1.3",
|
|
"@google-cloud/trace-agent": "^5.1.1",
|
|
"compression": "^1.7.4",
|
|
"prom-client": "^11.1.3",
|
|
"yn": "^3.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"bunyan": "^1.0.0",
|
|
"chai": "^4.3.6",
|
|
"mocha": "^8.4.0",
|
|
"sandboxed-module": "^2.0.4",
|
|
"sinon": "^9.2.4"
|
|
},
|
|
"scripts": {
|
|
"lint": "eslint --max-warnings 0 --format unix .",
|
|
"lint:fix": "eslint --fix .",
|
|
"test:unit": "mocha --reporter spec --recursive --exit --grep=$MOCHA_GREP test/unit",
|
|
"test:acceptance": "mocha --reporter spec --recursive --exit --grep=$MOCHA_GREP test/acceptance",
|
|
"test": "npm run test:unit && npm run test:acceptance",
|
|
"format": "prettier --list-different $PWD/'**/*.js'",
|
|
"format:fix": "prettier --write $PWD/'**/*.js'",
|
|
"test:ci": "npm run test"
|
|
},
|
|
"peerDependencies": {
|
|
"@overleaf/logger": ">= 3.0.0"
|
|
}
|
|
}
|