forked from balderdashy/sails-mongo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.35 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
{
"name": "sails-mongo",
"version": "0.12.1",
"description": "Mongo DB adapter for Sails.js",
"main": "./lib/adapter.js",
"scripts": {
"test": "make test",
"docker": "docker-compose run adapter bash"
},
"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": "1.5.2",
"lodash": "3.10.1",
"mongodb": "2.2.12",
"validator": "4.5.1",
"waterline-cursor": "~0.0.6",
"waterline-errors": "~0.10.1"
},
"devDependencies": {
"captains-log": "~0.11.11",
"mocha": "2.4.1",
"waterline-adapter-tests": "~0.11.1"
},
"waterlineAdapter": {
"waterlineVersion": "~0.10.0",
"interfaces": [
"semantic",
"queryable",
"associations"
],
"features": [
"cross-adapter"
]
}
}