mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
ae0c347f27
[misc] npm workspaces GitOrigin-RevId: 87aa72db6637fb238d7cd35b0a48ac3ed58ab3eb
35 lines
961 B
JSON
35 lines
961 B
JSON
{
|
|
"name": "@overleaf/redis-wrapper",
|
|
"version": "2.1.0",
|
|
"description": "Redis wrapper for node which will either use cluster or single instance redis",
|
|
"main": "index.js",
|
|
"files": [
|
|
"index.js",
|
|
"Errors.js"
|
|
],
|
|
"author": "Overleaf (https://www.overleaf.com)",
|
|
"repository": "github:overleaf/redis-wrapper",
|
|
"license": "ISC",
|
|
"scripts": {
|
|
"lint": "eslint --max-warnings 0 --format unix .",
|
|
"lint:fix": "eslint --fix .",
|
|
"format": "prettier --list-different $PWD/'**/*.js'",
|
|
"format:fix": "prettier --write $PWD/'**/*.js'",
|
|
"test": "mocha --recursive test/unit/src/",
|
|
"test:ci": "npm run test"
|
|
},
|
|
"peerDependencies": {
|
|
"@overleaf/o-error": "^3.4.0"
|
|
},
|
|
"dependencies": {
|
|
"ioredis": "~4.27.1"
|
|
},
|
|
"devDependencies": {
|
|
"@overleaf/o-error": "^3.4.0",
|
|
"chai": "^4.3.6",
|
|
"@overleaf/logger": "^2.3.0",
|
|
"mocha": "^8.4.0",
|
|
"sandboxed-module": "^2.0.4",
|
|
"sinon": "^9.2.4"
|
|
}
|
|
}
|