forked from pconstr/redis-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.07 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
{
"name": "redis-sync",
"version": "0.1.4",
"keywords": ["redis", "slave", "replication", "sync"],
"homepage": "https://github.com/pconstr/redis-sync",
"description": "redis replication slave",
"main": "redis-sync.js",
"repository": {
"type": "git",
"url": "https://github.com/pconstr/redis-sync"
},
"engines": {
"node": ">=0.4.0 <0.9.0"
},
"author": "Carlos Guerreiro <[email protected] (http://perceptiveconstructs.com)",
"dependencies": {"rdb-parser": "0.1.5", "bufferjs": "1.1.0"},
"devDependencies": {"rawhash": "0.1.6"},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
}
],
"bugs" : { "url" : "https://github.com/pconstr/redis-sync/issues" },
"contributors": [
{
"name": "Carlos Guerreiro",
"email": "[email protected]",
"web": "http://perceptiveconstructs.com"
},
{
"name": "Carlos Guerreiro",
"email": "[email protected]",
"web": "http://igalia.com"
}
],
"scripts": {
"test": "./tests/redisTest"
}
}