2014-09-25 12:33:27 -04:00
|
|
|
{
|
2020-11-09 12:51:06 -05:00
|
|
|
"name": "@overleaf/redis-wrapper",
|
2021-10-28 09:10:45 -04:00
|
|
|
"version": "2.1.0",
|
2020-11-09 12:45:59 -05:00
|
|
|
"description": "Redis wrapper for node which will either use cluster or single instance redis",
|
2014-11-07 10:02:45 -05:00
|
|
|
"main": "index.js",
|
2020-11-09 12:45:59 -05:00
|
|
|
"files": [
|
|
|
|
"index.js",
|
|
|
|
"Errors.js"
|
|
|
|
],
|
|
|
|
"author": "Overleaf (https://www.overleaf.com)",
|
|
|
|
"repository": "github:overleaf/redis-wrapper",
|
2014-09-25 12:33:27 -04:00
|
|
|
"license": "ISC",
|
2020-11-09 11:03:33 -05:00
|
|
|
"scripts": {
|
2021-10-27 05:50:17 -04:00
|
|
|
"lint": "eslint --max-warnings 0 --format unix .",
|
|
|
|
"lint:fix": "eslint --fix .",
|
2020-11-09 11:19:05 -05:00
|
|
|
"format": "prettier-eslint $PWD'/**/*.js' --list-different",
|
|
|
|
"format:fix": "prettier-eslint $PWD'/**/*.js' --write",
|
2021-08-10 12:58:29 -04:00
|
|
|
"test": "mocha --recursive test/unit/src/",
|
|
|
|
"test:ci": "npm run test"
|
2020-11-09 11:03:33 -05:00
|
|
|
},
|
2020-11-10 05:34:06 -05:00
|
|
|
"peerDependencies": {
|
|
|
|
"@overleaf/o-error": "^3.1.0"
|
|
|
|
},
|
2014-09-25 12:33:27 -04:00
|
|
|
"dependencies": {
|
2021-04-29 04:20:58 -04:00
|
|
|
"ioredis": "~4.27.1"
|
2017-10-24 05:46:38 -04:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-04-29 04:20:58 -04:00
|
|
|
"@overleaf/o-error": "^3.3.1",
|
|
|
|
"chai": "^4.3.4",
|
2020-11-09 11:19:05 -05:00
|
|
|
"eslint": "^6.8.0",
|
|
|
|
"eslint-config-prettier": "^6.10.1",
|
|
|
|
"eslint-config-standard": "^14.1.1",
|
|
|
|
"eslint-plugin-chai-expect": "^2.1.0",
|
|
|
|
"eslint-plugin-chai-friendly": "^0.5.0",
|
|
|
|
"eslint-plugin-import": "^2.20.2",
|
|
|
|
"eslint-plugin-mocha": "^6.3.0",
|
|
|
|
"eslint-plugin-node": "^11.1.0",
|
2021-04-29 04:20:58 -04:00
|
|
|
"eslint-plugin-prettier": "^3.4.0",
|
|
|
|
"eslint-plugin-promise": "^4.3.1",
|
|
|
|
"eslint-plugin-standard": "^4.1.0",
|
2021-10-28 05:23:06 -04:00
|
|
|
"@overleaf/logger": "^2.3.0",
|
2021-04-29 04:20:58 -04:00
|
|
|
"mocha": "^8.3.2",
|
|
|
|
"prettier": "^2.2.1",
|
|
|
|
"prettier-eslint-cli": "^5.0.1",
|
2020-11-09 11:03:33 -05:00
|
|
|
"sandboxed-module": "^2.0.4",
|
2021-04-29 04:20:58 -04:00
|
|
|
"sinon": "^9.2.4"
|
2014-09-25 12:33:27 -04:00
|
|
|
}
|
2020-06-01 04:11:57 -04:00
|
|
|
}
|