-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.23 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "clay"
, "version": "1.3.1"
, "description": "A Node.js Active Record with a charming declaration and simple usage. Supports Redis as backend but can be easily extended"
, "keywords": ["Active Record", "Redis", "database", "ORM", "model", "models", "persistence", "db"]
, "homepage": "http://github.com/Yipit/clay.js"
, "bugs": "http://github.com/Yipit/clay.js/issues"
, "main": "./index.js"
, "repository": {
"type" : "git"
, "url" : "git://github.com/Yipit/clay.js.git"
}
, "dependencies": {
"underscore": ">= 1.2.2"
, "redis": ">= 0.6.7"
, "date-utils": ">= 1.2.5"
, "async": ">= 0.1.15"
}
, "devDependencies": {
"mocha": ">= 0.12.0"
, "should": ">= 0.3.2"
, "wrench": ">= 1.3.1"
, "colors": ">= 0.5.1"
}
, "maintainers": [
{
"name": "Gabriel Falcão"
, "email": "[email protected]"
, "web": "http://github.com/gabrielfalcao"
},
{
"name": "Yipit"
, "email": "[email protected]"
, "web": "http://github.com/Yipit"
}
]
, "licenses": [
{
"type": "MIT"
, "url": "http://www.opensource.org/licenses/mit-license.php"
}
]
, "engines": {
"node": ">= 0.4.12"
}
}