mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
4b308553be
[misc] move the linting setup to the root of the monorepo GitOrigin-RevId: 1633e2a58598add0b727738cd3bfba0ab7bae781
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.2.0",
|
|
"mocha": "^8.0.1",
|
|
"sandboxed-module": "^2.0.4",
|
|
"sinon": "^9.0.2"
|
|
},
|
|
"scripts": {
|
|
"lint": "../../node_modules/.bin/eslint --max-warnings 0 --format unix .",
|
|
"lint:fix": "../../node_modules/.bin/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": "../../node_modules/.bin/prettier --list-different $PWD/'**/*.js'",
|
|
"format:fix": "../../node_modules/.bin/prettier --write $PWD/'**/*.js'",
|
|
"test:ci": "npm run test"
|
|
},
|
|
"peerDependencies": {
|
|
"@overleaf/logger": ">= 3.0.0"
|
|
}
|
|
}
|