-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
41 lines (41 loc) · 1.17 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
{
"name": "rdb-parser",
"version": "0.1.5",
"keywords": ["redis", "rdb", "db", "parser", "streaming"],
"homepage": "http://perceptiveconstructs.com",
"description": "async streaming parser for redis RDB dumps",
"main": "rdb-parser.js",
"repository": {
"type": "git",
"url": "https://github.com/pconstr/rdb-parser"
},
"engines": {
"node": ">=0.6.0 <0.9.0"
},
"author": "Carlos Guerreiro <[email protected] (http://perceptiveconstructs.com)",
"dependencies": {"node-int64": "0.3.0", "lzf": "0.1.2", "bufferjs": "1.1.0"},
"devDependencies": {"jslint": "0.1.8"},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
}
],
"bugs" : { "url" : "https://github.com/pconstr/rdb-parser/issues" },
"contributors": [
{
"name": "Carlos Guerreiro",
"email": "[email protected]",
"web": "http://perceptiveconstructs.com"
},
{
"name": "Carlos Guerreiro",
"email": "[email protected]",
"web": "http://igalia.com"
}
],
"scripts": {
"lint": "./node_modules/jslint/bin/jslint.js *.js",
"test": "node ./tests/parseFile.js"
}
}