forked from balderdashy/sails-redis
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
70 lines (70 loc) · 1.49 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "sails-redis",
"version": "1.0.0",
"description": "Redis adapter for waterline",
"author": "vanetix <matmcfarland@gmail.com>",
"contributors": [
{
"name": "Matt McFarland",
"email": "matmcfarland@gmail.com"
},
{
"name": "Cody Stoltman",
"email": "particlebanana@gmail.com"
},
{
"name": "Greg Thornton",
"email": "xdissent@me.com"
},
{
"name": "Carlo DiCelico",
"email": "carlo@diceli.co"
},
{
"name": "Ryan Clough",
"email": "me@ryanclough.co.nz"
}
],
"scripts": {
"test": "mocha --reporter spec test/**/adapter.*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/balderdashy/sails-redis.git"
},
"keywords": [
"redis",
"orm",
"waterline",
"sails",
"sailsjs",
"sails.js"
],
"license": "MIT",
"devDependencies": {
"mocha": "^2.4.5",
"waterline-adapter-tests": "^0.12.0",
"captains-log": "~0.11.1"
},
"dependencies": {
"async": "^1.5.0",
"bluebird": "^3.3.4",
"lodash": "^4.0.0",
"redis": "^2.0.0",
"waterline-criteria": "ryanc1256/waterline-criteria",
"waterline-cursor": "^0.0.6",
"waterline-errors": "^0.10.0"
},
"waterlineAdapter": {
"waterlineVersion": "~0.12.0",
"interfaces": [
"semantic",
"queryable",
"associations"
],
"features": [
"crossAdapter",
"autoIncrement"
]
}
}