-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 941 Bytes
/
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
{
"name": "grunt-redis-clear",
"description": "A Grunt plugin to clear keys from your redis database, automatically, when using redis as a cache engine.",
"version": "2.0.0",
"homepage": "https://github.com/urbanhire/grunt-clear-redis",
"author": {
"name": "Juan I. Benavides",
"email": "[email protected]",
"url": "http://lionwriter.com"
},
"repository": {
"type": "git",
"url": "git://github.com/urbanhire/grunt-clear-redis.git"
},
"bugs": {
"url": "https://github.com/urbanhire/grunt-clear-redis/issues"
},
"license": "MIT",
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"test": "grunt test"
},
"devDependencies": {
"grunt-contrib-jshint": "^1.1.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-nodeunit": "^1.0.0",
"grunt": "~1.0.1"
},
"keywords": [
"gruntplugin redis clear flush cache"
],
"dependencies": {
"redis": "^2.6.5"
}
}