-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
29 lines (24 loc) · 1.01 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
{ "name" : "restore"
, "description" : "Simple remoteStorage server"
, "homepage" : "http://github.com/jcoglan/restore"
, "author" : "James Coglan <[email protected]> (http://jcoglan.com/)"
, "keywords" : ["remoteStorage", "webfinger", "oauth", "webdav"]
, "license" : "MIT"
, "version" : "0.3.0"
, "engines" : {"node": ">=0.8.0"}
, "main" : "./lib/restore.js"
, "dependencies" : { "async": ""
, "ejs": ">= 2.0.0"
, "lockfile": ">= 1.0.0"
, "mkdirp": ""
, "redis": ">= 0.8.2"
}
, "devDependencies" : { "jstest": ""
, "rimraf": ""
}
, "scripts" : {"test": "node spec/runner.js"}
, "repository" : { "type" : "git"
, "url" : "git://github.com/jcoglan/restore.git"
}
, "bugs" : {"url": "http://github.com/jcoglan/restore/issues"}
}