package.json 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. {
  2. "name": "ioredis",
  3. "version": "4.28.5",
  4. "description": "A robust, performance-focused and full-featured Redis client for Node.js.",
  5. "main": "built/index.js",
  6. "files": [
  7. "built/"
  8. ],
  9. "scripts": {
  10. "test": "TS_NODE_TRANSPILE_ONLY=true TS_NODE_LOG_ERROR=true NODE_ENV=test mocha \"test/helpers/*.ts\" \"test/**/*.ts\"",
  11. "test-single": "TS_NODE_TRANSPILE_ONLY=true TS_NODE_LOG_ERROR=true NODE_ENV=test mocha \"test/helpers/*.ts\" $1",
  12. "lint": "eslint --ext .js,.ts .",
  13. "format": "prettier --write \"{,!(node_modules)/**/}*.{js,ts}\"",
  14. "format-check": "prettier --check \"{,!(node_modules)/**/}*.{js,ts}\"",
  15. "build": "rm -rf built && tsc",
  16. "prepublishOnly": "npm run build && npm test",
  17. "semantic-release": "semantic-release"
  18. },
  19. "repository": {
  20. "type": "git",
  21. "url": "git://github.com/luin/ioredis.git"
  22. },
  23. "keywords": [
  24. "redis",
  25. "cluster",
  26. "sentinel",
  27. "pipelining"
  28. ],
  29. "author": "luin <i@zihua.li> (http://zihua.li)",
  30. "license": "MIT",
  31. "funding": {
  32. "type": "opencollective",
  33. "url": "https://opencollective.com/ioredis"
  34. },
  35. "dependencies": {
  36. "cluster-key-slot": "^1.1.0",
  37. "debug": "^4.3.1",
  38. "denque": "^1.1.0",
  39. "lodash.defaults": "^4.2.0",
  40. "lodash.flatten": "^4.4.0",
  41. "lodash.isarguments": "^3.1.0",
  42. "p-map": "^2.1.0",
  43. "redis-commands": "1.7.0",
  44. "redis-errors": "^1.2.0",
  45. "redis-parser": "^3.0.0",
  46. "standard-as-callback": "^2.1.0"
  47. },
  48. "devDependencies": {
  49. "@semantic-release/changelog": "^5.0.1",
  50. "@semantic-release/git": "^9.0.0",
  51. "@types/bluebird": "^3.5.30",
  52. "@types/chai": "^4.2.11",
  53. "@types/chai-as-promised": "^7.1.3",
  54. "@types/debug": "^4.1.5",
  55. "@types/lodash.defaults": "^4.2.6",
  56. "@types/lodash.flatten": "^4.4.6",
  57. "@types/lodash.isarguments": "^3.1.6",
  58. "@types/mocha": "^7.0.2",
  59. "@types/node": "^13.11.0",
  60. "@types/redis-errors": "1.2.0",
  61. "@types/sinon": "^9.0.0",
  62. "@types/uuid": "^8.3.0",
  63. "@typescript-eslint/eslint-plugin": "^1.13.0",
  64. "@typescript-eslint/parser": "^2.26.0",
  65. "bluebird": "^3.7.2",
  66. "chai": "^4.2.0",
  67. "chai-as-promised": "^7.1.1",
  68. "cronometro": "^0.6.0",
  69. "cz-conventional-changelog": "^3.1.0",
  70. "eslint": "^5.16.0",
  71. "eslint-config-prettier": "^6.10.1",
  72. "husky": "^4.2.3",
  73. "mocha": "^6.2.3",
  74. "prettier": "^2.0.2",
  75. "pretty-quick": "^2.0.1",
  76. "server-destroy": "^1.0.1",
  77. "sinon": "^9.0.1",
  78. "ts-node": "^8.8.1",
  79. "typescript": "3.8.3",
  80. "uuid": "^8.3.0"
  81. },
  82. "engines": {
  83. "node": ">=6"
  84. },
  85. "config": {
  86. "commitizen": {
  87. "path": "./node_modules/cz-conventional-changelog"
  88. }
  89. },
  90. "husky": {
  91. "hooks": {
  92. "pre-commit": "pretty-quick --staged"
  93. }
  94. },
  95. "mocha": {
  96. "exit": true,
  97. "timeout": 8000,
  98. "recursive": true,
  99. "require": "ts-node/register"
  100. }
  101. }