Implement MongoDB client

This commit is contained in:
Tankred Hase
2016-05-25 16:13:49 +02:00
parent 7f629aec13
commit ce2b24d83d
9 changed files with 378 additions and 1 deletions

28
package.json Normal file
View File

@@ -0,0 +1,28 @@
{
"name": "mailvelope-keyserver",
"version": "0.0.1",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/mailvelope/keyserver.git"
},
"engines": {
"node": ">=4"
},
"scripts": {
"test": "grunt test"
},
"dependencies": {
"mongodb": "^2.1.20"
},
"devDependencies": {
"chai": "^3.5.0",
"co-mocha": "^1.1.2",
"grunt": "^1.0.1",
"grunt-contrib-jshint": "^1.0.0",
"grunt-jscs": "^2.8.0",
"grunt-mocha-test": "^0.12.7",
"mocha": "^2.5.3",
"sinon": "^1.17.4"
}
}