-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 813 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 813 Bytes
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
{
"name": "redisfs",
"version": "1.0.0",
"description": "Utility for moving files in and out of Redis",
"keywords": ["redis", "files"],
"homepage": "https://github.com/steelThread/redisfs",
"author": "Sean McDaniel <sean.mcdaniel@me.com>",
"main": "./lib/index",
"bin": {
"redis2file": "./bin/redis2file",
"file2redis": "./bin/file2redis"
},
"directories": { "lib": "./lib" },
"respository": {
"type": "git",
"url": "https://steelThread@github.com/steelThread/redisfs.git"
},
"dependencies": {
"vows": ">= 0.5.6",
"hiredis": ">= 0.1.10",
"redis": ">= 0.5.11",
"node-uuid": ">= 1.1.0",
"temp": ">= 0.2.0",
"underscore": ">= 1.1.6",
"coffee-script": ">= 1.0.0"
},
"engines": { "node": ">= 0.4.0" }
}