-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
40 lines (40 loc) · 921 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
38
39
40
{
"name": "rdb-tools",
"version": "0.1.1",
"description": "Redis RDB parsing, filtering and creating tools",
"author": "Danny Yates <[email protected]>",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"main": "rdb-tools.js",
"scripts": {
"install": "node-gyp configure build",
"test": "NODE_ENV=test mocha",
"coverage": "NODE_ENV=test istanbul cover _mocha"
},
"repository": "https://github.com/codeaholics/node-rdb-tools.git",
"keywords": [
"Redis",
"RDB",
"Parser"
],
"dependencies": {
"stream-parser": "~0.1.0",
"lzf": "~0.1.3",
"int64-native": "~0.2.0",
"buffer-equal": "0.0.0"
},
"devDependencies": {
"mocha": "~1.11.0",
"chai": "~1.7.2",
"underscore": "~1.4.4",
"istanbul": "~0.1.40",
"bl": "~0.1.1"
},
"bin": {
"rdbdump": "./bin/rdbdump"
}
}