forked from balderdashy/sails-mongo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.27 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
{
"name": "sails-mongo",
"version": "0.11.2",
"description": "Mongo DB adapter for Sails.js",
"main": "./lib/adapter.js",
"scripts": {
"test": "make test"
},
"keywords": [
"mongo",
"orm",
"waterline",
"sails"
],
"contributors": [
{
"name": "Cody Stoltman",
"email": "[email protected]"
},
{
"name": "Zolmeister",
"email": "[email protected]"
},
{
"name": "Robin Persson",
"email": "[email protected]"
},
{
"name": "Ted Kulp",
"email": "[email protected]"
},
{
"name": "Andy Pham",
"email": "[email protected]"
}
],
"license": "MIT",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git://github.com/balderdashy/sails-mongo.git"
},
"dependencies": {
"async": "~0.8.0",
"lodash": "~2.4.1",
"mongodb": "^2.0.27",
"waterline-cursor": "~0.0.5",
"waterline-errors": "~0.10.0"
},
"devDependencies": {
"mocha": "*",
"waterline-adapter-tests": "~0.10.0",
"captains-log": "~0.11.1"
},
"waterlineAdapter": {
"waterlineVersion": "~0.10.0",
"interfaces": [
"semantic",
"queryable",
"associations"
],
"features": [
"cross-adapter"
]
}
}