This repository was archived by the owner on Oct 11, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.45 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.45 KB
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
{
"name": "machinepack-mongo",
"version": "2.0.0",
"description": "Structured Node.js bindings for MongoDB.",
"scripts": {
"test": "node ./node_modules/mocha/bin/mocha --recursive",
"fasttest": "node ./node_modules/mocha/bin/mocha --recursive",
"pretest": "nodever=`node -e \"console.log('\\`node -v\\`'[1]);\"` && if [ $nodever != \"0\" ]; then npm run lint; fi",
"lint": "eslint machines test",
"docker": "docker-compose run adapter bash"
},
"keywords": [
"mongodb",
"driver",
"waterline",
"sails",
"machines",
"machinepack"
],
"author": "The Sails Company",
"license": "MIT",
"dependencies": {
"@sailshq/lodash": "^3.10.2",
"machine": "^13.0.0-17",
"mongodb": "2.2.24",
"waterline-utils": "^1.3.2"
},
"devDependencies": {
"eslint": "3.5.0",
"mocha": "3.0.2"
},
"machinepack": {
"friendlyName": "MongoDB",
"extendedDescription": "Uses the Node.js mongdb driver located at https://github.com/mongodb/node-mongodb-native",
"moreInfoUrl": "https://github.com/mongodb/node-mongodb-native",
"machineDir": "machines/",
"machines": [
"create-manager",
"destroy-manager",
"get-connection",
"release-connection"
],
"implements": {
"connectable": "1.0"
},
"testsUrl": "https://travis-ci.org/treelinehq/machinepack-mongo"
},
"repository": {
"type": "git",
"url": "git@github.com:treelinehq/machinepack-mongo.git"
}
}