-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1011 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
41
42
43
44
{
"name": "redis-objects",
"description": "Simple nodejs port of the redis-objects ruby gem",
"version": "1.1.1",
"keywords": [
"redis"
],
"maintainers": [
{
"name": "Hsiu-Fan Wang",
"email": "[email protected]",
"web": "http://hsiufan.eats.porkbuns.net/"
}
],
"main": "./index.js",
"scripts": {
"test": "make lint && make test",
"lint": "make lint",
"coverage": "make coverage"
},
"dependencies": {
"redis": "> 0.8.0"
},
"devDependencies": {
"async": "~0.2.9",
"mocha": "~1.10.0",
"should": "~1.2.2",
"underscore": "~1.4.4",
"redis": "~0.8.3",
"jshint": "~2.1.3",
"marked": "~0.2.9",
"istanbul": "~0.1.37",
"longjohn": "~0.2.0"
},
"repository": {
"type": "git",
"url": "git://github.com/hfwang/node-redis-objects.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/hfwang/node-redis-objects/issues"
},
"homepage": "https://github.com/hfwang/node-redis-objects"
}