package.json 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. {
  2. "_args": [
  3. [
  4. "ioredis@4.28.5",
  5. "/Users/zhanwencai/code/game/congkong/webServer"
  6. ]
  7. ],
  8. "_from": "ioredis@4.28.5",
  9. "_id": "ioredis@4.28.5",
  10. "_inBundle": false,
  11. "_integrity": "sha512-3GYo0GJtLqgNXj4YhrisLaNNvWSNwSS2wS4OELGfGxH8I69+XfNdnmV1AyN+ZqMh0i7eX+SWjrwFKDBDgfBC1A==",
  12. "_location": "/ioredis",
  13. "_phantomChildren": {},
  14. "_requested": {
  15. "type": "version",
  16. "registry": true,
  17. "raw": "ioredis@4.28.5",
  18. "name": "ioredis",
  19. "escapedName": "ioredis",
  20. "rawSpec": "4.28.5",
  21. "saveSpec": null,
  22. "fetchSpec": "4.28.5"
  23. },
  24. "_requiredBy": [
  25. "/koa-redis"
  26. ],
  27. "_resolved": "https://registry.npmmirror.com/ioredis/-/ioredis-4.28.5.tgz",
  28. "_spec": "4.28.5",
  29. "_where": "/Users/zhanwencai/code/game/congkong/webServer",
  30. "author": {
  31. "name": "luin",
  32. "email": "i@zihua.li",
  33. "url": "http://zihua.li"
  34. },
  35. "bugs": {
  36. "url": "https://github.com/luin/ioredis/issues"
  37. },
  38. "config": {
  39. "commitizen": {
  40. "path": "./node_modules/cz-conventional-changelog"
  41. }
  42. },
  43. "dependencies": {
  44. "cluster-key-slot": "^1.1.0",
  45. "debug": "^4.3.1",
  46. "denque": "^1.1.0",
  47. "lodash.defaults": "^4.2.0",
  48. "lodash.flatten": "^4.4.0",
  49. "lodash.isarguments": "^3.1.0",
  50. "p-map": "^2.1.0",
  51. "redis-commands": "1.7.0",
  52. "redis-errors": "^1.2.0",
  53. "redis-parser": "^3.0.0",
  54. "standard-as-callback": "^2.1.0"
  55. },
  56. "description": "A robust, performance-focused and full-featured Redis client for Node.js.",
  57. "devDependencies": {
  58. "@semantic-release/changelog": "^5.0.1",
  59. "@semantic-release/git": "^9.0.0",
  60. "@types/bluebird": "^3.5.30",
  61. "@types/chai": "^4.2.11",
  62. "@types/chai-as-promised": "^7.1.3",
  63. "@types/debug": "^4.1.5",
  64. "@types/lodash.defaults": "^4.2.6",
  65. "@types/lodash.flatten": "^4.4.6",
  66. "@types/lodash.isarguments": "^3.1.6",
  67. "@types/mocha": "^7.0.2",
  68. "@types/node": "^13.11.0",
  69. "@types/redis-errors": "1.2.0",
  70. "@types/sinon": "^9.0.0",
  71. "@types/uuid": "^8.3.0",
  72. "@typescript-eslint/eslint-plugin": "^1.13.0",
  73. "@typescript-eslint/parser": "^2.26.0",
  74. "bluebird": "^3.7.2",
  75. "chai": "^4.2.0",
  76. "chai-as-promised": "^7.1.1",
  77. "cronometro": "^0.6.0",
  78. "cz-conventional-changelog": "^3.1.0",
  79. "eslint": "^5.16.0",
  80. "eslint-config-prettier": "^6.10.1",
  81. "husky": "^4.2.3",
  82. "mocha": "^6.2.3",
  83. "prettier": "^2.0.2",
  84. "pretty-quick": "^2.0.1",
  85. "server-destroy": "^1.0.1",
  86. "sinon": "^9.0.1",
  87. "ts-node": "^8.8.1",
  88. "typescript": "3.8.3",
  89. "uuid": "^8.3.0"
  90. },
  91. "engines": {
  92. "node": ">=6"
  93. },
  94. "files": [
  95. "built/"
  96. ],
  97. "funding": {
  98. "type": "opencollective",
  99. "url": "https://opencollective.com/ioredis"
  100. },
  101. "homepage": "https://github.com/luin/ioredis#readme",
  102. "husky": {
  103. "hooks": {
  104. "pre-commit": "pretty-quick --staged"
  105. }
  106. },
  107. "keywords": [
  108. "redis",
  109. "cluster",
  110. "sentinel",
  111. "pipelining"
  112. ],
  113. "license": "MIT",
  114. "main": "built/index.js",
  115. "mocha": {
  116. "exit": true,
  117. "timeout": 8000,
  118. "recursive": true,
  119. "require": "ts-node/register"
  120. },
  121. "name": "ioredis",
  122. "repository": {
  123. "type": "git",
  124. "url": "git://github.com/luin/ioredis.git"
  125. },
  126. "scripts": {
  127. "build": "rm -rf built && tsc",
  128. "format": "prettier --write \"{,!(node_modules)/**/}*.{js,ts}\"",
  129. "format-check": "prettier --check \"{,!(node_modules)/**/}*.{js,ts}\"",
  130. "lint": "eslint --ext .js,.ts .",
  131. "prepublishOnly": "npm run build && npm test",
  132. "semantic-release": "semantic-release",
  133. "test": "TS_NODE_TRANSPILE_ONLY=true TS_NODE_LOG_ERROR=true NODE_ENV=test mocha \"test/helpers/*.ts\" \"test/**/*.ts\"",
  134. "test-single": "TS_NODE_TRANSPILE_ONLY=true TS_NODE_LOG_ERROR=true NODE_ENV=test mocha \"test/helpers/*.ts\" $1"
  135. },
  136. "version": "4.28.5"
  137. }