forked from yeahoffline/redis-mock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.57 KB
/
package.json
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
{
"name": "redis-mock",
"version": "0.56.3",
"description": "Redis client mock object for unit testing",
"author": "Kristian Faeldt <[email protected]>",
"main": "./lib/index",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yeahoffline/redis-mock"
},
"devDependencies": {
"eslint": "^5.16.0",
"mocha": "6.2.3",
"redis": "^3.0.2",
"rsmq": "^0.12.2",
"should": "13.2.3"
},
"scripts": {
"test": "mocha --timeout 5000 --recursive",
"test:valid": "VALID_TESTS=true npm run test -- --exit",
"lint": "eslint ./lib ./test",
"preversion": "node ./bin/updateMockedCoverage.js"
},
"files": [
"lib"
],
"keywords": [
"redis",
"redis-mock",
"mock-redis",
"redis test",
"redis mock",
"redis testing",
"redis fake",
"redis-js",
"redis js",
"redisjs",
"redis standalone",
"redis inmemory",
"redis memory",
"in-memory"
],
"contributors": [
"lahabana (Charly Molter) <[email protected]>",
"yeahoffline (Frank) <[email protected]>",
"cmawhorter (cory) <[email protected]>",
"pmarques (Patrick Marques) <>",
"matthewmatician (Matthew Larson) <[email protected]>",
"christian-muertz (Christian Mürtz) <[email protected]>",
"DawidLoubser (Dawid Loubser) <[email protected]>",
"kamiljano (Kamil Janowski) <[email protected]>"
],
"bugs": {
"url": "https://github.com/yeahoffline/redis-mock/issues",
"email": "[email protected]"
},
"engines": {
"node": ">=6"
}
}