-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 982 Bytes
/
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
{
"name": "mongodbservice",
"version": "0.0.1",
"description": "mongodb microservice",
"main": "index.js",
"scripts": {
"test": "mocha --require test/support/env --recursive",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --require test/support/env --reporter dot --check-leaks test/",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --require test/support/env --reporter spec --check-leaks test/"
},
"repository": {
"type": "git",
"url": "https://github.com/lecle/mongodbservice.git"
},
"keywords": [
"microservice,noserv,mongodb"
],
"author": "Daesun",
"license": "MIT",
"bugs": {
"url": "https://github.com/lecle/mongodbservice/issues"
},
"homepage": "https://github.com/lecle/mongodbservice",
"dependencies": {
"assert": "~1.2.0",
"istanbul": "^0.3.5",
"lodash": "^3.9.3",
"mocha": "~2.0.1",
"mongo-factory": "0.0.6",
"mongodb": "^1.4.30"
}
}