-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 976 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 976 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
29
30
31
32
{
"name": "backpack",
"version": "0.5.5",
"description": "Fast storage engine for millions of small files",
"main": "index.js",
"dependencies": {
"redis": "~0.7.3",
"aligned-buffer": "~0.1.2"
},
"devDependencies": {
"simple_redis": "~0.1.0",
"async": "~0.2.9"
},
"bin": {
"backpack": "./bin/backpack",
"backpack-add": "./bin/backpack-add",
"backpack-dump-log": "./bin/backpack-dump-log",
"backpack-get-file-info": "./bin/backpack-get-file-info",
"backpack-list": "./bin/backpack-list",
"backpack-restore-from-log": "./bin/backpack-restore-from-log",
"backpack-upload": "./bin/backpack-upload"
},
"scripts": {
"test": "rm -f test/*.tmp; rm -f test/data/*; for i in test/*.js; do node $i || exit 1; done; rm -f test/*.tmp; rm -f test/data/*;"
},
"repository": {
"type": "git",
"url": "git://github.com/Topface/backpack.git"
},
"author": "Ian Babrou <ibobrik@gmail.com>",
"license": "MIT"
}