forked from rv-kip/express-redis-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.74 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "express-redis-cache",
"version": "1.1.3",
"description": "A module to make Express interact with Redis (create, get, delete). You can automatically cache all your most popular routes in Redis.",
"main": "index.js",
"bin": {
"express-redis-cache": "bin/express-redis-cache.js"
},
"scripts": {
"test": "mocha --exit --check-leaks -R nyan test"
},
"repository": {
"type": "git",
"url": "https://github.com/rv-kip/express-redis-cache.git"
},
"author": {
"name": "Francois Vespa",
"url": "https://github.com/co2-git"
},
"contributors": [
{
"name": "faceair",
"url": "https://github.com/faceair"
},
{
"name": "barwin",
"url": "https://github.com/barwin"
},
{
"name": "rv-kip",
"url": "https://github.com/rv-kip"
},
{
"name": "amaurigabriel",
"url": "https://github.com/amaurigabriel"
},
{
"name": "benmcmeen",
"url": "https://github.com/benmcmeen"
},
{
"name": "pwmckenna",
"url": "https://github.com/pwmckenna"
},
{
"name": "ramanpreetnara",
"url": "https://github.com/ramanpreetnara"
},
{
"name": "mdbox",
"url": "https://github.com/mdbox"
},
{
"name": "dam1",
"url": "https://github.com/dam1"
}
],
"license": "MIT",
"dependencies": {
"async": "^2.6.1",
"colors": "^1.3.0",
"redis": "^2.4.2"
},
"directories": {
"test": "test"
},
"config": {
"prefix": "erc:",
"type": "text/html"
},
"devDependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.3",
"method-override": "^2.3.10",
"mocha": "^5.2.0",
"moment": "^2.22.2",
"request": "^2.87.0",
"should": "^13.2.1"
}
}