1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
| {
| "_args": [
| [
| "ioredis@4.14.1",
| "E:\\ximenzi\\wms\\old\\api"
| ]
| ],
| "_from": "ioredis@4.14.1",
| "_id": "ioredis@4.14.1",
| "_inBundle": false,
| "_integrity": "sha512-94W+X//GHM+1GJvDk6JPc+8qlM7Dul+9K+lg3/aHixPN7ZGkW6qlvX0DG6At9hWtH2v3B32myfZqWoANUJYGJA==",
| "_location": "/ioredis",
| "_phantomChildren": {},
| "_requested": {
| "type": "version",
| "registry": true,
| "raw": "ioredis@4.14.1",
| "name": "ioredis",
| "escapedName": "ioredis",
| "rawSpec": "4.14.1",
| "saveSpec": null,
| "fetchSpec": "4.14.1"
| },
| "_requiredBy": [
| "/egg-redis"
| ],
| "_resolved": "https://registry.npmjs.org/ioredis/-/ioredis-4.14.1.tgz",
| "_spec": "4.14.1",
| "_where": "E:\\ximenzi\\wms\\old\\api",
| "author": {
| "name": "luin",
| "email": "i@zihua.li",
| "url": "http://zihua.li"
| },
| "bugs": {
| "url": "https://github.com/luin/ioredis/issues"
| },
| "config": {
| "commitizen": {
| "path": "./node_modules/cz-conventional-changelog"
| }
| },
| "dependencies": {
| "cluster-key-slot": "^1.1.0",
| "debug": "^4.1.1",
| "denque": "^1.1.0",
| "lodash.defaults": "^4.2.0",
| "lodash.flatten": "^4.4.0",
| "redis-commands": "1.5.0",
| "redis-errors": "^1.2.0",
| "redis-parser": "^3.0.0",
| "standard-as-callback": "^2.0.1"
| },
| "description": "A robust, performance-focused and full-featured Redis client for Node.js.",
| "devDependencies": {
| "@semantic-release/changelog": "^3.0.4",
| "@semantic-release/git": "^7.0.12",
| "@types/bluebird": "^3.5.27",
| "@types/chai": "^4.1.7",
| "@types/debug": "^4.1.4",
| "@types/lodash.defaults": "^4.2.6",
| "@types/lodash.flatten": "^4.4.6",
| "@types/mocha": "^5.2.7",
| "@types/node": "^12.0.2",
| "@types/redis-errors": "1.2.0",
| "@types/sinon": "^7.0.13",
| "@typescript-eslint/eslint-plugin": "^1.11.0",
| "@typescript-eslint/parser": "^1.11.0",
| "bluebird": "^3.5.4",
| "chai": "^4.2.0",
| "cz-conventional-changelog": "^2.0.0",
| "eslint": "^5.16.0",
| "eslint-config-prettier": "^5.1.0",
| "husky": "^2.5.0",
| "istanbul": "^0.4.5",
| "mocha": "^5.0.0",
| "prettier": "^1.18.2",
| "pretty-quick": "^1.11.1",
| "server-destroy": "^1.0.1",
| "sinon": "^7.3.2",
| "ts-node": "^8.1.0",
| "typescript": "^3.5.1"
| },
| "engines": {
| "node": ">=6"
| },
| "files": [
| "built/"
| ],
| "homepage": "https://github.com/luin/ioredis#readme",
| "husky": {
| "hooks": {
| "pre-commit": "pretty-quick --staged"
| }
| },
| "keywords": [
| "redis",
| "cluster",
| "sentinel",
| "pipelining"
| ],
| "license": "MIT",
| "main": "built/index.js",
| "name": "ioredis",
| "repository": {
| "type": "git",
| "url": "git://github.com/luin/ioredis.git"
| },
| "scripts": {
| "bench": "matcha benchmarks/*.js",
| "build": "rm -rf built && tsc",
| "format": "prettier --write \"{,!(node_modules)/**/}*.{js,ts}\"",
| "format-check": "prettier --check \"{,!(node_modules)/**/}*.{js,ts}\"",
| "lint": "eslint --ext .js,.ts .",
| "prepublishOnly": "npm run build && npm test",
| "semantic-release": "semantic-release",
| "test": "TS_NODE_TRANSPILE_ONLY=true TS_NODE_LOG_ERROR=true NODE_ENV=test mocha \"test/**/*.ts\"",
| "test:cov": "TS_NODE_TRANSPILE_ONLY=true TS_NODE_LOG_ERROR=true NODE_ENV=test node ./node_modules/istanbul/lib/cli.js cover --preserve-comments ./node_modules/mocha/bin/_mocha -- -r ts-node/register -R spec --exit \"test/**/*.ts\""
| },
| "version": "4.14.1"
| }
|
|