-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·29 lines (29 loc) · 886 Bytes
/
package.json
File metadata and controls
executable file
·29 lines (29 loc) · 886 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
{ "name" : "redback",
"description" : "A high-level Redis library",
"version" : "0.5.1",
"homepage" : "https://github.com/chriso/redback",
"author" : "Chris O'Hara <cohara87@gmail.com>",
"main" : "index",
"scripts": {
"test": "redis-cli -n 11 flushdb && expresso -s test/*.test.js",
"gen-docs": "dox -t Redback -d 'A high-level Redis library' -r https://github.com/chriso/redback lib/**/*.js > docs/api.html"
},
"bugs": {
"url": "http://github.com/chriso/redback/issues"
},
"repository": {
"type": "git",
"url": "http://github.com/chriso/redback.git"
},
"dependencies": {
"redis": "*"
},
"devDependencies": {
"expresso": "*",
"dox": "0.0.5"
},
"contributors": [
{ "name": "Sreekanth", "github": "https://github.com/sreeix", "email": "sreeix@gmail.com" }
],
"license": "MIT"
}