overleaf/libraries/logger/package.json

50 lines
1.4 KiB
JSON
Raw Normal View History

2014-02-17 09:54:20 -05:00
{
"name": "@overleaf/logger",
"homepage": "www.overleaf.com",
"description": "A centralised logging system for Overleaf",
2014-08-19 08:27:58 -04:00
"repository": {
2015-06-16 11:50:18 -04:00
"type": "git",
"url": "https://github.com/overleaf/overleaf"
2014-08-19 08:27:58 -04:00
},
2019-07-11 08:07:47 -04:00
"license": "AGPL-3.0-only",
"version": "3.0.0",
"scripts": {
2020-07-08 06:22:54 -04:00
"test": "mocha --grep=$MOCHA_GREP test/**/*.js",
"format": "prettier-eslint $PWD'/**/*.js' --list-different",
"format:fix": "prettier-eslint $PWD'/**/*.js' --write",
"lint": "eslint --max-warnings 0 --format unix .",
"lint:fix": "eslint --fix .",
"test:ci": "npm run test"
},
2014-02-17 09:54:20 -05:00
"dependencies": {
"@google-cloud/logging-bunyan": "^3.1.0",
2020-06-03 04:19:45 -04:00
"@overleaf/o-error": "^3.0.0",
"@sentry/node": "^6.13.2",
2020-07-02 06:08:10 -04:00
"bunyan": "^1.8.14",
"node-fetch": "^2.6.1",
2020-07-02 06:08:10 -04:00
"yn": "^4.0.0"
},
"devDependencies": {
2020-07-02 05:46:37 -04:00
"chai": "^4.2.0",
2020-07-02 07:15:22 -04:00
"eslint": "^7.3.1",
2020-07-02 05:46:37 -04:00
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-chai-expect": "^2.1.0",
"eslint-plugin-chai-friendly": "^0.6.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-mocha": "^7.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^8.4.0",
2020-07-02 06:00:28 -04:00
"prettier": "^2.0.5",
"prettier-eslint-cli": "^5.0.0",
2020-07-02 06:04:21 -04:00
"sandboxed-module": "^2.0.4",
"sinon": "^9.0.2",
"sinon-chai": "^3.5.0"
},
"peerDependencies": {
"@overleaf/metrics": ">= 4.0.0"
2014-02-17 09:54:20 -05:00
}
}