@depup/ioredis-mock 8.13.1-depup.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,161 @@
1
+ {
2
+ "name": "@depup/ioredis-mock",
3
+ "version": "8.13.1-depup.0",
4
+ "description": "This library emulates ioredis by performing all operations in-memory. (with updated dependencies)",
5
+ "keywords": [
6
+ "ioredis-mock",
7
+ "depup",
8
+ "updated-dependencies",
9
+ "security",
10
+ "latest",
11
+ "patched",
12
+ "fakeredis",
13
+ "in-memory",
14
+ "ioredis",
15
+ "mock-ioredis",
16
+ "mock-redis",
17
+ "redis",
18
+ "redis fake",
19
+ "redis inmemory",
20
+ "redis js",
21
+ "redis memory",
22
+ "redis mock",
23
+ "redis standalone",
24
+ "redis test",
25
+ "redis testing",
26
+ "redis-js",
27
+ "redis-mock",
28
+ "redisjs"
29
+ ],
30
+ "homepage": "https://github.com/stipsan/ioredis-mock#readme",
31
+ "bugs": {
32
+ "url": "https://github.com/stipsan/ioredis-mock/issues"
33
+ },
34
+ "repository": {
35
+ "type": "git",
36
+ "url": "git+https://github.com/stipsan/ioredis-mock.git"
37
+ },
38
+ "license": "MIT",
39
+ "author": "Cody Olsen <stipsan@gmail.com>",
40
+ "main": "./lib",
41
+ "unpkg": "./browser.js",
42
+ "browser": {
43
+ "stream": "stream-browserify",
44
+ "crypto": "crypto-browserify",
45
+ "./lib": "./browser.js"
46
+ },
47
+ "files": [
48
+ "data/",
49
+ "lib/",
50
+ "browser.js",
51
+ "browser.js.map",
52
+ "compat.md",
53
+ "example.js",
54
+ "changes.json",
55
+ "README.md"
56
+ ],
57
+ "scripts": {
58
+ "build:browser.js": "esbuild src/index.js --bundle --format=esm --outfile=browser.js --define:process=undefined --define:global.process=undefined --define:process.env.FENGARICONF=undefined --define:global=window --define:process.browser=true --define:process.nextTick=nextTickShim --define:process.hrtime=hrtimeShim --define:setImmediate=nextTickShim --inject:./browser-shims.js --minify-syntax --sourcemap --external:ioredis/built/command --external:fs --external:path",
59
+ "build:lib": "npx rimraf lib && esbuild src/index.js --outfile=lib/index.js --platform=node --target=node12 --bundle --external:fengari --external:fengari-interop --external:@ioredis/commands --external:@ioredis/as-callback --external:ioredis --external:./data/*.json --sourcemap --minify-syntax",
60
+ "precoverage": "npx rimraf coverage && npx mkdirp coverage",
61
+ "coverage": "jest --coverage",
62
+ "lint": "eslint .",
63
+ "lint:fix": "prettier --write . && eslint . --fix",
64
+ "test": "jest",
65
+ "posttest": "npm run build:lib && npm run test:integration && npm run build:browser.js && npm run test:browser.js",
66
+ "test:browser.js": "IS_BROWSER=true jest --config jest.config.browser.js",
67
+ "test:e2e": "IS_E2E=true jest --config jest.config.redis.js --runInBand",
68
+ "test:integration": "jest --config jest.config.integration.js",
69
+ "update-compat": "node scripts/update-compat && npx prettier --write compat.md && git add compat.md README.md && git commit --quiet -m \"docs: Update feature compat table\" &> /dev/null || true",
70
+ "update-data": "node scripts/update-data",
71
+ "release": "changeset publish"
72
+ },
73
+ "prettier": {
74
+ "arrowParens": "avoid",
75
+ "semi": false,
76
+ "singleQuote": true,
77
+ "trailingComma": "es5"
78
+ },
79
+ "dependencies": {
80
+ "@ioredis/as-callback": "^3.0.0",
81
+ "@ioredis/commands": "^1.5.1",
82
+ "fengari": "^0.1.5",
83
+ "fengari-interop": "^0.1.4",
84
+ "semver": "^7.7.4"
85
+ },
86
+ "devDependencies": {
87
+ "@babel/cli": "^7.28.3",
88
+ "@babel/core": "^7.28.4",
89
+ "@babel/eslint-parser": "^7.28.4",
90
+ "@babel/preset-env": "^7.28.3",
91
+ "@babel/register": "^7.28.3",
92
+ "@changesets/changelog-github": "^0.5.1",
93
+ "@changesets/cli": "^2.29.7",
94
+ "browser-process-hrtime": "^1.0.0",
95
+ "buffer": "^6.0.3",
96
+ "chance": "^1.1.13",
97
+ "crypto-browserify": "^3.12.1",
98
+ "esbuild": "^0.25.10",
99
+ "eslint": "^8.57.1",
100
+ "eslint-config-airbnb-base": "^15.0.0",
101
+ "eslint-config-prettier": "^9.1.2",
102
+ "eslint-plugin-import": "^2.32.0",
103
+ "eslint-plugin-jest": "^27.9.0",
104
+ "eslint-plugin-simple-import-sort": "^10.0.0",
105
+ "events": "^3.3.0",
106
+ "ioredis": "^5.8.0",
107
+ "jest": "^29.7.0",
108
+ "jest-buffer-snapshot-serializer": "^1.0.0",
109
+ "jest-circus": "^29.7.0",
110
+ "jest-environment-jsdom": "^29.7.0",
111
+ "lodash.intersectionby": "^4.7.0",
112
+ "lodash.isplainobject": "^4.0.6",
113
+ "lodash.orderby": "^4.6.0",
114
+ "lodash.shuffle": "^4.2.0",
115
+ "lodash.sortby": "^4.7.0",
116
+ "lodash.zipobject": "^4.1.3",
117
+ "ls-engines": "^0.9.3",
118
+ "mkdirp": "^3.0.1",
119
+ "prettier": "^3.6.2",
120
+ "prettier-plugin-packagejson": "^2.5.19",
121
+ "setimmediate": "^1.0.5",
122
+ "stream-browserify": "^3.0.0",
123
+ "stream-mock": "^2.0.5",
124
+ "url": "^0.11.4",
125
+ "write-file-atomic": "^5.0.1"
126
+ },
127
+ "peerDependencies": {
128
+ "@types/ioredis-mock": "^8",
129
+ "ioredis": "^5"
130
+ },
131
+ "engines": {
132
+ "node": ">=12.22"
133
+ },
134
+ "runkitExampleFilename": "example.js",
135
+ "packageManager": "npm@11.6.1",
136
+ "depup": {
137
+ "changes": {
138
+ "@ioredis/commands": {
139
+ "from": "^1.4.0",
140
+ "to": "^1.5.1"
141
+ },
142
+ "fengari": {
143
+ "from": "^0.1.4",
144
+ "to": "^0.1.5"
145
+ },
146
+ "fengari-interop": {
147
+ "from": "^0.1.3",
148
+ "to": "^0.1.4"
149
+ },
150
+ "semver": {
151
+ "from": "^7.7.2",
152
+ "to": "^7.7.4"
153
+ }
154
+ },
155
+ "depsUpdated": 4,
156
+ "originalPackage": "ioredis-mock",
157
+ "originalVersion": "8.13.1",
158
+ "processedAt": "2026-03-19T03:04:17.264Z",
159
+ "smokeTest": "passed"
160
+ }
161
+ }