forked from balderdashy/sails-mongo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.74 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": "1.0.2",
"description": "Mongo DB adapter for Sails.js/Waterline.",
"main": "./lib",
"scripts": {
"test": "npm run lint && npm run custom-tests",
"custom-tests": "mocha test/run-adapter-specific-tests && mocha test/connectable/ && node test/run-standard-tests",
"lint": "eslint . --max-warnings=0",
"docker": "docker-compose run adapter bash",
"docker-test": "docker-compose up --exit-code-from adapter && docker-compose down"
},
"keywords": [
"mongo",
"mongodb",
"adapter",
"sails",
"sails.js",
"waterline",
"orm",
"database-adapter"
],
"license": "MIT",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git://github.com/balderdashy/sails-mongo.git"
},
"dependencies": {
"@sailshq/lodash": "^3.10.2",
"async": "2.0.1",
"flaverr": "1.1.1",
"machine": "^15.0.0",
"mongodb": "3.5.2",
"qs": "6.4.0"
},
"devDependencies": {
"benchmark": "2.1.1",
"eslint": "4.19.1",
"mocha": "3.0.2",
"waterline": "^0.13.4",
"waterline-adapter-tests": "^1.0.1",
"waterline-utils": "^1.3.25"
},
"waterlineAdapter": {
"interfaces": [
"semantic",
"queryable",
"associations"
],
"features": [
"unique"
]
},
"machinepack": {
"friendlyName": "MongoDB",
"extendedDescription": "Uses the Node.js mongdb driver located at http://npmjs.com/package/mongodb",
"moreInfoUrl": "https://github.com/mongodb/node-mongodb-native",
"implements": [
"connectable",
"modeled",
"migratable"
],
"machineDir": "lib/private/machines/",
"exportStyle": "dryDictionary",
"testsUrl": "https://travis-ci.org/balderdashy/sails-mongo"
}
}