forked from rv-kip/express-redis-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.58 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
{
"name": "express-redis-cache",
"version": "0.1.9",
"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 --check-leaks -R nyan test"
},
"repository": {
"type": "git",
"url": "https://github.com/co2-git/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"
}
],
"license": "BSD",
"dependencies": {
"async": "~0.9.0",
"colors": "^1.0.3",
"redis": "^0.12.1"
},
"directories": {
"test": "test"
},
"config": {
"prefix": "erc:",
"type": "text/html"
},
"devDependencies": {
"body-parser": "~1.12.0",
"method-override": "~2.3.1",
"request": "~2.53.0",
"express": "~4.11.2",
"mocha": "~2.1.0",
"should": "~5.0.0",
"moment": "^2.9.0"
}
}